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
body { background-color: #202020; display: flex; flex-direction: row; align-items: center; user-select: none; -moz-user-select: none; height: 100vh; margin: 0; padding: 0; } #content { display: flex; flex-direction: row; width: 100vw; justify-content: center; } #content > * { margin-left: auto; margin-right: auto; } .controller-section { width: 45vw; display; block; border: 0.6vw solid #B1B1B1; border-radius: 2vw; } #output-section { height: 17vw; display: flex; align-items: center; justify-content: center; } #output-screen { width: 30vw; height: 8vw; background-color: #7AA230; font-family: monospace; display: flex; flex-direction: column; font-size: 2.9vw; justify-content: center; } #output-screen > * { margin-left: 1vw; margin-right: 1vw; margin-bottom: 0; margin-top: 0; } #keypad-section { height: 35vw; width: 45vw; display: flex; align-items: center; justify-content: center; } #keypad-container { display: grid; grid-template-columns: repeat(4, 7.5vw); grid-gap: 0.6vw; grid-auto-rows: 7.5vw; color: white; font-size: 5vw; font-family: Roboto } #keypad-container > * { display: flex; align-items: center; justify-content: center; } .keypad-number { background-color: #E66A1A; border: 0.5vw solid #EA831D; border-radius: 0.4vw; } .keypad-function { background-color: transparent; border: 0.5vw solid #EAE23D; border-radius: 0.4vw; } .keypad-arrow { background-color: #C5BC15; border: 0.5vw solid #EAE23D; border-radius: 0.4vw; } #keypad-clr { background-color: transparent; border: 0.5vw solid #EA553D; border-radius: 0.4vw; } #keypad-ent { background-color: transparent; border: 0.5vw solid #21851E; border-radius: 0.4vw; } #keypad-ent, #keypad-clr { font-family: Roboto Condensed; font-weight: 100; font-size: 4vw; } .arrow-up { width: 0; height: 0; border-left: 1.5vw solid transparent; border-right: 1.5vw solid transparent; border-bottom: 1.5vw solid black; } .arrow-down { width: 0; height: 0; border-left: 1.5vw solid transparent; border-right: 1.5vw solid transparent; border-top: 1.5vw solid black; }
eds-simulator/lecip/controller/lecip.css
body { background-color: #202020; display: flex; flex-direction: row; align-items: center; user-select: none; -moz-user-select: none; height: 100vh; margin: 0; padding: 0; } #content { display: flex; flex-direction: row; width: 100vw; justify-content: center; } #content > * { margin-left: auto; margin-right: auto; } .controller-section { width: 45vw; display; block; border: 0.6vw solid #B1B1B1; border-radius: 2vw; } #output-section { height: 17vw; display: flex; align-items: center; justify-content: center; } #output-screen { width: 30vw; height: 8vw; background-color: #7AA230; font-family: monospace; display: flex; flex-direction: column; font-size: 2.9vw; justify-content: center; } #output-screen > * { margin-left: 1vw; margin-right: 1vw; margin-bottom: 0; margin-top: 0; } #keypad-section { height: 35vw; width: 45vw; display: flex; align-items: center; justify-content: center; } #keypad-container { display: grid; grid-template-columns: repeat(4, 7.5vw); grid-gap: 0.6vw; grid-auto-rows: 7.5vw; color: white; font-size: 5vw; font-family: Roboto } #keypad-container > * { display: flex; align-items: center; justify-content: center; } .keypad-number { background-color: #E66A1A; border: 0.5vw solid #EA831D; border-radius: 0.4vw; } .keypad-function { background-color: transparent; border: 0.5vw solid #EAE23D; border-radius: 0.4vw; } .keypad-arrow { background-color: #C5BC15; border: 0.5vw solid #EAE23D; border-radius: 0.4vw; } #keypad-clr { background-color: transparent; border: 0.5vw solid #EA553D; border-radius: 0.4vw; } #keypad-ent { background-color: transparent; border: 0.5vw solid #21851E; border-radius: 0.4vw; } #keypad-ent, #keypad-clr { font-family: Roboto Condensed; font-weight: 100; font-size: 4vw; } .arrow-up { width: 0; height: 0; border-left: 1.5vw solid transparent; border-right: 1.5vw solid transparent; border-bottom: 1.5vw solid black; } .arrow-down { width: 0; height: 0; border-left: 1.5vw solid transparent; border-right: 1.5vw solid transparent; border-top: 1.5vw solid black; }
0.612773
0.10307
*, *::before, *::after { padding: 0; margin: 0; box-sizing: border-box; } body { background-color: whitesmoke; } .mrAuto { margin-right: auto !important; } .mlAuto { margin-left: auto !important; } .mt20 { margin-top: 20px; } .col25 { width: 25%; } .col75 { width: 75%; } .modalBackground { color: black; position: fixed; right: 0; top: 0; bottom: 100%; left: 100%; transition: bottom left 0.5s linear; z-index: 2; } .modalBackground.opened { background: rgba(180, 180, 180, 0.3); backdrop-filter: blur(2px); right: 0; bottom: 0; left: 0; top: 0; padding: auto; } .modalSmallerContent { width: 50%; height: 80%; display: none; overflow-y: auto; margin: 10% 25%; background-color: white; border-radius: 10px; } .modalContent { width: 90%; height: 80%; display: none; overflow-y: auto; margin: 10% 5%; background-color: white; border-radius: 10px; } .modalWindowHeader { display: flex; flex-direction: row; height: 34px; } .modalWindowButton { background-color: transparent; color: black; border: 1px solid transparent; width: 48px; height: 48px; font-size: 1rem; margin: 8; } .baseControl { padding: 10px; background-color: white; border-radius: 8px; } .contentTitle { font-size: 20px; line-height: 20px; font-weight: 600; color: #1f1f1f; } .baseButtonLink { background-color: transparent; color: black; border: 1px solid transparent; font-size: 1rem; padding: 10px 20px; text-decoration: none; font-weight: 400; font-family: 'Roboto', sans-serif; line-height: 1.5; display: block; text-align: left; } .baseButtonLink:hover { background-color: #00000020; } .transparentButtonLink { background-color: transparent; color: black; border: 1px solid transparent; font-size: 1rem; padding: 2px; text-decoration: none; font-weight: 400; font-family: 'Roboto', sans-serif; line-height: 1.5; display: block; text-align: left; } .transparentButtonLink:hover { background-color: #00000020; } .fullScreenInfo { position: fixed; left: 0; right: 0; top: 0; bottom: 0; background-color: white; display: flex; justify-content: center; align-items: center; z-index: 3000; } .fullScreenInfoText { font-size: 50px; color: #1f1f1f; } .notificationContainer { position: fixed; top: auto; bottom: 0; right: 5px; width: 282px; display: flex; flex-direction: column-reverse; z-index: 2003; } .notification { height: 48px; min-width: 170px; margin: 2px; background-color: #f1f1f4; display: flex; flex-direction: row; padding: 10px; align-items: center; } .notificationContent { display: flex; flex-direction: column; color: white; font-weight: 600; font-size: 20px; height: auto; } .notificationTitle { color: black; font-size: 16px; margin: 0; margin-bottom: 10px; } .notificationIcon { margin: 0; width: 50px; height: 50px; padding: 10px; font-size: 28px; color: black; } .notificationText { color: black; font-size: 12px; } .baseButtonLink { background-color: transparent; color: black; border: 1px solid transparent; font-size: 1rem; padding: 10px 20px; text-decoration: none; font-weight: 400; font-family: 'Roboto', sans-serif; line-height: 1.5; display: block; text-align: left; } .baseButtonLink:hover { background-color: #00000020; } .transparentButtonLink { background-color: transparent; color: black; border: 1px solid transparent; font-size: 1rem; padding: 2px; text-decoration: none; font-weight: 400; font-family: 'Roboto', sans-serif; line-height: 1.5; display: block; text-align: left; } .transparentButtonLink:hover { background-color: #00000020; } .boardContainer { overflow-x: auto; display: flex; flex-direction: row; width: 100%; border: 1px solid whitesmoke; } .boardContainerSidebar { width: 270px; min-width: 270px; border: 1px solid whitesmoke; padding: 5px; } @keyframes spinner { 0% { transform: translate3d(-50%, -50%, 0) rotate(0deg); } 100% { transform: translate3d(-50%, -50%, 0) rotate(360deg); } } .spin::before { animation: 1.5s linear infinite spinner; animation-play-state: inherit; border: solid 5px transparent; border-bottom-color: white; border-radius: 50%; content: ""; height: 40px; width: 40px; position: fixed; top: calc(50%-20px); left: calc(50%-20px); transform: translate3d(-50%, -50%, 0); will-change: transform; } .loadingScreen { background-color: #9E9E9E; } ::-webkit-scrollbar{ width: 4px; height: 4px; } ::-webkit-scrollbar-thumb{ background: #B3AFB3; border-radius: 0px; } ::-webkit-scrollbar-thumb:hover{ background: #B3AFB3; } ::-webkit-scrollbar-track{ background: #F0F0F0; border-radius: 0px; box-shadow: inset 0px 0px 0px 0px #F0F0F0; }ś
assets/css/styles.css
*, *::before, *::after { padding: 0; margin: 0; box-sizing: border-box; } body { background-color: whitesmoke; } .mrAuto { margin-right: auto !important; } .mlAuto { margin-left: auto !important; } .mt20 { margin-top: 20px; } .col25 { width: 25%; } .col75 { width: 75%; } .modalBackground { color: black; position: fixed; right: 0; top: 0; bottom: 100%; left: 100%; transition: bottom left 0.5s linear; z-index: 2; } .modalBackground.opened { background: rgba(180, 180, 180, 0.3); backdrop-filter: blur(2px); right: 0; bottom: 0; left: 0; top: 0; padding: auto; } .modalSmallerContent { width: 50%; height: 80%; display: none; overflow-y: auto; margin: 10% 25%; background-color: white; border-radius: 10px; } .modalContent { width: 90%; height: 80%; display: none; overflow-y: auto; margin: 10% 5%; background-color: white; border-radius: 10px; } .modalWindowHeader { display: flex; flex-direction: row; height: 34px; } .modalWindowButton { background-color: transparent; color: black; border: 1px solid transparent; width: 48px; height: 48px; font-size: 1rem; margin: 8; } .baseControl { padding: 10px; background-color: white; border-radius: 8px; } .contentTitle { font-size: 20px; line-height: 20px; font-weight: 600; color: #1f1f1f; } .baseButtonLink { background-color: transparent; color: black; border: 1px solid transparent; font-size: 1rem; padding: 10px 20px; text-decoration: none; font-weight: 400; font-family: 'Roboto', sans-serif; line-height: 1.5; display: block; text-align: left; } .baseButtonLink:hover { background-color: #00000020; } .transparentButtonLink { background-color: transparent; color: black; border: 1px solid transparent; font-size: 1rem; padding: 2px; text-decoration: none; font-weight: 400; font-family: 'Roboto', sans-serif; line-height: 1.5; display: block; text-align: left; } .transparentButtonLink:hover { background-color: #00000020; } .fullScreenInfo { position: fixed; left: 0; right: 0; top: 0; bottom: 0; background-color: white; display: flex; justify-content: center; align-items: center; z-index: 3000; } .fullScreenInfoText { font-size: 50px; color: #1f1f1f; } .notificationContainer { position: fixed; top: auto; bottom: 0; right: 5px; width: 282px; display: flex; flex-direction: column-reverse; z-index: 2003; } .notification { height: 48px; min-width: 170px; margin: 2px; background-color: #f1f1f4; display: flex; flex-direction: row; padding: 10px; align-items: center; } .notificationContent { display: flex; flex-direction: column; color: white; font-weight: 600; font-size: 20px; height: auto; } .notificationTitle { color: black; font-size: 16px; margin: 0; margin-bottom: 10px; } .notificationIcon { margin: 0; width: 50px; height: 50px; padding: 10px; font-size: 28px; color: black; } .notificationText { color: black; font-size: 12px; } .baseButtonLink { background-color: transparent; color: black; border: 1px solid transparent; font-size: 1rem; padding: 10px 20px; text-decoration: none; font-weight: 400; font-family: 'Roboto', sans-serif; line-height: 1.5; display: block; text-align: left; } .baseButtonLink:hover { background-color: #00000020; } .transparentButtonLink { background-color: transparent; color: black; border: 1px solid transparent; font-size: 1rem; padding: 2px; text-decoration: none; font-weight: 400; font-family: 'Roboto', sans-serif; line-height: 1.5; display: block; text-align: left; } .transparentButtonLink:hover { background-color: #00000020; } .boardContainer { overflow-x: auto; display: flex; flex-direction: row; width: 100%; border: 1px solid whitesmoke; } .boardContainerSidebar { width: 270px; min-width: 270px; border: 1px solid whitesmoke; padding: 5px; } @keyframes spinner { 0% { transform: translate3d(-50%, -50%, 0) rotate(0deg); } 100% { transform: translate3d(-50%, -50%, 0) rotate(360deg); } } .spin::before { animation: 1.5s linear infinite spinner; animation-play-state: inherit; border: solid 5px transparent; border-bottom-color: white; border-radius: 50%; content: ""; height: 40px; width: 40px; position: fixed; top: calc(50%-20px); left: calc(50%-20px); transform: translate3d(-50%, -50%, 0); will-change: transform; } .loadingScreen { background-color: #9E9E9E; } ::-webkit-scrollbar{ width: 4px; height: 4px; } ::-webkit-scrollbar-thumb{ background: #B3AFB3; border-radius: 0px; } ::-webkit-scrollbar-thumb:hover{ background: #B3AFB3; } ::-webkit-scrollbar-track{ background: #F0F0F0; border-radius: 0px; box-shadow: inset 0px 0px 0px 0px #F0F0F0; }ś
0.644673
0.12536
*{/*soft resete do css */ /*essa parte foi feita para retirar o elemento a baixo*/ margin: 0; padding: 0;/* borda interna */ box-sizing: border-box;/* começa a contar o tamanho do elemento dá borda interna*/ } html { scroll-behavior: smooth; /*faz com que o botão de volta ao topo fique suavisada*/ } body { background-image: url('/imagens/background-1156435.png'); background-size: auto 100vh;/*100 do tamanho total dá tela */ font-family: 'Source Sans Pro', sans-serif; height: 100vh; font-size: 12px; /*background-repeat: no-repeat;*/ } header { height: 100vh; display: flex;/*ajuda ficar responsivo*/ justify-content: center;/*centralisa horizontalmente o conteudo*//*so funciona por conta do flex*/ align-items: center;/*centaliza verticalmente, so funciona no flex*/ } .menu { background-color:whitesmoke ; position: fixed; width: 100vw; top: 0;/* cola ele no topo do navegador que so funciona com o position declarado*/ z-index: 1;/*altera a prioridade do eixo z */ } .menu ul { display: flex;/* forma coluna ^^*/ justify-content: space-around;/*dá espassamento dentre as colunas */ } /*seleciona todas as li dentro do elemento menu o nome é seletor 'hieraquico'*/ .menu li { list-style: none; } .menu a {/*link do menu*/ display: block;/*transforma em um quadrado que quebra linha*/ padding: 10px 20px; transition: background-color 1s, color 1s;/*fala quais propiedades nos queremo mudar,e diz quanto tempo o vai levar a transi...*/ } .menu a:active, .menu a:hover { background-color:rgb(0, 0, 0); color: whitesmoke; } a { color: rgb(0, 0, 0); text-decoration: none; } a:hover { text-decoration: underline; } .title, .site-sutitle,/*dessa forma o estilo vai para o titulo e para o subtitulo*/ .titulos { color: whitesmoke; text-align: center; } .titulos { font-size: 1em;/*4x o tamanho do body*/ font-family: 'Teko', sans-serif; } .title, .site-sutitle { font-style: italic; font-family: 'Press Start 2P', cursive; line-height: 1.5em; } .conteudo { display: grid; background-color: rgb(255, 255, 255); } .texto { display: grid; } footer{ display: flex; background-color: whitesmoke; justify-content: center; } footer a { color: black; font-size: 2em; } #topo { position: fixed; bottom: 20px; right: 20px; display: none; height: 50px; width: 50px; color: blanchedalmond; background-color: black; border: none; border-radius: 50vh; }
estilos/style.css
*{/*soft resete do css */ /*essa parte foi feita para retirar o elemento a baixo*/ margin: 0; padding: 0;/* borda interna */ box-sizing: border-box;/* começa a contar o tamanho do elemento dá borda interna*/ } html { scroll-behavior: smooth; /*faz com que o botão de volta ao topo fique suavisada*/ } body { background-image: url('/imagens/background-1156435.png'); background-size: auto 100vh;/*100 do tamanho total dá tela */ font-family: 'Source Sans Pro', sans-serif; height: 100vh; font-size: 12px; /*background-repeat: no-repeat;*/ } header { height: 100vh; display: flex;/*ajuda ficar responsivo*/ justify-content: center;/*centralisa horizontalmente o conteudo*//*so funciona por conta do flex*/ align-items: center;/*centaliza verticalmente, so funciona no flex*/ } .menu { background-color:whitesmoke ; position: fixed; width: 100vw; top: 0;/* cola ele no topo do navegador que so funciona com o position declarado*/ z-index: 1;/*altera a prioridade do eixo z */ } .menu ul { display: flex;/* forma coluna ^^*/ justify-content: space-around;/*dá espassamento dentre as colunas */ } /*seleciona todas as li dentro do elemento menu o nome é seletor 'hieraquico'*/ .menu li { list-style: none; } .menu a {/*link do menu*/ display: block;/*transforma em um quadrado que quebra linha*/ padding: 10px 20px; transition: background-color 1s, color 1s;/*fala quais propiedades nos queremo mudar,e diz quanto tempo o vai levar a transi...*/ } .menu a:active, .menu a:hover { background-color:rgb(0, 0, 0); color: whitesmoke; } a { color: rgb(0, 0, 0); text-decoration: none; } a:hover { text-decoration: underline; } .title, .site-sutitle,/*dessa forma o estilo vai para o titulo e para o subtitulo*/ .titulos { color: whitesmoke; text-align: center; } .titulos { font-size: 1em;/*4x o tamanho do body*/ font-family: 'Teko', sans-serif; } .title, .site-sutitle { font-style: italic; font-family: 'Press Start 2P', cursive; line-height: 1.5em; } .conteudo { display: grid; background-color: rgb(255, 255, 255); } .texto { display: grid; } footer{ display: flex; background-color: whitesmoke; justify-content: center; } footer a { color: black; font-size: 2em; } #topo { position: fixed; bottom: 20px; right: 20px; display: none; height: 50px; width: 50px; color: blanchedalmond; background-color: black; border: none; border-radius: 50vh; }
0.339718
0.0713
*, *::before, *::after { box-sizing: border-box; -webkit-box-sizing: border-box; } body { margin: 0; } .productCartContainerArea { position: relative; display: inline-block; } .backHome { text-decoration: underline; margin-left: 23px; cursor: pointer; } .containers { height: 0px; background-color: transparent; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; width: 100%; align-items: center; } .containerMobile { height: 60px; background-color: #283848; display: -webkit-box; display: -ms-flexbox; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; z-index: 999999999999; position: fixed; width: 100%; align-items: center; --border-opacity: 1; --bg-opacity: 1; } .containers .logo { max-width: 250px; padding: 0 10px; padding-left: 150px; } .containers .logo a { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .containers .navbar { display: -webkit-box; display: -ms-flexbox; margin-bottom: 60px; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; justify-content: flex-end; -webkit-box-flex: 1; -ms-flex: 1; z-index: 999999; flex: 1; padding: 0 10px; } .containers .navbar ul { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; } .containerMobile .logo { max-width: 250px; padding: 0 10px; padding-left: 150px; } .containerMobile .logo a { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .containerMobile .navbar { display: -webkit-box; display: -ms-flexbox; margin-bottom: 60px; display: flex; position: relative; top: -119px; -ms-flex-wrap: wrap; flex-wrap: wrap; justify-content: flex-end; -webkit-box-flex: 1; -ms-flex: 1; z-index: 999999; flex: 1; padding: 0 10px; } .containerMobile .navbar ul { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; } .slick-slider { overflow: hidden; } .logoAnchor { max-height: 120px; z-index: 99999999; width: auto; background-color: transparent; } .priceContainer { text-align: center; width: 100%; font-size: 24px; font-family: sans-serif; } .containers .navbar ul li a { text-decoration: none; color: black; font-size: 14px; display: block; height: 60px; line-height: 60px; cursor: pointer; padding: 0 10px; } .containers .navbar ul li a:hover { color: #ffffff; background-color: rgba(23, 23, 23, 0.9); } .containers .navbar ul .closeIcon { display: none; text-align: right; padding: 10px; } .containers .navbar ul .closeIcon span { font-size: 40px; display: inline-block; border: 1px solid #cccccc; padding: 0 10px; cursor: pointer; } .individualPriceContainer { display: inline-block; float: right; margin-right: 130px; padding-top: 10px; font-family: sans-serif; font-size: 20px; } .containers .navbar .icon-bar { padding: 18px 8px; width: 50px; height: 60px; display: none; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; cursor: pointer; } .containers .navbar .icon-bar i { background-color: black; height: 2px; } .containerMobile .navbar ul li a { text-decoration: none; color: white; font-size: 14px; display: block; height: 60px; line-height: 60px; cursor: pointer; padding: 0 10px; } .productColumn1 { float: left; width: 60%; } .productColumn2 { float: left; width: 40%; } .containerMobile .navbar ul li a:hover { color: #ffffff; background-color: rgba(23, 23, 23, 0.9); } .containerMobile .navbar ul .closeIcon { display: none; text-align: right; padding: 10px; } .containerMobile .navbar ul .closeIcon span { font-size: 40px; display: inline-block; border: 1px solid #cccccc; padding: 0 10px; cursor: pointer; } .containerMobile .navbar .icon-bar { padding: 18px 8px; width: 50px; height: 60px; display: none; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; cursor: pointer; } .containerMobile .navbar .icon-bar i { background-color: #ffffff; height: 2px; } .imageGalleryContainer { margin-top: 124px; display: flex; margin-left: 100px; flex-wrap: wrap; } .imageDisplayArea { width: 70%; max-width: 700px; margin-left: 10px; height: auto; padding-bottom: 100px; order: 2; margin-top: 0px; display: flex; } .border-thumb { border: 1px solid black; } .border-radi { background-color: #fce4e4; border: 1px solid #cc0033; outline: none; } .thumbnailSlider { width: 100px; margin-left: 0; margin-right: 0; margin-top: 0; margin-bottom: 0; height: 420px; order: 1; text-align: center; } .selectContainer { display: flex; margin-bottom: 65px; padding-left: 150px; justify-content: center; } .selectInternalContainer { justify-content: flex-start; display: flex; align-items: center; outline: none!important; margin-bottom: 100px; } .footerContainer { background-color: #172337; width: 100%; border-top: 1px solid #ddd; margin-top: 25px; } .footerContent { background-color: #172337; width: 100%!important; padding-top: 40px; height: 200px; text-align: center; } .selectInternalContainer span { width: auto; margin-right: 60px; text-align: left; --text-opacity: 1; padding-top: 0; padding-bottom: 0; max-width: 1232px; padding-left: 0; padding-right: 0; margin-left: auto; margin-right: auto; } .checkoutContainer { padding-top: 150px; max-width: 1140px; width: 100%; margin-bottom: 100px; padding-bottom: 0; padding-left: 0; padding-right: 0; margin-left: auto; margin-right: auto; } .footerColumn { float: left; width: 50%; padding: 10px; height: auto; } .footerColumn2 { float: left; width: 50%; padding: 10px; text-align: left; height: auto; } .officeAddress { color: #878787; font-size: 12px; font-weight: 400; } .select { position: relative; min-width: 180px; margin-left: 50px; box-sizing: border-box; } .videoContainer { height: 100vh; width: 100%; position: relative } .videoWrapper { height: 100vh; width: 100%; top: 0; left: 0; position: absolute; overflow: hidden } .video { position: absolute; object-fit: cover; top: 50%; left: 50%; width: 100%; height: 100%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; } .productContent { font-family: Actor; margin-top: 150px; text-align: center; } .videoContent { width: 100%; margin-left: 170px; margin-bottom: 56px; --text-opacity: 1; bottom: 75px; position: absolute; } .buyNowButtonContainer { width: 335px; margin: auto; justify-content: center; } .addToCart { float: left; display: block; margin: 0 0 0 0; padding: 13px; background-color: white; border-color: #283848; border-style: solid; border-width: 1px; border-radius: 50px; min-width: 325px; font-family: 'Intro W03 Black', Helvetica, Arial, sans-serif; font-size: 17px; line-height: 17px; font-weight: 700; color: black; text-align: center; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; transition-duration: 0.2s; -moz-transition-duration: 0.2s; -webkit-transition-duration: 0.2s; } .addToCart:hover { background-color: #283848; color: white; cursor: pointer; } .buyNow { cursor: pointer; float: left; display: block; margin: 0 0 0 0; padding: 13px; background-color: #283848; border-color: #283848; border-style: solid; border-width: 1px; border-radius: 50px; min-width: 325px; font-family: 'Intro W03 Black', Helvetica, Arial, sans-serif; font-size: 17px; line-height: 17px; font-weight: 700; color: #fff; text-align: center; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; transition-duration: 0.2s; -moz-transition-duration: 0.2s; -webkit-transition-duration: 0.2s; } .dynamicButtonContainer { text-align: end; margin-top: 30px; text-align: center; } .divider { border-left: 1px solid #454d5e; padding-left: 200px; } .fullOfficeAdd { width: 80px; color: white; text-align: left; margin-top: 10px; } .checkoutProductCard { height: 200px; margin-top: 20px; padding-top: 20px; box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px; -webkit-flex-flow: column; -ms-flex-flow: column; flex-flow: column; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 500px; width: 100%; flex-grow: 1; overflow: visible; -webkit-flex-flow: column; -ms-flex-flow: column; display: -webkit-flex; display: -ms-flexbox; display: flex; flex-flow: column; } .productCartContainerArea { width: 100%; border-top: 2px solid #f0f0f0!important; padding-top: 10px; text-align: center; padding-left: 20px; } .productImageContainer { display: inline-block; float: left; width: 10%; } .productCartTitle { width: 13%; padding: 0 24px 12px; vertical-align: top; -webkit-flex: 1 1; -ms-flex: 1 1; flex: 1 1; overflow: hidden; display: inline-block; max-width: 600px; } .buttonCartContainer { display: inline-block; color: #212121; padding-left: 20px; padding-bottom: 20px; } .addButton { color: #c2c2c2; border-color: #e0e0e0; cursor: auto; width: 28px; height: 28px; background: linear-gradient(#fff, #f9f9f9); display: inline-block; border: 1px solid #c2c2c2; cursor: pointer; font-size: 16px; border-radius: 50%; padding-top: 1px; line-height: 1; } .inputCartContainer { display: inline-block; width: calc(100% - 60px); height: 100%; width: 46px; height: 28px; background-color: #fff; margin: 0 5px; } .inputCart { width: 100%; border-radius: 2px; background-color: #fff; border: 1px solid #c2c2c2; font-size: 14px; font-weight: 500; height: 31px; vertical-align: middle; text-align: center } .removeContainer { margin-left: 150px; margin-top: 30px; } .removeContainerButton { text-transform: uppercase; color: black; font-family: monospace; box-shadow: none; outline: 0; font-size: 16px; font-weight: 500; cursor: pointer; margin-right: 25px; } .subButton { width: 28px; height: 28px; background: linear-gradient(#fff, #f9f9f9); display: inline-block; border: 1px solid #c2c2c2; cursor: pointer; font-size: 16px; border-radius: 50%; padding-top: 1px; line-height: 1; } .increaseDecreaseContainer { text-align: center; margin-left: 30px; margin-top: 14px; display: -webkit-flex; display: -ms-flexbox; display: flex; color: #212121; -webkit-align-items: center; -ms-flex-align: center; align-items: center; display: inline-block; } .submitButton { display: inline-block; text-align: center; margin-left: 20px } .currentButton { display: inline-block; margin-left: 50px } .addressFont p { font-weight: 1000; padding-left: 5px; } .addressFont { font-size: 20px; } .alert { padding: 20px; background-color: #f44336; color: white; opacity: 1; transition: opacity 0.6s; margin-bottom: 15px; } .alert.success { background-color: #4CAF50; } .alert.info { background-color: #2196F3; } .alert.warning { background-color: #ff9800; } .closebtn { margin-left: 15px; color: white; font-weight: bold; float: right; font-size: 22px; line-height: 20px; cursor: pointer; transition: 0.3s; } .closebtn:hover { color: black; } @media only screen and (max-width: 768px) { .selectContainer { margin-bottom: 0px; padding-left: 0px; } .dynamicButtonContainer { padding-right: 8px; text-align: end } .priceContainer { margin-top: 50px; padding-right: 10px } .individualPriceContainer { margin-top: 20px; margin-left: 30px; display: inline-flex; margin-right: 10px } .increaseDecreaseContainer { display: inline-block; } .removeContainer { margin-right: 40px; margin-top: 30px; } .selectInternalContainer { margin-bottom: 5px; } .footerContent { height: 300px; } .productImageContainer { display: block; float: left; width: 25%; } .fullOfficeAdd { width: 100%; text-align: center; } .productCartTitle { width: 30%; } .footerColumn { width: 100%; } .footerColumn2 { width: 100%; text-align: center; } .divider { border-left: 0px; padding-left: 0px } .imageGalleryContainer { margin-top: 20px; justify-content: center; margin-left: 0; } .thumbnailSlider { width: 200px; margin-left: 0; margin-right: 0; margin-top: 0; margin-bottom: 20px; height: 100px; order: 1; text-align: center; } .imageDisplayArea { width: 70%; max-width: 700px; margin-left: 10px; height: auto; order: 2; margin-top: 29px; display: flex; } .productContent { font-family: Actor; margin-top: 50px; text-align: center; padding-right: 0px; } .logoAnchor { max-height: 80px; position: fixed; top: 0; left: 0; z-index: 999999; width: auto; background-color: transparent; } ._Menus-showLogo { max-height: 80px; position: fixed; top: 0; left: 0; z-index: 0; width: auto; background-color: transparent; } .containers { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .containers .logo { -webkit-box-flex: 1; -ms-flex: 1; padding-left: 60px; flex: 1; } .productColumn1 { width: 100%; padding: 0; } .productColumn2 { width: 100%; padding: 0; } .containers .navbar { -webkit-box-flex: 0; -ms-flex: 0; flex: 0; } .containers .navbar ul { -ms-flex-wrap: nowrap; flex-wrap: nowrap; position: fixed; left: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; background: #ffffff; width: 100%; height: 100%; overflow: auto; -webkit-transition: left .3s; -o-transition: left .3s; transition: left .3s; } .containers .navbar ul li a { padding: 10px; font-size: 16px; height: auto; line-height: normal; color: #555555; } .containers .navbar ul .closeIcon { display: block; } .containers .navbar .icon-bar { display: -webkit-box; display: -ms-flexbox; display: flex; } .containers .navbar ._Menus-show { left: 0; z-index: 999999999; bottom: 0 } .containers .navbar ._Menus-show div { margin-top: 200px; } .containerMobile .logo { -webkit-box-flex: 1; -ms-flex: 1; padding-left: 60px; flex: 1; } .containerMobile .navbar { top: 0px; -webkit-box-flex: 0; -ms-flex: 0; flex: 0; } .containerMobile .navbar ul { -ms-flex-wrap: nowrap; flex-wrap: nowrap; position: fixed; left: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; background: #ffffff; width: 100%; height: 100%; overflow: auto; -webkit-transition: left .3s; -o-transition: left .3s; transition: left .3s; } .containerMobile .navbar ul li a { padding: 10px; font-size: 16px; height: auto; line-height: normal; color: #555555; } .containerMobile .navbar ul .closeIcon { display: block; } .containerMobile .navbar .icon-bar { display: -webkit-box; display: -ms-flexbox; display: flex; } .containerMobile .navbar ._Menus-show { left: 0; z-index: 999999999; bottom: 0 } .containerMobile .navbar ._Menus-show div { margin-top: 200px; } } .productRow:after { content: ""; display: table; clear: both; } .productRow { padding-top: 0; padding-bottom: 0; max-width: 1232px; padding-left: 0; padding-right: 0; margin-left: auto; margin-right: auto; } .arrows { cursor: pointer; position: relative; position: absolute; top: 50%; left: 50%; width: 80px; height: 80px; transform: translate(-50%, -50%); } .arrows:before { content: ''; position: absolute; width: 100%; height: 100%; border-left: 26.66667px solid rgb(255, 255, 255); border-bottom: 26.66667px solid rgb(255, 255, 255); transform: translate(26.66667px, 20px) rotate(-45deg); animation: arrows 1.5s linear infinite; } .arrows:after { content: ''; position: absolute; width: 100%; height: 100%; border-left: 26.66667px solid rgb(255, 255, 255); border-bottom: 26.66667px solid rgb(255, 255, 255); transform: translate(53.33333px, 0px) rotate(-45deg); animation: arrows 1.5s linear infinite -0.75s; } @keyframes arrows { 0% { border-left: 26.66667px solid transparent; border-bottom: 26.66667px solid transparent; transform: translate(-13.33333px, -53.33333px) rotate(-45deg); } 10%, 90% { border-left: 26.66667px solid transparent; border-bottom: 26.66667px solid transparent; } 50% { border-left: 26.66667px solid rgb(255, 255, 255); border-bottom: 26.66667px solid rgb(255, 255, 255); transform: translate(-13.33333px, 0px) rotate(-45deg); } 100% { border-left: 26.66667px solid transparent; border-bottom: 26.66667px solid transparent; transform: translate(-13.33333px, 53.33333px) rotate(-45deg); } } .slick-track { height: auto !important; } .productPriceContainer { font-weight: 500; text-align: center; font-size: 25px; color: #283848; margin: 12px 0 -12px; } .productPriceValue { font-size: 28px; vertical-align: sub; display: inline-block; font-size: 30px; font-weight: 500; margin-top: 20px; margin-bottom: 10px; font-family: sans-serif; color: #212121; } .downIcon { position: absolute; left: 0; right: 0; text-align: center; font-size: 30px; color: white; bottom: 100px; } .body { max-width: 700px; margin: 0 auto; padding: 10px; } @media only screen and (min-width: 350px) and (max-width: 400px) { .productImageContainer { display: block; float: left; width: 25%; } .productCartTitle { width: 30% } .removeContainer { float: right; margin: 0; margin-top: 20px; margin-right: 18px; } } @media only screen and (min-width: 310px) and (max-width: 349px) { .productImageContainer { display: block; float: left; width: 40%; } .productCartTitle { width: 50% } .removeContainer { margin: 0; text-align: center; margin-right: 40px; margin-top: 30px } } @media only screen and (max-width: 970px) and (min-width: 768px) { .productColumn1 { width: 100%; padding: 0; } .thumbnailSlider { width: 100px; margin-left: 0; margin-right: 0; margin-top: 0; margin-bottom: 0; height: 420px; order: 1; text-align: center; } .productColumn2 { width: 100%; padding: 0; } }
src/styles/global.css
*, *::before, *::after { box-sizing: border-box; -webkit-box-sizing: border-box; } body { margin: 0; } .productCartContainerArea { position: relative; display: inline-block; } .backHome { text-decoration: underline; margin-left: 23px; cursor: pointer; } .containers { height: 0px; background-color: transparent; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; width: 100%; align-items: center; } .containerMobile { height: 60px; background-color: #283848; display: -webkit-box; display: -ms-flexbox; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; z-index: 999999999999; position: fixed; width: 100%; align-items: center; --border-opacity: 1; --bg-opacity: 1; } .containers .logo { max-width: 250px; padding: 0 10px; padding-left: 150px; } .containers .logo a { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .containers .navbar { display: -webkit-box; display: -ms-flexbox; margin-bottom: 60px; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; justify-content: flex-end; -webkit-box-flex: 1; -ms-flex: 1; z-index: 999999; flex: 1; padding: 0 10px; } .containers .navbar ul { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; } .containerMobile .logo { max-width: 250px; padding: 0 10px; padding-left: 150px; } .containerMobile .logo a { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .containerMobile .navbar { display: -webkit-box; display: -ms-flexbox; margin-bottom: 60px; display: flex; position: relative; top: -119px; -ms-flex-wrap: wrap; flex-wrap: wrap; justify-content: flex-end; -webkit-box-flex: 1; -ms-flex: 1; z-index: 999999; flex: 1; padding: 0 10px; } .containerMobile .navbar ul { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; } .slick-slider { overflow: hidden; } .logoAnchor { max-height: 120px; z-index: 99999999; width: auto; background-color: transparent; } .priceContainer { text-align: center; width: 100%; font-size: 24px; font-family: sans-serif; } .containers .navbar ul li a { text-decoration: none; color: black; font-size: 14px; display: block; height: 60px; line-height: 60px; cursor: pointer; padding: 0 10px; } .containers .navbar ul li a:hover { color: #ffffff; background-color: rgba(23, 23, 23, 0.9); } .containers .navbar ul .closeIcon { display: none; text-align: right; padding: 10px; } .containers .navbar ul .closeIcon span { font-size: 40px; display: inline-block; border: 1px solid #cccccc; padding: 0 10px; cursor: pointer; } .individualPriceContainer { display: inline-block; float: right; margin-right: 130px; padding-top: 10px; font-family: sans-serif; font-size: 20px; } .containers .navbar .icon-bar { padding: 18px 8px; width: 50px; height: 60px; display: none; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; cursor: pointer; } .containers .navbar .icon-bar i { background-color: black; height: 2px; } .containerMobile .navbar ul li a { text-decoration: none; color: white; font-size: 14px; display: block; height: 60px; line-height: 60px; cursor: pointer; padding: 0 10px; } .productColumn1 { float: left; width: 60%; } .productColumn2 { float: left; width: 40%; } .containerMobile .navbar ul li a:hover { color: #ffffff; background-color: rgba(23, 23, 23, 0.9); } .containerMobile .navbar ul .closeIcon { display: none; text-align: right; padding: 10px; } .containerMobile .navbar ul .closeIcon span { font-size: 40px; display: inline-block; border: 1px solid #cccccc; padding: 0 10px; cursor: pointer; } .containerMobile .navbar .icon-bar { padding: 18px 8px; width: 50px; height: 60px; display: none; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; cursor: pointer; } .containerMobile .navbar .icon-bar i { background-color: #ffffff; height: 2px; } .imageGalleryContainer { margin-top: 124px; display: flex; margin-left: 100px; flex-wrap: wrap; } .imageDisplayArea { width: 70%; max-width: 700px; margin-left: 10px; height: auto; padding-bottom: 100px; order: 2; margin-top: 0px; display: flex; } .border-thumb { border: 1px solid black; } .border-radi { background-color: #fce4e4; border: 1px solid #cc0033; outline: none; } .thumbnailSlider { width: 100px; margin-left: 0; margin-right: 0; margin-top: 0; margin-bottom: 0; height: 420px; order: 1; text-align: center; } .selectContainer { display: flex; margin-bottom: 65px; padding-left: 150px; justify-content: center; } .selectInternalContainer { justify-content: flex-start; display: flex; align-items: center; outline: none!important; margin-bottom: 100px; } .footerContainer { background-color: #172337; width: 100%; border-top: 1px solid #ddd; margin-top: 25px; } .footerContent { background-color: #172337; width: 100%!important; padding-top: 40px; height: 200px; text-align: center; } .selectInternalContainer span { width: auto; margin-right: 60px; text-align: left; --text-opacity: 1; padding-top: 0; padding-bottom: 0; max-width: 1232px; padding-left: 0; padding-right: 0; margin-left: auto; margin-right: auto; } .checkoutContainer { padding-top: 150px; max-width: 1140px; width: 100%; margin-bottom: 100px; padding-bottom: 0; padding-left: 0; padding-right: 0; margin-left: auto; margin-right: auto; } .footerColumn { float: left; width: 50%; padding: 10px; height: auto; } .footerColumn2 { float: left; width: 50%; padding: 10px; text-align: left; height: auto; } .officeAddress { color: #878787; font-size: 12px; font-weight: 400; } .select { position: relative; min-width: 180px; margin-left: 50px; box-sizing: border-box; } .videoContainer { height: 100vh; width: 100%; position: relative } .videoWrapper { height: 100vh; width: 100%; top: 0; left: 0; position: absolute; overflow: hidden } .video { position: absolute; object-fit: cover; top: 50%; left: 50%; width: 100%; height: 100%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; } .productContent { font-family: Actor; margin-top: 150px; text-align: center; } .videoContent { width: 100%; margin-left: 170px; margin-bottom: 56px; --text-opacity: 1; bottom: 75px; position: absolute; } .buyNowButtonContainer { width: 335px; margin: auto; justify-content: center; } .addToCart { float: left; display: block; margin: 0 0 0 0; padding: 13px; background-color: white; border-color: #283848; border-style: solid; border-width: 1px; border-radius: 50px; min-width: 325px; font-family: 'Intro W03 Black', Helvetica, Arial, sans-serif; font-size: 17px; line-height: 17px; font-weight: 700; color: black; text-align: center; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; transition-duration: 0.2s; -moz-transition-duration: 0.2s; -webkit-transition-duration: 0.2s; } .addToCart:hover { background-color: #283848; color: white; cursor: pointer; } .buyNow { cursor: pointer; float: left; display: block; margin: 0 0 0 0; padding: 13px; background-color: #283848; border-color: #283848; border-style: solid; border-width: 1px; border-radius: 50px; min-width: 325px; font-family: 'Intro W03 Black', Helvetica, Arial, sans-serif; font-size: 17px; line-height: 17px; font-weight: 700; color: #fff; text-align: center; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; transition-duration: 0.2s; -moz-transition-duration: 0.2s; -webkit-transition-duration: 0.2s; } .dynamicButtonContainer { text-align: end; margin-top: 30px; text-align: center; } .divider { border-left: 1px solid #454d5e; padding-left: 200px; } .fullOfficeAdd { width: 80px; color: white; text-align: left; margin-top: 10px; } .checkoutProductCard { height: 200px; margin-top: 20px; padding-top: 20px; box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px; -webkit-flex-flow: column; -ms-flex-flow: column; flex-flow: column; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 500px; width: 100%; flex-grow: 1; overflow: visible; -webkit-flex-flow: column; -ms-flex-flow: column; display: -webkit-flex; display: -ms-flexbox; display: flex; flex-flow: column; } .productCartContainerArea { width: 100%; border-top: 2px solid #f0f0f0!important; padding-top: 10px; text-align: center; padding-left: 20px; } .productImageContainer { display: inline-block; float: left; width: 10%; } .productCartTitle { width: 13%; padding: 0 24px 12px; vertical-align: top; -webkit-flex: 1 1; -ms-flex: 1 1; flex: 1 1; overflow: hidden; display: inline-block; max-width: 600px; } .buttonCartContainer { display: inline-block; color: #212121; padding-left: 20px; padding-bottom: 20px; } .addButton { color: #c2c2c2; border-color: #e0e0e0; cursor: auto; width: 28px; height: 28px; background: linear-gradient(#fff, #f9f9f9); display: inline-block; border: 1px solid #c2c2c2; cursor: pointer; font-size: 16px; border-radius: 50%; padding-top: 1px; line-height: 1; } .inputCartContainer { display: inline-block; width: calc(100% - 60px); height: 100%; width: 46px; height: 28px; background-color: #fff; margin: 0 5px; } .inputCart { width: 100%; border-radius: 2px; background-color: #fff; border: 1px solid #c2c2c2; font-size: 14px; font-weight: 500; height: 31px; vertical-align: middle; text-align: center } .removeContainer { margin-left: 150px; margin-top: 30px; } .removeContainerButton { text-transform: uppercase; color: black; font-family: monospace; box-shadow: none; outline: 0; font-size: 16px; font-weight: 500; cursor: pointer; margin-right: 25px; } .subButton { width: 28px; height: 28px; background: linear-gradient(#fff, #f9f9f9); display: inline-block; border: 1px solid #c2c2c2; cursor: pointer; font-size: 16px; border-radius: 50%; padding-top: 1px; line-height: 1; } .increaseDecreaseContainer { text-align: center; margin-left: 30px; margin-top: 14px; display: -webkit-flex; display: -ms-flexbox; display: flex; color: #212121; -webkit-align-items: center; -ms-flex-align: center; align-items: center; display: inline-block; } .submitButton { display: inline-block; text-align: center; margin-left: 20px } .currentButton { display: inline-block; margin-left: 50px } .addressFont p { font-weight: 1000; padding-left: 5px; } .addressFont { font-size: 20px; } .alert { padding: 20px; background-color: #f44336; color: white; opacity: 1; transition: opacity 0.6s; margin-bottom: 15px; } .alert.success { background-color: #4CAF50; } .alert.info { background-color: #2196F3; } .alert.warning { background-color: #ff9800; } .closebtn { margin-left: 15px; color: white; font-weight: bold; float: right; font-size: 22px; line-height: 20px; cursor: pointer; transition: 0.3s; } .closebtn:hover { color: black; } @media only screen and (max-width: 768px) { .selectContainer { margin-bottom: 0px; padding-left: 0px; } .dynamicButtonContainer { padding-right: 8px; text-align: end } .priceContainer { margin-top: 50px; padding-right: 10px } .individualPriceContainer { margin-top: 20px; margin-left: 30px; display: inline-flex; margin-right: 10px } .increaseDecreaseContainer { display: inline-block; } .removeContainer { margin-right: 40px; margin-top: 30px; } .selectInternalContainer { margin-bottom: 5px; } .footerContent { height: 300px; } .productImageContainer { display: block; float: left; width: 25%; } .fullOfficeAdd { width: 100%; text-align: center; } .productCartTitle { width: 30%; } .footerColumn { width: 100%; } .footerColumn2 { width: 100%; text-align: center; } .divider { border-left: 0px; padding-left: 0px } .imageGalleryContainer { margin-top: 20px; justify-content: center; margin-left: 0; } .thumbnailSlider { width: 200px; margin-left: 0; margin-right: 0; margin-top: 0; margin-bottom: 20px; height: 100px; order: 1; text-align: center; } .imageDisplayArea { width: 70%; max-width: 700px; margin-left: 10px; height: auto; order: 2; margin-top: 29px; display: flex; } .productContent { font-family: Actor; margin-top: 50px; text-align: center; padding-right: 0px; } .logoAnchor { max-height: 80px; position: fixed; top: 0; left: 0; z-index: 999999; width: auto; background-color: transparent; } ._Menus-showLogo { max-height: 80px; position: fixed; top: 0; left: 0; z-index: 0; width: auto; background-color: transparent; } .containers { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .containers .logo { -webkit-box-flex: 1; -ms-flex: 1; padding-left: 60px; flex: 1; } .productColumn1 { width: 100%; padding: 0; } .productColumn2 { width: 100%; padding: 0; } .containers .navbar { -webkit-box-flex: 0; -ms-flex: 0; flex: 0; } .containers .navbar ul { -ms-flex-wrap: nowrap; flex-wrap: nowrap; position: fixed; left: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; background: #ffffff; width: 100%; height: 100%; overflow: auto; -webkit-transition: left .3s; -o-transition: left .3s; transition: left .3s; } .containers .navbar ul li a { padding: 10px; font-size: 16px; height: auto; line-height: normal; color: #555555; } .containers .navbar ul .closeIcon { display: block; } .containers .navbar .icon-bar { display: -webkit-box; display: -ms-flexbox; display: flex; } .containers .navbar ._Menus-show { left: 0; z-index: 999999999; bottom: 0 } .containers .navbar ._Menus-show div { margin-top: 200px; } .containerMobile .logo { -webkit-box-flex: 1; -ms-flex: 1; padding-left: 60px; flex: 1; } .containerMobile .navbar { top: 0px; -webkit-box-flex: 0; -ms-flex: 0; flex: 0; } .containerMobile .navbar ul { -ms-flex-wrap: nowrap; flex-wrap: nowrap; position: fixed; left: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; background: #ffffff; width: 100%; height: 100%; overflow: auto; -webkit-transition: left .3s; -o-transition: left .3s; transition: left .3s; } .containerMobile .navbar ul li a { padding: 10px; font-size: 16px; height: auto; line-height: normal; color: #555555; } .containerMobile .navbar ul .closeIcon { display: block; } .containerMobile .navbar .icon-bar { display: -webkit-box; display: -ms-flexbox; display: flex; } .containerMobile .navbar ._Menus-show { left: 0; z-index: 999999999; bottom: 0 } .containerMobile .navbar ._Menus-show div { margin-top: 200px; } } .productRow:after { content: ""; display: table; clear: both; } .productRow { padding-top: 0; padding-bottom: 0; max-width: 1232px; padding-left: 0; padding-right: 0; margin-left: auto; margin-right: auto; } .arrows { cursor: pointer; position: relative; position: absolute; top: 50%; left: 50%; width: 80px; height: 80px; transform: translate(-50%, -50%); } .arrows:before { content: ''; position: absolute; width: 100%; height: 100%; border-left: 26.66667px solid rgb(255, 255, 255); border-bottom: 26.66667px solid rgb(255, 255, 255); transform: translate(26.66667px, 20px) rotate(-45deg); animation: arrows 1.5s linear infinite; } .arrows:after { content: ''; position: absolute; width: 100%; height: 100%; border-left: 26.66667px solid rgb(255, 255, 255); border-bottom: 26.66667px solid rgb(255, 255, 255); transform: translate(53.33333px, 0px) rotate(-45deg); animation: arrows 1.5s linear infinite -0.75s; } @keyframes arrows { 0% { border-left: 26.66667px solid transparent; border-bottom: 26.66667px solid transparent; transform: translate(-13.33333px, -53.33333px) rotate(-45deg); } 10%, 90% { border-left: 26.66667px solid transparent; border-bottom: 26.66667px solid transparent; } 50% { border-left: 26.66667px solid rgb(255, 255, 255); border-bottom: 26.66667px solid rgb(255, 255, 255); transform: translate(-13.33333px, 0px) rotate(-45deg); } 100% { border-left: 26.66667px solid transparent; border-bottom: 26.66667px solid transparent; transform: translate(-13.33333px, 53.33333px) rotate(-45deg); } } .slick-track { height: auto !important; } .productPriceContainer { font-weight: 500; text-align: center; font-size: 25px; color: #283848; margin: 12px 0 -12px; } .productPriceValue { font-size: 28px; vertical-align: sub; display: inline-block; font-size: 30px; font-weight: 500; margin-top: 20px; margin-bottom: 10px; font-family: sans-serif; color: #212121; } .downIcon { position: absolute; left: 0; right: 0; text-align: center; font-size: 30px; color: white; bottom: 100px; } .body { max-width: 700px; margin: 0 auto; padding: 10px; } @media only screen and (min-width: 350px) and (max-width: 400px) { .productImageContainer { display: block; float: left; width: 25%; } .productCartTitle { width: 30% } .removeContainer { float: right; margin: 0; margin-top: 20px; margin-right: 18px; } } @media only screen and (min-width: 310px) and (max-width: 349px) { .productImageContainer { display: block; float: left; width: 40%; } .productCartTitle { width: 50% } .removeContainer { margin: 0; text-align: center; margin-right: 40px; margin-top: 30px } } @media only screen and (max-width: 970px) and (min-width: 768px) { .productColumn1 { width: 100%; padding: 0; } .thumbnailSlider { width: 100px; margin-left: 0; margin-right: 0; margin-top: 0; margin-bottom: 0; height: 420px; order: 1; text-align: center; } .productColumn2 { width: 100%; padding: 0; } }
0.451085
0.044245
.rm-desktop ul { display: none; } /* Hide responsive/mobile menu, leave this to kmom02 */ .rm-navbar-max { display: none; } body, html { width: 100%; height: 100%; margin: 0; padding: 0; font-family: 'Source Sans Pro', sans-serif; } * { box-sizing: border-box; } .wrap-all { width: 100%; margin: 0; padding: 0; } .right { float: right; } .left { float: left; } /* ---------- Header ---------- */ .region-header { height: 80px; display: flex; align-items: center; justify-content: space-between; padding: 1em; background-color: #fff; } .region-header a { text-decoration: none; text-transform: uppercase; font-weight: 600; color: black; padding-bottom: 0.25em; font-size: 1em; letter-spacing: 0.04em; } .region-header a:hover { border-bottom: 1px solid black; } .site-logo { display: none; } .site-logo-text a { font-size: 2em; color: black; } .my-navbar { display: inline-block; padding: 0; list-style: none; margin: 0; } .my-navbar > li { display: inline-block; margin: 5px; padding: 5px; } .region-header-col-1 { display: inline; float: left; } .region-header-col-2 { display: inline; float: right; } .region-header-col-3 { display: none; } .region-flash img { width: 100%; } /* ---------- Main content ---------- */ .outer-wrap-main, .outer-wrap-breadcrumb { width: 80%; margin: 0 auto; padding: 1.5em; } .outer-wrap-main img { width: 100%; } .outer-wrap-main { min-height: 600px; padding-bottom: 2.5em; overflow: auto; } .has-sidebar { width: 70%; display: inline-block; float: left; } .wrap-sidebar { width: 30%; } .region-main.has-sidebar-right.has-sidebar { padding-right: 1.5em; } .row::after { content: ""; display: block; clear: both; } /* ---------- Breadcrumb and navigation ---------- */ .next-previous { margin-bottom: 24px; } .next-previous .next { float: right; text-align: right; } .breadcrumb-list a { font-size: 0.75em; text-decoration: none; color: black; margin-bottom: 1.5em; } .breadcrumb-list a:hover { text-decoration: underline; color: #bdc3c7; } .breadcrumb-list ul { margin: 0; padding: 0; list-style-type: none; } .breadcrumb-list li { display: inline; margin: 0; padding: 0; } .breadcrumb-list li::after { content: " > "; } .toc ul { margin: 0; padding: 0; list-style-type: none; } .toc a, .next-previous a { color: black; line-height: 1.75; text-decoration: none; } .toc a:hover, .next-previous a:hover { text-decoration: underline; color: #bdc3c7; } /* ---------- Flashmessage ---------- */ .flashmessage { background-color: #bdc3c7; padding: 1em; width: 80%; margin: 1em auto; } .flashmessage .flashmessage-icon { float: right; font-size: 3em; } .flashmessage p { margin-top: 25px; margin-bottom: 25px; } /* ---------- Byline ---------- */ .author-byline { background-color: #bdc3c7; clear: both; width: auto; overflow: auto; padding: 1em; margin: 1.5em 0; color: white; font-weight: 300; font-size: 18px; } .author-byline a { color: white; } .author-byline img { width: 100px; float: left; margin-right: 1em; } /* ---------- Footer ---------- */ .outer-wrap-footer { background-color: #2e3131; color: white; padding: 1em; clear: both; } .footer-column { width: 33%; float: left; padding: 1em; } .site-footer { text-align: center; clear: both; display: block; } .footer-column-4 { display: none; }
htdocs/css/kmom01.css
.rm-desktop ul { display: none; } /* Hide responsive/mobile menu, leave this to kmom02 */ .rm-navbar-max { display: none; } body, html { width: 100%; height: 100%; margin: 0; padding: 0; font-family: 'Source Sans Pro', sans-serif; } * { box-sizing: border-box; } .wrap-all { width: 100%; margin: 0; padding: 0; } .right { float: right; } .left { float: left; } /* ---------- Header ---------- */ .region-header { height: 80px; display: flex; align-items: center; justify-content: space-between; padding: 1em; background-color: #fff; } .region-header a { text-decoration: none; text-transform: uppercase; font-weight: 600; color: black; padding-bottom: 0.25em; font-size: 1em; letter-spacing: 0.04em; } .region-header a:hover { border-bottom: 1px solid black; } .site-logo { display: none; } .site-logo-text a { font-size: 2em; color: black; } .my-navbar { display: inline-block; padding: 0; list-style: none; margin: 0; } .my-navbar > li { display: inline-block; margin: 5px; padding: 5px; } .region-header-col-1 { display: inline; float: left; } .region-header-col-2 { display: inline; float: right; } .region-header-col-3 { display: none; } .region-flash img { width: 100%; } /* ---------- Main content ---------- */ .outer-wrap-main, .outer-wrap-breadcrumb { width: 80%; margin: 0 auto; padding: 1.5em; } .outer-wrap-main img { width: 100%; } .outer-wrap-main { min-height: 600px; padding-bottom: 2.5em; overflow: auto; } .has-sidebar { width: 70%; display: inline-block; float: left; } .wrap-sidebar { width: 30%; } .region-main.has-sidebar-right.has-sidebar { padding-right: 1.5em; } .row::after { content: ""; display: block; clear: both; } /* ---------- Breadcrumb and navigation ---------- */ .next-previous { margin-bottom: 24px; } .next-previous .next { float: right; text-align: right; } .breadcrumb-list a { font-size: 0.75em; text-decoration: none; color: black; margin-bottom: 1.5em; } .breadcrumb-list a:hover { text-decoration: underline; color: #bdc3c7; } .breadcrumb-list ul { margin: 0; padding: 0; list-style-type: none; } .breadcrumb-list li { display: inline; margin: 0; padding: 0; } .breadcrumb-list li::after { content: " > "; } .toc ul { margin: 0; padding: 0; list-style-type: none; } .toc a, .next-previous a { color: black; line-height: 1.75; text-decoration: none; } .toc a:hover, .next-previous a:hover { text-decoration: underline; color: #bdc3c7; } /* ---------- Flashmessage ---------- */ .flashmessage { background-color: #bdc3c7; padding: 1em; width: 80%; margin: 1em auto; } .flashmessage .flashmessage-icon { float: right; font-size: 3em; } .flashmessage p { margin-top: 25px; margin-bottom: 25px; } /* ---------- Byline ---------- */ .author-byline { background-color: #bdc3c7; clear: both; width: auto; overflow: auto; padding: 1em; margin: 1.5em 0; color: white; font-weight: 300; font-size: 18px; } .author-byline a { color: white; } .author-byline img { width: 100px; float: left; margin-right: 1em; } /* ---------- Footer ---------- */ .outer-wrap-footer { background-color: #2e3131; color: white; padding: 1em; clear: both; } .footer-column { width: 33%; float: left; padding: 1em; } .site-footer { text-align: center; clear: both; display: block; } .footer-column-4 { display: none; }
0.431824
0.099208
body { background-color: #F5F5F5; } section { overflow: hidden; margin-bottom: 50px; } .row [class*='grid-'] { background-color: #EEE; border: 1px solid #CCC; line-height: 50px; text-align: center; } .title { text-align: center; } .gist .gist-file .gist-meta { display: none!important; } .gist .gist-file { font-size: .9rem !important; margin: 0 auto; overflow: hidden !important; text-align: left; } /* Icons ==================================================== */ .clearfix { *zoom: 1; } .clearfix:before, .clearfix:after { display: table; content: ""; line-height: 0; } .clearfix:after { clear: both; } html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } a:focus { outline: thin dotted #333; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } a:hover, a:active { outline: 0; } button, input, select, textarea { margin: 0; font-size: 100%; vertical-align: middle; } button, input { *overflow: visible; line-height: normal; } button::-moz-focus-inner, input::-moz-focus-inner { padding: 0; border: 0; } body { margin: 0; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #333; background-color: #fff; } a { color: #08c; text-decoration: none; } a:hover { color: #005580; text-decoration: underline; } .row { margin-left: -20px; *zoom: 1; } .row:before, .row:after { display: table; content: ""; line-height: 0; } .row:after { clear: both; } [class*="span"] { float: left; min-height: 1px; margin-left: 20px; } /*.container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container { width: 940px; }*/ /*.span12 { width: 940px; } .span11 { width: 860px; } .span10 { width: 780px; } .span9 { width: 700px; } .span8 { width: 620px; } .span7 { width: 540px; } .span6 { width: 460px; } .span5 { width: 380px; } .span4 { width: 300px; } .span3 { width: 220px; } .span2 { width: 140px; } .span1 { width: 60px; }*/ [class*="span"].pull-right, .row-fluid [class*="span"].pull-right { float: right; } .container { margin-right: auto; margin-left: auto; *zoom: 1; } .container:before, .container:after { display: table; content: ""; line-height: 0; } .container:after { clear: both; } p { margin: 0 0 10px; } .lead { margin-bottom: 20px; font-size: 21px; font-weight: 200; line-height: 30px; } small { font-size: 85%; } h1 { margin: 10px 0; font-family: inherit; font-weight: bold; line-height: 20px; color: inherit; text-rendering: optimizelegibility; } h1 small { font-weight: normal; line-height: 1; color: #999; } h1 { line-height: 40px; } h1 { font-size: 38.5px; } h1 small { font-size: 24.5px; } body { margin-top: 90px; } /*.header { position: fixed; top: 0; left: 50%; margin-left: -480px; background-color: #fff; border-bottom: 1px solid #ddd; padding-top: 10px; z-index: 10; }*/ .footer { color: #ddd; font-size: 16px; text-align: center; margin-top: 50px; margin-bottom: 80px; } .footer a { color: #ccc; text-decoration: underline; } .the-icons { font-size: 14px; line-height: 24px; } .switch { position: absolute; right: 0; bottom: 10px; color: #666; } .switch input { margin-right: 0.3em; } .codesOn .i-name { display: none; } .codesOn .i-code { display: inline; } .i-code { display: none; }
docs/docs.css
body { background-color: #F5F5F5; } section { overflow: hidden; margin-bottom: 50px; } .row [class*='grid-'] { background-color: #EEE; border: 1px solid #CCC; line-height: 50px; text-align: center; } .title { text-align: center; } .gist .gist-file .gist-meta { display: none!important; } .gist .gist-file { font-size: .9rem !important; margin: 0 auto; overflow: hidden !important; text-align: left; } /* Icons ==================================================== */ .clearfix { *zoom: 1; } .clearfix:before, .clearfix:after { display: table; content: ""; line-height: 0; } .clearfix:after { clear: both; } html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } a:focus { outline: thin dotted #333; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } a:hover, a:active { outline: 0; } button, input, select, textarea { margin: 0; font-size: 100%; vertical-align: middle; } button, input { *overflow: visible; line-height: normal; } button::-moz-focus-inner, input::-moz-focus-inner { padding: 0; border: 0; } body { margin: 0; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #333; background-color: #fff; } a { color: #08c; text-decoration: none; } a:hover { color: #005580; text-decoration: underline; } .row { margin-left: -20px; *zoom: 1; } .row:before, .row:after { display: table; content: ""; line-height: 0; } .row:after { clear: both; } [class*="span"] { float: left; min-height: 1px; margin-left: 20px; } /*.container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container { width: 940px; }*/ /*.span12 { width: 940px; } .span11 { width: 860px; } .span10 { width: 780px; } .span9 { width: 700px; } .span8 { width: 620px; } .span7 { width: 540px; } .span6 { width: 460px; } .span5 { width: 380px; } .span4 { width: 300px; } .span3 { width: 220px; } .span2 { width: 140px; } .span1 { width: 60px; }*/ [class*="span"].pull-right, .row-fluid [class*="span"].pull-right { float: right; } .container { margin-right: auto; margin-left: auto; *zoom: 1; } .container:before, .container:after { display: table; content: ""; line-height: 0; } .container:after { clear: both; } p { margin: 0 0 10px; } .lead { margin-bottom: 20px; font-size: 21px; font-weight: 200; line-height: 30px; } small { font-size: 85%; } h1 { margin: 10px 0; font-family: inherit; font-weight: bold; line-height: 20px; color: inherit; text-rendering: optimizelegibility; } h1 small { font-weight: normal; line-height: 1; color: #999; } h1 { line-height: 40px; } h1 { font-size: 38.5px; } h1 small { font-size: 24.5px; } body { margin-top: 90px; } /*.header { position: fixed; top: 0; left: 50%; margin-left: -480px; background-color: #fff; border-bottom: 1px solid #ddd; padding-top: 10px; z-index: 10; }*/ .footer { color: #ddd; font-size: 16px; text-align: center; margin-top: 50px; margin-bottom: 80px; } .footer a { color: #ccc; text-decoration: underline; } .the-icons { font-size: 14px; line-height: 24px; } .switch { position: absolute; right: 0; bottom: 10px; color: #666; } .switch input { margin-right: 0.3em; } .codesOn .i-name { display: none; } .codesOn .i-code { display: inline; } .i-code { display: none; }
0.419529
0.095898
.box{ transform-style: preserve-3d; /*-webkit-perspective:150px;*/ perspective: 10000px; width:186px; height:186px; position: relative; transform-origin: center; animation: spin 23s linear infinite; } .box:hover .out-box1 { transform: translateZ(186px); } .box:hover .out-box2 { transform: translateZ(-186px)rotateY(-180deg); } .box:hover .out-box3 { transform: translate(-186px)rotateY(-90deg); } .box:hover .out-box4 { transform: translate(186px)rotateY(90deg); } .box:hover .out-box5 { transform: rotateZ(-90deg)translateX(186px)rotateY(90deg); } .box:hover .out-box6 { transform: translateY(186px)rotateX(-90deg); } .box:hover .out-box1 { transform: translateZ(186px); } .box:hover .out-box2 { transform: translateZ(-186px)rotateY(-180deg); } .box:hover .out-box3 { transform: translate(-186px)rotateY(-90deg); } .box:hover .out-box4 { transform: translate(186px)rotateY(90deg); } .box:hover .out-box5 { transform: rotateZ(-90deg)translateX(186px)rotateY(90deg); } .box:hover .out-box6 { transform: translateY(186px)rotateX(-90deg); } .container{ display: flex; justify-content: center; align-items: center; position: relative; } .box div[class^=out] { height:186px; width:186px; opacity: 0.4; background-size: 186px 186px; transition: all 0.5s ease; position: absolute; } .box div[class^=inner] { height:92px; width:92px; opacity: 0.9; background-size: 92px 92px; transition: all 0.5s ease; position: absolute; } .out-box1{ background: url("../assets/img/1.jpg"); transform: translateZ(93px); } .out-box2{ background:url("../assets/img/2.jpg"); transform: translateZ(-93px)rotateY(-180deg); } .out-box3{ background:url("../assets/img/3.jpg"); transform: translate(-93px)rotateY(-90deg); } .out-box4{ background: url("../assets/img/4.jpg"); transform: translate(93px)rotateY(90deg); } .out-box5{ background:url("../assets/img/5.jpg"); transform: rotateZ(-90deg)translateX(93px)rotateY(90deg); } .out-box6{ background: url("../assets/img/6.jpg"); transform: translateY(93px)rotateX(-90deg); } .box:hover .inner-box1 { transform: translate3d(46px,46px,92px); } .box:hover .inner-box2 { transform: translate3d(46px,46px,-92px)rotateY(-180deg); } .box:hover .inner-box3 { transform: translateY(46px)translate(-46px)rotateY(-90deg); } .box:hover .inner-box4 { transform: translate(128px)translateY(46px)rotateY(90deg); } .box:hover .inner-box5 { transform: translate(46px)translateY(-46px)rotateX(-90deg); } .box:hover .inner-box6 { transform: translateY(128px)translate(46px)rotateX(-90deg); } .inner-box1{ background-image: url("../assets/img/7.jpg"); transform: translate3d(46px,46px,46px); } .inner-box2{ background-image: url("../assets/img/8.jpg"); transform: translate3d(46px,46px,-46px)rotateY(-180deg); } .inner-box3{ background-image: url("../assets/img/9.jpg"); transform: translateY(46px)rotateY(-90deg); } .inner-box4{ background-image: url("../assets/img/10.jpg"); transform: translate(92px)translateY(46px)rotateY(90deg); } .inner-box5{ transform: translate(46px)rotateX(-90deg); background-image: url("../assets/img/11.jpg") } .inner-box6{ background-image: url("../assets/img/12.jpg"); transform: translateY(92px)translate(46px)rotateX(-90deg); } @keyframes spin{ /*0% {*/ /*transform: rotate3d(1,1,1,360deg);*/ /*}*/ /*20%{*/ /*transform: rotate3d(3,1,1,180deg);*/ /*}*/ /*40% {*/ /*transform: rotate3d(3,3,3,360deg);*/ /*}*/ /*60% {*/ /*transform: rotateX(360deg) rotateY(0deg);*/ /*}*/ /*80% {*/ /*transform: rotateX(360deg) rotateY(180deg);*/ /*}*/ 0% {} 50% {transform: rotateX(90deg)rotateY(90deg)rotateZ(90deg)} 60% {transform: rotateY(-180deg)rotateZ(90deg)} 100% { transform: rotateX(360deg)rotateY(-90deg) } }
src/app/child/child.component.css
.box{ transform-style: preserve-3d; /*-webkit-perspective:150px;*/ perspective: 10000px; width:186px; height:186px; position: relative; transform-origin: center; animation: spin 23s linear infinite; } .box:hover .out-box1 { transform: translateZ(186px); } .box:hover .out-box2 { transform: translateZ(-186px)rotateY(-180deg); } .box:hover .out-box3 { transform: translate(-186px)rotateY(-90deg); } .box:hover .out-box4 { transform: translate(186px)rotateY(90deg); } .box:hover .out-box5 { transform: rotateZ(-90deg)translateX(186px)rotateY(90deg); } .box:hover .out-box6 { transform: translateY(186px)rotateX(-90deg); } .box:hover .out-box1 { transform: translateZ(186px); } .box:hover .out-box2 { transform: translateZ(-186px)rotateY(-180deg); } .box:hover .out-box3 { transform: translate(-186px)rotateY(-90deg); } .box:hover .out-box4 { transform: translate(186px)rotateY(90deg); } .box:hover .out-box5 { transform: rotateZ(-90deg)translateX(186px)rotateY(90deg); } .box:hover .out-box6 { transform: translateY(186px)rotateX(-90deg); } .container{ display: flex; justify-content: center; align-items: center; position: relative; } .box div[class^=out] { height:186px; width:186px; opacity: 0.4; background-size: 186px 186px; transition: all 0.5s ease; position: absolute; } .box div[class^=inner] { height:92px; width:92px; opacity: 0.9; background-size: 92px 92px; transition: all 0.5s ease; position: absolute; } .out-box1{ background: url("../assets/img/1.jpg"); transform: translateZ(93px); } .out-box2{ background:url("../assets/img/2.jpg"); transform: translateZ(-93px)rotateY(-180deg); } .out-box3{ background:url("../assets/img/3.jpg"); transform: translate(-93px)rotateY(-90deg); } .out-box4{ background: url("../assets/img/4.jpg"); transform: translate(93px)rotateY(90deg); } .out-box5{ background:url("../assets/img/5.jpg"); transform: rotateZ(-90deg)translateX(93px)rotateY(90deg); } .out-box6{ background: url("../assets/img/6.jpg"); transform: translateY(93px)rotateX(-90deg); } .box:hover .inner-box1 { transform: translate3d(46px,46px,92px); } .box:hover .inner-box2 { transform: translate3d(46px,46px,-92px)rotateY(-180deg); } .box:hover .inner-box3 { transform: translateY(46px)translate(-46px)rotateY(-90deg); } .box:hover .inner-box4 { transform: translate(128px)translateY(46px)rotateY(90deg); } .box:hover .inner-box5 { transform: translate(46px)translateY(-46px)rotateX(-90deg); } .box:hover .inner-box6 { transform: translateY(128px)translate(46px)rotateX(-90deg); } .inner-box1{ background-image: url("../assets/img/7.jpg"); transform: translate3d(46px,46px,46px); } .inner-box2{ background-image: url("../assets/img/8.jpg"); transform: translate3d(46px,46px,-46px)rotateY(-180deg); } .inner-box3{ background-image: url("../assets/img/9.jpg"); transform: translateY(46px)rotateY(-90deg); } .inner-box4{ background-image: url("../assets/img/10.jpg"); transform: translate(92px)translateY(46px)rotateY(90deg); } .inner-box5{ transform: translate(46px)rotateX(-90deg); background-image: url("../assets/img/11.jpg") } .inner-box6{ background-image: url("../assets/img/12.jpg"); transform: translateY(92px)translate(46px)rotateX(-90deg); } @keyframes spin{ /*0% {*/ /*transform: rotate3d(1,1,1,360deg);*/ /*}*/ /*20%{*/ /*transform: rotate3d(3,1,1,180deg);*/ /*}*/ /*40% {*/ /*transform: rotate3d(3,3,3,360deg);*/ /*}*/ /*60% {*/ /*transform: rotateX(360deg) rotateY(0deg);*/ /*}*/ /*80% {*/ /*transform: rotateX(360deg) rotateY(180deg);*/ /*}*/ 0% {} 50% {transform: rotateX(90deg)rotateY(90deg)rotateZ(90deg)} 60% {transform: rotateY(-180deg)rotateZ(90deg)} 100% { transform: rotateX(360deg)rotateY(-90deg) } }
0.293
0.153835
* { font-family: sans-serif; box-sizing: border-box; } /* line 12, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ h1, h2, h3, h4, h5, h6 { margin: 0; } /* line 16, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ html, body { height: 100%; } /* line 19, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ body { background: #9d9d9d; } /* line 23, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ a:link { color: #4a79a2; text-decoration: none; } /* line 28, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ a:hover { text-decoration: underline; } /* line 32, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ a:active { color: #58bcd9; } /* line 36, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ a:visited { color: #45618e; } /* line 40, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ .doc-section { display: list-item; } /* line 44, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ .main { height: 100%; margin: 0; margin-top: 75px; } /* line 49, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ header.site-header { position: fixed; padding: 0 20px; left: 0; right: 0; top: 0; min-width: 660px; height: 60px; z-index: 1000; overflow: visible; background: rgba(255, 255, 255, 0.93); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.26); } /* line 61, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ header.site-header::after { content: ''; display: table; clear: both; } /* line 67, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ figure.social { float: right; height: 100%; margin: 0 0 0 0; padding: 0; display: table; } /* line 73, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ figure.social ul { margin: auto 0; padding: 0; display: table-cell; vertical-align: middle; list-style: none; width: 100px; word-spacing: 5px; } /* line 81, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ figure.social ul li { width: 25px; height: 25px; display: inline-block; } /* line 85, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ figure.social ul li a { text-decoration: none; } /* line 87, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ figure.social ul li a::before { color: #989898; font-size: 23px; line-height: 25px; transition: all 0.3s ease-in; } /* line 93, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ figure.social ul li a:hover::before { color: #16c5e4; text-shadow: 0 0 15px rgba(22, 197, 228, 0.5); } /* line 96, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ figure.social ul li a .hidden-text { line-height: 0; font-size: 0; color: transparent; } /* line 105, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ h1.site-logo { margin: 0; float: left; height: 100%; display: table; text-align: center; vertical-align: middle; font-size: 22px; font-family: "Arial Narrow", Arial, Helvetica, sans-serif; font-weight: lighter; color: #afafaf; text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1); } /* line 117, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ h1.site-logo .logo-text { display: table-cell; vertical-align: middle; text-decoration: none; transition: all 0.3s ease-in; } /* line 122, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ h1.site-logo .logo-text:link, h1.site-logo .logo-text:visited { color: #818181; } /* line 125, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ h1.site-logo .logo-text:hover { color: #16c5e4; text-shadow: 0 0 15px rgba(22, 197, 228, 0.5); } /* line 129, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ h1.site-logo .logo-text-highlight { color: #6fdef1; } /* line 133, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav { display: block; height: 100%; text-align: center; } /* line 137, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul { display: inline-block; position: relative; padding: 0; top: 10px; list-style: none; text-align: center; vertical-align: bottom; } /* line 145, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li { display: inline-block; } /* line 147, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li:not(first-child) { margin-right: 20px; } /* line 150, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li a:link { font-size: 22px; color: #535353; text-transform: uppercase; font-family: "Arial Narrow", Arial, Helvetica, sans-serif; text-decoration: none; transition: all 0.3s ease-in; } /* line 158, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li a:visited { color: #535353; } /* line 161, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li a:hover { color: #16c5e4; text-shadow: 0 0 15px rgba(22, 197, 228, 0.5); text-decoration: underline; } /* line 165, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li a:active { color: #9de8f6; } /* line 168, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li a.selected { color: #16c5e4; } /* line 170, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li a.selected:hover { color: #6fdef1; } /* line 173, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li a.selected:active { color: #9de8f6; } /* line 180, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ #imageSlider { margin: 0 auto; padding: 0; height: 300px; position: relative; border-style: solid; border-color: #fff; border-width: 1px 0 0px; background-color: #ffffff; border-radius: 4px; box-shadow: 1px 2px 2px 0.05px rgba(0, 0, 0, 0.29); } /* line 186, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ #imageSlider h2 { color: #989898; margin: 0; padding: 3px; } /* line 192, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ #imageSlider .slides .slide { background: #ebebeb; background: linear-gradient(#373737, #464646 5%, #464646 95%, #373737); } /* line 198, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ section.site-content { text-align: center; max-width: 708px; margin: 15px auto; overflow: hidden; } /* line 203, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ section.site-content h2 { text-align: center; text-transform: uppercase; color: #535353; font-family: "Arial Narrow", Arial, Helvetica, sans-serif; font-weight: lighter; padding-top: 18px; padding-bottom: 10px; } /* line 213, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ footer.site-footer { padding: 10px 0 5px 0; text-align: center; font-size: smaller; color: #464646; overflow: hidden; } /* line 221, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ article.news-block { display: block; position: relative; margin: 0 auto; margin-bottom: 15px; border-style: solid; border-color: #fff; border-width: 10px; background-color: #ffffff; border-radius: 4px; box-shadow: 1px 2px 2px 0.05px rgba(0, 0, 0, 0.29); } /* line 227, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ article.news-block:last-child { margin-bottom: 0; } /* line 231, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ article.news-block .news-header .news-date { display: block; text-align: right; font-size: smaller; font-weight: bold; text-transform: uppercase; color: #a8e1eb; } /* line 239, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ article.news-block .news-header h3 { color: #989898; text-transform: uppercase; font-weight: lighter; position: relative; top: -5px; } /* line 247, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ article.news-block .news-content { text-align: left; padding: 0 5px; color: #989898; } /* line 251, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ article.news-block .news-content p { margin-top: 1px; margin-bottom: 5px; } /* line 255, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ article.news-block .news-content .preview-img { display: block; margin-top: 10px; margin-bottom: 5px; text-align: center; } /* line 266, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ .gallery .gallery-img { display: block; border-style: solid; border-color: #fff; border-width: 3px; background-color: #ffffff; border-radius: 4px; box-shadow: 1px 2px 2px 0.05px rgba(0, 0, 0, 0.29); width: 226px; height: 211px; margin: 5px; float: left; overflow: hidden; } /* line 274, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ .gallery .gallery-img .gallery-preview { position: relative; } /* line 276, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ .gallery .gallery-img .gallery-preview .gallery-preview-img { position: relative; padding: 5px; width: 100%; height: auto; } /* line 283, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ .gallery .gallery-img .gallery-description { padding: 5px; text-align: center; font-size: smaller; } /* line 289, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ .gallery::after { content: ' '; display: table; clear: both; } /*# sourceMappingURL=style.css.map */
css/style.css
* { font-family: sans-serif; box-sizing: border-box; } /* line 12, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ h1, h2, h3, h4, h5, h6 { margin: 0; } /* line 16, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ html, body { height: 100%; } /* line 19, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ body { background: #9d9d9d; } /* line 23, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ a:link { color: #4a79a2; text-decoration: none; } /* line 28, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ a:hover { text-decoration: underline; } /* line 32, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ a:active { color: #58bcd9; } /* line 36, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ a:visited { color: #45618e; } /* line 40, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ .doc-section { display: list-item; } /* line 44, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ .main { height: 100%; margin: 0; margin-top: 75px; } /* line 49, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ header.site-header { position: fixed; padding: 0 20px; left: 0; right: 0; top: 0; min-width: 660px; height: 60px; z-index: 1000; overflow: visible; background: rgba(255, 255, 255, 0.93); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.26); } /* line 61, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ header.site-header::after { content: ''; display: table; clear: both; } /* line 67, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ figure.social { float: right; height: 100%; margin: 0 0 0 0; padding: 0; display: table; } /* line 73, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ figure.social ul { margin: auto 0; padding: 0; display: table-cell; vertical-align: middle; list-style: none; width: 100px; word-spacing: 5px; } /* line 81, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ figure.social ul li { width: 25px; height: 25px; display: inline-block; } /* line 85, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ figure.social ul li a { text-decoration: none; } /* line 87, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ figure.social ul li a::before { color: #989898; font-size: 23px; line-height: 25px; transition: all 0.3s ease-in; } /* line 93, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ figure.social ul li a:hover::before { color: #16c5e4; text-shadow: 0 0 15px rgba(22, 197, 228, 0.5); } /* line 96, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ figure.social ul li a .hidden-text { line-height: 0; font-size: 0; color: transparent; } /* line 105, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ h1.site-logo { margin: 0; float: left; height: 100%; display: table; text-align: center; vertical-align: middle; font-size: 22px; font-family: "Arial Narrow", Arial, Helvetica, sans-serif; font-weight: lighter; color: #afafaf; text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1); } /* line 117, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ h1.site-logo .logo-text { display: table-cell; vertical-align: middle; text-decoration: none; transition: all 0.3s ease-in; } /* line 122, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ h1.site-logo .logo-text:link, h1.site-logo .logo-text:visited { color: #818181; } /* line 125, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ h1.site-logo .logo-text:hover { color: #16c5e4; text-shadow: 0 0 15px rgba(22, 197, 228, 0.5); } /* line 129, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ h1.site-logo .logo-text-highlight { color: #6fdef1; } /* line 133, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav { display: block; height: 100%; text-align: center; } /* line 137, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul { display: inline-block; position: relative; padding: 0; top: 10px; list-style: none; text-align: center; vertical-align: bottom; } /* line 145, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li { display: inline-block; } /* line 147, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li:not(first-child) { margin-right: 20px; } /* line 150, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li a:link { font-size: 22px; color: #535353; text-transform: uppercase; font-family: "Arial Narrow", Arial, Helvetica, sans-serif; text-decoration: none; transition: all 0.3s ease-in; } /* line 158, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li a:visited { color: #535353; } /* line 161, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li a:hover { color: #16c5e4; text-shadow: 0 0 15px rgba(22, 197, 228, 0.5); text-decoration: underline; } /* line 165, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li a:active { color: #9de8f6; } /* line 168, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li a.selected { color: #16c5e4; } /* line 170, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li a.selected:hover { color: #6fdef1; } /* line 173, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ nav.site-nav ul li a.selected:active { color: #9de8f6; } /* line 180, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ #imageSlider { margin: 0 auto; padding: 0; height: 300px; position: relative; border-style: solid; border-color: #fff; border-width: 1px 0 0px; background-color: #ffffff; border-radius: 4px; box-shadow: 1px 2px 2px 0.05px rgba(0, 0, 0, 0.29); } /* line 186, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ #imageSlider h2 { color: #989898; margin: 0; padding: 3px; } /* line 192, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ #imageSlider .slides .slide { background: #ebebeb; background: linear-gradient(#373737, #464646 5%, #464646 95%, #373737); } /* line 198, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ section.site-content { text-align: center; max-width: 708px; margin: 15px auto; overflow: hidden; } /* line 203, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ section.site-content h2 { text-align: center; text-transform: uppercase; color: #535353; font-family: "Arial Narrow", Arial, Helvetica, sans-serif; font-weight: lighter; padding-top: 18px; padding-bottom: 10px; } /* line 213, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ footer.site-footer { padding: 10px 0 5px 0; text-align: center; font-size: smaller; color: #464646; overflow: hidden; } /* line 221, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ article.news-block { display: block; position: relative; margin: 0 auto; margin-bottom: 15px; border-style: solid; border-color: #fff; border-width: 10px; background-color: #ffffff; border-radius: 4px; box-shadow: 1px 2px 2px 0.05px rgba(0, 0, 0, 0.29); } /* line 227, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ article.news-block:last-child { margin-bottom: 0; } /* line 231, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ article.news-block .news-header .news-date { display: block; text-align: right; font-size: smaller; font-weight: bold; text-transform: uppercase; color: #a8e1eb; } /* line 239, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ article.news-block .news-header h3 { color: #989898; text-transform: uppercase; font-weight: lighter; position: relative; top: -5px; } /* line 247, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ article.news-block .news-content { text-align: left; padding: 0 5px; color: #989898; } /* line 251, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ article.news-block .news-content p { margin-top: 1px; margin-bottom: 5px; } /* line 255, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ article.news-block .news-content .preview-img { display: block; margin-top: 10px; margin-bottom: 5px; text-align: center; } /* line 266, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ .gallery .gallery-img { display: block; border-style: solid; border-color: #fff; border-width: 3px; background-color: #ffffff; border-radius: 4px; box-shadow: 1px 2px 2px 0.05px rgba(0, 0, 0, 0.29); width: 226px; height: 211px; margin: 5px; float: left; overflow: hidden; } /* line 274, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ .gallery .gallery-img .gallery-preview { position: relative; } /* line 276, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ .gallery .gallery-img .gallery-preview .gallery-preview-img { position: relative; padding: 5px; width: 100%; height: auto; } /* line 283, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ .gallery .gallery-img .gallery-description { padding: 5px; text-align: center; font-size: smaller; } /* line 289, E:/yadisk/web-dev/alexemashev.com/personal_website/css/style.scss */ .gallery::after { content: ' '; display: table; clear: both; } /*# sourceMappingURL=style.css.map */
0.183996
0.055438
p {color:#9e9e9e!important;padding:15px;} div { vertical-align: middle; } .alphabetpicker { position:absolute; list-style:none; padding: 0; z-index:99; background-color:black; } .alphabetpicker li {background-color: white!important;} .alphabetpicker li a {color:#fc00a6!important;} .alphabetpicker li a:hover {color:black!important;background-color: white;} .letter_active { background-color:white; color: black; } .programme_container{ position: absolute; width:100%; } .inner_programme_container { width:100%; overflow:scroll; } .more_btn:hover { color:#fc00a6!important; } .pagination_div { width:100%; text-align: center!important; } .pagination { bottom:10px; display: inline-block; padding: 0; margin-top: 20px!important; } .pagination li {display: inline;} .pagination li a , .alphabetpicker li a { cursor:pointer; color: black; float: left; padding: 8px 16px; text-decoration: none; transition: background-color .3s; } .pagination li a.active { background-color:black; color:#fc00a6!important;; } .pagination li a:hover:not(.active) {background-color: #ddd;} .display_large {display:none;} .display_medium {display:none;} .display_small{display:none;} @media only screen and (min-width: 320px) and (max-width: 480px) { .display_large {display:none;} .display_medium {display:none;} .display_small{display:block;} } @media only screen and (min-width: 320px) and (max-width: 640px) { .display_large {display:none;} .display_medium {display:none;} .display_small{display:block;} } @media only screen and (min-width: 360px) and (max-width: 640px) { .display_large {display:none;} .display_medium {display:none;} .display_small{display:block;} } @media only screen and (min-width: 320px) and (max-width: 568px) { .display_large {display:none;} .display_medium {display:none;} .display_small{display:block;} } @media only screen and (min-width: 375px) and (max-width: 667px) { .display_large {display:none;} .display_medium {display:none;} .display_small{display:block;} } @media only screen and (min-width: 414px) and (max-width: 736px) { } @media only screen and (min-width: 768px) and (max-width: 1024px) { .display_large {display:none;} .display_medium {display:block;} .display_small{display:none;} } @media only screen and (min-width: 601px) and (max-width: 906px) { .display_large {display:none;} .display_medium {display:block;} .display_small{display:none;} } @media only screen and (min-width: 800px) and (max-width: 1279px) { .display_large {display:none;} .display_medium {display:block;} .display_small{display:none;} } @media only screen and (min-width: 1280px) { .display_large {display:block;} .display_medium {display:none;} .display_small{display:none;} } @media (max-width: 42mm) and (min-width: 38mm) { .display_large {display:none;} .display_medium {display:none;} .display_small{display:none;} } @media (max-width: 218px) and (max-height: 281px) { .display_large {display:none;} .display_medium {display:none;} .display_small{display:block;} }
public/styles/main.css
p {color:#9e9e9e!important;padding:15px;} div { vertical-align: middle; } .alphabetpicker { position:absolute; list-style:none; padding: 0; z-index:99; background-color:black; } .alphabetpicker li {background-color: white!important;} .alphabetpicker li a {color:#fc00a6!important;} .alphabetpicker li a:hover {color:black!important;background-color: white;} .letter_active { background-color:white; color: black; } .programme_container{ position: absolute; width:100%; } .inner_programme_container { width:100%; overflow:scroll; } .more_btn:hover { color:#fc00a6!important; } .pagination_div { width:100%; text-align: center!important; } .pagination { bottom:10px; display: inline-block; padding: 0; margin-top: 20px!important; } .pagination li {display: inline;} .pagination li a , .alphabetpicker li a { cursor:pointer; color: black; float: left; padding: 8px 16px; text-decoration: none; transition: background-color .3s; } .pagination li a.active { background-color:black; color:#fc00a6!important;; } .pagination li a:hover:not(.active) {background-color: #ddd;} .display_large {display:none;} .display_medium {display:none;} .display_small{display:none;} @media only screen and (min-width: 320px) and (max-width: 480px) { .display_large {display:none;} .display_medium {display:none;} .display_small{display:block;} } @media only screen and (min-width: 320px) and (max-width: 640px) { .display_large {display:none;} .display_medium {display:none;} .display_small{display:block;} } @media only screen and (min-width: 360px) and (max-width: 640px) { .display_large {display:none;} .display_medium {display:none;} .display_small{display:block;} } @media only screen and (min-width: 320px) and (max-width: 568px) { .display_large {display:none;} .display_medium {display:none;} .display_small{display:block;} } @media only screen and (min-width: 375px) and (max-width: 667px) { .display_large {display:none;} .display_medium {display:none;} .display_small{display:block;} } @media only screen and (min-width: 414px) and (max-width: 736px) { } @media only screen and (min-width: 768px) and (max-width: 1024px) { .display_large {display:none;} .display_medium {display:block;} .display_small{display:none;} } @media only screen and (min-width: 601px) and (max-width: 906px) { .display_large {display:none;} .display_medium {display:block;} .display_small{display:none;} } @media only screen and (min-width: 800px) and (max-width: 1279px) { .display_large {display:none;} .display_medium {display:block;} .display_small{display:none;} } @media only screen and (min-width: 1280px) { .display_large {display:block;} .display_medium {display:none;} .display_small{display:none;} } @media (max-width: 42mm) and (min-width: 38mm) { .display_large {display:none;} .display_medium {display:none;} .display_small{display:none;} } @media (max-width: 218px) and (max-height: 281px) { .display_large {display:none;} .display_medium {display:none;} .display_small{display:block;} }
0.188735
0.188828
:root { --red: #c52410; --cust-blue: #315a7d; --custi-light-blue: #00739e; --bg-color: #f5f7fa; --alert_yellow: #f39c12; --alert_green: #00a65a; --alert_red: #dd4b39; } .custi_light_blue_bg{ /*background-color: var(--custi-light-blue) !important;*/ /*color: #fff;*/ } .red_bg{ background-color: var(--red); } body{ margin: 0; font-family: 'Open Sans', sans-serif; background-color: #ecf0f5; font-size: 14px !important; font-weight: 400; } *{ box-sizing: border-box; } h1,h2,h3,h4,h5,h6,p{ margin: 0; } ul{ list-style: none; margin: 0; padding: 0; } a{ text-decoration: none; transition: all 0.5s ease 0s; color: #fff; } a:hover{ text-decoration: none; color: #fff; } .alert_yellow{ background-color: var(--alert_yellow); } .alert_green{ background-color: var(--alert_green); } .alert_red{ background-color: var(--alert_red); } button{ transition: all 0.5s ease 0s; } .btn-warning{ background-color: var(--alert_yellow); color: #fff; border: 0; } .btn-warning:hover, .btn-warning:focus{ color: #fff; } .btn-success{ border: 0; } .btn-primary{ background-color: var(--custi-light-blue); border: 0; } .btn-primary:hover{ background-color: var(--cust-blue); } .btn-primary:focus{ background-color: var(--cust-blue); } .btn-danger{ background-color: var(--red); border: 0; } .align-sub{ vertical-align: sub; } .btn:focus{ box-shadow: none !important; outline: none; } /*========================================================== ================= Header Css ======================= ===================================*/ .logo_text{ text-align: center; color: #fff; font-size: 20px; font-weight: 600; } .logo{ width: 100%; transition: all 0.5s ease 0s; } .top_header{ background-color: var(--custi-light-blue); padding: 20px 0; z-index: 3; } .modal{ z-index: 3; } .top_header.fixed { position: fixed !important; top: 0; transition: all .5s ease 0s; -webkit-transition: all .5s ease 0s; -moz-transition: all .5s ease 0s; z-index: 2; animation: header 1s 1 alternate; /*padding: 8px 0;*/ } @keyframes header{ 0% { transform: translateY(-80px); } } .navbar-icon-list li{ display: inline-block; margin-right: 30px; } .New_Demo_Msg_Dropdown .dropdown-menu{ width: 280px; padding: 12px 14px; margin: 0; top: 100%; font-size: 12px; } .New_Demo_Msg_Dropdown .dropdown-menu a{ color: #000; } .User_Profile_Block a img{ width: 30px; height: 30px; float: left; background-color: #fff; } .top_header_right_block > li{ display: inline-block; } .main_profile_image{ width: 90px; height: 90px; border-radius: 100%; margin: 0 auto; } .User_Profile_Block .dropdown-menu .card, .User_Profile_Block .dropdown-menu{ background-color: var(--custi-light-blue); } .top_header .dropdown-menu.show{ transform: inherit !important; top: 50px !important; left: -150px !important; } .User_Profile_Block .dropdown-menu{ width: 280px; padding: 0; } .User_Profile_Block .dropdown-menu .card-body{ background-color: #fff; color: #000; } .User_Profile_Block .dropdown-menu .card-body a{ color: #000; } .User_Profile_Block .card{ border: 0; } .User_Profile_Block .card-footer a{ border-radius: 0; background-color: #f4f4f4; border-color: #adadad; color: #000; } .User_Profile_Block .dropdown-menu .card-footer{ background-color: #f9f9f9; } /*========================================================== ================= Aside Menu Css ======================= ===================================*/ .side_Menu{ position: absolute; top: 0; left: 0; padding-top: 89px; min-height: 100%; width: 256px; z-index: 1; -webkit-transition: -webkit-transform .3s ease-in-out,width .3s ease-in-out; -moz-transition: -moz-transform .3s ease-in-out,width .3s ease-in-out; -o-transition: -o-transform .3s ease-in-out,width .3s ease-in-out; transition: transform .3s ease-in-out,width .3s ease-in-out; background-color: #222d32; } .Side_profile{ padding: 14px 15px; } .Side_profile{ text-align: left; } .Nav_Title{ padding: 0 15px 10px; } .side_menu_in_block{ color: #fff !important; } .side_menu_in_block .User_Profile_Block img{ width: 40px; height: 40px; } .side_all_menu_block li a{ display: inline-block; width: 100%; padding: 11px 15px; } .side_all_menu_block li a i{ margin-right: 14px; } .side_all_menu_block li a:hover{ background-color: #1e282c; color: #fff; } .side_all_menu_sub_menu{ background-color: #2c3b41; } .side_all_menu_sub_menu li a{ padding: 10px 6px 10px 30px; font-size: 12px; color: #8aa4af; } .side_all_menu_sub_menu li a:hover{ background-color: transparent; color: #fff; } .sub_menu span i{ transition: all 0.5s ease 0s; } .sub_menu.collapsed span i{ transform: rotate(0); } .sub_menu span i{ transform: rotate(-90deg); } /*========================================================== ================= Main Content Css ======================= ===================================*/ .main_content{ padding-left: 256px; background-color: #ecf0f5; z-index: 1; overflow: hidden; width: 100%; transition: all 0.5s ease 0s; } .main_content section{ padding: 40px 0; } .page_heading h1{ font-size: 24px; } .graph_box_block{ padding: 15px; border: 1px solid #ccc; border-radius: 3px; background-color: #fff; margin-bottom: 20px; position: relative; min-height: 395px; } .total_demo_count{ font-size: 21px; color: #333; margin: 15px 0; position: absolute; bottom: 0; } .graph_box_block_1_form select{ width: 100%; } .toogle_btn_gp{ display: none !important; } .toogle_btn{ background-color: #ccc; width: 30px; height: 30px; display: inline-block; text-align: center; line-height: 30px; border-radius: 3px; color: var(--red); } .filter_ratio_mobile{ display: none; } .side_Menu.showsidebar{ transform: translateX(0); } .all_demo_student_block .card-header button, .filter_ratio .card-header button{ text-decoration: none; text-transform: uppercase; color: #000; font-weight: 600; } .filter_ratio .card-header button:hover{ color: var(--red); } .all_demo_student_block .card, .filter_ratio .card{ margin-bottom: 15px; padding: 0; border: 0; } .filter_ratio .card-header{ padding: 5px 0 ; } .all_demo_student_block .card-header{ padding: 5px 0; background-color: #d2d6de; } .pluse_icon{ font-weight: bold; transform: rotate(-90deg); transition: all 0.5s ease 0s; } .all_demo_student_block .btn.collapsed .pluse_icon{ transform: rotate(-45deg); } .take_demo_heading h3{ font-size: 16px; font-weight: 600; } .take_demo_heading{ background-color: #fff; padding: 10px 20px; border-radius: 3px; border-top: 1px solid var(--red); } .take_demo_panel{ background-color: #f39c12; color: #fff; padding: 14px; } .take_demo_panel_heading{ text-transform: uppercase; } .take_demo_panel_heading .student_name{ font-size: 18px; font-weight: 600; } .take_demo_panel{ margin-bottom: 15px; } .take_demo_panel_group .take_demo_panel:last-child{ margin-bottom: 0; } .demo_details_btn{ display: inline-block; width: 30px; height: 30px; color: #fff; text-align: center; line-height: 30px; border-radius: 3px; background-color: var(--custi-light-blue); } .filter_ratio .modal-lg{ max-width: 1200px; } .filter_ratio_one .modal-lg{ max-width: 900px; } .alert_bar_block{ padding: 0 15px; } .student_alert_bar{ color: #fff; padding: 4px 6px; } /*========================================================== ================= Show Task Css ======================= ===================================*/ .show_task_propaty li{ display: inline-block; margin-bottom: 12px; font-size: 16px; } .task_show_left_block_form .progress{ background-color: #fff; position: relative; } .task_show_left_block_form .progress-bar{ position: relative; } .task_show_left_block_form .progress-bar .work_progress_block label{ font-size: 18px; } .the_chate{ width: 100%; margin: 10px 0px; display: inline-block; padding: 0 15px; } .the_chate p{ border: 1px solid #fff; color: #fff; padding: 4px 7px; display: block; border-radius: 7.5px; font-size: 14px; max-width: 70%; -webkit-width: fit-content; -moz-width: fit-content; -ms-width: fit-content; width: fit-content; } .me_type_chate p{ margin-left: auto; text-align: right; background-color: #dcf8c6; color: #000; border: 0; position: relative; } .me_type_chate p:before{ content: ""; position: absolute; border-style: solid; border-width: 10px; border-top-color: transparent; border-bottom-color: transparent; border-left-color: #DCF8C6; border-right-color: transparent; top: 0; right: -7px; transform: rotate(90deg); } .any_type_chate p:before{ content: ""; position: absolute; border-style: solid; border-width: 10px; border-top-color: transparent; border-bottom-color: transparent; border-left-color: #fff; border-right-color: transparent; top: 0; left: -7px; transform: rotate(90deg); } .any_type_chate p{ text-align: left; margin-right: auto; background-color: #fff; color: #000; border: 0; position: relative; } .chateing_block{ padding: 20px 0; margin-top: 20px; background-image: url('../images/chatbg2.png'); height: 250px; overflow-y: auto; /*background-color: #f1ebe5;*/ } .msg_type_input{ border:0; border-radius: 20px; } .type_msg_block{ background-color: #dddcdc; padding: 10px 0; } .msg_sent_btn{ border:0; background-color: transparent; color: #9B9B9B; position: absolute; top: 0; bottom: 0; right: 10px; } .task_show_left_block_form{ background-color: #f8f8f8; padding: 15px; } .task_show_right_block_form{ background-color: #f8f8f8; font-size: 14px; padding: 15px; height: 100%; position: relative; } .submit_task_btn_block{ position: absolute; bottom: 15px; left: 15px; right: 15px; } .seen_dates { /*background: red;*/ padding: 7px 0; } .task_show_right_block_form_data_list{ padding-top: 30px; } .task_show_right_block_form_data_list li{ font-weight: 600; padding: 5px 0; } .participants_title h4{ font-size: 24px; font-weight: 600; } .participants_bloack{ margin-top: 30px; } .participants_member{ display: inline-block; margin-left: 20px; text-align: center; } .participants_member .participants_member_profile{ width: 45px; height: 45px; border-radius: 100%; border: 1px solid var(--red); display: inline-block; vertical-align: middle; } .participants_member_name{ font-weight: 700; font-size: 18px; margin-left: 10px; } .participants_member li{ margin-top: 15px; } /*========================================================== ================= Footer Css ======================= ===================================*/ .footer{ padding-left: 256px; padding-top: 20px; padding-bottom: 20px; background-color: #1c2023; color: #fff; /*z-index: 99;*/ position: relative; /* position: absolute; bottom: 0; left: 0; right: 0;*/ } /*==================================================================================== ================= Index Page Student Datails Modal Css ======================= ==========================================================*/ .modal { overflow: auto !important; } #student_datails_modal .modal-header .btn-group button{ margin: 0 3px; padding: 2px 10px; border-radius: 2px; } #student_datails_modal .modal-header .btn-group button:last-child{ padding-right: 0; margin-right: 0; } .demo_student_details_heading{ font-weight: 600; font-size: 16px; margin-bottom: 30px; } .demo_details_info_block a{ color: #2196F3; } .demo_details_info_block li{ margin-bottom: 15px; } .demo_details_info_block li ul li{ display: inline-block; margin: 4px 0 0 8px; } .demo_student_status_running{ background-color: var(--custi-light-blue) } .student_status_new{ background-color: var(--cust-blue); } .student_status_running{ background-color: var(--custi-light-blue); } .student_status_running:hover{ background-color: #000; color: #fff; } .demo_student_status{ font-size: 12px; } .student_demo_id{ background-color: var(--cust-blue); color: #fff; font-size: 15px; padding: 3px 11px; } .demo_details_block .nav-tabs .nav-item .nav-link{ color: #000; } .demo_details_block .nav-tabs .nav-item .nav-link.active{ color: var(--custi-light-blue); } .demo_details_block .tab-content{ margin-top: 20px; } .phone_num{ position: relative; } .phone_num:hover .phone_num_data{ opacity: 1; visibility: visible; } .phone_num_data{ width: 100px; background: var(--cust-blue); border-radius: 2px; color: #fff; text-align: center; padding: 2px 0; position: absolute; left: 93px; top: -7px; opacity: 0; visibility: hidden; transition: all 0.5s ease 0s; } .phone_num_data:before{ content: ""; position: absolute; border-style: solid; border-width: 10px; border-top-color: transparent; border-bottom-color: transparent; border-left-color: transparent; border-right-color: var(--cust-blue); left: -20px; top: 5px; } .phone_num_data li{ margin: 0 5px !important; } .phone_num_data a{ color: #fff; font-size: 18px; } .demo_edit_title{ font-size: 16px; color: #fff; background-color: var(--cust-blue); padding: 8px 0; text-align: center; } .demo_edit_info{ padding: 15px; } .thead th{ color: var(--cust-blue); font-size: 16px; } /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ========================= Admin Page Css ========================= ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ .coman_design_block_box{ background-color: #fff; /*border-radius: 3px;*/ /*border-top: 3px solid var(--custi-light-blue);*/ } .coman_design_block_info, .coman_design_block_title{ padding: 15px; } .coman_design_block_title h4{ font-size: 18px; } .coman_design_block_small_title{ margin-bottom: 30px; font-size: 22px; } .permission_raduo_btn_row .form-check input{ vertical-align: middle; margin-right: 5px; } .radio_btn_top_title{ font-weight: bold; } .radio_btn_title{ margin-bottom: 0; } .permission_raduo_btn_row .form-group{ margin-bottom: 0; position: relative; } .permission_raduo_btn_row .form-group span{ position: absolute; right: 0; } .form-group span .form-check:last-child{ margin: 0; } .radio_box_block { border: 1px solid var(--custi-light-blue); padding: 10px; margin: 5px; } .table_search_panel{ padding: 20px 0; } .text-active{ color: var(--custi-light-blue); font-weight: bold; } .coman_design_block_info .table-responsive .dropdown-menu { transform: translate(0) !important; top: 35px !important; left: 3px !important; min-width: 20px !important; } .action_icon{ display: inline-block; height: 30px; width: 30px; line-height: 30px; color: #fff; text-align: center; background-color: var(--custi-light-blue); border-radius: 3px; } .action_icon_block li{ display: inline-block; } .accordion_design_2 .card-header{ background-color: var(--cust-blue); } .accordion_design_2 .card-header button{ color: #fff; } .pagination_block{ margin-top: 15px; } /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ========================= Create Group Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ .table_image_icon{ width: 50px; height: 50px; overflow: hidden; } .action_disable:hover{ background-color: var(--red); } .action_delete:hover{ background-color: var(--red); } .action_edit:hover{ background-color: var(--alert_green); } .action_plus:hover{ background-color: var(--alert_green); } .create_group_sec .coman_design_block_title{ padding: 0 0 20px 0; } .create_group_table_block{ background-color: #fff; padding: 15px; } /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ========================= Branch Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== Department Group Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== Role Group Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ .user_type_permission_block{ border: 1px solid var(--custi-light-blue); padding: 10px; margin-bottom: 30px; } .permission_raduo_btn_row .user_type_permission_block:last-child{ margin-bottom: 0; } .user_type_permission_block_heading{ margin-bottom: 15px; } /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== HOD Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ .in_modal_aoc_small_title{ font-size: 16px; margin-bottom: 14px; } .hod_selected_checkbox .checkbox-inline{ margin-bottom: 0; } input[type="checkbox"]{ vertical-align: middle; } input[type="radio"]{ vertical-align: middle; } /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== Faculty Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ .icon_not_manage li a{ margin: 2px; } /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== Single Course Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== Course Package Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== axtraage_main_first_sec Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ .extra_block_box{ } .extra_top_search_header_bar{ background-color: var(--cust-blue); padding: 20px 15px; } .extra_top_search_header_bar_icon ul li{ display: inline-block; } .extra_top_search_header_bar_icon ul li a{ display: inline-block; font-size: 24px; margin-right: 20px; } .notifiecount{ width: 20px; height: 20px; background-color: var(--red); line-height: 20px; border-radius: 100%; line-height: 20px; font-size: 9px; text-align: center; display: inline-block; position: absolute; top: 0; left: 15px; color: #fff; } .extra_dropdown_item_header{ background-color: #d5dee9; color: #333; padding: 17px; width: 100%; } .extra_foloup_dropdown{ border-radius: 0; width: 414px; padding: 0; left: 50% !important; right: auto !important; top: 58px !important; transform: translate(-50%) !important; border:0; } .notification_panel{ background-color: #fff; display: inline-block; width: 100%; height: 350px; overflow: auto; } .notification_panel ul{ margin: 10px 20px; border-bottom: 1px solid #e7e7e7; padding: 0 0 9px; } .dropdown-menu.show{ /*transform: inherit !important;*/ will-change: inherit !important; } .notification_panel ul li{ color: #8292a7; font-size: 12px; font-weight: 400; margin: 0; padding: 0; display: flex; justify-content: space-between; } .notification_panel ul li label{ width: 30%; } .notification_panel ul li p, .notification_panel ul li a{ color: #000; margin: 0; display: inline-block; width: 70%; font-size: 14px; } .extra_lead_menu ul li a{ color: #587497; display: inline-block; padding: 10px 20px; border: 1px solid #ccc; margin: 2px 0; border-radius: 4px; } .extra_lead_menu ul li a:hover{ background-color: var(--cust-blue); color: #fff; } .extra_lead_menu ul li a.active{ color: #fff; background-color: var(--cust-blue); } .extra_lead_menu ul li{ display: inline-block; } .extra_lead_menu{ border-bottom: 1px solid var(--cust-blue); padding: 20px 0; } .menu_bottom_btn_row .icon_filter{ text-align: right; } .calender_drop i{ margin-right: 5px; } .menu_bottom_btn_row{ margin: 20px 0; } .full_lead_block{ width: 100%; min-height: 60vh; max-height: 63vh; height: 100%; overflow-y: auto; } .lead_block_box{ border: 1px solid #e7e7e7; background-color: #fff; padding: 15px; width: 100%; display: flex; margin-bottom: 15px; } .lead_small_box{ width: 20%; } .lead_small_box .lead_info_title{ font-size: 12px; color: #8292a7; display: block; } .lead_info_text{ font-size: 14px; color: #000; } .lead_info_text:hover{ color: #000; } .lead_small_box ul li{ margin: 10px 0; height: 40px; } .prospect_neme{ position: relative; } .prospect_neme{ background-image: url(../images/score.svg); width: 33px; display: inline-block; height: 23px; text-align: center; line-height: 22px; color: #fff; } .lead_small_box ul li ul li{ display: inline-block; } .lead_small_box ul li a{ text-decoration: underline; } .lead_small_box ul li ul li a{ color: #7D7D7D; font-size: 18px; margin: 0 5px; } .lead_small_box_first{ width: 30%; } .lead_small_box_fiveth{ width: 10%; } .copy_info_text_line:hover span a{ color: var(--custi-light-blue); } .copy_info_text_line span{ margin-left: 5px; } .action_option_lead li{ display: inline-block; } .prospect_neme_first_list{ height: 80px !important; } /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== Right Side Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ .right_side_edit{ background-color: #D5DEE9; width: 300px; height: 100%; position: fixed; right: -300px; top: 0; transition: all 0.5s ease 0s; padding-top: 89px; z-index: 2; } .right_side_edit.right_show{ right: 0; } .right_side{ background-color: #D5DEE9; width: 300px; height: 100%; position: fixed; right: -300px; top: 0; transition: all 0.5s ease 0s; padding-top: 89px; z-index: 2; } .right_side.right_show{ right: 0; } .new_lead_genered_btn .create_new_lead{ width: 62px; height: 62px; text-align: center; line-height: 62px; border-radius: 100%; color: #fff; font-size: 25px; background-color: var(--red); display: inline-block; position: fixed; right: 30px; bottom: 30px; z-index: 3; } .side_Menu.right_show{ transform: translateX(-258px); } .main_content.right_show{ padding-left: 0; padding-right: 300px; } .edit_lead_dropdown{ transform: inherit !important; top: 32px !important; left: -120px !important; } .edit_lead_dropdown li{ height: auto !important; margin: 0 !important; width: 100% !important; } .edit_lead_dropdown li a{ text-decoration: none !important; font-size: 14px !important; padding: 4px 8px !important; margin: 0 !important; } .edit_lead_dropdown li a i{ margin-right: 5px; } .lead_fill_title{ font-size: 14px; color: #000; font-weight: bold; } .new_lead_info_fill .lead_fill_title{ margin-bottom: 10px; } .fill_new_leade_info_body{ max-height: 500px; min-height: 500px; height: 100%; overflow-y: auto; } .right_side input{ border-radius: 0; height: 30px; } .right_side .form-group{ margin-bottom: 8px; } .right_side_row_panel a{ color: #fff; width: 100%; background-color: var(--custi-light-blue); display: inline-block; padding: 2px 10px; margin-bottom: 5px; } .right_side_row_panel a i{ margin-right: 5px; } .right_side_row_panel .collapsed i{ transform: rotateX(160deg); } .right_side_row_panel i{ transform: rotateX(0deg); } :root .full_lead_block::-webkit-scrollbar, :root .fill_new_leade_info_body::-webkit-scrollbar { width: 5px; border-radius: 5px; } :root .full_lead_block::-webkit-scrollbar-track, :root .fill_new_leade_info_body::-webkit-scrollbar-track { background: var(--custi-light-blue); } :root .full_lead_block::-webkit-scrollbar-thumb, :root .fill_new_leade_info_body::-webkit-scrollbar-thumb { border-radius: 5px;; background-color: #000; } .action_option_lead > li > a{ background-color: var(--custi-light-blue); color: #fff !important; width: 28px; border-radius: 100%; height: 28px; display: inline-block; text-align: center; line-height: 28px; margin: 0 !important; } .lead_save_btn{ margin-top: 16px; }
assets/css/style.css
:root { --red: #c52410; --cust-blue: #315a7d; --custi-light-blue: #00739e; --bg-color: #f5f7fa; --alert_yellow: #f39c12; --alert_green: #00a65a; --alert_red: #dd4b39; } .custi_light_blue_bg{ /*background-color: var(--custi-light-blue) !important;*/ /*color: #fff;*/ } .red_bg{ background-color: var(--red); } body{ margin: 0; font-family: 'Open Sans', sans-serif; background-color: #ecf0f5; font-size: 14px !important; font-weight: 400; } *{ box-sizing: border-box; } h1,h2,h3,h4,h5,h6,p{ margin: 0; } ul{ list-style: none; margin: 0; padding: 0; } a{ text-decoration: none; transition: all 0.5s ease 0s; color: #fff; } a:hover{ text-decoration: none; color: #fff; } .alert_yellow{ background-color: var(--alert_yellow); } .alert_green{ background-color: var(--alert_green); } .alert_red{ background-color: var(--alert_red); } button{ transition: all 0.5s ease 0s; } .btn-warning{ background-color: var(--alert_yellow); color: #fff; border: 0; } .btn-warning:hover, .btn-warning:focus{ color: #fff; } .btn-success{ border: 0; } .btn-primary{ background-color: var(--custi-light-blue); border: 0; } .btn-primary:hover{ background-color: var(--cust-blue); } .btn-primary:focus{ background-color: var(--cust-blue); } .btn-danger{ background-color: var(--red); border: 0; } .align-sub{ vertical-align: sub; } .btn:focus{ box-shadow: none !important; outline: none; } /*========================================================== ================= Header Css ======================= ===================================*/ .logo_text{ text-align: center; color: #fff; font-size: 20px; font-weight: 600; } .logo{ width: 100%; transition: all 0.5s ease 0s; } .top_header{ background-color: var(--custi-light-blue); padding: 20px 0; z-index: 3; } .modal{ z-index: 3; } .top_header.fixed { position: fixed !important; top: 0; transition: all .5s ease 0s; -webkit-transition: all .5s ease 0s; -moz-transition: all .5s ease 0s; z-index: 2; animation: header 1s 1 alternate; /*padding: 8px 0;*/ } @keyframes header{ 0% { transform: translateY(-80px); } } .navbar-icon-list li{ display: inline-block; margin-right: 30px; } .New_Demo_Msg_Dropdown .dropdown-menu{ width: 280px; padding: 12px 14px; margin: 0; top: 100%; font-size: 12px; } .New_Demo_Msg_Dropdown .dropdown-menu a{ color: #000; } .User_Profile_Block a img{ width: 30px; height: 30px; float: left; background-color: #fff; } .top_header_right_block > li{ display: inline-block; } .main_profile_image{ width: 90px; height: 90px; border-radius: 100%; margin: 0 auto; } .User_Profile_Block .dropdown-menu .card, .User_Profile_Block .dropdown-menu{ background-color: var(--custi-light-blue); } .top_header .dropdown-menu.show{ transform: inherit !important; top: 50px !important; left: -150px !important; } .User_Profile_Block .dropdown-menu{ width: 280px; padding: 0; } .User_Profile_Block .dropdown-menu .card-body{ background-color: #fff; color: #000; } .User_Profile_Block .dropdown-menu .card-body a{ color: #000; } .User_Profile_Block .card{ border: 0; } .User_Profile_Block .card-footer a{ border-radius: 0; background-color: #f4f4f4; border-color: #adadad; color: #000; } .User_Profile_Block .dropdown-menu .card-footer{ background-color: #f9f9f9; } /*========================================================== ================= Aside Menu Css ======================= ===================================*/ .side_Menu{ position: absolute; top: 0; left: 0; padding-top: 89px; min-height: 100%; width: 256px; z-index: 1; -webkit-transition: -webkit-transform .3s ease-in-out,width .3s ease-in-out; -moz-transition: -moz-transform .3s ease-in-out,width .3s ease-in-out; -o-transition: -o-transform .3s ease-in-out,width .3s ease-in-out; transition: transform .3s ease-in-out,width .3s ease-in-out; background-color: #222d32; } .Side_profile{ padding: 14px 15px; } .Side_profile{ text-align: left; } .Nav_Title{ padding: 0 15px 10px; } .side_menu_in_block{ color: #fff !important; } .side_menu_in_block .User_Profile_Block img{ width: 40px; height: 40px; } .side_all_menu_block li a{ display: inline-block; width: 100%; padding: 11px 15px; } .side_all_menu_block li a i{ margin-right: 14px; } .side_all_menu_block li a:hover{ background-color: #1e282c; color: #fff; } .side_all_menu_sub_menu{ background-color: #2c3b41; } .side_all_menu_sub_menu li a{ padding: 10px 6px 10px 30px; font-size: 12px; color: #8aa4af; } .side_all_menu_sub_menu li a:hover{ background-color: transparent; color: #fff; } .sub_menu span i{ transition: all 0.5s ease 0s; } .sub_menu.collapsed span i{ transform: rotate(0); } .sub_menu span i{ transform: rotate(-90deg); } /*========================================================== ================= Main Content Css ======================= ===================================*/ .main_content{ padding-left: 256px; background-color: #ecf0f5; z-index: 1; overflow: hidden; width: 100%; transition: all 0.5s ease 0s; } .main_content section{ padding: 40px 0; } .page_heading h1{ font-size: 24px; } .graph_box_block{ padding: 15px; border: 1px solid #ccc; border-radius: 3px; background-color: #fff; margin-bottom: 20px; position: relative; min-height: 395px; } .total_demo_count{ font-size: 21px; color: #333; margin: 15px 0; position: absolute; bottom: 0; } .graph_box_block_1_form select{ width: 100%; } .toogle_btn_gp{ display: none !important; } .toogle_btn{ background-color: #ccc; width: 30px; height: 30px; display: inline-block; text-align: center; line-height: 30px; border-radius: 3px; color: var(--red); } .filter_ratio_mobile{ display: none; } .side_Menu.showsidebar{ transform: translateX(0); } .all_demo_student_block .card-header button, .filter_ratio .card-header button{ text-decoration: none; text-transform: uppercase; color: #000; font-weight: 600; } .filter_ratio .card-header button:hover{ color: var(--red); } .all_demo_student_block .card, .filter_ratio .card{ margin-bottom: 15px; padding: 0; border: 0; } .filter_ratio .card-header{ padding: 5px 0 ; } .all_demo_student_block .card-header{ padding: 5px 0; background-color: #d2d6de; } .pluse_icon{ font-weight: bold; transform: rotate(-90deg); transition: all 0.5s ease 0s; } .all_demo_student_block .btn.collapsed .pluse_icon{ transform: rotate(-45deg); } .take_demo_heading h3{ font-size: 16px; font-weight: 600; } .take_demo_heading{ background-color: #fff; padding: 10px 20px; border-radius: 3px; border-top: 1px solid var(--red); } .take_demo_panel{ background-color: #f39c12; color: #fff; padding: 14px; } .take_demo_panel_heading{ text-transform: uppercase; } .take_demo_panel_heading .student_name{ font-size: 18px; font-weight: 600; } .take_demo_panel{ margin-bottom: 15px; } .take_demo_panel_group .take_demo_panel:last-child{ margin-bottom: 0; } .demo_details_btn{ display: inline-block; width: 30px; height: 30px; color: #fff; text-align: center; line-height: 30px; border-radius: 3px; background-color: var(--custi-light-blue); } .filter_ratio .modal-lg{ max-width: 1200px; } .filter_ratio_one .modal-lg{ max-width: 900px; } .alert_bar_block{ padding: 0 15px; } .student_alert_bar{ color: #fff; padding: 4px 6px; } /*========================================================== ================= Show Task Css ======================= ===================================*/ .show_task_propaty li{ display: inline-block; margin-bottom: 12px; font-size: 16px; } .task_show_left_block_form .progress{ background-color: #fff; position: relative; } .task_show_left_block_form .progress-bar{ position: relative; } .task_show_left_block_form .progress-bar .work_progress_block label{ font-size: 18px; } .the_chate{ width: 100%; margin: 10px 0px; display: inline-block; padding: 0 15px; } .the_chate p{ border: 1px solid #fff; color: #fff; padding: 4px 7px; display: block; border-radius: 7.5px; font-size: 14px; max-width: 70%; -webkit-width: fit-content; -moz-width: fit-content; -ms-width: fit-content; width: fit-content; } .me_type_chate p{ margin-left: auto; text-align: right; background-color: #dcf8c6; color: #000; border: 0; position: relative; } .me_type_chate p:before{ content: ""; position: absolute; border-style: solid; border-width: 10px; border-top-color: transparent; border-bottom-color: transparent; border-left-color: #DCF8C6; border-right-color: transparent; top: 0; right: -7px; transform: rotate(90deg); } .any_type_chate p:before{ content: ""; position: absolute; border-style: solid; border-width: 10px; border-top-color: transparent; border-bottom-color: transparent; border-left-color: #fff; border-right-color: transparent; top: 0; left: -7px; transform: rotate(90deg); } .any_type_chate p{ text-align: left; margin-right: auto; background-color: #fff; color: #000; border: 0; position: relative; } .chateing_block{ padding: 20px 0; margin-top: 20px; background-image: url('../images/chatbg2.png'); height: 250px; overflow-y: auto; /*background-color: #f1ebe5;*/ } .msg_type_input{ border:0; border-radius: 20px; } .type_msg_block{ background-color: #dddcdc; padding: 10px 0; } .msg_sent_btn{ border:0; background-color: transparent; color: #9B9B9B; position: absolute; top: 0; bottom: 0; right: 10px; } .task_show_left_block_form{ background-color: #f8f8f8; padding: 15px; } .task_show_right_block_form{ background-color: #f8f8f8; font-size: 14px; padding: 15px; height: 100%; position: relative; } .submit_task_btn_block{ position: absolute; bottom: 15px; left: 15px; right: 15px; } .seen_dates { /*background: red;*/ padding: 7px 0; } .task_show_right_block_form_data_list{ padding-top: 30px; } .task_show_right_block_form_data_list li{ font-weight: 600; padding: 5px 0; } .participants_title h4{ font-size: 24px; font-weight: 600; } .participants_bloack{ margin-top: 30px; } .participants_member{ display: inline-block; margin-left: 20px; text-align: center; } .participants_member .participants_member_profile{ width: 45px; height: 45px; border-radius: 100%; border: 1px solid var(--red); display: inline-block; vertical-align: middle; } .participants_member_name{ font-weight: 700; font-size: 18px; margin-left: 10px; } .participants_member li{ margin-top: 15px; } /*========================================================== ================= Footer Css ======================= ===================================*/ .footer{ padding-left: 256px; padding-top: 20px; padding-bottom: 20px; background-color: #1c2023; color: #fff; /*z-index: 99;*/ position: relative; /* position: absolute; bottom: 0; left: 0; right: 0;*/ } /*==================================================================================== ================= Index Page Student Datails Modal Css ======================= ==========================================================*/ .modal { overflow: auto !important; } #student_datails_modal .modal-header .btn-group button{ margin: 0 3px; padding: 2px 10px; border-radius: 2px; } #student_datails_modal .modal-header .btn-group button:last-child{ padding-right: 0; margin-right: 0; } .demo_student_details_heading{ font-weight: 600; font-size: 16px; margin-bottom: 30px; } .demo_details_info_block a{ color: #2196F3; } .demo_details_info_block li{ margin-bottom: 15px; } .demo_details_info_block li ul li{ display: inline-block; margin: 4px 0 0 8px; } .demo_student_status_running{ background-color: var(--custi-light-blue) } .student_status_new{ background-color: var(--cust-blue); } .student_status_running{ background-color: var(--custi-light-blue); } .student_status_running:hover{ background-color: #000; color: #fff; } .demo_student_status{ font-size: 12px; } .student_demo_id{ background-color: var(--cust-blue); color: #fff; font-size: 15px; padding: 3px 11px; } .demo_details_block .nav-tabs .nav-item .nav-link{ color: #000; } .demo_details_block .nav-tabs .nav-item .nav-link.active{ color: var(--custi-light-blue); } .demo_details_block .tab-content{ margin-top: 20px; } .phone_num{ position: relative; } .phone_num:hover .phone_num_data{ opacity: 1; visibility: visible; } .phone_num_data{ width: 100px; background: var(--cust-blue); border-radius: 2px; color: #fff; text-align: center; padding: 2px 0; position: absolute; left: 93px; top: -7px; opacity: 0; visibility: hidden; transition: all 0.5s ease 0s; } .phone_num_data:before{ content: ""; position: absolute; border-style: solid; border-width: 10px; border-top-color: transparent; border-bottom-color: transparent; border-left-color: transparent; border-right-color: var(--cust-blue); left: -20px; top: 5px; } .phone_num_data li{ margin: 0 5px !important; } .phone_num_data a{ color: #fff; font-size: 18px; } .demo_edit_title{ font-size: 16px; color: #fff; background-color: var(--cust-blue); padding: 8px 0; text-align: center; } .demo_edit_info{ padding: 15px; } .thead th{ color: var(--cust-blue); font-size: 16px; } /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ========================= Admin Page Css ========================= ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ .coman_design_block_box{ background-color: #fff; /*border-radius: 3px;*/ /*border-top: 3px solid var(--custi-light-blue);*/ } .coman_design_block_info, .coman_design_block_title{ padding: 15px; } .coman_design_block_title h4{ font-size: 18px; } .coman_design_block_small_title{ margin-bottom: 30px; font-size: 22px; } .permission_raduo_btn_row .form-check input{ vertical-align: middle; margin-right: 5px; } .radio_btn_top_title{ font-weight: bold; } .radio_btn_title{ margin-bottom: 0; } .permission_raduo_btn_row .form-group{ margin-bottom: 0; position: relative; } .permission_raduo_btn_row .form-group span{ position: absolute; right: 0; } .form-group span .form-check:last-child{ margin: 0; } .radio_box_block { border: 1px solid var(--custi-light-blue); padding: 10px; margin: 5px; } .table_search_panel{ padding: 20px 0; } .text-active{ color: var(--custi-light-blue); font-weight: bold; } .coman_design_block_info .table-responsive .dropdown-menu { transform: translate(0) !important; top: 35px !important; left: 3px !important; min-width: 20px !important; } .action_icon{ display: inline-block; height: 30px; width: 30px; line-height: 30px; color: #fff; text-align: center; background-color: var(--custi-light-blue); border-radius: 3px; } .action_icon_block li{ display: inline-block; } .accordion_design_2 .card-header{ background-color: var(--cust-blue); } .accordion_design_2 .card-header button{ color: #fff; } .pagination_block{ margin-top: 15px; } /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ========================= Create Group Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ .table_image_icon{ width: 50px; height: 50px; overflow: hidden; } .action_disable:hover{ background-color: var(--red); } .action_delete:hover{ background-color: var(--red); } .action_edit:hover{ background-color: var(--alert_green); } .action_plus:hover{ background-color: var(--alert_green); } .create_group_sec .coman_design_block_title{ padding: 0 0 20px 0; } .create_group_table_block{ background-color: #fff; padding: 15px; } /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ========================= Branch Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== Department Group Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== Role Group Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ .user_type_permission_block{ border: 1px solid var(--custi-light-blue); padding: 10px; margin-bottom: 30px; } .permission_raduo_btn_row .user_type_permission_block:last-child{ margin-bottom: 0; } .user_type_permission_block_heading{ margin-bottom: 15px; } /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== HOD Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ .in_modal_aoc_small_title{ font-size: 16px; margin-bottom: 14px; } .hod_selected_checkbox .checkbox-inline{ margin-bottom: 0; } input[type="checkbox"]{ vertical-align: middle; } input[type="radio"]{ vertical-align: middle; } /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== Faculty Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ .icon_not_manage li a{ margin: 2px; } /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== Single Course Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== Course Package Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== axtraage_main_first_sec Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ .extra_block_box{ } .extra_top_search_header_bar{ background-color: var(--cust-blue); padding: 20px 15px; } .extra_top_search_header_bar_icon ul li{ display: inline-block; } .extra_top_search_header_bar_icon ul li a{ display: inline-block; font-size: 24px; margin-right: 20px; } .notifiecount{ width: 20px; height: 20px; background-color: var(--red); line-height: 20px; border-radius: 100%; line-height: 20px; font-size: 9px; text-align: center; display: inline-block; position: absolute; top: 0; left: 15px; color: #fff; } .extra_dropdown_item_header{ background-color: #d5dee9; color: #333; padding: 17px; width: 100%; } .extra_foloup_dropdown{ border-radius: 0; width: 414px; padding: 0; left: 50% !important; right: auto !important; top: 58px !important; transform: translate(-50%) !important; border:0; } .notification_panel{ background-color: #fff; display: inline-block; width: 100%; height: 350px; overflow: auto; } .notification_panel ul{ margin: 10px 20px; border-bottom: 1px solid #e7e7e7; padding: 0 0 9px; } .dropdown-menu.show{ /*transform: inherit !important;*/ will-change: inherit !important; } .notification_panel ul li{ color: #8292a7; font-size: 12px; font-weight: 400; margin: 0; padding: 0; display: flex; justify-content: space-between; } .notification_panel ul li label{ width: 30%; } .notification_panel ul li p, .notification_panel ul li a{ color: #000; margin: 0; display: inline-block; width: 70%; font-size: 14px; } .extra_lead_menu ul li a{ color: #587497; display: inline-block; padding: 10px 20px; border: 1px solid #ccc; margin: 2px 0; border-radius: 4px; } .extra_lead_menu ul li a:hover{ background-color: var(--cust-blue); color: #fff; } .extra_lead_menu ul li a.active{ color: #fff; background-color: var(--cust-blue); } .extra_lead_menu ul li{ display: inline-block; } .extra_lead_menu{ border-bottom: 1px solid var(--cust-blue); padding: 20px 0; } .menu_bottom_btn_row .icon_filter{ text-align: right; } .calender_drop i{ margin-right: 5px; } .menu_bottom_btn_row{ margin: 20px 0; } .full_lead_block{ width: 100%; min-height: 60vh; max-height: 63vh; height: 100%; overflow-y: auto; } .lead_block_box{ border: 1px solid #e7e7e7; background-color: #fff; padding: 15px; width: 100%; display: flex; margin-bottom: 15px; } .lead_small_box{ width: 20%; } .lead_small_box .lead_info_title{ font-size: 12px; color: #8292a7; display: block; } .lead_info_text{ font-size: 14px; color: #000; } .lead_info_text:hover{ color: #000; } .lead_small_box ul li{ margin: 10px 0; height: 40px; } .prospect_neme{ position: relative; } .prospect_neme{ background-image: url(../images/score.svg); width: 33px; display: inline-block; height: 23px; text-align: center; line-height: 22px; color: #fff; } .lead_small_box ul li ul li{ display: inline-block; } .lead_small_box ul li a{ text-decoration: underline; } .lead_small_box ul li ul li a{ color: #7D7D7D; font-size: 18px; margin: 0 5px; } .lead_small_box_first{ width: 30%; } .lead_small_box_fiveth{ width: 10%; } .copy_info_text_line:hover span a{ color: var(--custi-light-blue); } .copy_info_text_line span{ margin-left: 5px; } .action_option_lead li{ display: inline-block; } .prospect_neme_first_list{ height: 80px !important; } /*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ====================== Right Side Page Css ===================== ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/ .right_side_edit{ background-color: #D5DEE9; width: 300px; height: 100%; position: fixed; right: -300px; top: 0; transition: all 0.5s ease 0s; padding-top: 89px; z-index: 2; } .right_side_edit.right_show{ right: 0; } .right_side{ background-color: #D5DEE9; width: 300px; height: 100%; position: fixed; right: -300px; top: 0; transition: all 0.5s ease 0s; padding-top: 89px; z-index: 2; } .right_side.right_show{ right: 0; } .new_lead_genered_btn .create_new_lead{ width: 62px; height: 62px; text-align: center; line-height: 62px; border-radius: 100%; color: #fff; font-size: 25px; background-color: var(--red); display: inline-block; position: fixed; right: 30px; bottom: 30px; z-index: 3; } .side_Menu.right_show{ transform: translateX(-258px); } .main_content.right_show{ padding-left: 0; padding-right: 300px; } .edit_lead_dropdown{ transform: inherit !important; top: 32px !important; left: -120px !important; } .edit_lead_dropdown li{ height: auto !important; margin: 0 !important; width: 100% !important; } .edit_lead_dropdown li a{ text-decoration: none !important; font-size: 14px !important; padding: 4px 8px !important; margin: 0 !important; } .edit_lead_dropdown li a i{ margin-right: 5px; } .lead_fill_title{ font-size: 14px; color: #000; font-weight: bold; } .new_lead_info_fill .lead_fill_title{ margin-bottom: 10px; } .fill_new_leade_info_body{ max-height: 500px; min-height: 500px; height: 100%; overflow-y: auto; } .right_side input{ border-radius: 0; height: 30px; } .right_side .form-group{ margin-bottom: 8px; } .right_side_row_panel a{ color: #fff; width: 100%; background-color: var(--custi-light-blue); display: inline-block; padding: 2px 10px; margin-bottom: 5px; } .right_side_row_panel a i{ margin-right: 5px; } .right_side_row_panel .collapsed i{ transform: rotateX(160deg); } .right_side_row_panel i{ transform: rotateX(0deg); } :root .full_lead_block::-webkit-scrollbar, :root .fill_new_leade_info_body::-webkit-scrollbar { width: 5px; border-radius: 5px; } :root .full_lead_block::-webkit-scrollbar-track, :root .fill_new_leade_info_body::-webkit-scrollbar-track { background: var(--custi-light-blue); } :root .full_lead_block::-webkit-scrollbar-thumb, :root .fill_new_leade_info_body::-webkit-scrollbar-thumb { border-radius: 5px;; background-color: #000; } .action_option_lead > li > a{ background-color: var(--custi-light-blue); color: #fff !important; width: 28px; border-radius: 100%; height: 28px; display: inline-block; text-align: center; line-height: 28px; margin: 0 !important; } .lead_save_btn{ margin-top: 16px; }
0.347205
0.112089
body { border-top: 3px solid #e24e35; } .color { color: #e24e35; } a, a:visited { color: #e24e35; } a:hover { color: #cc412a; } .navbar-inner { background: #e24e35 !important; border-top: 1px solid #cc412a !important; border-bottom: 1px solid #cc412a !important; } .navbar .btn { background: #cc412a !important; } .navbar .btn:hover { background: #e24e35 !important; } .navbar .nav { border-left: 1px solid #cc412a; border-right: 1px solid #e75f48; } .navbar .nav > li > a { background: #e24e35; border-right: 1px solid #cc412a; border-left: 1px solid #e75f48; } .navbar .nav > li > a:hover { background: #cc412a !important; } .navbar .nav .active > a, .navbar .nav .active > a:hover, .navbar .nav .active > a:focus { background: #cc412a !important; } .dropdown-toggle { background: #e24e35 !important; } .dropdown-menu { background: #e24e35 !important; border: 1px solid #cc412a; } .dropdown-menu a { background: #e24e35 !important; border-bottom: 1px solid #cc412a; } .dropdown-menu a:hover, .dropdown-menu a:focus { background: #cc412a !important; } .social i { background: #e24e35; } .social i:hover { background: #cc412a; } .flex-caption { border-left: 4px solid #e24e35; } .service i { color: #e24e35; } /* Timeline */ .time .tidate { background: #e24e35; } .time .timatter { border-bottom: 2px solid #e24e35; } /* Events - Accordion*/ .events .accordion-heading h5 { background: #e24e35; } /* Slider */ .da-slider { border-top: 4px solid #e24e35; border-bottom: 4px solid #e24e35; } .da-slide h2 { color: #e24e35; } .da-slide .da-link { background: #e24e35; } /* Testimonial */ .test { border-bottom: 2px solid #e24e35; } .test-arrow { border-top-color: #e24e35; } /* Feature alt */ .afeature:hover { border: 5px solid #e24e35; } .afmatter i { color: #e24e35; } .rpost1:hover, .rpost2:hover { border-bottom: 2px solid #e24e35; } .accordion-heading i { color: #e24e35; } .process i { color: #e24e35; } .process-meta span { background: #e24e35; } .feat h4 i { color: #e24e35; } .content ul li { background-image: url(../img/list-o.png); } .blog .meta i { color: #e24e35; } .posts .tags a { background: #e24e35; border: 1px solid #cc412a; border-bottom: 3px solid #cc412a; } .posts .tags a:hover { border-bottom: 3px solid #e24e35; background: #cc412a; border: 1px solid #cc412a; } .paging a:hover { background: #e24e35; border: 1px solid #cc412a; } .paging .current { background: #e24e35; border: 1px solid #cc412a; } .serv .simg i { color: #e24e35; } .button a, .button a:visited { background: #e24e35; border-bottom: 2px solid #cc412a; } .button a:hover { background: #cc412a; } .pricel .phead-top { background: #e24e35; border: 1px solid #cc412a; } .pricel .phead-bottom { border-top: 1px solid #cc412a; } .nav-tabs > li > a:hover { background: #e24e35; } .about .asocial i { background: #e24e35; } .resume h4 { background: #e24e35; } .resume h5 { color: #e24e35; } footer { border-top: 3px solid #e24e35; } footer ul li { background-image: url(../img/list-o.png); } .nav-list > .active > a, .nav-list > .active > a:hover { color: inherit; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); background-color: inherit; } .nav > li > a:hover { text-decoration: none; background-color: inherit; } #bannerLeft h1 { margin-left: 10px; } .lead { margin-left: 10px; } pre { /* Color made to match the github code style */ background-color: #f8f8ff } #toc-sidebar { margin-top: 10px; }
src/site/resources/css/orange.css
body { border-top: 3px solid #e24e35; } .color { color: #e24e35; } a, a:visited { color: #e24e35; } a:hover { color: #cc412a; } .navbar-inner { background: #e24e35 !important; border-top: 1px solid #cc412a !important; border-bottom: 1px solid #cc412a !important; } .navbar .btn { background: #cc412a !important; } .navbar .btn:hover { background: #e24e35 !important; } .navbar .nav { border-left: 1px solid #cc412a; border-right: 1px solid #e75f48; } .navbar .nav > li > a { background: #e24e35; border-right: 1px solid #cc412a; border-left: 1px solid #e75f48; } .navbar .nav > li > a:hover { background: #cc412a !important; } .navbar .nav .active > a, .navbar .nav .active > a:hover, .navbar .nav .active > a:focus { background: #cc412a !important; } .dropdown-toggle { background: #e24e35 !important; } .dropdown-menu { background: #e24e35 !important; border: 1px solid #cc412a; } .dropdown-menu a { background: #e24e35 !important; border-bottom: 1px solid #cc412a; } .dropdown-menu a:hover, .dropdown-menu a:focus { background: #cc412a !important; } .social i { background: #e24e35; } .social i:hover { background: #cc412a; } .flex-caption { border-left: 4px solid #e24e35; } .service i { color: #e24e35; } /* Timeline */ .time .tidate { background: #e24e35; } .time .timatter { border-bottom: 2px solid #e24e35; } /* Events - Accordion*/ .events .accordion-heading h5 { background: #e24e35; } /* Slider */ .da-slider { border-top: 4px solid #e24e35; border-bottom: 4px solid #e24e35; } .da-slide h2 { color: #e24e35; } .da-slide .da-link { background: #e24e35; } /* Testimonial */ .test { border-bottom: 2px solid #e24e35; } .test-arrow { border-top-color: #e24e35; } /* Feature alt */ .afeature:hover { border: 5px solid #e24e35; } .afmatter i { color: #e24e35; } .rpost1:hover, .rpost2:hover { border-bottom: 2px solid #e24e35; } .accordion-heading i { color: #e24e35; } .process i { color: #e24e35; } .process-meta span { background: #e24e35; } .feat h4 i { color: #e24e35; } .content ul li { background-image: url(../img/list-o.png); } .blog .meta i { color: #e24e35; } .posts .tags a { background: #e24e35; border: 1px solid #cc412a; border-bottom: 3px solid #cc412a; } .posts .tags a:hover { border-bottom: 3px solid #e24e35; background: #cc412a; border: 1px solid #cc412a; } .paging a:hover { background: #e24e35; border: 1px solid #cc412a; } .paging .current { background: #e24e35; border: 1px solid #cc412a; } .serv .simg i { color: #e24e35; } .button a, .button a:visited { background: #e24e35; border-bottom: 2px solid #cc412a; } .button a:hover { background: #cc412a; } .pricel .phead-top { background: #e24e35; border: 1px solid #cc412a; } .pricel .phead-bottom { border-top: 1px solid #cc412a; } .nav-tabs > li > a:hover { background: #e24e35; } .about .asocial i { background: #e24e35; } .resume h4 { background: #e24e35; } .resume h5 { color: #e24e35; } footer { border-top: 3px solid #e24e35; } footer ul li { background-image: url(../img/list-o.png); } .nav-list > .active > a, .nav-list > .active > a:hover { color: inherit; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); background-color: inherit; } .nav > li > a:hover { text-decoration: none; background-color: inherit; } #bannerLeft h1 { margin-left: 10px; } .lead { margin-left: 10px; } pre { /* Color made to match the github code style */ background-color: #f8f8ff } #toc-sidebar { margin-top: 10px; }
0.378919
0.170543
@import url('https://fonts.googleapis.com/css?family=Damion&display=swap'); @import url("../css/bootstrap.css"); @import url("../css/fonts.css"); /******* Entire page *******/ /*************************/ * { scroll-behavior: smooth; } /*This is the whole boby default style*/ body{ font-family: 'Lora', serif; } h1,h2,h3,h4,h5,h6,button{ font-family: 'Roboto', sans-serif; font-weight: 400; } p{ font-style: italic; font-size: 16px; } .section{ padding-top: 7%; padding-bottom: 5%; color:#666666; } .fun-text{ font-size: 21px; letter-spacing: 2px; } h1{ font-size: 45px; font-weight: 400; } h2{ font-size: 32px; margin-bottom: 5%; } h3{ font-size: 21px; } .logo-art{ font-weight: bolder; font-size: larger; } .white { padding: 1%; } .card-banner { display: flex; position: relative; overflow: hidden; background-color: #fff; background-size: cover; border-radius: 5px; /* padding: 2%; */ margin-top: 3%; } .card-banner .card-body { background-size: cover; position: relative; z-index: 10 } .card-banner .img-bg { position: absolute; right: 0; bottom: 0; mix-blend-mode: multiply; max-width: 100% } .card-banner .overlay { background-color: rgb(255, 255, 255); z-index: 10; padding: 1.25rem; color: #fff } .card-banner .overlay.bottom { bottom: 0; left: 0; position: absolute; width: 100% } .card-banner .overlay.top { top: 0; left: 0; position: absolute; width: 100% } .card-banner .overlay-cover { top: 0; left: 0; right: 0; bottom: 0; position: absolute; width: 100% } .card-banner .overlay.left { top: 0; left: 0; bottom: 0; position: absolute } .card-banner .text-bottom { position: absolute; left: 0; bottom: 0; left: 0; z-index: 10; width: 100%; padding: 7px 20px; padding-top: 30px; border-radius: 0 0 5px 5px; background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%); background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%); color: #fff } /*Menu bar style*/ .head-body{ padding-top: 10vh; } /*Feature section style*/ .social li{ list-style-type: none; display: inline-block; } .social a{ padding: 5px; color: black; text-align: center; text-decoration: none; } .social a:hover{ color: #6a7480; transition: .5s; } /*Simplest user interface style*/ /* itemside */ .itemside { position: relative; display: inline-flex; width: 100% } .itemside .text-wrap { padding-left: 15px; padding-right: 7px } .itemside .img-wrap { position: relative; max-width: 100px; max-height: 100%; border-radius: 5px 0 0 5px } .itemside img { object-fit: contain } .itemside p, .itemside .title { margin-bottom: 0.5rem } .footer-icon .social{ text-align: center; padding-top: 7px; } .footer-text i{ color: #6a7480; } .footer .container .row{ padding-top: 3%; } /*Media Queries*/ @media (min-width: 300px) { .custom-menu{ background-color: transparent; border:none; } iframe{ height: 200px; width: 280px; } .form-inline .form-control{ width: 120px; height: 30px; font-size: 14px; } p{ font-style: italic; font-size: 13px; } h1{ font-size: 28px; } h2{ font-size: 20px; } h3{ font-size: 18px; } .fun-text{ letter-spacing: 0px; font-size: 16px; } .craft-btn{ margin-bottom: 0px; } .head-items{ padding-top: 10vh; padding-bottom: 5vh; } .icon-circle{ height: 70px; width: 70px; font-size: 20px; line-height: 70px; } .form-inline .form-control{ width: 280px; height: 40px; font-size: 16px; } .footer-text{ margin-top: 6px; font-size: 10px; } .footer-social a{ padding: 6px; } .footer-social li{ margin-right: 2px; } } @media (min-width: 600px) { .explore-mindcraft .row{ display: table; } iframe{ height: 400px; width: 550px; } .form-inline .form-control{ width: 420px; height: 40px; font-size: 16px; } p{ font-style: italic; font-size: 16px; } h1{ font-size: 45px; } h2{ font-size: 32px; } h3{ font-size: 21px; } .icon-circle{ height: 90px; width: 90px; font-size: 30px; line-height: 90px; } .footer-social a{ padding: 10px; } .footer-social li{ margin-right: 20px; } .footer-text{ margin-top: 18px; } .fun-text{ letter-spacing: 1px; font-size: 21px; } .craft-btn{ margin-bottom: 30px; } .head-items{ padding-top: 10vh; padding-bottom: 5vh; } .footer-text{ margin-top: 10px; font-size: 16px; } .footer-social a{ padding: 10px; } .footer-social li{ margin-right: 20px; } } @media (min-width: 950px) { .explore-mindcraft .row [class*="col-"]{ display: table-cell; vertical-align: middle; float: none; } iframe{ height: 500px; width: 800px; } .head-items{ padding-top: 20vh; padding-bottom: 18vh; } .custom-menu{ padding-top: 10px; padding-bottom: 10px; transition: 2s; } }
assets/css/pizza.css
@import url('https://fonts.googleapis.com/css?family=Damion&display=swap'); @import url("../css/bootstrap.css"); @import url("../css/fonts.css"); /******* Entire page *******/ /*************************/ * { scroll-behavior: smooth; } /*This is the whole boby default style*/ body{ font-family: 'Lora', serif; } h1,h2,h3,h4,h5,h6,button{ font-family: 'Roboto', sans-serif; font-weight: 400; } p{ font-style: italic; font-size: 16px; } .section{ padding-top: 7%; padding-bottom: 5%; color:#666666; } .fun-text{ font-size: 21px; letter-spacing: 2px; } h1{ font-size: 45px; font-weight: 400; } h2{ font-size: 32px; margin-bottom: 5%; } h3{ font-size: 21px; } .logo-art{ font-weight: bolder; font-size: larger; } .white { padding: 1%; } .card-banner { display: flex; position: relative; overflow: hidden; background-color: #fff; background-size: cover; border-radius: 5px; /* padding: 2%; */ margin-top: 3%; } .card-banner .card-body { background-size: cover; position: relative; z-index: 10 } .card-banner .img-bg { position: absolute; right: 0; bottom: 0; mix-blend-mode: multiply; max-width: 100% } .card-banner .overlay { background-color: rgb(255, 255, 255); z-index: 10; padding: 1.25rem; color: #fff } .card-banner .overlay.bottom { bottom: 0; left: 0; position: absolute; width: 100% } .card-banner .overlay.top { top: 0; left: 0; position: absolute; width: 100% } .card-banner .overlay-cover { top: 0; left: 0; right: 0; bottom: 0; position: absolute; width: 100% } .card-banner .overlay.left { top: 0; left: 0; bottom: 0; position: absolute } .card-banner .text-bottom { position: absolute; left: 0; bottom: 0; left: 0; z-index: 10; width: 100%; padding: 7px 20px; padding-top: 30px; border-radius: 0 0 5px 5px; background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%); background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%); color: #fff } /*Menu bar style*/ .head-body{ padding-top: 10vh; } /*Feature section style*/ .social li{ list-style-type: none; display: inline-block; } .social a{ padding: 5px; color: black; text-align: center; text-decoration: none; } .social a:hover{ color: #6a7480; transition: .5s; } /*Simplest user interface style*/ /* itemside */ .itemside { position: relative; display: inline-flex; width: 100% } .itemside .text-wrap { padding-left: 15px; padding-right: 7px } .itemside .img-wrap { position: relative; max-width: 100px; max-height: 100%; border-radius: 5px 0 0 5px } .itemside img { object-fit: contain } .itemside p, .itemside .title { margin-bottom: 0.5rem } .footer-icon .social{ text-align: center; padding-top: 7px; } .footer-text i{ color: #6a7480; } .footer .container .row{ padding-top: 3%; } /*Media Queries*/ @media (min-width: 300px) { .custom-menu{ background-color: transparent; border:none; } iframe{ height: 200px; width: 280px; } .form-inline .form-control{ width: 120px; height: 30px; font-size: 14px; } p{ font-style: italic; font-size: 13px; } h1{ font-size: 28px; } h2{ font-size: 20px; } h3{ font-size: 18px; } .fun-text{ letter-spacing: 0px; font-size: 16px; } .craft-btn{ margin-bottom: 0px; } .head-items{ padding-top: 10vh; padding-bottom: 5vh; } .icon-circle{ height: 70px; width: 70px; font-size: 20px; line-height: 70px; } .form-inline .form-control{ width: 280px; height: 40px; font-size: 16px; } .footer-text{ margin-top: 6px; font-size: 10px; } .footer-social a{ padding: 6px; } .footer-social li{ margin-right: 2px; } } @media (min-width: 600px) { .explore-mindcraft .row{ display: table; } iframe{ height: 400px; width: 550px; } .form-inline .form-control{ width: 420px; height: 40px; font-size: 16px; } p{ font-style: italic; font-size: 16px; } h1{ font-size: 45px; } h2{ font-size: 32px; } h3{ font-size: 21px; } .icon-circle{ height: 90px; width: 90px; font-size: 30px; line-height: 90px; } .footer-social a{ padding: 10px; } .footer-social li{ margin-right: 20px; } .footer-text{ margin-top: 18px; } .fun-text{ letter-spacing: 1px; font-size: 21px; } .craft-btn{ margin-bottom: 30px; } .head-items{ padding-top: 10vh; padding-bottom: 5vh; } .footer-text{ margin-top: 10px; font-size: 16px; } .footer-social a{ padding: 10px; } .footer-social li{ margin-right: 20px; } } @media (min-width: 950px) { .explore-mindcraft .row [class*="col-"]{ display: table-cell; vertical-align: middle; float: none; } iframe{ height: 500px; width: 800px; } .head-items{ padding-top: 20vh; padding-bottom: 18vh; } .custom-menu{ padding-top: 10px; padding-bottom: 10px; transition: 2s; } }
0.239083
0.067485
@font-face { font-family: 'roboto'; src: url('font/roboto.woff') format('woff'); } :root { --egg-shell: #F2E5D7; --eerie-black: #1A1B25; --soft-white: #FDFDFF; } * { margin:0; padding:0; } body{ width: 100%; max-width: 1440px; margin: 0 auto; background-color: var(--egg-shell); font-family: roboto, sans-serif; } button { border:var(--soft-white) solid 5px; color: var(--soft-white); background-color:transparent; border-radius: 8px; font-size:24px; padding: 15px 50px; margin:25px 0 0 0; transition:1s; cursor:pointer; box-sizing: border-box; } button:hover { border-color:var(--egg-shell); } section{ height: 100vh; margin-top: 37px; } h1 { font-family: roboto, sans-serif; font-style: normal; font-weight: normal; line-height: normal; font-size: 96px; color: #FFFFFF; } h2 { font-family: roboto; font-style: normal; font-weight: 500; line-height: normal; font-size: 72px; text-align: center; color: var(--soft-white); } ul { list-style: none; margin:20px 0 0 0; } li { font-family: roboto; font-style: normal; font-weight: normal; line-height: 150%; font-size: 20px; margin:5px; } /* Header Styling */ .main-header{ height: 140px; display: flex; justify-content: space-between; padding: 0 35px; align-items: center; width: 100%; position: fixed; box-sizing: border-box; z-index: 1000; } .main-header.switch{ flex-direction: row-reverse; } img.logo{ width: 60px; height: 60px; display: none; } img.logo.logo_display{ display: block; } /* Menu in header Styling */ .expander { width:70px; } .menu-container{ width: 70px; height: 70px; display: flex; border-radius: 50%; justify-content: center; align-items: center; cursor: pointer; } .menu-toggle{ height: 5px; width: 37px; border-radius: 2px; background-color: var(--soft-white); } .menu-toggle__blackout{ background-color: #1A1B25; } .menu-toggle::before, .menu-toggle::after{ content: " "; display: block; height: inherit; width: inherit; background-color: inherit; border-radius: inherit; position: absolute; } .menu-toggle::before{ margin-top: -10px; } .menu-toggle::after { margin-top: 10px; } .switch > .menu-container > .menu-toggle{ background-color: var(--eerie-black); } .menu-fullscreen{ position: fixed; background-color: var(--egg-shell); transform: scale(0,0); transition: transform 0.2s; display: flex; justify-content: center; align-items: center; z-index: 500; height: 100vh; width: 100vw; } .menu-fullscreen__open{ transform: scale(1,1); } .no-scroll { overflow-y: hidden; } /* Section 1 Styling */ section.hero{ background-image: url('../img/hero-image.png'); background-size: cover; background-repeat: no-repeat; background-position-x:left; margin-top: 0; display:flex; flex-direction: column; justify-content: center; padding:0 0 0 100px; box-sizing: border-box; } section.hero h1{ font-weight: bold; font-size: 96px; color: var(--soft-white); } section.hero h3{ font-size: 44px; font-weight:lighter; color: var(--soft-white); } /* Lifestyle section 2 styling */ section.lifestyle{ height:100vh; width:100%; display:flex; } .text-content{ height:100%; width:50%; background-color:var(--soft-white); display:flex; justify-content: center; flex-direction: column; padding:0 70px 0 50px; box-sizing: border-box; } .header { font-family: roboto; font-style: normal; font-weight: 500; line-height: normal; font-size: 50px; color: #181818; margin:0 0 5px 0; } .subtext { font-style: normal; font-weight: normal; line-height: normal; font-size: 16px; color: #181818; } .lifestyle>.image-content { height:100%; width:50%; background-image: url('../img/winter-image.png'); } /* SPECIFICATIONS */ section.specifications{ height:100vh; width:100%; display:flex; } .specifications>.image-content { height:100%; width:50%; background-image: url('../img/spec-image.png'); background-size:contain; background-repeat: no-repeat; background-color:var(--soft-white); } /* HEALTH & FITNESS */ section.health{ height:100vh; width:100%; display:flex; } .health>.image-content { height:100%; width:50%; background-image: url('../img/health-image.png'); background-size:cover; background-repeat: no-repeat; background-color:var(--soft-white); } .health>.text-content>.text>.image-content { margin: 20px 0 20px 0; } .article-image { } .health>.text-content>.text>* { margin:10px 0 10px 0; } /* MAKE IT YOURS */ section.buy{ height:100vh; width:100%; display:flex; flex-direction:column; padding:200px 0 0 0 ; box-sizing: border-box; align-items: center; background-color:var(--soft-white); background-image:url('https://images.unsplash.com/photo-1494858723852-d3cc2477e12c?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1656&q=80'); background-position-x:center; } .buy-image { width:40%; height:auto; margin:20px 0 40px 0; } /* FOOTER */ section.footer{ height:100vh; width:100%; } div.footer-links{ height: 50%; width: 100%; display: flex; align-items: center; justify-content: center; background-color:var(--soft-white); } .footer-list { width:50%; display:flex; align-items: center; justify-content: center; flex-direction:column; } .footer-list>li>a{ text-decoration: none; font-family: roboto; font-style: normal; font-weight: normal; line-height: normal; color: #000000; } .footer-list > li { margin: 20px; } .footer-list.middle-border { border-right:1px solid black; } footer { width:100%; height: 50%; } footer .container{ display: flex; justify-content: space-between; align-items: flex-end; height: 70%; padding: 0 50px; } footer .container .copy-text{ width: 800px; height: 160px; display: flex; flex-direction: column; justify-content: space-between; padding-bottom: 10px; } footer .container .copy-text p{ font-family: Roboto; font-style: normal; font-weight: normal; line-height: normal; font-size: 18px; } footer .container .copy-text h3{ font-family: Roboto; font-style: normal; font-weight: normal; line-height: normal; font-size: 36px; } footer .footer-logo{ height: 30%; display: flex; justify-content: center; align-items: center; } .mobile { display:none; } /* ANIMATIONS */ .fade-in { -webkit-animation: fade-in 2.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; animation: fade-in 2.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; } @-webkit-keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } @media only screen and (max-width: 768px) { /* For mobile phones: */ .mobile { display:block; } .desktop { display:none; } h1 { font-family: roboto; font-style: normal; font-weight: normal; line-height: normal; font-size: 48px; color: #FFFFFF; } li { font-family: roboto; font-style: normal; font-weight: normal; line-height: 150%; font-size: 16px; margin:5px; } section.hero { background-image:url("../img/hero-mobile.png"); background-size: cover; background-repeat: no-repeat; background-position-y:bottom; padding:0 65px 0 45px; } section.hero h1 { padding:0; font-size:60px; } section.hero h3{ font-size: 22px; } section.lifestyle{ flex-direction:column-reverse; display:flex; justify-content: center; box-sizing: border-box; background-color: var(--soft-white); } section.lifestyle>.text-content{ width:100%; height:auto; align-items: flex-start; justify-content: flex-start; } section.lifestyle>.image-content{ width:100%; height:150px; background-position: center; margin:25px 0 50px 0; } .main-header { padding: 0 15px; } .text-content { padding:0; } .header { font-family: roboto; font-style: normal; font-weight: 500; line-height: normal; font-size: 28px; color: #1A1B25; padding: 0 0 0 25px; } .subtext { padding: 0 45px 0 25px; font-family: roboto; font-style: normal; font-weight: normal; line-height: normal; font-size: 16px; color: #000000; } section.specifications{ flex-direction:column-reverse; justify-content: center; box-sizing: border-box; background-color: var(--soft-white); } section.specifications>.text-content{ width:100%; height:auto; } section.specifications>.image-content{ height:150px; width:100%; background-image: url("../img/mobile-spec-image.png"); background-position: center; background-size: cover; margin:45px 0 0 0; } ul { padding:0 0 0 25px; width:80%; } h2 { font-family: roboto; font-style: normal; font-weight: 500; line-height: normal; font-size: 36px; color: var(--soft-white); } section.health{ flex-direction:column; box-sizing: border-box; justify-content: center; background-color: var(--soft-white); } section.health>.text-content{ width:100%; height:auto; } section.health>.image-content{ width:100%; height:150px; margin: 25px 0 25px 0; background-position: center; } section.health>.text-content>.text>.image-content { width:70%; } .subheader { font-family: roboto; font-style: normal; font-weight: 500; line-height: normal; font-size: 30px; color: #000000; padding:0 0 0 25px; } .buy-image { width:90%; } .footer-list { padding:0; } footer .container{ justify-content: space-between; align-items: center; flex-direction: column; height: 70%; padding: 0 50px; } footer .container .copy-text{ width: 100%; height: 160px; padding-bottom: 0; order: 1; } footer .footer-logo{ order: 2; } footer .container .copy-text p{ font-size: 14px; } footer .container .copy-text h3{ font-size: 18px; } footer .container .social-links img{ width: 100%; height: auto; } footer .container .social-links{ padding: 30px 0 10px 0; } }
css/style.css
@font-face { font-family: 'roboto'; src: url('font/roboto.woff') format('woff'); } :root { --egg-shell: #F2E5D7; --eerie-black: #1A1B25; --soft-white: #FDFDFF; } * { margin:0; padding:0; } body{ width: 100%; max-width: 1440px; margin: 0 auto; background-color: var(--egg-shell); font-family: roboto, sans-serif; } button { border:var(--soft-white) solid 5px; color: var(--soft-white); background-color:transparent; border-radius: 8px; font-size:24px; padding: 15px 50px; margin:25px 0 0 0; transition:1s; cursor:pointer; box-sizing: border-box; } button:hover { border-color:var(--egg-shell); } section{ height: 100vh; margin-top: 37px; } h1 { font-family: roboto, sans-serif; font-style: normal; font-weight: normal; line-height: normal; font-size: 96px; color: #FFFFFF; } h2 { font-family: roboto; font-style: normal; font-weight: 500; line-height: normal; font-size: 72px; text-align: center; color: var(--soft-white); } ul { list-style: none; margin:20px 0 0 0; } li { font-family: roboto; font-style: normal; font-weight: normal; line-height: 150%; font-size: 20px; margin:5px; } /* Header Styling */ .main-header{ height: 140px; display: flex; justify-content: space-between; padding: 0 35px; align-items: center; width: 100%; position: fixed; box-sizing: border-box; z-index: 1000; } .main-header.switch{ flex-direction: row-reverse; } img.logo{ width: 60px; height: 60px; display: none; } img.logo.logo_display{ display: block; } /* Menu in header Styling */ .expander { width:70px; } .menu-container{ width: 70px; height: 70px; display: flex; border-radius: 50%; justify-content: center; align-items: center; cursor: pointer; } .menu-toggle{ height: 5px; width: 37px; border-radius: 2px; background-color: var(--soft-white); } .menu-toggle__blackout{ background-color: #1A1B25; } .menu-toggle::before, .menu-toggle::after{ content: " "; display: block; height: inherit; width: inherit; background-color: inherit; border-radius: inherit; position: absolute; } .menu-toggle::before{ margin-top: -10px; } .menu-toggle::after { margin-top: 10px; } .switch > .menu-container > .menu-toggle{ background-color: var(--eerie-black); } .menu-fullscreen{ position: fixed; background-color: var(--egg-shell); transform: scale(0,0); transition: transform 0.2s; display: flex; justify-content: center; align-items: center; z-index: 500; height: 100vh; width: 100vw; } .menu-fullscreen__open{ transform: scale(1,1); } .no-scroll { overflow-y: hidden; } /* Section 1 Styling */ section.hero{ background-image: url('../img/hero-image.png'); background-size: cover; background-repeat: no-repeat; background-position-x:left; margin-top: 0; display:flex; flex-direction: column; justify-content: center; padding:0 0 0 100px; box-sizing: border-box; } section.hero h1{ font-weight: bold; font-size: 96px; color: var(--soft-white); } section.hero h3{ font-size: 44px; font-weight:lighter; color: var(--soft-white); } /* Lifestyle section 2 styling */ section.lifestyle{ height:100vh; width:100%; display:flex; } .text-content{ height:100%; width:50%; background-color:var(--soft-white); display:flex; justify-content: center; flex-direction: column; padding:0 70px 0 50px; box-sizing: border-box; } .header { font-family: roboto; font-style: normal; font-weight: 500; line-height: normal; font-size: 50px; color: #181818; margin:0 0 5px 0; } .subtext { font-style: normal; font-weight: normal; line-height: normal; font-size: 16px; color: #181818; } .lifestyle>.image-content { height:100%; width:50%; background-image: url('../img/winter-image.png'); } /* SPECIFICATIONS */ section.specifications{ height:100vh; width:100%; display:flex; } .specifications>.image-content { height:100%; width:50%; background-image: url('../img/spec-image.png'); background-size:contain; background-repeat: no-repeat; background-color:var(--soft-white); } /* HEALTH & FITNESS */ section.health{ height:100vh; width:100%; display:flex; } .health>.image-content { height:100%; width:50%; background-image: url('../img/health-image.png'); background-size:cover; background-repeat: no-repeat; background-color:var(--soft-white); } .health>.text-content>.text>.image-content { margin: 20px 0 20px 0; } .article-image { } .health>.text-content>.text>* { margin:10px 0 10px 0; } /* MAKE IT YOURS */ section.buy{ height:100vh; width:100%; display:flex; flex-direction:column; padding:200px 0 0 0 ; box-sizing: border-box; align-items: center; background-color:var(--soft-white); background-image:url('https://images.unsplash.com/photo-1494858723852-d3cc2477e12c?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1656&q=80'); background-position-x:center; } .buy-image { width:40%; height:auto; margin:20px 0 40px 0; } /* FOOTER */ section.footer{ height:100vh; width:100%; } div.footer-links{ height: 50%; width: 100%; display: flex; align-items: center; justify-content: center; background-color:var(--soft-white); } .footer-list { width:50%; display:flex; align-items: center; justify-content: center; flex-direction:column; } .footer-list>li>a{ text-decoration: none; font-family: roboto; font-style: normal; font-weight: normal; line-height: normal; color: #000000; } .footer-list > li { margin: 20px; } .footer-list.middle-border { border-right:1px solid black; } footer { width:100%; height: 50%; } footer .container{ display: flex; justify-content: space-between; align-items: flex-end; height: 70%; padding: 0 50px; } footer .container .copy-text{ width: 800px; height: 160px; display: flex; flex-direction: column; justify-content: space-between; padding-bottom: 10px; } footer .container .copy-text p{ font-family: Roboto; font-style: normal; font-weight: normal; line-height: normal; font-size: 18px; } footer .container .copy-text h3{ font-family: Roboto; font-style: normal; font-weight: normal; line-height: normal; font-size: 36px; } footer .footer-logo{ height: 30%; display: flex; justify-content: center; align-items: center; } .mobile { display:none; } /* ANIMATIONS */ .fade-in { -webkit-animation: fade-in 2.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; animation: fade-in 2.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; } @-webkit-keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } @media only screen and (max-width: 768px) { /* For mobile phones: */ .mobile { display:block; } .desktop { display:none; } h1 { font-family: roboto; font-style: normal; font-weight: normal; line-height: normal; font-size: 48px; color: #FFFFFF; } li { font-family: roboto; font-style: normal; font-weight: normal; line-height: 150%; font-size: 16px; margin:5px; } section.hero { background-image:url("../img/hero-mobile.png"); background-size: cover; background-repeat: no-repeat; background-position-y:bottom; padding:0 65px 0 45px; } section.hero h1 { padding:0; font-size:60px; } section.hero h3{ font-size: 22px; } section.lifestyle{ flex-direction:column-reverse; display:flex; justify-content: center; box-sizing: border-box; background-color: var(--soft-white); } section.lifestyle>.text-content{ width:100%; height:auto; align-items: flex-start; justify-content: flex-start; } section.lifestyle>.image-content{ width:100%; height:150px; background-position: center; margin:25px 0 50px 0; } .main-header { padding: 0 15px; } .text-content { padding:0; } .header { font-family: roboto; font-style: normal; font-weight: 500; line-height: normal; font-size: 28px; color: #1A1B25; padding: 0 0 0 25px; } .subtext { padding: 0 45px 0 25px; font-family: roboto; font-style: normal; font-weight: normal; line-height: normal; font-size: 16px; color: #000000; } section.specifications{ flex-direction:column-reverse; justify-content: center; box-sizing: border-box; background-color: var(--soft-white); } section.specifications>.text-content{ width:100%; height:auto; } section.specifications>.image-content{ height:150px; width:100%; background-image: url("../img/mobile-spec-image.png"); background-position: center; background-size: cover; margin:45px 0 0 0; } ul { padding:0 0 0 25px; width:80%; } h2 { font-family: roboto; font-style: normal; font-weight: 500; line-height: normal; font-size: 36px; color: var(--soft-white); } section.health{ flex-direction:column; box-sizing: border-box; justify-content: center; background-color: var(--soft-white); } section.health>.text-content{ width:100%; height:auto; } section.health>.image-content{ width:100%; height:150px; margin: 25px 0 25px 0; background-position: center; } section.health>.text-content>.text>.image-content { width:70%; } .subheader { font-family: roboto; font-style: normal; font-weight: 500; line-height: normal; font-size: 30px; color: #000000; padding:0 0 0 25px; } .buy-image { width:90%; } .footer-list { padding:0; } footer .container{ justify-content: space-between; align-items: center; flex-direction: column; height: 70%; padding: 0 50px; } footer .container .copy-text{ width: 100%; height: 160px; padding-bottom: 0; order: 1; } footer .footer-logo{ order: 2; } footer .container .copy-text p{ font-size: 14px; } footer .container .copy-text h3{ font-size: 18px; } footer .container .social-links img{ width: 100%; height: auto; } footer .container .social-links{ padding: 30px 0 10px 0; } }
0.326916
0.068756
.menu { display: block; align-items: center; justify-content: center; padding: 20px; background-color: teal; color: #fff; } .nav-links { display: contents; align-items: center; gap: 1em; font-family: Verdana, Geneva, Tahoma, sans-serif; color: aliceblue; font-size: 25px; list-style: none; } .nav-links li:hover { background-color: #4c9e9e; border-radius: 5px; transition: 0.3s ease; } .nav-links li { padding: 5px 14px; display: inline; margin-left: -200px; } .nav-links a { text-decoration: none; text-align: center; } .nav-menu { display: inline-block; width: 100%; text-align: center; text-decoration: none; } .logo{ float: left; margin-top: -15px; } .links{ color: #fff; } body, html { height: 100%; margin: 0; padding: 0; overflow: auto; box-sizing:border-box; background-color: rgba(205, 235, 232, 0.048); background-size: cover; background-repeat:no-repeat; } .wrapper { display: flex; flex-wrap: wrap; justify-content: center; margin: 0; padding: 0; } .posts { max-width: 400px; box-sizing: border-box; margin: 20px; display: flex; flex-direction: column; flex-wrap: wrap; padding: 20px 20px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); background-color: rgb(251, 244, 244); margin: 1.5vw; } #css-positioning{ width: 100%; height: 100%; max-height: 400px; object-fit: cover; margin-bottom: 50px; } .dates{ display: block; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; font-size: 14px; text-transform: uppercase; margin-bottom: 6px; } .post-title { display: block; font-family: "Montserrat", sans-serif; font-size: 18px; margin-bottom: 6px; } .h1 { font-family: "Lucida Console", "Courier New", monospace; position: relative; left: 0em; top: 0em; text-align: center; } .h2 { font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; position: relative; left: 5em; } p { color: #4c9e9e;; text-align: left; } .points { color: rgb(49, 145, 235); text-align: left; } .content-position { padding: 50px; background-color: rgb(251, 244, 244); margin-top: 100px; margin-bottom: 100px; width: 40vw; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); border-radius: 25px; }
blog/styles/main.css
.menu { display: block; align-items: center; justify-content: center; padding: 20px; background-color: teal; color: #fff; } .nav-links { display: contents; align-items: center; gap: 1em; font-family: Verdana, Geneva, Tahoma, sans-serif; color: aliceblue; font-size: 25px; list-style: none; } .nav-links li:hover { background-color: #4c9e9e; border-radius: 5px; transition: 0.3s ease; } .nav-links li { padding: 5px 14px; display: inline; margin-left: -200px; } .nav-links a { text-decoration: none; text-align: center; } .nav-menu { display: inline-block; width: 100%; text-align: center; text-decoration: none; } .logo{ float: left; margin-top: -15px; } .links{ color: #fff; } body, html { height: 100%; margin: 0; padding: 0; overflow: auto; box-sizing:border-box; background-color: rgba(205, 235, 232, 0.048); background-size: cover; background-repeat:no-repeat; } .wrapper { display: flex; flex-wrap: wrap; justify-content: center; margin: 0; padding: 0; } .posts { max-width: 400px; box-sizing: border-box; margin: 20px; display: flex; flex-direction: column; flex-wrap: wrap; padding: 20px 20px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); background-color: rgb(251, 244, 244); margin: 1.5vw; } #css-positioning{ width: 100%; height: 100%; max-height: 400px; object-fit: cover; margin-bottom: 50px; } .dates{ display: block; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; font-size: 14px; text-transform: uppercase; margin-bottom: 6px; } .post-title { display: block; font-family: "Montserrat", sans-serif; font-size: 18px; margin-bottom: 6px; } .h1 { font-family: "Lucida Console", "Courier New", monospace; position: relative; left: 0em; top: 0em; text-align: center; } .h2 { font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; position: relative; left: 5em; } p { color: #4c9e9e;; text-align: left; } .points { color: rgb(49, 145, 235); text-align: left; } .content-position { padding: 50px; background-color: rgb(251, 244, 244); margin-top: 100px; margin-bottom: 100px; width: 40vw; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); border-radius: 25px; }
0.415492
0.080828
@font-face { font-family : "BebasNeue"; src : url(./font/Bebas_Neue/BebasNeue-Regular.ttf); } :root { --red : #d44f40; --blue : #2f74cd; --green : #83bc2a; } #root { min-height : 100vh; } .wrapper { max-width : 1100px; margin : 0 auto; position : relative; } h1, p { font-family : "BebasNeue", serif; } h1 { font-size : 7em; font-weight : 300; } p { font-size : 5em; margin : 0 auto; } p.smallText { font-size : 2em; } h1 { margin : 0; } form label { margin : 5em 0; } #homeScreen { display : flex; align-items : center; justify-content : center; height : 100vh; margin : 0; background : linear-gradient(150deg, var(--red) 0%, var(--red) 50%, var(--blue) 50%, var(--blue) 100%); } #title { margin : 0 auto; padding : 0 2em; max-width : 500px; height : auto; text-align : center; animation : titleInit 2s forwards; } #title > img { width : 100%; height : auto; animation : bounce 5s ease-in-out infinite; animation-delay : 2s; } .App { text-align : center; min-height : 100vh; } #valueSlider { color : white; width : 95%; } .slider { display : flex; align-self : center; font-size : 0.3em; width : 350px; } .slider p { margin : 0 1em; } .content { display : flex; text-align : center; justify-content : center; align-items : center; flex-direction : column; height : 100vh; color : white; } .column { display : flex; flex-direction : column; } .higher { background-color : var(--red); } .lower { background-color : var(--blue); } .completed { background-color : var(--green); } .neutral { background-color : #575755; } #message { white-space : pre-wrap; position : relative; } #message > * { text-transform : uppercase; margin : 0; } #message h1{ line-height: .8em; } #message h2 { font-size : 1.25em; } #message .attempts { line-height: 0; } #privacy { position: absolute; bottom: 0; width: 100%; padding: 1em 0; height: 200px; background-color: #347fe0; animation: up-fade-in 1.5s; color: white; } #privacy h2{ font-family: sans-serif; font-size: 2em; text-transform: uppercase; } #privacy p{ font-family: sans-serif; font-size: 1em; } #privacy button{ width: 8em; padding: 1em; font-size: 1.2em; } .hide{ display: none; } /* Positions */ .top { position : absolute; top : 15px; } .bottom { position : absolute; bottom : 15px; left : 0; } .left { position : absolute; left : 15px; } .right { position : absolute; right : 15px; } .center { margin : 0 auto; } .textLeft { text-align : left; } .textRight { text-align : right; } /* Buttons */ button { outline : none; font-family : "BebasNeue", serif; background-color : white; border : none; border-radius : 20px; font-size : 1.5em; width : 5em; padding : .5em 1em; margin : 1em; box-shadow : 5px 5px 10px rgba(0, 0, 0, 0.2); transition : all .5s; } button.circle { padding : 0; border-radius : 50px; font-size : 1.5em; font-weight : 400; width : 2em; height : 2em; } button:hover { transform : scale(1.1); box-shadow : 0 0 0 rgba(0, 0, 0, 0); } .buttonsContainer { position : absolute; top : 60%; left : 50%; transform : translate(-50%, -50%); } .buttonsContainer button { opacity : 0; animation : up-fade-in 2s forwards; animation-delay : 1.5s; } @media screen and (max-width : 600px) { } /* Animations */ @keyframes up-fade-in { from { opacity : 0; transform : translateY(50px); } to { transform : translateY(0); opacity : 1; } } @keyframes titleInit { 0% { transform : translateX(-100px); filter : drop-shadow(0px 0px rgba(0, 0, 0, 0)); opacity : 0; } 40% { transform : translateX(0); opacity : 1; } 60% { } 100% { transform : translateY(-100px); filter : drop-shadow(5px 5px rgba(0, 0, 0, 0.2)); } } @keyframes bounce { 20% { transform : translateY(-25px); } 50% { transform : translateY(0); } 80% { transform : translateY(-25px); } }
src/App.css
@font-face { font-family : "BebasNeue"; src : url(./font/Bebas_Neue/BebasNeue-Regular.ttf); } :root { --red : #d44f40; --blue : #2f74cd; --green : #83bc2a; } #root { min-height : 100vh; } .wrapper { max-width : 1100px; margin : 0 auto; position : relative; } h1, p { font-family : "BebasNeue", serif; } h1 { font-size : 7em; font-weight : 300; } p { font-size : 5em; margin : 0 auto; } p.smallText { font-size : 2em; } h1 { margin : 0; } form label { margin : 5em 0; } #homeScreen { display : flex; align-items : center; justify-content : center; height : 100vh; margin : 0; background : linear-gradient(150deg, var(--red) 0%, var(--red) 50%, var(--blue) 50%, var(--blue) 100%); } #title { margin : 0 auto; padding : 0 2em; max-width : 500px; height : auto; text-align : center; animation : titleInit 2s forwards; } #title > img { width : 100%; height : auto; animation : bounce 5s ease-in-out infinite; animation-delay : 2s; } .App { text-align : center; min-height : 100vh; } #valueSlider { color : white; width : 95%; } .slider { display : flex; align-self : center; font-size : 0.3em; width : 350px; } .slider p { margin : 0 1em; } .content { display : flex; text-align : center; justify-content : center; align-items : center; flex-direction : column; height : 100vh; color : white; } .column { display : flex; flex-direction : column; } .higher { background-color : var(--red); } .lower { background-color : var(--blue); } .completed { background-color : var(--green); } .neutral { background-color : #575755; } #message { white-space : pre-wrap; position : relative; } #message > * { text-transform : uppercase; margin : 0; } #message h1{ line-height: .8em; } #message h2 { font-size : 1.25em; } #message .attempts { line-height: 0; } #privacy { position: absolute; bottom: 0; width: 100%; padding: 1em 0; height: 200px; background-color: #347fe0; animation: up-fade-in 1.5s; color: white; } #privacy h2{ font-family: sans-serif; font-size: 2em; text-transform: uppercase; } #privacy p{ font-family: sans-serif; font-size: 1em; } #privacy button{ width: 8em; padding: 1em; font-size: 1.2em; } .hide{ display: none; } /* Positions */ .top { position : absolute; top : 15px; } .bottom { position : absolute; bottom : 15px; left : 0; } .left { position : absolute; left : 15px; } .right { position : absolute; right : 15px; } .center { margin : 0 auto; } .textLeft { text-align : left; } .textRight { text-align : right; } /* Buttons */ button { outline : none; font-family : "BebasNeue", serif; background-color : white; border : none; border-radius : 20px; font-size : 1.5em; width : 5em; padding : .5em 1em; margin : 1em; box-shadow : 5px 5px 10px rgba(0, 0, 0, 0.2); transition : all .5s; } button.circle { padding : 0; border-radius : 50px; font-size : 1.5em; font-weight : 400; width : 2em; height : 2em; } button:hover { transform : scale(1.1); box-shadow : 0 0 0 rgba(0, 0, 0, 0); } .buttonsContainer { position : absolute; top : 60%; left : 50%; transform : translate(-50%, -50%); } .buttonsContainer button { opacity : 0; animation : up-fade-in 2s forwards; animation-delay : 1.5s; } @media screen and (max-width : 600px) { } /* Animations */ @keyframes up-fade-in { from { opacity : 0; transform : translateY(50px); } to { transform : translateY(0); opacity : 1; } } @keyframes titleInit { 0% { transform : translateX(-100px); filter : drop-shadow(0px 0px rgba(0, 0, 0, 0)); opacity : 0; } 40% { transform : translateX(0); opacity : 1; } 60% { } 100% { transform : translateY(-100px); filter : drop-shadow(5px 5px rgba(0, 0, 0, 0.2)); } } @keyframes bounce { 20% { transform : translateY(-25px); } 50% { transform : translateY(0); } 80% { transform : translateY(-25px); } }
0.370681
0.145449
bady { padding: 0; margin: 0; } .bg { width: 900px; height: 600px; margin: 0 auto; background: url(../images/5.jpg) no-repeat center; background-size: cover; } h3 { margin: 0; font-size: 24px; text-align: center; padding-top: 20px; } .insert { width: 800px; height: 100px; border: 1px dotted #000; border-radius: 10px; margin: 20px auto; padding-top: 20px; padding-left: 256px; box-sizing: border-box; } input[type=text] { height: 26px; margin-bottom: 14px; border-radius: 10px; border: none; padding-left: 30px; box-sizing: border-box; } input[type=password] { height: 26px; border-radius: 10px; border: none; padding-left: 30px; box-sizing: border-box; } input[type=button] { border-radius: 12px; padding: 3px 12px; background-color: #42B57C; outline: none; border: none; margin-left: 30px; color: #fff; } .content { width: 800px; height: 350px; border: 1px dotted #000; border-radius: 10px; margin: 20px auto; } .content table { width: 750px; height: 324px; margin: 10px auto; border: 1px solid #42B57C; } .content thead { background-color: #42B57C; text-align: center; } .content thead tr { height: 40px; } .content thead td { border: 1px solid #000; } .content tbody { /*background-color: pink;*/ text-align: center; } .edit { width: 500px; height: 366px; background: url(../images/2.jpg) no-repeat left; background-size: cover; position: absolute; top: -387px; left: 436px; /*float:left;*/ /*margin-top:-974px;*/ /*margin-left: 436px;*/ border: none; padding-top: 50px; padding-left: 218px; /*z-index:12220000;*/ } .see { width: 530px; height: 366px; box-sizing: border-box; background: url(../images/66.jpg) no-repeat center; background-size: cover; position: absolute; /*top: -387px;*/ top: 120px; left: 436px; padding-top: 30px; padding-left: 155px; transition: 0.5s all; transform: scale(0); } .see div { text-align: center; width: 220px; height: 25px; background-color: skyblue; }
css/user.css
bady { padding: 0; margin: 0; } .bg { width: 900px; height: 600px; margin: 0 auto; background: url(../images/5.jpg) no-repeat center; background-size: cover; } h3 { margin: 0; font-size: 24px; text-align: center; padding-top: 20px; } .insert { width: 800px; height: 100px; border: 1px dotted #000; border-radius: 10px; margin: 20px auto; padding-top: 20px; padding-left: 256px; box-sizing: border-box; } input[type=text] { height: 26px; margin-bottom: 14px; border-radius: 10px; border: none; padding-left: 30px; box-sizing: border-box; } input[type=password] { height: 26px; border-radius: 10px; border: none; padding-left: 30px; box-sizing: border-box; } input[type=button] { border-radius: 12px; padding: 3px 12px; background-color: #42B57C; outline: none; border: none; margin-left: 30px; color: #fff; } .content { width: 800px; height: 350px; border: 1px dotted #000; border-radius: 10px; margin: 20px auto; } .content table { width: 750px; height: 324px; margin: 10px auto; border: 1px solid #42B57C; } .content thead { background-color: #42B57C; text-align: center; } .content thead tr { height: 40px; } .content thead td { border: 1px solid #000; } .content tbody { /*background-color: pink;*/ text-align: center; } .edit { width: 500px; height: 366px; background: url(../images/2.jpg) no-repeat left; background-size: cover; position: absolute; top: -387px; left: 436px; /*float:left;*/ /*margin-top:-974px;*/ /*margin-left: 436px;*/ border: none; padding-top: 50px; padding-left: 218px; /*z-index:12220000;*/ } .see { width: 530px; height: 366px; box-sizing: border-box; background: url(../images/66.jpg) no-repeat center; background-size: cover; position: absolute; /*top: -387px;*/ top: 120px; left: 436px; padding-top: 30px; padding-left: 155px; transition: 0.5s all; transform: scale(0); } .see div { text-align: center; width: 220px; height: 25px; background-color: skyblue; }
0.39129
0.121947
@-moz-document domain("transport-games.ru") { #ipsLayout_header .ipsm-nav.is-stuck, .ipsm-nav { background-color: rgba(26, 32, 39, 0.9); box-shadow: 0 0 5px rgba(0, 0, 0, 0.8); } .ipsNavBar_primary > ul > li > a, #ipsLayout_header .ipsm-nav.is-stuck #elUserNav > li > a, .ipsType_richText, .ipsNavBar_primary > ul > li.ipsNavBar_active > a, #elUserNav > li > a, .ipsQuote_citation, body, a, .ipsType_pageTitle, .ipsType_sectionHead, .ipsWidget.ipsWidget_vertical .ipsWidget_title, .ipsBreadcrumb > ul > li, .ipsBreadcrumb [data-action="defaultStream"], .ipsBreadcrumb [data-action="markSiteRead"], .ipsNavBar_secondary > li > a, .ipsTabs_activeItem, .ipsPager_type, .ipsPager .ipsPager_next a:after, .ipsPager .ipsPager_prev a:after, .ipsApp .ipsButton_light, .ipsComposeArea_dummy { color: #ddd; /* Серый */ } .ipsAreaBackground_light, .ipsQuote_citation, .inline100:last-child { border-radius: 0px 0px 5px 5px; } .ipsApp .ipsButton_light, .ipsComposeArea_dummy, .cke_top, .ipsComposeArea_editor, .ipsNavBar_primary > ul > li #ipsmakeHomeIcon, .ipsApp .ipsField_autocomplete, .ipsApp textarea, .ipsApp input[type="text"], .ipsApp input[type="password"], .ipsApp input[type="datetime"], .ipsApp input[type="datetime-local"], .ipsApp input[type="date"], .ipsApp input[type="month"], .ipsApp input[type="time"], .ipsApp input[type="week"], .ipsApp input[type="number"], .ipsApp input[type="email"], .ipsApp input[type="url"], .ipsApp input[type="search"], .ipsApp input[type="tel"], .ipsQuote_citation, .inline100:last-child { background-color: #55626d; /* Светлый */ } .ipsNavBar_primary > ul > li > .ipsNavBar_secondary, .ipsTabs_panel, .ipsTabs_activeItem, .ipsHovercard, .ipsMenu { background-color: #4e5f74 !important; /* Средний */ } .ipsBox:not( .ipsBox_transparent ):not( .ipsModerated ), .cAuthorPane, #ipsLayout_contentWrapper, .ipsQuote, .ipsDataList.ipsDataList_zebra .ipsDataItem:not( .ipsDataItem_selected ):not( .ipsModerated ):not( .ipsDataItem_new ):not( .ipsDataItem_success ):not( .ipsDataItem_warning ):not( .ipsDataItem_error ):not( .ipsDataItem_info ):not( .ipsDataItem_status ):nth-child(even), .ipsAreaBackground_reset, .ipsLikeRep, .ipsReputation_count, .ipsReputation_count.ipsType_positive, .material_card, .ipsWidget.ipsWidget_horizontal .ipsWidget_title, .ipsTabs, .ipsComment:not( .ipsModerated ) .ipsComment_header, .ipsAreaBackground, .cke_wysiwyg_frame, .cke_wysiwyg_div, .ipsDataList_readStatus .ipsDataItem:not( .ipsDataItem_unread ):not( .ipsDataItem_selected ):not( .ipsModerated ) { background-color: #363e45; /* Темный */ } .ipsPageHeader, .ipsAreaBackground_light { background-color: #1c222a !important; /* Очень темный */ } .ipsHovercard, .ipsApp .ipsField_autocomplete, .ipsApp textarea, .ipsApp input[type="text"], .ipsApp input[type="password"], .ipsApp input[type="datetime"], .ipsApp input[type="datetime-local"], .ipsApp input[type="date"], .ipsApp input[type="month"], .ipsApp input[type="time"], .ipsApp input[type="week"], .ipsApp input[type="number"], .ipsApp input[type="email"], .ipsApp input[type="url"], .ipsApp input[type="search"], .ipsApp input[type="tel"] { border-color: #363e45 !important; /* Темный */ } .ipsMenu_headerBar, .ipsMenu { border-color: #55626d !important; /* Светлый */ } .ipsMenu { border-radius: 5px; } .ipsMenu_footerBar { border-top-color: #55626d !important; /* Светлый */ } body { background: none !important; background-color: #363e45 !important; } .ipsMenu_headerBar, .ipsMenu_footerBar { background: none !important; background-color: #4e5f74 !important; /* Средний */ } .ipsMenu.ipsMenu_bottomLeft:after, .ipsMenu.ipsMenu_bottomCenter:after, .ipsMenu.ipsMenu_bottomRight:after, .ipsMenu.ipsMenu_bottomLeft:before, .ipsMenu.ipsMenu_bottomCenter:before, .ipsMenu.ipsMenu_bottomRight:before { border-color: transparent transparent #4e5f74 transparent; } .ipsDataItem, .ipsDataList.ipsDataList_zebra > .ipsDataItem { border-color: #4e5f74; border-top: 0px solid; border-bottom: 1px solid #4e5f74; } .ipsNavBar_secondary > li > a:hover { background-color: #31506b !important; color: #ddd } a:hover { color: #7f9dc1; } .ipsPageHeader, .ipsWidget.ipsWidget_horizontal .ipsWidget_title{ background-color: #4e5f74; border: 1px solid #363e45; border-radius: 5px; } .cCmsRecord_row.ipsDataItem.ipsDataItem_responsivePhoto { border: 1px solid #4e5f74; border-radius: 5px; } .ipsmakeBox, .ipsWidget.ipsWidget_vertical .ipsWidget_title { background-color: #4e5f74; border: 1px solid #4e5f74; } .ipsWidget.ipsWidget_vertical .ipsWidget_inner, .ipsPad { border-radius: 0px 0px 5px 5px; } .ipsWidget.ipsWidget_vertical .ipsWidget_title, .ipsComment_header { border-radius: 5px 5px 0px 0px; } .ipsImage_thumbnailed, .ipsThumb { border: 1px solid #417ba3; } .ipsComment, .ipsComment.ipsBox, .cAuthorPane { border-radius: 5px; } .ipsAreaBackground { border-radius: 5px 0px 0px 5px; } .ipsQuote, .ipsWidget.ipsWidget_vertical .ipsWidget_inner { border-color: #55626d; } .inline100 h4.ipsDataItem_title.ipsContained_container a, a.ipsTruncate.ipsTruncate_line { font-weight: bold; } .ipsReputation_count.ipsType_positive { color:#779a58; } .ipsPagination.ipsPagination_mini a { background-color: rgba(255,255,255,0.1); text-shadow: none; color: #fff; } .ipsTabs_panels.ipsTabs_contained, .ipsComment { border: none; } .ipsNavBar_primary > ul > li.ipsNavBar_active > a { background: rgb(78, 95, 116,0.4); } .ipsDataItem:hover, .cForumList ol.ipsDataList li.ipsDataItem:hover, .ipsDataList.ipsDataList_zebra > .ipsDataItem:hover { background-color: #31506b !important; transition: all 0.3s ease-out; } .ipsWidget.ipsWidget_vertical .ipsWidget_title:after, .cPost .ipsComment_content::before, html[dir="ltr"] .cPost .ipsComment_content::before, html[dir="ltr"] .ipsComposeArea_withPhoto .ipsComposeArea_editor:before { display: none; } .ipsReputation_count.ipsType_negative { background: #a72f35; } }
data/usercss/145110.user.css
@-moz-document domain("transport-games.ru") { #ipsLayout_header .ipsm-nav.is-stuck, .ipsm-nav { background-color: rgba(26, 32, 39, 0.9); box-shadow: 0 0 5px rgba(0, 0, 0, 0.8); } .ipsNavBar_primary > ul > li > a, #ipsLayout_header .ipsm-nav.is-stuck #elUserNav > li > a, .ipsType_richText, .ipsNavBar_primary > ul > li.ipsNavBar_active > a, #elUserNav > li > a, .ipsQuote_citation, body, a, .ipsType_pageTitle, .ipsType_sectionHead, .ipsWidget.ipsWidget_vertical .ipsWidget_title, .ipsBreadcrumb > ul > li, .ipsBreadcrumb [data-action="defaultStream"], .ipsBreadcrumb [data-action="markSiteRead"], .ipsNavBar_secondary > li > a, .ipsTabs_activeItem, .ipsPager_type, .ipsPager .ipsPager_next a:after, .ipsPager .ipsPager_prev a:after, .ipsApp .ipsButton_light, .ipsComposeArea_dummy { color: #ddd; /* Серый */ } .ipsAreaBackground_light, .ipsQuote_citation, .inline100:last-child { border-radius: 0px 0px 5px 5px; } .ipsApp .ipsButton_light, .ipsComposeArea_dummy, .cke_top, .ipsComposeArea_editor, .ipsNavBar_primary > ul > li #ipsmakeHomeIcon, .ipsApp .ipsField_autocomplete, .ipsApp textarea, .ipsApp input[type="text"], .ipsApp input[type="password"], .ipsApp input[type="datetime"], .ipsApp input[type="datetime-local"], .ipsApp input[type="date"], .ipsApp input[type="month"], .ipsApp input[type="time"], .ipsApp input[type="week"], .ipsApp input[type="number"], .ipsApp input[type="email"], .ipsApp input[type="url"], .ipsApp input[type="search"], .ipsApp input[type="tel"], .ipsQuote_citation, .inline100:last-child { background-color: #55626d; /* Светлый */ } .ipsNavBar_primary > ul > li > .ipsNavBar_secondary, .ipsTabs_panel, .ipsTabs_activeItem, .ipsHovercard, .ipsMenu { background-color: #4e5f74 !important; /* Средний */ } .ipsBox:not( .ipsBox_transparent ):not( .ipsModerated ), .cAuthorPane, #ipsLayout_contentWrapper, .ipsQuote, .ipsDataList.ipsDataList_zebra .ipsDataItem:not( .ipsDataItem_selected ):not( .ipsModerated ):not( .ipsDataItem_new ):not( .ipsDataItem_success ):not( .ipsDataItem_warning ):not( .ipsDataItem_error ):not( .ipsDataItem_info ):not( .ipsDataItem_status ):nth-child(even), .ipsAreaBackground_reset, .ipsLikeRep, .ipsReputation_count, .ipsReputation_count.ipsType_positive, .material_card, .ipsWidget.ipsWidget_horizontal .ipsWidget_title, .ipsTabs, .ipsComment:not( .ipsModerated ) .ipsComment_header, .ipsAreaBackground, .cke_wysiwyg_frame, .cke_wysiwyg_div, .ipsDataList_readStatus .ipsDataItem:not( .ipsDataItem_unread ):not( .ipsDataItem_selected ):not( .ipsModerated ) { background-color: #363e45; /* Темный */ } .ipsPageHeader, .ipsAreaBackground_light { background-color: #1c222a !important; /* Очень темный */ } .ipsHovercard, .ipsApp .ipsField_autocomplete, .ipsApp textarea, .ipsApp input[type="text"], .ipsApp input[type="password"], .ipsApp input[type="datetime"], .ipsApp input[type="datetime-local"], .ipsApp input[type="date"], .ipsApp input[type="month"], .ipsApp input[type="time"], .ipsApp input[type="week"], .ipsApp input[type="number"], .ipsApp input[type="email"], .ipsApp input[type="url"], .ipsApp input[type="search"], .ipsApp input[type="tel"] { border-color: #363e45 !important; /* Темный */ } .ipsMenu_headerBar, .ipsMenu { border-color: #55626d !important; /* Светлый */ } .ipsMenu { border-radius: 5px; } .ipsMenu_footerBar { border-top-color: #55626d !important; /* Светлый */ } body { background: none !important; background-color: #363e45 !important; } .ipsMenu_headerBar, .ipsMenu_footerBar { background: none !important; background-color: #4e5f74 !important; /* Средний */ } .ipsMenu.ipsMenu_bottomLeft:after, .ipsMenu.ipsMenu_bottomCenter:after, .ipsMenu.ipsMenu_bottomRight:after, .ipsMenu.ipsMenu_bottomLeft:before, .ipsMenu.ipsMenu_bottomCenter:before, .ipsMenu.ipsMenu_bottomRight:before { border-color: transparent transparent #4e5f74 transparent; } .ipsDataItem, .ipsDataList.ipsDataList_zebra > .ipsDataItem { border-color: #4e5f74; border-top: 0px solid; border-bottom: 1px solid #4e5f74; } .ipsNavBar_secondary > li > a:hover { background-color: #31506b !important; color: #ddd } a:hover { color: #7f9dc1; } .ipsPageHeader, .ipsWidget.ipsWidget_horizontal .ipsWidget_title{ background-color: #4e5f74; border: 1px solid #363e45; border-radius: 5px; } .cCmsRecord_row.ipsDataItem.ipsDataItem_responsivePhoto { border: 1px solid #4e5f74; border-radius: 5px; } .ipsmakeBox, .ipsWidget.ipsWidget_vertical .ipsWidget_title { background-color: #4e5f74; border: 1px solid #4e5f74; } .ipsWidget.ipsWidget_vertical .ipsWidget_inner, .ipsPad { border-radius: 0px 0px 5px 5px; } .ipsWidget.ipsWidget_vertical .ipsWidget_title, .ipsComment_header { border-radius: 5px 5px 0px 0px; } .ipsImage_thumbnailed, .ipsThumb { border: 1px solid #417ba3; } .ipsComment, .ipsComment.ipsBox, .cAuthorPane { border-radius: 5px; } .ipsAreaBackground { border-radius: 5px 0px 0px 5px; } .ipsQuote, .ipsWidget.ipsWidget_vertical .ipsWidget_inner { border-color: #55626d; } .inline100 h4.ipsDataItem_title.ipsContained_container a, a.ipsTruncate.ipsTruncate_line { font-weight: bold; } .ipsReputation_count.ipsType_positive { color:#779a58; } .ipsPagination.ipsPagination_mini a { background-color: rgba(255,255,255,0.1); text-shadow: none; color: #fff; } .ipsTabs_panels.ipsTabs_contained, .ipsComment { border: none; } .ipsNavBar_primary > ul > li.ipsNavBar_active > a { background: rgb(78, 95, 116,0.4); } .ipsDataItem:hover, .cForumList ol.ipsDataList li.ipsDataItem:hover, .ipsDataList.ipsDataList_zebra > .ipsDataItem:hover { background-color: #31506b !important; transition: all 0.3s ease-out; } .ipsWidget.ipsWidget_vertical .ipsWidget_title:after, .cPost .ipsComment_content::before, html[dir="ltr"] .cPost .ipsComment_content::before, html[dir="ltr"] .ipsComposeArea_withPhoto .ipsComposeArea_editor:before { display: none; } .ipsReputation_count.ipsType_negative { background: #a72f35; } }
0.215598
0.059129
body{ background:#f0efef; } .header{ position: fixed; left: 0; top: 0; width: 100%; height: 7.6rem; background: url(../img/tdetails/bg.png) no-repeat 0 center; background-size:100% 100%; } .info{ width: 6.666rem; padding-top: 1.4rem; padding-left: 0.56rem; margin-bottom: 1.146rem; } .info .name{ font-size:0.613rem; font-family:NotoSansHans; font-weight:bold; color:rgba(255,255,255,1); margin-bottom: 0.346rem; } .info p{ font-size:0.266rem; font-family:NotoSansHans; font-weight:400; color:rgba(255,255,255,1); } .statistics{ display: flex; justify-content: space-around; margin-bottom: 0.813rem; } .statistics div.t1{ text-align: center; font-size:0.48rem; font-family:NotoSansHans; font-weight:bold; color:rgba(255,255,255,1); margin-bottom: 0.306rem; } .statistics div.t2{ font-size:0.32rem; font-family:NotoSansHans; font-weight:500; color:rgba(255,255,255,1); } .header .header-img{ position: absolute; right: 0.76rem; top: 0.826rem; width:2.753rem; height:2.853rem; border-radius: 100%; } .tab-list{ display: flex; justify-content: space-around; width:9.466rem; height:2.426rem; background:rgba(255,255,255,1); box-shadow:-0.133rem 0.093rem 0.133rem 0px rgba(42,6,0,0.05); border-radius:0.133rem; margin: 0 auto 0.266rem; } .tab-list .tab{ padding-top: 0.573rem; text-align: center; } .tab-list .tab img{ width:0.693rem; height:0.933rem; } .text{ font-size:0.32rem.; font-family:NotoSansHans; font-weight:400; color:rgba(67,67,67,1); } .evaluation-fz{ height: 8.333rem; width:9.466rem; margin: 0 auto; background:rgba(255,255,255,1); box-shadow:-0.133rem 0.093rem 0.133rem 0px rgba(42,6,0,0.05); border-radius:0.133rem; } .evaluation-fz h3{ font-size:0.346rem; font-family:NotoSansHans; font-weight:400; color:rgba(67,67,67,1); position: relative; width: 100%; } .evaluation-fz h3 .date-box{ position: absolute; right: 0; top: 0; padding-left: 0.6rem; background: url(../img/date.png) no-repeat 0 center; background-size: 0.333rem 0.32rem; font-size:0.253rem; font-family:NotoSansHans; font-weight:400; color:rgba(122,122,122,1); } .content{ padding: 0.36rem 0.266rem; /* background: red; */ }
public/static/scenic/css/index.css
body{ background:#f0efef; } .header{ position: fixed; left: 0; top: 0; width: 100%; height: 7.6rem; background: url(../img/tdetails/bg.png) no-repeat 0 center; background-size:100% 100%; } .info{ width: 6.666rem; padding-top: 1.4rem; padding-left: 0.56rem; margin-bottom: 1.146rem; } .info .name{ font-size:0.613rem; font-family:NotoSansHans; font-weight:bold; color:rgba(255,255,255,1); margin-bottom: 0.346rem; } .info p{ font-size:0.266rem; font-family:NotoSansHans; font-weight:400; color:rgba(255,255,255,1); } .statistics{ display: flex; justify-content: space-around; margin-bottom: 0.813rem; } .statistics div.t1{ text-align: center; font-size:0.48rem; font-family:NotoSansHans; font-weight:bold; color:rgba(255,255,255,1); margin-bottom: 0.306rem; } .statistics div.t2{ font-size:0.32rem; font-family:NotoSansHans; font-weight:500; color:rgba(255,255,255,1); } .header .header-img{ position: absolute; right: 0.76rem; top: 0.826rem; width:2.753rem; height:2.853rem; border-radius: 100%; } .tab-list{ display: flex; justify-content: space-around; width:9.466rem; height:2.426rem; background:rgba(255,255,255,1); box-shadow:-0.133rem 0.093rem 0.133rem 0px rgba(42,6,0,0.05); border-radius:0.133rem; margin: 0 auto 0.266rem; } .tab-list .tab{ padding-top: 0.573rem; text-align: center; } .tab-list .tab img{ width:0.693rem; height:0.933rem; } .text{ font-size:0.32rem.; font-family:NotoSansHans; font-weight:400; color:rgba(67,67,67,1); } .evaluation-fz{ height: 8.333rem; width:9.466rem; margin: 0 auto; background:rgba(255,255,255,1); box-shadow:-0.133rem 0.093rem 0.133rem 0px rgba(42,6,0,0.05); border-radius:0.133rem; } .evaluation-fz h3{ font-size:0.346rem; font-family:NotoSansHans; font-weight:400; color:rgba(67,67,67,1); position: relative; width: 100%; } .evaluation-fz h3 .date-box{ position: absolute; right: 0; top: 0; padding-left: 0.6rem; background: url(../img/date.png) no-repeat 0 center; background-size: 0.333rem 0.32rem; font-size:0.253rem; font-family:NotoSansHans; font-weight:400; color:rgba(122,122,122,1); } .content{ padding: 0.36rem 0.266rem; /* background: red; */ }
0.306838
0.054676
/* Google Material Icon */ @font-face { font-family: 'Material Icons'; font-style: normal; font-weight: 400; src: local('Material Icons'), local('MaterialIcons-Regular'), url(font/material-design-icons/MaterialIcons-Regular.woff2) format('woff2'); } .material-icons { font-family: 'Material Icons'; font-weight: normal; font-style: normal; font-size: 24px; line-height: 1; letter-spacing: normal; text-transform: none; display: inline-block; white-space: nowrap; word-wrap: normal; direction: ltr; -webkit-font-feature-settings: 'liga'; -webkit-font-smoothing: antialiased; } .container { margin-left: auto; margin-right: auto; /*padding-left: 15px; padding-right: 15px;*/ } body { padding-top: 0px; padding-bottom: 20px; } .body-content { padding-left: 40px; padding-right: 20px; } /* Set padding to keep content from hitting the edges */ @media (min-width: 768px) and (max-width: 991px) { .body-content-index-tweet { padding-left: 0px; padding-right: 0px; line-height: 10px; } } @media (max-width: 767px) { .body-content-index-tweet { padding-left: 0px; padding-right: 0px; line-height: 10px; } } @media (min-width: 768px) and (max-width: 991px) { .body-content-index-tweet { padding-left: 15px; padding-right: 15px; } } @media (min-width: 992px) and (max-width: 1199px) { .body-content-index-tweet { padding-left: 25px; padding-right: 25px; } } @media (min-width: 1200px) { .body-content-index-tweet { padding-left: 130px; padding-right: 130px; } } /* Override the default bootstrap behavior where horizontal description lists will truncate terms that are too long to fit in the left column */ .dl-horizontal dt { white-space: normal; } /* Set width on the form input elements since they're 100% wide by default */ input, select, textarea { max-width: 280px; } #tweets { margin: 0 auto; width: 70%; } .paging { margin: 0 auto; width: 70%; } .tweet-options > li { display: inline; margin: 15px; } .tweet-options { padding-left: 0px; } .tweet-reply { display: flex; } .tweet-reply > li { display: inline; margin: 0px; margin-left: -28px; } .tweet-text { margin-top: 10px; font-size: 20px; font-family: Microsoft YaHei; } .tweet-operation { color: #ffffff; float: right; font-family: Microsoft YaHei; margin-right: 15px; } .reply-text { margin-top: 10px; font-size: 15px; font-family: Microsoft YaHei; } #tweet-author { margin: 5px; font-weight: bold; font-size: 14px; color: #4582ec; font-family: Microsoft YaHei; } #tweet-text-time { color: #4582ec; float: right; } .footer-text { color: #808080; } .panel > .panel-heading { background-color: #ffffff; color: white; } .navbar { background-color: #faffff; margin: 0px auto; padding-right: 24px; padding-left: 24px; } @media screen and (max-width: 860px) { #tweets { width: 95%; } .tweet-options > li { font-size: 12px; margin: 5px; } } .index-section { padding: 0px; padding-top: 40px; } @media (min-width: 768px) and (max-width: 991px) { #NewTweetButton { position: fixed; display: block; right: 0; bottom: 0; margin-right: 20px; margin-bottom: 20px; z-index: 900; } } @media (max-width: 767px) { #NewTweetButton { position: fixed; display: block; right: 0; bottom: 0; margin-right: 28px; margin-bottom: 20px; z-index: 900; } } @media (min-width: 768px) and (max-width: 991px) { #NewTweetButton { position: fixed; display: block; right: 0; bottom: 0; margin-right: 60px; margin-bottom: 60px; z-index: 900; } } @media (min-width: 992px) and (max-width: 1199px) { #NewTweetButton { position: fixed; display: block; right: 0; bottom: 0; margin-right: 60px; margin-bottom: 60px; z-index: 900; } } @media (min-width: 1200px) { #NewTweetButton { position: fixed; display: block; right: 0; bottom: 0; margin-right: 60px; margin-bottom: 60px; z-index: 900; } } #view-source { position: fixed; display: block; right: 0; bottom: 0; margin-right: 40px; margin-bottom: 40px; z-index: 900; } .mdl-demo .mdl-layout__header-row { padding-left: 40px; } .mdl-demo .mdl-layout.is-small-screen .mdl-layout__header-row h3 { font-size: inherit; } .mdl-demo .mdl-layout__tab-bar-button { display: none; } .mdl-demo .mdl-layout.is-small-screen .mdl-layout__tab-bar .mdl-button { display: none; } .mdl-demo .mdl-layout:not(.is-small-screen) .mdl-layout__tab-bar, .mdl-demo .mdl-layout:not(.is-small-screen) .mdl-layout__tab-bar-container { overflow: visible; } .mdl-demo .mdl-layout__tab-bar-container { height: 64px; } .mdl-demo .mdl-layout__tab-bar { padding: 0; padding-left: 16px; box-sizing: border-box; height: 100%; width: 100%; } .mdl-demo .mdl-layout__tab-bar .mdl-layout__tab { height: 64px; line-height: 64px; } .mdl-demo .mdl-layout__tab-bar .mdl-layout__tab.is-active::after { background-color: white; height: 4px; } .mdl-demo main > .mdl-layout__tab-panel { padding: 8px; padding-top: 48px; } .mdl-demo .mdl-card { height: auto; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .mdl-demo .mdl-card > * { height: auto; } @media (min-width: 768px) and (max-width: 991px) { .mdl-demo .mdl-card .mdl-card__supporting-text { margin: 0px; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; padding-right: 0px; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; color: rgb(48, 48, 48); font-size: 18px; line-height: 25px; } } @media (max-width: 767px) { .mdl-demo .mdl-card .mdl-card__supporting-text { margin: 0px; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; padding-right: 0px; padding-top: 13px; padding-bottom: 5px; padding-left: 20px; color: rgb(48, 48, 48); font-size: 18px; line-height: 25px; } } @media (min-width: 768px) and (max-width: 991px) { .mdl-demo .mdl-card .mdl-card__supporting-text { margin: 0px; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; padding-right: 0px; padding-top: 13px; padding-bottom: 13px; padding-left: 20px; color: rgb(48, 48, 48); font-size: 20px; line-height: 25px; } } @media (min-width: 992px) and (max-width: 1199px) { .mdl-demo .mdl-card .mdl-card__supporting-text { margin: 0px; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; padding-right: 0px; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; color: rgb(48, 48, 48); font-size: 20px; line-height: 25px; } } @media (min-width: 1200px) { .mdl-demo .mdl-card .mdl-card__supporting-text { margin: 0px; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; padding-right: 0px; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; color: rgb(48, 48, 48); font-size: 20px; line-height: 25px; } } .mdl-demo.mdl-demo .mdl-card__supporting-text h4 { margin-top: 0; margin-bottom: 20px; } @media (min-width: 768px) and (max-width: 991px) { .mdl-demo .mdl-card__actions { margin: 0; padding: 4px 40px; color: inherit; } } @media (max-width: 767px) { .mdl-demo .mdl-card__actions { margin: 0; padding: 4px 40px; color: inherit; } } @media (min-width: 768px) and (max-width: 991px) { .mdl-demo .mdl-card__actions { margin: 0; padding: 4px 20px; color: inherit; } } @media (min-width: 992px) and (max-width: 1199px) { .mdl-demo .mdl-card__actions { margin: 0; padding: 4px 20px; color: inherit; } } @media (min-width: 1200px) { .mdl-demo .mdl-card__actions { margin: 0; padding: 4px 20px; color: inherit; } } .mdl-demo .mdl-card__actions a { color: #00BCD4; margin: 0; } .mdl-demo .mdl-card__actions a:hover, .mdl-demo .mdl-card__actions a:active { color: inherit; background-color: transparent; } .mdl-demo .mdl-card__supporting-text + .mdl-card__actions { border-top: 1px solid rgba(0, 0, 0, 0.12); } .mdl-demo #add { position: absolute; right: 40px; top: 36px; z-index: 999; } .mdl-demo .mdl-layout__content section:not(:last-of-type) { position: relative; margin-bottom: 48px; } .mdl-demo section.section--center { max-width: 860px; } .mdl-demo #features section.section--center { max-width: 620px; } .mdl-demo section > header { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .mdl-demo section > .section__play-btn { min-height: 200px; } .mdl-demo section > header > .material-icons { font-size: 3rem; } .mdl-demo section > button { position: absolute; z-index: 99; top: 8px; right: 8px; } .mdl-demo section .section__circle { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-flex-grow: 0; -ms-flex-positive: 0; flex-grow: 0; -webkit-flex-shrink: 1; -ms-flex-negative: 1; flex-shrink: 1; } .mdl-demo section .section__text { -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0; padding-top: 8px; } .mdl-demo section .section__text h5 { font-size: inherit; margin: 0; margin-bottom: 0.5em; } .mdl-demo section .section__text a { text-decoration: none; } .mdl-demo section .section__circle-container > .section__circle-container__circle { width: 64px; height: 64px; border-radius: 32px; margin: 8px 0; } .mdl-demo section.section--footer .section__circle--big { width: 100px; height: 100px; border-radius: 50px; margin: 8px 32px; } .mdl-demo .is-small-screen section.section--footer .section__circle--big { width: 50px; height: 50px; border-radius: 25px; margin: 8px 16px; } .mdl-demo section.section--footer { padding: 64px 0; margin: 0 -8px -8px -8px; } .mdl-demo section.section--center .section__text:not(:last-child) { border-bottom: 1px solid rgba(0,0,0,.13); } .mdl-demo .mdl-card .mdl-card__supporting-text > h3:first-child { margin-bottom: 24px; } .mdl-demo .mdl-layout__tab-panel:not(#overview) { background-color: white; } .mdl-demo #features section { margin-bottom: 72px; } .mdl-demo #features h4, #features h5 { margin-bottom: 16px; } .mdl-demo .toc { border-left: 4px solid #C1EEF4; margin: 24px; padding: 0; padding-left: 8px; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .mdl-demo .toc h4 { font-size: 0.9rem; margin-top: 0; } .mdl-demo .toc a { color: #4DD0E1; text-decoration: none; font-size: 16px; line-height: 28px; display: block; } .mdl-demo .mdl-menu__container { z-index: 99; } .demo-card-wide.mdl-card { width: auto; } @media (min-width: 768px) and (max-width: 991px) { .demo-card-wide > .mdl-card__title { color: #4582ec; height: auto; background: whitesmoke; padding: 5px; } } @media (max-width: 767px) { .demo-card-wide > .mdl-card__title { color: #4582ec; height: auto; background: whitesmoke; padding: 5px; padding-left: 15px; } } @media (min-width: 768px) and (max-width: 991px) { .demo-card-wide > .mdl-card__title { color: #4582ec; height: auto; background: whitesmoke; padding: 13px; } } @media (min-width: 992px) and (max-width: 1199px) { .demo-card-wide > .mdl-card__title { color: #4582ec; height: auto; background: whitesmoke; padding: 13px; } } @media (min-width: 1200px) { .demo-card-wide > .mdl-card__title { color: #4582ec; height: auto; background: whitesmoke; padding: 13px; } } .demo-card-wide > .mdl-card__menu { color: #fff; position: absolute; right: 6px; top: 6px; } .reply-list { width: auto; margin-bottom: 0px; padding: 0px; } @media (min-width: 768px) and (max-width: 991px) { .tweet-option-padding { float: right; } } @media (max-width: 767px) { .tweet-option-padding { float: right; } } @media (min-width: 768px) and (max-width: 991px) { .tweet-option-padding { float: left; } } @media (min-width: 992px) and (max-width: 1199px) { .tweet-option-padding { float: left; } } @media (min-width: 1200px) { .tweet-option-padding { float: left; } } @media (min-width: 768px) and (max-width: 991px) { .tweet-title-font { font-size: 30px; } } .awesome-button { border: 0; background: #0087cc; border-radius: 4px; box-shadow: 0 5px 0 #006599; color: #fff; cursor: pointer; font: inherit; margin: 0; outline: 0; padding: 12px 20px; transition: all .1s linear; } .awesome-button:active { box-shadow: 0 2px 0 #006599; transform: translateY(3px); }
QQmgs.App/Content/materizeCss/old/Site.css
/* Google Material Icon */ @font-face { font-family: 'Material Icons'; font-style: normal; font-weight: 400; src: local('Material Icons'), local('MaterialIcons-Regular'), url(font/material-design-icons/MaterialIcons-Regular.woff2) format('woff2'); } .material-icons { font-family: 'Material Icons'; font-weight: normal; font-style: normal; font-size: 24px; line-height: 1; letter-spacing: normal; text-transform: none; display: inline-block; white-space: nowrap; word-wrap: normal; direction: ltr; -webkit-font-feature-settings: 'liga'; -webkit-font-smoothing: antialiased; } .container { margin-left: auto; margin-right: auto; /*padding-left: 15px; padding-right: 15px;*/ } body { padding-top: 0px; padding-bottom: 20px; } .body-content { padding-left: 40px; padding-right: 20px; } /* Set padding to keep content from hitting the edges */ @media (min-width: 768px) and (max-width: 991px) { .body-content-index-tweet { padding-left: 0px; padding-right: 0px; line-height: 10px; } } @media (max-width: 767px) { .body-content-index-tweet { padding-left: 0px; padding-right: 0px; line-height: 10px; } } @media (min-width: 768px) and (max-width: 991px) { .body-content-index-tweet { padding-left: 15px; padding-right: 15px; } } @media (min-width: 992px) and (max-width: 1199px) { .body-content-index-tweet { padding-left: 25px; padding-right: 25px; } } @media (min-width: 1200px) { .body-content-index-tweet { padding-left: 130px; padding-right: 130px; } } /* Override the default bootstrap behavior where horizontal description lists will truncate terms that are too long to fit in the left column */ .dl-horizontal dt { white-space: normal; } /* Set width on the form input elements since they're 100% wide by default */ input, select, textarea { max-width: 280px; } #tweets { margin: 0 auto; width: 70%; } .paging { margin: 0 auto; width: 70%; } .tweet-options > li { display: inline; margin: 15px; } .tweet-options { padding-left: 0px; } .tweet-reply { display: flex; } .tweet-reply > li { display: inline; margin: 0px; margin-left: -28px; } .tweet-text { margin-top: 10px; font-size: 20px; font-family: Microsoft YaHei; } .tweet-operation { color: #ffffff; float: right; font-family: Microsoft YaHei; margin-right: 15px; } .reply-text { margin-top: 10px; font-size: 15px; font-family: Microsoft YaHei; } #tweet-author { margin: 5px; font-weight: bold; font-size: 14px; color: #4582ec; font-family: Microsoft YaHei; } #tweet-text-time { color: #4582ec; float: right; } .footer-text { color: #808080; } .panel > .panel-heading { background-color: #ffffff; color: white; } .navbar { background-color: #faffff; margin: 0px auto; padding-right: 24px; padding-left: 24px; } @media screen and (max-width: 860px) { #tweets { width: 95%; } .tweet-options > li { font-size: 12px; margin: 5px; } } .index-section { padding: 0px; padding-top: 40px; } @media (min-width: 768px) and (max-width: 991px) { #NewTweetButton { position: fixed; display: block; right: 0; bottom: 0; margin-right: 20px; margin-bottom: 20px; z-index: 900; } } @media (max-width: 767px) { #NewTweetButton { position: fixed; display: block; right: 0; bottom: 0; margin-right: 28px; margin-bottom: 20px; z-index: 900; } } @media (min-width: 768px) and (max-width: 991px) { #NewTweetButton { position: fixed; display: block; right: 0; bottom: 0; margin-right: 60px; margin-bottom: 60px; z-index: 900; } } @media (min-width: 992px) and (max-width: 1199px) { #NewTweetButton { position: fixed; display: block; right: 0; bottom: 0; margin-right: 60px; margin-bottom: 60px; z-index: 900; } } @media (min-width: 1200px) { #NewTweetButton { position: fixed; display: block; right: 0; bottom: 0; margin-right: 60px; margin-bottom: 60px; z-index: 900; } } #view-source { position: fixed; display: block; right: 0; bottom: 0; margin-right: 40px; margin-bottom: 40px; z-index: 900; } .mdl-demo .mdl-layout__header-row { padding-left: 40px; } .mdl-demo .mdl-layout.is-small-screen .mdl-layout__header-row h3 { font-size: inherit; } .mdl-demo .mdl-layout__tab-bar-button { display: none; } .mdl-demo .mdl-layout.is-small-screen .mdl-layout__tab-bar .mdl-button { display: none; } .mdl-demo .mdl-layout:not(.is-small-screen) .mdl-layout__tab-bar, .mdl-demo .mdl-layout:not(.is-small-screen) .mdl-layout__tab-bar-container { overflow: visible; } .mdl-demo .mdl-layout__tab-bar-container { height: 64px; } .mdl-demo .mdl-layout__tab-bar { padding: 0; padding-left: 16px; box-sizing: border-box; height: 100%; width: 100%; } .mdl-demo .mdl-layout__tab-bar .mdl-layout__tab { height: 64px; line-height: 64px; } .mdl-demo .mdl-layout__tab-bar .mdl-layout__tab.is-active::after { background-color: white; height: 4px; } .mdl-demo main > .mdl-layout__tab-panel { padding: 8px; padding-top: 48px; } .mdl-demo .mdl-card { height: auto; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .mdl-demo .mdl-card > * { height: auto; } @media (min-width: 768px) and (max-width: 991px) { .mdl-demo .mdl-card .mdl-card__supporting-text { margin: 0px; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; padding-right: 0px; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; color: rgb(48, 48, 48); font-size: 18px; line-height: 25px; } } @media (max-width: 767px) { .mdl-demo .mdl-card .mdl-card__supporting-text { margin: 0px; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; padding-right: 0px; padding-top: 13px; padding-bottom: 5px; padding-left: 20px; color: rgb(48, 48, 48); font-size: 18px; line-height: 25px; } } @media (min-width: 768px) and (max-width: 991px) { .mdl-demo .mdl-card .mdl-card__supporting-text { margin: 0px; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; padding-right: 0px; padding-top: 13px; padding-bottom: 13px; padding-left: 20px; color: rgb(48, 48, 48); font-size: 20px; line-height: 25px; } } @media (min-width: 992px) and (max-width: 1199px) { .mdl-demo .mdl-card .mdl-card__supporting-text { margin: 0px; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; padding-right: 0px; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; color: rgb(48, 48, 48); font-size: 20px; line-height: 25px; } } @media (min-width: 1200px) { .mdl-demo .mdl-card .mdl-card__supporting-text { margin: 0px; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; padding-right: 0px; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; color: rgb(48, 48, 48); font-size: 20px; line-height: 25px; } } .mdl-demo.mdl-demo .mdl-card__supporting-text h4 { margin-top: 0; margin-bottom: 20px; } @media (min-width: 768px) and (max-width: 991px) { .mdl-demo .mdl-card__actions { margin: 0; padding: 4px 40px; color: inherit; } } @media (max-width: 767px) { .mdl-demo .mdl-card__actions { margin: 0; padding: 4px 40px; color: inherit; } } @media (min-width: 768px) and (max-width: 991px) { .mdl-demo .mdl-card__actions { margin: 0; padding: 4px 20px; color: inherit; } } @media (min-width: 992px) and (max-width: 1199px) { .mdl-demo .mdl-card__actions { margin: 0; padding: 4px 20px; color: inherit; } } @media (min-width: 1200px) { .mdl-demo .mdl-card__actions { margin: 0; padding: 4px 20px; color: inherit; } } .mdl-demo .mdl-card__actions a { color: #00BCD4; margin: 0; } .mdl-demo .mdl-card__actions a:hover, .mdl-demo .mdl-card__actions a:active { color: inherit; background-color: transparent; } .mdl-demo .mdl-card__supporting-text + .mdl-card__actions { border-top: 1px solid rgba(0, 0, 0, 0.12); } .mdl-demo #add { position: absolute; right: 40px; top: 36px; z-index: 999; } .mdl-demo .mdl-layout__content section:not(:last-of-type) { position: relative; margin-bottom: 48px; } .mdl-demo section.section--center { max-width: 860px; } .mdl-demo #features section.section--center { max-width: 620px; } .mdl-demo section > header { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .mdl-demo section > .section__play-btn { min-height: 200px; } .mdl-demo section > header > .material-icons { font-size: 3rem; } .mdl-demo section > button { position: absolute; z-index: 99; top: 8px; right: 8px; } .mdl-demo section .section__circle { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-flex-grow: 0; -ms-flex-positive: 0; flex-grow: 0; -webkit-flex-shrink: 1; -ms-flex-negative: 1; flex-shrink: 1; } .mdl-demo section .section__text { -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0; padding-top: 8px; } .mdl-demo section .section__text h5 { font-size: inherit; margin: 0; margin-bottom: 0.5em; } .mdl-demo section .section__text a { text-decoration: none; } .mdl-demo section .section__circle-container > .section__circle-container__circle { width: 64px; height: 64px; border-radius: 32px; margin: 8px 0; } .mdl-demo section.section--footer .section__circle--big { width: 100px; height: 100px; border-radius: 50px; margin: 8px 32px; } .mdl-demo .is-small-screen section.section--footer .section__circle--big { width: 50px; height: 50px; border-radius: 25px; margin: 8px 16px; } .mdl-demo section.section--footer { padding: 64px 0; margin: 0 -8px -8px -8px; } .mdl-demo section.section--center .section__text:not(:last-child) { border-bottom: 1px solid rgba(0,0,0,.13); } .mdl-demo .mdl-card .mdl-card__supporting-text > h3:first-child { margin-bottom: 24px; } .mdl-demo .mdl-layout__tab-panel:not(#overview) { background-color: white; } .mdl-demo #features section { margin-bottom: 72px; } .mdl-demo #features h4, #features h5 { margin-bottom: 16px; } .mdl-demo .toc { border-left: 4px solid #C1EEF4; margin: 24px; padding: 0; padding-left: 8px; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .mdl-demo .toc h4 { font-size: 0.9rem; margin-top: 0; } .mdl-demo .toc a { color: #4DD0E1; text-decoration: none; font-size: 16px; line-height: 28px; display: block; } .mdl-demo .mdl-menu__container { z-index: 99; } .demo-card-wide.mdl-card { width: auto; } @media (min-width: 768px) and (max-width: 991px) { .demo-card-wide > .mdl-card__title { color: #4582ec; height: auto; background: whitesmoke; padding: 5px; } } @media (max-width: 767px) { .demo-card-wide > .mdl-card__title { color: #4582ec; height: auto; background: whitesmoke; padding: 5px; padding-left: 15px; } } @media (min-width: 768px) and (max-width: 991px) { .demo-card-wide > .mdl-card__title { color: #4582ec; height: auto; background: whitesmoke; padding: 13px; } } @media (min-width: 992px) and (max-width: 1199px) { .demo-card-wide > .mdl-card__title { color: #4582ec; height: auto; background: whitesmoke; padding: 13px; } } @media (min-width: 1200px) { .demo-card-wide > .mdl-card__title { color: #4582ec; height: auto; background: whitesmoke; padding: 13px; } } .demo-card-wide > .mdl-card__menu { color: #fff; position: absolute; right: 6px; top: 6px; } .reply-list { width: auto; margin-bottom: 0px; padding: 0px; } @media (min-width: 768px) and (max-width: 991px) { .tweet-option-padding { float: right; } } @media (max-width: 767px) { .tweet-option-padding { float: right; } } @media (min-width: 768px) and (max-width: 991px) { .tweet-option-padding { float: left; } } @media (min-width: 992px) and (max-width: 1199px) { .tweet-option-padding { float: left; } } @media (min-width: 1200px) { .tweet-option-padding { float: left; } } @media (min-width: 768px) and (max-width: 991px) { .tweet-title-font { font-size: 30px; } } .awesome-button { border: 0; background: #0087cc; border-radius: 4px; box-shadow: 0 5px 0 #006599; color: #fff; cursor: pointer; font: inherit; margin: 0; outline: 0; padding: 12px 20px; transition: all .1s linear; } .awesome-button:active { box-shadow: 0 2px 0 #006599; transform: translateY(3px); }
0.36977
0.063279
COLORS ========================================================================== */ :root { --color-accent: rgb(74, 179, 103); --color-accent-light: rgb(93, 187, 118); } /* ========================================================================== SCROLLBAR ========================================================================== */ /* -webkit-scrollbar ========================================================================== */ /* ::-webkit-scrollbar { width: 0.5rem !important; background: transparent !important; } ::-webkit-scrollbar-corner { background: transparent !important; } ::-webkit-scrollbar-thumb { background: var(--color-accent-light) !important; border-radius: 0 !important; } ::-webkit-scrollbar-thumb:hover { background: var(--color-accent) !important; } ::-webkit-scrollbar-thumb:active { background: var(--color-accent) !important; } */ /* ========================================================================== ELEMENTS ========================================================================== */ /* #body ========================================================================== */ body { overflow: hidden !important; } .inner.paper { display: block !important; overflow: auto !important; height: 100% !important; position: absolute !important; } /* #header ========================================================================== */ #header, #mobile-header { box-shadow: none !important; } #header, #mobile-header { position: sticky !important; top: 0 !important; } /* #sink ========================================================================== */ html.darwin #sink, html.darwin #sink > div > div > div:nth-child(1) { background-color: transparent !important; } html.darwin #mainbar { transform: translateX(-1px) !important; } /* :not(.pushfont-*) ========================================================================== */ div:not(.pushfont-circle), div:not(.pushfont-hamburger), div:not(.pushfont-paperclip), div:not(.pushfont-close) { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important; -webkit-font-smoothing: antialiased !important; } /* :focus ========================================================================== */ .minitab:focus, #sidebar div.target.pointer:focus { outline: none !important; }
app/styles/injected/pushbullet-webview.css
COLORS ========================================================================== */ :root { --color-accent: rgb(74, 179, 103); --color-accent-light: rgb(93, 187, 118); } /* ========================================================================== SCROLLBAR ========================================================================== */ /* -webkit-scrollbar ========================================================================== */ /* ::-webkit-scrollbar { width: 0.5rem !important; background: transparent !important; } ::-webkit-scrollbar-corner { background: transparent !important; } ::-webkit-scrollbar-thumb { background: var(--color-accent-light) !important; border-radius: 0 !important; } ::-webkit-scrollbar-thumb:hover { background: var(--color-accent) !important; } ::-webkit-scrollbar-thumb:active { background: var(--color-accent) !important; } */ /* ========================================================================== ELEMENTS ========================================================================== */ /* #body ========================================================================== */ body { overflow: hidden !important; } .inner.paper { display: block !important; overflow: auto !important; height: 100% !important; position: absolute !important; } /* #header ========================================================================== */ #header, #mobile-header { box-shadow: none !important; } #header, #mobile-header { position: sticky !important; top: 0 !important; } /* #sink ========================================================================== */ html.darwin #sink, html.darwin #sink > div > div > div:nth-child(1) { background-color: transparent !important; } html.darwin #mainbar { transform: translateX(-1px) !important; } /* :not(.pushfont-*) ========================================================================== */ div:not(.pushfont-circle), div:not(.pushfont-hamburger), div:not(.pushfont-paperclip), div:not(.pushfont-close) { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important; -webkit-font-smoothing: antialiased !important; } /* :focus ========================================================================== */ .minitab:focus, #sidebar div.target.pointer:focus { outline: none !important; }
0.287868
0.048994
@import url("https://fonts.googleapis.com/css2?family=Metal+Mania&family=Oswald:wght@300;400;600&family=Staatliches&display=swap"); html { margin: 0; background: url("/final/images/background.png") no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-color: black; } body { margin: 0; } main { margin: 0; } h1 { text-transform: uppercase; font-family: "Metal Mania", fantasy; color: white; font-size: 7em; margin: -0.8em 0 0 1em; } h1 span { margin-top: -0.6em; display: block; font-size: 0.63em; color: #d83030; position: relative; z-index: -1; } h2 { font-family: "Metal Mania", fantasy; color: white; font-size: 1.8em; margin: 0.5em 0 0.5em 0; text-align: center; } img.nslogo { display: block; margin: 4em 0 0 4em; width: 21em; z-index: 2; position: relative; } /* p { font-family: "Oswald", sans-serif; color: white; font-size: 1.1em; letter-spacing: 0.02em; margin-top: 1.5em; } */ button, a { appearance: none; -webkit-appearance: none; background-color: #d83030; border-radius: 99em; border: 1px solid #b82020; display: inline-block; cursor: pointer; color: #ffffff; font-family: Arial; padding: 1.2em 2em; text-decoration: none; } a { font-family: "Oswald", sans-serif; font-size: 1.1em; margin: 1.5em auto 0 auto; text-transform: uppercase; font-weight: 600; display: block; width: fit-content; text-align: center; } form[name="travelbuttons"] { margin: -13em 0 0 0; } form[name="travelbuttons"] a { font-family: "Oswald", sans-serif; font-weight: 300; font-size: 1.2em; line-height: 1.1em; text-transform: lowercase; } form[name="travelbuttons"] a:nth-of-type(2) { background-color: #811f1f; border: none; } form[name="travelbuttons"] a:last-of-type { font-weight: bold; font-size: 1.2em; } form[name="travelbuttons"] a span { font-weight: bold; display: inline-flex; vertical-align: middle; align-items: center; font-size: 1.1em; text-transform: uppercase; } form[name="travelbuttons"] a span svg { margin: 0 0.3em; } form[name="travelbuttons"] a span svg:first-of-type { margin: 0 0.3em 0 0; } a:focus, form[name="travelbuttons"] a:nth-of-type(2):focus { background-color: rgb(50, 177, 0); outline: none; } form[name="homework"] { margin-top: -22em; text-align: center; color: white; } label { color: white; margin: 0 0.5em; font-family: "Metal Mania", sans-serif; font-size: 1.8em; line-height: 2.1em; } select { display: inline-block; font-size: 1.4em; font-family: "Oswald", sans-serif; color: white; line-height: 1.3; padding: 0.6em 2em 0.5em 0.8em; max-width: 100%; margin: 0.6em auto; border-radius: 0.5em; -moz-appearance: none; -webkit-appearance: none; appearance: none; border: 1px solid rgb(104, 104, 104); background-color: rgb(49, 49, 49); background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"); background-repeat: no-repeat, repeat; background-position: right 0.7em top 55%, 0 0; background-size: 0.65em auto, 100%; } input[type="time"] { display: inline-block; margin-left: 0.5em; -moz-appearance: none; -webkit-appearance: none; appearance: none; border: 1px solid rgb(104, 104, 104); background-color: rgb(49, 49, 49); font-family: "Oswald", sans-serif; color: white; padding: 0.6em 0.5em 0.6em 1em; border-radius: 0.5em; font-size: 1.2em; transform: translateY(-0.2em); margin-top: 0.7em; } input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(1); } button.switch { transform: rotate(90deg); padding: 1em 0.7em; } button.switch svg { margin-top: 0.3em; } section.hearts { text-align: center; width: 10em; margin-left: 10em; } section.hearts ul { display: flex; padding: 0; list-style-type: none; justify-content: center; } section.hearts ul li { margin: 0 0.5em; transition: all 0.6s ease-out; } section.hearts ul li img { width: 2em; } section.dagtijd div:first-of-type { margin-left: -1em; } section.dagtijd div:last-of-type { margin-left: -7.5em; } p { font-family: "Oswald", sans-serif; color: white; font-size: 1.1em; letter-spacing: 0.02em; margin-top: 1.5em; } section.dead { height: 0%; width: 100%; position: fixed; z-index: 999; top: 0; left: 0; background-color: rgb(0, 0, 0); background-color: rgba(0, 0, 0, 0.85); overflow-y: hidden; transition: 0.3s; display: flex; flex-direction: column; justify-content: center; align-items: center; } #terminal { white-space: pre; display: inline; } @media screen and (max-width: 1100px) { form[name="travelbuttons"] { margin: 3em 0; } form[name="homework"] { margin: 3em 0; } }
final/css/styles.css
@import url("https://fonts.googleapis.com/css2?family=Metal+Mania&family=Oswald:wght@300;400;600&family=Staatliches&display=swap"); html { margin: 0; background: url("/final/images/background.png") no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-color: black; } body { margin: 0; } main { margin: 0; } h1 { text-transform: uppercase; font-family: "Metal Mania", fantasy; color: white; font-size: 7em; margin: -0.8em 0 0 1em; } h1 span { margin-top: -0.6em; display: block; font-size: 0.63em; color: #d83030; position: relative; z-index: -1; } h2 { font-family: "Metal Mania", fantasy; color: white; font-size: 1.8em; margin: 0.5em 0 0.5em 0; text-align: center; } img.nslogo { display: block; margin: 4em 0 0 4em; width: 21em; z-index: 2; position: relative; } /* p { font-family: "Oswald", sans-serif; color: white; font-size: 1.1em; letter-spacing: 0.02em; margin-top: 1.5em; } */ button, a { appearance: none; -webkit-appearance: none; background-color: #d83030; border-radius: 99em; border: 1px solid #b82020; display: inline-block; cursor: pointer; color: #ffffff; font-family: Arial; padding: 1.2em 2em; text-decoration: none; } a { font-family: "Oswald", sans-serif; font-size: 1.1em; margin: 1.5em auto 0 auto; text-transform: uppercase; font-weight: 600; display: block; width: fit-content; text-align: center; } form[name="travelbuttons"] { margin: -13em 0 0 0; } form[name="travelbuttons"] a { font-family: "Oswald", sans-serif; font-weight: 300; font-size: 1.2em; line-height: 1.1em; text-transform: lowercase; } form[name="travelbuttons"] a:nth-of-type(2) { background-color: #811f1f; border: none; } form[name="travelbuttons"] a:last-of-type { font-weight: bold; font-size: 1.2em; } form[name="travelbuttons"] a span { font-weight: bold; display: inline-flex; vertical-align: middle; align-items: center; font-size: 1.1em; text-transform: uppercase; } form[name="travelbuttons"] a span svg { margin: 0 0.3em; } form[name="travelbuttons"] a span svg:first-of-type { margin: 0 0.3em 0 0; } a:focus, form[name="travelbuttons"] a:nth-of-type(2):focus { background-color: rgb(50, 177, 0); outline: none; } form[name="homework"] { margin-top: -22em; text-align: center; color: white; } label { color: white; margin: 0 0.5em; font-family: "Metal Mania", sans-serif; font-size: 1.8em; line-height: 2.1em; } select { display: inline-block; font-size: 1.4em; font-family: "Oswald", sans-serif; color: white; line-height: 1.3; padding: 0.6em 2em 0.5em 0.8em; max-width: 100%; margin: 0.6em auto; border-radius: 0.5em; -moz-appearance: none; -webkit-appearance: none; appearance: none; border: 1px solid rgb(104, 104, 104); background-color: rgb(49, 49, 49); background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"); background-repeat: no-repeat, repeat; background-position: right 0.7em top 55%, 0 0; background-size: 0.65em auto, 100%; } input[type="time"] { display: inline-block; margin-left: 0.5em; -moz-appearance: none; -webkit-appearance: none; appearance: none; border: 1px solid rgb(104, 104, 104); background-color: rgb(49, 49, 49); font-family: "Oswald", sans-serif; color: white; padding: 0.6em 0.5em 0.6em 1em; border-radius: 0.5em; font-size: 1.2em; transform: translateY(-0.2em); margin-top: 0.7em; } input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(1); } button.switch { transform: rotate(90deg); padding: 1em 0.7em; } button.switch svg { margin-top: 0.3em; } section.hearts { text-align: center; width: 10em; margin-left: 10em; } section.hearts ul { display: flex; padding: 0; list-style-type: none; justify-content: center; } section.hearts ul li { margin: 0 0.5em; transition: all 0.6s ease-out; } section.hearts ul li img { width: 2em; } section.dagtijd div:first-of-type { margin-left: -1em; } section.dagtijd div:last-of-type { margin-left: -7.5em; } p { font-family: "Oswald", sans-serif; color: white; font-size: 1.1em; letter-spacing: 0.02em; margin-top: 1.5em; } section.dead { height: 0%; width: 100%; position: fixed; z-index: 999; top: 0; left: 0; background-color: rgb(0, 0, 0); background-color: rgba(0, 0, 0, 0.85); overflow-y: hidden; transition: 0.3s; display: flex; flex-direction: column; justify-content: center; align-items: center; } #terminal { white-space: pre; display: inline; } @media screen and (max-width: 1100px) { form[name="travelbuttons"] { margin: 3em 0; } form[name="homework"] { margin: 3em 0; } }
0.38769
0.109944
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-ExtraBold.eot'); src: url('../fonts/montserrat/Montserrat-ExtraBoldd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-ExtraBold.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-ExtraBold.woff') format('woff'), url('../fonts/montserrat/Montserrat-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-SemiBold.eot'); src: url('../fonts/montserrat/Montserrat-SemiBoldd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-SemiBold.woff') format('woff'), url('../fonts/montserrat/Montserrat-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Medium.eot'); src: url('../fonts/montserrat/Montserrat-Mediumd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-Medium.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-Medium.woff') format('woff'), url('../fonts/montserrat/Montserrat-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Regular.eot'); src: url('../fonts/montserrat/Montserrat-Regulard41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-Regular.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-Regular.woff') format('woff'), url('../fonts/montserrat/Montserrat-Regular.ttf') format('truetype'); font-weight: normal; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-ExtraLight.eot'); src: url('../fonts/montserrat/Montserrat-ExtraLightd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-ExtraLight.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-ExtraLight.woff') format('woff'), url('../fonts/montserrat/Montserrat-ExtraLight.ttf') format('truetype'); font-weight: 200; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Light.eot'); src: url('../fonts/montserrat/Montserrat-Lightd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-Light.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-Light.woff') format('woff'), url('../fonts/montserrat/Montserrat-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Thin.eot'); src: url('../fonts/montserrat/Montserrat-Thind41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-Thin.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-Thin.woff') format('woff'), url('../fonts/montserrat/Montserrat-Thin.ttf') format('truetype'); font-weight: 100; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Black.eot'); src: url('../fonts/montserrat/Montserrat-Blackd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-Black.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-Black.woff') format('woff'), url('../fonts/montserrat/Montserrat-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Bold.eot'); src: url('../fonts/montserrat/Montserrat-Boldd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-Bold.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-Bold.woff') format('woff'), url('../fonts/montserrat/Montserrat-Bold.ttf') format('truetype'); font-weight: bold; font-style: normal; }
public/site/css/montserrat.css
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-ExtraBold.eot'); src: url('../fonts/montserrat/Montserrat-ExtraBoldd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-ExtraBold.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-ExtraBold.woff') format('woff'), url('../fonts/montserrat/Montserrat-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-SemiBold.eot'); src: url('../fonts/montserrat/Montserrat-SemiBoldd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-SemiBold.woff') format('woff'), url('../fonts/montserrat/Montserrat-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Medium.eot'); src: url('../fonts/montserrat/Montserrat-Mediumd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-Medium.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-Medium.woff') format('woff'), url('../fonts/montserrat/Montserrat-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Regular.eot'); src: url('../fonts/montserrat/Montserrat-Regulard41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-Regular.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-Regular.woff') format('woff'), url('../fonts/montserrat/Montserrat-Regular.ttf') format('truetype'); font-weight: normal; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-ExtraLight.eot'); src: url('../fonts/montserrat/Montserrat-ExtraLightd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-ExtraLight.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-ExtraLight.woff') format('woff'), url('../fonts/montserrat/Montserrat-ExtraLight.ttf') format('truetype'); font-weight: 200; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Light.eot'); src: url('../fonts/montserrat/Montserrat-Lightd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-Light.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-Light.woff') format('woff'), url('../fonts/montserrat/Montserrat-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Thin.eot'); src: url('../fonts/montserrat/Montserrat-Thind41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-Thin.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-Thin.woff') format('woff'), url('../fonts/montserrat/Montserrat-Thin.ttf') format('truetype'); font-weight: 100; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Black.eot'); src: url('../fonts/montserrat/Montserrat-Blackd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-Black.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-Black.woff') format('woff'), url('../fonts/montserrat/Montserrat-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Bold.eot'); src: url('../fonts/montserrat/Montserrat-Boldd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat/Montserrat-Bold.woff2') format('woff2'), url('../fonts/montserrat/Montserrat-Bold.woff') format('woff'), url('../fonts/montserrat/Montserrat-Bold.ttf') format('truetype'); font-weight: bold; font-style: normal; }
0.155399
0.04548
========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */ @import url("https://fonts.googleapis.com/css?family=Merriweather:300,400"); html, .main-header .main-search, .main-header__nav { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers. */ body { margin: 0; } /** * Render the `main` element consistently in IE. */ main { display: block; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; margin: 0.67em 0; } /* Grouping content ========================================================================== */ /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /* Text-level semantics ========================================================================== */ /** * Remove the gray background on active links in IE 10. */ a { background-color: transparent; } /** * 1. Remove the bottom border in Chrome 57- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Remove the border on images inside links in IE 10. */ img { border-style: none; } /* Forms ========================================================================== */ /** * 1. Change the font styles in all browsers. * 2. Remove the margin in Firefox and Safari. */ button, input, .select__placeholder, .select__value, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. * 1. Show the overflow in Edge. */ button, input, .select__placeholder, .select__value { /* 1 */ overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * Correct the inability to style clickable types in iOS and Safari. */ button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } /** * Remove the inner border and padding in Firefox. */ button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } /** * Restore the focus styles unset by the previous rule. */ button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Correct the padding in Firefox. */ fieldset { padding: 0.35em 0.75em 0.625em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. */ legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ } /** * Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { vertical-align: baseline; } /** * Remove the default vertical scrollbar in IE 10+. */ textarea { overflow: auto; } /** * 1. Add the correct box sizing in IE 10. * 2. Remove the padding in IE 10. */ [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ } /** * Remove the inner padding in Chrome and Safari on macOS. */ [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /* Interactive ========================================================================== */ /* * Add the correct display in Edge, IE 10+, and Firefox. */ details { display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* Misc ========================================================================== */ /** * Add the correct display in IE 10+. */ template { display: none; } /** * Add the correct display in IE 10. */ [hidden] { display: none; } /* This CSS resource incorporates links to font software which is the valuable copyrighted property of Monotype and/or its suppliers. You may not attempt to copy, install, redistribute, convert, modify or reverse engineer this font software. Please contact Monotype with any questions regarding Web Fonts: http://www.fonts.com */ @font-face { font-family: "Avenir Next"; font-weight: 400; font-style: italic; src: url("./webfonts/avenir-next/1418209/13d5e55c-d5fa-4ad6-b15d-21fb8904fb3d.eot?#iefix"); src: url("./webfonts/avenir-next/1418209/13d5e55c-d5fa-4ad6-b15d-21fb8904fb3d.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1418209/2778e433-066c-4cac-b222-0c9e7a88705b.woff2") format("woff2"), url("./webfonts/avenir-next/1418209/11f1dd36-9ab1-41bd-a729-c270ba1a8b56.woff") format("woff"), url("./webfonts/avenir-next/1418209/79eb46fd-f39d-452d-9877-42856489806b.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 200; font-style: normal; src: url("./webfonts/avenir-next/1437336/b0751211-e805-4138-b7f2-a31031582ce2.eot?#iefix"); src: url("./webfonts/avenir-next/1437336/b0751211-e805-4138-b7f2-a31031582ce2.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437336/178ff15e-1d83-46d6-a191-80d443177813.woff2") format("woff2"), url("./webfonts/avenir-next/1437336/6a091542-e5b3-4c09-ad72-8aed56a6581e.woff") format("woff"), url("./webfonts/avenir-next/1437336/4130ee5f-67da-4bcd-bde2-e97df5e49432.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 200; font-style: italic; src: url("./webfonts/avenir-next/1437346/f89e2b09-b4b9-49f7-b2bd-f3c1132027ae.eot?#iefix"); src: url("./webfonts/avenir-next/1437346/f89e2b09-b4b9-49f7-b2bd-f3c1132027ae.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437346/76fbbcea-1a18-431c-b538-3e25c93115bb.woff2") format("woff2"), url("./webfonts/avenir-next/1437346/2bf2aec1-8e1e-4ffd-838c-1941c424fca6.woff") format("woff"), url("./webfonts/avenir-next/1437346/0f9a3482-d166-4d11-bd70-f9c4de2e81c3.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 300; font-style: italic; src: url("./webfonts/avenir-next/1437366/4f7a596f-ebd3-4878-b9a2-2270979be54e.eot?#iefix"); src: url("./webfonts/avenir-next/1437366/4f7a596f-ebd3-4878-b9a2-2270979be54e.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437366/8722490e-ea06-43dc-8215-3223d7ee0c2a.woff2") format("woff2"), url("./webfonts/avenir-next/1437366/d3d71182-7f4a-4444-ad5f-63148a660fdd.woff") format("woff"), url("./webfonts/avenir-next/1437366/ffc88167-d8d0-4e55-8579-99ce9043bc02.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 100; font-style: normal; src: url("./webfonts/avenir-next/1437416/1c2faa72-b1b1-421e-bc47-43ebd67cc8bd.eot?#iefix"); src: url("./webfonts/avenir-next/1437416/1c2faa72-b1b1-421e-bc47-43ebd67cc8bd.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437416/599179d8-2203-4a9f-b271-010a707271dc.woff2") format("woff2"), url("./webfonts/avenir-next/1437416/3b0370cd-39d6-4a24-9c65-60787db0ebe0.woff") format("woff"), url("./webfonts/avenir-next/1437416/55f63dc4-546d-4886-95bd-d2360a19f485.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 100; font-style: italic; src: url("./webfonts/avenir-next/1437426/6fa076f5-d06c-42d4-8d89-5c6cbcba5e08.eot?#iefix"); src: url("./webfonts/avenir-next/1437426/6fa076f5-d06c-42d4-8d89-5c6cbcba5e08.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437426/d10881b9-2256-404c-89f2-831585768c2f.woff2") format("woff2"), url("./webfonts/avenir-next/1437426/1100ed6a-7048-4688-8ee4-d6d8a958f0f6.woff") format("woff"), url("./webfonts/avenir-next/1437426/5619e9e4-e3c7-47ba-b6b7-36af50869e51.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 800; font-style: normal; src: url("./webfonts/avenir-next/1437456/aa8f537e-7081-4c0e-9236-0f9fcfac4541.eot?#iefix"); src: url("./webfonts/avenir-next/1437456/aa8f537e-7081-4c0e-9236-0f9fcfac4541.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437456/89f00a92-1c94-43f4-9b5d-a9a7d3573805.woff2") format("woff2"), url("./webfonts/avenir-next/1437456/97f8a201-6c8c-4ab9-9427-7dac9cb31534.woff") format("woff"), url("./webfonts/avenir-next/1437456/7e15ebeb-7336-4881-b9fd-14d423ae42d3.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 800; font-style: italic; src: url("./webfonts/avenir-next/1437466/30b26cb3-ecb5-4b15-bea0-7f254d2dca26.eot?#iefix"); src: url("./webfonts/avenir-next/1437466/30b26cb3-ecb5-4b15-bea0-7f254d2dca26.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437466/4846d8fe-58cc-4a97-a866-d20c5a5344b9.woff2") format("woff2"), url("./webfonts/avenir-next/1437466/70d0d6c1-91be-42b2-a798-f0ce873c2dfb.woff") format("woff"), url("./webfonts/avenir-next/1437466/414a2baf-242d-43dc-a989-a1152ee757dd.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 600; font-style: normal; src: url("./webfonts/avenir-next/1437516/47d79f32-82c5-4a74-9646-5150297aabc1.eot?#iefix"); src: url("./webfonts/avenir-next/1437516/47d79f32-82c5-4a74-9646-5150297aabc1.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437516/249228f0-61ac-40cc-a5a5-5609c9816e3f.woff2") format("woff2"), url("./webfonts/avenir-next/1437516/efba18ed-80cc-49c4-997a-fbb140739d19.woff") format("woff"), url("./webfonts/avenir-next/1437516/750a20ec-9242-42a8-b3bd-c4dcec552196.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 600; font-style: italic; src: url("./webfonts/avenir-next/1437526/03906540-90b1-441e-a4c3-bb8ea6d48d92.eot?#iefix"); src: url("./webfonts/avenir-next/1437526/03906540-90b1-441e-a4c3-bb8ea6d48d92.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437526/f9210946-ff05-4e2a-b69b-1ee47c087b48.woff2") format("woff2"), url("./webfonts/avenir-next/1437526/88d0c4db-4ea2-4c9c-ad42-a8e0414a57ee.woff") format("woff"), url("./webfonts/avenir-next/1437526/030bb498-6ed5-4b99-b2d5-a0c03cc387ca.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 500; font-style: italic; src: url("./webfonts/avenir-next/1437546/78602372-a7c1-4831-a684-9c53defb7b8c.eot?#iefix"); src: url("./webfonts/avenir-next/1437546/78602372-a7c1-4831-a684-9c53defb7b8c.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437546/43571193-6de1-4dac-b2a5-e8365cb9dc0e.woff2") format("woff2"), url("./webfonts/avenir-next/1437546/8be8a73f-6804-4351-b8e1-ff88ed20425b.woff") format("woff"), url("./webfonts/avenir-next/1437546/0c7fb132-3d46-49ce-ad27-66d5a5d279c2.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 700; font-style: italic; src: url("./webfonts/avenir-next/1437566/4d86bb3d-6b02-4f17-888f-7cb71771ff9b.eot?#iefix"); src: url("./webfonts/avenir-next/1437566/4d86bb3d-6b02-4f17-888f-7cb71771ff9b.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437566/0511f8d4-c152-4b37-94a3-9723de223de8.woff2") format("woff2"), url("./webfonts/avenir-next/1437566/0ad05680-6397-4845-b42d-0a6564e3f923.woff") format("woff"), url("./webfonts/avenir-next/1437566/00a60fb6-157d-4cea-a057-90dc75a31998.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 700; font-style: normal; src: url("./webfonts/avenir-next/5547488/249629a9-7eeb-4ef1-bd0f-3f464d2257aa.eot?#iefix"); src: url("./webfonts/avenir-next/5547488/249629a9-7eeb-4ef1-bd0f-3f464d2257aa.eot?#iefix") format("eot"), url("./webfonts/avenir-next/5547488/939c22a5-395d-4322-8e10-9a06994a049b.woff2") format("woff2"), url("./webfonts/avenir-next/5547488/6b0c3122-1e0e-489b-976d-489d0f14238f.woff") format("woff"), url("./webfonts/avenir-next/5547488/cf6e881d-28ef-4134-8c85-2dd7c582167f.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 300; font-style: normal; src: url("./webfonts/avenir-next/5547492/cdc20d2f-9fca-45c7-b1fc-8ad9349fdb07.eot?#iefix"); src: url("./webfonts/avenir-next/5547492/cdc20d2f-9fca-45c7-b1fc-8ad9349fdb07.eot?#iefix") format("eot"), url("./webfonts/avenir-next/5547492/99ac204e-9161-4d36-bea4-5c284f13b149.woff2") format("woff2"), url("./webfonts/avenir-next/5547492/939ea1ee-df6f-4b5a-9033-1d0ad0253f4c.woff") format("woff"), url("./webfonts/avenir-next/5547492/842830a4-9140-4e08-9e5e-3ce5cb20823e.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 400; font-style: normal; src: url("./webfonts/avenir-next/5575910/bdbde971-2f8c-423e-9757-a650ed39b89a.eot?#iefix"); src: url("./webfonts/avenir-next/5575910/bdbde971-2f8c-423e-9757-a650ed39b89a.eot?#iefix") format("eot"), url("./webfonts/avenir-next/5575910/667c016c-b9fc-43e9-8f64-c980e005c9c5.woff2") format("woff2"), url("./webfonts/avenir-next/5575910/35148b49-bfae-48a2-b0da-6a7d3ae60569.woff") format("woff"), url("./webfonts/avenir-next/5575910/7fcb1e65-7d41-4bc3-b72d-e3d76bc2d0bb.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 500; font-style: normal; src: url("./webfonts/avenir-next/5609666/e7f2aaac-99c4-4e47-9035-face61b84a5b.eot?#iefix"); src: url("./webfonts/avenir-next/5609666/e7f2aaac-99c4-4e47-9035-face61b84a5b.eot?#iefix") format("eot"), url("./webfonts/avenir-next/5609666/52c2b40c-bc85-42fe-a985-8ec7d94e8f1f.woff2") format("woff2"), url("./webfonts/avenir-next/5609666/2b8458d6-0e51-4a5c-b28e-b141ec37a5d4.woff") format("woff"), url("./webfonts/avenir-next/5609666/7cd6941d-1866-4915-9e90-7a4c0ca27241.ttf") format("truetype"); } html, .main-header .main-search, .main-header__nav { color: #000e25; } ::selection { color: #000e25; background: rgba(0, 14, 37, 0.16); } html, .main-header .main-search, .main-header__nav { font-size: 16px; } * { box-sizing: border-box; } html, .main-header .main-search, .main-header__nav { font-family: "Avenir Next", sans-serif; } .typo, .project__match h1, .hero-home__title > * { font-family: "Avenir Next", sans-serif; } .typo_secondary, h1, h2, h3, .hero-home__title, h4, .hero-home__form h1, .hero-home__form h2, .hero-home__form h3, .hero-home__form .hero-home__title, .hero-home__form h4, .market-enter__title, h5, .user_big .user__name, .sidebar-project__header-title, h6, .modal__header, .main-footer__title, .titling__title, .user__name { font-family: "Merriweather", serif; } html, .main-header .main-search, .main-header__nav { font-weight: 400; letter-spacing: 0.03125rem; } h1, h2, h3, .hero-home__title, h4, .hero-home__form h1, .hero-home__form h2, .hero-home__form h3, .hero-home__form .hero-home__title, .hero-home__form h4, .market-enter__title, h5, .user_big .user__name, .sidebar-project__header-title, h6, .modal__header, .main-footer__title, .titling__title { margin-top: 0; margin-bottom: 2rem; } h1 { font-weight: 300; font-size: 6rem; letter-spacing: -0.09375rem; } h2 { font-weight: 300; font-size: 3.75rem; letter-spacing: -0.03125rem; } h3, .hero-home__title { font-weight: 400; font-size: 3rem; letter-spacing: 0rem; } h4, .hero-home__form h1, .hero-home__form h2, .hero-home__form h3, .hero-home__form .hero-home__title, .hero-home__form h4, .market-enter__title { font-weight: 400; font-size: 2.125rem; letter-spacing: 0.01563rem; } h5, .user_big .user__name, .sidebar-project__header-title { font-weight: 400; font-size: 1.5rem; letter-spacing: 0rem; } h6, .modal__header, .main-footer__title, .titling__title { font-weight: 500; font-size: 1.25rem; letter-spacing: 0.00937rem; } .subtitle, .list_big, .tooltip:after, [data-tooltip]:after, .snack__title, .sidebar-project__header-context, .subtitle-1, .user_big .user__context, .titling__subtitle, [subtitle], [subtitle-1] { font-weight: 400; font-size: 1rem; letter-spacing: 0.00937rem; margin-bottom: 1rem; } .subtitle-2, [subtitle-2] { font-weight: 500; font-size: 0.875rem; letter-spacing: 0.00625rem; margin-bottom: 1rem; } .body, .select__list-item, .autocomplete__list-item, .downloads__title, .message__content, .body-1, [body], [body-1] { font-weight: 400; font-size: 1rem; letter-spacing: 0.03125rem; } .body-2, .snack__infos, .user__plan, .agenda__displayed-month, .next-visit__date, .table-row, [body-2] { font-weight: 400; font-size: 0.875rem; letter-spacing: 0.01563rem; } .button, .main-header__collapse, .visit__action, [button], .hero-project__pictures-item-more { font-weight: 500; font-size: 0.875rem; letter-spacing: 0.04688rem; } .caption, .badge, label, .label, .paginate__result, .calendar__item, [caption] { font-weight: 400; font-size: 0.75rem; letter-spacing: 0.025rem; } .overline, .user__context, .next-visit__context, .message_time .message__content, .table-head, [overline] { text-transform: uppercase; font-weight: 400; font-size: 0.625rem; letter-spacing: 0.09375rem; margin-bottom: 0.5rem; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } textarea { resize: vertical; } /* Usage Examples .my-level-1-heading-class { @include text-crop; // Will use default line height of 1.3 font-size: 48px; margin: 0 0 0 16px; } .my-level-2-heading-class { @include text-crop; // Will use default line height of 1.3 font-size: 32px; // Don't need to change any settings, will work with any font size automatically margin: 0 0 0 16px; } .my-body-copy-class { @include text-crop($line-height: 2); // Larger line height desired, set the line height via the mixin font-size: 16px; } // Sometimes depending on the font-size, the rendering, the browser, etc. you may need to tweak the output. // You can adjust the top and bottom cropping when invoking the component using the $top-adjustment and $bottom-adjustment settings .slight-adjustment-needed { @include text-crop($top-adjustment: -0.5px, $bottom-adjustment: 2px); font-size: 17px; } .dont-do-this { @include text-crop; font-size: 16px; line-height: 3; // DO NOT set line height outside of the mixin, the mixin needs the line height value to calculate the crop correctly } */ /*! * Font Awesome Free 5.0.1 by @fontawesome - http://fontawesome.com * License - http://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) */ .fa, .button [class*="fa-"], .main-header__collapse [class*="fa-"], .visit__action [class*="fa-"], .modal__close, .snack__close, .select__icon, .main-header__collapse, .user__like, .project__like_active, .sidebar-project__header-like_active, .agenda__icon, .send-message__icon, .message__icon, .collapse-list__icon, .table_sortable .table-head__item:after, .table-row__action_settings > *, .paginate__action_start, .paginate__action_prev, .paginate__action_next, .paginate__action_end, .picture__icon_active, .fas, .far, .project__like, .sidebar-project__header-like, .picture__icon, .fal, .fab { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; line-height: 1; } .fa-lg { font-size: 1.33333em; line-height: 0.75em; vertical-align: -.0667em; } .fa-xs { font-size: .75em; } .fa-sm { font-size: .875em; } .fa-1x { font-size: 1em; } .fa-2x { font-size: 2em; } .fa-3x { font-size: 3em; } .fa-4x { font-size: 4em; } .fa-5x { font-size: 5em; } .fa-6x { font-size: 6em; } .fa-7x { font-size: 7em; } .fa-8x { font-size: 8em; } .fa-9x { font-size: 9em; } .fa-10x { font-size: 10em; } .fa-fw { text-align: center; width: 1.25em; } .fa-ul { list-style-type: none; margin-left: 2.5em; padding-left: 0; } .fa-ul > li { position: relative; } .fa-li { left: -2em; position: absolute; text-align: center; width: 2em; line-height: inherit; } .fa-border { border: solid 0.08em #eee; border-radius: .1em; padding: .2em .25em .15em; } .fa-pull-left { float: left; } .fa-pull-right { float: right; } .fa.fa-pull-left, .button .fa-pull-left[class*="fa-"], .main-header__collapse .fa-pull-left[class*="fa-"], .visit__action .fa-pull-left[class*="fa-"], .fa-pull-left.modal__close, .fa-pull-left.snack__close, .fa-pull-left.select__icon, .fa-pull-left.main-header__collapse, .fa-pull-left.user__like, .fa-pull-left.project__like_active, .fa-pull-left.sidebar-project__header-like_active, .fa-pull-left.agenda__icon, .fa-pull-left.send-message__icon, .fa-pull-left.message__icon, .fa-pull-left.collapse-list__icon, .table_sortable .fa-pull-left.table-head__item:after, .table-row__action_settings > .fa-pull-left, .fa-pull-left.paginate__action_start, .fa-pull-left.paginate__action_prev, .fa-pull-left.paginate__action_next, .fa-pull-left.paginate__action_end, .fa-pull-left.picture__icon_active, .fas.fa-pull-left, .far.fa-pull-left, .fa-pull-left.project__like, .fa-pull-left.sidebar-project__header-like, .fa-pull-left.picture__icon, .fal.fa-pull-left, .fab.fa-pull-left { margin-right: .3em; } .fa.fa-pull-right, .button .fa-pull-right[class*="fa-"], .main-header__collapse .fa-pull-right[class*="fa-"], .visit__action .fa-pull-right[class*="fa-"], .fa-pull-right.modal__close, .fa-pull-right.snack__close, .fa-pull-right.select__icon, .fa-pull-right.main-header__collapse, .fa-pull-right.user__like, .fa-pull-right.project__like_active, .fa-pull-right.sidebar-project__header-like_active, .fa-pull-right.agenda__icon, .fa-pull-right.send-message__icon, .fa-pull-right.message__icon, .fa-pull-right.collapse-list__icon, .table_sortable .fa-pull-right.table-head__item:after, .table-row__action_settings > .fa-pull-right, .fa-pull-right.paginate__action_start, .fa-pull-right.paginate__action_prev, .fa-pull-right.paginate__action_next, .fa-pull-right.paginate__action_end, .fa-pull-right.picture__icon_active, .fas.fa-pull-right, .far.fa-pull-right, .fa-pull-right.project__like, .fa-pull-right.sidebar-project__header-like, .fa-pull-right.picture__icon, .fal.fa-pull-right, .fab.fa-pull-right { margin-left: .3em; } .fa-spin { animation: fa-spin 2s infinite linear; } .fa-pulse { animation: fa-spin 1s infinite steps(8); } @keyframes fa-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .fa-rotate-90 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; transform: rotate(90deg); } .fa-rotate-180, .main-header_active .main-header__collapse, .collapse-list__item_active .collapse-list__icon { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; transform: rotate(180deg); } .fa-rotate-270 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; transform: rotate(270deg); } .fa-flip-horizontal { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; transform: scale(-1, 1); } .fa-flip-vertical { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; transform: scale(1, -1); } .fa-flip-horizontal.fa-flip-vertical { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; transform: scale(-1, -1); } :root .fa-rotate-90, :root .fa-rotate-180, :root .main-header_active .main-header__collapse, .main-header_active :root .main-header__collapse, :root .collapse-list__item_active .collapse-list__icon, .collapse-list__item_active :root .collapse-list__icon, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical { filter: none; } .fa-stack { display: inline-block; height: 2em; line-height: 2em; position: relative; vertical-align: middle; width: 2em; } .fa-stack-1x, .fa-stack-2x { left: 0; position: absolute; text-align: center; width: 100%; } .fa-stack-1x { line-height: inherit; } .fa-stack-2x { font-size: 2em; } .fa-inverse { color: #fff; } /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ .fa-500px:before { content: "\f26e"; } .fa-accessible-icon:before { content: "\f368"; } .fa-accusoft:before { content: "\f369"; } .fa-address-book:before { content: "\f2b9"; } .fa-address-card:before { content: "\f2bb"; } .fa-adjust:before { content: "\f042"; } .fa-adn:before { content: "\f170"; } .fa-adversal:before { content: "\f36a"; } .fa-affiliatetheme:before { content: "\f36b"; } .fa-algolia:before { content: "\f36c"; } .fa-align-center:before { content: "\f037"; } .fa-align-justify:before { content: "\f039"; } .fa-align-left:before { content: "\f036"; } .fa-align-right:before { content: "\f038"; } .fa-amazon:before { content: "\f270"; } .fa-ambulance:before { content: "\f0f9"; } .fa-american-sign-language-interpreting:before { content: "\f2a3"; } .fa-amilia:before { content: "\f36d"; } .fa-anchor:before { content: "\f13d"; } .fa-android:before { content: "\f17b"; } .fa-angellist:before { content: "\f209"; } .fa-angle-double-down:before { content: "\f103"; } .fa-angle-double-left:before, .paginate__action_start:before { content: "\f100"; } .fa-angle-double-right:before, .paginate__action_end:before { content: "\f101"; } .fa-angle-double-up:before { content: "\f102"; } .fa-angle-down:before { content: "\f107"; } .fa-angle-left:before, .paginate__action_prev:before { content: "\f104"; } .fa-angle-right:before, .paginate__action_next:before { content: "\f105"; } .fa-angle-up:before { content: "\f106"; } .fa-angrycreative:before { content: "\f36e"; } .fa-angular:before { content: "\f420"; } .fa-app-store:before { content: "\f36f"; } .fa-app-store-ios:before { content: "\f370"; } .fa-apper:before { content: "\f371"; } .fa-apple:before { content: "\f179"; } .fa-apple-pay:before { content: "\f415"; } .fa-archive:before { content: "\f187"; } .fa-arrow-alt-circle-down:before { content: "\f358"; } .fa-arrow-alt-circle-left:before { content: "\f359"; } .fa-arrow-alt-circle-right:before { content: "\f35a"; } .fa-arrow-alt-circle-up:before { content: "\f35b"; } .fa-arrow-circle-down:before { content: "\f0ab"; } .fa-arrow-circle-left:before { content: "\f0a8"; } .fa-arrow-circle-right:before { content: "\f0a9"; } .fa-arrow-circle-up:before { content: "\f0aa"; } .fa-arrow-down:before { content: "\f063"; } .fa-arrow-left:before { content: "\f060"; } .fa-arrow-right:before { content: "\f061"; } .fa-arrow-up:before { content: "\f062"; } .fa-arrows-alt:before { content: "\f0b2"; } .fa-arrows-alt-h:before { content: "\f337"; } .fa-arrows-alt-v:before { content: "\f338"; } .fa-assistive-listening-systems:before { content: "\f2a2"; } .fa-asterisk:before { content: "\f069"; } .fa-asymmetrik:before { content: "\f372"; } .fa-at:before { content: "\f1fa"; } .fa-audible:before { content: "\f373"; } .fa-audio-description:before { content: "\f29e"; } .fa-autoprefixer:before { content: "\f41c"; } .fa-avianex:before { content: "\f374"; } .fa-aviato:before { content: "\f421"; } .fa-aws:before { content: "\f375"; } .fa-backward:before { content: "\f04a"; } .fa-balance-scale:before { content: "\f24e"; } .fa-ban:before { content: "\f05e"; } .fa-bandcamp:before { content: "\f2d5"; } .fa-barcode:before { content: "\f02a"; } .fa-bars:before { content: "\f0c9"; } .fa-bath:before { content: "\f2cd"; } .fa-battery-empty:before { content: "\f244"; } .fa-battery-full:before { content: "\f240"; } .fa-battery-half:before { content: "\f242"; } .fa-battery-quarter:before { content: "\f243"; } .fa-battery-three-quarters:before { content: "\f241"; } .fa-bed:before { content: "\f236"; } .fa-beer:before { content: "\f0fc"; } .fa-behance:before { content: "\f1b4"; } .fa-behance-square:before { content: "\f1b5"; } .fa-bell:before { content: "\f0f3"; } .fa-bell-slash:before { content: "\f1f6"; } .fa-bicycle:before { content: "\f206"; } .fa-bimobject:before { content: "\f378"; } .fa-binoculars:before { content: "\f1e5"; } .fa-birthday-cake:before { content: "\f1fd"; } .fa-bitbucket:before { content: "\f171"; } .fa-bitcoin:before { content: "\f379"; } .fa-bity:before { content: "\f37a"; } .fa-black-tie:before { content: "\f27e"; } .fa-blackberry:before { content: "\f37b"; } .fa-blind:before { content: "\f29d"; } .fa-blogger:before { content: "\f37c"; } .fa-blogger-b:before { content: "\f37d"; } .fa-bluetooth:before { content: "\f293"; } .fa-bluetooth-b:before { content: "\f294"; } .fa-bold:before { content: "\f032"; } .fa-bolt:before { content: "\f0e7"; } .fa-bomb:before { content: "\f1e2"; } .fa-book:before { content: "\f02d"; } .fa-bookmark:before { content: "\f02e"; } .fa-braille:before { content: "\f2a1"; } .fa-briefcase:before { content: "\f0b1"; } .fa-btc:before { content: "\f15a"; } .fa-bug:before { content: "\f188"; } .fa-building:before { content: "\f1ad"; } .fa-bullhorn:before, .message_plan .message__icon:before { content: "\f0a1"; } .fa-bullseye:before { content: "\f140"; } .fa-buromobelexperte:before { content: "\f37f"; } .fa-bus:before { content: "\f207"; } .fa-buysellads:before { content: "\f20d"; } .fa-calculator:before { content: "\f1ec"; } .fa-calendar:before { content: "\f133"; } .fa-calendar-alt:before { content: "\f073"; } .fa-calendar-check:before { content: "\f274"; } .fa-calendar-minus:before { content: "\f272"; } .fa-calendar-plus:before { content: "\f271"; } .fa-calendar-times:before { content: "\f273"; } .fa-camera:before { content: "\f030"; } .fa-camera-retro:before { content: "\f083"; } .fa-car:before { content: "\f1b9"; } .fa-caret-down:before { content: "\f0d7"; } .fa-caret-left:before { content: "\f0d9"; } .fa-caret-right:before { content: "\f0da"; } .fa-caret-square-down:before { content: "\f150"; } .fa-caret-square-left:before { content: "\f191"; } .fa-caret-square-right:before { content: "\f152"; } .fa-caret-square-up:before { content: "\f151"; } .fa-caret-up:before { content: "\f0d8"; } .fa-cart-arrow-down:before { content: "\f218"; } .fa-cart-plus:before { content: "\f217"; } .fa-cc-amex:before { content: "\f1f3"; } .fa-cc-apple-pay:before { content: "\f416"; } .fa-cc-diners-club:before { content: "\f24c"; } .fa-cc-discover:before { content: "\f1f2"; } .fa-cc-jcb:before { content: "\f24b"; } .fa-cc-mastercard:before { content: "\f1f1"; } .fa-cc-paypal:before { content: "\f1f4"; } .fa-cc-stripe:before { content: "\f1f5"; } .fa-cc-visa:before { content: "\f1f0"; } .fa-centercode:before { content: "\f380"; } .fa-certificate:before { content: "\f0a3"; } .fa-chart-area:before { content: "\f1fe"; } .fa-chart-bar:before { content: "\f080"; } .fa-chart-line:before { content: "\f201"; } .fa-chart-pie:before { content: "\f200"; } .fa-check:before { content: "\f00c"; } .fa-check-circle:before { content: "\f058"; } .fa-check-square:before { content: "\f14a"; } .fa-chevron-circle-down:before { content: "\f13a"; } .fa-chevron-circle-left:before { content: "\f137"; } .fa-chevron-circle-right:before { content: "\f138"; } .fa-chevron-circle-up:before { content: "\f139"; } .fa-chevron-down:before, .select__icon:before, .main-header__collapse:before, .collapse-list__icon:before { content: "\f078"; } .fa-chevron-left:before, .agenda__icon_prev:before { content: "\f053"; } .fa-chevron-right:before, .agenda__icon_next:before { content: "\f054"; } .fa-chevron-up:before { content: "\f077"; } .fa-child:before { content: "\f1ae"; } .fa-chrome:before { content: "\f268"; } .fa-circle:before { content: "\f111"; } .fa-circle-notch:before { content: "\f1ce"; } .fa-clipboard:before { content: "\f328"; } .fa-clock:before { content: "\f017"; } .fa-clone:before { content: "\f24d"; } .fa-closed-captioning:before { content: "\f20a"; } .fa-cloud:before { content: "\f0c2"; } .fa-cloud-download-alt:before { content: "\f381"; } .fa-cloud-upload-alt:before { content: "\f382"; } .fa-cloudscale:before { content: "\f383"; } .fa-cloudsmith:before { content: "\f384"; } .fa-cloudversify:before { content: "\f385"; } .fa-code:before { content: "\f121"; } .fa-code-branch:before { content: "\f126"; } .fa-codepen:before { content: "\f1cb"; } .fa-codiepie:before { content: "\f284"; } .fa-coffee:before { content: "\f0f4"; } .fa-cog:before, .table-row__action_settings > :before { content: "\f013"; } .fa-cogs:before { content: "\f085"; } .fa-columns:before { content: "\f0db"; } .fa-comment:before { content: "\f075"; } .fa-comment-alt:before { content: "\f27a"; } .fa-comments:before { content: "\f086"; } .fa-compass:before { content: "\f14e"; } .fa-compress:before { content: "\f066"; } .fa-connectdevelop:before { content: "\f20e"; } .fa-contao:before { content: "\f26d"; } .fa-copy:before { content: "\f0c5"; } .fa-copyright:before { content: "\f1f9"; } .fa-cpanel:before { content: "\f388"; } .fa-creative-commons:before { content: "\f25e"; } .fa-credit-card:before { content: "\f09d"; } .fa-crop:before { content: "\f125"; } .fa-crosshairs:before { content: "\f05b"; } .fa-css3:before { content: "\f13c"; } .fa-css3-alt:before { content: "\f38b"; } .fa-cube:before { content: "\f1b2"; } .fa-cubes:before { content: "\f1b3"; } .fa-cut:before { content: "\f0c4"; } .fa-cuttlefish:before { content: "\f38c"; } .fa-d-and-d:before { content: "\f38d"; } .fa-dashcube:before { content: "\f210"; } .fa-database:before { content: "\f1c0"; } .fa-deaf:before { content: "\f2a4"; } .fa-delicious:before { content: "\f1a5"; } .fa-deploydog:before { content: "\f38e"; } .fa-deskpro:before { content: "\f38f"; } .fa-desktop:before { content: "\f108"; } .fa-deviantart:before { content: "\f1bd"; } .fa-digg:before { content: "\f1a6"; } .fa-digital-ocean:before { content: "\f391"; } .fa-discord:before { content: "\f392"; } .fa-discourse:before { content: "\f393"; } .fa-dochub:before { content: "\f394"; } .fa-docker:before { content: "\f395"; } .fa-dollar-sign:before { content: "\f155"; } .fa-dot-circle:before { content: "\f192"; } .fa-download:before { content: "\f019"; } .fa-draft2digital:before { content: "\f396"; } .fa-dribbble:before { content: "\f17d"; } .fa-dribbble-square:before { content: "\f397"; } .fa-dropbox:before { content: "\f16b"; } .fa-drupal:before { content: "\f1a9"; } .fa-dyalog:before { content: "\f399"; } .fa-earlybirds:before { content: "\f39a"; } .fa-edge:before { content: "\f282"; } .fa-edit:before { content: "\f044"; } .fa-eject:before { content: "\f052"; } .fa-ellipsis-h:before { content: "\f141"; } .fa-ellipsis-v:before { content: "\f142"; } .fa-ember:before { content: "\f423"; } .fa-empire:before { content: "\f1d1"; } .fa-envelope:before { content: "\f0e0"; } .fa-envelope-open:before { content: "\f2b6"; } .fa-envelope-square:before { content: "\f199"; } .fa-envira:before { content: "\f299"; } .fa-eraser:before { content: "\f12d"; } .fa-erlang:before { content: "\f39d"; } .fa-etsy:before { content: "\f2d7"; } .fa-euro-sign:before { content: "\f153"; } .fa-exchange-alt:before { content: "\f362"; } .fa-exclamation:before { content: "\f12a"; } .fa-exclamation-circle:before { content: "\f06a"; } .fa-exclamation-triangle:before { content: "\f071"; } .fa-expand:before { content: "\f065"; } .fa-expand-arrows-alt:before { content: "\f31e"; } .fa-expeditedssl:before { content: "\f23e"; } .fa-external-link-alt:before { content: "\f35d"; } .fa-external-link-square-alt:before { content: "\f360"; } .fa-eye:before { content: "\f06e"; } .fa-eye-dropper:before { content: "\f1fb"; } .fa-eye-slash:before { content: "\f070"; } .fa-facebook:before { content: "\f09a"; } .fa-facebook-f:before { content: "\f39e"; } .fa-facebook-messenger:before { content: "\f39f"; } .fa-facebook-square:before { content: "\f082"; } .fa-fast-backward:before { content: "\f049"; } .fa-fast-forward:before { content: "\f050"; } .fa-fax:before { content: "\f1ac"; } .fa-female:before { content: "\f182"; } .fa-fighter-jet:before { content: "\f0fb"; } .fa-file:before { content: "\f15b"; } .fa-file-alt:before { content: "\f15c"; } .fa-file-archive:before { content: "\f1c6"; } .fa-file-audio:before { content: "\f1c7"; } .fa-file-code:before { content: "\f1c9"; } .fa-file-excel:before { content: "\f1c3"; } .fa-file-image:before { content: "\f1c5"; } .fa-file-pdf:before { content: "\f1c1"; } .fa-file-powerpoint:before { content: "\f1c4"; } .fa-file-video:before { content: "\f1c8"; } .fa-file-word:before { content: "\f1c2"; } .fa-film:before { content: "\f008"; } .fa-filter:before { content: "\f0b0"; } .fa-fire:before { content: "\f06d"; } .fa-fire-extinguisher:before { content: "\f134"; } .fa-firefox:before { content: "\f269"; } .fa-first-order:before { content: "\f2b0"; } .fa-firstdraft:before { content: "\f3a1"; } .fa-flag:before { content: "\f024"; } .fa-flag-checkered:before { content: "\f11e"; } .fa-flask:before { content: "\f0c3"; } .fa-flickr:before { content: "\f16e"; } .fa-fly:before { content: "\f417"; } .fa-folder:before { content: "\f07b"; } .fa-folder-open:before { content: "\f07c"; } .fa-font:before { content: "\f031"; } .fa-font-awesome:before { content: "\f2b4"; } .fa-font-awesome-alt:before { content: "\f35c"; } .fa-font-awesome-flag:before { content: "\f425"; } .fa-fonticons:before { content: "\f280"; } .fa-fonticons-fi:before { content: "\f3a2"; } .fa-fort-awesome:before { content: "\f286"; } .fa-fort-awesome-alt:before { content: "\f3a3"; } .fa-forumbee:before { content: "\f211"; } .fa-forward:before { content: "\f04e"; } .fa-foursquare:before { content: "\f180"; } .fa-free-code-camp:before { content: "\f2c5"; } .fa-freebsd:before { content: "\f3a4"; } .fa-frown:before { content: "\f119"; } .fa-futbol:before { content: "\f1e3"; } .fa-gamepad:before { content: "\f11b"; } .fa-gavel:before { content: "\f0e3"; } .fa-gem:before { content: "\f3a5"; } .fa-genderless:before { content: "\f22d"; } .fa-get-pocket:before { content: "\f265"; } .fa-gg:before { content: "\f260"; } .fa-gg-circle:before { content: "\f261"; } .fa-gift:before { content: "\f06b"; } .fa-git:before { content: "\f1d3"; } .fa-git-square:before { content: "\f1d2"; } .fa-github:before { content: "\f09b"; } .fa-github-alt:before { content: "\f113"; } .fa-github-square:before { content: "\f092"; } .fa-gitkraken:before { content: "\f3a6"; } .fa-gitlab:before { content: "\f296"; } .fa-gitter:before { content: "\f426"; } .fa-glass-martini:before { content: "\f000"; } .fa-glide:before { content: "\f2a5"; } .fa-glide-g:before { content: "\f2a6"; } .fa-globe:before { content: "\f0ac"; } .fa-gofore:before { content: "\f3a7"; } .fa-goodreads:before { content: "\f3a8"; } .fa-goodreads-g:before { content: "\f3a9"; } .fa-google:before { content: "\f1a0"; } .fa-google-drive:before { content: "\f3aa"; } .fa-google-play:before { content: "\f3ab"; } .fa-google-plus:before { content: "\f2b3"; } .fa-google-plus-g:before { content: "\f0d5"; } .fa-google-plus-square:before { content: "\f0d4"; } .fa-google-wallet:before { content: "\f1ee"; } .fa-graduation-cap:before { content: "\f19d"; } .fa-gratipay:before { content: "\f184"; } .fa-grav:before { content: "\f2d6"; } .fa-gripfire:before { content: "\f3ac"; } .fa-grunt:before { content: "\f3ad"; } .fa-gulp:before { content: "\f3ae"; } .fa-h-square:before { content: "\f0fd"; } .fa-hacker-news:before { content: "\f1d4"; } .fa-hacker-news-square:before { content: "\f3af"; } .fa-hand-lizard:before { content: "\f258"; } .fa-hand-paper:before { content: "\f256"; } .fa-hand-peace:before { content: "\f25b"; } .fa-hand-point-down:before { content: "\f0a7"; } .fa-hand-point-left:before { content: "\f0a5"; } .fa-hand-point-right:before { content: "\f0a4"; } .fa-hand-point-up:before { content: "\f0a6"; } .fa-hand-pointer:before { content: "\f25a"; } .fa-hand-rock:before { content: "\f255"; } .fa-hand-scissors:before { content: "\f257"; } .fa-hand-spock:before { content: "\f259"; } .fa-handshake:before { content: "\f2b5"; } .fa-hashtag:before { content: "\f292"; } .fa-hdd:before { content: "\f0a0"; } .fa-heading:before { content: "\f1dc"; } .fa-headphones:before { content: "\f025"; } .fa-heart:before, .user__like:before, .project__like:before, .sidebar-project__header-like:before, .picture__icon_heart:before { content: "\f004"; } .fa-heartbeat:before { content: "\f21e"; } .fa-hire-a-helper:before { content: "\f3b0"; } .fa-history:before { content: "\f1da"; } .fa-home:before { content: "\f015"; } .fa-hooli:before { content: "\f427"; } .fa-hospital:before { content: "\f0f8"; } .fa-hotjar:before { content: "\f3b1"; } .fa-hourglass:before { content: "\f254"; } .fa-hourglass-end:before { content: "\f253"; } .fa-hourglass-half:before { content: "\f252"; } .fa-hourglass-start:before { content: "\f251"; } .fa-houzz:before { content: "\f27c"; } .fa-html5:before { content: "\f13b"; } .fa-hubspot:before { content: "\f3b2"; } .fa-i-cursor:before { content: "\f246"; } .fa-id-badge:before { content: "\f2c1"; } .fa-id-card:before { content: "\f2c2"; } .fa-image:before { content: "\f03e"; } .fa-images:before { content: "\f302"; } .fa-imdb:before { content: "\f2d8"; } .fa-inbox:before { content: "\f01c"; } .fa-indent:before { content: "\f03c"; } .fa-industry:before { content: "\f275"; } .fa-info:before { content: "\f129"; } .fa-info-circle:before { content: "\f05a"; } .fa-instagram:before { content: "\f16d"; } .fa-internet-explorer:before { content: "\f26b"; } .fa-ioxhost:before { content: "\f208"; } .fa-italic:before { content: "\f033"; } .fa-itunes:before { content: "\f3b4"; } .fa-itunes-note:before { content: "\f3b5"; } .fa-jenkins:before { content: "\f3b6"; } .fa-joget:before { content: "\f3b7"; } .fa-joomla:before { content: "\f1aa"; } .fa-js:before { content: "\f3b8"; } .fa-js-square:before { content: "\f3b9"; } .fa-jsfiddle:before { content: "\f1cc"; } .fa-key:before { content: "\f084"; } .fa-keyboard:before { content: "\f11c"; } .fa-keycdn:before { content: "\f3ba"; } .fa-kickstarter:before { content: "\f3bb"; } .fa-kickstarter-k:before { content: "\f3bc"; } .fa-language:before { content: "\f1ab"; } .fa-laptop:before { content: "\f109"; } .fa-laravel:before { content: "\f3bd"; } .fa-lastfm:before { content: "\f202"; } .fa-lastfm-square:before { content: "\f203"; } .fa-leaf:before { content: "\f06c"; } .fa-leanpub:before { content: "\f212"; } .fa-lemon:before { content: "\f094"; } .fa-less:before { content: "\f41d"; } .fa-level-down-alt:before { content: "\f3be"; } .fa-level-up-alt:before { content: "\f3bf"; } .fa-life-ring:before { content: "\f1cd"; } .fa-lightbulb:before { content: "\f0eb"; } .fa-line:before { content: "\f3c0"; } .fa-link:before { content: "\f0c1"; } .fa-linkedin:before { content: "\f08c"; } .fa-linkedin-in:before { content: "\f0e1"; } .fa-linode:before { content: "\f2b8"; } .fa-linux:before { content: "\f17c"; } .fa-lira-sign:before { content: "\f195"; } .fa-list:before { content: "\f03a"; } .fa-list-alt:before { content: "\f022"; } .fa-list-ol:before { content: "\f0cb"; } .fa-list-ul:before { content: "\f0ca"; } .fa-location-arrow:before { content: "\f124"; } .fa-lock:before { content: "\f023"; } .fa-lock-open:before { content: "\f3c1"; } .fa-long-arrow-alt-down:before { content: "\f309"; } .fa-long-arrow-alt-left:before { content: "\f30a"; } .fa-long-arrow-alt-right:before { content: "\f30b"; } .fa-long-arrow-alt-up:before { content: "\f30c"; } .fa-low-vision:before { content: "\f2a8"; } .fa-lyft:before { content: "\f3c3"; } .fa-magento:before { content: "\f3c4"; } .fa-magic:before { content: "\f0d0"; } .fa-magnet:before { content: "\f076"; } .fa-male:before { content: "\f183"; } .fa-map:before { content: "\f279"; } .fa-map-marker:before { content: "\f041"; } .fa-map-marker-alt:before { content: "\f3c5"; } .fa-map-pin:before { content: "\f276"; } .fa-map-signs:before { content: "\f277"; } .fa-mars:before { content: "\f222"; } .fa-mars-double:before { content: "\f227"; } .fa-mars-stroke:before { content: "\f229"; } .fa-mars-stroke-h:before { content: "\f22b"; } .fa-mars-stroke-v:before { content: "\f22a"; } .fa-maxcdn:before { content: "\f136"; } .fa-medapps:before { content: "\f3c6"; } .fa-medium:before { content: "\f23a"; } .fa-medium-m:before { content: "\f3c7"; } .fa-medkit:before { content: "\f0fa"; } .fa-medrt:before { content: "\f3c8"; } .fa-meetup:before { content: "\f2e0"; } .fa-meh:before { content: "\f11a"; } .fa-mercury:before { content: "\f223"; } .fa-microchip:before { content: "\f2db"; } .fa-microphone:before { content: "\f130"; } .fa-microphone-slash:before { content: "\f131"; } .fa-microsoft:before { content: "\f3ca"; } .fa-minus:before { content: "\f068"; } .fa-minus-circle:before { content: "\f056"; } .fa-minus-square:before { content: "\f146"; } .fa-mix:before { content: "\f3cb"; } .fa-mixcloud:before { content: "\f289"; } .fa-mizuni:before { content: "\f3cc"; } .fa-mobile:before { content: "\f10b"; } .fa-mobile-alt:before { content: "\f3cd"; } .fa-modx:before { content: "\f285"; } .fa-monero:before { content: "\f3d0"; } .fa-money-bill-alt:before { content: "\f3d1"; } .fa-moon:before { content: "\f186"; } .fa-motorcycle:before { content: "\f21c"; } .fa-mouse-pointer:before { content: "\f245"; } .fa-music:before { content: "\f001"; } .fa-napster:before { content: "\f3d2"; } .fa-neuter:before { content: "\f22c"; } .fa-newspaper:before { content: "\f1ea"; } .fa-nintendo-switch:before { content: "\f418"; } .fa-node:before { content: "\f419"; } .fa-node-js:before { content: "\f3d3"; } .fa-npm:before { content: "\f3d4"; } .fa-ns8:before { content: "\f3d5"; } .fa-nutritionix:before { content: "\f3d6"; } .fa-object-group:before { content: "\f247"; } .fa-object-ungroup:before { content: "\f248"; } .fa-odnoklassniki:before { content: "\f263"; } .fa-odnoklassniki-square:before { content: "\f264"; } .fa-opencart:before { content: "\f23d"; } .fa-openid:before { content: "\f19b"; } .fa-opera:before { content: "\f26a"; } .fa-optin-monster:before { content: "\f23c"; } .fa-osi:before { content: "\f41a"; } .fa-outdent:before { content: "\f03b"; } .fa-page4:before { content: "\f3d7"; } .fa-pagelines:before { content: "\f18c"; } .fa-paint-brush:before { content: "\f1fc"; } .fa-palfed:before { content: "\f3d8"; } .fa-paper-plane:before, .send-message__icon:before { content: "\f1d8"; } .fa-paperclip:before { content: "\f0c6"; } .fa-paragraph:before { content: "\f1dd"; } .fa-paste:before { content: "\f0ea"; } .fa-patreon:before { content: "\f3d9"; } .fa-pause:before { content: "\f04c"; } .fa-pause-circle:before { content: "\f28b"; } .fa-paw:before { content: "\f1b0"; } .fa-paypal:before { content: "\f1ed"; } .fa-pen-square:before { content: "\f14b"; } .fa-pencil-alt:before { content: "\f303"; } .fa-percent:before { content: "\f295"; } .fa-periscope:before { content: "\f3da"; } .fa-phabricator:before { content: "\f3db"; } .fa-phoenix-framework:before { content: "\f3dc"; } .fa-phone:before { content: "\f095"; } .fa-phone-square:before { content: "\f098"; } .fa-phone-volume:before { content: "\f2a0"; } .fa-pied-piper:before { content: "\f2ae"; } .fa-pied-piper-alt:before { content: "\f1a8"; } .fa-pied-piper-pp:before { content: "\f1a7"; } .fa-pinterest:before { content: "\f0d2"; } .fa-pinterest-p:before { content: "\f231"; } .fa-pinterest-square:before { content: "\f0d3"; } .fa-plane:before { content: "\f072"; } .fa-play:before { content: "\f04b"; } .fa-play-circle:before { content: "\f144"; } .fa-playstation:before { content: "\f3df"; } .fa-plug:before { content: "\f1e6"; } .fa-plus:before { content: "\f067"; } .fa-plus-circle:before { content: "\f055"; } .fa-plus-square:before { content: "\f0fe"; } .fa-podcast:before { content: "\f2ce"; } .fa-pound-sign:before { content: "\f154"; } .fa-power-off:before { content: "\f011"; } .fa-print:before { content: "\f02f"; } .fa-product-hunt:before { content: "\f288"; } .fa-pushed:before { content: "\f3e1"; } .fa-puzzle-piece:before { content: "\f12e"; } .fa-python:before { content: "\f3e2"; } .fa-qq:before { content: "\f1d6"; } .fa-qrcode:before { content: "\f029"; } .fa-question:before { content: "\f128"; } .fa-question-circle:before { content: "\f059"; } .fa-quora:before { content: "\f2c4"; } .fa-quote-left:before { content: "\f10d"; } .fa-quote-right:before { content: "\f10e"; } .fa-random:before { content: "\f074"; } .fa-ravelry:before { content: "\f2d9"; } .fa-react:before { content: "\f41b"; } .fa-rebel:before { content: "\f1d0"; } .fa-recycle:before { content: "\f1b8"; } .fa-red-river:before { content: "\f3e3"; } .fa-reddit:before { content: "\f1a1"; } .fa-reddit-alien:before { content: "\f281"; } .fa-reddit-square:before { content: "\f1a2"; } .fa-redo:before { content: "\f01e"; } .fa-redo-alt:before { content: "\f2f9"; } .fa-registered:before { content: "\f25d"; } .fa-rendact:before { content: "\f3e4"; } .fa-renren:before { content: "\f18b"; } .fa-reply:before { content: "\f3e5"; } .fa-reply-all:before { content: "\f122"; } .fa-replyd:before { content: "\f3e6"; } .fa-resolving:before { content: "\f3e7"; } .fa-retweet:before { content: "\f079"; } .fa-road:before { content: "\f018"; } .fa-rocket:before { content: "\f135"; } .fa-rocketchat:before { content: "\f3e8"; } .fa-rockrms:before { content: "\f3e9"; } .fa-rss:before { content: "\f09e"; } .fa-rss-square:before { content: "\f143"; } .fa-ruble-sign:before { content: "\f158"; } .fa-rupee-sign:before { content: "\f156"; } .fa-safari:before { content: "\f267"; } .fa-sass:before { content: "\f41e"; } .fa-save:before { content: "\f0c7"; } .fa-schlix:before { content: "\f3ea"; } .fa-scribd:before { content: "\f28a"; } .fa-search:before { content: "\f002"; } .fa-search-minus:before { content: "\f010"; } .fa-search-plus:before { content: "\f00e"; } .fa-searchengin:before { content: "\f3eb"; } .fa-sellcast:before { content: "\f2da"; } .fa-sellsy:before { content: "\f213"; } .fa-server:before { content: "\f233"; } .fa-servicestack:before { content: "\f3ec"; } .fa-share:before { content: "\f064"; } .fa-share-alt:before { content: "\f1e0"; } .fa-share-alt-square:before { content: "\f1e1"; } .fa-share-square:before { content: "\f14d"; } .fa-shekel-sign:before { content: "\f20b"; } .fa-shield-alt:before { content: "\f3ed"; } .fa-ship:before { content: "\f21a"; } .fa-shirtsinbulk:before { content: "\f214"; } .fa-shopping-bag:before { content: "\f290"; } .fa-shopping-basket:before { content: "\f291"; } .fa-shopping-cart:before { content: "\f07a"; } .fa-shower:before { content: "\f2cc"; } .fa-sign-in-alt:before { content: "\f2f6"; } .fa-sign-language:before { content: "\f2a7"; } .fa-sign-out-alt:before { content: "\f2f5"; } .fa-signal:before { content: "\f012"; } .fa-simplybuilt:before { content: "\f215"; } .fa-sistrix:before { content: "\f3ee"; } .fa-sitemap:before { content: "\f0e8"; } .fa-skyatlas:before { content: "\f216"; } .fa-skype:before { content: "\f17e"; } .fa-slack:before { content: "\f198"; } .fa-slack-hash:before { content: "\f3ef"; } .fa-sliders-h:before { content: "\f1de"; } .fa-slideshare:before { content: "\f1e7"; } .fa-smile:before { content: "\f118"; } .fa-snapchat:before { content: "\f2ab"; } .fa-snapchat-ghost:before { content: "\f2ac"; } .fa-snapchat-square:before { content: "\f2ad"; } .fa-snowflake:before { content: "\f2dc"; } .fa-sort:before { content: "\f0dc"; } .fa-sort-alpha-down:before { content: "\f15d"; } .fa-sort-alpha-up:before { content: "\f15e"; } .fa-sort-amount-down:before { content: "\f160"; } .fa-sort-amount-up:before { content: "\f161"; } .fa-sort-down:before { content: "\f0dd"; } .fa-sort-numeric-down:before { content: "\f162"; } .fa-sort-numeric-up:before { content: "\f163"; } .fa-sort-up:before { content: "\f0de"; } .fa-soundcloud:before { content: "\f1be"; } .fa-space-shuttle:before { content: "\f197"; } .fa-speakap:before { content: "\f3f3"; } .fa-spinner:before { content: "\f110"; } .fa-spotify:before { content: "\f1bc"; } .fa-square:before { content: "\f0c8"; } .fa-stack-exchange:before { content: "\f18d"; } .fa-stack-overflow:before { content: "\f16c"; } .fa-star:before { content: "\f005"; } .fa-star-half:before { content: "\f089"; } .fa-staylinked:before { content: "\f3f5"; } .fa-steam:before { content: "\f1b6"; } .fa-steam-square:before { content: "\f1b7"; } .fa-steam-symbol:before { content: "\f3f6"; } .fa-step-backward:before { content: "\f048"; } .fa-step-forward:before { content: "\f051"; } .fa-stethoscope:before { content: "\f0f1"; } .fa-sticker-mule:before { content: "\f3f7"; } .fa-sticky-note:before { content: "\f249"; } .fa-stop:before { content: "\f04d"; } .fa-stop-circle:before { content: "\f28d"; } .fa-strava:before { content: "\f428"; } .fa-street-view:before { content: "\f21d"; } .fa-strikethrough:before { content: "\f0cc"; } .fa-stripe:before { content: "\f429"; } .fa-stripe-s:before { content: "\f42a"; } .fa-studiovinari:before { content: "\f3f8"; } .fa-stumbleupon:before { content: "\f1a4"; } .fa-stumbleupon-circle:before { content: "\f1a3"; } .fa-subscript:before { content: "\f12c"; } .fa-subway:before { content: "\f239"; } .fa-suitcase:before { content: "\f0f2"; } .fa-sun:before { content: "\f185"; } .fa-superpowers:before { content: "\f2dd"; } .fa-superscript:before { content: "\f12b"; } .fa-supple:before { content: "\f3f9"; } .fa-sync:before { content: "\f021"; } .fa-sync-alt:before { content: "\f2f1"; } .fa-table:before { content: "\f0ce"; } .fa-tablet:before { content: "\f10a"; } .fa-tablet-alt:before { content: "\f3fa"; } .fa-tachometer-alt:before { content: "\f3fd"; } .fa-tag:before { content: "\f02b"; } .fa-tags:before { content: "\f02c"; } .fa-tasks:before { content: "\f0ae"; } .fa-taxi:before { content: "\f1ba"; } .fa-telegram:before { content: "\f2c6"; } .fa-telegram-plane:before { content: "\f3fe"; } .fa-tencent-weibo:before { content: "\f1d5"; } .fa-terminal:before { content: "\f120"; } .fa-text-height:before { content: "\f034"; } .fa-text-width:before { content: "\f035"; } .fa-th:before { content: "\f00a"; } .fa-th-large:before { content: "\f009"; } .fa-th-list:before { content: "\f00b"; } .fa-themeisle:before { content: "\f2b2"; } .fa-thermometer-empty:before { content: "\f2cb"; } .fa-thermometer-full:before { content: "\f2c7"; } .fa-thermometer-half:before { content: "\f2c9"; } .fa-thermometer-quarter:before { content: "\f2ca"; } .fa-thermometer-three-quarters:before { content: "\f2c8"; } .fa-thumbs-down:before { content: "\f165"; } .fa-thumbs-up:before { content: "\f164"; } .fa-thumbtack:before { content: "\f08d"; } .fa-ticket-alt:before { content: "\f3ff"; } .fa-times:before, .modal__close:before, .snack__close:before { content: "\f00d"; } .fa-times-circle:before { content: "\f057"; } .fa-tint:before { content: "\f043"; } .fa-toggle-off:before { content: "\f204"; } .fa-toggle-on:before { content: "\f205"; } .fa-trademark:before { content: "\f25c"; } .fa-train:before { content: "\f238"; } .fa-transgender:before { content: "\f224"; } .fa-transgender-alt:before { content: "\f225"; } .fa-trash:before { content: "\f1f8"; } .fa-trash-alt:before, .picture__icon_trash:before { content: "\f2ed"; } .fa-tree:before { content: "\f1bb"; } .fa-trello:before { content: "\f181"; } .fa-tripadvisor:before { content: "\f262"; } .fa-trophy:before { content: "\f091"; } .fa-truck:before { content: "\f0d1"; } .fa-tty:before { content: "\f1e4"; } .fa-tumblr:before { content: "\f173"; } .fa-tumblr-square:before { content: "\f174"; } .fa-tv:before { content: "\f26c"; } .fa-twitch:before { content: "\f1e8"; } .fa-twitter:before { content: "\f099"; } .fa-twitter-square:before { content: "\f081"; } .fa-typo3:before { content: "\f42b"; } .fa-uber:before { content: "\f402"; } .fa-uikit:before { content: "\f403"; } .fa-umbrella:before { content: "\f0e9"; } .fa-underline:before { content: "\f0cd"; } .fa-undo:before { content: "\f0e2"; } .fa-undo-alt:before { content: "\f2ea"; } .fa-uniregistry:before { content: "\f404"; } .fa-universal-access:before { content: "\f29a"; } .fa-university:before { content: "\f19c"; } .fa-unlink:before { content: "\f127"; } .fa-unlock:before { content: "\f09c"; } .fa-unlock-alt:before { content: "\f13e"; } .fa-untappd:before { content: "\f405"; } .fa-upload:before { content: "\f093"; } .fa-usb:before { content: "\f287"; } .fa-user:before { content: "\f007"; } .fa-user-circle:before { content: "\f2bd"; } .fa-user-md:before { content: "\f0f0"; } .fa-user-plus:before { content: "\f234"; } .fa-user-secret:before { content: "\f21b"; } .fa-user-times:before { content: "\f235"; } .fa-users:before { content: "\f0c0"; } .fa-ussunnah:before { content: "\f407"; } .fa-utensil-spoon:before { content: "\f2e5"; } .fa-utensils:before { content: "\f2e7"; } .fa-vaadin:before { content: "\f408"; } .fa-venus:before { content: "\f221"; } .fa-venus-double:before { content: "\f226"; } .fa-venus-mars:before { content: "\f228"; } .fa-viacoin:before { content: "\f237"; } .fa-viadeo:before { content: "\f2a9"; } .fa-viadeo-square:before { content: "\f2aa"; } .fa-viber:before { content: "\f409"; } .fa-video:before { content: "\f03d"; } .fa-vimeo:before { content: "\f40a"; } .fa-vimeo-square:before { content: "\f194"; } .fa-vimeo-v:before { content: "\f27d"; } .fa-vine:before { content: "\f1ca"; } .fa-vk:before { content: "\f189"; } .fa-vnv:before { content: "\f40b"; } .fa-volume-down:before { content: "\f027"; } .fa-volume-off:before { content: "\f026"; } .fa-volume-up:before { content: "\f028"; } .fa-vuejs:before { content: "\f41f"; } .fa-weibo:before { content: "\f18a"; } .fa-weixin:before { content: "\f1d7"; } .fa-whatsapp:before { content: "\f232"; } .fa-whatsapp-square:before { content: "\f40c"; } .fa-wheelchair:before { content: "\f193"; } .fa-whmcs:before { content: "\f40d"; } .fa-wifi:before { content: "\f1eb"; } .fa-wikipedia-w:before { content: "\f266"; } .fa-window-close:before { content: "\f410"; } .fa-window-maximize:before { content: "\f2d0"; } .fa-window-minimize:before { content: "\f2d1"; } .fa-window-restore:before { content: "\f2d2"; } .fa-windows:before { content: "\f17a"; } .fa-won-sign:before { content: "\f159"; } .fa-wordpress:before { content: "\f19a"; } .fa-wordpress-simple:before { content: "\f411"; } .fa-wpbeginner:before { content: "\f297"; } .fa-wpexplorer:before { content: "\f2de"; } .fa-wpforms:before { content: "\f298"; } .fa-wrench:before { content: "\f0ad"; } .fa-xbox:before { content: "\f412"; } .fa-xing:before { content: "\f168"; } .fa-xing-square:before { content: "\f169"; } .fa-y-combinator:before { content: "\f23b"; } .fa-yahoo:before { content: "\f19e"; } .fa-yandex:before { content: "\f413"; } .fa-yandex-international:before { content: "\f414"; } .fa-yelp:before { content: "\f1e9"; } .fa-yen-sign:before { content: "\f157"; } .fa-yoast:before { content: "\f2b1"; } .fa-youtube:before { content: "\f167"; } .sr-only { border: 0; clip: rect(0, 0, 0, 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .sr-only-focusable:active, .sr-only-focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } /*! * Font Awesome Free 5.0.1 by @fontawesome - http://fontawesome.com * License - http://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) */ @font-face { font-family: 'Font Awesome 5 Brands'; font-style: normal; font-weight: normal; src: url("./webfonts/font-awesome/fa-brands-400.eot"); src: url("./webfonts/font-awesome/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("./webfonts/font-awesome/fa-brands-400.woff2") format("woff2"), url("./webfonts/font-awesome/fa-brands-400.woff") format("woff"), url("./webfonts/font-awesome/fa-brands-400.ttf") format("truetype"), url("./webfonts/font-awesome/fa-brands-400.svg#fontawesome") format("svg"); } .fab { font-family: 'Font Awesome 5 Brands'; } /*! * Font Awesome Free 5.0.1 by @fontawesome - http://fontawesome.com * License - http://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) */ @font-face { font-family: 'Font Awesome 5 Free'; font-style: normal; font-weight: 400; src: url("./webfonts/font-awesome/fa-regular-400.eot"); src: url("./webfonts/font-awesome/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("./webfonts/font-awesome/fa-regular-400.woff2") format("woff2"), url("./webfonts/font-awesome/fa-regular-400.woff") format("woff"), url("./webfonts/font-awesome/fa-regular-400.ttf") format("truetype"), url("./webfonts/font-awesome/fa-regular-400.svg#fontawesome") format("svg"); } .far, .project__like, .sidebar-project__header-like, .picture__icon { font-family: 'Font Awesome 5 Free'; font-weight: 400; } /*! * Font Awesome Free 5.0.1 by @fontawesome - http://fontawesome.com * License - http://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) */ @font-face { font-family: 'Font Awesome 5 Free'; font-style: normal; font-weight: 900; src: url("./webfonts/font-awesome/fa-solid-900.eot"); src: url("./webfonts/font-awesome/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("./webfonts/font-awesome/fa-solid-900.woff2") format("woff2"), url("./webfonts/font-awesome/fa-solid-900.woff") format("woff"), url("./webfonts/font-awesome/fa-solid-900.ttf") format("truetype"), url("./webfonts/font-awesome/fa-solid-900.svg#fontawesome") format("svg"); } .fa, .button [class*="fa-"], .main-header__collapse [class*="fa-"], .visit__action [class*="fa-"], .modal__close, .snack__close, .select__icon, .main-header__collapse, .user__like, .project__like_active, .sidebar-project__header-like_active, .agenda__icon, .send-message__icon, .message__icon, .collapse-list__icon, .table_sortable .table-head__item:after, .table-row__action_settings > *, .paginate__action_start, .paginate__action_prev, .paginate__action_next, .paginate__action_end, .picture__icon_active, .fas { font-family: 'Font Awesome 5 Free'; font-weight: 900; } a { color: #000e25; font-weight: 500; } .text_left { text-align: left; } .text_center { text-align: center; } .text_right { text-align: right; } .text_justify { text-align: justify; } .display_inline { display: inline; } .display_inline-block { display: inline-block; } .display_inline-flex { display: inline-flex; } .display_block { display: block; } .display_flex { display: flex; } .margin_bottom { margin-bottom: 2rem; } .margin_top { margin-top: 2rem; } .button, .main-header__collapse, .visit__action { min-height: 3rem; padding: calc((3rem - 0.875rem) / 2) calc((3rem - 0.875rem)); min-width: 4rem; line-height: 1; text-align: center; background: #000e25; color: rgba(255, 255, 255, 0.84); outline: none; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); border: none; text-transform: uppercase; border-radius: 0.5rem; margin-bottom: 2rem; position: relative; display: inline-block; cursor: pointer; text-decoration: none; } .button:after, .main-header__collapse:after, .visit__action:after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; right: 0; background: black; opacity: 0; border-radius: 0.5rem; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); } .button:hover, .main-header__collapse:hover, .visit__action:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 14, 37, 0.23); } .button:hover:after, .main-header__collapse:hover:after, .visit__action:hover:after { opacity: 0.12; } .button_width_full { width: 100%; display: block; } .button_color_white, .visit__action { background: white; color: #000e25; } .button_color_white:hover, .visit__action:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); } .button_color_blue, .project__action_secondary, .table_mode_card .table-row__action_edit, .table-row__action_edit { background: #a2c9e9; color: #000e25; } .button_color_blue:hover, .project__action_secondary:hover, .table-row__action_edit:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); } .button_color_red, .table-row__action_delete { background: #bf2336; color: white; } .button_color_red:hover, .table-row__action_delete:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(191, 35, 54, 0.23); } .button_shadow, .button_shadow_1 { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .button_shadow:hover, .button_shadow_1:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } .button_shadow_2 { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); } .button_shadow_2:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); } .button_hollow { min-height: calc(3rem - 4px); padding: calc( (3rem - 0.875rem - 4px) / 2) calc((3rem - 0.875rem - 4px)); min-width: 4rem; border: 2px solid #000e25; background: transparent; color: #000e25; font-weight: 600; } .button_hollow.button_color_red, .button_hollow.table-row__action_delete { border-color: #bf2336; color: #bf2336; } .button_hollow.button_color_white, .button_hollow.visit__action { border-color: white; color: white; } .button_size_big, .project__action { min-height: 4rem; padding: calc((4rem - 0.875rem) / 2) calc((4rem - 0.875rem)); } .button_size_small, .main-header__collapse, .hero-project__share .button, .hero-project__share .main-header__collapse, .hero-project__share .visit__action, .visit__action { min-height: 2.25rem; padding: calc((2.25rem - 0.875rem) / 2) calc((2.25rem - 0.875rem)); } .button_link, .main-header__collapse, .table_mode_card .table-row__action_delete, .table-row__action_edit, .table-row__action_delete, .table-row__action_settings, .visit__action { background: transparent; color: #000e25; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); border: none; font-weight: 600; } .button_link:after, .main-header__collapse:after, .table_mode_card .table-row__action_delete:after, .table-row__action_edit:after, .table-row__action_delete:after, .table-row__action_settings:after, .visit__action:after { content: none; } .button_link:hover, .main-header__collapse:hover, .table-row__action_edit:hover, .table-row__action_delete:hover, .table-row__action_settings:hover, .visit__action:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); border: none; text-decoration: underline; } .button_link.button_color_red, .button_color_red.main-header__collapse, .table_mode_card .table-row__action_delete, .button_color_red.table-row__action_edit, .table-row__action_delete, .button_color_red.table-row__action_settings, .button_color_red.visit__action { color: #bf2336; } .button_link.button_color_white, .button_color_white.main-header__collapse, .button_color_white.table-row__action_edit, .button_color_white.table-row__action_delete, .table-row__action_delete.visit__action, .button_color_white.table-row__action_settings, .visit__action { color: white; } .button:disabled, .main-header__collapse:disabled, .visit__action:disabled { background: #333a45; color: white; opacity: 0.84; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); border: none; cursor: not-allowed; } .button:disabled:after, .main-header__collapse:disabled:after, .visit__action:disabled:after { content: none; } .button:disabled:hover, .main-header__collapse:disabled:hover, .visit__action:disabled:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); border: none; } .button [class*="fa-"], .main-header__collapse [class*="fa-"], .visit__action [class*="fa-"] { margin-left: 0.5rem; line-height: 0; } .max-text { display: block; text-align: center; font-size: 1rem; } .max-text__content { display: inline-block; text-align: left; max-width: 70ch; } .cover, .hero-home__covered, .message_img { position: relative; overflow: hidden; } .cover__img, .hero-home__cover, .message_img .message__content { opacity: 0.24; z-index: 1 !important; position: absolute !important; left: 0; top: 0; bottom: 0; right: 0; height: 100%; width: 100%; object-fit: cover; } .cover > *, .hero-home__covered > *, .message_img > * { position: relative; z-index: 2; } .list, .downloads { margin-bottom: 2rem; } .list_no_style, .downloads { list-style: none; } .list_no_margin, .downloads { margin-top: 0; } .list_no_padding, .downloads { padding: 0; } .list_link a, .list_link button { color: #000e25; font-weight: 500; } .list_big .list__item { padding-bottom: 1rem; } .list_big .list__item:last-child { padding-bottom: 0; } .list__item_valid { color: #23bf44; } .grid { display: inline-grid; width: 100%; grid-gap: 1rem; } .grid_col_1 { grid-template-columns: repeat(1, 1fr); } .grid_col_2 { grid-template-columns: repeat(2, 1fr); } .grid_col_3 { grid-template-columns: repeat(3, 1fr); } .grid_col_4 { grid-template-columns: repeat(4, 1fr); } .grid_col_5 { grid-template-columns: repeat(5, 1fr); } .grid_col_6 { grid-template-columns: repeat(6, 1fr); } .grid_col_7 { grid-template-columns: repeat(7, 1fr); } .grid_col_8 { grid-template-columns: repeat(8, 1fr); } .grid_col_9 { grid-template-columns: repeat(9, 1fr); } .grid_col_10 { grid-template-columns: repeat(10, 1fr); } .grid_col_11 { grid-template-columns: repeat(11, 1fr); } .grid_col_12 { grid-template-columns: repeat(12, 1fr); } .grid_col_13 { grid-template-columns: repeat(13, 1fr); } .grid_col_14 { grid-template-columns: repeat(14, 1fr); } .grid_col_15 { grid-template-columns: repeat(15, 1fr); } .grid_col_16 { grid-template-columns: repeat(16, 1fr); } .grid_col_17 { grid-template-columns: repeat(17, 1fr); } .grid_col_18 { grid-template-columns: repeat(18, 1fr); } .grid_col_19 { grid-template-columns: repeat(19, 1fr); } .grid_col_20 { grid-template-columns: repeat(20, 1fr); } @media (min-width: 600px) { .grid_col-md_1 { grid-template-columns: repeat(1, 1fr); } } @media (min-width: 600px) { .grid_col-md_2 { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 600px) { .grid_col-md_3 { grid-template-columns: repeat(3, 1fr); } } @media (min-width: 600px) { .grid_col-md_4 { grid-template-columns: repeat(4, 1fr); } } @media (min-width: 600px) { .grid_col-md_5 { grid-template-columns: repeat(5, 1fr); } } @media (min-width: 600px) { .grid_col-md_6 { grid-template-columns: repeat(6, 1fr); } } @media (min-width: 600px) { .grid_col-md_7 { grid-template-columns: repeat(7, 1fr); } } @media (min-width: 600px) { .grid_col-md_8 { grid-template-columns: repeat(8, 1fr); } } @media (min-width: 600px) { .grid_col-md_9 { grid-template-columns: repeat(9, 1fr); } } @media (min-width: 600px) { .grid_col-md_10 { grid-template-columns: repeat(10, 1fr); } } @media (min-width: 600px) { .grid_col-md_11 { grid-template-columns: repeat(11, 1fr); } } @media (min-width: 600px) { .grid_col-md_12 { grid-template-columns: repeat(12, 1fr); } } @media (min-width: 600px) { .grid_col-md_13 { grid-template-columns: repeat(13, 1fr); } } @media (min-width: 600px) { .grid_col-md_14 { grid-template-columns: repeat(14, 1fr); } } @media (min-width: 600px) { .grid_col-md_15 { grid-template-columns: repeat(15, 1fr); } } @media (min-width: 600px) { .grid_col-md_16 { grid-template-columns: repeat(16, 1fr); } } @media (min-width: 600px) { .grid_col-md_17 { grid-template-columns: repeat(17, 1fr); } } @media (min-width: 600px) { .grid_col-md_18 { grid-template-columns: repeat(18, 1fr); } } @media (min-width: 600px) { .grid_col-md_19 { grid-template-columns: repeat(19, 1fr); } } @media (min-width: 600px) { .grid_col-md_20 { grid-template-columns: repeat(20, 1fr); } } @media (min-width: 900px) { .grid_col-lg_1 { grid-template-columns: repeat(1, 1fr); } } @media (min-width: 900px) { .grid_col-lg_2 { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 900px) { .grid_col-lg_3 { grid-template-columns: repeat(3, 1fr); } } @media (min-width: 900px) { .grid_col-lg_4 { grid-template-columns: repeat(4, 1fr); } } @media (min-width: 900px) { .grid_col-lg_5 { grid-template-columns: repeat(5, 1fr); } } @media (min-width: 900px) { .grid_col-lg_6 { grid-template-columns: repeat(6, 1fr); } } @media (min-width: 900px) { .grid_col-lg_7 { grid-template-columns: repeat(7, 1fr); } } @media (min-width: 900px) { .grid_col-lg_8 { grid-template-columns: repeat(8, 1fr); } } @media (min-width: 900px) { .grid_col-lg_9 { grid-template-columns: repeat(9, 1fr); } } @media (min-width: 900px) { .grid_col-lg_10 { grid-template-columns: repeat(10, 1fr); } } @media (min-width: 900px) { .grid_col-lg_11 { grid-template-columns: repeat(11, 1fr); } } @media (min-width: 900px) { .grid_col-lg_12 { grid-template-columns: repeat(12, 1fr); } } @media (min-width: 900px) { .grid_col-lg_13 { grid-template-columns: repeat(13, 1fr); } } @media (min-width: 900px) { .grid_col-lg_14 { grid-template-columns: repeat(14, 1fr); } } @media (min-width: 900px) { .grid_col-lg_15 { grid-template-columns: repeat(15, 1fr); } } @media (min-width: 900px) { .grid_col-lg_16 { grid-template-columns: repeat(16, 1fr); } } @media (min-width: 900px) { .grid_col-lg_17 { grid-template-columns: repeat(17, 1fr); } } @media (min-width: 900px) { .grid_col-lg_18 { grid-template-columns: repeat(18, 1fr); } } @media (min-width: 900px) { .grid_col-lg_19 { grid-template-columns: repeat(19, 1fr); } } @media (min-width: 900px) { .grid_col-lg_20 { grid-template-columns: repeat(20, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_1 { grid-template-columns: repeat(1, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_2 { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_3 { grid-template-columns: repeat(3, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_4 { grid-template-columns: repeat(4, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_5 { grid-template-columns: repeat(5, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_6 { grid-template-columns: repeat(6, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_7 { grid-template-columns: repeat(7, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_8 { grid-template-columns: repeat(8, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_9 { grid-template-columns: repeat(9, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_10 { grid-template-columns: repeat(10, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_11 { grid-template-columns: repeat(11, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_12 { grid-template-columns: repeat(12, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_13 { grid-template-columns: repeat(13, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_14 { grid-template-columns: repeat(14, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_15 { grid-template-columns: repeat(15, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_16 { grid-template-columns: repeat(16, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_17 { grid-template-columns: repeat(17, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_18 { grid-template-columns: repeat(18, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_19 { grid-template-columns: repeat(19, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_20 { grid-template-columns: repeat(20, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_1 { grid-template-columns: repeat(1, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_2 { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_3 { grid-template-columns: repeat(3, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_4 { grid-template-columns: repeat(4, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_5 { grid-template-columns: repeat(5, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_6 { grid-template-columns: repeat(6, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_7 { grid-template-columns: repeat(7, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_8 { grid-template-columns: repeat(8, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_9 { grid-template-columns: repeat(9, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_10 { grid-template-columns: repeat(10, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_11 { grid-template-columns: repeat(11, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_12 { grid-template-columns: repeat(12, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_13 { grid-template-columns: repeat(13, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_14 { grid-template-columns: repeat(14, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_15 { grid-template-columns: repeat(15, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_16 { grid-template-columns: repeat(16, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_17 { grid-template-columns: repeat(17, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_18 { grid-template-columns: repeat(18, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_19 { grid-template-columns: repeat(19, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_20 { grid-template-columns: repeat(20, 1fr); } } @media (max-width: 599px) { .grid_col-sm_1 { grid-template-columns: repeat(1, 1fr); } } @media (max-width: 599px) { .grid_col-sm_2 { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 599px) { .grid_col-sm_3 { grid-template-columns: repeat(3, 1fr); } } @media (max-width: 599px) { .grid_col-sm_4 { grid-template-columns: repeat(4, 1fr); } } @media (max-width: 599px) { .grid_col-sm_5 { grid-template-columns: repeat(5, 1fr); } } @media (max-width: 599px) { .grid_col-sm_6 { grid-template-columns: repeat(6, 1fr); } } @media (max-width: 599px) { .grid_col-sm_7 { grid-template-columns: repeat(7, 1fr); } } @media (max-width: 599px) { .grid_col-sm_8 { grid-template-columns: repeat(8, 1fr); } } @media (max-width: 599px) { .grid_col-sm_9 { grid-template-columns: repeat(9, 1fr); } } @media (max-width: 599px) { .grid_col-sm_10 { grid-template-columns: repeat(10, 1fr); } } @media (max-width: 599px) { .grid_col-sm_11 { grid-template-columns: repeat(11, 1fr); } } @media (max-width: 599px) { .grid_col-sm_12 { grid-template-columns: repeat(12, 1fr); } } @media (max-width: 599px) { .grid_col-sm_13 { grid-template-columns: repeat(13, 1fr); } } @media (max-width: 599px) { .grid_col-sm_14 { grid-template-columns: repeat(14, 1fr); } } @media (max-width: 599px) { .grid_col-sm_15 { grid-template-columns: repeat(15, 1fr); } } @media (max-width: 599px) { .grid_col-sm_16 { grid-template-columns: repeat(16, 1fr); } } @media (max-width: 599px) { .grid_col-sm_17 { grid-template-columns: repeat(17, 1fr); } } @media (max-width: 599px) { .grid_col-sm_18 { grid-template-columns: repeat(18, 1fr); } } @media (max-width: 599px) { .grid_col-sm_19 { grid-template-columns: repeat(19, 1fr); } } @media (max-width: 599px) { .grid_col-sm_20 { grid-template-columns: repeat(20, 1fr); } } .grid_inline { display: inline-grid; } .grid__child_row_1 { grid-row: auto/span 1; } .grid__child_row_2 { grid-row: auto/span 2; } .grid__child_row_3 { grid-row: auto/span 3; } .grid__child_row_4 { grid-row: auto/span 4; } .grid__child_row_5 { grid-row: auto/span 5; } .grid__child_row_6 { grid-row: auto/span 6; } .grid__child_row_7 { grid-row: auto/span 7; } .grid__child_row_8 { grid-row: auto/span 8; } .grid__child_row_9 { grid-row: auto/span 9; } .grid__child_row_10 { grid-row: auto/span 10; } .grid__child_row_11 { grid-row: auto/span 11; } .grid__child_row_12 { grid-row: auto/span 12; } .grid__child_row_13 { grid-row: auto/span 13; } .grid__child_row_14 { grid-row: auto/span 14; } .grid__child_row_15 { grid-row: auto/span 15; } .grid__child_row_16 { grid-row: auto/span 16; } .grid__child_row_17 { grid-row: auto/span 17; } .grid__child_row_18 { grid-row: auto/span 18; } .grid__child_row_19 { grid-row: auto/span 19; } .grid__child_row_20 { grid-row: auto/span 20; } @media (min-width: 600px) { .grid__child_row-md_1 { grid-row: auto/span 1; } } @media (min-width: 600px) { .grid__child_row-md_2 { grid-row: auto/span 2; } } @media (min-width: 600px) { .grid__child_row-md_3 { grid-row: auto/span 3; } } @media (min-width: 600px) { .grid__child_row-md_4 { grid-row: auto/span 4; } } @media (min-width: 600px) { .grid__child_row-md_5 { grid-row: auto/span 5; } } @media (min-width: 600px) { .grid__child_row-md_6 { grid-row: auto/span 6; } } @media (min-width: 600px) { .grid__child_row-md_7 { grid-row: auto/span 7; } } @media (min-width: 600px) { .grid__child_row-md_8 { grid-row: auto/span 8; } } @media (min-width: 600px) { .grid__child_row-md_9 { grid-row: auto/span 9; } } @media (min-width: 600px) { .grid__child_row-md_10 { grid-row: auto/span 10; } } @media (min-width: 600px) { .grid__child_row-md_11 { grid-row: auto/span 11; } } @media (min-width: 600px) { .grid__child_row-md_12 { grid-row: auto/span 12; } } @media (min-width: 600px) { .grid__child_row-md_13 { grid-row: auto/span 13; } } @media (min-width: 600px) { .grid__child_row-md_14 { grid-row: auto/span 14; } } @media (min-width: 600px) { .grid__child_row-md_15 { grid-row: auto/span 15; } } @media (min-width: 600px) { .grid__child_row-md_16 { grid-row: auto/span 16; } } @media (min-width: 600px) { .grid__child_row-md_17 { grid-row: auto/span 17; } } @media (min-width: 600px) { .grid__child_row-md_18 { grid-row: auto/span 18; } } @media (min-width: 600px) { .grid__child_row-md_19 { grid-row: auto/span 19; } } @media (min-width: 600px) { .grid__child_row-md_20 { grid-row: auto/span 20; } } @media (min-width: 900px) { .grid__child_row-lg_1 { grid-row: auto/span 1; } } @media (min-width: 900px) { .grid__child_row-lg_2 { grid-row: auto/span 2; } } @media (min-width: 900px) { .grid__child_row-lg_3 { grid-row: auto/span 3; } } @media (min-width: 900px) { .grid__child_row-lg_4 { grid-row: auto/span 4; } } @media (min-width: 900px) { .grid__child_row-lg_5 { grid-row: auto/span 5; } } @media (min-width: 900px) { .grid__child_row-lg_6 { grid-row: auto/span 6; } } @media (min-width: 900px) { .grid__child_row-lg_7 { grid-row: auto/span 7; } } @media (min-width: 900px) { .grid__child_row-lg_8 { grid-row: auto/span 8; } } @media (min-width: 900px) { .grid__child_row-lg_9 { grid-row: auto/span 9; } } @media (min-width: 900px) { .grid__child_row-lg_10 { grid-row: auto/span 10; } } @media (min-width: 900px) { .grid__child_row-lg_11 { grid-row: auto/span 11; } } @media (min-width: 900px) { .grid__child_row-lg_12 { grid-row: auto/span 12; } } @media (min-width: 900px) { .grid__child_row-lg_13 { grid-row: auto/span 13; } } @media (min-width: 900px) { .grid__child_row-lg_14 { grid-row: auto/span 14; } } @media (min-width: 900px) { .grid__child_row-lg_15 { grid-row: auto/span 15; } } @media (min-width: 900px) { .grid__child_row-lg_16 { grid-row: auto/span 16; } } @media (min-width: 900px) { .grid__child_row-lg_17 { grid-row: auto/span 17; } } @media (min-width: 900px) { .grid__child_row-lg_18 { grid-row: auto/span 18; } } @media (min-width: 900px) { .grid__child_row-lg_19 { grid-row: auto/span 19; } } @media (min-width: 900px) { .grid__child_row-lg_20 { grid-row: auto/span 20; } } @media (min-width: 1200px) { .grid__child_row-xl_1 { grid-row: auto/span 1; } } @media (min-width: 1200px) { .grid__child_row-xl_2 { grid-row: auto/span 2; } } @media (min-width: 1200px) { .grid__child_row-xl_3 { grid-row: auto/span 3; } } @media (min-width: 1200px) { .grid__child_row-xl_4 { grid-row: auto/span 4; } } @media (min-width: 1200px) { .grid__child_row-xl_5 { grid-row: auto/span 5; } } @media (min-width: 1200px) { .grid__child_row-xl_6 { grid-row: auto/span 6; } } @media (min-width: 1200px) { .grid__child_row-xl_7 { grid-row: auto/span 7; } } @media (min-width: 1200px) { .grid__child_row-xl_8 { grid-row: auto/span 8; } } @media (min-width: 1200px) { .grid__child_row-xl_9 { grid-row: auto/span 9; } } @media (min-width: 1200px) { .grid__child_row-xl_10 { grid-row: auto/span 10; } } @media (min-width: 1200px) { .grid__child_row-xl_11 { grid-row: auto/span 11; } } @media (min-width: 1200px) { .grid__child_row-xl_12 { grid-row: auto/span 12; } } @media (min-width: 1200px) { .grid__child_row-xl_13 { grid-row: auto/span 13; } } @media (min-width: 1200px) { .grid__child_row-xl_14 { grid-row: auto/span 14; } } @media (min-width: 1200px) { .grid__child_row-xl_15 { grid-row: auto/span 15; } } @media (min-width: 1200px) { .grid__child_row-xl_16 { grid-row: auto/span 16; } } @media (min-width: 1200px) { .grid__child_row-xl_17 { grid-row: auto/span 17; } } @media (min-width: 1200px) { .grid__child_row-xl_18 { grid-row: auto/span 18; } } @media (min-width: 1200px) { .grid__child_row-xl_19 { grid-row: auto/span 19; } } @media (min-width: 1200px) { .grid__child_row-xl_20 { grid-row: auto/span 20; } } @media (min-width: 1800px) { .grid__child_row-xxl_1 { grid-row: auto/span 1; } } @media (min-width: 1800px) { .grid__child_row-xxl_2 { grid-row: auto/span 2; } } @media (min-width: 1800px) { .grid__child_row-xxl_3 { grid-row: auto/span 3; } } @media (min-width: 1800px) { .grid__child_row-xxl_4 { grid-row: auto/span 4; } } @media (min-width: 1800px) { .grid__child_row-xxl_5 { grid-row: auto/span 5; } } @media (min-width: 1800px) { .grid__child_row-xxl_6 { grid-row: auto/span 6; } } @media (min-width: 1800px) { .grid__child_row-xxl_7 { grid-row: auto/span 7; } } @media (min-width: 1800px) { .grid__child_row-xxl_8 { grid-row: auto/span 8; } } @media (min-width: 1800px) { .grid__child_row-xxl_9 { grid-row: auto/span 9; } } @media (min-width: 1800px) { .grid__child_row-xxl_10 { grid-row: auto/span 10; } } @media (min-width: 1800px) { .grid__child_row-xxl_11 { grid-row: auto/span 11; } } @media (min-width: 1800px) { .grid__child_row-xxl_12 { grid-row: auto/span 12; } } @media (min-width: 1800px) { .grid__child_row-xxl_13 { grid-row: auto/span 13; } } @media (min-width: 1800px) { .grid__child_row-xxl_14 { grid-row: auto/span 14; } } @media (min-width: 1800px) { .grid__child_row-xxl_15 { grid-row: auto/span 15; } } @media (min-width: 1800px) { .grid__child_row-xxl_16 { grid-row: auto/span 16; } } @media (min-width: 1800px) { .grid__child_row-xxl_17 { grid-row: auto/span 17; } } @media (min-width: 1800px) { .grid__child_row-xxl_18 { grid-row: auto/span 18; } } @media (min-width: 1800px) { .grid__child_row-xxl_19 { grid-row: auto/span 19; } } @media (min-width: 1800px) { .grid__child_row-xxl_20 { grid-row: auto/span 20; } } @media (max-width: 599px) { .grid__child_row-sm_1 { grid-row: auto/span 1; } } @media (max-width: 599px) { .grid__child_row-sm_2 { grid-row: auto/span 2; } } @media (max-width: 599px) { .grid__child_row-sm_3 { grid-row: auto/span 3; } } @media (max-width: 599px) { .grid__child_row-sm_4 { grid-row: auto/span 4; } } @media (max-width: 599px) { .grid__child_row-sm_5 { grid-row: auto/span 5; } } @media (max-width: 599px) { .grid__child_row-sm_6 { grid-row: auto/span 6; } } @media (max-width: 599px) { .grid__child_row-sm_7 { grid-row: auto/span 7; } } @media (max-width: 599px) { .grid__child_row-sm_8 { grid-row: auto/span 8; } } @media (max-width: 599px) { .grid__child_row-sm_9 { grid-row: auto/span 9; } } @media (max-width: 599px) { .grid__child_row-sm_10 { grid-row: auto/span 10; } } @media (max-width: 599px) { .grid__child_row-sm_11 { grid-row: auto/span 11; } } @media (max-width: 599px) { .grid__child_row-sm_12 { grid-row: auto/span 12; } } @media (max-width: 599px) { .grid__child_row-sm_13 { grid-row: auto/span 13; } } @media (max-width: 599px) { .grid__child_row-sm_14 { grid-row: auto/span 14; } } @media (max-width: 599px) { .grid__child_row-sm_15 { grid-row: auto/span 15; } } @media (max-width: 599px) { .grid__child_row-sm_16 { grid-row: auto/span 16; } } @media (max-width: 599px) { .grid__child_row-sm_17 { grid-row: auto/span 17; } } @media (max-width: 599px) { .grid__child_row-sm_18 { grid-row: auto/span 18; } } @media (max-width: 599px) { .grid__child_row-sm_19 { grid-row: auto/span 19; } } @media (max-width: 599px) { .grid__child_row-sm_20 { grid-row: auto/span 20; } } .grid__child_col_1 { grid-column: auto/span 1; } .grid__child_col_2 { grid-column: auto/span 2; } .grid__child_col_3 { grid-column: auto/span 3; } .grid__child_col_4 { grid-column: auto/span 4; } .grid__child_col_5, .newsletter__title, .newsletter__input, .newsletter__button { grid-column: auto/span 5; } .grid__child_col_6 { grid-column: auto/span 6; } .grid__child_col_7 { grid-column: auto/span 7; } .grid__child_col_8 { grid-column: auto/span 8; } .grid__child_col_9 { grid-column: auto/span 9; } .grid__child_col_10 { grid-column: auto/span 10; } .grid__child_col_11 { grid-column: auto/span 11; } .grid__child_col_12 { grid-column: auto/span 12; } .grid__child_col_13 { grid-column: auto/span 13; } .grid__child_col_14 { grid-column: auto/span 14; } .grid__child_col_15 { grid-column: auto/span 15; } .grid__child_col_16 { grid-column: auto/span 16; } .grid__child_col_17 { grid-column: auto/span 17; } .grid__child_col_18 { grid-column: auto/span 18; } .grid__child_col_19 { grid-column: auto/span 19; } .grid__child_col_20 { grid-column: auto/span 20; } @media (min-width: 600px) { .grid__child_col-md_1 { grid-column: auto/span 1; } } @media (min-width: 600px) { .grid__child_col-md_2, .newsletter__button { grid-column: auto/span 2; } } @media (min-width: 600px) { .grid__child_col-md_3, .newsletter__input { grid-column: auto/span 3; } } @media (min-width: 600px) { .grid__child_col-md_4 { grid-column: auto/span 4; } } @media (min-width: 600px) { .grid__child_col-md_5 { grid-column: auto/span 5; } } @media (min-width: 600px) { .grid__child_col-md_6 { grid-column: auto/span 6; } } @media (min-width: 600px) { .grid__child_col-md_7 { grid-column: auto/span 7; } } @media (min-width: 600px) { .grid__child_col-md_8 { grid-column: auto/span 8; } } @media (min-width: 600px) { .grid__child_col-md_9 { grid-column: auto/span 9; } } @media (min-width: 600px) { .grid__child_col-md_10 { grid-column: auto/span 10; } } @media (min-width: 600px) { .grid__child_col-md_11 { grid-column: auto/span 11; } } @media (min-width: 600px) { .grid__child_col-md_12 { grid-column: auto/span 12; } } @media (min-width: 600px) { .grid__child_col-md_13 { grid-column: auto/span 13; } } @media (min-width: 600px) { .grid__child_col-md_14 { grid-column: auto/span 14; } } @media (min-width: 600px) { .grid__child_col-md_15 { grid-column: auto/span 15; } } @media (min-width: 600px) { .grid__child_col-md_16 { grid-column: auto/span 16; } } @media (min-width: 600px) { .grid__child_col-md_17 { grid-column: auto/span 17; } } @media (min-width: 600px) { .grid__child_col-md_18 { grid-column: auto/span 18; } } @media (min-width: 600px) { .grid__child_col-md_19 { grid-column: auto/span 19; } } @media (min-width: 600px) { .grid__child_col-md_20 { grid-column: auto/span 20; } } @media (min-width: 900px) { .grid__child_col-lg_1, .newsletter__button { grid-column: auto/span 1; } } @media (min-width: 900px) { .grid__child_col-lg_2, .newsletter__title, .newsletter__input { grid-column: auto/span 2; } } @media (min-width: 900px) { .grid__child_col-lg_3 { grid-column: auto/span 3; } } @media (min-width: 900px) { .grid__child_col-lg_4 { grid-column: auto/span 4; } } @media (min-width: 900px) { .grid__child_col-lg_5 { grid-column: auto/span 5; } } @media (min-width: 900px) { .grid__child_col-lg_6 { grid-column: auto/span 6; } } @media (min-width: 900px) { .grid__child_col-lg_7 { grid-column: auto/span 7; } } @media (min-width: 900px) { .grid__child_col-lg_8 { grid-column: auto/span 8; } } @media (min-width: 900px) { .grid__child_col-lg_9 { grid-column: auto/span 9; } } @media (min-width: 900px) { .grid__child_col-lg_10 { grid-column: auto/span 10; } } @media (min-width: 900px) { .grid__child_col-lg_11 { grid-column: auto/span 11; } } @media (min-width: 900px) { .grid__child_col-lg_12 { grid-column: auto/span 12; } } @media (min-width: 900px) { .grid__child_col-lg_13 { grid-column: auto/span 13; } } @media (min-width: 900px) { .grid__child_col-lg_14 { grid-column: auto/span 14; } } @media (min-width: 900px) { .grid__child_col-lg_15 { grid-column: auto/span 15; } } @media (min-width: 900px) { .grid__child_col-lg_16 { grid-column: auto/span 16; } } @media (min-width: 900px) { .grid__child_col-lg_17 { grid-column: auto/span 17; } } @media (min-width: 900px) { .grid__child_col-lg_18 { grid-column: auto/span 18; } } @media (min-width: 900px) { .grid__child_col-lg_19 { grid-column: auto/span 19; } } @media (min-width: 900px) { .grid__child_col-lg_20 { grid-column: auto/span 20; } } @media (min-width: 1200px) { .grid__child_col-xl_1 { grid-column: auto/span 1; } } @media (min-width: 1200px) { .grid__child_col-xl_2 { grid-column: auto/span 2; } } @media (min-width: 1200px) { .grid__child_col-xl_3 { grid-column: auto/span 3; } } @media (min-width: 1200px) { .grid__child_col-xl_4 { grid-column: auto/span 4; } } @media (min-width: 1200px) { .grid__child_col-xl_5 { grid-column: auto/span 5; } } @media (min-width: 1200px) { .grid__child_col-xl_6 { grid-column: auto/span 6; } } @media (min-width: 1200px) { .grid__child_col-xl_7 { grid-column: auto/span 7; } } @media (min-width: 1200px) { .grid__child_col-xl_8 { grid-column: auto/span 8; } } @media (min-width: 1200px) { .grid__child_col-xl_9 { grid-column: auto/span 9; } } @media (min-width: 1200px) { .grid__child_col-xl_10 { grid-column: auto/span 10; } } @media (min-width: 1200px) { .grid__child_col-xl_11 { grid-column: auto/span 11; } } @media (min-width: 1200px) { .grid__child_col-xl_12 { grid-column: auto/span 12; } } @media (min-width: 1200px) { .grid__child_col-xl_13 { grid-column: auto/span 13; } } @media (min-width: 1200px) { .grid__child_col-xl_14 { grid-column: auto/span 14; } } @media (min-width: 1200px) { .grid__child_col-xl_15 { grid-column: auto/span 15; } } @media (min-width: 1200px) { .grid__child_col-xl_16 { grid-column: auto/span 16; } } @media (min-width: 1200px) { .grid__child_col-xl_17 { grid-column: auto/span 17; } } @media (min-width: 1200px) { .grid__child_col-xl_18 { grid-column: auto/span 18; } } @media (min-width: 1200px) { .grid__child_col-xl_19 { grid-column: auto/span 19; } } @media (min-width: 1200px) { .grid__child_col-xl_20 { grid-column: auto/span 20; } } @media (min-width: 1800px) { .grid__child_col-xxl_1 { grid-column: auto/span 1; } } @media (min-width: 1800px) { .grid__child_col-xxl_2 { grid-column: auto/span 2; } } @media (min-width: 1800px) { .grid__child_col-xxl_3 { grid-column: auto/span 3; } } @media (min-width: 1800px) { .grid__child_col-xxl_4 { grid-column: auto/span 4; } } @media (min-width: 1800px) { .grid__child_col-xxl_5 { grid-column: auto/span 5; } } @media (min-width: 1800px) { .grid__child_col-xxl_6 { grid-column: auto/span 6; } } @media (min-width: 1800px) { .grid__child_col-xxl_7 { grid-column: auto/span 7; } } @media (min-width: 1800px) { .grid__child_col-xxl_8 { grid-column: auto/span 8; } } @media (min-width: 1800px) { .grid__child_col-xxl_9 { grid-column: auto/span 9; } } @media (min-width: 1800px) { .grid__child_col-xxl_10 { grid-column: auto/span 10; } } @media (min-width: 1800px) { .grid__child_col-xxl_11 { grid-column: auto/span 11; } } @media (min-width: 1800px) { .grid__child_col-xxl_12 { grid-column: auto/span 12; } } @media (min-width: 1800px) { .grid__child_col-xxl_13 { grid-column: auto/span 13; } } @media (min-width: 1800px) { .grid__child_col-xxl_14 { grid-column: auto/span 14; } } @media (min-width: 1800px) { .grid__child_col-xxl_15 { grid-column: auto/span 15; } } @media (min-width: 1800px) { .grid__child_col-xxl_16 { grid-column: auto/span 16; } } @media (min-width: 1800px) { .grid__child_col-xxl_17 { grid-column: auto/span 17; } } @media (min-width: 1800px) { .grid__child_col-xxl_18 { grid-column: auto/span 18; } } @media (min-width: 1800px) { .grid__child_col-xxl_19 { grid-column: auto/span 19; } } @media (min-width: 1800px) { .grid__child_col-xxl_20 { grid-column: auto/span 20; } } @media (max-width: 599px) { .grid__child_col-sm_1 { grid-column: auto/span 1; } } @media (max-width: 599px) { .grid__child_col-sm_2 { grid-column: auto/span 2; } } @media (max-width: 599px) { .grid__child_col-sm_3 { grid-column: auto/span 3; } } @media (max-width: 599px) { .grid__child_col-sm_4 { grid-column: auto/span 4; } } @media (max-width: 599px) { .grid__child_col-sm_5 { grid-column: auto/span 5; } } @media (max-width: 599px) { .grid__child_col-sm_6 { grid-column: auto/span 6; } } @media (max-width: 599px) { .grid__child_col-sm_7 { grid-column: auto/span 7; } } @media (max-width: 599px) { .grid__child_col-sm_8 { grid-column: auto/span 8; } } @media (max-width: 599px) { .grid__child_col-sm_9 { grid-column: auto/span 9; } } @media (max-width: 599px) { .grid__child_col-sm_10 { grid-column: auto/span 10; } } @media (max-width: 599px) { .grid__child_col-sm_11 { grid-column: auto/span 11; } } @media (max-width: 599px) { .grid__child_col-sm_12 { grid-column: auto/span 12; } } @media (max-width: 599px) { .grid__child_col-sm_13 { grid-column: auto/span 13; } } @media (max-width: 599px) { .grid__child_col-sm_14 { grid-column: auto/span 14; } } @media (max-width: 599px) { .grid__child_col-sm_15 { grid-column: auto/span 15; } } @media (max-width: 599px) { .grid__child_col-sm_16 { grid-column: auto/span 16; } } @media (max-width: 599px) { .grid__child_col-sm_17 { grid-column: auto/span 17; } } @media (max-width: 599px) { .grid__child_col-sm_18 { grid-column: auto/span 18; } } @media (max-width: 599px) { .grid__child_col-sm_19 { grid-column: auto/span 19; } } @media (max-width: 599px) { .grid__child_col-sm_20 { grid-column: auto/span 20; } } .grid__child_justify_end { justify-self: end; } .grid__child_justify_start { justify-self: start; } .grid__child_justify_center { justify-self: center; } .grid__child_align_end, .newsletter__input, .newsletter__button { align-self: end; } .grid__child_align_start { align-self: start; } .grid__child_align_center { align-self: center; } .grid_overflow { overflow: auto; padding-top: 1rem; padding-bottom: 1rem; margin-bottom: 1rem; margin-top: -1rem; } .grid_overflow_x { overflow-x: auto; } .grid_overflow_y { overflow-y: auto; } hr { border: none; border-style: none; border-top: 1px solid #810d1f; margin-top: 2rem; margin-bottom: 2rem; display: inline-block; width: 100%; } .badge { background: #000e25; padding: 0.15rem; min-width: 1rem; min-height: 1rem; text-align: center; color: white; display: inline-flex; border-radius: 15rem; align-items: center; justify-content: space-around; font-weight: 600; line-height: 0; text-decoration: none; } .badge_color_red { background: #bf2336; } .tooltip, [data-tooltip] { position: relative; } .tooltip:after, [data-tooltip]:after { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; visibility: hidden; content: attr(data-tooltip); position: absolute; left: 50%; bottom: 100%; transform: translate(-50%, 0); background: #000e25; color: white; margin-bottom: 0; padding: 0.2rem 0.5rem; border-radius: 0.5rem; box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.15); white-space: nowrap; z-index: 1; } .tooltip:before, [data-tooltip]:before { content: ""; width: 0; height: 0; border-left: 0.5rem solid transparent; border-right: 0.5rem solid transparent; border-top: 0.5rem solid #000e25; position: absolute; left: calc(50% - 0.5rem); bottom: calc(100% - 0.5rem); transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); visibility: hidden; opacity: 0; z-index: 2; } .tooltip:hover:after, [data-tooltip]:hover:after { opacity: 1; visibility: visible; transform: translate(-50%, -0.5rem); } .tooltip:hover:before, [data-tooltip]:hover:before { opacity: 1; visibility: visible; bottom: calc(100% + 1px); } .tooltip_color_primary:after { background: #000e25; color: white; } .tooltip_color_primary:before { border-top-color: #000e25; } .tooltip_color_green:after { background: #23bf44; color: white; } .tooltip_color_green:before { border-top-color: #23bf44; } .tooltip_color_red:after { background: #bf2336; color: white; } .tooltip_color_red:before { border-top-color: #bf2336; } .tooltip_color_grey:after { background: #333a45; color: white; } .tooltip_color_grey:before { border-top-color: #333a45; } .tooltip_color_white:after { background: white; color: #000e25; } .tooltip_color_white:before { border-top-color: white; } .tooltip_color_success:after { background: #23bf44; color: white; } .tooltip_color_success:before { border-top-color: #23bf44; } .tooltip_color_danger:after { background: #bf2336; color: white; } .tooltip_color_danger:before { border-top-color: #bf2336; } .tooltip_color_warning:after { background: #333a45; color: white; } .tooltip_color_warning:before { border-top-color: #333a45; } .tooltip_color_info:after { background: #a2c9e9; color: #000e25; } .tooltip_color_info:before { border-top-color: #a2c9e9; } .tooltip_position_top:after { left: 50%; bottom: 100%; transform: translate(-50%, 0); } .tooltip_position_top:before { border-left: 0.5rem solid transparent; border-right: 0.5rem solid transparent; border-top: 0.5rem solid #000e25; left: calc(50% - 0.5rem); bottom: calc(100% - 0.5rem); } .tooltip_position_top:hover:after { transform: translate(-50%, -0.5rem); } .tooltip_position_top:hover:before { bottom: calc(100% + 1px); } .tooltip_position_left:after { bottom: inherit; right: 100%; left: inherit; top: 50%; transform: translate(0, -50%); } .tooltip_position_left:before { bottom: inherit; left: inherit; right: calc(100% - 0.5rem); top: calc(50% - 0.5rem); border-right: none; border-top: 0.5rem solid transparent; border-left: 0.5rem solid #000e25; border-bottom: 0.5rem solid transparent; } .tooltip_position_left:hover:after { transform: translate(-0.5rem, -50%); } .tooltip_position_left:hover:before { bottom: inherit; left: inherit; right: calc(100% + 1px); } .tooltip_position_right:after { bottom: inherit; left: 100%; top: 50%; transform: translate(0, -50%); } .tooltip_position_right:before { bottom: inherit; left: calc(100% - 0.5rem); top: calc(50% - 0.5rem); border-left: none; border-top: 0.5rem solid transparent; border-right: 0.5rem solid #000e25; border-bottom: 0.5rem solid transparent; } .tooltip_position_right:hover:after { transform: translate(0.5rem, -50%); } .tooltip_position_right:hover:before { bottom: inherit; left: calc(100% + 1px); } .tooltip_position_bottom:after { bottom: inherit; left: 50%; top: 100%; transform: translate(-50%, 0); } .tooltip_position_bottom:before { bottom: inherit; left: calc(50% - 0.5rem); top: calc(100% - 0.5rem); border-left: 0.5rem solid transparent; border-right: 0.5rem solid transparent; border-bottom: 0.5rem solid #000e25; border-top: none; } .tooltip_position_bottom:hover:after { transform: translate(-50%, 0.5rem); } .tooltip_position_bottom:hover:before { bottom: inherit; top: calc(100% + 1px); } .dropdown { position: relative; } .dropdown__context > * { margin-bottom: 0; } .dropdown__content { text-align: left; position: absolute; top: calc(100% + 0.5rem); background: white; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); display: none; left: 0; max-width: 20rem; min-width: 100%; } .dropdown__content::after { position: absolute; bottom: 100%; left: 1rem; content: ""; border-bottom: .5rem solid white; border-left: .5rem solid transparent; border-right: .5rem solid transparent; } .dropdown__list { list-style: none; margin: 0; padding: 0; } .dropdown__list > * { border-bottom: 2px solid #a2c9e9; padding: 1rem; } .dropdown__list > *:last-child { border-bottom: none; } .dropdown_active .dropdown__content { display: block; } .dropdown_position_left .dropdown__content { left: inherit; right: 0; } .dropdown_position_left .dropdown__content::after { left: inherit; right: 1rem; } .modal { position: fixed; top: 0; bottom: 0; width: 100%; height: 100%; left: 0; right: 0; background: rgba(0, 0, 0, 0.75); z-index: 10; display: flex; justify-content: space-around; align-items: center; animation: modal 150ms ease-in 0ms 1 normal both; backdrop-filter: blur(4px); } .modal__box { position: relative; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); margin-top: 2rem; margin-bottom: 2rem; background: white; border-radius: 0.5rem; display: grid; grid-template-rows: auto 1fr auto; grid-template-columns: 1fr; max-height: calc(100% - 4rem); max-width: 95%; width: 40rem; animation-delay: 100ms; } .modal__header { background: #f5f5f5; border-bottom: 1px solid #000e25; padding: 1rem; margin-bottom: 0; border-radius: 0.5rem 0.5rem 0 0; } .modal__footer { margin-top: 0; padding: .5rem 1rem; background: #f5f5f5; border-top: 1px solid #000e25; } .modal__actions { text-align: right; } .modal__actions .button, .modal__actions .main-header__collapse, .modal__actions .visit__action { margin-bottom: 0; } .modal__body { padding: 1rem; overflow: auto; } .modal__close { color: white; font-size: 1rem; position: absolute; top: -1.5rem; right: -1.5rem; border: none; outline: none; padding: .5rem; background: none; cursor: pointer; opacity: .75; } .modal__close:hover { opacity: 1; } .modal_width_tiny .modal__box { width: 20rem; max-width: 95%; } .modal_width_small .modal__box { max-width: 95%; width: 30rem; } .modal_width_medium .modal__box { max-width: 95%; width: 40rem; } .modal_width_large .modal__box { max-width: 95%; width: 50rem; } @keyframes modal { 0% { visibility: hidden; } 1% { visibility: visible; opacity: 0; } 100% { opacity: 1; visibility: visible; } } .snackbar { list-style: none; padding: 0; margin: 0; position: fixed; bottom: 0; left: 2rem; z-index: 11; } .snackbar__item { padding-bottom: 1rem; min-width: 15rem; max-width: calc(80vw - 4rem); } .snack { display: grid; grid-template-areas: 'title close' 'infos infos'; grid-template-columns: 1fr 2rem; background: white; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); overflow: hidden; grid-gap: .25rem; padding: .25rem; position: relative; } .snack__title { grid-area: title; margin-bottom: 0; font-weight: bold; } .snack__infos { grid-area: infos; } .snack__close { grid-area: close; background: none; border: none; box-shadow: none; outline: none; opacity: .75; font-size: .8rem; cursor: pointer; } .snack__close:hover { opacity: 1; } .snack_color_primary { background: #000e25; color: rgba(255, 255, 255, 0.84); } .snack_color_primary .snack__progress { background-color: rgba(255, 255, 255, 0.84); } .snack_color_primary .snack__close { color: rgba(255, 255, 255, 0.84); } .snack_color_green { background: #23bf44; color: rgba(255, 255, 255, 0.84); } .snack_color_green .snack__progress { background-color: rgba(255, 255, 255, 0.84); } .snack_color_green .snack__close { color: rgba(255, 255, 255, 0.84); } .snack_color_red { background: #bf2336; color: rgba(255, 255, 255, 0.84); } .snack_color_red .snack__progress { background-color: rgba(255, 255, 255, 0.84); } .snack_color_red .snack__close { color: rgba(255, 255, 255, 0.84); } .snack_color_grey { background: #333a45; color: rgba(255, 255, 255, 0.84); } .snack_color_grey .snack__progress { background-color: rgba(255, 255, 255, 0.84); } .snack_color_grey .snack__close { color: rgba(255, 255, 255, 0.84); } .snack_color_white { background: white; color: rgba(0, 14, 37, 0.84); } .snack_color_white .snack__progress { background-color: rgba(0, 14, 37, 0.84); } .snack_color_white .snack__close { color: rgba(0, 14, 37, 0.84); } .snack_color_success { background: #23bf44; color: rgba(255, 255, 255, 0.84); } .snack_color_success .snack__progress { background-color: rgba(255, 255, 255, 0.84); } .snack_color_success .snack__close { color: rgba(255, 255, 255, 0.84); } .snack_color_danger { background: #bf2336; color: rgba(255, 255, 255, 0.84); } .snack_color_danger .snack__progress { background-color: rgba(255, 255, 255, 0.84); } .snack_color_danger .snack__close { color: rgba(255, 255, 255, 0.84); } .snack_color_warning { background: #333a45; color: rgba(255, 255, 255, 0.84); } .snack_color_warning .snack__progress { background-color: rgba(255, 255, 255, 0.84); } .snack_color_warning .snack__close { color: rgba(255, 255, 255, 0.84); } .snack_color_info { background: #a2c9e9; color: rgba(0, 14, 37, 0.84); } .snack_color_info .snack__progress { background-color: rgba(0, 14, 37, 0.84); } .snack_color_info .snack__close { color: rgba(0, 14, 37, 0.84); } .loading { position: relative; cursor: progress; } .loading:after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; z-index: 1; background-color: black; opacity: 0.5; } .loading:before { content: ''; position: absolute; top: calc(50% - 1rem); left: calc(50% - 1rem); height: 2rem; width: 2rem; background: transparent; border-radius: 50%; z-index: 2; border: .25rem solid white; border-bottom-color: transparent; opacity: .75; animation: rotatingLoading 2s linear infinite; line-height: 0; padding: 0; margin: 0; } .loading_dark:after { background-color: black; } .loading_dark:before { border-color: white; border-bottom-color: transparent; } .loading_light:after { background-color: white; } .loading_light:before { border-color: black; border-bottom-color: transparent; } .loading_size_small:before { height: 1rem; width: 1rem; top: calc(50% - .75rem); left: calc(50% - .75rem); } .loading_size_big:before { height: 3rem; width: 3rem; top: calc(50% - 1.5rem); left: calc(50% - 1.5rem); } @keyframes rotatingLoading { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .logo-loader { width: 100%; text-align: center; position: relative; } .logo-loader__text { font-weight: 600; display: block; animation: textAnimation 5s ease-in-out 1s infinite; position: relative; z-index: 2; } .logo-loader:after { content: ""; display: block; background-color: white; position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; z-index: 1; opacity: .5; } .logo-loader svg { max-width: 3rem; z-index: 2; position: relative; } .logo-loader path { animation: logoAnimation 5s ease-in-out 1s infinite; stroke: black; fill: black; fill-opacity: 0; stroke-width: 4; stroke-dasharray: 2000; stroke-dashoffset: 2000; } .logo-loader_dark:after { content: ""; display: block; background-color: black; position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; z-index: 1; opacity: .5; } .logo-loader_dark path { fill: white; stroke: white; } .logo-loader_dark .logo-loader__text { color: white; } .logo-loader_light:after { content: ""; display: block; background-color: white; position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; z-index: 1; opacity: .5; } .logo-loader_light path { fill: black; stroke: black; } .logo-loader_light .logo-loader__text { color: black; } @-webkit-keyframes logoAnimation { 0% { stroke-dashoffset: 2000; } 50% { stroke-dashoffset: 0; fill-opacity: 0; } 75% { stroke-dashoffset: 0; fill-opacity: 1; } 100% { stroke-dashoffset: 0; fill-opacity: 0; stroke: transparent; } } @keyframes textAnimation { 0% { opacity: 0; } 50% { opacity: 1; } 75% { opacity: 1; } 100% { opacity: 0; } } [type='color'], [type='date'], [type='datetime'], [type='datetime-local'], [type='email'], [type='month'], [type='number'], [type='password'], [type='search'], [type='tel'], [type='text'], [type='time'], [type='url'], [type='week'], input:not([type]), .select__placeholder:not([type]), .select__value:not([type]), textarea { border: 2px solid #a2c9e9; border-radius: 0.5rem; height: 3rem; padding: calc((3rem - 1rem) / 2); width: 100%; font-weight: 500; font-size: 1rem; outline: none; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); margin-bottom: 2rem; } [type='color']:hover, [type='date']:hover, [type='datetime']:hover, [type='datetime-local']:hover, [type='email']:hover, [type='month']:hover, [type='number']:hover, [type='password']:hover, [type='search']:hover, [type='tel']:hover, [type='text']:hover, [type='time']:hover, [type='url']:hover, [type='week']:hover, input:not([type]):hover, .select__placeholder:not([type]):hover, .select__value:not([type]):hover, textarea:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } [type='color']:active, [type='date']:active, [type='datetime']:active, [type='datetime-local']:active, [type='email']:active, [type='month']:active, [type='number']:active, [type='password']:active, [type='search']:active, [type='tel']:active, [type='text']:active, [type='time']:active, [type='url']:active, [type='week']:active, input:not([type]):active, .select__placeholder:not([type]):active, .select__value:not([type]):active, textarea:active { border: 2px solid rgba(0, 14, 37, 0.46); } [type='color']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='email']:focus, [type='month']:focus, [type='number']:focus, [type='password']:focus, [type='search']:focus, [type='tel']:focus, [type='text']:focus, [type='time']:focus, [type='url']:focus, [type='week']:focus, input:not([type]):focus, .select__placeholder:not([type]):focus, .select__value:not([type]):focus, textarea:focus { border: 2px solid #333a45; } [type='color']:invalid, [type='date']:invalid, [type='datetime']:invalid, [type='datetime-local']:invalid, [type='email']:invalid, [type='month']:invalid, [type='number']:invalid, [type='password']:invalid, [type='search']:invalid, [type='tel']:invalid, [type='text']:invalid, [type='time']:invalid, [type='url']:invalid, [type='week']:invalid, input:not([type]):invalid, .select__placeholder:not([type]):invalid, .select__value:not([type]):invalid, textarea:invalid { border: 2px solid #bf2336; color: #bf2336; } .input-box { position: relative; } .input__error { color: #bf2336; font-weight: 500; } .input + .input__error { position: absolute; top: 3rem; font-size: 1rem; left: 0; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .input_small, .select_small .select__value, .select_small .select__placeholder, .select_small .select_autocomplete .input, .autocomplete_small .autocomplete__input { height: 1.875rem; padding: calc((1.875rem - 1rem) / 2); font-size: 0.875rem; margin-bottom: 1rem; } .input_small + .input__error, .select_small .select__value + .input__error, .select_small .select__placeholder + .input__error, .select_small .select_autocomplete .input + .input__error, .autocomplete_small .autocomplete__input + .input__error { position: absolute; top: 1.875rem; font-size: 0.875rem; left: 0; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .input_error { border: 2px solid #bf2336; color: #bf2336; } input[type=text]::placeholder, .select__placeholder[type=text]::placeholder, .select__value[type=text]::placeholder, input[type=number]::placeholder, .select__placeholder[type=number]::placeholder, .select__value[type=number]::placeholder { color: black; } .checkbox { height: 3rem; width: 3rem; display: inline-flex; align-items: center; cursor: pointer; } .checkbox__feedback { display: inline-flex; align-items: center; justify-content: space-around; border: 2px solid #a2c9e9; border-radius: calc(0.5rem / 2); width: 1.5rem; height: 1.5rem; background: transparent; } .checkbox__feedback:after { content: ""; display: inline; width: 80%; height: 80%; background: transparent; border-radius: calc(0.5rem / 3); transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); } .checkbox__input { display: none; } .checkbox__input:checked + .checkbox__feedback:after { background: #a2c9e9; } .checkbox_radio .checkbox__feedback { border-radius: 50%; } .checkbox_radio .checkbox__feedback:after { border-radius: 50%; } .checkbox_disabled .checkbox__input { display: none; } .checkbox_disabled .checkbox__input:checked + .checkbox__feedback:after { background: #ebebe4; } .label_size_big { font-size: 1rem; } textarea { min-height: 9.75rem; } .textarea-box { position: relative; } .textarea { min-height: 9.75rem; } .textarea__error { color: #bf2336; font-weight: 500; } .textarea + .textarea__error { position: absolute; top: 9.75rem; font-size: 1rem; left: 0; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .textarea_small { padding: calc((1.875rem - 1rem) / 2); font-size: 0.875rem; min-height: 80px; margin-bottom: 1rem; } .textarea_small + .textarea__error { position: absolute; top: 80px; font-size: 0.875rem; left: 0; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .textarea_error { border: 2px solid #bf2336; color: #bf2336; } .main-search { position: relative; } .main-search__input { border-radius: 10rem; padding-right: 3rem; } .main-search__button { border: none; outline: none; position: absolute; top: 4px; right: 4px; border-radius: 50%; background: #a2c9e9; width: calc(3rem - 8px); height: calc(3rem - 8px); color: white; display: flex; align-items: center; justify-content: space-around; cursor: pointer; } .main-search__button:after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; right: 0; background: black; opacity: 0; border-radius: 50%; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); } .main-search__button:hover:after { opacity: 0.12; } .select { position: relative; /* width */ /* Track */ /* Handle */ } .select ::-webkit-scrollbar { width: calc(.5rem + 4px); height: calc(.5rem + 4px); } .select ::-webkit-scrollbar-track { box-shadow: none; } .select ::-webkit-scrollbar-thumb { background: lightblue; border-radius: 10px; border: 2px solid rgba(255, 255, 255, 0.5); } .select ::-webkit-scrollbar-thumb:hover { background: rgba(51, 58, 69, 0.5); } .select__input { display: none; } .select__placeholder { position: absolute; border: none !important; background: none; top: 0; padding-right: 3rem; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .select__value { display: grid; grid-template-columns: auto 1fr auto; cursor: pointer; padding-right: 3rem; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .select__icon { position: absolute; right: 0; top: 0; padding: 1rem; } .select__list { z-index: 2; position: absolute; top: 0; left: 0; right: 0; max-height: 15rem; background: white; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); margin: 0; padding: 0; list-style: none; overflow-y: auto; display: none; } .select__list-item { padding: 1rem 1rem; border-bottom: 2px solid #a2c9e9; overflow: hidden; text-overflow: ellipsis; cursor: pointer; } .select__list-item:hover { background: rgba(162, 201, 233, 0.5); } .select__list-item_hovered { background: rgba(162, 201, 233, 0.5); } .select__list-item_active { background: #a2c9e9; } .select__list-item:last-child { border-bottom: 0; } .select_active .select__list { display: block; } .select_autocomplete .select__list { top: calc(100% - 2rem); } .select_small { cursor: pointer; } .select_small .select__value { display: grid; grid-template-columns: auto 1fr auto; cursor: pointer; padding-right: 2rem; } .select_small .select__placeholder { padding-right: 2rem; } .select_small .select__icon { padding: 0.5rem; } .select_small .select__list-item { height: 1.875rem; padding: calc((1.875rem - 1rem) / 2); font-size: 0.875rem; } .select_small .select_autocomplete__list { top: calc(100% - 1rem); } .select_disabled .select__value { background: #ebebe4; cursor: context-menu; } .autocomplete { position: relative; /* width */ /* Track */ /* Handle */ } .autocomplete ::-webkit-scrollbar { width: calc(.5rem + 4px); height: calc(.5rem + 4px); } .autocomplete ::-webkit-scrollbar-track { box-shadow: none; } .autocomplete ::-webkit-scrollbar-thumb { background: lightblue; border-radius: 10px; border: 2px solid rgba(255, 255, 255, 0.5); } .autocomplete ::-webkit-scrollbar-thumb:hover { background: rgba(51, 58, 69, 0.5); } .autocomplete__list { z-index: 2; position: absolute; top: calc(100% - 2rem); left: 0; right: 0; max-height: 15rem; background: white; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); margin: 0; padding: 0; list-style: none; overflow-y: auto; display: none; } .autocomplete__list-item { padding: 1rem 1rem; border-bottom: 2px solid #a2c9e9; overflow: hidden; text-overflow: ellipsis; cursor: pointer; } .autocomplete__list-item:hover { background: rgba(162, 201, 233, 0.5); } .autocomplete__list-item_hovered { background: rgba(162, 201, 233, 0.5); } .autocomplete__list-item_active { background: #a2c9e9; } .autocomplete__list-item:last-child { border-bottom: 0; } .autocomplete__error { color: #bf2336; font-weight: 500; } .autocomplete__input + .autocomplete__error { position: absolute; top: 3rem; font-size: 1rem; left: 0; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .autocomplete_active .autocomplete__list { display: block; } .autocomplete_error .autocomplete__input { border: 2px solid #bf2336; color: #bf2336; } .autocomplete_small { cursor: pointer; } .autocomplete_small .autocomplete__list { top: calc(100% - 1rem); } .autocomplete_small .autocomplete__list-item { height: 1.875rem; padding: calc((1.875rem - 1rem) / 2); font-size: 0.875rem; left: 0; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .autocomplete_small .autocomplete__input + .autocomplete__error { position: absolute; top: 1.875rem; font-size: 0.875rem; } .autocomplete_disabled .autocomplete__value { background: #ebebe4; cursor: context-menu; } .main-header { background: white; margin-bottom: 2rem; font-size: 0; padding: 0.5rem 2rem; display: grid; align-items: center; grid-column-gap: 1rem; grid-row-gap: 0; grid-template-columns: 15rem auto 3rem; grid-template-areas: "logo search collapse" "nav nav nav"; } @media (max-width: 599px) { .main-header { padding: 0.5rem 1rem; grid-template-columns: 2rem auto 3rem; } } @media (min-width: 900px) { .main-header { grid-template-areas: "logo search collapse nav"; grid-template-columns: 2rem 20rem auto auto; grid-gap: 1rem; } } .main-header__logo { grid-area: logo; line-height: 0; font-size: 0; padding: 0; margin: 0; height: 3rem; display: inline-block; } .main-header__logo span { display: none; } .main-header__logo img { display: inline-block; height: 100%; } .main-header__logo svg { display: inline-block; fill: #bf2336; height: 100%; } @media (max-width: 599px) { .main-header__logo { height: 2rem; } } .main-header__title { font-size: 1.5rem; color: #000e25; } .main-header .main-search { grid-area: search; display: inline-block; } @media (max-width: 599px) { .main-header .main-search__button { height: calc(2rem - 8px); width: calc(2rem - 8px); font-size: .8rem; } } .main-header .main-search__input { margin-bottom: 0; } @media (max-width: 599px) { .main-header .main-search__input { padding: .5rem 2rem .5rem .5rem; height: 2rem; } } .main-header__collapse { grid-area: collapse; padding-left: 0.5rem; padding-right: .5rem; margin-bottom: 0; text-decoration: none; } .main-header__collapse:focus { text-decoration: none; outline: none; background: none; } @media (min-width: 900px) { .main-header__collapse { display: none; } } .main-header__nav { grid-area: nav; text-align: center; } @media (min-width: 900px) { .main-header__nav { text-align: right; } } @media (max-width: 899px) { .main-header__nav { display: none; } } .main-header_active { grid-gap: 1rem; } .main-header_active .main-header__nav { display: block; } .main-header_bordered { border-bottom: 1px solid #000e25; } .main-nav { list-style: none; margin: 0; padding: 0; margin-right: -0.5rem; } .main-nav__item { display: inline-block; } .main-nav__link { font-size: 1rem; font-weight: 500; color: #000e25; padding: 1rem 0.5rem; display: inline-block; position: relative; background: none; border: none; box-shadow: none; cursor: pointer; text-decoration: underline; } .main-nav__link .badge { position: absolute; top: 0.5rem; right: 0; } .main-nav__link:hover { color: black; } .main-nav__link_active { font-weight: 600; } .main-footer { padding: 4rem 2rem 4rem 2rem; margin-top: 2rem; background: #810d1f; color: white; display: grid; grid-gap: 1rem; grid-template-columns: 1fr 1fr 1fr; grid-template-areas: "logo . socials" "title1 title2 title3" "nav1 nav2 nav3"; } @media (max-width: 599px) { .main-footer { padding: 4rem 1rem 8rem 1rem; grid-template-columns: 1fr 1fr; grid-template-areas: "logo socials" "title1 title2" "nav1 nav2" "title3 ." "nav3 ."; } } @media (min-width: 900px) { .main-footer { grid-template-columns: 10% 1fr 1fr 1fr 20%; grid-template-areas: "logo title1 title2 title3 socials" ". nav1 nav2 nav3 ."; } } .main-footer__logo { grid-area: logo; align-self: end; justify-self: start; } @media (min-width: 900px) { .main-footer__logo { justify-self: end; } } .main-footer__logo svg { fill: white; height: 3rem; } .main-footer__logo img { height: 3rem; } .main-footer__title { align-self: end; } .main-footer__title_advices { grid-area: title1; } .main-footer__title_projects { grid-area: title2; } .main-footer__title_who { grid-area: title3; } .main-footer__nav { list-style: none; margin: 0; padding: 0; } .main-footer__nav_advices { grid-area: nav1; } .main-footer__nav_projects { grid-area: nav2; } .main-footer__nav_who { grid-area: nav3; } .main-footer__link { color: white; text-decoration: none; padding: 0.25rem 0; display: block; } .main-footer__link:hover { text-decoration: underline; } .main-footer__socials { align-self: end; justify-self: start; grid-area: socials; list-style: none; margin: 0; padding: 0; } .main-footer__socials * { display: inline-block; font-size: 2rem; color: white; padding: 0 .1rem; } .user { width: 25rem; background: white; height: 4rem; max-width: 100%; display: grid; grid-template-columns: 4rem 1fr 2rem 4px; grid-template-rows: 1fr 1fr 1fr; grid-gap: 0 1rem; align-items: center; grid-template-areas: "avatar context like status" "avatar name like status" "avatar plan like status"; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } @media (max-width: 599px) { .user { width: 100%; } } .user__avatar { grid-area: avatar; max-width: 100%; width: 100%; } .user__context { grid-area: context; } .user__name { grid-area: name; } .user__plan { grid-area: plan; } .user__like { grid-area: like; text-align: center; color: #bf2336; } .user__status { grid-area: status; height: 100%; } .user__status_online { background: #23bf44; } .user_big { background: #333a45; color: white; height: 6rem; width: 100%; grid-template-columns: 6rem 1fr 2rem 4px; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); align-items: center; } .user_big .user__context { text-transform: none; margin-bottom: 0; } .user_big .user__name { margin-bottom: 0; } .users-list { list-style: none; padding: 0; margin: 0; } .users-list__item { cursor: pointer; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); border-bottom: 1px solid #a2c9e9; } .users-list__item_message { background: rgba(191, 35, 54, 0.2); } .users-list__item:hover { background: rgba(0, 14, 37, 0.2); } .project { width: 25rem; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); cursor: pointer; } .project:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } @media (max-width: 599px) { .project { max-width: 70vw; } } .project__link { color: #000e25; text-decoration: none; } .project__user .user { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); } .project__content { position: relative; height: 14.0625rem; background: #333a45; text-align: center; } @media (max-width: 599px) { .project__content { max-height: 39.375vw; } } .project__done { position: absolute; z-index: 2; top: 1rem; left: 0; max-width: 75%; padding: 1rem; color: white; background-color: #bf2336; font-size: 2rem; line-height: 1.2; font-weight: bold; } .project__headline { height: 100%; widows: 100%; background-color: #000e25; color: white; display: flex; align-items: center; padding: 1rem 2rem; font-size: 2rem; line-height: 1.2; font-weight: bold; white-space: initial; max-height: 14.0625rem; overflow: hidden; } @media (max-width: 599px) { .project__headline { max-height: 39.375vw; } } .project__headline small { font-size: 75%; font-weight: normal; } .project__text { max-height: 14.0625rem; overflow: hidden; word-break: break-word; } @media (max-width: 599px) { .project__text { max-height: 39.375vw; } } .project__img { position: absolute !important; left: 0; right: 0; top: 0; z-index: 1; bottom: 0; height: 100%; width: 100%; -o-object-fit: cover; object-fit: cover; } .project__like { cursor: pointer; position: absolute; top: 1rem; right: 1rem; color: white; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(255, 255, 255, 0.24); font-size: 2rem; background: none; outline: none; box-shadow: none; border: none; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); } .project__like:hover, .project__like_active { color: #bf2336; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(191, 35, 54, 0.24); } .project__match { padding-top: 0.5rem; } .project__match h1 { margin: 0; } .project__match h1 + * { margin-bottom: 0; } .project__match * { padding: 0.25rem 1rem; } .project__match *:last-child { text-align: right; } .project_owner { cursor: initial; } .project_owner:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .project__actions { display: grid; grid-auto-flow: column; } .project__action { margin-bottom: 0; border-radius: 0; } .project_next { font-size: 5rem; color: #eaeaea; max-width: 3rem; text-align: center; height: auto; box-shadow: none; } .project_next:hover { box-shadow: none; color: #a2c9e9; } .projects-list { list-style: none; padding: 0; margin: 0; margin-bottom: 1rem; margin-top: -1rem; width: 100%; white-space: nowrap; overflow-x: scroll; padding: 1rem 2rem; } @media (max-width: 599px) { .projects-list { padding: 0 1rem; } } .projects-list__item { display: table-cell; padding-right: 1rem; } .projects-list__item_next { vertical-align: middle; } .sidebar-project { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); display: inline-block; width: 100%; margin-bottom: 2rem; } .sidebar-project__container { padding: 1rem; } .sidebar-project__container + .sidebar-project__container { padding-top: 0; } .sidebar-project__container:last-child { padding-bottom: 0; } .sidebar-project__container_header { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "context like" "title like"; margin-bottom: 2rem; color: white; background: #333a45; } .sidebar-project__header-context { grid-area: context; } .sidebar-project__header-context a { color: white; font-weight: 600; } .sidebar-project__header-title { grid-area: title; margin-bottom: 0; } .sidebar-project__header-like { grid-area: like; background: none; color: white; font-size: 1.75rem; border: none; outline: none; box-shadow: none; cursor: pointer; width: 3rem; height: 3rem; border-radius: 50%; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); display: grid; background: transparent; justify-content: center; align-items: center; } .sidebar-project__header-like:hover { background: #bf2336; color: white; } .container, .newsletter { width: 100%; padding: 0 2rem; } @media (max-width: 599px) { .container, .newsletter { padding: 0 1rem; } } .container_content, .newsletter { max-width: calc((25rem * 3) + (1rem * 2) + (2rem * 2)); margin: auto; } .titling { margin-bottom: 2rem; } .titling__subtitle { max-width: 70ch; } .filter { background: #a2c9e9; padding: 0.5rem 2rem 0 2rem; display: grid; grid-template-columns: auto 1fr; margin-top: -2rem; grid-gap: 1rem; margin-bottom: 2rem; } @media (max-width: 599px) { .filter { padding: 0.5rem 1rem 0; grid-template-columns: 1fr; } } .filter .button, .filter .main-header__collapse, .filter .visit__action { margin-bottom: 0.5rem; } @media (max-width: 599px) { .filter .button, .filter .main-header__collapse, .filter .visit__action { width: 100%; display: block; } } .filter .select { display: inline-block; } .filter .select__value { margin-bottom: 0.5rem; background: #f5f5f5; border: none; } .filter .select__holder { margin-bottom: 0px; } @media (max-width: 599px) { .filter .select { min-width: inherit; width: 100%; display: block; } } .filter input, .filter .select__placeholder, .filter .select__value { border: none; margin-bottom: 0.5rem; } .filter input:focus, .filter .select__placeholder:focus, .filter .select__value:focus { border: none; } .filter__all { justify-self: end; } @media (max-width: 599px) { .filter__all { justify-self: normal; } } .hero-home { display: grid; min-height: 100vh; margin-bottom: 2rem; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; grid-template-areas: "login" "presentation" "form"; } @media (min-width: 900px) { .hero-home { grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr; grid-template-areas: "login login" "presentation form"; } } @media (min-width: 1200px) { .hero-home { grid-template-columns: 2fr 1fr; grid-template-rows: auto 1fr; grid-template-areas: "presentation login" "presentation form"; } } .hero-home__presentation { grid-area: presentation; background: #000e25; color: white; display: grid; grid-template-columns: 1fr; grid-template-rows: auto 1fr; } .hero-home__presentation svg { height: 6rem; fill: white; margin-bottom: 2rem; } @media (min-width: 900px) { .hero-home__presentation svg { height: 8rem; margin-bottom: 0; } } .hero-home__presentation img { margin-bottom: 2rem; } @media (min-width: 900px) { .hero-home__presentation img { margin-bottom: 0; } } .hero-home__title { padding-left: 2rem; border-left: 4px solid white; align-self: center; font-size: 2.125rem; } .hero-home__title > * { display: block; } @media (min-width: 900px) { .hero-home__title { font-size: 3rem; } } .hero-home__login { grid-area: login; background: white; text-align: right; min-height: 6.5rem; } .hero-home__login .button, .hero-home__login .main-header__collapse, .hero-home__login .visit__action { margin-bottom: 0; } .hero-home__form { grid-area: form; padding: 2rem; display: flex; align-items: center; } .hero-home__form h1, .hero-home__form h2, .hero-home__form h3, .hero-home__form .hero-home__title, .hero-home__form h1, .hero-home__form h2, .hero-home__form h3, .hero-home__form .hero-home__title, .hero-home__form h4, .hero-home__form .market-enter__title { margin: 0 0 1rem 0; } .hero-home__covered { padding: 2rem; } .hero-home__covered > * { position: relative; z-index: 2; } .hero-home__cover { opacity: 0.24; } .hero-project { margin-top: -2rem; display: grid; width: 100%; min-height: 75vh; height: calc(100vw / 16 * 9); max-height: calc(100vh - 10rem); grid-gap: 1rem; grid-template-rows: auto auto 1fr; grid-template-areas: "share" "done" "user" "pictures"; } @media (min-width: 600px) { .hero-project { grid-template-rows: auto 1fr auto; } } @media (min-width: 900px) { .hero-project { grid-template-rows: auto 1fr; grid-template-areas: "done share" "user pictures"; } } .hero-project .cover__img, .hero-project .hero-home__cover, .hero-project .message_img .message__content, .message_img .hero-project .message__content { opacity: 1; } .hero-project__share { grid-area: share; padding: 2rem 2rem 0 0; justify-self: end; align-self: start; } .hero-project__share .button, .hero-project__share .main-header__collapse, .hero-project__share .visit__action { margin-bottom: 1rem; } @media (max-width: 599px) { .hero-project__share { padding: 1rem 1rem 0 0; margin-bottom: 0; } } .hero-project__done { grid-area: done; padding-top: 2rem; padding-bottom: 2rem; padding-left: 2rem; } .hero-project__user { grid-area: user; display: none; } @media (min-width: 600px) { .hero-project__user { display: block; padding: 0 0 2rem 2rem; justify-self: start; align-self: end; } } .hero-project__pictures { grid-area: pictures; justify-self: end; align-self: end; list-style: none; padding: 0; margin: 0; font-size: 0; text-align: right; } .hero-project__pictures-item { height: 4rem; width: 4rem; display: inline-block; cursor: pointer; } @media (min-width: 600px) { .hero-project__pictures-item { height: 5rem; width: 5rem; } } @media (min-width: 900px) { .hero-project__pictures-item { height: 6rem; width: 6rem; } } .hero-project__pictures-item:after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; right: 0; background: #000e25; opacity: 0; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); z-index: 2; } .hero-project__pictures-item:hover:after { opacity: 0.24; } .hero-project__pictures-item-more { position: absolute; background: rgba(191, 35, 54, 0.76); color: white; top: 0; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-around; padding: 0.25rem; } .market-enter { display: grid; min-height: 60vh; margin-bottom: 2rem; grid-template-areas: "discover" "advices" "feedback"; } @media (min-width: 600px) { .market-enter { grid-template-areas: "discover discover" "advices feedback"; } } @media (min-width: 900px) { .market-enter { grid-template-areas: "discover advices" "discover feedback"; } } .market-enter__panel { color: white; padding: 2rem 2rem 0; grid-gap: 1rem; display: grid; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; grid-template-areas: "title" "text" "action"; } .market-enter__panel_discover { grid-area: discover; background: #000e25; } .market-enter__panel_advices { grid-area: advices; background: #333a45; } .market-enter__panel_feedback { grid-area: feedback; background: #bf2336; } .market-enter__title { grid-area: title; padding-left: 2rem; border-left: 4px solid white; } .market-enter__text { grid-area: text; padding-left: 2rem; max-width: 70ch; } .market-enter__action { grid-area: action; justify-self: end; } .market-enter-list { list-style-type: circle; margin-top: 3rem; } .market-enter-list__item { margin-bottom: 1rem; } .read-more { position: relative; max-height: 20ch; margin-bottom: 2rem; overflow: hidden; } .read-more__action, .maps__action { padding-bottom: 1rem; position: absolute; height: 10ch; bottom: 0; left: 0; right: 0; background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 50%, white 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); display: flex; align-items: flex-end; justify-content: flex-end; } .read-more__action .button, .maps__action .button, .read-more__action .main-header__collapse, .maps__action .main-header__collapse, .read-more__action .visit__action, .maps__action .visit__action { margin-bottom: 0; } .read-more_active { max-height: none; } .read-more_active .read-more__action, .read-more_active .maps__action { display: none; } .maps { position: relative; height: 20rem; max-height: 80vh; border: 2px solid #000e25; margin-bottom: 2rem; } .maps__action { background: linear-gradient(to bottom, rgba(0, 14, 37, 0) 0%, #000e25 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); top: 0; height: 100%; } .maps__action .button, .maps__action .main-header__collapse, .maps__action .visit__action { margin-right: 2rem; margin-bottom: 1rem; } .maps_active .maps__action { display: none; } .agenda { width: 100%; display: inline-block; margin-bottom: 2rem; background: white; } .agenda__actions { display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; } .agenda__calendar { display: block; } .agenda__displayed-month { justify-self: center; } .agenda__icon { background: none; border: none; outline: none; padding: 0.25rem 1rem; } .calendar { display: grid; grid-template-columns: repeat(7, 1fr); grid-template-rows: auto repeat(6, 3rem); background: rgba(162, 201, 233, 0.12); } .calendar__item { padding: 0.25rem 0.125rem; position: relative; appearance: none; background: white; border: 1px solid rgba(162, 201, 233, 0.24); } .calendar__item_day { background: transparent; overflow: hidden; text-overflow: ellipsis; } .calendar__item_passed { background: transparent; } .calendar__item_prev { background: transparent; outline: none; color: rgba(0, 14, 37, 0.54); } .calendar__item_next { background: transparent; outline: none; color: rgba(0, 14, 37, 0.54); } .calendar__item_today .calendar__content { position: relative; } .calendar__item_today .calendar__content::after { position: absolute; display: inline-block; content: ""; top: -0.125rem; left: -0.125rem; right: -0.125rem; bottom: -0.125rem; border-radius: 1rem; background: rgba(0, 14, 37, 0.12); } .calendar__item_closed { background: rgba(191, 35, 54, 0.24); } .calendar__item_select { cursor: pointer; text-align: left; } .calendar__item_select:hover { background: rgba(0, 14, 37, 0.12); } .calendar__item_select:after { content: ""; display: inline-block; vertical-align: top; height: 100%; } .calendar__item_selected { background: #23bf44; color: white; } .calendar__item_selected:hover { background: #23bf44; } .calendar__content { display: inline-block; vertical-align: top; } .calendar__planned { height: 0.25rem; width: 0.25rem; border-radius: 1rem; background: #000e25; display: inline-block; margin-left: 0.125rem; } .visio { background: #810d1f; width: 100%; height: 18rem; } .downloads { border-radius: 0.5rem; overflow: hidden; border: 2px solid #a2c9e9; background: white; } .downloads__item { display: grid; grid-template-columns: 1fr auto; cursor: pointer; border-bottom: 1px solid #a2c9e9; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); } .downloads__item:last-child { border-bottom: none; } .downloads__item:hover { background: rgba(0, 14, 37, 0.12); } .downloads__item_valid .downloads__infos { background: #23bf44; } .downloads__item_disabled { cursor: not-allowed; opacity: 0.54; } .downloads__item_disabled:hover { background: none; } .downloads__item_disabled .downloads__infos { background: #333a45; } .downloads__title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 1rem; font-weight: 500; } .downloads__infos { padding: 1rem; background: #000e25; color: white; } .next-visit { background: #a2c9e9; overflow-x: auto; margin: 0; list-style: none; display: block; white-space: nowrap; font-size: 0; padding: .25rem .5rem; } @media (min-width: 600px) { .next-visit { padding: .25rem 1rem; } } @media (min-width: 900px) { .next-visit { padding: 0.25rem 2rem; } } .next-visit__item { display: inline-block; padding-right: .25rem; } .next-visit__item:last-child { padding-right: 0; } .next-visit__link { background: white; display: inline-block; width: 10rem; padding: 0.3125rem 0.5rem; border-radius: 0.5rem; text-decoration: none; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); } .next-visit__link:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); width: auto; } .next-visit__context { margin-bottom: 0.1875rem; width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .next-visit__date { margin-bottom: 0; width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .gallery { list-style: none; padding: 0; margin: -1px -1px 2rem -1px; font-size: 0; display: flex; flex-wrap: wrap; } .gallery__img { opacity: 1; transform: scale(1); transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); width: 100%; height: 100%; object-fit: cover; } .gallery__item { background: #000e25; border: 1px solid white; width: 8rem; height: 8rem; flex-grow: 0; overflow: hidden; cursor: pointer; } .gallery__item:hover .gallery__img { opacity: .5; transform: scale(1.2); } .gallery-showcase { background: #fff; position: fixed; top: 0; left: 0; right: 0; bottom: 0; overflow-y: auto; z-index: 9999; display: grid; grid-template-columns: auto; grid-template-rows: 2fr auto; grid-template-areas: "galleryMain" "galleryList"; align-items: start; overflow: hidden; background: #333a45; } @media (min-width: 1200px) { .gallery-showcase { grid-template-columns: auto 2fr; grid-template-areas: "galleryList galleryMain"; align-items: start; overflow: hidden; } } .gallery-showcase__main { grid-area: galleryMain; margin: 4rem 0; position: relative; z-index: 2; align-self: center; } .gallery-showcase__list { grid-area: galleryList; background: #333a45; margin: 0; display: block; white-space: nowrap; overflow-y: auto; } @media (min-width: 1200px) { .gallery-showcase__list { max-height: 100vh; overflow: auto; max-width: 100vw; max-width: 25.1rem; } } .gallery-showcase__img { margin: auto; display: block; max-width: 90%; max-height: 65vh; height: auto; width: auto; } @media (max-height: 600px) { .gallery-showcase__img { max-height: 40vh; } } .gallery-showcase__close { position: absolute; z-index: 2; background: none; border: none; padding: 1rem; font-size: 1.5rem; top: 0; right: 0; color: white; outline: none; cursor: pointer; } @media (max-width: 1199px) { .gallery-showcase .gallery-showcase-list__item { background: #000e25; border: 1px solid white; width: 8rem; height: 8rem; overflow: hidden; cursor: pointer; display: inline-block; } } @media (max-width: 1199px) and (max-height: 600px) { .gallery-showcase .gallery-showcase-list__item { width: 4rem; height: 4rem; } } .send-message { display: grid; grid-template-columns: 1fr 4rem; } .send-message__textarea { height: 6ch; margin-bottom: 0; border-radius: 0.5rem 0 0 0.5rem; border-right: none; min-height: auto; padding: .5rem 1rem .25rem .5rem; } .send-message__button { background: #000e25; color: white; border-radius: 0 0.5rem 0.5rem 0; border: none; outline: none; box-shadow: none; } .messages { margin: 0; list-style: none; } .messages__item { display: block; } .messages__item::after { clear: both; content: ""; display: block; } .message { max-width: 80%; border-radius: 0 0.5rem 0.5rem 0.5rem; border: 2px solid #810d1f; color: #810d1f; padding: .4rem .5rem; margin-bottom: .5rem; display: inline-block; } @media (max-width: 599px) { .message__content { font-size: .8rem; } } .message_me { float: right; margin-left: auto; background: #000e25; color: white; border-color: #000e25; border-radius: 0.5rem 0 0.5rem 0.5rem; } .message_plan { width: 100%; max-width: 100%; background: #000e25; color: white; border-color: #000e25; border-radius: 0; padding: 1rem .5rem; display: grid; grid-gap: 1rem; grid-template-columns: auto 1fr; align-items: center; } .message_plan .message__icon { font-size: 2rem; } .message_doc { padding: .5rem 0; background: none; border: none; } .message_doc .downloads { margin-bottom: 0; } .message_doc.message_me { color: #000e25; } .message_img { height: 15rem; width: 15rem; cursor: pointer; background: #000e25; } .message_img .message__content { opacity: 1; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); } .message_img .message__content:hover { opacity: .5; } .message_event { width: 100%; max-width: 100%; background: #333a45; color: white; border-color: #333a45; border-radius: 0; padding: 1rem .5rem; text-align: center; } .message_time { text-align: center; position: relative; opacity: .75; border: none; color: #333a45; max-width: 100%; width: 100%; } .message_time:after { position: absolute; top: 50%; left: 0; right: 0; content: ""; width: 100%; height: 1px; display: block; background: #333a45; opacity: .24; } .message_time .message__content { position: relative; z-index: 2; display: inline-block; background: white; padding: .5rem; margin: 0; } .message_followed { margin-bottom: 0.125rem; border-radius: 0 0.5rem 0.5rem 0; } .message_followed.message_me { border-radius: 0.5rem 0 0 0.5rem; } .collapse-list { list-style: none; padding: 0; } .collapse-list__button { margin-bottom: 0; width: 100%; text-align: left; } .collapse-list__icon { float: right; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); } .collapse-list__content { height: 0; overflow: hidden; } .collapse-list__item_active .collapse-list__content { height: auto; } .newsletter { display: grid; grid-template-columns: repeat(5, 1fr); grid-gap: 1rem; } .table { display: grid; grid-template-columns: 1fr; grid-auto-flow: row; list-style: none; padding: 0; margin: 0; background: white; margin-bottom: 1rem; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .table__row { border-bottom: 1px solid material-color("grey", "200"); list-style-type: none; } .table_mode_card { display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); grid-gap: 1rem; justify-content: start; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); } .table_mode_card .table__row { border: 1px solid material-color("grey", "100"); transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .table_mode_card .table__row_head { display: none; } .table_mode_card .table-row { grid-auto-flow: row; grid-gap: .25rem; padding: .5rem 0 0; } .table_mode_card .table-row__item { padding: 0 .5rem; } .table_mode_card .table-row__item_actions { padding: .5rem .5rem 0 .5rem; background-color: material-color("grey", "200"); grid-auto-flow: column; display: grid; justify-content: space-between; } .table_mode_card .table-row__action_settings { text-align: left; } .table_sortable .table-head__item { cursor: pointer; } .table_sortable .table-head__item:after { padding-left: .25rem; content: '\f0dc'; } .table_sortable .table-head__item_actions { pointer-events: none; } .table_sortable .table-head__item_actions:after { content: none; } .table-head { list-style: none; display: grid; justify-content: stretch; grid-auto-flow: column; padding: .5rem; grid-gap: 1rem; grid-auto-columns: 1fr; align-items: center; margin: 0; background: #333a45; color: #f5f5f5; } .table-head__item_actions { text-align: right; } .table-row { list-style: none; display: grid; justify-content: stretch; grid-auto-flow: column; padding: .5rem; grid-gap: 1rem; margin: 0; grid-auto-columns: 1fr; align-items: center; } .table-row__item_actions { text-align: right; } .table-row__item_input { margin-bottom: none; } .table-row__item_title { font-weight: bold; } .table-row__action { margin-bottom: 0; } .table-row__action_edit:hover { cursor: pointer; } .table-row__action_delete:hover { cursor: pointer; } .table-row__action_settings { opacity: .75; } .table-row__action_settings:hover { opacity: 1; } .table-row-input > input, .table-row-input > .select__placeholder, .table-row-input > .select__value { margin-bottom: 0; } .table-row-input > .select .select__value { margin-bottom: 0; } .paginate { margin-bottom: 2rem; display: grid; grid-template-columns: 1fr auto; align-items: center; grid-gap: 1rem; } .paginate__nav { list-style: none; padding: 0; margin: 0; display: grid; grid-auto-flow: column; align-items: stretch; } .paginate__action { padding: .25rem .5rem; height: 100%; font-weight: bold; cursor: pointer; background: none; border: none; box-shadow: none; font-size: .875rem; } .paginate__action:hover { text-decoration: underline; } .paginate__action_current { pointer-events: none; font-weight: normal; text-decoration: underline; } .paginate__action_ellips { pointer-events: none; font-weight: normal; } .paginate__action_ellips:after { content: '...'; } .paginate__action_disabled { pointer-events: none; opacity: .5; } .picture { width: 15rem; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .picture:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } .picture:hover .picture__overlay { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); opacity: 0.5; } .picture:hover .picture__label { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); opacity: 1; } @media (max-width: 599px) { .picture { max-width: 70vw; } } .picture__link { color: #000e25; text-decoration: none; } .picture__content { position: relative; height: 8.4375rem; text-align: center; } @media (max-width: 599px) { .picture__content { max-height: 39.375vw; } } .picture__img { position: absolute !important; left: 0; right: 0; top: 0; z-index: 1; bottom: 0; height: 100%; width: 100%; -o-object-fit: cover; object-fit: cover; } .picture__overlay { position: absolute; top: 0; left: 0; bottom: 0; height: 100%; width: 100%; background: #000e25; opacity: 0; z-index: 2; } .picture__label { position: absolute; width: 90%; top: 50%; transform: translateY(-50%); left: 5%; text-align: center; opacity: 0; color: #f5f5f5; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; z-index: 3; } .picture__icon { cursor: pointer; position: absolute; top: 0.5rem; color: #f5f5f5; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(255, 255, 255, 0.24); font-size: 1rem; background: none; outline: none; box-shadow: none; border: none; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); z-index: 3; } .picture__icon:hover, .picture__icon_active { color: #bf2336; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(191, 35, 54, 0.24); } .picture__icon_left { left: 0.5rem; } .picture__icon_right { right: 0.5rem; } .pictures-list { list-style: none; padding: 0; margin: 0; width: 100%; white-space: nowrap; overflow-x: auto; padding: 0; } @media (max-width: 599px) { .pictures-list { padding: 0 1rem; } } .pictures-list__item { display: inline-block; padding-right: 1rem; } .upload-box { position: relative; width: 15rem; height: 8.4375rem; background: #333a45; } @media (max-width: 599px) { .upload-box { max-height: 39.375vw; } } .upload-box:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } .upload-box:hover .upload-box__overlay { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); opacity: 1; } .upload-box__overlay { opacity: 0; position: absolute; top: 1%; left: 1%; bottom: 0; height: 98%; width: 98%; border: 2px dashed #f5f5f5; } .upload-box__label { position: absolute; width: 90%; top: 50%; transform: translateY(-50%); left: 4%; text-align: center; color: #f5f5f5; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(255, 255, 255, 0.24); } .upload-box:hover { cursor: pointer; } .consumption-item { padding: 0.5rem; background-color: #ddd; position: relative; color: black; font-weight: bold; font-size: .8rem; width: 7rem; margin: .2rem 0; } .consumption-item__letter { float: right; } .consumption-item:after, .consumption-item:before { content: ""; position: absolute; left: 100%; width: 1rem; height: 50%; } .consumption-item:before { top: 0px; background: linear-gradient(to top right, #ddd 50%, transparent 51%); } .consumption-item:after { bottom: 0px; background: linear-gradient(to bottom right, #ddd 50%, transparent 51%); } .consumption-item_size_small { width: 2rem; } .consumption-item_size_small .consumption-item__info { display: none; } .consumption-item_size_small .consumption-item__letter { float: inherit; } .consumption-graph { margin-bottom: 2rem; } .consumption-graph_ges .consumption-graph__item_color_a { background: #efdcff; opacity: 0.3; } .consumption-graph_ges .consumption-graph__item_color_a:after { background: linear-gradient(to bottom right, #efdcff 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_a:before { background: linear-gradient(to top right, #efdcff 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_b { background: #E6C5FF; opacity: 0.3; } .consumption-graph_ges .consumption-graph__item_color_b:after { background: linear-gradient(to bottom right, #E6C5FF 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_b:before { background: linear-gradient(to top right, #E6C5FF 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_c { background: #D4A7F6; opacity: 0.3; } .consumption-graph_ges .consumption-graph__item_color_c:after { background: linear-gradient(to bottom right, #D4A7F6 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_c:before { background: linear-gradient(to top right, #D4A7F6 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_d { background: #CE96F6; opacity: 0.3; } .consumption-graph_ges .consumption-graph__item_color_d:after { background: linear-gradient(to bottom right, #CE96F6 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_d:before { background: linear-gradient(to top right, #CE96F6 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_e { background: #BC73EE; opacity: 0.3; } .consumption-graph_ges .consumption-graph__item_color_e:after { background: linear-gradient(to bottom right, #BC73EE 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_e:before { background: linear-gradient(to top right, #BC73EE 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_f { background: #AD4CEE; opacity: 0.3; } .consumption-graph_ges .consumption-graph__item_color_f:after { background: linear-gradient(to bottom right, #AD4CEE 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_f:before { background: linear-gradient(to top right, #AD4CEE 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_g { background: #8B19DF; opacity: 0.3; } .consumption-graph_ges .consumption-graph__item_color_g:after { background: linear-gradient(to bottom right, #8B19DF 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_g:before { background: linear-gradient(to top right, #8B19DF 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_size_a { width: 4rem; } .consumption-graph_ges .consumption-graph__item_size_b { width: 5rem; } .consumption-graph_ges .consumption-graph__item_size_c { width: 6rem; } .consumption-graph_ges .consumption-graph__item_size_d { width: 7rem; } .consumption-graph_ges .consumption-graph__item_size_e { width: 8rem; } .consumption-graph_ges .consumption-graph__item_size_f { width: 9rem; } .consumption-graph_ges .consumption-graph__item_size_g { width: 10rem; } .consumption-graph_ges .consumption-graph__item_selected { opacity: 1; } @media (min-width: 900px) { .consumption-graph_ges .consumption-graph__item_size_a { width: 5rem; } .consumption-graph_ges .consumption-graph__item_size_b { width: 6rem; } .consumption-graph_ges .consumption-graph__item_size_c { width: 7rem; } .consumption-graph_ges .consumption-graph__item_size_d { width: 8rem; } .consumption-graph_ges .consumption-graph__item_size_e { width: 9rem; } .consumption-graph_ges .consumption-graph__item_size_f { width: 10rem; } .consumption-graph_ges .consumption-graph__item_size_g { width: 11rem; } } .consumption-graph_dpe .consumption-graph__item_color_a { background: #319A31; opacity: .3; } .consumption-graph_dpe .consumption-graph__item_color_a:after { background: linear-gradient(to bottom right, #319A31 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_a:before { background: linear-gradient(to top right, #319A31 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_b { background: #33CC33; opacity: .3; } .consumption-graph_dpe .consumption-graph__item_color_b:after { background: linear-gradient(to bottom right, #33CC33 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_b:before { background: linear-gradient(to top right, #33CC33 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_c { background: #CCFF33; opacity: .3; } .consumption-graph_dpe .consumption-graph__item_color_c:after { background: linear-gradient(to bottom right, #CCFF33 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_c:before { background: linear-gradient(to top right, #CCFF33 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_d { background: #FFFF00; opacity: .3; } .consumption-graph_dpe .consumption-graph__item_color_d:after { background: linear-gradient(to bottom right, #FFFF00 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_d:before { background: linear-gradient(to top right, #FFFF00 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_e { background: #FFCC00; opacity: .3; } .consumption-graph_dpe .consumption-graph__item_color_e:after { background: linear-gradient(to bottom right, #FFCC00 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_e:before { background: linear-gradient(to top right, #FFCC00 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_f { background: #FF9A33; opacity: .3; } .consumption-graph_dpe .consumption-graph__item_color_f:after { background: linear-gradient(to bottom right, #FF9A33 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_f:before { background: linear-gradient(to top right, #FF9A33 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_g { background: #E40118; opacity: .3; } .consumption-graph_dpe .consumption-graph__item_color_g:after { background: linear-gradient(to bottom right, #E40118 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_g:before { background: linear-gradient(to top right, #E40118 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_size_a { width: 4rem; } .consumption-graph_dpe .consumption-graph__item_size_b { width: 5rem; } .consumption-graph_dpe .consumption-graph__item_size_c { width: 6rem; } .consumption-graph_dpe .consumption-graph__item_size_d { width: 7rem; } .consumption-graph_dpe .consumption-graph__item_size_e { width: 8rem; } .consumption-graph_dpe .consumption-graph__item_size_f { width: 9rem; } .consumption-graph_dpe .consumption-graph__item_size_g { width: 10rem; } .consumption-graph_dpe .consumption-graph__item_selected { opacity: 1; } @media (min-width: 900px) { .consumption-graph_dpe .consumption-graph__item_size_a { width: 5rem; } .consumption-graph_dpe .consumption-graph__item_size_b { width: 6rem; } .consumption-graph_dpe .consumption-graph__item_size_c { width: 7rem; } .consumption-graph_dpe .consumption-graph__item_size_d { width: 8rem; } .consumption-graph_dpe .consumption-graph__item_size_e { width: 9rem; } .consumption-graph_dpe .consumption-graph__item_size_f { width: 10rem; } .consumption-graph_dpe .consumption-graph__item_size_g { width: 11rem; } } .consumption-graph_size_small .consumption-item { width: 2rem; } .consumption-graph_size_small .consumption-item__info { display: none; } .consumption-graph_size_small .consumption-item__letter { float: inherit; } .search-home { width: 100%; } .search-home__main { display: grid; grid-template-columns: minmax(0, 3rem) auto; grid-gap: 1rem; grid-template-areas: "search-home__logo search-home__title"; margin-bottom: 2rem; } .search-home__main h2 { grid-area: search-home__title; align-self: center; margin: 0; } .search-home__main svg { grid-area: search-home__logo; } @media (min-width: 900px) { .search-home__main { display: grid; grid-template-columns: auto; grid-template-areas: "search-home__title"; } .search-home__main svg { display: none; } } .cookie-overlay { position: fixed; bottom: 0; background-color: rgba(0, 0, 0, 0.9); left: 0; right: 0; text-align: center; z-index: 2; color: #f5f5f5; padding: 1rem; font-size: 1rem; line-height: 1rem; } .cookie-overlay button { margin-bottom: 0; } .grecaptcha-badge { display: none; } .block-captcha { text-align: center; padding: 15px; display: block; font-size: 11px; color: #f5f5f5; background-color: #810d1f; } .done { display: inline-block; background: #bf2336; color: white; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .done__brand { padding: 2rem 2rem 1rem 2rem; } .done__brand svg { height: 4rem; fill: white; } .done__baseline { padding: 0 2rem 1rem 2rem; } .done__title { padding: 1rem 2rem; background: white; color: #bf2336; font-size: 2rem; font-weight: bold; } .done__infos { padding: 1rem 2rem 2rem 2rem; } .login { display: grid; grid-template-areas: "header" "form" "img"; grid-template-rows: auto auto 1fr; grid-template-columns: 1fr; min-height: 100vh; } @media (min-width: 600px) { .login { grid-template-areas: "header header" "img form"; grid-template-rows: auto 1fr; grid-template-columns: 2fr 3fr; } } @media (min-width: 900px) { .login { grid-template-areas: "header header" "img form"; grid-template-rows: auto 1fr; grid-template-columns: 1fr 1fr; } } @media (min-width: 1200px) { .login { grid-template-areas: "header header" "img form"; grid-template-rows: auto 1fr; grid-template-columns: 2fr 1fr; } } @media (min-width: 1800px) { .login { grid-template-areas: "header header" "img form"; grid-template-rows: auto 1fr; grid-template-columns: 3fr 1fr; } } .login__form { grid-area: form; align-self: center; padding: 2rem; } .login__header { grid-area: header; margin-bottom: -2rem; } .login__img { grid-area: img; } .visit { display: grid; grid-template-areas: "header header header" "next next next" "actions actions actions" "users conversation infos"; grid-template-rows: auto auto auto 1fr; grid-template-columns: 0 1fr 0; height: 100vh; overflow: hidden; min-height: 0; /* width */ /* Track */ /* Handle */ } .visit ::-webkit-scrollbar { width: calc(.5rem + 4px); height: calc(.5rem + 4px); } .visit ::-webkit-scrollbar-track { box-shadow: none; } .visit ::-webkit-scrollbar-thumb { background: lightblue; border-radius: 10px; border: 2px solid rgba(255, 255, 255, 0.5); } .visit ::-webkit-scrollbar-thumb:hover { background: rgba(51, 58, 69, 0.5); } @media (min-width: 900px) { .visit { grid-template-columns: auto 1fr 0; } } @media (min-width: 1200px) { .visit { grid-template-columns: auto 3fr 2fr; } } @media (min-width: 1800px) { .visit { grid-template-columns: auto 2fr 1fr; } } .visit__header { grid-area: header; margin-bottom: -2rem; } .visit__next { grid-area: next; } @media (max-width: 599px) { .visit__next { display: none; } } .visit__users { grid-area: users; border-right: 1px solid #a2c9e9; overflow-y: auto; display: none; } @media (min-width: 900px) { .visit__users { display: block; padding-left: 2rem; } } @media (max-width: 899px) { .visit__users .user { width: 100%; } } .visit__conversation { grid-area: conversation; max-width: 100%; overflow: hidden; } .visit__infos { grid-area: infos; padding: 2rem; border-left: 1px solid #a2c9e9; overflow-y: auto; display: none; } @media (min-width: 1200px) { .visit__infos { display: block; } } .visit__actions { grid-area: actions; padding: .25rem 1rem; display: grid; grid-template-columns: auto 1fr auto; grid-gap: 1rem; background: #333a45; border-bottom: 2px solid white; } @media (min-width: 1200px) { .visit__actions { display: none; } } .visit__action { margin-bottom: 0; } .visit__action_users { grid-column-start: 1; grid-column-end: 2; } @media (min-width: 900px) { .visit__action_users { display: none; } } .visit__action_infos { grid-column-start: 3; grid-column-end: 4; } @media (min-width: 1200px) { .visit__action_infos { display: none; } } @media (max-width: 899px) { .visit_active_users { grid-template-columns: 1fr 0 0; } } .visit_active_users .visit__users { display: block; } @media (max-width: 899px) { .visit_active_users .visit__infos { display: none; } } @media (max-width: 899px) { .visit_active_users .visit__conversation { display: none; } } @media (max-width: 1199px) { .visit_active_infos { grid-template-columns: 0 1fr 1fr; } } @media (max-width: 899px) { .visit_active_infos { grid-template-columns: 0 0 1fr; } } @media (max-width: 1199px) { .visit_active_infos .visit__infos { display: block; } } @media (max-width: 1199px) { .visit_active_infos .visit__users { display: none; } } @media (max-width: 899px) { .visit_active_infos .visit__conversation { display: none; } } .conversation { display: grid; grid-template-columns: 1fr; grid-template-rows: auto auto 1fr auto auto; grid-template-areas: "context" "planner" "content" "actions" "comment"; height: 100%; width: 100%; min-height: 0; } .conversation__context { grid-area: context; background: #333a45; } @media (max-width: 1199px) { .conversation__context .user { height: 4rem; grid-template-columns: 4rem 1fr 2rem 4px; } .conversation__context .user__context { font-size: 0.8rem; } .conversation__context .user__name { font-size: 1rem; } } @media (max-width: 599px) { .conversation__context .user { height: 2rem; grid-template-columns: 2rem 1fr 2rem 4px; } .conversation__context .user__context { font-size: 0.8rem; } .conversation__context .user__name { font-size: 1rem; } } .conversation__planner { grid-area: planner; background: #000e25; display: grid; grid-template-columns: auto auto auto; grid-gap: .5rem; border-bottom: 2px solid white; padding: .25rem .5rem; } @media (min-width: 600px) { .conversation__planner { grid-gap: 1rem; padding: .25rem 1rem; grid-template-columns: 1fr 1fr auto; } } .conversation__planner .button, .conversation__planner .main-header__collapse, .conversation__planner .visit__action { margin-bottom: 0; } .conversation__content { grid-area: content; background: white; overflow: auto; padding: 2rem .5rem; } @media (min-width: 600px) { .conversation__content { padding: 2rem 1rem; } } .conversation__actions { border-top: 2px solid white; grid-area: actions; background: #333a45; } .conversation__actions .button, .conversation__actions .main-header__collapse, .conversation__actions .visit__action { margin-bottom: 0; } .conversation__comment { grid-area: comment; background: #a2c9e9; padding: .25rem .5rem; } @media (min-width: 600px) { .conversation__comment { padding: .25rem 1rem; } } @media (max-width: 599px) { .conversation__comment .send-message__textarea { height: 4ch; } } .landing { display: grid; grid-gap: 4rem; grid-row-gap: 0; grid-template-areas: "infos" "sidebar" "more"; } @media (min-width: 900px) { .landing { grid-template-columns: 3fr 2fr; grid-template-areas: "infos sidebar" "more sidebar"; } } .landing__infos { grid-area: infos; } .landing__sidebar { grid-area: sidebar; } .landing__more { grid-area: more; }
source/css/main.css
========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */ @import url("https://fonts.googleapis.com/css?family=Merriweather:300,400"); html, .main-header .main-search, .main-header__nav { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers. */ body { margin: 0; } /** * Render the `main` element consistently in IE. */ main { display: block; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; margin: 0.67em 0; } /* Grouping content ========================================================================== */ /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /* Text-level semantics ========================================================================== */ /** * Remove the gray background on active links in IE 10. */ a { background-color: transparent; } /** * 1. Remove the bottom border in Chrome 57- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Remove the border on images inside links in IE 10. */ img { border-style: none; } /* Forms ========================================================================== */ /** * 1. Change the font styles in all browsers. * 2. Remove the margin in Firefox and Safari. */ button, input, .select__placeholder, .select__value, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. * 1. Show the overflow in Edge. */ button, input, .select__placeholder, .select__value { /* 1 */ overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * Correct the inability to style clickable types in iOS and Safari. */ button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } /** * Remove the inner border and padding in Firefox. */ button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } /** * Restore the focus styles unset by the previous rule. */ button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Correct the padding in Firefox. */ fieldset { padding: 0.35em 0.75em 0.625em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. */ legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ } /** * Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { vertical-align: baseline; } /** * Remove the default vertical scrollbar in IE 10+. */ textarea { overflow: auto; } /** * 1. Add the correct box sizing in IE 10. * 2. Remove the padding in IE 10. */ [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ } /** * Remove the inner padding in Chrome and Safari on macOS. */ [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /* Interactive ========================================================================== */ /* * Add the correct display in Edge, IE 10+, and Firefox. */ details { display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* Misc ========================================================================== */ /** * Add the correct display in IE 10+. */ template { display: none; } /** * Add the correct display in IE 10. */ [hidden] { display: none; } /* This CSS resource incorporates links to font software which is the valuable copyrighted property of Monotype and/or its suppliers. You may not attempt to copy, install, redistribute, convert, modify or reverse engineer this font software. Please contact Monotype with any questions regarding Web Fonts: http://www.fonts.com */ @font-face { font-family: "Avenir Next"; font-weight: 400; font-style: italic; src: url("./webfonts/avenir-next/1418209/13d5e55c-d5fa-4ad6-b15d-21fb8904fb3d.eot?#iefix"); src: url("./webfonts/avenir-next/1418209/13d5e55c-d5fa-4ad6-b15d-21fb8904fb3d.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1418209/2778e433-066c-4cac-b222-0c9e7a88705b.woff2") format("woff2"), url("./webfonts/avenir-next/1418209/11f1dd36-9ab1-41bd-a729-c270ba1a8b56.woff") format("woff"), url("./webfonts/avenir-next/1418209/79eb46fd-f39d-452d-9877-42856489806b.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 200; font-style: normal; src: url("./webfonts/avenir-next/1437336/b0751211-e805-4138-b7f2-a31031582ce2.eot?#iefix"); src: url("./webfonts/avenir-next/1437336/b0751211-e805-4138-b7f2-a31031582ce2.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437336/178ff15e-1d83-46d6-a191-80d443177813.woff2") format("woff2"), url("./webfonts/avenir-next/1437336/6a091542-e5b3-4c09-ad72-8aed56a6581e.woff") format("woff"), url("./webfonts/avenir-next/1437336/4130ee5f-67da-4bcd-bde2-e97df5e49432.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 200; font-style: italic; src: url("./webfonts/avenir-next/1437346/f89e2b09-b4b9-49f7-b2bd-f3c1132027ae.eot?#iefix"); src: url("./webfonts/avenir-next/1437346/f89e2b09-b4b9-49f7-b2bd-f3c1132027ae.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437346/76fbbcea-1a18-431c-b538-3e25c93115bb.woff2") format("woff2"), url("./webfonts/avenir-next/1437346/2bf2aec1-8e1e-4ffd-838c-1941c424fca6.woff") format("woff"), url("./webfonts/avenir-next/1437346/0f9a3482-d166-4d11-bd70-f9c4de2e81c3.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 300; font-style: italic; src: url("./webfonts/avenir-next/1437366/4f7a596f-ebd3-4878-b9a2-2270979be54e.eot?#iefix"); src: url("./webfonts/avenir-next/1437366/4f7a596f-ebd3-4878-b9a2-2270979be54e.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437366/8722490e-ea06-43dc-8215-3223d7ee0c2a.woff2") format("woff2"), url("./webfonts/avenir-next/1437366/d3d71182-7f4a-4444-ad5f-63148a660fdd.woff") format("woff"), url("./webfonts/avenir-next/1437366/ffc88167-d8d0-4e55-8579-99ce9043bc02.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 100; font-style: normal; src: url("./webfonts/avenir-next/1437416/1c2faa72-b1b1-421e-bc47-43ebd67cc8bd.eot?#iefix"); src: url("./webfonts/avenir-next/1437416/1c2faa72-b1b1-421e-bc47-43ebd67cc8bd.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437416/599179d8-2203-4a9f-b271-010a707271dc.woff2") format("woff2"), url("./webfonts/avenir-next/1437416/3b0370cd-39d6-4a24-9c65-60787db0ebe0.woff") format("woff"), url("./webfonts/avenir-next/1437416/55f63dc4-546d-4886-95bd-d2360a19f485.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 100; font-style: italic; src: url("./webfonts/avenir-next/1437426/6fa076f5-d06c-42d4-8d89-5c6cbcba5e08.eot?#iefix"); src: url("./webfonts/avenir-next/1437426/6fa076f5-d06c-42d4-8d89-5c6cbcba5e08.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437426/d10881b9-2256-404c-89f2-831585768c2f.woff2") format("woff2"), url("./webfonts/avenir-next/1437426/1100ed6a-7048-4688-8ee4-d6d8a958f0f6.woff") format("woff"), url("./webfonts/avenir-next/1437426/5619e9e4-e3c7-47ba-b6b7-36af50869e51.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 800; font-style: normal; src: url("./webfonts/avenir-next/1437456/aa8f537e-7081-4c0e-9236-0f9fcfac4541.eot?#iefix"); src: url("./webfonts/avenir-next/1437456/aa8f537e-7081-4c0e-9236-0f9fcfac4541.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437456/89f00a92-1c94-43f4-9b5d-a9a7d3573805.woff2") format("woff2"), url("./webfonts/avenir-next/1437456/97f8a201-6c8c-4ab9-9427-7dac9cb31534.woff") format("woff"), url("./webfonts/avenir-next/1437456/7e15ebeb-7336-4881-b9fd-14d423ae42d3.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 800; font-style: italic; src: url("./webfonts/avenir-next/1437466/30b26cb3-ecb5-4b15-bea0-7f254d2dca26.eot?#iefix"); src: url("./webfonts/avenir-next/1437466/30b26cb3-ecb5-4b15-bea0-7f254d2dca26.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437466/4846d8fe-58cc-4a97-a866-d20c5a5344b9.woff2") format("woff2"), url("./webfonts/avenir-next/1437466/70d0d6c1-91be-42b2-a798-f0ce873c2dfb.woff") format("woff"), url("./webfonts/avenir-next/1437466/414a2baf-242d-43dc-a989-a1152ee757dd.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 600; font-style: normal; src: url("./webfonts/avenir-next/1437516/47d79f32-82c5-4a74-9646-5150297aabc1.eot?#iefix"); src: url("./webfonts/avenir-next/1437516/47d79f32-82c5-4a74-9646-5150297aabc1.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437516/249228f0-61ac-40cc-a5a5-5609c9816e3f.woff2") format("woff2"), url("./webfonts/avenir-next/1437516/efba18ed-80cc-49c4-997a-fbb140739d19.woff") format("woff"), url("./webfonts/avenir-next/1437516/750a20ec-9242-42a8-b3bd-c4dcec552196.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 600; font-style: italic; src: url("./webfonts/avenir-next/1437526/03906540-90b1-441e-a4c3-bb8ea6d48d92.eot?#iefix"); src: url("./webfonts/avenir-next/1437526/03906540-90b1-441e-a4c3-bb8ea6d48d92.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437526/f9210946-ff05-4e2a-b69b-1ee47c087b48.woff2") format("woff2"), url("./webfonts/avenir-next/1437526/88d0c4db-4ea2-4c9c-ad42-a8e0414a57ee.woff") format("woff"), url("./webfonts/avenir-next/1437526/030bb498-6ed5-4b99-b2d5-a0c03cc387ca.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 500; font-style: italic; src: url("./webfonts/avenir-next/1437546/78602372-a7c1-4831-a684-9c53defb7b8c.eot?#iefix"); src: url("./webfonts/avenir-next/1437546/78602372-a7c1-4831-a684-9c53defb7b8c.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437546/43571193-6de1-4dac-b2a5-e8365cb9dc0e.woff2") format("woff2"), url("./webfonts/avenir-next/1437546/8be8a73f-6804-4351-b8e1-ff88ed20425b.woff") format("woff"), url("./webfonts/avenir-next/1437546/0c7fb132-3d46-49ce-ad27-66d5a5d279c2.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 700; font-style: italic; src: url("./webfonts/avenir-next/1437566/4d86bb3d-6b02-4f17-888f-7cb71771ff9b.eot?#iefix"); src: url("./webfonts/avenir-next/1437566/4d86bb3d-6b02-4f17-888f-7cb71771ff9b.eot?#iefix") format("eot"), url("./webfonts/avenir-next/1437566/0511f8d4-c152-4b37-94a3-9723de223de8.woff2") format("woff2"), url("./webfonts/avenir-next/1437566/0ad05680-6397-4845-b42d-0a6564e3f923.woff") format("woff"), url("./webfonts/avenir-next/1437566/00a60fb6-157d-4cea-a057-90dc75a31998.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 700; font-style: normal; src: url("./webfonts/avenir-next/5547488/249629a9-7eeb-4ef1-bd0f-3f464d2257aa.eot?#iefix"); src: url("./webfonts/avenir-next/5547488/249629a9-7eeb-4ef1-bd0f-3f464d2257aa.eot?#iefix") format("eot"), url("./webfonts/avenir-next/5547488/939c22a5-395d-4322-8e10-9a06994a049b.woff2") format("woff2"), url("./webfonts/avenir-next/5547488/6b0c3122-1e0e-489b-976d-489d0f14238f.woff") format("woff"), url("./webfonts/avenir-next/5547488/cf6e881d-28ef-4134-8c85-2dd7c582167f.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 300; font-style: normal; src: url("./webfonts/avenir-next/5547492/cdc20d2f-9fca-45c7-b1fc-8ad9349fdb07.eot?#iefix"); src: url("./webfonts/avenir-next/5547492/cdc20d2f-9fca-45c7-b1fc-8ad9349fdb07.eot?#iefix") format("eot"), url("./webfonts/avenir-next/5547492/99ac204e-9161-4d36-bea4-5c284f13b149.woff2") format("woff2"), url("./webfonts/avenir-next/5547492/939ea1ee-df6f-4b5a-9033-1d0ad0253f4c.woff") format("woff"), url("./webfonts/avenir-next/5547492/842830a4-9140-4e08-9e5e-3ce5cb20823e.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 400; font-style: normal; src: url("./webfonts/avenir-next/5575910/bdbde971-2f8c-423e-9757-a650ed39b89a.eot?#iefix"); src: url("./webfonts/avenir-next/5575910/bdbde971-2f8c-423e-9757-a650ed39b89a.eot?#iefix") format("eot"), url("./webfonts/avenir-next/5575910/667c016c-b9fc-43e9-8f64-c980e005c9c5.woff2") format("woff2"), url("./webfonts/avenir-next/5575910/35148b49-bfae-48a2-b0da-6a7d3ae60569.woff") format("woff"), url("./webfonts/avenir-next/5575910/7fcb1e65-7d41-4bc3-b72d-e3d76bc2d0bb.ttf") format("truetype"); } @font-face { font-family: "Avenir Next"; font-weight: 500; font-style: normal; src: url("./webfonts/avenir-next/5609666/e7f2aaac-99c4-4e47-9035-face61b84a5b.eot?#iefix"); src: url("./webfonts/avenir-next/5609666/e7f2aaac-99c4-4e47-9035-face61b84a5b.eot?#iefix") format("eot"), url("./webfonts/avenir-next/5609666/52c2b40c-bc85-42fe-a985-8ec7d94e8f1f.woff2") format("woff2"), url("./webfonts/avenir-next/5609666/2b8458d6-0e51-4a5c-b28e-b141ec37a5d4.woff") format("woff"), url("./webfonts/avenir-next/5609666/7cd6941d-1866-4915-9e90-7a4c0ca27241.ttf") format("truetype"); } html, .main-header .main-search, .main-header__nav { color: #000e25; } ::selection { color: #000e25; background: rgba(0, 14, 37, 0.16); } html, .main-header .main-search, .main-header__nav { font-size: 16px; } * { box-sizing: border-box; } html, .main-header .main-search, .main-header__nav { font-family: "Avenir Next", sans-serif; } .typo, .project__match h1, .hero-home__title > * { font-family: "Avenir Next", sans-serif; } .typo_secondary, h1, h2, h3, .hero-home__title, h4, .hero-home__form h1, .hero-home__form h2, .hero-home__form h3, .hero-home__form .hero-home__title, .hero-home__form h4, .market-enter__title, h5, .user_big .user__name, .sidebar-project__header-title, h6, .modal__header, .main-footer__title, .titling__title, .user__name { font-family: "Merriweather", serif; } html, .main-header .main-search, .main-header__nav { font-weight: 400; letter-spacing: 0.03125rem; } h1, h2, h3, .hero-home__title, h4, .hero-home__form h1, .hero-home__form h2, .hero-home__form h3, .hero-home__form .hero-home__title, .hero-home__form h4, .market-enter__title, h5, .user_big .user__name, .sidebar-project__header-title, h6, .modal__header, .main-footer__title, .titling__title { margin-top: 0; margin-bottom: 2rem; } h1 { font-weight: 300; font-size: 6rem; letter-spacing: -0.09375rem; } h2 { font-weight: 300; font-size: 3.75rem; letter-spacing: -0.03125rem; } h3, .hero-home__title { font-weight: 400; font-size: 3rem; letter-spacing: 0rem; } h4, .hero-home__form h1, .hero-home__form h2, .hero-home__form h3, .hero-home__form .hero-home__title, .hero-home__form h4, .market-enter__title { font-weight: 400; font-size: 2.125rem; letter-spacing: 0.01563rem; } h5, .user_big .user__name, .sidebar-project__header-title { font-weight: 400; font-size: 1.5rem; letter-spacing: 0rem; } h6, .modal__header, .main-footer__title, .titling__title { font-weight: 500; font-size: 1.25rem; letter-spacing: 0.00937rem; } .subtitle, .list_big, .tooltip:after, [data-tooltip]:after, .snack__title, .sidebar-project__header-context, .subtitle-1, .user_big .user__context, .titling__subtitle, [subtitle], [subtitle-1] { font-weight: 400; font-size: 1rem; letter-spacing: 0.00937rem; margin-bottom: 1rem; } .subtitle-2, [subtitle-2] { font-weight: 500; font-size: 0.875rem; letter-spacing: 0.00625rem; margin-bottom: 1rem; } .body, .select__list-item, .autocomplete__list-item, .downloads__title, .message__content, .body-1, [body], [body-1] { font-weight: 400; font-size: 1rem; letter-spacing: 0.03125rem; } .body-2, .snack__infos, .user__plan, .agenda__displayed-month, .next-visit__date, .table-row, [body-2] { font-weight: 400; font-size: 0.875rem; letter-spacing: 0.01563rem; } .button, .main-header__collapse, .visit__action, [button], .hero-project__pictures-item-more { font-weight: 500; font-size: 0.875rem; letter-spacing: 0.04688rem; } .caption, .badge, label, .label, .paginate__result, .calendar__item, [caption] { font-weight: 400; font-size: 0.75rem; letter-spacing: 0.025rem; } .overline, .user__context, .next-visit__context, .message_time .message__content, .table-head, [overline] { text-transform: uppercase; font-weight: 400; font-size: 0.625rem; letter-spacing: 0.09375rem; margin-bottom: 0.5rem; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } textarea { resize: vertical; } /* Usage Examples .my-level-1-heading-class { @include text-crop; // Will use default line height of 1.3 font-size: 48px; margin: 0 0 0 16px; } .my-level-2-heading-class { @include text-crop; // Will use default line height of 1.3 font-size: 32px; // Don't need to change any settings, will work with any font size automatically margin: 0 0 0 16px; } .my-body-copy-class { @include text-crop($line-height: 2); // Larger line height desired, set the line height via the mixin font-size: 16px; } // Sometimes depending on the font-size, the rendering, the browser, etc. you may need to tweak the output. // You can adjust the top and bottom cropping when invoking the component using the $top-adjustment and $bottom-adjustment settings .slight-adjustment-needed { @include text-crop($top-adjustment: -0.5px, $bottom-adjustment: 2px); font-size: 17px; } .dont-do-this { @include text-crop; font-size: 16px; line-height: 3; // DO NOT set line height outside of the mixin, the mixin needs the line height value to calculate the crop correctly } */ /*! * Font Awesome Free 5.0.1 by @fontawesome - http://fontawesome.com * License - http://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) */ .fa, .button [class*="fa-"], .main-header__collapse [class*="fa-"], .visit__action [class*="fa-"], .modal__close, .snack__close, .select__icon, .main-header__collapse, .user__like, .project__like_active, .sidebar-project__header-like_active, .agenda__icon, .send-message__icon, .message__icon, .collapse-list__icon, .table_sortable .table-head__item:after, .table-row__action_settings > *, .paginate__action_start, .paginate__action_prev, .paginate__action_next, .paginate__action_end, .picture__icon_active, .fas, .far, .project__like, .sidebar-project__header-like, .picture__icon, .fal, .fab { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; line-height: 1; } .fa-lg { font-size: 1.33333em; line-height: 0.75em; vertical-align: -.0667em; } .fa-xs { font-size: .75em; } .fa-sm { font-size: .875em; } .fa-1x { font-size: 1em; } .fa-2x { font-size: 2em; } .fa-3x { font-size: 3em; } .fa-4x { font-size: 4em; } .fa-5x { font-size: 5em; } .fa-6x { font-size: 6em; } .fa-7x { font-size: 7em; } .fa-8x { font-size: 8em; } .fa-9x { font-size: 9em; } .fa-10x { font-size: 10em; } .fa-fw { text-align: center; width: 1.25em; } .fa-ul { list-style-type: none; margin-left: 2.5em; padding-left: 0; } .fa-ul > li { position: relative; } .fa-li { left: -2em; position: absolute; text-align: center; width: 2em; line-height: inherit; } .fa-border { border: solid 0.08em #eee; border-radius: .1em; padding: .2em .25em .15em; } .fa-pull-left { float: left; } .fa-pull-right { float: right; } .fa.fa-pull-left, .button .fa-pull-left[class*="fa-"], .main-header__collapse .fa-pull-left[class*="fa-"], .visit__action .fa-pull-left[class*="fa-"], .fa-pull-left.modal__close, .fa-pull-left.snack__close, .fa-pull-left.select__icon, .fa-pull-left.main-header__collapse, .fa-pull-left.user__like, .fa-pull-left.project__like_active, .fa-pull-left.sidebar-project__header-like_active, .fa-pull-left.agenda__icon, .fa-pull-left.send-message__icon, .fa-pull-left.message__icon, .fa-pull-left.collapse-list__icon, .table_sortable .fa-pull-left.table-head__item:after, .table-row__action_settings > .fa-pull-left, .fa-pull-left.paginate__action_start, .fa-pull-left.paginate__action_prev, .fa-pull-left.paginate__action_next, .fa-pull-left.paginate__action_end, .fa-pull-left.picture__icon_active, .fas.fa-pull-left, .far.fa-pull-left, .fa-pull-left.project__like, .fa-pull-left.sidebar-project__header-like, .fa-pull-left.picture__icon, .fal.fa-pull-left, .fab.fa-pull-left { margin-right: .3em; } .fa.fa-pull-right, .button .fa-pull-right[class*="fa-"], .main-header__collapse .fa-pull-right[class*="fa-"], .visit__action .fa-pull-right[class*="fa-"], .fa-pull-right.modal__close, .fa-pull-right.snack__close, .fa-pull-right.select__icon, .fa-pull-right.main-header__collapse, .fa-pull-right.user__like, .fa-pull-right.project__like_active, .fa-pull-right.sidebar-project__header-like_active, .fa-pull-right.agenda__icon, .fa-pull-right.send-message__icon, .fa-pull-right.message__icon, .fa-pull-right.collapse-list__icon, .table_sortable .fa-pull-right.table-head__item:after, .table-row__action_settings > .fa-pull-right, .fa-pull-right.paginate__action_start, .fa-pull-right.paginate__action_prev, .fa-pull-right.paginate__action_next, .fa-pull-right.paginate__action_end, .fa-pull-right.picture__icon_active, .fas.fa-pull-right, .far.fa-pull-right, .fa-pull-right.project__like, .fa-pull-right.sidebar-project__header-like, .fa-pull-right.picture__icon, .fal.fa-pull-right, .fab.fa-pull-right { margin-left: .3em; } .fa-spin { animation: fa-spin 2s infinite linear; } .fa-pulse { animation: fa-spin 1s infinite steps(8); } @keyframes fa-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .fa-rotate-90 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; transform: rotate(90deg); } .fa-rotate-180, .main-header_active .main-header__collapse, .collapse-list__item_active .collapse-list__icon { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; transform: rotate(180deg); } .fa-rotate-270 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; transform: rotate(270deg); } .fa-flip-horizontal { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; transform: scale(-1, 1); } .fa-flip-vertical { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; transform: scale(1, -1); } .fa-flip-horizontal.fa-flip-vertical { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; transform: scale(-1, -1); } :root .fa-rotate-90, :root .fa-rotate-180, :root .main-header_active .main-header__collapse, .main-header_active :root .main-header__collapse, :root .collapse-list__item_active .collapse-list__icon, .collapse-list__item_active :root .collapse-list__icon, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical { filter: none; } .fa-stack { display: inline-block; height: 2em; line-height: 2em; position: relative; vertical-align: middle; width: 2em; } .fa-stack-1x, .fa-stack-2x { left: 0; position: absolute; text-align: center; width: 100%; } .fa-stack-1x { line-height: inherit; } .fa-stack-2x { font-size: 2em; } .fa-inverse { color: #fff; } /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ .fa-500px:before { content: "\f26e"; } .fa-accessible-icon:before { content: "\f368"; } .fa-accusoft:before { content: "\f369"; } .fa-address-book:before { content: "\f2b9"; } .fa-address-card:before { content: "\f2bb"; } .fa-adjust:before { content: "\f042"; } .fa-adn:before { content: "\f170"; } .fa-adversal:before { content: "\f36a"; } .fa-affiliatetheme:before { content: "\f36b"; } .fa-algolia:before { content: "\f36c"; } .fa-align-center:before { content: "\f037"; } .fa-align-justify:before { content: "\f039"; } .fa-align-left:before { content: "\f036"; } .fa-align-right:before { content: "\f038"; } .fa-amazon:before { content: "\f270"; } .fa-ambulance:before { content: "\f0f9"; } .fa-american-sign-language-interpreting:before { content: "\f2a3"; } .fa-amilia:before { content: "\f36d"; } .fa-anchor:before { content: "\f13d"; } .fa-android:before { content: "\f17b"; } .fa-angellist:before { content: "\f209"; } .fa-angle-double-down:before { content: "\f103"; } .fa-angle-double-left:before, .paginate__action_start:before { content: "\f100"; } .fa-angle-double-right:before, .paginate__action_end:before { content: "\f101"; } .fa-angle-double-up:before { content: "\f102"; } .fa-angle-down:before { content: "\f107"; } .fa-angle-left:before, .paginate__action_prev:before { content: "\f104"; } .fa-angle-right:before, .paginate__action_next:before { content: "\f105"; } .fa-angle-up:before { content: "\f106"; } .fa-angrycreative:before { content: "\f36e"; } .fa-angular:before { content: "\f420"; } .fa-app-store:before { content: "\f36f"; } .fa-app-store-ios:before { content: "\f370"; } .fa-apper:before { content: "\f371"; } .fa-apple:before { content: "\f179"; } .fa-apple-pay:before { content: "\f415"; } .fa-archive:before { content: "\f187"; } .fa-arrow-alt-circle-down:before { content: "\f358"; } .fa-arrow-alt-circle-left:before { content: "\f359"; } .fa-arrow-alt-circle-right:before { content: "\f35a"; } .fa-arrow-alt-circle-up:before { content: "\f35b"; } .fa-arrow-circle-down:before { content: "\f0ab"; } .fa-arrow-circle-left:before { content: "\f0a8"; } .fa-arrow-circle-right:before { content: "\f0a9"; } .fa-arrow-circle-up:before { content: "\f0aa"; } .fa-arrow-down:before { content: "\f063"; } .fa-arrow-left:before { content: "\f060"; } .fa-arrow-right:before { content: "\f061"; } .fa-arrow-up:before { content: "\f062"; } .fa-arrows-alt:before { content: "\f0b2"; } .fa-arrows-alt-h:before { content: "\f337"; } .fa-arrows-alt-v:before { content: "\f338"; } .fa-assistive-listening-systems:before { content: "\f2a2"; } .fa-asterisk:before { content: "\f069"; } .fa-asymmetrik:before { content: "\f372"; } .fa-at:before { content: "\f1fa"; } .fa-audible:before { content: "\f373"; } .fa-audio-description:before { content: "\f29e"; } .fa-autoprefixer:before { content: "\f41c"; } .fa-avianex:before { content: "\f374"; } .fa-aviato:before { content: "\f421"; } .fa-aws:before { content: "\f375"; } .fa-backward:before { content: "\f04a"; } .fa-balance-scale:before { content: "\f24e"; } .fa-ban:before { content: "\f05e"; } .fa-bandcamp:before { content: "\f2d5"; } .fa-barcode:before { content: "\f02a"; } .fa-bars:before { content: "\f0c9"; } .fa-bath:before { content: "\f2cd"; } .fa-battery-empty:before { content: "\f244"; } .fa-battery-full:before { content: "\f240"; } .fa-battery-half:before { content: "\f242"; } .fa-battery-quarter:before { content: "\f243"; } .fa-battery-three-quarters:before { content: "\f241"; } .fa-bed:before { content: "\f236"; } .fa-beer:before { content: "\f0fc"; } .fa-behance:before { content: "\f1b4"; } .fa-behance-square:before { content: "\f1b5"; } .fa-bell:before { content: "\f0f3"; } .fa-bell-slash:before { content: "\f1f6"; } .fa-bicycle:before { content: "\f206"; } .fa-bimobject:before { content: "\f378"; } .fa-binoculars:before { content: "\f1e5"; } .fa-birthday-cake:before { content: "\f1fd"; } .fa-bitbucket:before { content: "\f171"; } .fa-bitcoin:before { content: "\f379"; } .fa-bity:before { content: "\f37a"; } .fa-black-tie:before { content: "\f27e"; } .fa-blackberry:before { content: "\f37b"; } .fa-blind:before { content: "\f29d"; } .fa-blogger:before { content: "\f37c"; } .fa-blogger-b:before { content: "\f37d"; } .fa-bluetooth:before { content: "\f293"; } .fa-bluetooth-b:before { content: "\f294"; } .fa-bold:before { content: "\f032"; } .fa-bolt:before { content: "\f0e7"; } .fa-bomb:before { content: "\f1e2"; } .fa-book:before { content: "\f02d"; } .fa-bookmark:before { content: "\f02e"; } .fa-braille:before { content: "\f2a1"; } .fa-briefcase:before { content: "\f0b1"; } .fa-btc:before { content: "\f15a"; } .fa-bug:before { content: "\f188"; } .fa-building:before { content: "\f1ad"; } .fa-bullhorn:before, .message_plan .message__icon:before { content: "\f0a1"; } .fa-bullseye:before { content: "\f140"; } .fa-buromobelexperte:before { content: "\f37f"; } .fa-bus:before { content: "\f207"; } .fa-buysellads:before { content: "\f20d"; } .fa-calculator:before { content: "\f1ec"; } .fa-calendar:before { content: "\f133"; } .fa-calendar-alt:before { content: "\f073"; } .fa-calendar-check:before { content: "\f274"; } .fa-calendar-minus:before { content: "\f272"; } .fa-calendar-plus:before { content: "\f271"; } .fa-calendar-times:before { content: "\f273"; } .fa-camera:before { content: "\f030"; } .fa-camera-retro:before { content: "\f083"; } .fa-car:before { content: "\f1b9"; } .fa-caret-down:before { content: "\f0d7"; } .fa-caret-left:before { content: "\f0d9"; } .fa-caret-right:before { content: "\f0da"; } .fa-caret-square-down:before { content: "\f150"; } .fa-caret-square-left:before { content: "\f191"; } .fa-caret-square-right:before { content: "\f152"; } .fa-caret-square-up:before { content: "\f151"; } .fa-caret-up:before { content: "\f0d8"; } .fa-cart-arrow-down:before { content: "\f218"; } .fa-cart-plus:before { content: "\f217"; } .fa-cc-amex:before { content: "\f1f3"; } .fa-cc-apple-pay:before { content: "\f416"; } .fa-cc-diners-club:before { content: "\f24c"; } .fa-cc-discover:before { content: "\f1f2"; } .fa-cc-jcb:before { content: "\f24b"; } .fa-cc-mastercard:before { content: "\f1f1"; } .fa-cc-paypal:before { content: "\f1f4"; } .fa-cc-stripe:before { content: "\f1f5"; } .fa-cc-visa:before { content: "\f1f0"; } .fa-centercode:before { content: "\f380"; } .fa-certificate:before { content: "\f0a3"; } .fa-chart-area:before { content: "\f1fe"; } .fa-chart-bar:before { content: "\f080"; } .fa-chart-line:before { content: "\f201"; } .fa-chart-pie:before { content: "\f200"; } .fa-check:before { content: "\f00c"; } .fa-check-circle:before { content: "\f058"; } .fa-check-square:before { content: "\f14a"; } .fa-chevron-circle-down:before { content: "\f13a"; } .fa-chevron-circle-left:before { content: "\f137"; } .fa-chevron-circle-right:before { content: "\f138"; } .fa-chevron-circle-up:before { content: "\f139"; } .fa-chevron-down:before, .select__icon:before, .main-header__collapse:before, .collapse-list__icon:before { content: "\f078"; } .fa-chevron-left:before, .agenda__icon_prev:before { content: "\f053"; } .fa-chevron-right:before, .agenda__icon_next:before { content: "\f054"; } .fa-chevron-up:before { content: "\f077"; } .fa-child:before { content: "\f1ae"; } .fa-chrome:before { content: "\f268"; } .fa-circle:before { content: "\f111"; } .fa-circle-notch:before { content: "\f1ce"; } .fa-clipboard:before { content: "\f328"; } .fa-clock:before { content: "\f017"; } .fa-clone:before { content: "\f24d"; } .fa-closed-captioning:before { content: "\f20a"; } .fa-cloud:before { content: "\f0c2"; } .fa-cloud-download-alt:before { content: "\f381"; } .fa-cloud-upload-alt:before { content: "\f382"; } .fa-cloudscale:before { content: "\f383"; } .fa-cloudsmith:before { content: "\f384"; } .fa-cloudversify:before { content: "\f385"; } .fa-code:before { content: "\f121"; } .fa-code-branch:before { content: "\f126"; } .fa-codepen:before { content: "\f1cb"; } .fa-codiepie:before { content: "\f284"; } .fa-coffee:before { content: "\f0f4"; } .fa-cog:before, .table-row__action_settings > :before { content: "\f013"; } .fa-cogs:before { content: "\f085"; } .fa-columns:before { content: "\f0db"; } .fa-comment:before { content: "\f075"; } .fa-comment-alt:before { content: "\f27a"; } .fa-comments:before { content: "\f086"; } .fa-compass:before { content: "\f14e"; } .fa-compress:before { content: "\f066"; } .fa-connectdevelop:before { content: "\f20e"; } .fa-contao:before { content: "\f26d"; } .fa-copy:before { content: "\f0c5"; } .fa-copyright:before { content: "\f1f9"; } .fa-cpanel:before { content: "\f388"; } .fa-creative-commons:before { content: "\f25e"; } .fa-credit-card:before { content: "\f09d"; } .fa-crop:before { content: "\f125"; } .fa-crosshairs:before { content: "\f05b"; } .fa-css3:before { content: "\f13c"; } .fa-css3-alt:before { content: "\f38b"; } .fa-cube:before { content: "\f1b2"; } .fa-cubes:before { content: "\f1b3"; } .fa-cut:before { content: "\f0c4"; } .fa-cuttlefish:before { content: "\f38c"; } .fa-d-and-d:before { content: "\f38d"; } .fa-dashcube:before { content: "\f210"; } .fa-database:before { content: "\f1c0"; } .fa-deaf:before { content: "\f2a4"; } .fa-delicious:before { content: "\f1a5"; } .fa-deploydog:before { content: "\f38e"; } .fa-deskpro:before { content: "\f38f"; } .fa-desktop:before { content: "\f108"; } .fa-deviantart:before { content: "\f1bd"; } .fa-digg:before { content: "\f1a6"; } .fa-digital-ocean:before { content: "\f391"; } .fa-discord:before { content: "\f392"; } .fa-discourse:before { content: "\f393"; } .fa-dochub:before { content: "\f394"; } .fa-docker:before { content: "\f395"; } .fa-dollar-sign:before { content: "\f155"; } .fa-dot-circle:before { content: "\f192"; } .fa-download:before { content: "\f019"; } .fa-draft2digital:before { content: "\f396"; } .fa-dribbble:before { content: "\f17d"; } .fa-dribbble-square:before { content: "\f397"; } .fa-dropbox:before { content: "\f16b"; } .fa-drupal:before { content: "\f1a9"; } .fa-dyalog:before { content: "\f399"; } .fa-earlybirds:before { content: "\f39a"; } .fa-edge:before { content: "\f282"; } .fa-edit:before { content: "\f044"; } .fa-eject:before { content: "\f052"; } .fa-ellipsis-h:before { content: "\f141"; } .fa-ellipsis-v:before { content: "\f142"; } .fa-ember:before { content: "\f423"; } .fa-empire:before { content: "\f1d1"; } .fa-envelope:before { content: "\f0e0"; } .fa-envelope-open:before { content: "\f2b6"; } .fa-envelope-square:before { content: "\f199"; } .fa-envira:before { content: "\f299"; } .fa-eraser:before { content: "\f12d"; } .fa-erlang:before { content: "\f39d"; } .fa-etsy:before { content: "\f2d7"; } .fa-euro-sign:before { content: "\f153"; } .fa-exchange-alt:before { content: "\f362"; } .fa-exclamation:before { content: "\f12a"; } .fa-exclamation-circle:before { content: "\f06a"; } .fa-exclamation-triangle:before { content: "\f071"; } .fa-expand:before { content: "\f065"; } .fa-expand-arrows-alt:before { content: "\f31e"; } .fa-expeditedssl:before { content: "\f23e"; } .fa-external-link-alt:before { content: "\f35d"; } .fa-external-link-square-alt:before { content: "\f360"; } .fa-eye:before { content: "\f06e"; } .fa-eye-dropper:before { content: "\f1fb"; } .fa-eye-slash:before { content: "\f070"; } .fa-facebook:before { content: "\f09a"; } .fa-facebook-f:before { content: "\f39e"; } .fa-facebook-messenger:before { content: "\f39f"; } .fa-facebook-square:before { content: "\f082"; } .fa-fast-backward:before { content: "\f049"; } .fa-fast-forward:before { content: "\f050"; } .fa-fax:before { content: "\f1ac"; } .fa-female:before { content: "\f182"; } .fa-fighter-jet:before { content: "\f0fb"; } .fa-file:before { content: "\f15b"; } .fa-file-alt:before { content: "\f15c"; } .fa-file-archive:before { content: "\f1c6"; } .fa-file-audio:before { content: "\f1c7"; } .fa-file-code:before { content: "\f1c9"; } .fa-file-excel:before { content: "\f1c3"; } .fa-file-image:before { content: "\f1c5"; } .fa-file-pdf:before { content: "\f1c1"; } .fa-file-powerpoint:before { content: "\f1c4"; } .fa-file-video:before { content: "\f1c8"; } .fa-file-word:before { content: "\f1c2"; } .fa-film:before { content: "\f008"; } .fa-filter:before { content: "\f0b0"; } .fa-fire:before { content: "\f06d"; } .fa-fire-extinguisher:before { content: "\f134"; } .fa-firefox:before { content: "\f269"; } .fa-first-order:before { content: "\f2b0"; } .fa-firstdraft:before { content: "\f3a1"; } .fa-flag:before { content: "\f024"; } .fa-flag-checkered:before { content: "\f11e"; } .fa-flask:before { content: "\f0c3"; } .fa-flickr:before { content: "\f16e"; } .fa-fly:before { content: "\f417"; } .fa-folder:before { content: "\f07b"; } .fa-folder-open:before { content: "\f07c"; } .fa-font:before { content: "\f031"; } .fa-font-awesome:before { content: "\f2b4"; } .fa-font-awesome-alt:before { content: "\f35c"; } .fa-font-awesome-flag:before { content: "\f425"; } .fa-fonticons:before { content: "\f280"; } .fa-fonticons-fi:before { content: "\f3a2"; } .fa-fort-awesome:before { content: "\f286"; } .fa-fort-awesome-alt:before { content: "\f3a3"; } .fa-forumbee:before { content: "\f211"; } .fa-forward:before { content: "\f04e"; } .fa-foursquare:before { content: "\f180"; } .fa-free-code-camp:before { content: "\f2c5"; } .fa-freebsd:before { content: "\f3a4"; } .fa-frown:before { content: "\f119"; } .fa-futbol:before { content: "\f1e3"; } .fa-gamepad:before { content: "\f11b"; } .fa-gavel:before { content: "\f0e3"; } .fa-gem:before { content: "\f3a5"; } .fa-genderless:before { content: "\f22d"; } .fa-get-pocket:before { content: "\f265"; } .fa-gg:before { content: "\f260"; } .fa-gg-circle:before { content: "\f261"; } .fa-gift:before { content: "\f06b"; } .fa-git:before { content: "\f1d3"; } .fa-git-square:before { content: "\f1d2"; } .fa-github:before { content: "\f09b"; } .fa-github-alt:before { content: "\f113"; } .fa-github-square:before { content: "\f092"; } .fa-gitkraken:before { content: "\f3a6"; } .fa-gitlab:before { content: "\f296"; } .fa-gitter:before { content: "\f426"; } .fa-glass-martini:before { content: "\f000"; } .fa-glide:before { content: "\f2a5"; } .fa-glide-g:before { content: "\f2a6"; } .fa-globe:before { content: "\f0ac"; } .fa-gofore:before { content: "\f3a7"; } .fa-goodreads:before { content: "\f3a8"; } .fa-goodreads-g:before { content: "\f3a9"; } .fa-google:before { content: "\f1a0"; } .fa-google-drive:before { content: "\f3aa"; } .fa-google-play:before { content: "\f3ab"; } .fa-google-plus:before { content: "\f2b3"; } .fa-google-plus-g:before { content: "\f0d5"; } .fa-google-plus-square:before { content: "\f0d4"; } .fa-google-wallet:before { content: "\f1ee"; } .fa-graduation-cap:before { content: "\f19d"; } .fa-gratipay:before { content: "\f184"; } .fa-grav:before { content: "\f2d6"; } .fa-gripfire:before { content: "\f3ac"; } .fa-grunt:before { content: "\f3ad"; } .fa-gulp:before { content: "\f3ae"; } .fa-h-square:before { content: "\f0fd"; } .fa-hacker-news:before { content: "\f1d4"; } .fa-hacker-news-square:before { content: "\f3af"; } .fa-hand-lizard:before { content: "\f258"; } .fa-hand-paper:before { content: "\f256"; } .fa-hand-peace:before { content: "\f25b"; } .fa-hand-point-down:before { content: "\f0a7"; } .fa-hand-point-left:before { content: "\f0a5"; } .fa-hand-point-right:before { content: "\f0a4"; } .fa-hand-point-up:before { content: "\f0a6"; } .fa-hand-pointer:before { content: "\f25a"; } .fa-hand-rock:before { content: "\f255"; } .fa-hand-scissors:before { content: "\f257"; } .fa-hand-spock:before { content: "\f259"; } .fa-handshake:before { content: "\f2b5"; } .fa-hashtag:before { content: "\f292"; } .fa-hdd:before { content: "\f0a0"; } .fa-heading:before { content: "\f1dc"; } .fa-headphones:before { content: "\f025"; } .fa-heart:before, .user__like:before, .project__like:before, .sidebar-project__header-like:before, .picture__icon_heart:before { content: "\f004"; } .fa-heartbeat:before { content: "\f21e"; } .fa-hire-a-helper:before { content: "\f3b0"; } .fa-history:before { content: "\f1da"; } .fa-home:before { content: "\f015"; } .fa-hooli:before { content: "\f427"; } .fa-hospital:before { content: "\f0f8"; } .fa-hotjar:before { content: "\f3b1"; } .fa-hourglass:before { content: "\f254"; } .fa-hourglass-end:before { content: "\f253"; } .fa-hourglass-half:before { content: "\f252"; } .fa-hourglass-start:before { content: "\f251"; } .fa-houzz:before { content: "\f27c"; } .fa-html5:before { content: "\f13b"; } .fa-hubspot:before { content: "\f3b2"; } .fa-i-cursor:before { content: "\f246"; } .fa-id-badge:before { content: "\f2c1"; } .fa-id-card:before { content: "\f2c2"; } .fa-image:before { content: "\f03e"; } .fa-images:before { content: "\f302"; } .fa-imdb:before { content: "\f2d8"; } .fa-inbox:before { content: "\f01c"; } .fa-indent:before { content: "\f03c"; } .fa-industry:before { content: "\f275"; } .fa-info:before { content: "\f129"; } .fa-info-circle:before { content: "\f05a"; } .fa-instagram:before { content: "\f16d"; } .fa-internet-explorer:before { content: "\f26b"; } .fa-ioxhost:before { content: "\f208"; } .fa-italic:before { content: "\f033"; } .fa-itunes:before { content: "\f3b4"; } .fa-itunes-note:before { content: "\f3b5"; } .fa-jenkins:before { content: "\f3b6"; } .fa-joget:before { content: "\f3b7"; } .fa-joomla:before { content: "\f1aa"; } .fa-js:before { content: "\f3b8"; } .fa-js-square:before { content: "\f3b9"; } .fa-jsfiddle:before { content: "\f1cc"; } .fa-key:before { content: "\f084"; } .fa-keyboard:before { content: "\f11c"; } .fa-keycdn:before { content: "\f3ba"; } .fa-kickstarter:before { content: "\f3bb"; } .fa-kickstarter-k:before { content: "\f3bc"; } .fa-language:before { content: "\f1ab"; } .fa-laptop:before { content: "\f109"; } .fa-laravel:before { content: "\f3bd"; } .fa-lastfm:before { content: "\f202"; } .fa-lastfm-square:before { content: "\f203"; } .fa-leaf:before { content: "\f06c"; } .fa-leanpub:before { content: "\f212"; } .fa-lemon:before { content: "\f094"; } .fa-less:before { content: "\f41d"; } .fa-level-down-alt:before { content: "\f3be"; } .fa-level-up-alt:before { content: "\f3bf"; } .fa-life-ring:before { content: "\f1cd"; } .fa-lightbulb:before { content: "\f0eb"; } .fa-line:before { content: "\f3c0"; } .fa-link:before { content: "\f0c1"; } .fa-linkedin:before { content: "\f08c"; } .fa-linkedin-in:before { content: "\f0e1"; } .fa-linode:before { content: "\f2b8"; } .fa-linux:before { content: "\f17c"; } .fa-lira-sign:before { content: "\f195"; } .fa-list:before { content: "\f03a"; } .fa-list-alt:before { content: "\f022"; } .fa-list-ol:before { content: "\f0cb"; } .fa-list-ul:before { content: "\f0ca"; } .fa-location-arrow:before { content: "\f124"; } .fa-lock:before { content: "\f023"; } .fa-lock-open:before { content: "\f3c1"; } .fa-long-arrow-alt-down:before { content: "\f309"; } .fa-long-arrow-alt-left:before { content: "\f30a"; } .fa-long-arrow-alt-right:before { content: "\f30b"; } .fa-long-arrow-alt-up:before { content: "\f30c"; } .fa-low-vision:before { content: "\f2a8"; } .fa-lyft:before { content: "\f3c3"; } .fa-magento:before { content: "\f3c4"; } .fa-magic:before { content: "\f0d0"; } .fa-magnet:before { content: "\f076"; } .fa-male:before { content: "\f183"; } .fa-map:before { content: "\f279"; } .fa-map-marker:before { content: "\f041"; } .fa-map-marker-alt:before { content: "\f3c5"; } .fa-map-pin:before { content: "\f276"; } .fa-map-signs:before { content: "\f277"; } .fa-mars:before { content: "\f222"; } .fa-mars-double:before { content: "\f227"; } .fa-mars-stroke:before { content: "\f229"; } .fa-mars-stroke-h:before { content: "\f22b"; } .fa-mars-stroke-v:before { content: "\f22a"; } .fa-maxcdn:before { content: "\f136"; } .fa-medapps:before { content: "\f3c6"; } .fa-medium:before { content: "\f23a"; } .fa-medium-m:before { content: "\f3c7"; } .fa-medkit:before { content: "\f0fa"; } .fa-medrt:before { content: "\f3c8"; } .fa-meetup:before { content: "\f2e0"; } .fa-meh:before { content: "\f11a"; } .fa-mercury:before { content: "\f223"; } .fa-microchip:before { content: "\f2db"; } .fa-microphone:before { content: "\f130"; } .fa-microphone-slash:before { content: "\f131"; } .fa-microsoft:before { content: "\f3ca"; } .fa-minus:before { content: "\f068"; } .fa-minus-circle:before { content: "\f056"; } .fa-minus-square:before { content: "\f146"; } .fa-mix:before { content: "\f3cb"; } .fa-mixcloud:before { content: "\f289"; } .fa-mizuni:before { content: "\f3cc"; } .fa-mobile:before { content: "\f10b"; } .fa-mobile-alt:before { content: "\f3cd"; } .fa-modx:before { content: "\f285"; } .fa-monero:before { content: "\f3d0"; } .fa-money-bill-alt:before { content: "\f3d1"; } .fa-moon:before { content: "\f186"; } .fa-motorcycle:before { content: "\f21c"; } .fa-mouse-pointer:before { content: "\f245"; } .fa-music:before { content: "\f001"; } .fa-napster:before { content: "\f3d2"; } .fa-neuter:before { content: "\f22c"; } .fa-newspaper:before { content: "\f1ea"; } .fa-nintendo-switch:before { content: "\f418"; } .fa-node:before { content: "\f419"; } .fa-node-js:before { content: "\f3d3"; } .fa-npm:before { content: "\f3d4"; } .fa-ns8:before { content: "\f3d5"; } .fa-nutritionix:before { content: "\f3d6"; } .fa-object-group:before { content: "\f247"; } .fa-object-ungroup:before { content: "\f248"; } .fa-odnoklassniki:before { content: "\f263"; } .fa-odnoklassniki-square:before { content: "\f264"; } .fa-opencart:before { content: "\f23d"; } .fa-openid:before { content: "\f19b"; } .fa-opera:before { content: "\f26a"; } .fa-optin-monster:before { content: "\f23c"; } .fa-osi:before { content: "\f41a"; } .fa-outdent:before { content: "\f03b"; } .fa-page4:before { content: "\f3d7"; } .fa-pagelines:before { content: "\f18c"; } .fa-paint-brush:before { content: "\f1fc"; } .fa-palfed:before { content: "\f3d8"; } .fa-paper-plane:before, .send-message__icon:before { content: "\f1d8"; } .fa-paperclip:before { content: "\f0c6"; } .fa-paragraph:before { content: "\f1dd"; } .fa-paste:before { content: "\f0ea"; } .fa-patreon:before { content: "\f3d9"; } .fa-pause:before { content: "\f04c"; } .fa-pause-circle:before { content: "\f28b"; } .fa-paw:before { content: "\f1b0"; } .fa-paypal:before { content: "\f1ed"; } .fa-pen-square:before { content: "\f14b"; } .fa-pencil-alt:before { content: "\f303"; } .fa-percent:before { content: "\f295"; } .fa-periscope:before { content: "\f3da"; } .fa-phabricator:before { content: "\f3db"; } .fa-phoenix-framework:before { content: "\f3dc"; } .fa-phone:before { content: "\f095"; } .fa-phone-square:before { content: "\f098"; } .fa-phone-volume:before { content: "\f2a0"; } .fa-pied-piper:before { content: "\f2ae"; } .fa-pied-piper-alt:before { content: "\f1a8"; } .fa-pied-piper-pp:before { content: "\f1a7"; } .fa-pinterest:before { content: "\f0d2"; } .fa-pinterest-p:before { content: "\f231"; } .fa-pinterest-square:before { content: "\f0d3"; } .fa-plane:before { content: "\f072"; } .fa-play:before { content: "\f04b"; } .fa-play-circle:before { content: "\f144"; } .fa-playstation:before { content: "\f3df"; } .fa-plug:before { content: "\f1e6"; } .fa-plus:before { content: "\f067"; } .fa-plus-circle:before { content: "\f055"; } .fa-plus-square:before { content: "\f0fe"; } .fa-podcast:before { content: "\f2ce"; } .fa-pound-sign:before { content: "\f154"; } .fa-power-off:before { content: "\f011"; } .fa-print:before { content: "\f02f"; } .fa-product-hunt:before { content: "\f288"; } .fa-pushed:before { content: "\f3e1"; } .fa-puzzle-piece:before { content: "\f12e"; } .fa-python:before { content: "\f3e2"; } .fa-qq:before { content: "\f1d6"; } .fa-qrcode:before { content: "\f029"; } .fa-question:before { content: "\f128"; } .fa-question-circle:before { content: "\f059"; } .fa-quora:before { content: "\f2c4"; } .fa-quote-left:before { content: "\f10d"; } .fa-quote-right:before { content: "\f10e"; } .fa-random:before { content: "\f074"; } .fa-ravelry:before { content: "\f2d9"; } .fa-react:before { content: "\f41b"; } .fa-rebel:before { content: "\f1d0"; } .fa-recycle:before { content: "\f1b8"; } .fa-red-river:before { content: "\f3e3"; } .fa-reddit:before { content: "\f1a1"; } .fa-reddit-alien:before { content: "\f281"; } .fa-reddit-square:before { content: "\f1a2"; } .fa-redo:before { content: "\f01e"; } .fa-redo-alt:before { content: "\f2f9"; } .fa-registered:before { content: "\f25d"; } .fa-rendact:before { content: "\f3e4"; } .fa-renren:before { content: "\f18b"; } .fa-reply:before { content: "\f3e5"; } .fa-reply-all:before { content: "\f122"; } .fa-replyd:before { content: "\f3e6"; } .fa-resolving:before { content: "\f3e7"; } .fa-retweet:before { content: "\f079"; } .fa-road:before { content: "\f018"; } .fa-rocket:before { content: "\f135"; } .fa-rocketchat:before { content: "\f3e8"; } .fa-rockrms:before { content: "\f3e9"; } .fa-rss:before { content: "\f09e"; } .fa-rss-square:before { content: "\f143"; } .fa-ruble-sign:before { content: "\f158"; } .fa-rupee-sign:before { content: "\f156"; } .fa-safari:before { content: "\f267"; } .fa-sass:before { content: "\f41e"; } .fa-save:before { content: "\f0c7"; } .fa-schlix:before { content: "\f3ea"; } .fa-scribd:before { content: "\f28a"; } .fa-search:before { content: "\f002"; } .fa-search-minus:before { content: "\f010"; } .fa-search-plus:before { content: "\f00e"; } .fa-searchengin:before { content: "\f3eb"; } .fa-sellcast:before { content: "\f2da"; } .fa-sellsy:before { content: "\f213"; } .fa-server:before { content: "\f233"; } .fa-servicestack:before { content: "\f3ec"; } .fa-share:before { content: "\f064"; } .fa-share-alt:before { content: "\f1e0"; } .fa-share-alt-square:before { content: "\f1e1"; } .fa-share-square:before { content: "\f14d"; } .fa-shekel-sign:before { content: "\f20b"; } .fa-shield-alt:before { content: "\f3ed"; } .fa-ship:before { content: "\f21a"; } .fa-shirtsinbulk:before { content: "\f214"; } .fa-shopping-bag:before { content: "\f290"; } .fa-shopping-basket:before { content: "\f291"; } .fa-shopping-cart:before { content: "\f07a"; } .fa-shower:before { content: "\f2cc"; } .fa-sign-in-alt:before { content: "\f2f6"; } .fa-sign-language:before { content: "\f2a7"; } .fa-sign-out-alt:before { content: "\f2f5"; } .fa-signal:before { content: "\f012"; } .fa-simplybuilt:before { content: "\f215"; } .fa-sistrix:before { content: "\f3ee"; } .fa-sitemap:before { content: "\f0e8"; } .fa-skyatlas:before { content: "\f216"; } .fa-skype:before { content: "\f17e"; } .fa-slack:before { content: "\f198"; } .fa-slack-hash:before { content: "\f3ef"; } .fa-sliders-h:before { content: "\f1de"; } .fa-slideshare:before { content: "\f1e7"; } .fa-smile:before { content: "\f118"; } .fa-snapchat:before { content: "\f2ab"; } .fa-snapchat-ghost:before { content: "\f2ac"; } .fa-snapchat-square:before { content: "\f2ad"; } .fa-snowflake:before { content: "\f2dc"; } .fa-sort:before { content: "\f0dc"; } .fa-sort-alpha-down:before { content: "\f15d"; } .fa-sort-alpha-up:before { content: "\f15e"; } .fa-sort-amount-down:before { content: "\f160"; } .fa-sort-amount-up:before { content: "\f161"; } .fa-sort-down:before { content: "\f0dd"; } .fa-sort-numeric-down:before { content: "\f162"; } .fa-sort-numeric-up:before { content: "\f163"; } .fa-sort-up:before { content: "\f0de"; } .fa-soundcloud:before { content: "\f1be"; } .fa-space-shuttle:before { content: "\f197"; } .fa-speakap:before { content: "\f3f3"; } .fa-spinner:before { content: "\f110"; } .fa-spotify:before { content: "\f1bc"; } .fa-square:before { content: "\f0c8"; } .fa-stack-exchange:before { content: "\f18d"; } .fa-stack-overflow:before { content: "\f16c"; } .fa-star:before { content: "\f005"; } .fa-star-half:before { content: "\f089"; } .fa-staylinked:before { content: "\f3f5"; } .fa-steam:before { content: "\f1b6"; } .fa-steam-square:before { content: "\f1b7"; } .fa-steam-symbol:before { content: "\f3f6"; } .fa-step-backward:before { content: "\f048"; } .fa-step-forward:before { content: "\f051"; } .fa-stethoscope:before { content: "\f0f1"; } .fa-sticker-mule:before { content: "\f3f7"; } .fa-sticky-note:before { content: "\f249"; } .fa-stop:before { content: "\f04d"; } .fa-stop-circle:before { content: "\f28d"; } .fa-strava:before { content: "\f428"; } .fa-street-view:before { content: "\f21d"; } .fa-strikethrough:before { content: "\f0cc"; } .fa-stripe:before { content: "\f429"; } .fa-stripe-s:before { content: "\f42a"; } .fa-studiovinari:before { content: "\f3f8"; } .fa-stumbleupon:before { content: "\f1a4"; } .fa-stumbleupon-circle:before { content: "\f1a3"; } .fa-subscript:before { content: "\f12c"; } .fa-subway:before { content: "\f239"; } .fa-suitcase:before { content: "\f0f2"; } .fa-sun:before { content: "\f185"; } .fa-superpowers:before { content: "\f2dd"; } .fa-superscript:before { content: "\f12b"; } .fa-supple:before { content: "\f3f9"; } .fa-sync:before { content: "\f021"; } .fa-sync-alt:before { content: "\f2f1"; } .fa-table:before { content: "\f0ce"; } .fa-tablet:before { content: "\f10a"; } .fa-tablet-alt:before { content: "\f3fa"; } .fa-tachometer-alt:before { content: "\f3fd"; } .fa-tag:before { content: "\f02b"; } .fa-tags:before { content: "\f02c"; } .fa-tasks:before { content: "\f0ae"; } .fa-taxi:before { content: "\f1ba"; } .fa-telegram:before { content: "\f2c6"; } .fa-telegram-plane:before { content: "\f3fe"; } .fa-tencent-weibo:before { content: "\f1d5"; } .fa-terminal:before { content: "\f120"; } .fa-text-height:before { content: "\f034"; } .fa-text-width:before { content: "\f035"; } .fa-th:before { content: "\f00a"; } .fa-th-large:before { content: "\f009"; } .fa-th-list:before { content: "\f00b"; } .fa-themeisle:before { content: "\f2b2"; } .fa-thermometer-empty:before { content: "\f2cb"; } .fa-thermometer-full:before { content: "\f2c7"; } .fa-thermometer-half:before { content: "\f2c9"; } .fa-thermometer-quarter:before { content: "\f2ca"; } .fa-thermometer-three-quarters:before { content: "\f2c8"; } .fa-thumbs-down:before { content: "\f165"; } .fa-thumbs-up:before { content: "\f164"; } .fa-thumbtack:before { content: "\f08d"; } .fa-ticket-alt:before { content: "\f3ff"; } .fa-times:before, .modal__close:before, .snack__close:before { content: "\f00d"; } .fa-times-circle:before { content: "\f057"; } .fa-tint:before { content: "\f043"; } .fa-toggle-off:before { content: "\f204"; } .fa-toggle-on:before { content: "\f205"; } .fa-trademark:before { content: "\f25c"; } .fa-train:before { content: "\f238"; } .fa-transgender:before { content: "\f224"; } .fa-transgender-alt:before { content: "\f225"; } .fa-trash:before { content: "\f1f8"; } .fa-trash-alt:before, .picture__icon_trash:before { content: "\f2ed"; } .fa-tree:before { content: "\f1bb"; } .fa-trello:before { content: "\f181"; } .fa-tripadvisor:before { content: "\f262"; } .fa-trophy:before { content: "\f091"; } .fa-truck:before { content: "\f0d1"; } .fa-tty:before { content: "\f1e4"; } .fa-tumblr:before { content: "\f173"; } .fa-tumblr-square:before { content: "\f174"; } .fa-tv:before { content: "\f26c"; } .fa-twitch:before { content: "\f1e8"; } .fa-twitter:before { content: "\f099"; } .fa-twitter-square:before { content: "\f081"; } .fa-typo3:before { content: "\f42b"; } .fa-uber:before { content: "\f402"; } .fa-uikit:before { content: "\f403"; } .fa-umbrella:before { content: "\f0e9"; } .fa-underline:before { content: "\f0cd"; } .fa-undo:before { content: "\f0e2"; } .fa-undo-alt:before { content: "\f2ea"; } .fa-uniregistry:before { content: "\f404"; } .fa-universal-access:before { content: "\f29a"; } .fa-university:before { content: "\f19c"; } .fa-unlink:before { content: "\f127"; } .fa-unlock:before { content: "\f09c"; } .fa-unlock-alt:before { content: "\f13e"; } .fa-untappd:before { content: "\f405"; } .fa-upload:before { content: "\f093"; } .fa-usb:before { content: "\f287"; } .fa-user:before { content: "\f007"; } .fa-user-circle:before { content: "\f2bd"; } .fa-user-md:before { content: "\f0f0"; } .fa-user-plus:before { content: "\f234"; } .fa-user-secret:before { content: "\f21b"; } .fa-user-times:before { content: "\f235"; } .fa-users:before { content: "\f0c0"; } .fa-ussunnah:before { content: "\f407"; } .fa-utensil-spoon:before { content: "\f2e5"; } .fa-utensils:before { content: "\f2e7"; } .fa-vaadin:before { content: "\f408"; } .fa-venus:before { content: "\f221"; } .fa-venus-double:before { content: "\f226"; } .fa-venus-mars:before { content: "\f228"; } .fa-viacoin:before { content: "\f237"; } .fa-viadeo:before { content: "\f2a9"; } .fa-viadeo-square:before { content: "\f2aa"; } .fa-viber:before { content: "\f409"; } .fa-video:before { content: "\f03d"; } .fa-vimeo:before { content: "\f40a"; } .fa-vimeo-square:before { content: "\f194"; } .fa-vimeo-v:before { content: "\f27d"; } .fa-vine:before { content: "\f1ca"; } .fa-vk:before { content: "\f189"; } .fa-vnv:before { content: "\f40b"; } .fa-volume-down:before { content: "\f027"; } .fa-volume-off:before { content: "\f026"; } .fa-volume-up:before { content: "\f028"; } .fa-vuejs:before { content: "\f41f"; } .fa-weibo:before { content: "\f18a"; } .fa-weixin:before { content: "\f1d7"; } .fa-whatsapp:before { content: "\f232"; } .fa-whatsapp-square:before { content: "\f40c"; } .fa-wheelchair:before { content: "\f193"; } .fa-whmcs:before { content: "\f40d"; } .fa-wifi:before { content: "\f1eb"; } .fa-wikipedia-w:before { content: "\f266"; } .fa-window-close:before { content: "\f410"; } .fa-window-maximize:before { content: "\f2d0"; } .fa-window-minimize:before { content: "\f2d1"; } .fa-window-restore:before { content: "\f2d2"; } .fa-windows:before { content: "\f17a"; } .fa-won-sign:before { content: "\f159"; } .fa-wordpress:before { content: "\f19a"; } .fa-wordpress-simple:before { content: "\f411"; } .fa-wpbeginner:before { content: "\f297"; } .fa-wpexplorer:before { content: "\f2de"; } .fa-wpforms:before { content: "\f298"; } .fa-wrench:before { content: "\f0ad"; } .fa-xbox:before { content: "\f412"; } .fa-xing:before { content: "\f168"; } .fa-xing-square:before { content: "\f169"; } .fa-y-combinator:before { content: "\f23b"; } .fa-yahoo:before { content: "\f19e"; } .fa-yandex:before { content: "\f413"; } .fa-yandex-international:before { content: "\f414"; } .fa-yelp:before { content: "\f1e9"; } .fa-yen-sign:before { content: "\f157"; } .fa-yoast:before { content: "\f2b1"; } .fa-youtube:before { content: "\f167"; } .sr-only { border: 0; clip: rect(0, 0, 0, 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .sr-only-focusable:active, .sr-only-focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } /*! * Font Awesome Free 5.0.1 by @fontawesome - http://fontawesome.com * License - http://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) */ @font-face { font-family: 'Font Awesome 5 Brands'; font-style: normal; font-weight: normal; src: url("./webfonts/font-awesome/fa-brands-400.eot"); src: url("./webfonts/font-awesome/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("./webfonts/font-awesome/fa-brands-400.woff2") format("woff2"), url("./webfonts/font-awesome/fa-brands-400.woff") format("woff"), url("./webfonts/font-awesome/fa-brands-400.ttf") format("truetype"), url("./webfonts/font-awesome/fa-brands-400.svg#fontawesome") format("svg"); } .fab { font-family: 'Font Awesome 5 Brands'; } /*! * Font Awesome Free 5.0.1 by @fontawesome - http://fontawesome.com * License - http://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) */ @font-face { font-family: 'Font Awesome 5 Free'; font-style: normal; font-weight: 400; src: url("./webfonts/font-awesome/fa-regular-400.eot"); src: url("./webfonts/font-awesome/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("./webfonts/font-awesome/fa-regular-400.woff2") format("woff2"), url("./webfonts/font-awesome/fa-regular-400.woff") format("woff"), url("./webfonts/font-awesome/fa-regular-400.ttf") format("truetype"), url("./webfonts/font-awesome/fa-regular-400.svg#fontawesome") format("svg"); } .far, .project__like, .sidebar-project__header-like, .picture__icon { font-family: 'Font Awesome 5 Free'; font-weight: 400; } /*! * Font Awesome Free 5.0.1 by @fontawesome - http://fontawesome.com * License - http://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) */ @font-face { font-family: 'Font Awesome 5 Free'; font-style: normal; font-weight: 900; src: url("./webfonts/font-awesome/fa-solid-900.eot"); src: url("./webfonts/font-awesome/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("./webfonts/font-awesome/fa-solid-900.woff2") format("woff2"), url("./webfonts/font-awesome/fa-solid-900.woff") format("woff"), url("./webfonts/font-awesome/fa-solid-900.ttf") format("truetype"), url("./webfonts/font-awesome/fa-solid-900.svg#fontawesome") format("svg"); } .fa, .button [class*="fa-"], .main-header__collapse [class*="fa-"], .visit__action [class*="fa-"], .modal__close, .snack__close, .select__icon, .main-header__collapse, .user__like, .project__like_active, .sidebar-project__header-like_active, .agenda__icon, .send-message__icon, .message__icon, .collapse-list__icon, .table_sortable .table-head__item:after, .table-row__action_settings > *, .paginate__action_start, .paginate__action_prev, .paginate__action_next, .paginate__action_end, .picture__icon_active, .fas { font-family: 'Font Awesome 5 Free'; font-weight: 900; } a { color: #000e25; font-weight: 500; } .text_left { text-align: left; } .text_center { text-align: center; } .text_right { text-align: right; } .text_justify { text-align: justify; } .display_inline { display: inline; } .display_inline-block { display: inline-block; } .display_inline-flex { display: inline-flex; } .display_block { display: block; } .display_flex { display: flex; } .margin_bottom { margin-bottom: 2rem; } .margin_top { margin-top: 2rem; } .button, .main-header__collapse, .visit__action { min-height: 3rem; padding: calc((3rem - 0.875rem) / 2) calc((3rem - 0.875rem)); min-width: 4rem; line-height: 1; text-align: center; background: #000e25; color: rgba(255, 255, 255, 0.84); outline: none; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); border: none; text-transform: uppercase; border-radius: 0.5rem; margin-bottom: 2rem; position: relative; display: inline-block; cursor: pointer; text-decoration: none; } .button:after, .main-header__collapse:after, .visit__action:after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; right: 0; background: black; opacity: 0; border-radius: 0.5rem; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); } .button:hover, .main-header__collapse:hover, .visit__action:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 14, 37, 0.23); } .button:hover:after, .main-header__collapse:hover:after, .visit__action:hover:after { opacity: 0.12; } .button_width_full { width: 100%; display: block; } .button_color_white, .visit__action { background: white; color: #000e25; } .button_color_white:hover, .visit__action:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); } .button_color_blue, .project__action_secondary, .table_mode_card .table-row__action_edit, .table-row__action_edit { background: #a2c9e9; color: #000e25; } .button_color_blue:hover, .project__action_secondary:hover, .table-row__action_edit:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); } .button_color_red, .table-row__action_delete { background: #bf2336; color: white; } .button_color_red:hover, .table-row__action_delete:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(191, 35, 54, 0.23); } .button_shadow, .button_shadow_1 { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .button_shadow:hover, .button_shadow_1:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } .button_shadow_2 { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); } .button_shadow_2:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); } .button_hollow { min-height: calc(3rem - 4px); padding: calc( (3rem - 0.875rem - 4px) / 2) calc((3rem - 0.875rem - 4px)); min-width: 4rem; border: 2px solid #000e25; background: transparent; color: #000e25; font-weight: 600; } .button_hollow.button_color_red, .button_hollow.table-row__action_delete { border-color: #bf2336; color: #bf2336; } .button_hollow.button_color_white, .button_hollow.visit__action { border-color: white; color: white; } .button_size_big, .project__action { min-height: 4rem; padding: calc((4rem - 0.875rem) / 2) calc((4rem - 0.875rem)); } .button_size_small, .main-header__collapse, .hero-project__share .button, .hero-project__share .main-header__collapse, .hero-project__share .visit__action, .visit__action { min-height: 2.25rem; padding: calc((2.25rem - 0.875rem) / 2) calc((2.25rem - 0.875rem)); } .button_link, .main-header__collapse, .table_mode_card .table-row__action_delete, .table-row__action_edit, .table-row__action_delete, .table-row__action_settings, .visit__action { background: transparent; color: #000e25; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); border: none; font-weight: 600; } .button_link:after, .main-header__collapse:after, .table_mode_card .table-row__action_delete:after, .table-row__action_edit:after, .table-row__action_delete:after, .table-row__action_settings:after, .visit__action:after { content: none; } .button_link:hover, .main-header__collapse:hover, .table-row__action_edit:hover, .table-row__action_delete:hover, .table-row__action_settings:hover, .visit__action:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); border: none; text-decoration: underline; } .button_link.button_color_red, .button_color_red.main-header__collapse, .table_mode_card .table-row__action_delete, .button_color_red.table-row__action_edit, .table-row__action_delete, .button_color_red.table-row__action_settings, .button_color_red.visit__action { color: #bf2336; } .button_link.button_color_white, .button_color_white.main-header__collapse, .button_color_white.table-row__action_edit, .button_color_white.table-row__action_delete, .table-row__action_delete.visit__action, .button_color_white.table-row__action_settings, .visit__action { color: white; } .button:disabled, .main-header__collapse:disabled, .visit__action:disabled { background: #333a45; color: white; opacity: 0.84; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); border: none; cursor: not-allowed; } .button:disabled:after, .main-header__collapse:disabled:after, .visit__action:disabled:after { content: none; } .button:disabled:hover, .main-header__collapse:disabled:hover, .visit__action:disabled:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); border: none; } .button [class*="fa-"], .main-header__collapse [class*="fa-"], .visit__action [class*="fa-"] { margin-left: 0.5rem; line-height: 0; } .max-text { display: block; text-align: center; font-size: 1rem; } .max-text__content { display: inline-block; text-align: left; max-width: 70ch; } .cover, .hero-home__covered, .message_img { position: relative; overflow: hidden; } .cover__img, .hero-home__cover, .message_img .message__content { opacity: 0.24; z-index: 1 !important; position: absolute !important; left: 0; top: 0; bottom: 0; right: 0; height: 100%; width: 100%; object-fit: cover; } .cover > *, .hero-home__covered > *, .message_img > * { position: relative; z-index: 2; } .list, .downloads { margin-bottom: 2rem; } .list_no_style, .downloads { list-style: none; } .list_no_margin, .downloads { margin-top: 0; } .list_no_padding, .downloads { padding: 0; } .list_link a, .list_link button { color: #000e25; font-weight: 500; } .list_big .list__item { padding-bottom: 1rem; } .list_big .list__item:last-child { padding-bottom: 0; } .list__item_valid { color: #23bf44; } .grid { display: inline-grid; width: 100%; grid-gap: 1rem; } .grid_col_1 { grid-template-columns: repeat(1, 1fr); } .grid_col_2 { grid-template-columns: repeat(2, 1fr); } .grid_col_3 { grid-template-columns: repeat(3, 1fr); } .grid_col_4 { grid-template-columns: repeat(4, 1fr); } .grid_col_5 { grid-template-columns: repeat(5, 1fr); } .grid_col_6 { grid-template-columns: repeat(6, 1fr); } .grid_col_7 { grid-template-columns: repeat(7, 1fr); } .grid_col_8 { grid-template-columns: repeat(8, 1fr); } .grid_col_9 { grid-template-columns: repeat(9, 1fr); } .grid_col_10 { grid-template-columns: repeat(10, 1fr); } .grid_col_11 { grid-template-columns: repeat(11, 1fr); } .grid_col_12 { grid-template-columns: repeat(12, 1fr); } .grid_col_13 { grid-template-columns: repeat(13, 1fr); } .grid_col_14 { grid-template-columns: repeat(14, 1fr); } .grid_col_15 { grid-template-columns: repeat(15, 1fr); } .grid_col_16 { grid-template-columns: repeat(16, 1fr); } .grid_col_17 { grid-template-columns: repeat(17, 1fr); } .grid_col_18 { grid-template-columns: repeat(18, 1fr); } .grid_col_19 { grid-template-columns: repeat(19, 1fr); } .grid_col_20 { grid-template-columns: repeat(20, 1fr); } @media (min-width: 600px) { .grid_col-md_1 { grid-template-columns: repeat(1, 1fr); } } @media (min-width: 600px) { .grid_col-md_2 { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 600px) { .grid_col-md_3 { grid-template-columns: repeat(3, 1fr); } } @media (min-width: 600px) { .grid_col-md_4 { grid-template-columns: repeat(4, 1fr); } } @media (min-width: 600px) { .grid_col-md_5 { grid-template-columns: repeat(5, 1fr); } } @media (min-width: 600px) { .grid_col-md_6 { grid-template-columns: repeat(6, 1fr); } } @media (min-width: 600px) { .grid_col-md_7 { grid-template-columns: repeat(7, 1fr); } } @media (min-width: 600px) { .grid_col-md_8 { grid-template-columns: repeat(8, 1fr); } } @media (min-width: 600px) { .grid_col-md_9 { grid-template-columns: repeat(9, 1fr); } } @media (min-width: 600px) { .grid_col-md_10 { grid-template-columns: repeat(10, 1fr); } } @media (min-width: 600px) { .grid_col-md_11 { grid-template-columns: repeat(11, 1fr); } } @media (min-width: 600px) { .grid_col-md_12 { grid-template-columns: repeat(12, 1fr); } } @media (min-width: 600px) { .grid_col-md_13 { grid-template-columns: repeat(13, 1fr); } } @media (min-width: 600px) { .grid_col-md_14 { grid-template-columns: repeat(14, 1fr); } } @media (min-width: 600px) { .grid_col-md_15 { grid-template-columns: repeat(15, 1fr); } } @media (min-width: 600px) { .grid_col-md_16 { grid-template-columns: repeat(16, 1fr); } } @media (min-width: 600px) { .grid_col-md_17 { grid-template-columns: repeat(17, 1fr); } } @media (min-width: 600px) { .grid_col-md_18 { grid-template-columns: repeat(18, 1fr); } } @media (min-width: 600px) { .grid_col-md_19 { grid-template-columns: repeat(19, 1fr); } } @media (min-width: 600px) { .grid_col-md_20 { grid-template-columns: repeat(20, 1fr); } } @media (min-width: 900px) { .grid_col-lg_1 { grid-template-columns: repeat(1, 1fr); } } @media (min-width: 900px) { .grid_col-lg_2 { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 900px) { .grid_col-lg_3 { grid-template-columns: repeat(3, 1fr); } } @media (min-width: 900px) { .grid_col-lg_4 { grid-template-columns: repeat(4, 1fr); } } @media (min-width: 900px) { .grid_col-lg_5 { grid-template-columns: repeat(5, 1fr); } } @media (min-width: 900px) { .grid_col-lg_6 { grid-template-columns: repeat(6, 1fr); } } @media (min-width: 900px) { .grid_col-lg_7 { grid-template-columns: repeat(7, 1fr); } } @media (min-width: 900px) { .grid_col-lg_8 { grid-template-columns: repeat(8, 1fr); } } @media (min-width: 900px) { .grid_col-lg_9 { grid-template-columns: repeat(9, 1fr); } } @media (min-width: 900px) { .grid_col-lg_10 { grid-template-columns: repeat(10, 1fr); } } @media (min-width: 900px) { .grid_col-lg_11 { grid-template-columns: repeat(11, 1fr); } } @media (min-width: 900px) { .grid_col-lg_12 { grid-template-columns: repeat(12, 1fr); } } @media (min-width: 900px) { .grid_col-lg_13 { grid-template-columns: repeat(13, 1fr); } } @media (min-width: 900px) { .grid_col-lg_14 { grid-template-columns: repeat(14, 1fr); } } @media (min-width: 900px) { .grid_col-lg_15 { grid-template-columns: repeat(15, 1fr); } } @media (min-width: 900px) { .grid_col-lg_16 { grid-template-columns: repeat(16, 1fr); } } @media (min-width: 900px) { .grid_col-lg_17 { grid-template-columns: repeat(17, 1fr); } } @media (min-width: 900px) { .grid_col-lg_18 { grid-template-columns: repeat(18, 1fr); } } @media (min-width: 900px) { .grid_col-lg_19 { grid-template-columns: repeat(19, 1fr); } } @media (min-width: 900px) { .grid_col-lg_20 { grid-template-columns: repeat(20, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_1 { grid-template-columns: repeat(1, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_2 { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_3 { grid-template-columns: repeat(3, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_4 { grid-template-columns: repeat(4, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_5 { grid-template-columns: repeat(5, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_6 { grid-template-columns: repeat(6, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_7 { grid-template-columns: repeat(7, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_8 { grid-template-columns: repeat(8, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_9 { grid-template-columns: repeat(9, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_10 { grid-template-columns: repeat(10, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_11 { grid-template-columns: repeat(11, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_12 { grid-template-columns: repeat(12, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_13 { grid-template-columns: repeat(13, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_14 { grid-template-columns: repeat(14, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_15 { grid-template-columns: repeat(15, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_16 { grid-template-columns: repeat(16, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_17 { grid-template-columns: repeat(17, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_18 { grid-template-columns: repeat(18, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_19 { grid-template-columns: repeat(19, 1fr); } } @media (min-width: 1200px) { .grid_col-xl_20 { grid-template-columns: repeat(20, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_1 { grid-template-columns: repeat(1, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_2 { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_3 { grid-template-columns: repeat(3, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_4 { grid-template-columns: repeat(4, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_5 { grid-template-columns: repeat(5, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_6 { grid-template-columns: repeat(6, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_7 { grid-template-columns: repeat(7, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_8 { grid-template-columns: repeat(8, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_9 { grid-template-columns: repeat(9, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_10 { grid-template-columns: repeat(10, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_11 { grid-template-columns: repeat(11, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_12 { grid-template-columns: repeat(12, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_13 { grid-template-columns: repeat(13, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_14 { grid-template-columns: repeat(14, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_15 { grid-template-columns: repeat(15, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_16 { grid-template-columns: repeat(16, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_17 { grid-template-columns: repeat(17, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_18 { grid-template-columns: repeat(18, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_19 { grid-template-columns: repeat(19, 1fr); } } @media (min-width: 1800px) { .grid_col-xxl_20 { grid-template-columns: repeat(20, 1fr); } } @media (max-width: 599px) { .grid_col-sm_1 { grid-template-columns: repeat(1, 1fr); } } @media (max-width: 599px) { .grid_col-sm_2 { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 599px) { .grid_col-sm_3 { grid-template-columns: repeat(3, 1fr); } } @media (max-width: 599px) { .grid_col-sm_4 { grid-template-columns: repeat(4, 1fr); } } @media (max-width: 599px) { .grid_col-sm_5 { grid-template-columns: repeat(5, 1fr); } } @media (max-width: 599px) { .grid_col-sm_6 { grid-template-columns: repeat(6, 1fr); } } @media (max-width: 599px) { .grid_col-sm_7 { grid-template-columns: repeat(7, 1fr); } } @media (max-width: 599px) { .grid_col-sm_8 { grid-template-columns: repeat(8, 1fr); } } @media (max-width: 599px) { .grid_col-sm_9 { grid-template-columns: repeat(9, 1fr); } } @media (max-width: 599px) { .grid_col-sm_10 { grid-template-columns: repeat(10, 1fr); } } @media (max-width: 599px) { .grid_col-sm_11 { grid-template-columns: repeat(11, 1fr); } } @media (max-width: 599px) { .grid_col-sm_12 { grid-template-columns: repeat(12, 1fr); } } @media (max-width: 599px) { .grid_col-sm_13 { grid-template-columns: repeat(13, 1fr); } } @media (max-width: 599px) { .grid_col-sm_14 { grid-template-columns: repeat(14, 1fr); } } @media (max-width: 599px) { .grid_col-sm_15 { grid-template-columns: repeat(15, 1fr); } } @media (max-width: 599px) { .grid_col-sm_16 { grid-template-columns: repeat(16, 1fr); } } @media (max-width: 599px) { .grid_col-sm_17 { grid-template-columns: repeat(17, 1fr); } } @media (max-width: 599px) { .grid_col-sm_18 { grid-template-columns: repeat(18, 1fr); } } @media (max-width: 599px) { .grid_col-sm_19 { grid-template-columns: repeat(19, 1fr); } } @media (max-width: 599px) { .grid_col-sm_20 { grid-template-columns: repeat(20, 1fr); } } .grid_inline { display: inline-grid; } .grid__child_row_1 { grid-row: auto/span 1; } .grid__child_row_2 { grid-row: auto/span 2; } .grid__child_row_3 { grid-row: auto/span 3; } .grid__child_row_4 { grid-row: auto/span 4; } .grid__child_row_5 { grid-row: auto/span 5; } .grid__child_row_6 { grid-row: auto/span 6; } .grid__child_row_7 { grid-row: auto/span 7; } .grid__child_row_8 { grid-row: auto/span 8; } .grid__child_row_9 { grid-row: auto/span 9; } .grid__child_row_10 { grid-row: auto/span 10; } .grid__child_row_11 { grid-row: auto/span 11; } .grid__child_row_12 { grid-row: auto/span 12; } .grid__child_row_13 { grid-row: auto/span 13; } .grid__child_row_14 { grid-row: auto/span 14; } .grid__child_row_15 { grid-row: auto/span 15; } .grid__child_row_16 { grid-row: auto/span 16; } .grid__child_row_17 { grid-row: auto/span 17; } .grid__child_row_18 { grid-row: auto/span 18; } .grid__child_row_19 { grid-row: auto/span 19; } .grid__child_row_20 { grid-row: auto/span 20; } @media (min-width: 600px) { .grid__child_row-md_1 { grid-row: auto/span 1; } } @media (min-width: 600px) { .grid__child_row-md_2 { grid-row: auto/span 2; } } @media (min-width: 600px) { .grid__child_row-md_3 { grid-row: auto/span 3; } } @media (min-width: 600px) { .grid__child_row-md_4 { grid-row: auto/span 4; } } @media (min-width: 600px) { .grid__child_row-md_5 { grid-row: auto/span 5; } } @media (min-width: 600px) { .grid__child_row-md_6 { grid-row: auto/span 6; } } @media (min-width: 600px) { .grid__child_row-md_7 { grid-row: auto/span 7; } } @media (min-width: 600px) { .grid__child_row-md_8 { grid-row: auto/span 8; } } @media (min-width: 600px) { .grid__child_row-md_9 { grid-row: auto/span 9; } } @media (min-width: 600px) { .grid__child_row-md_10 { grid-row: auto/span 10; } } @media (min-width: 600px) { .grid__child_row-md_11 { grid-row: auto/span 11; } } @media (min-width: 600px) { .grid__child_row-md_12 { grid-row: auto/span 12; } } @media (min-width: 600px) { .grid__child_row-md_13 { grid-row: auto/span 13; } } @media (min-width: 600px) { .grid__child_row-md_14 { grid-row: auto/span 14; } } @media (min-width: 600px) { .grid__child_row-md_15 { grid-row: auto/span 15; } } @media (min-width: 600px) { .grid__child_row-md_16 { grid-row: auto/span 16; } } @media (min-width: 600px) { .grid__child_row-md_17 { grid-row: auto/span 17; } } @media (min-width: 600px) { .grid__child_row-md_18 { grid-row: auto/span 18; } } @media (min-width: 600px) { .grid__child_row-md_19 { grid-row: auto/span 19; } } @media (min-width: 600px) { .grid__child_row-md_20 { grid-row: auto/span 20; } } @media (min-width: 900px) { .grid__child_row-lg_1 { grid-row: auto/span 1; } } @media (min-width: 900px) { .grid__child_row-lg_2 { grid-row: auto/span 2; } } @media (min-width: 900px) { .grid__child_row-lg_3 { grid-row: auto/span 3; } } @media (min-width: 900px) { .grid__child_row-lg_4 { grid-row: auto/span 4; } } @media (min-width: 900px) { .grid__child_row-lg_5 { grid-row: auto/span 5; } } @media (min-width: 900px) { .grid__child_row-lg_6 { grid-row: auto/span 6; } } @media (min-width: 900px) { .grid__child_row-lg_7 { grid-row: auto/span 7; } } @media (min-width: 900px) { .grid__child_row-lg_8 { grid-row: auto/span 8; } } @media (min-width: 900px) { .grid__child_row-lg_9 { grid-row: auto/span 9; } } @media (min-width: 900px) { .grid__child_row-lg_10 { grid-row: auto/span 10; } } @media (min-width: 900px) { .grid__child_row-lg_11 { grid-row: auto/span 11; } } @media (min-width: 900px) { .grid__child_row-lg_12 { grid-row: auto/span 12; } } @media (min-width: 900px) { .grid__child_row-lg_13 { grid-row: auto/span 13; } } @media (min-width: 900px) { .grid__child_row-lg_14 { grid-row: auto/span 14; } } @media (min-width: 900px) { .grid__child_row-lg_15 { grid-row: auto/span 15; } } @media (min-width: 900px) { .grid__child_row-lg_16 { grid-row: auto/span 16; } } @media (min-width: 900px) { .grid__child_row-lg_17 { grid-row: auto/span 17; } } @media (min-width: 900px) { .grid__child_row-lg_18 { grid-row: auto/span 18; } } @media (min-width: 900px) { .grid__child_row-lg_19 { grid-row: auto/span 19; } } @media (min-width: 900px) { .grid__child_row-lg_20 { grid-row: auto/span 20; } } @media (min-width: 1200px) { .grid__child_row-xl_1 { grid-row: auto/span 1; } } @media (min-width: 1200px) { .grid__child_row-xl_2 { grid-row: auto/span 2; } } @media (min-width: 1200px) { .grid__child_row-xl_3 { grid-row: auto/span 3; } } @media (min-width: 1200px) { .grid__child_row-xl_4 { grid-row: auto/span 4; } } @media (min-width: 1200px) { .grid__child_row-xl_5 { grid-row: auto/span 5; } } @media (min-width: 1200px) { .grid__child_row-xl_6 { grid-row: auto/span 6; } } @media (min-width: 1200px) { .grid__child_row-xl_7 { grid-row: auto/span 7; } } @media (min-width: 1200px) { .grid__child_row-xl_8 { grid-row: auto/span 8; } } @media (min-width: 1200px) { .grid__child_row-xl_9 { grid-row: auto/span 9; } } @media (min-width: 1200px) { .grid__child_row-xl_10 { grid-row: auto/span 10; } } @media (min-width: 1200px) { .grid__child_row-xl_11 { grid-row: auto/span 11; } } @media (min-width: 1200px) { .grid__child_row-xl_12 { grid-row: auto/span 12; } } @media (min-width: 1200px) { .grid__child_row-xl_13 { grid-row: auto/span 13; } } @media (min-width: 1200px) { .grid__child_row-xl_14 { grid-row: auto/span 14; } } @media (min-width: 1200px) { .grid__child_row-xl_15 { grid-row: auto/span 15; } } @media (min-width: 1200px) { .grid__child_row-xl_16 { grid-row: auto/span 16; } } @media (min-width: 1200px) { .grid__child_row-xl_17 { grid-row: auto/span 17; } } @media (min-width: 1200px) { .grid__child_row-xl_18 { grid-row: auto/span 18; } } @media (min-width: 1200px) { .grid__child_row-xl_19 { grid-row: auto/span 19; } } @media (min-width: 1200px) { .grid__child_row-xl_20 { grid-row: auto/span 20; } } @media (min-width: 1800px) { .grid__child_row-xxl_1 { grid-row: auto/span 1; } } @media (min-width: 1800px) { .grid__child_row-xxl_2 { grid-row: auto/span 2; } } @media (min-width: 1800px) { .grid__child_row-xxl_3 { grid-row: auto/span 3; } } @media (min-width: 1800px) { .grid__child_row-xxl_4 { grid-row: auto/span 4; } } @media (min-width: 1800px) { .grid__child_row-xxl_5 { grid-row: auto/span 5; } } @media (min-width: 1800px) { .grid__child_row-xxl_6 { grid-row: auto/span 6; } } @media (min-width: 1800px) { .grid__child_row-xxl_7 { grid-row: auto/span 7; } } @media (min-width: 1800px) { .grid__child_row-xxl_8 { grid-row: auto/span 8; } } @media (min-width: 1800px) { .grid__child_row-xxl_9 { grid-row: auto/span 9; } } @media (min-width: 1800px) { .grid__child_row-xxl_10 { grid-row: auto/span 10; } } @media (min-width: 1800px) { .grid__child_row-xxl_11 { grid-row: auto/span 11; } } @media (min-width: 1800px) { .grid__child_row-xxl_12 { grid-row: auto/span 12; } } @media (min-width: 1800px) { .grid__child_row-xxl_13 { grid-row: auto/span 13; } } @media (min-width: 1800px) { .grid__child_row-xxl_14 { grid-row: auto/span 14; } } @media (min-width: 1800px) { .grid__child_row-xxl_15 { grid-row: auto/span 15; } } @media (min-width: 1800px) { .grid__child_row-xxl_16 { grid-row: auto/span 16; } } @media (min-width: 1800px) { .grid__child_row-xxl_17 { grid-row: auto/span 17; } } @media (min-width: 1800px) { .grid__child_row-xxl_18 { grid-row: auto/span 18; } } @media (min-width: 1800px) { .grid__child_row-xxl_19 { grid-row: auto/span 19; } } @media (min-width: 1800px) { .grid__child_row-xxl_20 { grid-row: auto/span 20; } } @media (max-width: 599px) { .grid__child_row-sm_1 { grid-row: auto/span 1; } } @media (max-width: 599px) { .grid__child_row-sm_2 { grid-row: auto/span 2; } } @media (max-width: 599px) { .grid__child_row-sm_3 { grid-row: auto/span 3; } } @media (max-width: 599px) { .grid__child_row-sm_4 { grid-row: auto/span 4; } } @media (max-width: 599px) { .grid__child_row-sm_5 { grid-row: auto/span 5; } } @media (max-width: 599px) { .grid__child_row-sm_6 { grid-row: auto/span 6; } } @media (max-width: 599px) { .grid__child_row-sm_7 { grid-row: auto/span 7; } } @media (max-width: 599px) { .grid__child_row-sm_8 { grid-row: auto/span 8; } } @media (max-width: 599px) { .grid__child_row-sm_9 { grid-row: auto/span 9; } } @media (max-width: 599px) { .grid__child_row-sm_10 { grid-row: auto/span 10; } } @media (max-width: 599px) { .grid__child_row-sm_11 { grid-row: auto/span 11; } } @media (max-width: 599px) { .grid__child_row-sm_12 { grid-row: auto/span 12; } } @media (max-width: 599px) { .grid__child_row-sm_13 { grid-row: auto/span 13; } } @media (max-width: 599px) { .grid__child_row-sm_14 { grid-row: auto/span 14; } } @media (max-width: 599px) { .grid__child_row-sm_15 { grid-row: auto/span 15; } } @media (max-width: 599px) { .grid__child_row-sm_16 { grid-row: auto/span 16; } } @media (max-width: 599px) { .grid__child_row-sm_17 { grid-row: auto/span 17; } } @media (max-width: 599px) { .grid__child_row-sm_18 { grid-row: auto/span 18; } } @media (max-width: 599px) { .grid__child_row-sm_19 { grid-row: auto/span 19; } } @media (max-width: 599px) { .grid__child_row-sm_20 { grid-row: auto/span 20; } } .grid__child_col_1 { grid-column: auto/span 1; } .grid__child_col_2 { grid-column: auto/span 2; } .grid__child_col_3 { grid-column: auto/span 3; } .grid__child_col_4 { grid-column: auto/span 4; } .grid__child_col_5, .newsletter__title, .newsletter__input, .newsletter__button { grid-column: auto/span 5; } .grid__child_col_6 { grid-column: auto/span 6; } .grid__child_col_7 { grid-column: auto/span 7; } .grid__child_col_8 { grid-column: auto/span 8; } .grid__child_col_9 { grid-column: auto/span 9; } .grid__child_col_10 { grid-column: auto/span 10; } .grid__child_col_11 { grid-column: auto/span 11; } .grid__child_col_12 { grid-column: auto/span 12; } .grid__child_col_13 { grid-column: auto/span 13; } .grid__child_col_14 { grid-column: auto/span 14; } .grid__child_col_15 { grid-column: auto/span 15; } .grid__child_col_16 { grid-column: auto/span 16; } .grid__child_col_17 { grid-column: auto/span 17; } .grid__child_col_18 { grid-column: auto/span 18; } .grid__child_col_19 { grid-column: auto/span 19; } .grid__child_col_20 { grid-column: auto/span 20; } @media (min-width: 600px) { .grid__child_col-md_1 { grid-column: auto/span 1; } } @media (min-width: 600px) { .grid__child_col-md_2, .newsletter__button { grid-column: auto/span 2; } } @media (min-width: 600px) { .grid__child_col-md_3, .newsletter__input { grid-column: auto/span 3; } } @media (min-width: 600px) { .grid__child_col-md_4 { grid-column: auto/span 4; } } @media (min-width: 600px) { .grid__child_col-md_5 { grid-column: auto/span 5; } } @media (min-width: 600px) { .grid__child_col-md_6 { grid-column: auto/span 6; } } @media (min-width: 600px) { .grid__child_col-md_7 { grid-column: auto/span 7; } } @media (min-width: 600px) { .grid__child_col-md_8 { grid-column: auto/span 8; } } @media (min-width: 600px) { .grid__child_col-md_9 { grid-column: auto/span 9; } } @media (min-width: 600px) { .grid__child_col-md_10 { grid-column: auto/span 10; } } @media (min-width: 600px) { .grid__child_col-md_11 { grid-column: auto/span 11; } } @media (min-width: 600px) { .grid__child_col-md_12 { grid-column: auto/span 12; } } @media (min-width: 600px) { .grid__child_col-md_13 { grid-column: auto/span 13; } } @media (min-width: 600px) { .grid__child_col-md_14 { grid-column: auto/span 14; } } @media (min-width: 600px) { .grid__child_col-md_15 { grid-column: auto/span 15; } } @media (min-width: 600px) { .grid__child_col-md_16 { grid-column: auto/span 16; } } @media (min-width: 600px) { .grid__child_col-md_17 { grid-column: auto/span 17; } } @media (min-width: 600px) { .grid__child_col-md_18 { grid-column: auto/span 18; } } @media (min-width: 600px) { .grid__child_col-md_19 { grid-column: auto/span 19; } } @media (min-width: 600px) { .grid__child_col-md_20 { grid-column: auto/span 20; } } @media (min-width: 900px) { .grid__child_col-lg_1, .newsletter__button { grid-column: auto/span 1; } } @media (min-width: 900px) { .grid__child_col-lg_2, .newsletter__title, .newsletter__input { grid-column: auto/span 2; } } @media (min-width: 900px) { .grid__child_col-lg_3 { grid-column: auto/span 3; } } @media (min-width: 900px) { .grid__child_col-lg_4 { grid-column: auto/span 4; } } @media (min-width: 900px) { .grid__child_col-lg_5 { grid-column: auto/span 5; } } @media (min-width: 900px) { .grid__child_col-lg_6 { grid-column: auto/span 6; } } @media (min-width: 900px) { .grid__child_col-lg_7 { grid-column: auto/span 7; } } @media (min-width: 900px) { .grid__child_col-lg_8 { grid-column: auto/span 8; } } @media (min-width: 900px) { .grid__child_col-lg_9 { grid-column: auto/span 9; } } @media (min-width: 900px) { .grid__child_col-lg_10 { grid-column: auto/span 10; } } @media (min-width: 900px) { .grid__child_col-lg_11 { grid-column: auto/span 11; } } @media (min-width: 900px) { .grid__child_col-lg_12 { grid-column: auto/span 12; } } @media (min-width: 900px) { .grid__child_col-lg_13 { grid-column: auto/span 13; } } @media (min-width: 900px) { .grid__child_col-lg_14 { grid-column: auto/span 14; } } @media (min-width: 900px) { .grid__child_col-lg_15 { grid-column: auto/span 15; } } @media (min-width: 900px) { .grid__child_col-lg_16 { grid-column: auto/span 16; } } @media (min-width: 900px) { .grid__child_col-lg_17 { grid-column: auto/span 17; } } @media (min-width: 900px) { .grid__child_col-lg_18 { grid-column: auto/span 18; } } @media (min-width: 900px) { .grid__child_col-lg_19 { grid-column: auto/span 19; } } @media (min-width: 900px) { .grid__child_col-lg_20 { grid-column: auto/span 20; } } @media (min-width: 1200px) { .grid__child_col-xl_1 { grid-column: auto/span 1; } } @media (min-width: 1200px) { .grid__child_col-xl_2 { grid-column: auto/span 2; } } @media (min-width: 1200px) { .grid__child_col-xl_3 { grid-column: auto/span 3; } } @media (min-width: 1200px) { .grid__child_col-xl_4 { grid-column: auto/span 4; } } @media (min-width: 1200px) { .grid__child_col-xl_5 { grid-column: auto/span 5; } } @media (min-width: 1200px) { .grid__child_col-xl_6 { grid-column: auto/span 6; } } @media (min-width: 1200px) { .grid__child_col-xl_7 { grid-column: auto/span 7; } } @media (min-width: 1200px) { .grid__child_col-xl_8 { grid-column: auto/span 8; } } @media (min-width: 1200px) { .grid__child_col-xl_9 { grid-column: auto/span 9; } } @media (min-width: 1200px) { .grid__child_col-xl_10 { grid-column: auto/span 10; } } @media (min-width: 1200px) { .grid__child_col-xl_11 { grid-column: auto/span 11; } } @media (min-width: 1200px) { .grid__child_col-xl_12 { grid-column: auto/span 12; } } @media (min-width: 1200px) { .grid__child_col-xl_13 { grid-column: auto/span 13; } } @media (min-width: 1200px) { .grid__child_col-xl_14 { grid-column: auto/span 14; } } @media (min-width: 1200px) { .grid__child_col-xl_15 { grid-column: auto/span 15; } } @media (min-width: 1200px) { .grid__child_col-xl_16 { grid-column: auto/span 16; } } @media (min-width: 1200px) { .grid__child_col-xl_17 { grid-column: auto/span 17; } } @media (min-width: 1200px) { .grid__child_col-xl_18 { grid-column: auto/span 18; } } @media (min-width: 1200px) { .grid__child_col-xl_19 { grid-column: auto/span 19; } } @media (min-width: 1200px) { .grid__child_col-xl_20 { grid-column: auto/span 20; } } @media (min-width: 1800px) { .grid__child_col-xxl_1 { grid-column: auto/span 1; } } @media (min-width: 1800px) { .grid__child_col-xxl_2 { grid-column: auto/span 2; } } @media (min-width: 1800px) { .grid__child_col-xxl_3 { grid-column: auto/span 3; } } @media (min-width: 1800px) { .grid__child_col-xxl_4 { grid-column: auto/span 4; } } @media (min-width: 1800px) { .grid__child_col-xxl_5 { grid-column: auto/span 5; } } @media (min-width: 1800px) { .grid__child_col-xxl_6 { grid-column: auto/span 6; } } @media (min-width: 1800px) { .grid__child_col-xxl_7 { grid-column: auto/span 7; } } @media (min-width: 1800px) { .grid__child_col-xxl_8 { grid-column: auto/span 8; } } @media (min-width: 1800px) { .grid__child_col-xxl_9 { grid-column: auto/span 9; } } @media (min-width: 1800px) { .grid__child_col-xxl_10 { grid-column: auto/span 10; } } @media (min-width: 1800px) { .grid__child_col-xxl_11 { grid-column: auto/span 11; } } @media (min-width: 1800px) { .grid__child_col-xxl_12 { grid-column: auto/span 12; } } @media (min-width: 1800px) { .grid__child_col-xxl_13 { grid-column: auto/span 13; } } @media (min-width: 1800px) { .grid__child_col-xxl_14 { grid-column: auto/span 14; } } @media (min-width: 1800px) { .grid__child_col-xxl_15 { grid-column: auto/span 15; } } @media (min-width: 1800px) { .grid__child_col-xxl_16 { grid-column: auto/span 16; } } @media (min-width: 1800px) { .grid__child_col-xxl_17 { grid-column: auto/span 17; } } @media (min-width: 1800px) { .grid__child_col-xxl_18 { grid-column: auto/span 18; } } @media (min-width: 1800px) { .grid__child_col-xxl_19 { grid-column: auto/span 19; } } @media (min-width: 1800px) { .grid__child_col-xxl_20 { grid-column: auto/span 20; } } @media (max-width: 599px) { .grid__child_col-sm_1 { grid-column: auto/span 1; } } @media (max-width: 599px) { .grid__child_col-sm_2 { grid-column: auto/span 2; } } @media (max-width: 599px) { .grid__child_col-sm_3 { grid-column: auto/span 3; } } @media (max-width: 599px) { .grid__child_col-sm_4 { grid-column: auto/span 4; } } @media (max-width: 599px) { .grid__child_col-sm_5 { grid-column: auto/span 5; } } @media (max-width: 599px) { .grid__child_col-sm_6 { grid-column: auto/span 6; } } @media (max-width: 599px) { .grid__child_col-sm_7 { grid-column: auto/span 7; } } @media (max-width: 599px) { .grid__child_col-sm_8 { grid-column: auto/span 8; } } @media (max-width: 599px) { .grid__child_col-sm_9 { grid-column: auto/span 9; } } @media (max-width: 599px) { .grid__child_col-sm_10 { grid-column: auto/span 10; } } @media (max-width: 599px) { .grid__child_col-sm_11 { grid-column: auto/span 11; } } @media (max-width: 599px) { .grid__child_col-sm_12 { grid-column: auto/span 12; } } @media (max-width: 599px) { .grid__child_col-sm_13 { grid-column: auto/span 13; } } @media (max-width: 599px) { .grid__child_col-sm_14 { grid-column: auto/span 14; } } @media (max-width: 599px) { .grid__child_col-sm_15 { grid-column: auto/span 15; } } @media (max-width: 599px) { .grid__child_col-sm_16 { grid-column: auto/span 16; } } @media (max-width: 599px) { .grid__child_col-sm_17 { grid-column: auto/span 17; } } @media (max-width: 599px) { .grid__child_col-sm_18 { grid-column: auto/span 18; } } @media (max-width: 599px) { .grid__child_col-sm_19 { grid-column: auto/span 19; } } @media (max-width: 599px) { .grid__child_col-sm_20 { grid-column: auto/span 20; } } .grid__child_justify_end { justify-self: end; } .grid__child_justify_start { justify-self: start; } .grid__child_justify_center { justify-self: center; } .grid__child_align_end, .newsletter__input, .newsletter__button { align-self: end; } .grid__child_align_start { align-self: start; } .grid__child_align_center { align-self: center; } .grid_overflow { overflow: auto; padding-top: 1rem; padding-bottom: 1rem; margin-bottom: 1rem; margin-top: -1rem; } .grid_overflow_x { overflow-x: auto; } .grid_overflow_y { overflow-y: auto; } hr { border: none; border-style: none; border-top: 1px solid #810d1f; margin-top: 2rem; margin-bottom: 2rem; display: inline-block; width: 100%; } .badge { background: #000e25; padding: 0.15rem; min-width: 1rem; min-height: 1rem; text-align: center; color: white; display: inline-flex; border-radius: 15rem; align-items: center; justify-content: space-around; font-weight: 600; line-height: 0; text-decoration: none; } .badge_color_red { background: #bf2336; } .tooltip, [data-tooltip] { position: relative; } .tooltip:after, [data-tooltip]:after { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; visibility: hidden; content: attr(data-tooltip); position: absolute; left: 50%; bottom: 100%; transform: translate(-50%, 0); background: #000e25; color: white; margin-bottom: 0; padding: 0.2rem 0.5rem; border-radius: 0.5rem; box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.15); white-space: nowrap; z-index: 1; } .tooltip:before, [data-tooltip]:before { content: ""; width: 0; height: 0; border-left: 0.5rem solid transparent; border-right: 0.5rem solid transparent; border-top: 0.5rem solid #000e25; position: absolute; left: calc(50% - 0.5rem); bottom: calc(100% - 0.5rem); transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); visibility: hidden; opacity: 0; z-index: 2; } .tooltip:hover:after, [data-tooltip]:hover:after { opacity: 1; visibility: visible; transform: translate(-50%, -0.5rem); } .tooltip:hover:before, [data-tooltip]:hover:before { opacity: 1; visibility: visible; bottom: calc(100% + 1px); } .tooltip_color_primary:after { background: #000e25; color: white; } .tooltip_color_primary:before { border-top-color: #000e25; } .tooltip_color_green:after { background: #23bf44; color: white; } .tooltip_color_green:before { border-top-color: #23bf44; } .tooltip_color_red:after { background: #bf2336; color: white; } .tooltip_color_red:before { border-top-color: #bf2336; } .tooltip_color_grey:after { background: #333a45; color: white; } .tooltip_color_grey:before { border-top-color: #333a45; } .tooltip_color_white:after { background: white; color: #000e25; } .tooltip_color_white:before { border-top-color: white; } .tooltip_color_success:after { background: #23bf44; color: white; } .tooltip_color_success:before { border-top-color: #23bf44; } .tooltip_color_danger:after { background: #bf2336; color: white; } .tooltip_color_danger:before { border-top-color: #bf2336; } .tooltip_color_warning:after { background: #333a45; color: white; } .tooltip_color_warning:before { border-top-color: #333a45; } .tooltip_color_info:after { background: #a2c9e9; color: #000e25; } .tooltip_color_info:before { border-top-color: #a2c9e9; } .tooltip_position_top:after { left: 50%; bottom: 100%; transform: translate(-50%, 0); } .tooltip_position_top:before { border-left: 0.5rem solid transparent; border-right: 0.5rem solid transparent; border-top: 0.5rem solid #000e25; left: calc(50% - 0.5rem); bottom: calc(100% - 0.5rem); } .tooltip_position_top:hover:after { transform: translate(-50%, -0.5rem); } .tooltip_position_top:hover:before { bottom: calc(100% + 1px); } .tooltip_position_left:after { bottom: inherit; right: 100%; left: inherit; top: 50%; transform: translate(0, -50%); } .tooltip_position_left:before { bottom: inherit; left: inherit; right: calc(100% - 0.5rem); top: calc(50% - 0.5rem); border-right: none; border-top: 0.5rem solid transparent; border-left: 0.5rem solid #000e25; border-bottom: 0.5rem solid transparent; } .tooltip_position_left:hover:after { transform: translate(-0.5rem, -50%); } .tooltip_position_left:hover:before { bottom: inherit; left: inherit; right: calc(100% + 1px); } .tooltip_position_right:after { bottom: inherit; left: 100%; top: 50%; transform: translate(0, -50%); } .tooltip_position_right:before { bottom: inherit; left: calc(100% - 0.5rem); top: calc(50% - 0.5rem); border-left: none; border-top: 0.5rem solid transparent; border-right: 0.5rem solid #000e25; border-bottom: 0.5rem solid transparent; } .tooltip_position_right:hover:after { transform: translate(0.5rem, -50%); } .tooltip_position_right:hover:before { bottom: inherit; left: calc(100% + 1px); } .tooltip_position_bottom:after { bottom: inherit; left: 50%; top: 100%; transform: translate(-50%, 0); } .tooltip_position_bottom:before { bottom: inherit; left: calc(50% - 0.5rem); top: calc(100% - 0.5rem); border-left: 0.5rem solid transparent; border-right: 0.5rem solid transparent; border-bottom: 0.5rem solid #000e25; border-top: none; } .tooltip_position_bottom:hover:after { transform: translate(-50%, 0.5rem); } .tooltip_position_bottom:hover:before { bottom: inherit; top: calc(100% + 1px); } .dropdown { position: relative; } .dropdown__context > * { margin-bottom: 0; } .dropdown__content { text-align: left; position: absolute; top: calc(100% + 0.5rem); background: white; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); display: none; left: 0; max-width: 20rem; min-width: 100%; } .dropdown__content::after { position: absolute; bottom: 100%; left: 1rem; content: ""; border-bottom: .5rem solid white; border-left: .5rem solid transparent; border-right: .5rem solid transparent; } .dropdown__list { list-style: none; margin: 0; padding: 0; } .dropdown__list > * { border-bottom: 2px solid #a2c9e9; padding: 1rem; } .dropdown__list > *:last-child { border-bottom: none; } .dropdown_active .dropdown__content { display: block; } .dropdown_position_left .dropdown__content { left: inherit; right: 0; } .dropdown_position_left .dropdown__content::after { left: inherit; right: 1rem; } .modal { position: fixed; top: 0; bottom: 0; width: 100%; height: 100%; left: 0; right: 0; background: rgba(0, 0, 0, 0.75); z-index: 10; display: flex; justify-content: space-around; align-items: center; animation: modal 150ms ease-in 0ms 1 normal both; backdrop-filter: blur(4px); } .modal__box { position: relative; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); margin-top: 2rem; margin-bottom: 2rem; background: white; border-radius: 0.5rem; display: grid; grid-template-rows: auto 1fr auto; grid-template-columns: 1fr; max-height: calc(100% - 4rem); max-width: 95%; width: 40rem; animation-delay: 100ms; } .modal__header { background: #f5f5f5; border-bottom: 1px solid #000e25; padding: 1rem; margin-bottom: 0; border-radius: 0.5rem 0.5rem 0 0; } .modal__footer { margin-top: 0; padding: .5rem 1rem; background: #f5f5f5; border-top: 1px solid #000e25; } .modal__actions { text-align: right; } .modal__actions .button, .modal__actions .main-header__collapse, .modal__actions .visit__action { margin-bottom: 0; } .modal__body { padding: 1rem; overflow: auto; } .modal__close { color: white; font-size: 1rem; position: absolute; top: -1.5rem; right: -1.5rem; border: none; outline: none; padding: .5rem; background: none; cursor: pointer; opacity: .75; } .modal__close:hover { opacity: 1; } .modal_width_tiny .modal__box { width: 20rem; max-width: 95%; } .modal_width_small .modal__box { max-width: 95%; width: 30rem; } .modal_width_medium .modal__box { max-width: 95%; width: 40rem; } .modal_width_large .modal__box { max-width: 95%; width: 50rem; } @keyframes modal { 0% { visibility: hidden; } 1% { visibility: visible; opacity: 0; } 100% { opacity: 1; visibility: visible; } } .snackbar { list-style: none; padding: 0; margin: 0; position: fixed; bottom: 0; left: 2rem; z-index: 11; } .snackbar__item { padding-bottom: 1rem; min-width: 15rem; max-width: calc(80vw - 4rem); } .snack { display: grid; grid-template-areas: 'title close' 'infos infos'; grid-template-columns: 1fr 2rem; background: white; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); overflow: hidden; grid-gap: .25rem; padding: .25rem; position: relative; } .snack__title { grid-area: title; margin-bottom: 0; font-weight: bold; } .snack__infos { grid-area: infos; } .snack__close { grid-area: close; background: none; border: none; box-shadow: none; outline: none; opacity: .75; font-size: .8rem; cursor: pointer; } .snack__close:hover { opacity: 1; } .snack_color_primary { background: #000e25; color: rgba(255, 255, 255, 0.84); } .snack_color_primary .snack__progress { background-color: rgba(255, 255, 255, 0.84); } .snack_color_primary .snack__close { color: rgba(255, 255, 255, 0.84); } .snack_color_green { background: #23bf44; color: rgba(255, 255, 255, 0.84); } .snack_color_green .snack__progress { background-color: rgba(255, 255, 255, 0.84); } .snack_color_green .snack__close { color: rgba(255, 255, 255, 0.84); } .snack_color_red { background: #bf2336; color: rgba(255, 255, 255, 0.84); } .snack_color_red .snack__progress { background-color: rgba(255, 255, 255, 0.84); } .snack_color_red .snack__close { color: rgba(255, 255, 255, 0.84); } .snack_color_grey { background: #333a45; color: rgba(255, 255, 255, 0.84); } .snack_color_grey .snack__progress { background-color: rgba(255, 255, 255, 0.84); } .snack_color_grey .snack__close { color: rgba(255, 255, 255, 0.84); } .snack_color_white { background: white; color: rgba(0, 14, 37, 0.84); } .snack_color_white .snack__progress { background-color: rgba(0, 14, 37, 0.84); } .snack_color_white .snack__close { color: rgba(0, 14, 37, 0.84); } .snack_color_success { background: #23bf44; color: rgba(255, 255, 255, 0.84); } .snack_color_success .snack__progress { background-color: rgba(255, 255, 255, 0.84); } .snack_color_success .snack__close { color: rgba(255, 255, 255, 0.84); } .snack_color_danger { background: #bf2336; color: rgba(255, 255, 255, 0.84); } .snack_color_danger .snack__progress { background-color: rgba(255, 255, 255, 0.84); } .snack_color_danger .snack__close { color: rgba(255, 255, 255, 0.84); } .snack_color_warning { background: #333a45; color: rgba(255, 255, 255, 0.84); } .snack_color_warning .snack__progress { background-color: rgba(255, 255, 255, 0.84); } .snack_color_warning .snack__close { color: rgba(255, 255, 255, 0.84); } .snack_color_info { background: #a2c9e9; color: rgba(0, 14, 37, 0.84); } .snack_color_info .snack__progress { background-color: rgba(0, 14, 37, 0.84); } .snack_color_info .snack__close { color: rgba(0, 14, 37, 0.84); } .loading { position: relative; cursor: progress; } .loading:after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; z-index: 1; background-color: black; opacity: 0.5; } .loading:before { content: ''; position: absolute; top: calc(50% - 1rem); left: calc(50% - 1rem); height: 2rem; width: 2rem; background: transparent; border-radius: 50%; z-index: 2; border: .25rem solid white; border-bottom-color: transparent; opacity: .75; animation: rotatingLoading 2s linear infinite; line-height: 0; padding: 0; margin: 0; } .loading_dark:after { background-color: black; } .loading_dark:before { border-color: white; border-bottom-color: transparent; } .loading_light:after { background-color: white; } .loading_light:before { border-color: black; border-bottom-color: transparent; } .loading_size_small:before { height: 1rem; width: 1rem; top: calc(50% - .75rem); left: calc(50% - .75rem); } .loading_size_big:before { height: 3rem; width: 3rem; top: calc(50% - 1.5rem); left: calc(50% - 1.5rem); } @keyframes rotatingLoading { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .logo-loader { width: 100%; text-align: center; position: relative; } .logo-loader__text { font-weight: 600; display: block; animation: textAnimation 5s ease-in-out 1s infinite; position: relative; z-index: 2; } .logo-loader:after { content: ""; display: block; background-color: white; position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; z-index: 1; opacity: .5; } .logo-loader svg { max-width: 3rem; z-index: 2; position: relative; } .logo-loader path { animation: logoAnimation 5s ease-in-out 1s infinite; stroke: black; fill: black; fill-opacity: 0; stroke-width: 4; stroke-dasharray: 2000; stroke-dashoffset: 2000; } .logo-loader_dark:after { content: ""; display: block; background-color: black; position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; z-index: 1; opacity: .5; } .logo-loader_dark path { fill: white; stroke: white; } .logo-loader_dark .logo-loader__text { color: white; } .logo-loader_light:after { content: ""; display: block; background-color: white; position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; z-index: 1; opacity: .5; } .logo-loader_light path { fill: black; stroke: black; } .logo-loader_light .logo-loader__text { color: black; } @-webkit-keyframes logoAnimation { 0% { stroke-dashoffset: 2000; } 50% { stroke-dashoffset: 0; fill-opacity: 0; } 75% { stroke-dashoffset: 0; fill-opacity: 1; } 100% { stroke-dashoffset: 0; fill-opacity: 0; stroke: transparent; } } @keyframes textAnimation { 0% { opacity: 0; } 50% { opacity: 1; } 75% { opacity: 1; } 100% { opacity: 0; } } [type='color'], [type='date'], [type='datetime'], [type='datetime-local'], [type='email'], [type='month'], [type='number'], [type='password'], [type='search'], [type='tel'], [type='text'], [type='time'], [type='url'], [type='week'], input:not([type]), .select__placeholder:not([type]), .select__value:not([type]), textarea { border: 2px solid #a2c9e9; border-radius: 0.5rem; height: 3rem; padding: calc((3rem - 1rem) / 2); width: 100%; font-weight: 500; font-size: 1rem; outline: none; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); margin-bottom: 2rem; } [type='color']:hover, [type='date']:hover, [type='datetime']:hover, [type='datetime-local']:hover, [type='email']:hover, [type='month']:hover, [type='number']:hover, [type='password']:hover, [type='search']:hover, [type='tel']:hover, [type='text']:hover, [type='time']:hover, [type='url']:hover, [type='week']:hover, input:not([type]):hover, .select__placeholder:not([type]):hover, .select__value:not([type]):hover, textarea:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } [type='color']:active, [type='date']:active, [type='datetime']:active, [type='datetime-local']:active, [type='email']:active, [type='month']:active, [type='number']:active, [type='password']:active, [type='search']:active, [type='tel']:active, [type='text']:active, [type='time']:active, [type='url']:active, [type='week']:active, input:not([type]):active, .select__placeholder:not([type]):active, .select__value:not([type]):active, textarea:active { border: 2px solid rgba(0, 14, 37, 0.46); } [type='color']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='email']:focus, [type='month']:focus, [type='number']:focus, [type='password']:focus, [type='search']:focus, [type='tel']:focus, [type='text']:focus, [type='time']:focus, [type='url']:focus, [type='week']:focus, input:not([type]):focus, .select__placeholder:not([type]):focus, .select__value:not([type]):focus, textarea:focus { border: 2px solid #333a45; } [type='color']:invalid, [type='date']:invalid, [type='datetime']:invalid, [type='datetime-local']:invalid, [type='email']:invalid, [type='month']:invalid, [type='number']:invalid, [type='password']:invalid, [type='search']:invalid, [type='tel']:invalid, [type='text']:invalid, [type='time']:invalid, [type='url']:invalid, [type='week']:invalid, input:not([type]):invalid, .select__placeholder:not([type]):invalid, .select__value:not([type]):invalid, textarea:invalid { border: 2px solid #bf2336; color: #bf2336; } .input-box { position: relative; } .input__error { color: #bf2336; font-weight: 500; } .input + .input__error { position: absolute; top: 3rem; font-size: 1rem; left: 0; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .input_small, .select_small .select__value, .select_small .select__placeholder, .select_small .select_autocomplete .input, .autocomplete_small .autocomplete__input { height: 1.875rem; padding: calc((1.875rem - 1rem) / 2); font-size: 0.875rem; margin-bottom: 1rem; } .input_small + .input__error, .select_small .select__value + .input__error, .select_small .select__placeholder + .input__error, .select_small .select_autocomplete .input + .input__error, .autocomplete_small .autocomplete__input + .input__error { position: absolute; top: 1.875rem; font-size: 0.875rem; left: 0; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .input_error { border: 2px solid #bf2336; color: #bf2336; } input[type=text]::placeholder, .select__placeholder[type=text]::placeholder, .select__value[type=text]::placeholder, input[type=number]::placeholder, .select__placeholder[type=number]::placeholder, .select__value[type=number]::placeholder { color: black; } .checkbox { height: 3rem; width: 3rem; display: inline-flex; align-items: center; cursor: pointer; } .checkbox__feedback { display: inline-flex; align-items: center; justify-content: space-around; border: 2px solid #a2c9e9; border-radius: calc(0.5rem / 2); width: 1.5rem; height: 1.5rem; background: transparent; } .checkbox__feedback:after { content: ""; display: inline; width: 80%; height: 80%; background: transparent; border-radius: calc(0.5rem / 3); transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); } .checkbox__input { display: none; } .checkbox__input:checked + .checkbox__feedback:after { background: #a2c9e9; } .checkbox_radio .checkbox__feedback { border-radius: 50%; } .checkbox_radio .checkbox__feedback:after { border-radius: 50%; } .checkbox_disabled .checkbox__input { display: none; } .checkbox_disabled .checkbox__input:checked + .checkbox__feedback:after { background: #ebebe4; } .label_size_big { font-size: 1rem; } textarea { min-height: 9.75rem; } .textarea-box { position: relative; } .textarea { min-height: 9.75rem; } .textarea__error { color: #bf2336; font-weight: 500; } .textarea + .textarea__error { position: absolute; top: 9.75rem; font-size: 1rem; left: 0; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .textarea_small { padding: calc((1.875rem - 1rem) / 2); font-size: 0.875rem; min-height: 80px; margin-bottom: 1rem; } .textarea_small + .textarea__error { position: absolute; top: 80px; font-size: 0.875rem; left: 0; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .textarea_error { border: 2px solid #bf2336; color: #bf2336; } .main-search { position: relative; } .main-search__input { border-radius: 10rem; padding-right: 3rem; } .main-search__button { border: none; outline: none; position: absolute; top: 4px; right: 4px; border-radius: 50%; background: #a2c9e9; width: calc(3rem - 8px); height: calc(3rem - 8px); color: white; display: flex; align-items: center; justify-content: space-around; cursor: pointer; } .main-search__button:after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; right: 0; background: black; opacity: 0; border-radius: 50%; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); } .main-search__button:hover:after { opacity: 0.12; } .select { position: relative; /* width */ /* Track */ /* Handle */ } .select ::-webkit-scrollbar { width: calc(.5rem + 4px); height: calc(.5rem + 4px); } .select ::-webkit-scrollbar-track { box-shadow: none; } .select ::-webkit-scrollbar-thumb { background: lightblue; border-radius: 10px; border: 2px solid rgba(255, 255, 255, 0.5); } .select ::-webkit-scrollbar-thumb:hover { background: rgba(51, 58, 69, 0.5); } .select__input { display: none; } .select__placeholder { position: absolute; border: none !important; background: none; top: 0; padding-right: 3rem; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .select__value { display: grid; grid-template-columns: auto 1fr auto; cursor: pointer; padding-right: 3rem; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .select__icon { position: absolute; right: 0; top: 0; padding: 1rem; } .select__list { z-index: 2; position: absolute; top: 0; left: 0; right: 0; max-height: 15rem; background: white; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); margin: 0; padding: 0; list-style: none; overflow-y: auto; display: none; } .select__list-item { padding: 1rem 1rem; border-bottom: 2px solid #a2c9e9; overflow: hidden; text-overflow: ellipsis; cursor: pointer; } .select__list-item:hover { background: rgba(162, 201, 233, 0.5); } .select__list-item_hovered { background: rgba(162, 201, 233, 0.5); } .select__list-item_active { background: #a2c9e9; } .select__list-item:last-child { border-bottom: 0; } .select_active .select__list { display: block; } .select_autocomplete .select__list { top: calc(100% - 2rem); } .select_small { cursor: pointer; } .select_small .select__value { display: grid; grid-template-columns: auto 1fr auto; cursor: pointer; padding-right: 2rem; } .select_small .select__placeholder { padding-right: 2rem; } .select_small .select__icon { padding: 0.5rem; } .select_small .select__list-item { height: 1.875rem; padding: calc((1.875rem - 1rem) / 2); font-size: 0.875rem; } .select_small .select_autocomplete__list { top: calc(100% - 1rem); } .select_disabled .select__value { background: #ebebe4; cursor: context-menu; } .autocomplete { position: relative; /* width */ /* Track */ /* Handle */ } .autocomplete ::-webkit-scrollbar { width: calc(.5rem + 4px); height: calc(.5rem + 4px); } .autocomplete ::-webkit-scrollbar-track { box-shadow: none; } .autocomplete ::-webkit-scrollbar-thumb { background: lightblue; border-radius: 10px; border: 2px solid rgba(255, 255, 255, 0.5); } .autocomplete ::-webkit-scrollbar-thumb:hover { background: rgba(51, 58, 69, 0.5); } .autocomplete__list { z-index: 2; position: absolute; top: calc(100% - 2rem); left: 0; right: 0; max-height: 15rem; background: white; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); margin: 0; padding: 0; list-style: none; overflow-y: auto; display: none; } .autocomplete__list-item { padding: 1rem 1rem; border-bottom: 2px solid #a2c9e9; overflow: hidden; text-overflow: ellipsis; cursor: pointer; } .autocomplete__list-item:hover { background: rgba(162, 201, 233, 0.5); } .autocomplete__list-item_hovered { background: rgba(162, 201, 233, 0.5); } .autocomplete__list-item_active { background: #a2c9e9; } .autocomplete__list-item:last-child { border-bottom: 0; } .autocomplete__error { color: #bf2336; font-weight: 500; } .autocomplete__input + .autocomplete__error { position: absolute; top: 3rem; font-size: 1rem; left: 0; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .autocomplete_active .autocomplete__list { display: block; } .autocomplete_error .autocomplete__input { border: 2px solid #bf2336; color: #bf2336; } .autocomplete_small { cursor: pointer; } .autocomplete_small .autocomplete__list { top: calc(100% - 1rem); } .autocomplete_small .autocomplete__list-item { height: 1.875rem; padding: calc((1.875rem - 1rem) / 2); font-size: 0.875rem; left: 0; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .autocomplete_small .autocomplete__input + .autocomplete__error { position: absolute; top: 1.875rem; font-size: 0.875rem; } .autocomplete_disabled .autocomplete__value { background: #ebebe4; cursor: context-menu; } .main-header { background: white; margin-bottom: 2rem; font-size: 0; padding: 0.5rem 2rem; display: grid; align-items: center; grid-column-gap: 1rem; grid-row-gap: 0; grid-template-columns: 15rem auto 3rem; grid-template-areas: "logo search collapse" "nav nav nav"; } @media (max-width: 599px) { .main-header { padding: 0.5rem 1rem; grid-template-columns: 2rem auto 3rem; } } @media (min-width: 900px) { .main-header { grid-template-areas: "logo search collapse nav"; grid-template-columns: 2rem 20rem auto auto; grid-gap: 1rem; } } .main-header__logo { grid-area: logo; line-height: 0; font-size: 0; padding: 0; margin: 0; height: 3rem; display: inline-block; } .main-header__logo span { display: none; } .main-header__logo img { display: inline-block; height: 100%; } .main-header__logo svg { display: inline-block; fill: #bf2336; height: 100%; } @media (max-width: 599px) { .main-header__logo { height: 2rem; } } .main-header__title { font-size: 1.5rem; color: #000e25; } .main-header .main-search { grid-area: search; display: inline-block; } @media (max-width: 599px) { .main-header .main-search__button { height: calc(2rem - 8px); width: calc(2rem - 8px); font-size: .8rem; } } .main-header .main-search__input { margin-bottom: 0; } @media (max-width: 599px) { .main-header .main-search__input { padding: .5rem 2rem .5rem .5rem; height: 2rem; } } .main-header__collapse { grid-area: collapse; padding-left: 0.5rem; padding-right: .5rem; margin-bottom: 0; text-decoration: none; } .main-header__collapse:focus { text-decoration: none; outline: none; background: none; } @media (min-width: 900px) { .main-header__collapse { display: none; } } .main-header__nav { grid-area: nav; text-align: center; } @media (min-width: 900px) { .main-header__nav { text-align: right; } } @media (max-width: 899px) { .main-header__nav { display: none; } } .main-header_active { grid-gap: 1rem; } .main-header_active .main-header__nav { display: block; } .main-header_bordered { border-bottom: 1px solid #000e25; } .main-nav { list-style: none; margin: 0; padding: 0; margin-right: -0.5rem; } .main-nav__item { display: inline-block; } .main-nav__link { font-size: 1rem; font-weight: 500; color: #000e25; padding: 1rem 0.5rem; display: inline-block; position: relative; background: none; border: none; box-shadow: none; cursor: pointer; text-decoration: underline; } .main-nav__link .badge { position: absolute; top: 0.5rem; right: 0; } .main-nav__link:hover { color: black; } .main-nav__link_active { font-weight: 600; } .main-footer { padding: 4rem 2rem 4rem 2rem; margin-top: 2rem; background: #810d1f; color: white; display: grid; grid-gap: 1rem; grid-template-columns: 1fr 1fr 1fr; grid-template-areas: "logo . socials" "title1 title2 title3" "nav1 nav2 nav3"; } @media (max-width: 599px) { .main-footer { padding: 4rem 1rem 8rem 1rem; grid-template-columns: 1fr 1fr; grid-template-areas: "logo socials" "title1 title2" "nav1 nav2" "title3 ." "nav3 ."; } } @media (min-width: 900px) { .main-footer { grid-template-columns: 10% 1fr 1fr 1fr 20%; grid-template-areas: "logo title1 title2 title3 socials" ". nav1 nav2 nav3 ."; } } .main-footer__logo { grid-area: logo; align-self: end; justify-self: start; } @media (min-width: 900px) { .main-footer__logo { justify-self: end; } } .main-footer__logo svg { fill: white; height: 3rem; } .main-footer__logo img { height: 3rem; } .main-footer__title { align-self: end; } .main-footer__title_advices { grid-area: title1; } .main-footer__title_projects { grid-area: title2; } .main-footer__title_who { grid-area: title3; } .main-footer__nav { list-style: none; margin: 0; padding: 0; } .main-footer__nav_advices { grid-area: nav1; } .main-footer__nav_projects { grid-area: nav2; } .main-footer__nav_who { grid-area: nav3; } .main-footer__link { color: white; text-decoration: none; padding: 0.25rem 0; display: block; } .main-footer__link:hover { text-decoration: underline; } .main-footer__socials { align-self: end; justify-self: start; grid-area: socials; list-style: none; margin: 0; padding: 0; } .main-footer__socials * { display: inline-block; font-size: 2rem; color: white; padding: 0 .1rem; } .user { width: 25rem; background: white; height: 4rem; max-width: 100%; display: grid; grid-template-columns: 4rem 1fr 2rem 4px; grid-template-rows: 1fr 1fr 1fr; grid-gap: 0 1rem; align-items: center; grid-template-areas: "avatar context like status" "avatar name like status" "avatar plan like status"; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } @media (max-width: 599px) { .user { width: 100%; } } .user__avatar { grid-area: avatar; max-width: 100%; width: 100%; } .user__context { grid-area: context; } .user__name { grid-area: name; } .user__plan { grid-area: plan; } .user__like { grid-area: like; text-align: center; color: #bf2336; } .user__status { grid-area: status; height: 100%; } .user__status_online { background: #23bf44; } .user_big { background: #333a45; color: white; height: 6rem; width: 100%; grid-template-columns: 6rem 1fr 2rem 4px; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); align-items: center; } .user_big .user__context { text-transform: none; margin-bottom: 0; } .user_big .user__name { margin-bottom: 0; } .users-list { list-style: none; padding: 0; margin: 0; } .users-list__item { cursor: pointer; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); border-bottom: 1px solid #a2c9e9; } .users-list__item_message { background: rgba(191, 35, 54, 0.2); } .users-list__item:hover { background: rgba(0, 14, 37, 0.2); } .project { width: 25rem; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); cursor: pointer; } .project:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } @media (max-width: 599px) { .project { max-width: 70vw; } } .project__link { color: #000e25; text-decoration: none; } .project__user .user { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); } .project__content { position: relative; height: 14.0625rem; background: #333a45; text-align: center; } @media (max-width: 599px) { .project__content { max-height: 39.375vw; } } .project__done { position: absolute; z-index: 2; top: 1rem; left: 0; max-width: 75%; padding: 1rem; color: white; background-color: #bf2336; font-size: 2rem; line-height: 1.2; font-weight: bold; } .project__headline { height: 100%; widows: 100%; background-color: #000e25; color: white; display: flex; align-items: center; padding: 1rem 2rem; font-size: 2rem; line-height: 1.2; font-weight: bold; white-space: initial; max-height: 14.0625rem; overflow: hidden; } @media (max-width: 599px) { .project__headline { max-height: 39.375vw; } } .project__headline small { font-size: 75%; font-weight: normal; } .project__text { max-height: 14.0625rem; overflow: hidden; word-break: break-word; } @media (max-width: 599px) { .project__text { max-height: 39.375vw; } } .project__img { position: absolute !important; left: 0; right: 0; top: 0; z-index: 1; bottom: 0; height: 100%; width: 100%; -o-object-fit: cover; object-fit: cover; } .project__like { cursor: pointer; position: absolute; top: 1rem; right: 1rem; color: white; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(255, 255, 255, 0.24); font-size: 2rem; background: none; outline: none; box-shadow: none; border: none; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); } .project__like:hover, .project__like_active { color: #bf2336; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(191, 35, 54, 0.24); } .project__match { padding-top: 0.5rem; } .project__match h1 { margin: 0; } .project__match h1 + * { margin-bottom: 0; } .project__match * { padding: 0.25rem 1rem; } .project__match *:last-child { text-align: right; } .project_owner { cursor: initial; } .project_owner:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .project__actions { display: grid; grid-auto-flow: column; } .project__action { margin-bottom: 0; border-radius: 0; } .project_next { font-size: 5rem; color: #eaeaea; max-width: 3rem; text-align: center; height: auto; box-shadow: none; } .project_next:hover { box-shadow: none; color: #a2c9e9; } .projects-list { list-style: none; padding: 0; margin: 0; margin-bottom: 1rem; margin-top: -1rem; width: 100%; white-space: nowrap; overflow-x: scroll; padding: 1rem 2rem; } @media (max-width: 599px) { .projects-list { padding: 0 1rem; } } .projects-list__item { display: table-cell; padding-right: 1rem; } .projects-list__item_next { vertical-align: middle; } .sidebar-project { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); display: inline-block; width: 100%; margin-bottom: 2rem; } .sidebar-project__container { padding: 1rem; } .sidebar-project__container + .sidebar-project__container { padding-top: 0; } .sidebar-project__container:last-child { padding-bottom: 0; } .sidebar-project__container_header { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "context like" "title like"; margin-bottom: 2rem; color: white; background: #333a45; } .sidebar-project__header-context { grid-area: context; } .sidebar-project__header-context a { color: white; font-weight: 600; } .sidebar-project__header-title { grid-area: title; margin-bottom: 0; } .sidebar-project__header-like { grid-area: like; background: none; color: white; font-size: 1.75rem; border: none; outline: none; box-shadow: none; cursor: pointer; width: 3rem; height: 3rem; border-radius: 50%; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); display: grid; background: transparent; justify-content: center; align-items: center; } .sidebar-project__header-like:hover { background: #bf2336; color: white; } .container, .newsletter { width: 100%; padding: 0 2rem; } @media (max-width: 599px) { .container, .newsletter { padding: 0 1rem; } } .container_content, .newsletter { max-width: calc((25rem * 3) + (1rem * 2) + (2rem * 2)); margin: auto; } .titling { margin-bottom: 2rem; } .titling__subtitle { max-width: 70ch; } .filter { background: #a2c9e9; padding: 0.5rem 2rem 0 2rem; display: grid; grid-template-columns: auto 1fr; margin-top: -2rem; grid-gap: 1rem; margin-bottom: 2rem; } @media (max-width: 599px) { .filter { padding: 0.5rem 1rem 0; grid-template-columns: 1fr; } } .filter .button, .filter .main-header__collapse, .filter .visit__action { margin-bottom: 0.5rem; } @media (max-width: 599px) { .filter .button, .filter .main-header__collapse, .filter .visit__action { width: 100%; display: block; } } .filter .select { display: inline-block; } .filter .select__value { margin-bottom: 0.5rem; background: #f5f5f5; border: none; } .filter .select__holder { margin-bottom: 0px; } @media (max-width: 599px) { .filter .select { min-width: inherit; width: 100%; display: block; } } .filter input, .filter .select__placeholder, .filter .select__value { border: none; margin-bottom: 0.5rem; } .filter input:focus, .filter .select__placeholder:focus, .filter .select__value:focus { border: none; } .filter__all { justify-self: end; } @media (max-width: 599px) { .filter__all { justify-self: normal; } } .hero-home { display: grid; min-height: 100vh; margin-bottom: 2rem; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; grid-template-areas: "login" "presentation" "form"; } @media (min-width: 900px) { .hero-home { grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr; grid-template-areas: "login login" "presentation form"; } } @media (min-width: 1200px) { .hero-home { grid-template-columns: 2fr 1fr; grid-template-rows: auto 1fr; grid-template-areas: "presentation login" "presentation form"; } } .hero-home__presentation { grid-area: presentation; background: #000e25; color: white; display: grid; grid-template-columns: 1fr; grid-template-rows: auto 1fr; } .hero-home__presentation svg { height: 6rem; fill: white; margin-bottom: 2rem; } @media (min-width: 900px) { .hero-home__presentation svg { height: 8rem; margin-bottom: 0; } } .hero-home__presentation img { margin-bottom: 2rem; } @media (min-width: 900px) { .hero-home__presentation img { margin-bottom: 0; } } .hero-home__title { padding-left: 2rem; border-left: 4px solid white; align-self: center; font-size: 2.125rem; } .hero-home__title > * { display: block; } @media (min-width: 900px) { .hero-home__title { font-size: 3rem; } } .hero-home__login { grid-area: login; background: white; text-align: right; min-height: 6.5rem; } .hero-home__login .button, .hero-home__login .main-header__collapse, .hero-home__login .visit__action { margin-bottom: 0; } .hero-home__form { grid-area: form; padding: 2rem; display: flex; align-items: center; } .hero-home__form h1, .hero-home__form h2, .hero-home__form h3, .hero-home__form .hero-home__title, .hero-home__form h1, .hero-home__form h2, .hero-home__form h3, .hero-home__form .hero-home__title, .hero-home__form h4, .hero-home__form .market-enter__title { margin: 0 0 1rem 0; } .hero-home__covered { padding: 2rem; } .hero-home__covered > * { position: relative; z-index: 2; } .hero-home__cover { opacity: 0.24; } .hero-project { margin-top: -2rem; display: grid; width: 100%; min-height: 75vh; height: calc(100vw / 16 * 9); max-height: calc(100vh - 10rem); grid-gap: 1rem; grid-template-rows: auto auto 1fr; grid-template-areas: "share" "done" "user" "pictures"; } @media (min-width: 600px) { .hero-project { grid-template-rows: auto 1fr auto; } } @media (min-width: 900px) { .hero-project { grid-template-rows: auto 1fr; grid-template-areas: "done share" "user pictures"; } } .hero-project .cover__img, .hero-project .hero-home__cover, .hero-project .message_img .message__content, .message_img .hero-project .message__content { opacity: 1; } .hero-project__share { grid-area: share; padding: 2rem 2rem 0 0; justify-self: end; align-self: start; } .hero-project__share .button, .hero-project__share .main-header__collapse, .hero-project__share .visit__action { margin-bottom: 1rem; } @media (max-width: 599px) { .hero-project__share { padding: 1rem 1rem 0 0; margin-bottom: 0; } } .hero-project__done { grid-area: done; padding-top: 2rem; padding-bottom: 2rem; padding-left: 2rem; } .hero-project__user { grid-area: user; display: none; } @media (min-width: 600px) { .hero-project__user { display: block; padding: 0 0 2rem 2rem; justify-self: start; align-self: end; } } .hero-project__pictures { grid-area: pictures; justify-self: end; align-self: end; list-style: none; padding: 0; margin: 0; font-size: 0; text-align: right; } .hero-project__pictures-item { height: 4rem; width: 4rem; display: inline-block; cursor: pointer; } @media (min-width: 600px) { .hero-project__pictures-item { height: 5rem; width: 5rem; } } @media (min-width: 900px) { .hero-project__pictures-item { height: 6rem; width: 6rem; } } .hero-project__pictures-item:after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; right: 0; background: #000e25; opacity: 0; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); z-index: 2; } .hero-project__pictures-item:hover:after { opacity: 0.24; } .hero-project__pictures-item-more { position: absolute; background: rgba(191, 35, 54, 0.76); color: white; top: 0; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-around; padding: 0.25rem; } .market-enter { display: grid; min-height: 60vh; margin-bottom: 2rem; grid-template-areas: "discover" "advices" "feedback"; } @media (min-width: 600px) { .market-enter { grid-template-areas: "discover discover" "advices feedback"; } } @media (min-width: 900px) { .market-enter { grid-template-areas: "discover advices" "discover feedback"; } } .market-enter__panel { color: white; padding: 2rem 2rem 0; grid-gap: 1rem; display: grid; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; grid-template-areas: "title" "text" "action"; } .market-enter__panel_discover { grid-area: discover; background: #000e25; } .market-enter__panel_advices { grid-area: advices; background: #333a45; } .market-enter__panel_feedback { grid-area: feedback; background: #bf2336; } .market-enter__title { grid-area: title; padding-left: 2rem; border-left: 4px solid white; } .market-enter__text { grid-area: text; padding-left: 2rem; max-width: 70ch; } .market-enter__action { grid-area: action; justify-self: end; } .market-enter-list { list-style-type: circle; margin-top: 3rem; } .market-enter-list__item { margin-bottom: 1rem; } .read-more { position: relative; max-height: 20ch; margin-bottom: 2rem; overflow: hidden; } .read-more__action, .maps__action { padding-bottom: 1rem; position: absolute; height: 10ch; bottom: 0; left: 0; right: 0; background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 50%, white 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); display: flex; align-items: flex-end; justify-content: flex-end; } .read-more__action .button, .maps__action .button, .read-more__action .main-header__collapse, .maps__action .main-header__collapse, .read-more__action .visit__action, .maps__action .visit__action { margin-bottom: 0; } .read-more_active { max-height: none; } .read-more_active .read-more__action, .read-more_active .maps__action { display: none; } .maps { position: relative; height: 20rem; max-height: 80vh; border: 2px solid #000e25; margin-bottom: 2rem; } .maps__action { background: linear-gradient(to bottom, rgba(0, 14, 37, 0) 0%, #000e25 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); top: 0; height: 100%; } .maps__action .button, .maps__action .main-header__collapse, .maps__action .visit__action { margin-right: 2rem; margin-bottom: 1rem; } .maps_active .maps__action { display: none; } .agenda { width: 100%; display: inline-block; margin-bottom: 2rem; background: white; } .agenda__actions { display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; } .agenda__calendar { display: block; } .agenda__displayed-month { justify-self: center; } .agenda__icon { background: none; border: none; outline: none; padding: 0.25rem 1rem; } .calendar { display: grid; grid-template-columns: repeat(7, 1fr); grid-template-rows: auto repeat(6, 3rem); background: rgba(162, 201, 233, 0.12); } .calendar__item { padding: 0.25rem 0.125rem; position: relative; appearance: none; background: white; border: 1px solid rgba(162, 201, 233, 0.24); } .calendar__item_day { background: transparent; overflow: hidden; text-overflow: ellipsis; } .calendar__item_passed { background: transparent; } .calendar__item_prev { background: transparent; outline: none; color: rgba(0, 14, 37, 0.54); } .calendar__item_next { background: transparent; outline: none; color: rgba(0, 14, 37, 0.54); } .calendar__item_today .calendar__content { position: relative; } .calendar__item_today .calendar__content::after { position: absolute; display: inline-block; content: ""; top: -0.125rem; left: -0.125rem; right: -0.125rem; bottom: -0.125rem; border-radius: 1rem; background: rgba(0, 14, 37, 0.12); } .calendar__item_closed { background: rgba(191, 35, 54, 0.24); } .calendar__item_select { cursor: pointer; text-align: left; } .calendar__item_select:hover { background: rgba(0, 14, 37, 0.12); } .calendar__item_select:after { content: ""; display: inline-block; vertical-align: top; height: 100%; } .calendar__item_selected { background: #23bf44; color: white; } .calendar__item_selected:hover { background: #23bf44; } .calendar__content { display: inline-block; vertical-align: top; } .calendar__planned { height: 0.25rem; width: 0.25rem; border-radius: 1rem; background: #000e25; display: inline-block; margin-left: 0.125rem; } .visio { background: #810d1f; width: 100%; height: 18rem; } .downloads { border-radius: 0.5rem; overflow: hidden; border: 2px solid #a2c9e9; background: white; } .downloads__item { display: grid; grid-template-columns: 1fr auto; cursor: pointer; border-bottom: 1px solid #a2c9e9; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); } .downloads__item:last-child { border-bottom: none; } .downloads__item:hover { background: rgba(0, 14, 37, 0.12); } .downloads__item_valid .downloads__infos { background: #23bf44; } .downloads__item_disabled { cursor: not-allowed; opacity: 0.54; } .downloads__item_disabled:hover { background: none; } .downloads__item_disabled .downloads__infos { background: #333a45; } .downloads__title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 1rem; font-weight: 500; } .downloads__infos { padding: 1rem; background: #000e25; color: white; } .next-visit { background: #a2c9e9; overflow-x: auto; margin: 0; list-style: none; display: block; white-space: nowrap; font-size: 0; padding: .25rem .5rem; } @media (min-width: 600px) { .next-visit { padding: .25rem 1rem; } } @media (min-width: 900px) { .next-visit { padding: 0.25rem 2rem; } } .next-visit__item { display: inline-block; padding-right: .25rem; } .next-visit__item:last-child { padding-right: 0; } .next-visit__link { background: white; display: inline-block; width: 10rem; padding: 0.3125rem 0.5rem; border-radius: 0.5rem; text-decoration: none; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); } .next-visit__link:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); width: auto; } .next-visit__context { margin-bottom: 0.1875rem; width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .next-visit__date { margin-bottom: 0; width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .gallery { list-style: none; padding: 0; margin: -1px -1px 2rem -1px; font-size: 0; display: flex; flex-wrap: wrap; } .gallery__img { opacity: 1; transform: scale(1); transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); width: 100%; height: 100%; object-fit: cover; } .gallery__item { background: #000e25; border: 1px solid white; width: 8rem; height: 8rem; flex-grow: 0; overflow: hidden; cursor: pointer; } .gallery__item:hover .gallery__img { opacity: .5; transform: scale(1.2); } .gallery-showcase { background: #fff; position: fixed; top: 0; left: 0; right: 0; bottom: 0; overflow-y: auto; z-index: 9999; display: grid; grid-template-columns: auto; grid-template-rows: 2fr auto; grid-template-areas: "galleryMain" "galleryList"; align-items: start; overflow: hidden; background: #333a45; } @media (min-width: 1200px) { .gallery-showcase { grid-template-columns: auto 2fr; grid-template-areas: "galleryList galleryMain"; align-items: start; overflow: hidden; } } .gallery-showcase__main { grid-area: galleryMain; margin: 4rem 0; position: relative; z-index: 2; align-self: center; } .gallery-showcase__list { grid-area: galleryList; background: #333a45; margin: 0; display: block; white-space: nowrap; overflow-y: auto; } @media (min-width: 1200px) { .gallery-showcase__list { max-height: 100vh; overflow: auto; max-width: 100vw; max-width: 25.1rem; } } .gallery-showcase__img { margin: auto; display: block; max-width: 90%; max-height: 65vh; height: auto; width: auto; } @media (max-height: 600px) { .gallery-showcase__img { max-height: 40vh; } } .gallery-showcase__close { position: absolute; z-index: 2; background: none; border: none; padding: 1rem; font-size: 1.5rem; top: 0; right: 0; color: white; outline: none; cursor: pointer; } @media (max-width: 1199px) { .gallery-showcase .gallery-showcase-list__item { background: #000e25; border: 1px solid white; width: 8rem; height: 8rem; overflow: hidden; cursor: pointer; display: inline-block; } } @media (max-width: 1199px) and (max-height: 600px) { .gallery-showcase .gallery-showcase-list__item { width: 4rem; height: 4rem; } } .send-message { display: grid; grid-template-columns: 1fr 4rem; } .send-message__textarea { height: 6ch; margin-bottom: 0; border-radius: 0.5rem 0 0 0.5rem; border-right: none; min-height: auto; padding: .5rem 1rem .25rem .5rem; } .send-message__button { background: #000e25; color: white; border-radius: 0 0.5rem 0.5rem 0; border: none; outline: none; box-shadow: none; } .messages { margin: 0; list-style: none; } .messages__item { display: block; } .messages__item::after { clear: both; content: ""; display: block; } .message { max-width: 80%; border-radius: 0 0.5rem 0.5rem 0.5rem; border: 2px solid #810d1f; color: #810d1f; padding: .4rem .5rem; margin-bottom: .5rem; display: inline-block; } @media (max-width: 599px) { .message__content { font-size: .8rem; } } .message_me { float: right; margin-left: auto; background: #000e25; color: white; border-color: #000e25; border-radius: 0.5rem 0 0.5rem 0.5rem; } .message_plan { width: 100%; max-width: 100%; background: #000e25; color: white; border-color: #000e25; border-radius: 0; padding: 1rem .5rem; display: grid; grid-gap: 1rem; grid-template-columns: auto 1fr; align-items: center; } .message_plan .message__icon { font-size: 2rem; } .message_doc { padding: .5rem 0; background: none; border: none; } .message_doc .downloads { margin-bottom: 0; } .message_doc.message_me { color: #000e25; } .message_img { height: 15rem; width: 15rem; cursor: pointer; background: #000e25; } .message_img .message__content { opacity: 1; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); } .message_img .message__content:hover { opacity: .5; } .message_event { width: 100%; max-width: 100%; background: #333a45; color: white; border-color: #333a45; border-radius: 0; padding: 1rem .5rem; text-align: center; } .message_time { text-align: center; position: relative; opacity: .75; border: none; color: #333a45; max-width: 100%; width: 100%; } .message_time:after { position: absolute; top: 50%; left: 0; right: 0; content: ""; width: 100%; height: 1px; display: block; background: #333a45; opacity: .24; } .message_time .message__content { position: relative; z-index: 2; display: inline-block; background: white; padding: .5rem; margin: 0; } .message_followed { margin-bottom: 0.125rem; border-radius: 0 0.5rem 0.5rem 0; } .message_followed.message_me { border-radius: 0.5rem 0 0 0.5rem; } .collapse-list { list-style: none; padding: 0; } .collapse-list__button { margin-bottom: 0; width: 100%; text-align: left; } .collapse-list__icon { float: right; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); } .collapse-list__content { height: 0; overflow: hidden; } .collapse-list__item_active .collapse-list__content { height: auto; } .newsletter { display: grid; grid-template-columns: repeat(5, 1fr); grid-gap: 1rem; } .table { display: grid; grid-template-columns: 1fr; grid-auto-flow: row; list-style: none; padding: 0; margin: 0; background: white; margin-bottom: 1rem; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .table__row { border-bottom: 1px solid material-color("grey", "200"); list-style-type: none; } .table_mode_card { display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); grid-gap: 1rem; justify-content: start; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); } .table_mode_card .table__row { border: 1px solid material-color("grey", "100"); transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .table_mode_card .table__row_head { display: none; } .table_mode_card .table-row { grid-auto-flow: row; grid-gap: .25rem; padding: .5rem 0 0; } .table_mode_card .table-row__item { padding: 0 .5rem; } .table_mode_card .table-row__item_actions { padding: .5rem .5rem 0 .5rem; background-color: material-color("grey", "200"); grid-auto-flow: column; display: grid; justify-content: space-between; } .table_mode_card .table-row__action_settings { text-align: left; } .table_sortable .table-head__item { cursor: pointer; } .table_sortable .table-head__item:after { padding-left: .25rem; content: '\f0dc'; } .table_sortable .table-head__item_actions { pointer-events: none; } .table_sortable .table-head__item_actions:after { content: none; } .table-head { list-style: none; display: grid; justify-content: stretch; grid-auto-flow: column; padding: .5rem; grid-gap: 1rem; grid-auto-columns: 1fr; align-items: center; margin: 0; background: #333a45; color: #f5f5f5; } .table-head__item_actions { text-align: right; } .table-row { list-style: none; display: grid; justify-content: stretch; grid-auto-flow: column; padding: .5rem; grid-gap: 1rem; margin: 0; grid-auto-columns: 1fr; align-items: center; } .table-row__item_actions { text-align: right; } .table-row__item_input { margin-bottom: none; } .table-row__item_title { font-weight: bold; } .table-row__action { margin-bottom: 0; } .table-row__action_edit:hover { cursor: pointer; } .table-row__action_delete:hover { cursor: pointer; } .table-row__action_settings { opacity: .75; } .table-row__action_settings:hover { opacity: 1; } .table-row-input > input, .table-row-input > .select__placeholder, .table-row-input > .select__value { margin-bottom: 0; } .table-row-input > .select .select__value { margin-bottom: 0; } .paginate { margin-bottom: 2rem; display: grid; grid-template-columns: 1fr auto; align-items: center; grid-gap: 1rem; } .paginate__nav { list-style: none; padding: 0; margin: 0; display: grid; grid-auto-flow: column; align-items: stretch; } .paginate__action { padding: .25rem .5rem; height: 100%; font-weight: bold; cursor: pointer; background: none; border: none; box-shadow: none; font-size: .875rem; } .paginate__action:hover { text-decoration: underline; } .paginate__action_current { pointer-events: none; font-weight: normal; text-decoration: underline; } .paginate__action_ellips { pointer-events: none; font-weight: normal; } .paginate__action_ellips:after { content: '...'; } .paginate__action_disabled { pointer-events: none; opacity: .5; } .picture { width: 15rem; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .picture:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } .picture:hover .picture__overlay { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); opacity: 0.5; } .picture:hover .picture__label { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); opacity: 1; } @media (max-width: 599px) { .picture { max-width: 70vw; } } .picture__link { color: #000e25; text-decoration: none; } .picture__content { position: relative; height: 8.4375rem; text-align: center; } @media (max-width: 599px) { .picture__content { max-height: 39.375vw; } } .picture__img { position: absolute !important; left: 0; right: 0; top: 0; z-index: 1; bottom: 0; height: 100%; width: 100%; -o-object-fit: cover; object-fit: cover; } .picture__overlay { position: absolute; top: 0; left: 0; bottom: 0; height: 100%; width: 100%; background: #000e25; opacity: 0; z-index: 2; } .picture__label { position: absolute; width: 90%; top: 50%; transform: translateY(-50%); left: 5%; text-align: center; opacity: 0; color: #f5f5f5; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; z-index: 3; } .picture__icon { cursor: pointer; position: absolute; top: 0.5rem; color: #f5f5f5; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(255, 255, 255, 0.24); font-size: 1rem; background: none; outline: none; box-shadow: none; border: none; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); z-index: 3; } .picture__icon:hover, .picture__icon_active { color: #bf2336; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(191, 35, 54, 0.24); } .picture__icon_left { left: 0.5rem; } .picture__icon_right { right: 0.5rem; } .pictures-list { list-style: none; padding: 0; margin: 0; width: 100%; white-space: nowrap; overflow-x: auto; padding: 0; } @media (max-width: 599px) { .pictures-list { padding: 0 1rem; } } .pictures-list__item { display: inline-block; padding-right: 1rem; } .upload-box { position: relative; width: 15rem; height: 8.4375rem; background: #333a45; } @media (max-width: 599px) { .upload-box { max-height: 39.375vw; } } .upload-box:hover { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } .upload-box:hover .upload-box__overlay { transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); opacity: 1; } .upload-box__overlay { opacity: 0; position: absolute; top: 1%; left: 1%; bottom: 0; height: 98%; width: 98%; border: 2px dashed #f5f5f5; } .upload-box__label { position: absolute; width: 90%; top: 50%; transform: translateY(-50%); left: 4%; text-align: center; color: #f5f5f5; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(255, 255, 255, 0.24); } .upload-box:hover { cursor: pointer; } .consumption-item { padding: 0.5rem; background-color: #ddd; position: relative; color: black; font-weight: bold; font-size: .8rem; width: 7rem; margin: .2rem 0; } .consumption-item__letter { float: right; } .consumption-item:after, .consumption-item:before { content: ""; position: absolute; left: 100%; width: 1rem; height: 50%; } .consumption-item:before { top: 0px; background: linear-gradient(to top right, #ddd 50%, transparent 51%); } .consumption-item:after { bottom: 0px; background: linear-gradient(to bottom right, #ddd 50%, transparent 51%); } .consumption-item_size_small { width: 2rem; } .consumption-item_size_small .consumption-item__info { display: none; } .consumption-item_size_small .consumption-item__letter { float: inherit; } .consumption-graph { margin-bottom: 2rem; } .consumption-graph_ges .consumption-graph__item_color_a { background: #efdcff; opacity: 0.3; } .consumption-graph_ges .consumption-graph__item_color_a:after { background: linear-gradient(to bottom right, #efdcff 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_a:before { background: linear-gradient(to top right, #efdcff 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_b { background: #E6C5FF; opacity: 0.3; } .consumption-graph_ges .consumption-graph__item_color_b:after { background: linear-gradient(to bottom right, #E6C5FF 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_b:before { background: linear-gradient(to top right, #E6C5FF 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_c { background: #D4A7F6; opacity: 0.3; } .consumption-graph_ges .consumption-graph__item_color_c:after { background: linear-gradient(to bottom right, #D4A7F6 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_c:before { background: linear-gradient(to top right, #D4A7F6 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_d { background: #CE96F6; opacity: 0.3; } .consumption-graph_ges .consumption-graph__item_color_d:after { background: linear-gradient(to bottom right, #CE96F6 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_d:before { background: linear-gradient(to top right, #CE96F6 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_e { background: #BC73EE; opacity: 0.3; } .consumption-graph_ges .consumption-graph__item_color_e:after { background: linear-gradient(to bottom right, #BC73EE 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_e:before { background: linear-gradient(to top right, #BC73EE 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_f { background: #AD4CEE; opacity: 0.3; } .consumption-graph_ges .consumption-graph__item_color_f:after { background: linear-gradient(to bottom right, #AD4CEE 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_f:before { background: linear-gradient(to top right, #AD4CEE 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_g { background: #8B19DF; opacity: 0.3; } .consumption-graph_ges .consumption-graph__item_color_g:after { background: linear-gradient(to bottom right, #8B19DF 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_color_g:before { background: linear-gradient(to top right, #8B19DF 50%, transparent 51%); } .consumption-graph_ges .consumption-graph__item_size_a { width: 4rem; } .consumption-graph_ges .consumption-graph__item_size_b { width: 5rem; } .consumption-graph_ges .consumption-graph__item_size_c { width: 6rem; } .consumption-graph_ges .consumption-graph__item_size_d { width: 7rem; } .consumption-graph_ges .consumption-graph__item_size_e { width: 8rem; } .consumption-graph_ges .consumption-graph__item_size_f { width: 9rem; } .consumption-graph_ges .consumption-graph__item_size_g { width: 10rem; } .consumption-graph_ges .consumption-graph__item_selected { opacity: 1; } @media (min-width: 900px) { .consumption-graph_ges .consumption-graph__item_size_a { width: 5rem; } .consumption-graph_ges .consumption-graph__item_size_b { width: 6rem; } .consumption-graph_ges .consumption-graph__item_size_c { width: 7rem; } .consumption-graph_ges .consumption-graph__item_size_d { width: 8rem; } .consumption-graph_ges .consumption-graph__item_size_e { width: 9rem; } .consumption-graph_ges .consumption-graph__item_size_f { width: 10rem; } .consumption-graph_ges .consumption-graph__item_size_g { width: 11rem; } } .consumption-graph_dpe .consumption-graph__item_color_a { background: #319A31; opacity: .3; } .consumption-graph_dpe .consumption-graph__item_color_a:after { background: linear-gradient(to bottom right, #319A31 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_a:before { background: linear-gradient(to top right, #319A31 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_b { background: #33CC33; opacity: .3; } .consumption-graph_dpe .consumption-graph__item_color_b:after { background: linear-gradient(to bottom right, #33CC33 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_b:before { background: linear-gradient(to top right, #33CC33 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_c { background: #CCFF33; opacity: .3; } .consumption-graph_dpe .consumption-graph__item_color_c:after { background: linear-gradient(to bottom right, #CCFF33 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_c:before { background: linear-gradient(to top right, #CCFF33 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_d { background: #FFFF00; opacity: .3; } .consumption-graph_dpe .consumption-graph__item_color_d:after { background: linear-gradient(to bottom right, #FFFF00 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_d:before { background: linear-gradient(to top right, #FFFF00 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_e { background: #FFCC00; opacity: .3; } .consumption-graph_dpe .consumption-graph__item_color_e:after { background: linear-gradient(to bottom right, #FFCC00 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_e:before { background: linear-gradient(to top right, #FFCC00 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_f { background: #FF9A33; opacity: .3; } .consumption-graph_dpe .consumption-graph__item_color_f:after { background: linear-gradient(to bottom right, #FF9A33 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_f:before { background: linear-gradient(to top right, #FF9A33 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_g { background: #E40118; opacity: .3; } .consumption-graph_dpe .consumption-graph__item_color_g:after { background: linear-gradient(to bottom right, #E40118 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_color_g:before { background: linear-gradient(to top right, #E40118 50%, transparent 51%); } .consumption-graph_dpe .consumption-graph__item_size_a { width: 4rem; } .consumption-graph_dpe .consumption-graph__item_size_b { width: 5rem; } .consumption-graph_dpe .consumption-graph__item_size_c { width: 6rem; } .consumption-graph_dpe .consumption-graph__item_size_d { width: 7rem; } .consumption-graph_dpe .consumption-graph__item_size_e { width: 8rem; } .consumption-graph_dpe .consumption-graph__item_size_f { width: 9rem; } .consumption-graph_dpe .consumption-graph__item_size_g { width: 10rem; } .consumption-graph_dpe .consumption-graph__item_selected { opacity: 1; } @media (min-width: 900px) { .consumption-graph_dpe .consumption-graph__item_size_a { width: 5rem; } .consumption-graph_dpe .consumption-graph__item_size_b { width: 6rem; } .consumption-graph_dpe .consumption-graph__item_size_c { width: 7rem; } .consumption-graph_dpe .consumption-graph__item_size_d { width: 8rem; } .consumption-graph_dpe .consumption-graph__item_size_e { width: 9rem; } .consumption-graph_dpe .consumption-graph__item_size_f { width: 10rem; } .consumption-graph_dpe .consumption-graph__item_size_g { width: 11rem; } } .consumption-graph_size_small .consumption-item { width: 2rem; } .consumption-graph_size_small .consumption-item__info { display: none; } .consumption-graph_size_small .consumption-item__letter { float: inherit; } .search-home { width: 100%; } .search-home__main { display: grid; grid-template-columns: minmax(0, 3rem) auto; grid-gap: 1rem; grid-template-areas: "search-home__logo search-home__title"; margin-bottom: 2rem; } .search-home__main h2 { grid-area: search-home__title; align-self: center; margin: 0; } .search-home__main svg { grid-area: search-home__logo; } @media (min-width: 900px) { .search-home__main { display: grid; grid-template-columns: auto; grid-template-areas: "search-home__title"; } .search-home__main svg { display: none; } } .cookie-overlay { position: fixed; bottom: 0; background-color: rgba(0, 0, 0, 0.9); left: 0; right: 0; text-align: center; z-index: 2; color: #f5f5f5; padding: 1rem; font-size: 1rem; line-height: 1rem; } .cookie-overlay button { margin-bottom: 0; } .grecaptcha-badge { display: none; } .block-captcha { text-align: center; padding: 15px; display: block; font-size: 11px; color: #f5f5f5; background-color: #810d1f; } .done { display: inline-block; background: #bf2336; color: white; transition: 375ms all cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .done__brand { padding: 2rem 2rem 1rem 2rem; } .done__brand svg { height: 4rem; fill: white; } .done__baseline { padding: 0 2rem 1rem 2rem; } .done__title { padding: 1rem 2rem; background: white; color: #bf2336; font-size: 2rem; font-weight: bold; } .done__infos { padding: 1rem 2rem 2rem 2rem; } .login { display: grid; grid-template-areas: "header" "form" "img"; grid-template-rows: auto auto 1fr; grid-template-columns: 1fr; min-height: 100vh; } @media (min-width: 600px) { .login { grid-template-areas: "header header" "img form"; grid-template-rows: auto 1fr; grid-template-columns: 2fr 3fr; } } @media (min-width: 900px) { .login { grid-template-areas: "header header" "img form"; grid-template-rows: auto 1fr; grid-template-columns: 1fr 1fr; } } @media (min-width: 1200px) { .login { grid-template-areas: "header header" "img form"; grid-template-rows: auto 1fr; grid-template-columns: 2fr 1fr; } } @media (min-width: 1800px) { .login { grid-template-areas: "header header" "img form"; grid-template-rows: auto 1fr; grid-template-columns: 3fr 1fr; } } .login__form { grid-area: form; align-self: center; padding: 2rem; } .login__header { grid-area: header; margin-bottom: -2rem; } .login__img { grid-area: img; } .visit { display: grid; grid-template-areas: "header header header" "next next next" "actions actions actions" "users conversation infos"; grid-template-rows: auto auto auto 1fr; grid-template-columns: 0 1fr 0; height: 100vh; overflow: hidden; min-height: 0; /* width */ /* Track */ /* Handle */ } .visit ::-webkit-scrollbar { width: calc(.5rem + 4px); height: calc(.5rem + 4px); } .visit ::-webkit-scrollbar-track { box-shadow: none; } .visit ::-webkit-scrollbar-thumb { background: lightblue; border-radius: 10px; border: 2px solid rgba(255, 255, 255, 0.5); } .visit ::-webkit-scrollbar-thumb:hover { background: rgba(51, 58, 69, 0.5); } @media (min-width: 900px) { .visit { grid-template-columns: auto 1fr 0; } } @media (min-width: 1200px) { .visit { grid-template-columns: auto 3fr 2fr; } } @media (min-width: 1800px) { .visit { grid-template-columns: auto 2fr 1fr; } } .visit__header { grid-area: header; margin-bottom: -2rem; } .visit__next { grid-area: next; } @media (max-width: 599px) { .visit__next { display: none; } } .visit__users { grid-area: users; border-right: 1px solid #a2c9e9; overflow-y: auto; display: none; } @media (min-width: 900px) { .visit__users { display: block; padding-left: 2rem; } } @media (max-width: 899px) { .visit__users .user { width: 100%; } } .visit__conversation { grid-area: conversation; max-width: 100%; overflow: hidden; } .visit__infos { grid-area: infos; padding: 2rem; border-left: 1px solid #a2c9e9; overflow-y: auto; display: none; } @media (min-width: 1200px) { .visit__infos { display: block; } } .visit__actions { grid-area: actions; padding: .25rem 1rem; display: grid; grid-template-columns: auto 1fr auto; grid-gap: 1rem; background: #333a45; border-bottom: 2px solid white; } @media (min-width: 1200px) { .visit__actions { display: none; } } .visit__action { margin-bottom: 0; } .visit__action_users { grid-column-start: 1; grid-column-end: 2; } @media (min-width: 900px) { .visit__action_users { display: none; } } .visit__action_infos { grid-column-start: 3; grid-column-end: 4; } @media (min-width: 1200px) { .visit__action_infos { display: none; } } @media (max-width: 899px) { .visit_active_users { grid-template-columns: 1fr 0 0; } } .visit_active_users .visit__users { display: block; } @media (max-width: 899px) { .visit_active_users .visit__infos { display: none; } } @media (max-width: 899px) { .visit_active_users .visit__conversation { display: none; } } @media (max-width: 1199px) { .visit_active_infos { grid-template-columns: 0 1fr 1fr; } } @media (max-width: 899px) { .visit_active_infos { grid-template-columns: 0 0 1fr; } } @media (max-width: 1199px) { .visit_active_infos .visit__infos { display: block; } } @media (max-width: 1199px) { .visit_active_infos .visit__users { display: none; } } @media (max-width: 899px) { .visit_active_infos .visit__conversation { display: none; } } .conversation { display: grid; grid-template-columns: 1fr; grid-template-rows: auto auto 1fr auto auto; grid-template-areas: "context" "planner" "content" "actions" "comment"; height: 100%; width: 100%; min-height: 0; } .conversation__context { grid-area: context; background: #333a45; } @media (max-width: 1199px) { .conversation__context .user { height: 4rem; grid-template-columns: 4rem 1fr 2rem 4px; } .conversation__context .user__context { font-size: 0.8rem; } .conversation__context .user__name { font-size: 1rem; } } @media (max-width: 599px) { .conversation__context .user { height: 2rem; grid-template-columns: 2rem 1fr 2rem 4px; } .conversation__context .user__context { font-size: 0.8rem; } .conversation__context .user__name { font-size: 1rem; } } .conversation__planner { grid-area: planner; background: #000e25; display: grid; grid-template-columns: auto auto auto; grid-gap: .5rem; border-bottom: 2px solid white; padding: .25rem .5rem; } @media (min-width: 600px) { .conversation__planner { grid-gap: 1rem; padding: .25rem 1rem; grid-template-columns: 1fr 1fr auto; } } .conversation__planner .button, .conversation__planner .main-header__collapse, .conversation__planner .visit__action { margin-bottom: 0; } .conversation__content { grid-area: content; background: white; overflow: auto; padding: 2rem .5rem; } @media (min-width: 600px) { .conversation__content { padding: 2rem 1rem; } } .conversation__actions { border-top: 2px solid white; grid-area: actions; background: #333a45; } .conversation__actions .button, .conversation__actions .main-header__collapse, .conversation__actions .visit__action { margin-bottom: 0; } .conversation__comment { grid-area: comment; background: #a2c9e9; padding: .25rem .5rem; } @media (min-width: 600px) { .conversation__comment { padding: .25rem 1rem; } } @media (max-width: 599px) { .conversation__comment .send-message__textarea { height: 4ch; } } .landing { display: grid; grid-gap: 4rem; grid-row-gap: 0; grid-template-areas: "infos" "sidebar" "more"; } @media (min-width: 900px) { .landing { grid-template-columns: 3fr 2fr; grid-template-areas: "infos sidebar" "more sidebar"; } } .landing__infos { grid-area: infos; } .landing__sidebar { grid-area: sidebar; } .landing__more { grid-area: more; }
0.681833
0.085824
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video { border:0; font:inherit; font-size:100%; margin:0; padding:0; vertical-align:baseline; } article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { display:block; } html, body {background: #E5E4E2; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 16px; color: #000;} .clear {clear: both;} p { font-size: 1em; line-height: 1.4em; margin-bottom: 20px; color: #444; } #cv { border-radius: 10px; width: 100%; max-width: 800px; background: white; margin: 30px auto; box-shadow: 10px 10px 5px #aaaaaa; } .mainDetails { padding: 25px 35px; border-bottom: 2px solid #454545; background: whilte; } #name h1 { font-size: 2.5em; font-weight: 700; font-family: 'Rokkitt', Helvetica, Arial, sans-serif; margin-bottom: -6px; } #name h2 { font-size: 2em; font-weight: 500; margin-left: 2px; font-family: 'Rokkitt', Helvetica, Arial, sans-serif; } #mainArea { padding: 0 40px; } #headshot { width: 15.5%; float: left; margin-right: 20px; } #headshot img { width: 100%; height: auto; -webkit-border-radius: 60px; border-radius: 50px; } #name { float: left; } #contactDetails { float: right; } #contactDetails ul { list-style-type: none; font-size: 0.9em; margin-top: 2px; } #contactDetails ul li { margin-bottom: 3px; color: #444; } #contactDetails ul li a, a[href^=tel] { color: #444; text-decoration: none; -webkit-transition: all .3s ease-in; -moz-transition: all .3s ease-in; -o-transition: all .3s ease-in; -ms-transition: all .3s ease-in; transition: all .3s ease-in; } #contactDetails ul li a:hover { color: #cf8a05; } section { border-top: 1px solid #dedede; padding: 20px 0 0; } section:first-child { border-top: 0; } section:last-child { padding: 20px 0 10px; } .sectionTitle { float: left; width: 20%; } .sectionContent { font-family: Georgia; float: right; width: 77.5%; } .sectionTitle h1 { font-family: 'Rokkitt', Helvetica, Arial, sans-serif; font-style: italic; font-weight: bold; font-size: 1.5em; color: grey; } .sectionContent h2 { font-family: 'Rokkitt', Helvetica, Arial, sans-serif; font-size: 1.3em; margin-bottom: 4px; font-weight: bold; } .sectionContent h3 { font-size: 1.1em; margin-bottom: 4px; font-weight: bold; /* font-style: italic; */ font-family: 'Rokkitt', Helvetica, Arial, sans-serif; } .sectionContent h4 { font-size: 1em; margin-left: 2px; font-style: italic; font-family: Arial, sans-serif; } .subDetails { font-size: 0.8em; font-style: italic; margin-bottom: 3px; } .keySkills { list-style-type: none; -moz-column-count:3; -webkit-column-count:3; column-count:3; margin-bottom: 20px; font-size: 1em; color: #444; } .keySkills ul li { margin-bottom: 3px; } .topLink { text-align: center; padding-bottom: 20px; } .topLink a { color: #bbb; text-decoration: none; -webkit-transition: all .5s ease-in; -moz-transition: all .5s ease-in; -o-transition: all .5s ease-in; -ms-transition: all .5s ease-in; transition: all .5s ease-in; } .topLink a:hover { color: #888; } @media all and (min-width: 602px) and (max-width: 800px) { #headshot { display: none; } .keySkills { -moz-column-count:2; -webkit-column-count:2; column-count:2; } } @media all and (max-width: 601px) { #cv { width: 95%; margin: 10px auto; min-width: 280px; } #headshot { display: none; } #name, #contactDetails { float: none; width: 100%; text-align: center; } .sectionTitle, .sectionContent { float: none; width: 100%; } .sectionTitle { margin-left: -2px; font-size: 1.25em; } .keySkills { -moz-column-count:2; -webkit-column-count:2; column-count:2; } } @media all and (max-width: 480px) { .mainDetails { padding: 15px 15px; } .section { padding: 15px 0 0; } #mainArea { padding: 0 25px; } .keySkills { -moz-column-count:1; -webkit-column-count:1; column-count:1; } #name h1 { line-height: .8em; margin-bottom: 4px; } } @media print { #cv { width: 100%; } .topLink { display: none; } } @-webkit-keyframes reset { 0% { opacity: 0; } 100% { opacity: 0; } } @-webkit-keyframes fade-in { 0% { opacity: 0; } 40% { opacity: 0; } 100% { opacity: 1; } } @-moz-keyframes reset { 0% { opacity: 0; } 100% { opacity: 0; } } @-moz-keyframes fade-in { 0% { opacity: 0; } 40% { opacity: 0; } 100% { opacity: 1; } } @keyframes reset { 0% { opacity: 0; } 100% { opacity: 0; } } @keyframes fade-in { 0% { opacity: 0; } 40% { opacity: 0; } 100% { opacity: 1; } } /* More style definion for jump-bar */ /* body { background-color: #dddddd ; padding: 20px; font-family: Georgia; color: #333333 ; }*/ div.module { width: 560px ; background: white ; margin-left: auto ; margin-right: auto ; margin-bottom: 20px ; padding: 20px ; padding-left: 40px ; padding-right: 40px ; border-radius: 9px ; -moz-border-radius: 9px ; -o-box-shadow: 0 5px 5px #333333 ; -webkit-box-shadow: 0 5px 5px #333333 ; -moz-box-shadow: 0 5px 5px #333333 ; box-shadow: 0 5px 5px #333333 ; } ul.jump-bar { margin-top: 0px; margin-bottom: 0px; margin-left: 0px;; margin-right: 0px;; padding-left: 0px ; padding-right: 0px ; } ul.jump-bar li { display: inline ; font-weight: bold; } li { margin-top: 0.3em; margin-bottom: 0.3em; }
style.css
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video { border:0; font:inherit; font-size:100%; margin:0; padding:0; vertical-align:baseline; } article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { display:block; } html, body {background: #E5E4E2; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 16px; color: #000;} .clear {clear: both;} p { font-size: 1em; line-height: 1.4em; margin-bottom: 20px; color: #444; } #cv { border-radius: 10px; width: 100%; max-width: 800px; background: white; margin: 30px auto; box-shadow: 10px 10px 5px #aaaaaa; } .mainDetails { padding: 25px 35px; border-bottom: 2px solid #454545; background: whilte; } #name h1 { font-size: 2.5em; font-weight: 700; font-family: 'Rokkitt', Helvetica, Arial, sans-serif; margin-bottom: -6px; } #name h2 { font-size: 2em; font-weight: 500; margin-left: 2px; font-family: 'Rokkitt', Helvetica, Arial, sans-serif; } #mainArea { padding: 0 40px; } #headshot { width: 15.5%; float: left; margin-right: 20px; } #headshot img { width: 100%; height: auto; -webkit-border-radius: 60px; border-radius: 50px; } #name { float: left; } #contactDetails { float: right; } #contactDetails ul { list-style-type: none; font-size: 0.9em; margin-top: 2px; } #contactDetails ul li { margin-bottom: 3px; color: #444; } #contactDetails ul li a, a[href^=tel] { color: #444; text-decoration: none; -webkit-transition: all .3s ease-in; -moz-transition: all .3s ease-in; -o-transition: all .3s ease-in; -ms-transition: all .3s ease-in; transition: all .3s ease-in; } #contactDetails ul li a:hover { color: #cf8a05; } section { border-top: 1px solid #dedede; padding: 20px 0 0; } section:first-child { border-top: 0; } section:last-child { padding: 20px 0 10px; } .sectionTitle { float: left; width: 20%; } .sectionContent { font-family: Georgia; float: right; width: 77.5%; } .sectionTitle h1 { font-family: 'Rokkitt', Helvetica, Arial, sans-serif; font-style: italic; font-weight: bold; font-size: 1.5em; color: grey; } .sectionContent h2 { font-family: 'Rokkitt', Helvetica, Arial, sans-serif; font-size: 1.3em; margin-bottom: 4px; font-weight: bold; } .sectionContent h3 { font-size: 1.1em; margin-bottom: 4px; font-weight: bold; /* font-style: italic; */ font-family: 'Rokkitt', Helvetica, Arial, sans-serif; } .sectionContent h4 { font-size: 1em; margin-left: 2px; font-style: italic; font-family: Arial, sans-serif; } .subDetails { font-size: 0.8em; font-style: italic; margin-bottom: 3px; } .keySkills { list-style-type: none; -moz-column-count:3; -webkit-column-count:3; column-count:3; margin-bottom: 20px; font-size: 1em; color: #444; } .keySkills ul li { margin-bottom: 3px; } .topLink { text-align: center; padding-bottom: 20px; } .topLink a { color: #bbb; text-decoration: none; -webkit-transition: all .5s ease-in; -moz-transition: all .5s ease-in; -o-transition: all .5s ease-in; -ms-transition: all .5s ease-in; transition: all .5s ease-in; } .topLink a:hover { color: #888; } @media all and (min-width: 602px) and (max-width: 800px) { #headshot { display: none; } .keySkills { -moz-column-count:2; -webkit-column-count:2; column-count:2; } } @media all and (max-width: 601px) { #cv { width: 95%; margin: 10px auto; min-width: 280px; } #headshot { display: none; } #name, #contactDetails { float: none; width: 100%; text-align: center; } .sectionTitle, .sectionContent { float: none; width: 100%; } .sectionTitle { margin-left: -2px; font-size: 1.25em; } .keySkills { -moz-column-count:2; -webkit-column-count:2; column-count:2; } } @media all and (max-width: 480px) { .mainDetails { padding: 15px 15px; } .section { padding: 15px 0 0; } #mainArea { padding: 0 25px; } .keySkills { -moz-column-count:1; -webkit-column-count:1; column-count:1; } #name h1 { line-height: .8em; margin-bottom: 4px; } } @media print { #cv { width: 100%; } .topLink { display: none; } } @-webkit-keyframes reset { 0% { opacity: 0; } 100% { opacity: 0; } } @-webkit-keyframes fade-in { 0% { opacity: 0; } 40% { opacity: 0; } 100% { opacity: 1; } } @-moz-keyframes reset { 0% { opacity: 0; } 100% { opacity: 0; } } @-moz-keyframes fade-in { 0% { opacity: 0; } 40% { opacity: 0; } 100% { opacity: 1; } } @keyframes reset { 0% { opacity: 0; } 100% { opacity: 0; } } @keyframes fade-in { 0% { opacity: 0; } 40% { opacity: 0; } 100% { opacity: 1; } } /* More style definion for jump-bar */ /* body { background-color: #dddddd ; padding: 20px; font-family: Georgia; color: #333333 ; }*/ div.module { width: 560px ; background: white ; margin-left: auto ; margin-right: auto ; margin-bottom: 20px ; padding: 20px ; padding-left: 40px ; padding-right: 40px ; border-radius: 9px ; -moz-border-radius: 9px ; -o-box-shadow: 0 5px 5px #333333 ; -webkit-box-shadow: 0 5px 5px #333333 ; -moz-box-shadow: 0 5px 5px #333333 ; box-shadow: 0 5px 5px #333333 ; } ul.jump-bar { margin-top: 0px; margin-bottom: 0px; margin-left: 0px;; margin-right: 0px;; padding-left: 0px ; padding-right: 0px ; } ul.jump-bar li { display: inline ; font-weight: bold; } li { margin-top: 0.3em; margin-bottom: 0.3em; }
0.179459
0.049336
.uploadbackground { position: absolute; top: 0%; left: 0%; width: 100%; height: 100%; background: rgba(100, 100, 100, 0.6); z-index: 1000000; } .uploadDialog { width: 300px; padding-bottom: 6px; background: #222222; opacity: 1; margin: auto; margin-top: 20em; z-index: 10000000000; border-radius: 6px; border: 2px groove #343434; color: #343444; background-image: -webkit-linear-gradient(top, #373a3d, #313437); background-image: linear-gradient(top, #373a3d, #313437); } .dragArea { width: 250px; height: 200px; background: #2E3134; margin: auto; margin-top: 22px; border: 3px #444545 dashed; border-radius: 4px; text-align: center; vertical-align: middle; position: relative; } .dragArea:hover { border: 3px #556565 dashed; } .dragArea input { width: 100%; height: 100%; position: absolute; left: 0px; margin: 0px; padding: 0px; opacity: 0; border-radius: 5px; } .dragArea #drophere { margin: auto; width: 100%; font-size: 2em; font-family: "PT Sans Narrow", sans-serif; margin-top: 3.75em; color: #7f858a; } .dragArea #browseButton { font-family: sans-serif; background: #82b8ff; margin: auto; background-color: #82b8ff; padding: 11px 26px; color: #fff; font-size: 14px; border-radius: 2px; cursor: pointer; display: inline-block; margin-top: 12px; line-height: 1; width: 30%; height: 1em; cursor: pointer; } .dragArea #browseButton:hover { background-color: #008aa6; } #uploadStatus { color: #82b8ff; font-family: sans-serif; font-size: 13px; margin: 2px; text-align: center; } .uploadSection { height: 42px; color: #343444; background-image: -webkit-linear-gradient(top, #373a3d, #313437); background-image: linear-gradient(top, #373a3d, #313437); border-top: 2px groove #666666; margin-top: 2em; color: #898989; font-family: sans-serif; padding-top: 2em; } .uploadSection input { background: #333; margin: -14px -52px 19px 13px; padding: 0px; width: 88%; color: #787890; font-family: sans-serif; border: 2px inset #777777; font-size: 13px; padding: 3px; } .uploadsectionDetail { color: #898989; font-family: sans-serif; margin: 0em 2em 0em 2em; font-size: 1.4em; } .uploadsectionDetail span { width: 34%; display: inline-block; } .uploadsectionDetail span#filename { overflow: hidden; vertical-align: bottom; white-space: nowrap; } .uploadsectionDetail span#filesize, .uploadsectionDetail span#filetype, .uploadsectionDetail span#filename { text-align: right; } .uploadDialogButton { width: 40%; height: 1em; background: #82b8ff; display: inline-block; margin-left: 10px; margin-top: 20px; text-align: center; border-radius: 3px; font-family: sans-serif; color: white; font-size: 14px; padding: 7px; cursor: pointer; } .uploadDialogButton:hover { background-color: #82b8ff; } ._3drDisabled { background: #444; color: #888; cursor: not-allowed; }
support/client/lib/vwf/view/editorview/css/_3DRIntegration.css
.uploadbackground { position: absolute; top: 0%; left: 0%; width: 100%; height: 100%; background: rgba(100, 100, 100, 0.6); z-index: 1000000; } .uploadDialog { width: 300px; padding-bottom: 6px; background: #222222; opacity: 1; margin: auto; margin-top: 20em; z-index: 10000000000; border-radius: 6px; border: 2px groove #343434; color: #343444; background-image: -webkit-linear-gradient(top, #373a3d, #313437); background-image: linear-gradient(top, #373a3d, #313437); } .dragArea { width: 250px; height: 200px; background: #2E3134; margin: auto; margin-top: 22px; border: 3px #444545 dashed; border-radius: 4px; text-align: center; vertical-align: middle; position: relative; } .dragArea:hover { border: 3px #556565 dashed; } .dragArea input { width: 100%; height: 100%; position: absolute; left: 0px; margin: 0px; padding: 0px; opacity: 0; border-radius: 5px; } .dragArea #drophere { margin: auto; width: 100%; font-size: 2em; font-family: "PT Sans Narrow", sans-serif; margin-top: 3.75em; color: #7f858a; } .dragArea #browseButton { font-family: sans-serif; background: #82b8ff; margin: auto; background-color: #82b8ff; padding: 11px 26px; color: #fff; font-size: 14px; border-radius: 2px; cursor: pointer; display: inline-block; margin-top: 12px; line-height: 1; width: 30%; height: 1em; cursor: pointer; } .dragArea #browseButton:hover { background-color: #008aa6; } #uploadStatus { color: #82b8ff; font-family: sans-serif; font-size: 13px; margin: 2px; text-align: center; } .uploadSection { height: 42px; color: #343444; background-image: -webkit-linear-gradient(top, #373a3d, #313437); background-image: linear-gradient(top, #373a3d, #313437); border-top: 2px groove #666666; margin-top: 2em; color: #898989; font-family: sans-serif; padding-top: 2em; } .uploadSection input { background: #333; margin: -14px -52px 19px 13px; padding: 0px; width: 88%; color: #787890; font-family: sans-serif; border: 2px inset #777777; font-size: 13px; padding: 3px; } .uploadsectionDetail { color: #898989; font-family: sans-serif; margin: 0em 2em 0em 2em; font-size: 1.4em; } .uploadsectionDetail span { width: 34%; display: inline-block; } .uploadsectionDetail span#filename { overflow: hidden; vertical-align: bottom; white-space: nowrap; } .uploadsectionDetail span#filesize, .uploadsectionDetail span#filetype, .uploadsectionDetail span#filename { text-align: right; } .uploadDialogButton { width: 40%; height: 1em; background: #82b8ff; display: inline-block; margin-left: 10px; margin-top: 20px; text-align: center; border-radius: 3px; font-family: sans-serif; color: white; font-size: 14px; padding: 7px; cursor: pointer; } .uploadDialogButton:hover { background-color: #82b8ff; } ._3drDisabled { background: #444; color: #888; cursor: not-allowed; }
0.380874
0.077239
.WdateDiv { position: relative; width: 190px; font-size: 12px; color: #333; border: solid 1px #DEDEDE; background-color: #F2F0F1; padding: 5px; } .WdateDiv2 { width: 360px; } .WdateDiv .NavImg a, .WdateDiv .yminput, .WdateDiv .yminputfocus, .WdateDiv #dpQS { background: url(img.gif) no-repeat; } .WdateDiv .NavImg a { float: left; width: 16px; height: 16px; cursor: pointer; } .WdateDiv .NavImgll a { background-position: 0 5px; } .WdateDiv .NavImgl a { background-position: 0 -10px; } .WdateDiv .NavImgr a { background-position: 0 -25px; float: right; } .WdateDiv .NavImgrr a { background-position: 0 -40px; float: right; } .WdateDiv #dpTitle { line-height: 0; height: 23px; padding: 3px 0 0; } .WdateDiv .yminput, .WdateDiv .yminputfocus { margin-left: 3px; width: 50px; height: 20px; line-height: 16px; border: solid 1px #F2F0F1; cursor: pointer; background-position: 35px -68px; } .WdateDiv .yminputfocus { background-color: #fff; border: solid 1px #D8D8D8; } .WdateDiv .menuSel { z-index: 1; position: absolute; background-color: #FFF; border: #A3C6C8 1px solid; display: none; } .WdateDiv .menu { background: #fff; } .WdateDiv .menuOn { color: #fff; background: #0088CC; } .WdateDiv .MMenu, .WdateDiv .YMenu { margin-top: 20px; margin-left: -1px; width: 68px; border: solid 1px #D9D9D9; padding: 2px; } .WdateDiv .MMenu table, .WdateDiv .YMenu table { width: 100%; } .WdateDiv .MMenu table td, .WdateDiv .YMenu table td { line-height: 20px; text-align: center; font-size: 12px; cursor: pointer; padding: 0; } .WdateDiv .Wweek { text-align: center; background: #DAF3F5; border-right: #BDEBEE 1px solid; } .WdateDiv td { line-height: 20px; font-size: 12px; color: #999; background: #fff; cursor: pointer; padding: 1px; } .WdateDiv .MTitle td { line-height: 24px; color: #7D7D7D; background: #F2F0F1; cursor: default; } .WdateDiv .WdayTable2 { border-collapse: collapse; border: gray 1px solid; } .WdateDiv .WdayTable2 table { border: 0; } .WdateDiv .WdayTable { line-height: 20px; color: #13777e; background-color: #edfbfb; } .WdateDiv .WdayTable td { text-align: center; } .WdateDiv .Wday { color: #323232; } .WdateDiv .Wwday { color: #0088CC; } .WdateDiv .Wtoday { color: #FF6D10; background: #E0EDFE; } .WdateDiv .WspecialDay { background-color: #66F4DF; } .WdateDiv .WotherDay { color: #D4D4D4; } .WdateDiv #dpTime { position: relative; margin-top: 5px; } .WdateDiv #dpTime #dpTimeStr { display: inline-block; width: 30px; color: #7d7d7d; } .WdateDiv #dpTime input { width: 25px; height: 20px; line-height: 20px; text-align: center; color: #333; border: #D9D9D9 1px solid; margin: 0; padding: 0; } .WdateDiv #dpTime .tm { width: 7px; border: none; background: #F2F0F1; } .WdateDiv #dpQS { float: left; margin-right: 3px; margin-top: 6px; width: 16px; height: 16px; cursor: pointer; background-position: 0 -90px; } .WdateDiv #dpControl { text-align: right; margin-top: 3px; } .WdateDiv .dpButton { margin-left: 2px; line-height: 16px; width: 45px; background-color: #0055CC; color: #fff; border: none; cursor: pointer; } .WdateDiv .dpButton:hover { background-color: #0663A2; } .WdateDiv .hhMenu, .WdateDiv .mmMenu, .WdateDiv .ssMenu { position: absolute; font-size: 12px; color: #333; border: solid 1px #DEDEDE; background-color: #F2F0F1; padding: 3px; } .WdateDiv #dpTime .menu, .WdateDiv #dpTime .menuOn { width: 18px; height: 18px; line-height: 18px; text-align: center; background: #fff; } .WdateDiv #dpTime .menuOn { background: #0088CC; } .WdateDiv #dpTime td { background: #F2F0F1; } .WdateDiv .hhMenu { top: -87px; left: 32px; } .WdateDiv .mmMenu { top: -47px; left: 32px; } .WdateDiv .ssMenu { top: -27px; left: 32px; } .WdateDiv .invalidMenu, .WdateDiv .WinvalidDay { color: #aaa; } .WdateDiv .WdayOn, .WdateDiv .WwdayOn, .WdateDiv .Wselday, .WdateDiv .WotherDayOn { background-color: #0088CC; color: #fff; } .WdateDiv #dpTime #dpTimeUp, .WdateDiv #dpTime #dpTimeDown { display: none; }
src/main/webapp/static/My97DatePicker/skin/twoer/datepicker.css
.WdateDiv { position: relative; width: 190px; font-size: 12px; color: #333; border: solid 1px #DEDEDE; background-color: #F2F0F1; padding: 5px; } .WdateDiv2 { width: 360px; } .WdateDiv .NavImg a, .WdateDiv .yminput, .WdateDiv .yminputfocus, .WdateDiv #dpQS { background: url(img.gif) no-repeat; } .WdateDiv .NavImg a { float: left; width: 16px; height: 16px; cursor: pointer; } .WdateDiv .NavImgll a { background-position: 0 5px; } .WdateDiv .NavImgl a { background-position: 0 -10px; } .WdateDiv .NavImgr a { background-position: 0 -25px; float: right; } .WdateDiv .NavImgrr a { background-position: 0 -40px; float: right; } .WdateDiv #dpTitle { line-height: 0; height: 23px; padding: 3px 0 0; } .WdateDiv .yminput, .WdateDiv .yminputfocus { margin-left: 3px; width: 50px; height: 20px; line-height: 16px; border: solid 1px #F2F0F1; cursor: pointer; background-position: 35px -68px; } .WdateDiv .yminputfocus { background-color: #fff; border: solid 1px #D8D8D8; } .WdateDiv .menuSel { z-index: 1; position: absolute; background-color: #FFF; border: #A3C6C8 1px solid; display: none; } .WdateDiv .menu { background: #fff; } .WdateDiv .menuOn { color: #fff; background: #0088CC; } .WdateDiv .MMenu, .WdateDiv .YMenu { margin-top: 20px; margin-left: -1px; width: 68px; border: solid 1px #D9D9D9; padding: 2px; } .WdateDiv .MMenu table, .WdateDiv .YMenu table { width: 100%; } .WdateDiv .MMenu table td, .WdateDiv .YMenu table td { line-height: 20px; text-align: center; font-size: 12px; cursor: pointer; padding: 0; } .WdateDiv .Wweek { text-align: center; background: #DAF3F5; border-right: #BDEBEE 1px solid; } .WdateDiv td { line-height: 20px; font-size: 12px; color: #999; background: #fff; cursor: pointer; padding: 1px; } .WdateDiv .MTitle td { line-height: 24px; color: #7D7D7D; background: #F2F0F1; cursor: default; } .WdateDiv .WdayTable2 { border-collapse: collapse; border: gray 1px solid; } .WdateDiv .WdayTable2 table { border: 0; } .WdateDiv .WdayTable { line-height: 20px; color: #13777e; background-color: #edfbfb; } .WdateDiv .WdayTable td { text-align: center; } .WdateDiv .Wday { color: #323232; } .WdateDiv .Wwday { color: #0088CC; } .WdateDiv .Wtoday { color: #FF6D10; background: #E0EDFE; } .WdateDiv .WspecialDay { background-color: #66F4DF; } .WdateDiv .WotherDay { color: #D4D4D4; } .WdateDiv #dpTime { position: relative; margin-top: 5px; } .WdateDiv #dpTime #dpTimeStr { display: inline-block; width: 30px; color: #7d7d7d; } .WdateDiv #dpTime input { width: 25px; height: 20px; line-height: 20px; text-align: center; color: #333; border: #D9D9D9 1px solid; margin: 0; padding: 0; } .WdateDiv #dpTime .tm { width: 7px; border: none; background: #F2F0F1; } .WdateDiv #dpQS { float: left; margin-right: 3px; margin-top: 6px; width: 16px; height: 16px; cursor: pointer; background-position: 0 -90px; } .WdateDiv #dpControl { text-align: right; margin-top: 3px; } .WdateDiv .dpButton { margin-left: 2px; line-height: 16px; width: 45px; background-color: #0055CC; color: #fff; border: none; cursor: pointer; } .WdateDiv .dpButton:hover { background-color: #0663A2; } .WdateDiv .hhMenu, .WdateDiv .mmMenu, .WdateDiv .ssMenu { position: absolute; font-size: 12px; color: #333; border: solid 1px #DEDEDE; background-color: #F2F0F1; padding: 3px; } .WdateDiv #dpTime .menu, .WdateDiv #dpTime .menuOn { width: 18px; height: 18px; line-height: 18px; text-align: center; background: #fff; } .WdateDiv #dpTime .menuOn { background: #0088CC; } .WdateDiv #dpTime td { background: #F2F0F1; } .WdateDiv .hhMenu { top: -87px; left: 32px; } .WdateDiv .mmMenu { top: -47px; left: 32px; } .WdateDiv .ssMenu { top: -27px; left: 32px; } .WdateDiv .invalidMenu, .WdateDiv .WinvalidDay { color: #aaa; } .WdateDiv .WdayOn, .WdateDiv .WwdayOn, .WdateDiv .Wselday, .WdateDiv .WotherDayOn { background-color: #0088CC; color: #fff; } .WdateDiv #dpTime #dpTimeUp, .WdateDiv #dpTime #dpTimeDown { display: none; }
0.242654
0.055669
.flex { display: -webkit-box; display: -ms-flexbox; display: flex; } .flex div { -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; } .flex { display: -webkit-box; display: -ms-flexbox; display: flex; } .flex div { -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; } .flex-column { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .flex-column.reverse { -webkit-box-orient: vertical; -webkit-box-direction: reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; } .reverse_c { -webkit-box-orient: vertical; -webkit-box-direction: reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; } .reverse_r { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; } .flex-multiline { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; } .flex-multiline div { -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; } .flex-center { -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .flex-start { -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; } .flex-end { -webkit-box-align: end; -ms-flex-align: end; align-items: end; } .flex_g2 { -webkit-box-flex: 2 !important; -ms-flex-positive: 2 !important; flex-grow: 2 !important; } .flex_g3 { -webkit-box-flex: 3 !important; -ms-flex-positive: 3 !important; flex-grow: 3 !important; } .flex_g4 { -webkit-box-flex: 4 !important; -ms-flex-positive: 4 !important; flex-grow: 4 !important; } .flex_g5 { -webkit-box-flex: 5 !important; -ms-flex-positive: 5 !important; flex-grow: 5 !important; } /*# sourceMappingURL=flex.css.map */
SCSS/flex.css
.flex { display: -webkit-box; display: -ms-flexbox; display: flex; } .flex div { -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; } .flex { display: -webkit-box; display: -ms-flexbox; display: flex; } .flex div { -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; } .flex-column { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .flex-column.reverse { -webkit-box-orient: vertical; -webkit-box-direction: reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; } .reverse_c { -webkit-box-orient: vertical; -webkit-box-direction: reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; } .reverse_r { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; } .flex-multiline { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; } .flex-multiline div { -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; } .flex-center { -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .flex-start { -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; } .flex-end { -webkit-box-align: end; -ms-flex-align: end; align-items: end; } .flex_g2 { -webkit-box-flex: 2 !important; -ms-flex-positive: 2 !important; flex-grow: 2 !important; } .flex_g3 { -webkit-box-flex: 3 !important; -ms-flex-positive: 3 !important; flex-grow: 3 !important; } .flex_g4 { -webkit-box-flex: 4 !important; -ms-flex-positive: 4 !important; flex-grow: 4 !important; } .flex_g5 { -webkit-box-flex: 5 !important; -ms-flex-positive: 5 !important; flex-grow: 5 !important; } /*# sourceMappingURL=flex.css.map */
0.345105
0.03359
.subFooter2 { background:#f5f5f5; } .subFooter2.row{ margin: 0px; } .subFooter3.row{ margin: 0px; } .footerblocks{ font-family: Arial; font-size: 14px; font-weight: bold; font-style: normal; font-stretch: normal; line-height: 1.12; letter-spacing: normal; text-align: left; color: #333; padding:40px 0px 0px 35px; } .footersmall-icon{ display: inline-block; padding: 0; } .footersmall-icon-text{ display: inline-block; padding: 0px; text-align: left; font-size: 12px; } .marginbottom20{ margin-bottom: 20px; } .payments .row{ margin-bottom:0px; } .footer { border-top:1px solid #f5f5f5; color: #ffffff; text-align: center; font-size: 12px; padding: 15px 0px; margin-top: 50px; } .email-input{ border:none; padding: 5px; border-radius: 4px; } .vertical-line{ padding: 10px; } .subFooter1 .vertical-line:after{ content: ""; background-color: #f5f5f5; position: absolute; width: 1px; height:50px; top: 10px; right:0%; display: block; } .lastitem.vertical-line:after{ content: "" !important; display: none !important; } .subFooter1 { display: flex; align-items: center; padding: 0px 30px; padding-bottom: 20px; } .subFooter1 a{ font-size: 10px; width: 100%; text-align: left; } .Media-Market-LLC-5-South-Main-Street-Englishtown-NJ-07726 { opacity: 0.5; font-family: Arial; font-size: 11.5px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: normal; letter-spacing: 0.6px; text-align: left; color: rgba(0, 0, 0, 0.5); } .Company-info-News-Investors-Careers-Government-relations-Polici { opacity: 0.75; font-family: Arial; font-size: 13px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.96; letter-spacing: 0.3px; text-align: left; color: rgba(0, 0, 0, 0.75); } .Tadays-Deals-Best-Sellers-New-Arrivals-Top-Rated-Popular-Featu { opacity: 0.75; font-family: Arial; font-size: 13px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.96; letter-spacing: 0.3px; text-align: left; color: rgba(0, 0, 0, 0.75); } .Customer-Service-Protection-Plans-Schedule-a-Service-Trade-In-P { opacity: 0.75; font-family: Arial; font-size: 13px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.96; letter-spacing: 0.3px; text-align: left; color: rgba(0, 0, 0, 0.75); } .Affiliate-Program-Developers-Mediamarket-Ignite-Mediamarket-for { opacity: 0.75; font-family: Arial; font-size: 13px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.96; letter-spacing: 0.3px; text-align: left; color: rgba(0, 0, 0, 0.75); } .My-Account-Track-Order-Shop-Wishlist-Compare-ReturnsExchange { opacity: 0.75; font-family: Arial; font-size: 13px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.96; letter-spacing: 0.3px; text-align: left; color: rgba(0, 0, 0, 0.75); } .copyright{ opacity: 0.75; font-family: Arial; font-size: 13px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.96; letter-spacing: 0.3px; text-align: left; color: rgba(0, 0, 0, 0.75); } .row { margin-bottom: 15px; } .col-12 { padding-right: 0; } .number { font-family: Arial; font-size: 14px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: normal; letter-spacing: 0.7px; text-align: left; float: left; color: rgb(0, 0, 0); } .column { float: left; width: 15%; padding: 10px; } /* Clear floats after the columns */ .row:after { content: ""; display: table; clear: both; } /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */ @media (max-width: 600) { .column { float: none; width: 20%; background-color: #0099cc } }
server/static/assets/footer.css
.subFooter2 { background:#f5f5f5; } .subFooter2.row{ margin: 0px; } .subFooter3.row{ margin: 0px; } .footerblocks{ font-family: Arial; font-size: 14px; font-weight: bold; font-style: normal; font-stretch: normal; line-height: 1.12; letter-spacing: normal; text-align: left; color: #333; padding:40px 0px 0px 35px; } .footersmall-icon{ display: inline-block; padding: 0; } .footersmall-icon-text{ display: inline-block; padding: 0px; text-align: left; font-size: 12px; } .marginbottom20{ margin-bottom: 20px; } .payments .row{ margin-bottom:0px; } .footer { border-top:1px solid #f5f5f5; color: #ffffff; text-align: center; font-size: 12px; padding: 15px 0px; margin-top: 50px; } .email-input{ border:none; padding: 5px; border-radius: 4px; } .vertical-line{ padding: 10px; } .subFooter1 .vertical-line:after{ content: ""; background-color: #f5f5f5; position: absolute; width: 1px; height:50px; top: 10px; right:0%; display: block; } .lastitem.vertical-line:after{ content: "" !important; display: none !important; } .subFooter1 { display: flex; align-items: center; padding: 0px 30px; padding-bottom: 20px; } .subFooter1 a{ font-size: 10px; width: 100%; text-align: left; } .Media-Market-LLC-5-South-Main-Street-Englishtown-NJ-07726 { opacity: 0.5; font-family: Arial; font-size: 11.5px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: normal; letter-spacing: 0.6px; text-align: left; color: rgba(0, 0, 0, 0.5); } .Company-info-News-Investors-Careers-Government-relations-Polici { opacity: 0.75; font-family: Arial; font-size: 13px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.96; letter-spacing: 0.3px; text-align: left; color: rgba(0, 0, 0, 0.75); } .Tadays-Deals-Best-Sellers-New-Arrivals-Top-Rated-Popular-Featu { opacity: 0.75; font-family: Arial; font-size: 13px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.96; letter-spacing: 0.3px; text-align: left; color: rgba(0, 0, 0, 0.75); } .Customer-Service-Protection-Plans-Schedule-a-Service-Trade-In-P { opacity: 0.75; font-family: Arial; font-size: 13px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.96; letter-spacing: 0.3px; text-align: left; color: rgba(0, 0, 0, 0.75); } .Affiliate-Program-Developers-Mediamarket-Ignite-Mediamarket-for { opacity: 0.75; font-family: Arial; font-size: 13px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.96; letter-spacing: 0.3px; text-align: left; color: rgba(0, 0, 0, 0.75); } .My-Account-Track-Order-Shop-Wishlist-Compare-ReturnsExchange { opacity: 0.75; font-family: Arial; font-size: 13px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.96; letter-spacing: 0.3px; text-align: left; color: rgba(0, 0, 0, 0.75); } .copyright{ opacity: 0.75; font-family: Arial; font-size: 13px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.96; letter-spacing: 0.3px; text-align: left; color: rgba(0, 0, 0, 0.75); } .row { margin-bottom: 15px; } .col-12 { padding-right: 0; } .number { font-family: Arial; font-size: 14px; font-weight: normal; font-style: normal; font-stretch: normal; line-height: normal; letter-spacing: 0.7px; text-align: left; float: left; color: rgb(0, 0, 0); } .column { float: left; width: 15%; padding: 10px; } /* Clear floats after the columns */ .row:after { content: ""; display: table; clear: both; } /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */ @media (max-width: 600) { .column { float: none; width: 20%; background-color: #0099cc } }
0.444324
0.109087
section.photo-gallery { width: 735px; margin: 0 auto; padding-bottom: 30px; } .wq-photo-model { margin-top: 30px; } .wq-photo-model .wq-photo-owner { width: 80px; height: 80px; float: left; border: 1px solid lightgray; } .wq-photo-model .wq-photo-owner img { width: 100%; } .wq-photo-model .wq-photo { float: left; width: 620px; margin-left: 30px; position: relative; } .wq-photo-model .wq-photo * { -moz-transition-duration: 0.2s; -webkit-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; } .wq-photo-model .wq-photo img.wq-photo-image { width: 100%; } .wq-photo-model .wq-photo:hover img.wq-photo-image { opacity: 0.6; } .wq-photo-model .wq-photo:hover .wq-photo-overlay { display: block; } .wq-photo-model .wq-photo .wq-photo-overlay { display: none; position: absolute; top: 35%; left: 50%; margin-left: -50px; } .wq-photo-model .wq-photo .wq-photo-overlay img { -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .wq-photo-model .wq-photo .wq-photo-overlay p.likes { font-weight: bold; text-align: center; font-size: 1.4em; color: #ff9797; } .wg-category-photo-model .wg-category-photo-owner { width: 80px; height: 80px; float: left; border: 1px solid lightgray; } .wg-category-photo-model .wg-category-photo-owner img { width: 100%; } .wg-category-photo-model .wg-category-photo { float: left; position: relative; } .wg-category-photo-model .wg-category-photo * { -moz-transition-duration: 0.2s; -webkit-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; } .wg-category-photo-model .wg-category-photo img.wg-category-photo-image { width: 100%; } .wg-category-photo-model .wg-category-photo:hover img.wg-category-photo-image { opacity: 0.6; } .wg-category-photo-model .wg-category-photo:hover .wg-category-photo-overlay { display: block; } .wg-category-photo-model .wg-category-photo .wg-category-photo-overlay { display: none; position: absolute; top: 36%; left: 48%; margin-left: -50px; } .wg-category-photo-model .wg-category-photo .wg-category-photo-overlay img { width: 40px !important; display: inline !important; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .wg-category-photo-model .wg-category-photo .wg-category-photo-overlay p.likes { display: inline; font-weight: bold; text-align: center; font-size: 1.4em; color: #ff9797; }
data/train/css/9135dfd63db41fc8b07857981ca1caf0524e9683photo.css
section.photo-gallery { width: 735px; margin: 0 auto; padding-bottom: 30px; } .wq-photo-model { margin-top: 30px; } .wq-photo-model .wq-photo-owner { width: 80px; height: 80px; float: left; border: 1px solid lightgray; } .wq-photo-model .wq-photo-owner img { width: 100%; } .wq-photo-model .wq-photo { float: left; width: 620px; margin-left: 30px; position: relative; } .wq-photo-model .wq-photo * { -moz-transition-duration: 0.2s; -webkit-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; } .wq-photo-model .wq-photo img.wq-photo-image { width: 100%; } .wq-photo-model .wq-photo:hover img.wq-photo-image { opacity: 0.6; } .wq-photo-model .wq-photo:hover .wq-photo-overlay { display: block; } .wq-photo-model .wq-photo .wq-photo-overlay { display: none; position: absolute; top: 35%; left: 50%; margin-left: -50px; } .wq-photo-model .wq-photo .wq-photo-overlay img { -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .wq-photo-model .wq-photo .wq-photo-overlay p.likes { font-weight: bold; text-align: center; font-size: 1.4em; color: #ff9797; } .wg-category-photo-model .wg-category-photo-owner { width: 80px; height: 80px; float: left; border: 1px solid lightgray; } .wg-category-photo-model .wg-category-photo-owner img { width: 100%; } .wg-category-photo-model .wg-category-photo { float: left; position: relative; } .wg-category-photo-model .wg-category-photo * { -moz-transition-duration: 0.2s; -webkit-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; } .wg-category-photo-model .wg-category-photo img.wg-category-photo-image { width: 100%; } .wg-category-photo-model .wg-category-photo:hover img.wg-category-photo-image { opacity: 0.6; } .wg-category-photo-model .wg-category-photo:hover .wg-category-photo-overlay { display: block; } .wg-category-photo-model .wg-category-photo .wg-category-photo-overlay { display: none; position: absolute; top: 36%; left: 48%; margin-left: -50px; } .wg-category-photo-model .wg-category-photo .wg-category-photo-overlay img { width: 40px !important; display: inline !important; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .wg-category-photo-model .wg-category-photo .wg-category-photo-overlay p.likes { display: inline; font-weight: bold; text-align: center; font-size: 1.4em; color: #ff9797; }
0.304765
0.056262
body { background-color: rgb(165, 224, 165); /* font-family: 'Roboto', sans-serif; */ font-family: 'Merriweather', serif; padding: 10px; -webkit-font-smoothing: antialiased; } nav { display: flex; width: 100%; justify-content: space-between; } .activeNav { transform: translate(0,-3px); border-top-left-radius: 5px; border-top-right-radius: 5px; } .navContainer { height: 100%; padding: 0; border: none; background-color: rgba(255, 255, 255, 0); } nav a { border: none; text-decoration: none; text-align: center; background-color: rgb(80, 148, 80); padding: 20px 0; color: rgb(226, 250, 228); cursor: pointer; width: 100%; transition: 0.2s all; } nav a:nth-of-type(1) { border-top-left-radius: 5px; border-bottom-left-radius: 5px; } nav a:nth-of-type(2n) { background-color: rgb(105, 173, 105); } nav a:last-child { border-top-right-radius: 5px; border-bottom-right-radius: 5px; } footer { text-align: center; } .stats { text-align: center; width: calc(100%); width: 100%; } .dropdown { display: flex; padding: 5px; background-color: rgb(142, 201, 142); flex-direction: column; align-items: center; text-align: center; max-width: 21%; width: 100%; min-width: 20%; border-right: 1px solid rgb(168, 209, 175); border-bottom-left-radius: 5px; border-top-left-radius: 5px; } .logo img { max-width: 50px; height: auto; } .dropdown h2 { text-align: left; padding-left: 20px; font-family: 'Merriweather', serif; color: rgb(37, 63, 47); } .stats h2 { color: rgb(37, 63, 47); } .dropdown * { width: 100%; } #filterBy option { padding: 10px; } #korpusSelection { width: 100%; } .grid-container { width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; } nav a:hover { transform: translate(0, -2px); background-color: rgb(177, 243, 157); color: rgb(37, 63, 47); font-weight: 900; -webkit-box-shadow: 0px 1px 6px 0px rgba(53,102,48,1); -moz-box-shadow: 0px 1px 6px 0px rgba(53,102,48,1); box-shadow: 0px 1px 6px 0px rgba(53,102,48,1); } .miniStats { display: flex; justify-content: space-between; border: none; background-color: rgba(145, 219, 145, 0); gap: 15px; box-shadow: none; } .miniStats p { width: 100%; font-weight: 700; background-color: rgb(233, 250, 238); padding: 20px 0px; margin: 0; text-align: center; border-radius: 5px; -webkit-box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); -moz-box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); } .miniStats p * { font-weight: normal; } #buttons { margin: 10px 0; display: flex; width: 100%; justify-content: space-between; /* gap: 10px; */ } .logo { display: flex; margin-bottom: 20px; } a { text-decoration: none; } .btn-check { position: absolute; clip: rect(0,0,0,0); pointer-events: none; } .logo h1 { font-family: 'Merriweather', serif; font-weight: 900; color: rgb(37, 63, 47); text-align: center; padding-left: 10px; } .checkbox { border: none; width: 100%; background-color: rgb(218, 245, 219); color: rgb(75, 3, 13); font-weight: normal; text-align: center; cursor: pointer; transition: all 0.2s; font-family: 'Merriweather', serif; font-weight: 300; box-sizing: border-box; padding: 10px 5px; } .checkbox:nth-of-type(1) { border-top-left-radius: 5px; border-top-right-radius: 5px; } .checkbox:nth-of-type(2n) { background-color: rgb(203, 236, 212); color: rgb(75, 3, 13); } .btn-check:checked+.checkbox:nth-of-type(2n){ background-color: rgb(105, 173, 105); color: rgb(37, 63, 47); } .checkbox:last-child { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; } .btn-check:checked+.checkbox{ background-color: rgba(129, 202, 129, 0); color: rgb(37, 63, 47); } .checkbox:hover { background-color: rgb(222, 245, 222); transform: translate(0, -2px); } .btn-check:checked+.checkbox:hover { background-color: rgb(158, 211, 167); color: rgb(37, 63, 47); transform: translate(0, -2px); } #buttons button { font-family: 'Merriweather', serif; border: none; width: 100%; background-color: rgb(105, 170, 105); color: black; font-weight: bold; padding: 20px 0px; margin: 0; text-align: center; cursor: pointer; transition: all 0.2s; border-radius: 5px 0 0 5px; } #buttons button:nth-of-type(2) { background-color: rgb(218, 245, 219); color:rgb(65, 4, 12); border-radius: 0 5px 5px 0; } #buttons button:hover { transform: translate(0, -5px); } .statsType { display: flex; border: none; justify-content: space-between; background-color: rgba(145, 219, 145, 0); gap: 15px; box-shadow: none; } .statsType button:focus {outline:0;} .dropdown p { font-size: 13.3333px; } .statsType button { border: none; width: 100%; background-color: rgb(214, 248, 220); font-family: 'Merriweather', serif; color: rgb(37, 63, 47); font-weight: bold; padding: 10px 0px; margin: 0; text-align: center; border-radius: 5px; cursor: pointer; transition: all 0.2s; -webkit-box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); -moz-box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); } .statsType button:hover { background-color: rgb(105, 170, 105); color: rgb(235, 235, 235); transform: scale(1.02); } section { display: flex; margin: 10px; justify-content: space-around; background-color: rgb(233, 250, 238); border-radius: 5px; -webkit-box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); -moz-box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); } table.GeneratedTable { width: 100%; background-color: rgb(233, 250, 238); border-collapse: collapse; border-width: 0px; border-color: #fafafa; border-style: solid; color: #000000; } table.GeneratedTable td, table.GeneratedTable th { border-width: 0px; border-color: #fafafa; border-style: solid; padding: 20px; } table.GeneratedTable thead { background-color: rgb(145, 219, 145); } .hidden { display: none; } label { display: flex; justify-content: space-between; width: 100%; margin: 0; } label p { text-align: right; } label i { max-width: 5%; padding-right: 3px; } #filterBy { width: 100%; padding: 10px; border-radius: 5px; border: none; outline: 0; font-weight: bold; text-align: center; background-color: rgb(105, 170, 105); transition: 0.2s all; font-family: 'Merriweather', serif; } #filterBy:hover { background-color: rgb(179, 221, 179); } #filterBy option { background-color: white; } #filterBy option:checked { background-color: rgb(191, 228, 189); } #filterBy option:hover { background-color: rgb(124, 192, 122); } /* Create a custom checkbox */ input[type="checkbox"] { height: 25px; width: 25px; background-color: #eee; } .echarts { width: 100%; min-height: 700px; } @media only screen and (max-width: 800px) { section { flex-direction: column; margin: 10 0; } body { padding: 0; } .miniStats { flex-direction: row; } .dropdown { max-width: 100%; padding-right: 0; width: 100%; border: none; display: flex; justify-content: space-between; align-items: center; } .dropdown * { width: 100%; } .checkbox { border-radius: 5px; } .dropdown #korpusSelection { display: inline-flex; gap: 10px; justify-content: space-between; flex-wrap: wrap; } #korpusSelection label { margin: 0; flex: 1 1; min-width: 33%; } } #help-toggle{ /* font-family: 'Merriweather', serif; */ /* border: none; */ /* display: flex; */ /* height: 15%; */ position: relative; /* background-color: #78B978; */ color: rgb(37, 63, 47); /* font-weight: bold; */ /* padding: 20px; */ margin-left: auto; margin-right: 1%; margin-bottom: 1%; margin-top: auto; cursor: pointer; transition: all 0.2s; /* border-radius: 5px; */ font-size: 54px; transition: 0.2s all; } #help-toggle:hover{ color:rgb(58, 95, 58); transform: scale(1.1); } :root { --balloon-border-radius: 2px; --balloon-color: rgba(16, 16, 16, 0.95); --balloon-text-color: #fff; --balloon-font-size: 14px; --balloon-move: 4px; } .tooltip-green { --balloon-color: green; } button[aria-label][data-balloon-pos] { overflow: visible; } [aria-label][data-balloon-pos] { position: relative; cursor: pointer; } [aria-label][data-balloon-pos]:after { opacity: 0; pointer-events: none; transition: all 0.18s ease-out 0.18s; text-indent: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; font-style: normal; text-shadow: none; font-size: var(--balloon-font-size); background: var(--balloon-color); border-radius: 2px; color: var(--balloon-text-color); border-radius: var(--balloon-border-radius); content: attr(aria-label); padding: .5em 1em; position: absolute; white-space: nowrap; z-index: 10; } [aria-label][data-balloon-pos]:before { width: 0; height: 0; border: 5px solid transparent; border-top-color: var(--balloon-color); opacity: 0; pointer-events: none; transition: all 0.18s ease-out 0.18s; content: ""; position: absolute; z-index: 10; } [aria-label][data-balloon-pos]:hover:before, [aria-label][data-balloon-pos]:hover:after, [aria-label][data-balloon-pos][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-visible]:after, [aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:before, [aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:after { opacity: 1; pointer-events: none; } [aria-label][data-balloon-pos].font-awesome:after { font-family: FontAwesome, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } [aria-label][data-balloon-pos][data-balloon-break]:after { white-space: pre; } [aria-label][data-balloon-pos][data-balloon-break][data-balloon-length]:after { white-space: pre-line; word-break: break-word; } [aria-label][data-balloon-pos][data-balloon-blunt]:before, [aria-label][data-balloon-pos][data-balloon-blunt]:after { transition: none; } [aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:after, [aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:after { transform: translate(-50%, 0); } [aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:before { transform: translate(-50%, 0); } [aria-label][data-balloon-pos][data-balloon-pos*="-left"]:after { left: 0; } [aria-label][data-balloon-pos][data-balloon-pos*="-left"]:before { left: 5px; } [aria-label][data-balloon-pos][data-balloon-pos*="-right"]:after { right: 0; } [aria-label][data-balloon-pos][data-balloon-pos*="-right"]:before { right: 5px; } [aria-label][data-balloon-pos][data-balloon-pos*="-left"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos*="-left"][data-balloon-visible]:after, [aria-label][data-balloon-pos][data-balloon-pos*="-right"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos*="-right"][data-balloon-visible]:after { transform: translate(0, 0); } [aria-label][data-balloon-pos][data-balloon-pos*="-left"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos*="-left"][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-pos*="-right"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos*="-right"][data-balloon-visible]:before { transform: translate(0, 0); } [aria-label][data-balloon-pos][data-balloon-pos^="up"]:before, [aria-label][data-balloon-pos][data-balloon-pos^="up"]:after { bottom: 100%; transform-origin: top; transform: translate(0, var(--balloon-move)); } [aria-label][data-balloon-pos][data-balloon-pos^="up"]:after { margin-bottom: 10px; } [aria-label][data-balloon-pos][data-balloon-pos="up"]:before, [aria-label][data-balloon-pos][data-balloon-pos="up"]:after { left: 50%; transform: translate(-50%, var(--balloon-move)); } [aria-label][data-balloon-pos][data-balloon-pos^="down"]:before, [aria-label][data-balloon-pos][data-balloon-pos^="down"]:after { top: 100%; transform: translate(0, calc(var(--balloon-move) * -1)); } [aria-label][data-balloon-pos][data-balloon-pos^="down"]:after { margin-top: 10px; } [aria-label][data-balloon-pos][data-balloon-pos^="down"]:before { width: 0; height: 0; border: 5px solid transparent; border-bottom-color: var(--balloon-color); } [aria-label][data-balloon-pos][data-balloon-pos="down"]:after, [aria-label][data-balloon-pos][data-balloon-pos="down"]:before { left: 50%; transform: translate(-50%, calc(var(--balloon-move) * -1)); } [aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:after, [aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:after { transform: translate(0, -50%); } [aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:before { transform: translate(0, -50%); } [aria-label][data-balloon-pos][data-balloon-pos="left"]:after, [aria-label][data-balloon-pos][data-balloon-pos="left"]:before { right: 100%; top: 50%; transform: translate(var(--balloon-move), -50%); } [aria-label][data-balloon-pos][data-balloon-pos="left"]:after { margin-right: 10px; } [aria-label][data-balloon-pos][data-balloon-pos="left"]:before { width: 0; height: 0; border: 5px solid transparent; border-left-color: var(--balloon-color); } [aria-label][data-balloon-pos][data-balloon-pos="right"]:after, [aria-label][data-balloon-pos][data-balloon-pos="right"]:before { left: 100%; top: 50%; transform: translate(calc(var(--balloon-move) * -1), -50%); } [aria-label][data-balloon-pos][data-balloon-pos="right"]:after { margin-left: 10px; } [aria-label][data-balloon-pos][data-balloon-pos="right"]:before { width: 0; height: 0; border: 5px solid transparent; border-right-color: var(--balloon-color); } [aria-label][data-balloon-pos][data-balloon-length]:after { white-space: normal; } [aria-label][data-balloon-pos][data-balloon-length="small"]:after { width: 80px; } [aria-label][data-balloon-pos][data-balloon-length="medium"]:after { width: 150px; } [aria-label][data-balloon-pos][data-balloon-length="large"]:after { width: 260px; } [aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after { width: 380px; } @media screen and (max-width: 768px) { [aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after { width: 90vw; } } [aria-label][data-balloon-pos][data-balloon-length="fit"]:after { width: 100%; } /* https://kazzkiq.github.io/balloon.css/ */
ui/public/evkk/css/style.css
body { background-color: rgb(165, 224, 165); /* font-family: 'Roboto', sans-serif; */ font-family: 'Merriweather', serif; padding: 10px; -webkit-font-smoothing: antialiased; } nav { display: flex; width: 100%; justify-content: space-between; } .activeNav { transform: translate(0,-3px); border-top-left-radius: 5px; border-top-right-radius: 5px; } .navContainer { height: 100%; padding: 0; border: none; background-color: rgba(255, 255, 255, 0); } nav a { border: none; text-decoration: none; text-align: center; background-color: rgb(80, 148, 80); padding: 20px 0; color: rgb(226, 250, 228); cursor: pointer; width: 100%; transition: 0.2s all; } nav a:nth-of-type(1) { border-top-left-radius: 5px; border-bottom-left-radius: 5px; } nav a:nth-of-type(2n) { background-color: rgb(105, 173, 105); } nav a:last-child { border-top-right-radius: 5px; border-bottom-right-radius: 5px; } footer { text-align: center; } .stats { text-align: center; width: calc(100%); width: 100%; } .dropdown { display: flex; padding: 5px; background-color: rgb(142, 201, 142); flex-direction: column; align-items: center; text-align: center; max-width: 21%; width: 100%; min-width: 20%; border-right: 1px solid rgb(168, 209, 175); border-bottom-left-radius: 5px; border-top-left-radius: 5px; } .logo img { max-width: 50px; height: auto; } .dropdown h2 { text-align: left; padding-left: 20px; font-family: 'Merriweather', serif; color: rgb(37, 63, 47); } .stats h2 { color: rgb(37, 63, 47); } .dropdown * { width: 100%; } #filterBy option { padding: 10px; } #korpusSelection { width: 100%; } .grid-container { width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; } nav a:hover { transform: translate(0, -2px); background-color: rgb(177, 243, 157); color: rgb(37, 63, 47); font-weight: 900; -webkit-box-shadow: 0px 1px 6px 0px rgba(53,102,48,1); -moz-box-shadow: 0px 1px 6px 0px rgba(53,102,48,1); box-shadow: 0px 1px 6px 0px rgba(53,102,48,1); } .miniStats { display: flex; justify-content: space-between; border: none; background-color: rgba(145, 219, 145, 0); gap: 15px; box-shadow: none; } .miniStats p { width: 100%; font-weight: 700; background-color: rgb(233, 250, 238); padding: 20px 0px; margin: 0; text-align: center; border-radius: 5px; -webkit-box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); -moz-box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); } .miniStats p * { font-weight: normal; } #buttons { margin: 10px 0; display: flex; width: 100%; justify-content: space-between; /* gap: 10px; */ } .logo { display: flex; margin-bottom: 20px; } a { text-decoration: none; } .btn-check { position: absolute; clip: rect(0,0,0,0); pointer-events: none; } .logo h1 { font-family: 'Merriweather', serif; font-weight: 900; color: rgb(37, 63, 47); text-align: center; padding-left: 10px; } .checkbox { border: none; width: 100%; background-color: rgb(218, 245, 219); color: rgb(75, 3, 13); font-weight: normal; text-align: center; cursor: pointer; transition: all 0.2s; font-family: 'Merriweather', serif; font-weight: 300; box-sizing: border-box; padding: 10px 5px; } .checkbox:nth-of-type(1) { border-top-left-radius: 5px; border-top-right-radius: 5px; } .checkbox:nth-of-type(2n) { background-color: rgb(203, 236, 212); color: rgb(75, 3, 13); } .btn-check:checked+.checkbox:nth-of-type(2n){ background-color: rgb(105, 173, 105); color: rgb(37, 63, 47); } .checkbox:last-child { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; } .btn-check:checked+.checkbox{ background-color: rgba(129, 202, 129, 0); color: rgb(37, 63, 47); } .checkbox:hover { background-color: rgb(222, 245, 222); transform: translate(0, -2px); } .btn-check:checked+.checkbox:hover { background-color: rgb(158, 211, 167); color: rgb(37, 63, 47); transform: translate(0, -2px); } #buttons button { font-family: 'Merriweather', serif; border: none; width: 100%; background-color: rgb(105, 170, 105); color: black; font-weight: bold; padding: 20px 0px; margin: 0; text-align: center; cursor: pointer; transition: all 0.2s; border-radius: 5px 0 0 5px; } #buttons button:nth-of-type(2) { background-color: rgb(218, 245, 219); color:rgb(65, 4, 12); border-radius: 0 5px 5px 0; } #buttons button:hover { transform: translate(0, -5px); } .statsType { display: flex; border: none; justify-content: space-between; background-color: rgba(145, 219, 145, 0); gap: 15px; box-shadow: none; } .statsType button:focus {outline:0;} .dropdown p { font-size: 13.3333px; } .statsType button { border: none; width: 100%; background-color: rgb(214, 248, 220); font-family: 'Merriweather', serif; color: rgb(37, 63, 47); font-weight: bold; padding: 10px 0px; margin: 0; text-align: center; border-radius: 5px; cursor: pointer; transition: all 0.2s; -webkit-box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); -moz-box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); } .statsType button:hover { background-color: rgb(105, 170, 105); color: rgb(235, 235, 235); transform: scale(1.02); } section { display: flex; margin: 10px; justify-content: space-around; background-color: rgb(233, 250, 238); border-radius: 5px; -webkit-box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); -moz-box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); box-shadow: 3px 3px 5px 0px rgba(72,133,60,1); } table.GeneratedTable { width: 100%; background-color: rgb(233, 250, 238); border-collapse: collapse; border-width: 0px; border-color: #fafafa; border-style: solid; color: #000000; } table.GeneratedTable td, table.GeneratedTable th { border-width: 0px; border-color: #fafafa; border-style: solid; padding: 20px; } table.GeneratedTable thead { background-color: rgb(145, 219, 145); } .hidden { display: none; } label { display: flex; justify-content: space-between; width: 100%; margin: 0; } label p { text-align: right; } label i { max-width: 5%; padding-right: 3px; } #filterBy { width: 100%; padding: 10px; border-radius: 5px; border: none; outline: 0; font-weight: bold; text-align: center; background-color: rgb(105, 170, 105); transition: 0.2s all; font-family: 'Merriweather', serif; } #filterBy:hover { background-color: rgb(179, 221, 179); } #filterBy option { background-color: white; } #filterBy option:checked { background-color: rgb(191, 228, 189); } #filterBy option:hover { background-color: rgb(124, 192, 122); } /* Create a custom checkbox */ input[type="checkbox"] { height: 25px; width: 25px; background-color: #eee; } .echarts { width: 100%; min-height: 700px; } @media only screen and (max-width: 800px) { section { flex-direction: column; margin: 10 0; } body { padding: 0; } .miniStats { flex-direction: row; } .dropdown { max-width: 100%; padding-right: 0; width: 100%; border: none; display: flex; justify-content: space-between; align-items: center; } .dropdown * { width: 100%; } .checkbox { border-radius: 5px; } .dropdown #korpusSelection { display: inline-flex; gap: 10px; justify-content: space-between; flex-wrap: wrap; } #korpusSelection label { margin: 0; flex: 1 1; min-width: 33%; } } #help-toggle{ /* font-family: 'Merriweather', serif; */ /* border: none; */ /* display: flex; */ /* height: 15%; */ position: relative; /* background-color: #78B978; */ color: rgb(37, 63, 47); /* font-weight: bold; */ /* padding: 20px; */ margin-left: auto; margin-right: 1%; margin-bottom: 1%; margin-top: auto; cursor: pointer; transition: all 0.2s; /* border-radius: 5px; */ font-size: 54px; transition: 0.2s all; } #help-toggle:hover{ color:rgb(58, 95, 58); transform: scale(1.1); } :root { --balloon-border-radius: 2px; --balloon-color: rgba(16, 16, 16, 0.95); --balloon-text-color: #fff; --balloon-font-size: 14px; --balloon-move: 4px; } .tooltip-green { --balloon-color: green; } button[aria-label][data-balloon-pos] { overflow: visible; } [aria-label][data-balloon-pos] { position: relative; cursor: pointer; } [aria-label][data-balloon-pos]:after { opacity: 0; pointer-events: none; transition: all 0.18s ease-out 0.18s; text-indent: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; font-style: normal; text-shadow: none; font-size: var(--balloon-font-size); background: var(--balloon-color); border-radius: 2px; color: var(--balloon-text-color); border-radius: var(--balloon-border-radius); content: attr(aria-label); padding: .5em 1em; position: absolute; white-space: nowrap; z-index: 10; } [aria-label][data-balloon-pos]:before { width: 0; height: 0; border: 5px solid transparent; border-top-color: var(--balloon-color); opacity: 0; pointer-events: none; transition: all 0.18s ease-out 0.18s; content: ""; position: absolute; z-index: 10; } [aria-label][data-balloon-pos]:hover:before, [aria-label][data-balloon-pos]:hover:after, [aria-label][data-balloon-pos][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-visible]:after, [aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:before, [aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:after { opacity: 1; pointer-events: none; } [aria-label][data-balloon-pos].font-awesome:after { font-family: FontAwesome, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } [aria-label][data-balloon-pos][data-balloon-break]:after { white-space: pre; } [aria-label][data-balloon-pos][data-balloon-break][data-balloon-length]:after { white-space: pre-line; word-break: break-word; } [aria-label][data-balloon-pos][data-balloon-blunt]:before, [aria-label][data-balloon-pos][data-balloon-blunt]:after { transition: none; } [aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:after, [aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:after { transform: translate(-50%, 0); } [aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:before { transform: translate(-50%, 0); } [aria-label][data-balloon-pos][data-balloon-pos*="-left"]:after { left: 0; } [aria-label][data-balloon-pos][data-balloon-pos*="-left"]:before { left: 5px; } [aria-label][data-balloon-pos][data-balloon-pos*="-right"]:after { right: 0; } [aria-label][data-balloon-pos][data-balloon-pos*="-right"]:before { right: 5px; } [aria-label][data-balloon-pos][data-balloon-pos*="-left"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos*="-left"][data-balloon-visible]:after, [aria-label][data-balloon-pos][data-balloon-pos*="-right"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos*="-right"][data-balloon-visible]:after { transform: translate(0, 0); } [aria-label][data-balloon-pos][data-balloon-pos*="-left"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos*="-left"][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-pos*="-right"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos*="-right"][data-balloon-visible]:before { transform: translate(0, 0); } [aria-label][data-balloon-pos][data-balloon-pos^="up"]:before, [aria-label][data-balloon-pos][data-balloon-pos^="up"]:after { bottom: 100%; transform-origin: top; transform: translate(0, var(--balloon-move)); } [aria-label][data-balloon-pos][data-balloon-pos^="up"]:after { margin-bottom: 10px; } [aria-label][data-balloon-pos][data-balloon-pos="up"]:before, [aria-label][data-balloon-pos][data-balloon-pos="up"]:after { left: 50%; transform: translate(-50%, var(--balloon-move)); } [aria-label][data-balloon-pos][data-balloon-pos^="down"]:before, [aria-label][data-balloon-pos][data-balloon-pos^="down"]:after { top: 100%; transform: translate(0, calc(var(--balloon-move) * -1)); } [aria-label][data-balloon-pos][data-balloon-pos^="down"]:after { margin-top: 10px; } [aria-label][data-balloon-pos][data-balloon-pos^="down"]:before { width: 0; height: 0; border: 5px solid transparent; border-bottom-color: var(--balloon-color); } [aria-label][data-balloon-pos][data-balloon-pos="down"]:after, [aria-label][data-balloon-pos][data-balloon-pos="down"]:before { left: 50%; transform: translate(-50%, calc(var(--balloon-move) * -1)); } [aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:after, [aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:after { transform: translate(0, -50%); } [aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:before { transform: translate(0, -50%); } [aria-label][data-balloon-pos][data-balloon-pos="left"]:after, [aria-label][data-balloon-pos][data-balloon-pos="left"]:before { right: 100%; top: 50%; transform: translate(var(--balloon-move), -50%); } [aria-label][data-balloon-pos][data-balloon-pos="left"]:after { margin-right: 10px; } [aria-label][data-balloon-pos][data-balloon-pos="left"]:before { width: 0; height: 0; border: 5px solid transparent; border-left-color: var(--balloon-color); } [aria-label][data-balloon-pos][data-balloon-pos="right"]:after, [aria-label][data-balloon-pos][data-balloon-pos="right"]:before { left: 100%; top: 50%; transform: translate(calc(var(--balloon-move) * -1), -50%); } [aria-label][data-balloon-pos][data-balloon-pos="right"]:after { margin-left: 10px; } [aria-label][data-balloon-pos][data-balloon-pos="right"]:before { width: 0; height: 0; border: 5px solid transparent; border-right-color: var(--balloon-color); } [aria-label][data-balloon-pos][data-balloon-length]:after { white-space: normal; } [aria-label][data-balloon-pos][data-balloon-length="small"]:after { width: 80px; } [aria-label][data-balloon-pos][data-balloon-length="medium"]:after { width: 150px; } [aria-label][data-balloon-pos][data-balloon-length="large"]:after { width: 260px; } [aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after { width: 380px; } @media screen and (max-width: 768px) { [aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after { width: 90vw; } } [aria-label][data-balloon-pos][data-balloon-length="fit"]:after { width: 100%; } /* https://kazzkiq.github.io/balloon.css/ */
0.457137
0.101634
.hidden { display: none; } .flexer { display: flex; flex-direction: row; flex-wrap: wrap; width: 98%; padding: 0.5em; } .picker { display: flex; flex-direction: column; flex-basis: 100%; flex: 1; padding: 1em; border: 2px solid #ccc; } .half-padding, h2 { padding: 0.5em 0 0 0; } input, label { cursor: pointer; } .jstree { padding: 0.5em 0; } #propertyListOfSource { list-style-type: none; } #propertyListOfSource li { padding: 0.5em 0 0 0; } .copy-mode { display: block; margin: 1em 0; font-weight: 600; } .submit-button { display: block; margin: 1em 0; padding: 0 1em; } .output-area { background-color: #e3e3e3; padding: 0 0.5em; border: 1px solid #c1c1c1; } .output-area p { margin-bottom: 1.5em; } .jstree-default .jstree-hovered { background: none; } .jstree-default .jstree-clicked { background-color: #575757; color: #e6e6e6; } .jstree-default .jstree-themeicon { display: none; } .jstree-default .jstree-anchor { line-height: 18px; height: 18px; display: initial; border-radius: initial; margin-left: 3px; } .jstree-default .jstree-node { min-height: 18px; line-height: 18px; margin-left: 0; } .jstree-default .jstree-children { margin-left: 1.1em; } .jstree-default .jstree-open > .jstree-ocl { background-image: url("/App_Themes/Default/Images/ExplorerTree/Tminus.gif"); background-position: 0 0; width: 14px; height: 18px; background-position: left center; background-repeat: no-repeat; } .jstree-default li:last-child.jstree-open > .jstree-ocl { background-image: url("/App_Themes/Default/Images/ExplorerTree/Lminus.gif"); } .jstree-default .jstree-closed > .jstree-ocl { background-image: url("/App_Themes/Default/Images/ExplorerTree/Tplus.gif"); background-position: 0 0; width: 14px; height: 18px; background-position: left center; background-repeat: no-repeat; } .jstree-default .jstree-closed:last-child > .jstree-ocl { background-image: url("/App_Themes/Default/Images/ExplorerTree/Lplus.gif"); } .jstree-default .jstree-leaf > .jstree-ocl { background-image: url("/App_Themes/Default/Images/ExplorerTree/T.gif"); background-position: 0 0; width: 14px; height: 18px; background-position: left center; background-repeat: no-repeat; } .jstree-default .jstree-leaf:last-child > .jstree-ocl { background-image: url("/App_Themes/Default/Images/ExplorerTree/L.gif"); } .jstree-default li { background: url("/App_Themes/Default/Images/ExplorerTree/I.gif") repeat-y left top; } .jstree-default li:last-child { background: url("/App_Themes/Default/Images/ExplorerTree/I.gif") no-repeat left top; }
src/Zone.Epi.ContentCopy/Zone.Epi.ContentCopy/ClientResources/Scripts/content-copy.css
.hidden { display: none; } .flexer { display: flex; flex-direction: row; flex-wrap: wrap; width: 98%; padding: 0.5em; } .picker { display: flex; flex-direction: column; flex-basis: 100%; flex: 1; padding: 1em; border: 2px solid #ccc; } .half-padding, h2 { padding: 0.5em 0 0 0; } input, label { cursor: pointer; } .jstree { padding: 0.5em 0; } #propertyListOfSource { list-style-type: none; } #propertyListOfSource li { padding: 0.5em 0 0 0; } .copy-mode { display: block; margin: 1em 0; font-weight: 600; } .submit-button { display: block; margin: 1em 0; padding: 0 1em; } .output-area { background-color: #e3e3e3; padding: 0 0.5em; border: 1px solid #c1c1c1; } .output-area p { margin-bottom: 1.5em; } .jstree-default .jstree-hovered { background: none; } .jstree-default .jstree-clicked { background-color: #575757; color: #e6e6e6; } .jstree-default .jstree-themeicon { display: none; } .jstree-default .jstree-anchor { line-height: 18px; height: 18px; display: initial; border-radius: initial; margin-left: 3px; } .jstree-default .jstree-node { min-height: 18px; line-height: 18px; margin-left: 0; } .jstree-default .jstree-children { margin-left: 1.1em; } .jstree-default .jstree-open > .jstree-ocl { background-image: url("/App_Themes/Default/Images/ExplorerTree/Tminus.gif"); background-position: 0 0; width: 14px; height: 18px; background-position: left center; background-repeat: no-repeat; } .jstree-default li:last-child.jstree-open > .jstree-ocl { background-image: url("/App_Themes/Default/Images/ExplorerTree/Lminus.gif"); } .jstree-default .jstree-closed > .jstree-ocl { background-image: url("/App_Themes/Default/Images/ExplorerTree/Tplus.gif"); background-position: 0 0; width: 14px; height: 18px; background-position: left center; background-repeat: no-repeat; } .jstree-default .jstree-closed:last-child > .jstree-ocl { background-image: url("/App_Themes/Default/Images/ExplorerTree/Lplus.gif"); } .jstree-default .jstree-leaf > .jstree-ocl { background-image: url("/App_Themes/Default/Images/ExplorerTree/T.gif"); background-position: 0 0; width: 14px; height: 18px; background-position: left center; background-repeat: no-repeat; } .jstree-default .jstree-leaf:last-child > .jstree-ocl { background-image: url("/App_Themes/Default/Images/ExplorerTree/L.gif"); } .jstree-default li { background: url("/App_Themes/Default/Images/ExplorerTree/I.gif") repeat-y left top; } .jstree-default li:last-child { background: url("/App_Themes/Default/Images/ExplorerTree/I.gif") no-repeat left top; }
0.628863
0.094971
body { background-color: #e2e2e2; } div#header { width: 102%; height: 90px; background-color: rgb(2, 41, 78); margin-top: -8px; margin-left: -8px; } h1 { margin-top: -8px; color: #ffffff; line-height: 90px; text-align: center; font-size: 30pt; font-family: Arial, Helvetica, sans-serif; } .obesidade { color: #9a2323; font-weight: 900; } .saudavel { color: #2f691e; font-weight: 900; } div#left-bar { width: 30%; height: 700px; background-color: #cccccc; text-align: center; color: #3b3b3b; margin-left: -8px; float: left; } div#right-bar { width: 30%; height: 700px; background-color: #cccccc; text-align: center; color: #3b3b3b; margin-right: -8px; float: right; background-image: url(https://i.imgur.com/Oy3Haq1.jpg) } h2 { font-family: Segoe UI; font-weight: 500; } div#canvas { width: 40%; height: 700px; background-color: #6787af; text-align: left; color: #202020; margin-left: 8px; float: left; background-image: url(https://i.imgur.com/17Knxhr.jpg) } p { font-family: 'Times New Roman', Times, serif; font-weight: 500; margin-left: 20px; margin-top: 10px; font-size: 50px; margin-bottom: 5px; } input[type=number] { width: 60%; margin-left: 20px; padding: 12px 12px; border-radius: 100px; } input[type=button] { margin-left: 20px; padding: 12px 12px; border-radius: 10px; } .desc { font-family: 'Times New Roman', Times, serif; font-weight: 500; margin-left: 20px; margin-right: 20px; margin-top: 10px; font-size: 20px; margin-bottom: 5px; text-align: justify; } #res { font-family: Segoe UI; font-weight: 500; margin-left: 20px; margin-right: 20px; font-size: 25px; margin-bottom: 5px; text-align: left; } /* Estilo de tabela */ #customers { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; border-collapse: collapse; width: 100%; } #customers td, #customers th { border: 1px solid #ddd; padding: 15px; } #customers tr:nth-child(even){background-color: #f2f2f2;} #customers tr:hover {background-color: #ddd;} #customers th { padding-top: 12px; padding-bottom: 12px; text-align: center; background-color: #02294e; color: white; } fieldset { color: #272727; font-weight: 900; border-color: #575757; height: 33%; margin: 10px; font-family: Segoe UI; } legend { text-align: right; font-size: 20px; text-transform: uppercase; }
IMC/css/style.css
body { background-color: #e2e2e2; } div#header { width: 102%; height: 90px; background-color: rgb(2, 41, 78); margin-top: -8px; margin-left: -8px; } h1 { margin-top: -8px; color: #ffffff; line-height: 90px; text-align: center; font-size: 30pt; font-family: Arial, Helvetica, sans-serif; } .obesidade { color: #9a2323; font-weight: 900; } .saudavel { color: #2f691e; font-weight: 900; } div#left-bar { width: 30%; height: 700px; background-color: #cccccc; text-align: center; color: #3b3b3b; margin-left: -8px; float: left; } div#right-bar { width: 30%; height: 700px; background-color: #cccccc; text-align: center; color: #3b3b3b; margin-right: -8px; float: right; background-image: url(https://i.imgur.com/Oy3Haq1.jpg) } h2 { font-family: Segoe UI; font-weight: 500; } div#canvas { width: 40%; height: 700px; background-color: #6787af; text-align: left; color: #202020; margin-left: 8px; float: left; background-image: url(https://i.imgur.com/17Knxhr.jpg) } p { font-family: 'Times New Roman', Times, serif; font-weight: 500; margin-left: 20px; margin-top: 10px; font-size: 50px; margin-bottom: 5px; } input[type=number] { width: 60%; margin-left: 20px; padding: 12px 12px; border-radius: 100px; } input[type=button] { margin-left: 20px; padding: 12px 12px; border-radius: 10px; } .desc { font-family: 'Times New Roman', Times, serif; font-weight: 500; margin-left: 20px; margin-right: 20px; margin-top: 10px; font-size: 20px; margin-bottom: 5px; text-align: justify; } #res { font-family: Segoe UI; font-weight: 500; margin-left: 20px; margin-right: 20px; font-size: 25px; margin-bottom: 5px; text-align: left; } /* Estilo de tabela */ #customers { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; border-collapse: collapse; width: 100%; } #customers td, #customers th { border: 1px solid #ddd; padding: 15px; } #customers tr:nth-child(even){background-color: #f2f2f2;} #customers tr:hover {background-color: #ddd;} #customers th { padding-top: 12px; padding-bottom: 12px; text-align: center; background-color: #02294e; color: white; } fieldset { color: #272727; font-weight: 900; border-color: #575757; height: 33%; margin: 10px; font-family: Segoe UI; } legend { text-align: right; font-size: 20px; text-transform: uppercase; }
0.495361
0.136005
* { box-sizing: border-box; } html { font-size: 18px; } a { text-decoration: none; } body { letter-spacing: 1.2px; margin: 0; font-family: Circular, -apple-system, system-ui, Roboto, "Helvetica Neue", sans-serif; color: #484848; } li { list-style: none; } /* 画像拡大 */ .yy { overflow: hidden; } .yy img { transition-duration: 0.5s;/*変化に掛かる時間*/ } .yy img:hover { transform: scale(1.2, 1.2); transition-duration: .5s } header .navbar-brand { font-weight: bold; } header .slide ol li { border: 1px solid black; } header .hehe { color: black; } .hh:before { color: black; } .section-1 { padding: 5rem 0 3rem 0; position: relative; } .section-1 h2 { padding-bottom: 2.5rem; } .section-1 p { font-size: 1.2em; } .section-2 h2 { padding: 2rem 0 0rem 0; font-weight: bold; } .section-2 p { font-size: 1.2em; } .section-3 { background-image: url(https://www.galaxymobile.jp/common/images/main-explore_winter_bg.jpg); background-position: center; background-size: contain; padding: 4.7rem 0 7.6rem 0; background-repeat: no-repeat; } .section-3 h2 { padding-bottom: 3rem; display: inline-block; } footer { padding: 1.2rem 0; } .ffff { font-size: 1.3em; padding: 0 .4rem; } .question { padding-bottom: 1rem; } .question button { font-size: .75em; margin-right: .7rem; } .cl { border: 3px yellow solid; } .cr { border: 2px #aaa solid; } .breadcrumb { background: none; color: #aaa; font-size: .9em; } .breadcrumb a { color: gray; } .breadcrumb li a:hover { text-decoration: none; } .bottom, .b-l { font-size: .7em; } .html h3 { padding: 1rem 0 1rem 0; } .html p, .htmlp { font-size: 1.4em; } .htmlp { padding-top: 1.7rem; } .card-title { font-size: 1.2em; } .cdd { border-bottom: 1px solid #eee; } .card-body { background: #fafafa; } .card-text { padding-left: 0; } .card-text li { padding-bottom: 1rem; } .app { padding: 2rem 0; border-bottom: 1px solid #eee; } .app ul { padding: 0; } .app h4 { font-weight: bold; padding-bottom: 1.3rem; } .ddd h4 { font-size: 1.2em; } .fa-facebook-f, .fa-twitter, .fa-youtube, .fa-instagram { font-size: 1.3em; padding-left: 1.2rem; } .gha { padding: 2rem 0; } /* アコーディオン */ .accordions .card-header { background-color: rgba(0, 0, 0, 0.01); border-bottom: none; } .accordions .card-header a { color: black; }
style.css
* { box-sizing: border-box; } html { font-size: 18px; } a { text-decoration: none; } body { letter-spacing: 1.2px; margin: 0; font-family: Circular, -apple-system, system-ui, Roboto, "Helvetica Neue", sans-serif; color: #484848; } li { list-style: none; } /* 画像拡大 */ .yy { overflow: hidden; } .yy img { transition-duration: 0.5s;/*変化に掛かる時間*/ } .yy img:hover { transform: scale(1.2, 1.2); transition-duration: .5s } header .navbar-brand { font-weight: bold; } header .slide ol li { border: 1px solid black; } header .hehe { color: black; } .hh:before { color: black; } .section-1 { padding: 5rem 0 3rem 0; position: relative; } .section-1 h2 { padding-bottom: 2.5rem; } .section-1 p { font-size: 1.2em; } .section-2 h2 { padding: 2rem 0 0rem 0; font-weight: bold; } .section-2 p { font-size: 1.2em; } .section-3 { background-image: url(https://www.galaxymobile.jp/common/images/main-explore_winter_bg.jpg); background-position: center; background-size: contain; padding: 4.7rem 0 7.6rem 0; background-repeat: no-repeat; } .section-3 h2 { padding-bottom: 3rem; display: inline-block; } footer { padding: 1.2rem 0; } .ffff { font-size: 1.3em; padding: 0 .4rem; } .question { padding-bottom: 1rem; } .question button { font-size: .75em; margin-right: .7rem; } .cl { border: 3px yellow solid; } .cr { border: 2px #aaa solid; } .breadcrumb { background: none; color: #aaa; font-size: .9em; } .breadcrumb a { color: gray; } .breadcrumb li a:hover { text-decoration: none; } .bottom, .b-l { font-size: .7em; } .html h3 { padding: 1rem 0 1rem 0; } .html p, .htmlp { font-size: 1.4em; } .htmlp { padding-top: 1.7rem; } .card-title { font-size: 1.2em; } .cdd { border-bottom: 1px solid #eee; } .card-body { background: #fafafa; } .card-text { padding-left: 0; } .card-text li { padding-bottom: 1rem; } .app { padding: 2rem 0; border-bottom: 1px solid #eee; } .app ul { padding: 0; } .app h4 { font-weight: bold; padding-bottom: 1.3rem; } .ddd h4 { font-size: 1.2em; } .fa-facebook-f, .fa-twitter, .fa-youtube, .fa-instagram { font-size: 1.3em; padding-left: 1.2rem; } .gha { padding: 2rem 0; } /* アコーディオン */ .accordions .card-header { background-color: rgba(0, 0, 0, 0.01); border-bottom: none; } .accordions .card-header a { color: black; }
0.387459
0.154631
@charset "utf-8"; *{ padding: 0; margin: 0; } body{ overflow-x: hidden; } header{ width: 100%; height: 100px; background-color: #6e0498 ; } .Logo{ position: absolute; float: left; height: 100px; } .Logo img{ height: 150px; width: 150px; position: relative; top: -25px; } .rede-social{ position: relative; float: right; margin-top: 30px; padding-right: 10px; } .rede-social img{ height: 20px; width: 20px; } .rede-social ul{ list-style: none; } .rede-social li{ float: left; padding: 3px; line-height: 50px; } /*Barra de pesquisa*/ #pesquisar{ width: 250px; height: 30px; border:solid 1px; position: absolute; right: 120px; top: 40px; border-radius: 10px; background-color: rgb(255, 255, 255); } #txtbusca{ float: left; padding-left: 10px; background-color:transparent; line-height: 30px; font-style: italic; font-size: 18px; border: none; width: 260px; height: 32px; } textarea:focus, input:focus, select:focus{ outline: 0; } /*Menu*/ .Menu { background-color: #7A06BF ; width: 100%; height: 60px; } .Menu ul{ list-style: none; float: center; position: relative; left: 33%; text-align: center; justify-content: center; } .Menu ul li{ float: left; padding: 20px; line-height: 23px; } .Menu a{ color: #fff; font-family: Arial, Helvetica, sans-serif; text-decoration: none; text-transform: uppercase; } .Menu a:hover{ text-decoration: underline; } /*poster do site*/ #poster-da-pagina{ width: 100%; height: 450px; margin: 0%; } #poster-da-pagina img{ width: 100%; height: 450px; position: relative; top: -3px; filter:brightness(45%); } .textoDoPoster{ position: relative; top: -55%; left: 30%; color: rgb(247, 247, 247); font-family: 'Lobster', cursive; font-size: 50px; } /*slide dos livros*/ .slidesLivros{ position: absolute; width: 100%; height: 580px; background-color:#6e0498; } #titulo-slide{ text-align: center; width: 100%; height: 40px; margin-top: 30px; margin-bottom: 30px; top: 13px; position: relative; } #titulo-slide h1{ text-align: center; color: rgb(255, 255, 255); font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; } .slide1{ display: block; position: relative; float: left; width: 320px; height: 420px; background-color: rgb(240, 237, 237); border-radius: 20px; left: 10%; top: 25px; box-shadow: 10px 10px 10px 5px rgba(0, 0, 0, 0.671); } .slide1 img { position: relative; width: 190px; height: 240px; left: 20%; top: 35px; } .slide2{ display: block; position: relative; float: left; width: 320px; height: 420px; background-color: rgb(240, 237, 237); border-radius: 20px; top: 25px; left: 15%; box-shadow: 10px 10px 10px 5px rgba(0, 0, 0, 0.671); } .slide2 img { position: relative; width: 190px ; height: 240px; left: 20%; top: 35px; } .botão1{ position: absolute; left: 22%; top: 75%; height: 60px; width: 180px; border-radius: 35px; color: white; background-color: #9d4ebd ; outline: 0; text-transform: uppercase; } .botão1:hover{ background-color: white; color:#7A06BF ; } .slide3{ display: block; position: relative; float: left; width: 320px; height: 420px; background-color: rgb(240, 237, 237); border-radius: 20px; top: 25px; left: 20%; box-shadow: 10px 10px 10px 5px rgba(0, 0, 0, 0.671); } .slide3 img{ position: relative; width: 190px; height: 240px; left: 20%; top: 35px; }
css/style.css
@charset "utf-8"; *{ padding: 0; margin: 0; } body{ overflow-x: hidden; } header{ width: 100%; height: 100px; background-color: #6e0498 ; } .Logo{ position: absolute; float: left; height: 100px; } .Logo img{ height: 150px; width: 150px; position: relative; top: -25px; } .rede-social{ position: relative; float: right; margin-top: 30px; padding-right: 10px; } .rede-social img{ height: 20px; width: 20px; } .rede-social ul{ list-style: none; } .rede-social li{ float: left; padding: 3px; line-height: 50px; } /*Barra de pesquisa*/ #pesquisar{ width: 250px; height: 30px; border:solid 1px; position: absolute; right: 120px; top: 40px; border-radius: 10px; background-color: rgb(255, 255, 255); } #txtbusca{ float: left; padding-left: 10px; background-color:transparent; line-height: 30px; font-style: italic; font-size: 18px; border: none; width: 260px; height: 32px; } textarea:focus, input:focus, select:focus{ outline: 0; } /*Menu*/ .Menu { background-color: #7A06BF ; width: 100%; height: 60px; } .Menu ul{ list-style: none; float: center; position: relative; left: 33%; text-align: center; justify-content: center; } .Menu ul li{ float: left; padding: 20px; line-height: 23px; } .Menu a{ color: #fff; font-family: Arial, Helvetica, sans-serif; text-decoration: none; text-transform: uppercase; } .Menu a:hover{ text-decoration: underline; } /*poster do site*/ #poster-da-pagina{ width: 100%; height: 450px; margin: 0%; } #poster-da-pagina img{ width: 100%; height: 450px; position: relative; top: -3px; filter:brightness(45%); } .textoDoPoster{ position: relative; top: -55%; left: 30%; color: rgb(247, 247, 247); font-family: 'Lobster', cursive; font-size: 50px; } /*slide dos livros*/ .slidesLivros{ position: absolute; width: 100%; height: 580px; background-color:#6e0498; } #titulo-slide{ text-align: center; width: 100%; height: 40px; margin-top: 30px; margin-bottom: 30px; top: 13px; position: relative; } #titulo-slide h1{ text-align: center; color: rgb(255, 255, 255); font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; } .slide1{ display: block; position: relative; float: left; width: 320px; height: 420px; background-color: rgb(240, 237, 237); border-radius: 20px; left: 10%; top: 25px; box-shadow: 10px 10px 10px 5px rgba(0, 0, 0, 0.671); } .slide1 img { position: relative; width: 190px; height: 240px; left: 20%; top: 35px; } .slide2{ display: block; position: relative; float: left; width: 320px; height: 420px; background-color: rgb(240, 237, 237); border-radius: 20px; top: 25px; left: 15%; box-shadow: 10px 10px 10px 5px rgba(0, 0, 0, 0.671); } .slide2 img { position: relative; width: 190px ; height: 240px; left: 20%; top: 35px; } .botão1{ position: absolute; left: 22%; top: 75%; height: 60px; width: 180px; border-radius: 35px; color: white; background-color: #9d4ebd ; outline: 0; text-transform: uppercase; } .botão1:hover{ background-color: white; color:#7A06BF ; } .slide3{ display: block; position: relative; float: left; width: 320px; height: 420px; background-color: rgb(240, 237, 237); border-radius: 20px; top: 25px; left: 20%; box-shadow: 10px 10px 10px 5px rgba(0, 0, 0, 0.671); } .slide3 img{ position: relative; width: 190px; height: 240px; left: 20%; top: 35px; }
0.414662
0.073963
* { box-sizing: border-box; } body { margin: 0; padding: 0; border: 0; } .flex { display: flex; } /* Navbar */ .navbar { height: 100px; background-color: #696969; justify-content: space-between; align-items: center; padding: 0 40px; } .nav-logo { padding-top: 12%; height: 80px; width: auto; } .nav-text { text-decoration: none; color: white; font-size: 24px; } .fa-search { position: absolute; margin-top: 12px; margin-left: 5px; } a:last-of-type { background: grey; } .searchbar { width: 300px; height: 55px; border-radius: 10px; border: 0; padding-left: 45px; font-size: 24px; color: rgba(49, 46, 46, 0.822); font-weight: bold; } /* Section 1 */ .articles { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); font-family: 'Francois One', sans-serif; color: white; } .none { display: none; } .articles > * { height: 778px; text-align: center; padding: 80px; font-size: 3em; } .article-1, .article-4 { background-color: #696969; } .article-2, .article-3 { background-color: #808080; } /* Section 2 */ .sc2-articles { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); justify-content: space-evenly; margin: 10px; } .sc2-articles > * { height: 700px; background: #d3d3d3; padding: 50px; } .sc2-article-4 > h2, .sc2-article-9 > h2 { font-size: 3em; text-decoration: underline; text-decoration-color: #d33a2c; } .sc2-article-4 > p, .sc2-article-9 > p { font-size: 1.2em; } .guide-4 > p { line-height: 1.5; font-size: 2em; } .featured p { max-width: 50%; margin: 30px 0; } .table-of-content p { font-size: 2em; margin: 30px auto; } .sc2-article-4 > p:last-of-type, .sc2-article-9 > p:last-of-type { font-size: 1em; } .ft-text > a { color: white; } .featured a { text-decoration: none; font-size: 1.5em; padding: 10px; background: white; border-radius: 10px; } .table-of-content a { margin-top: 200px; font-size: 2em; font-weight: bolder; background: white; color: #696969; text-decoration: none; border-radius: 10px; padding: 10px; } .sc2-article-4 > a, .sc2-article-9 > a { color: #267dcc; font-size: 1.5em; background-color: white; border-radius: 10px; padding: 20px; text-decoration: none; font-weight: bold; } .sc2-article-4 > p > a, .sc2-article-9 > p > a { color: white; } .sc2-article-4, .sc2-article-9 { background: #696969; border-radius: 20px; justify-content: space-evenly; flex-direction: column; align-items: center; color: white; } .sc2-img { height: 250px; width: auto; } /* Table of content */ .table-of-content { padding: 20%; height: 200px; background: #696969; color: white; text-align: center; } .table-of-content h1 { font-size: 3em; } /* Community Links */ .community { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); grid-gap: 10px; } .person-1, .person-3, .person-5 { background: #c0c0c0; height: 276px; } .person-2, .person-4, .person-6 { background: #c0c0c0; height: 276px; } .person-of-the-week { height: 320px; background-color: #696969; } /* Featured */ .featured { height: 420px; background: #696969; color: white; padding: 40px; } .featured h2 { font-size: 1.2em; margin: 10px; } .featured h1 { font-size: 2em; margin: 10px; } /* Guides */ .guides { padding: 20px; display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 30px; } .guides > * { background-color: #d3d3d3; height: 790px; padding: 50px; } .guide-4 { background: #696969; height: 790px; color: white; justify-content: center; flex-direction: column; } .guide-4 > img { width: 100%; } .guide-4 > h1 { font-size: 3.2em; margin: 30px 0; } .guide-4 > div > input { padding: 15px; border-top-left-radius: 10px; border-bottom-left-radius: 10px; border: 0; width: 70%; margin-bottom: 15px; margin-top: 15px; } .guide-4 > div > button { padding: 15px; border: 0; border-top-right-radius: 10px; border-bottom-right-radius: 10px; background-color: #acaaaa; color: white; font-weight: bold; margin-left: -5px; margin-bottom: 15px; margin-top: 15px; width: 25%; } .guide-4 > p:last-of-type { line-height: 1.5; font-size: 1em; max-width: 40%; margin: 0 auto; } /* Footer Section */ .ft { height: 630px; background-color: #696969; text-align: center; color: white; } .ft > h5 { font-size: 1.2em; padding-top: 50px; } .ft-links { flex-wrap: wrap; max-width: 90%; margin: 30px auto; list-style: circle; justify-content: center; } .ft-links > li { margin: 0 15px; font-size: 1.8em; line-height: 1.5; } .ft-text { font-size: 1em; width: 25%; margin: 30px auto; line-height: 1.5; } .ft-links-2 { flex-wrap: wrap; max-width: 30%; margin: 30px auto; list-style: circle; justify-content: center; } .ft-links-2 > li { margin: 0 15px; font-size: 1.1em; line-height: 1.5; } .ft-links-2 > li > a { color: white; }
assets/stylesheets/main.css
* { box-sizing: border-box; } body { margin: 0; padding: 0; border: 0; } .flex { display: flex; } /* Navbar */ .navbar { height: 100px; background-color: #696969; justify-content: space-between; align-items: center; padding: 0 40px; } .nav-logo { padding-top: 12%; height: 80px; width: auto; } .nav-text { text-decoration: none; color: white; font-size: 24px; } .fa-search { position: absolute; margin-top: 12px; margin-left: 5px; } a:last-of-type { background: grey; } .searchbar { width: 300px; height: 55px; border-radius: 10px; border: 0; padding-left: 45px; font-size: 24px; color: rgba(49, 46, 46, 0.822); font-weight: bold; } /* Section 1 */ .articles { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); font-family: 'Francois One', sans-serif; color: white; } .none { display: none; } .articles > * { height: 778px; text-align: center; padding: 80px; font-size: 3em; } .article-1, .article-4 { background-color: #696969; } .article-2, .article-3 { background-color: #808080; } /* Section 2 */ .sc2-articles { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); justify-content: space-evenly; margin: 10px; } .sc2-articles > * { height: 700px; background: #d3d3d3; padding: 50px; } .sc2-article-4 > h2, .sc2-article-9 > h2 { font-size: 3em; text-decoration: underline; text-decoration-color: #d33a2c; } .sc2-article-4 > p, .sc2-article-9 > p { font-size: 1.2em; } .guide-4 > p { line-height: 1.5; font-size: 2em; } .featured p { max-width: 50%; margin: 30px 0; } .table-of-content p { font-size: 2em; margin: 30px auto; } .sc2-article-4 > p:last-of-type, .sc2-article-9 > p:last-of-type { font-size: 1em; } .ft-text > a { color: white; } .featured a { text-decoration: none; font-size: 1.5em; padding: 10px; background: white; border-radius: 10px; } .table-of-content a { margin-top: 200px; font-size: 2em; font-weight: bolder; background: white; color: #696969; text-decoration: none; border-radius: 10px; padding: 10px; } .sc2-article-4 > a, .sc2-article-9 > a { color: #267dcc; font-size: 1.5em; background-color: white; border-radius: 10px; padding: 20px; text-decoration: none; font-weight: bold; } .sc2-article-4 > p > a, .sc2-article-9 > p > a { color: white; } .sc2-article-4, .sc2-article-9 { background: #696969; border-radius: 20px; justify-content: space-evenly; flex-direction: column; align-items: center; color: white; } .sc2-img { height: 250px; width: auto; } /* Table of content */ .table-of-content { padding: 20%; height: 200px; background: #696969; color: white; text-align: center; } .table-of-content h1 { font-size: 3em; } /* Community Links */ .community { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); grid-gap: 10px; } .person-1, .person-3, .person-5 { background: #c0c0c0; height: 276px; } .person-2, .person-4, .person-6 { background: #c0c0c0; height: 276px; } .person-of-the-week { height: 320px; background-color: #696969; } /* Featured */ .featured { height: 420px; background: #696969; color: white; padding: 40px; } .featured h2 { font-size: 1.2em; margin: 10px; } .featured h1 { font-size: 2em; margin: 10px; } /* Guides */ .guides { padding: 20px; display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 30px; } .guides > * { background-color: #d3d3d3; height: 790px; padding: 50px; } .guide-4 { background: #696969; height: 790px; color: white; justify-content: center; flex-direction: column; } .guide-4 > img { width: 100%; } .guide-4 > h1 { font-size: 3.2em; margin: 30px 0; } .guide-4 > div > input { padding: 15px; border-top-left-radius: 10px; border-bottom-left-radius: 10px; border: 0; width: 70%; margin-bottom: 15px; margin-top: 15px; } .guide-4 > div > button { padding: 15px; border: 0; border-top-right-radius: 10px; border-bottom-right-radius: 10px; background-color: #acaaaa; color: white; font-weight: bold; margin-left: -5px; margin-bottom: 15px; margin-top: 15px; width: 25%; } .guide-4 > p:last-of-type { line-height: 1.5; font-size: 1em; max-width: 40%; margin: 0 auto; } /* Footer Section */ .ft { height: 630px; background-color: #696969; text-align: center; color: white; } .ft > h5 { font-size: 1.2em; padding-top: 50px; } .ft-links { flex-wrap: wrap; max-width: 90%; margin: 30px auto; list-style: circle; justify-content: center; } .ft-links > li { margin: 0 15px; font-size: 1.8em; line-height: 1.5; } .ft-text { font-size: 1em; width: 25%; margin: 30px auto; line-height: 1.5; } .ft-links-2 { flex-wrap: wrap; max-width: 30%; margin: 30px auto; list-style: circle; justify-content: center; } .ft-links-2 > li { margin: 0 15px; font-size: 1.1em; line-height: 1.5; } .ft-links-2 > li > a { color: white; }
0.40028
0.138171
body{ background:#121212; /*#121212 bg and #212121 for posts*/ color:#fff; } nav{ background:#121212; } .logo{ color: #fff; letter-spacing: 2px; } small{ color: #1e90ff; } ::selection { color: #000; background: #F9E9C8; } ::-moz-selection { /* Code for Firefox */ color: #000; background: #F9E9C8; } h3{ font-weight: 300; } header{ display: flex; flex-direction: row; color:#fff; background:#212121; border-radius:10px; padding:8px; cursor:pointer; } header .profile-thumbnail { width: 55px; height: 55px; border-radius: 50%; } header .profile-name { display: flex; flex-direction:column; margin-left: 10px; } header .follow-btn { display: flex; margin: 0 0 0 auto; } header .follow-btn button { border: 0; border-radius: 3px; padding: 5px; } header h3, header h4 { display: flex; margin: 0; } #inner p { margin-bottom:5px; font-size: 17px; color:#fff; /* #f8f8f2 */ } .post{ background:#212121; border-radius:10px; padding:7px; } .post .profile-thumbnail{ width: 45px; height: 45px; } .post h3{ font-weight: 400; font-size: 1.4rem; } .liked { color: red; } .love{ cursor: pointer; } .cardi{ background: #121212; overflow-x: auto; display: flex; flex-wrap: nowrap; } .cardi::-webkit-scrollbar { display: none; } .scroll img{ width:100%; height:100%; border-radius:10px; } .card--content { background: #121212; /*linear-gradient(#ffcccc,#ccffff);*/ width: 80px; height: 80px; margin: 5px; border-radius:10px; border:1px solid #212121; border-radius:10px; flex: 0 0 auto; } .dark-theme{ background: #212121; color: #fff; border:1px solid #212121 !important; } .dark-theme:focus{ background: #212121; color: #fff; outline:0px !important; -webkit-appearance:none; box-shadow: none !important; } /* width */ ::-webkit-scrollbar { width: 3px; } /* Track */ ::-webkit-scrollbar-track { background: #000; } /* Handle */ ::-webkit-scrollbar-thumb { background: #555; } /* Handle on hover */ ::-webkit-scrollbar-thumb:hover { background: #F9E9C8; } .bottom { overflow: hidden; background-color: #121212; position: fixed; bottom: 0; width: 100%; } .bottom a { float: left; display: block; color: #f2f2f2; text-align: center; text-decoration: none; font-size: 17px; width:25%; height: 45px; padding-bottom: 10px; padding-top: 5px; }
dating/static/main.css
body{ background:#121212; /*#121212 bg and #212121 for posts*/ color:#fff; } nav{ background:#121212; } .logo{ color: #fff; letter-spacing: 2px; } small{ color: #1e90ff; } ::selection { color: #000; background: #F9E9C8; } ::-moz-selection { /* Code for Firefox */ color: #000; background: #F9E9C8; } h3{ font-weight: 300; } header{ display: flex; flex-direction: row; color:#fff; background:#212121; border-radius:10px; padding:8px; cursor:pointer; } header .profile-thumbnail { width: 55px; height: 55px; border-radius: 50%; } header .profile-name { display: flex; flex-direction:column; margin-left: 10px; } header .follow-btn { display: flex; margin: 0 0 0 auto; } header .follow-btn button { border: 0; border-radius: 3px; padding: 5px; } header h3, header h4 { display: flex; margin: 0; } #inner p { margin-bottom:5px; font-size: 17px; color:#fff; /* #f8f8f2 */ } .post{ background:#212121; border-radius:10px; padding:7px; } .post .profile-thumbnail{ width: 45px; height: 45px; } .post h3{ font-weight: 400; font-size: 1.4rem; } .liked { color: red; } .love{ cursor: pointer; } .cardi{ background: #121212; overflow-x: auto; display: flex; flex-wrap: nowrap; } .cardi::-webkit-scrollbar { display: none; } .scroll img{ width:100%; height:100%; border-radius:10px; } .card--content { background: #121212; /*linear-gradient(#ffcccc,#ccffff);*/ width: 80px; height: 80px; margin: 5px; border-radius:10px; border:1px solid #212121; border-radius:10px; flex: 0 0 auto; } .dark-theme{ background: #212121; color: #fff; border:1px solid #212121 !important; } .dark-theme:focus{ background: #212121; color: #fff; outline:0px !important; -webkit-appearance:none; box-shadow: none !important; } /* width */ ::-webkit-scrollbar { width: 3px; } /* Track */ ::-webkit-scrollbar-track { background: #000; } /* Handle */ ::-webkit-scrollbar-thumb { background: #555; } /* Handle on hover */ ::-webkit-scrollbar-thumb:hover { background: #F9E9C8; } .bottom { overflow: hidden; background-color: #121212; position: fixed; bottom: 0; width: 100%; } .bottom a { float: left; display: block; color: #f2f2f2; text-align: center; text-decoration: none; font-size: 17px; width:25%; height: 45px; padding-bottom: 10px; padding-top: 5px; }
0.301876
0.050588
body{background: #eee url(http://subtlepatterns.com/patterns/sativa.png);} html,body{ position: relative; height: 100%; overflow: auto; } body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; font-size: 1rem; font-weight: 400; line-height: 1.5; color: #888; text-align: left; background-color: #fff; } .animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; } @-webkit-keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); } 100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } } @keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translateY(20px); -ms-transform: translateY(20px); transform: translateY(20px); } 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } } .fadeInUp { -webkit-animation-name: fadeInUp; animation-name: fadeInUp; } .header_navBar a.nav-link{ color: #54c0eb !important; } /*.header_navBar li.active a.nav-link{ color: #324a5e !important; }*/ .navbar { font-family: "Montserrat", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; } .fixed-top { position: fixed; top: 0; right: 0; left: 0; z-index: 1030; } .bg-primary { background-color: #78C2AD !important; } .bs-docs-section { margin-top: 4em; } .bs-docs-section .page-header h1 { padding: 2rem 0; font-size: 3rem; } .table .thead-dark th { background-color: #78C2AD; border-color: rgba(0, 0, 0, 0.05); font-family: "Montserrat", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; } .table.output-table .thead-dark th { background-color: #78C2AD; border-color: rgba(0, 0, 0, 0.05); font-family: "Montserrat", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; } .table .thead-dark th { color: #fff; background-color: #212529; border-color: #32383e; } .table-bordered thead th, .table-bordered thead td { border-bottom-width: 2px; } .table thead th { vertical-align: bottom; border-bottom: 2px solid rgba(0, 0, 0, 0.05); } .table-bordered th, .table-bordered td { border: 1px solid rgba(0, 0, 0, 0.05); } .table th, .table td { padding: 0.75rem; vertical-align: top; border-top: 1px solid rgba(0, 0, 0, 0.05); } th { text-align: inherit; } .table-striped tbody tr:nth-of-type(odd) { background-color: rgba(0, 0, 0, 0.05); } .table-bordered th, .table-bordered td { border: 1px solid rgba(0, 0, 0, 0.05); } .table th, .table td { padding: 0.75rem; vertical-align: top; border-top: 1px solid rgba(0, 0, 0, 0.05); } .table-info, .table-info > th, .table-info > td { background-color: #6CC3D5; } .table-success, .table-info, .table-warning, .table-danger { color: #fff; } .table-info, .table-info > th, .table-info > td { background-color: #6CC3D5; } .table-success, .table-success > th, .table-success > td { background-color: #56CC9D; } .table-danger, .table-danger > th, .table-danger > td { background-color: #FF7851; } .table-warning, .table-warning > th, .table-warning > td { background-color: #FFCE67; } .table-active, .table-active > th, .table-active > td { background-color: rgba(0, 0, 0, 0.075); } legend { font-family: "Montserrat", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; } legend { display: block; width: 100%; max-width: 100%; padding: 0; margin-bottom: .5rem; font-size: 1.5rem; line-height: inherit; color: inherit; white-space: normal; } .list-unstyled { padding-left: 0; list-style: none; } ol, ul, dl { margin-top: 0; margin-bottom: 1rem; } #footer li { float: left; margin-right: 1.5em; margin-bottom: 1.5em; } @media (min-width: 992px) .float-lg-right { float: right !important; } a, area, button, [role="button"], input:not([type="range"]), label, select, summary, textarea { -ms-touch-action: manipulation; touch-action: manipulation; } a { color: #78C2AD; text-decoration: none; background-color: transparent; -webkit-text-decoration-skip: objects; } #footer p { clear: left; margin-bottom: 0; } bootstrap.css:156 p { margin-top: 0; margin-bottom: 1rem; }
css/style.css
body{background: #eee url(http://subtlepatterns.com/patterns/sativa.png);} html,body{ position: relative; height: 100%; overflow: auto; } body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; font-size: 1rem; font-weight: 400; line-height: 1.5; color: #888; text-align: left; background-color: #fff; } .animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; } @-webkit-keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); } 100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } } @keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translateY(20px); -ms-transform: translateY(20px); transform: translateY(20px); } 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } } .fadeInUp { -webkit-animation-name: fadeInUp; animation-name: fadeInUp; } .header_navBar a.nav-link{ color: #54c0eb !important; } /*.header_navBar li.active a.nav-link{ color: #324a5e !important; }*/ .navbar { font-family: "Montserrat", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; } .fixed-top { position: fixed; top: 0; right: 0; left: 0; z-index: 1030; } .bg-primary { background-color: #78C2AD !important; } .bs-docs-section { margin-top: 4em; } .bs-docs-section .page-header h1 { padding: 2rem 0; font-size: 3rem; } .table .thead-dark th { background-color: #78C2AD; border-color: rgba(0, 0, 0, 0.05); font-family: "Montserrat", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; } .table.output-table .thead-dark th { background-color: #78C2AD; border-color: rgba(0, 0, 0, 0.05); font-family: "Montserrat", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; } .table .thead-dark th { color: #fff; background-color: #212529; border-color: #32383e; } .table-bordered thead th, .table-bordered thead td { border-bottom-width: 2px; } .table thead th { vertical-align: bottom; border-bottom: 2px solid rgba(0, 0, 0, 0.05); } .table-bordered th, .table-bordered td { border: 1px solid rgba(0, 0, 0, 0.05); } .table th, .table td { padding: 0.75rem; vertical-align: top; border-top: 1px solid rgba(0, 0, 0, 0.05); } th { text-align: inherit; } .table-striped tbody tr:nth-of-type(odd) { background-color: rgba(0, 0, 0, 0.05); } .table-bordered th, .table-bordered td { border: 1px solid rgba(0, 0, 0, 0.05); } .table th, .table td { padding: 0.75rem; vertical-align: top; border-top: 1px solid rgba(0, 0, 0, 0.05); } .table-info, .table-info > th, .table-info > td { background-color: #6CC3D5; } .table-success, .table-info, .table-warning, .table-danger { color: #fff; } .table-info, .table-info > th, .table-info > td { background-color: #6CC3D5; } .table-success, .table-success > th, .table-success > td { background-color: #56CC9D; } .table-danger, .table-danger > th, .table-danger > td { background-color: #FF7851; } .table-warning, .table-warning > th, .table-warning > td { background-color: #FFCE67; } .table-active, .table-active > th, .table-active > td { background-color: rgba(0, 0, 0, 0.075); } legend { font-family: "Montserrat", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; } legend { display: block; width: 100%; max-width: 100%; padding: 0; margin-bottom: .5rem; font-size: 1.5rem; line-height: inherit; color: inherit; white-space: normal; } .list-unstyled { padding-left: 0; list-style: none; } ol, ul, dl { margin-top: 0; margin-bottom: 1rem; } #footer li { float: left; margin-right: 1.5em; margin-bottom: 1.5em; } @media (min-width: 992px) .float-lg-right { float: right !important; } a, area, button, [role="button"], input:not([type="range"]), label, select, summary, textarea { -ms-touch-action: manipulation; touch-action: manipulation; } a { color: #78C2AD; text-decoration: none; background-color: transparent; -webkit-text-decoration-skip: objects; } #footer p { clear: left; margin-bottom: 0; } bootstrap.css:156 p { margin-top: 0; margin-bottom: 1rem; }
0.545528
0.114072
:root{ --teal: #36747d; --light: white; --dark: #212529; } /*This hides all scrollbars on the page(I dont want them in chat)*/ ::-webkit-scrollbar { display: none; } *:focus { outline: none; background-color: rgba(253, 253, 253, 0.74); } ::placeholder { color: rgba(0, 0, 0, 0.527); } /*Styling for navbar*/ .navbar { background-color: var(--teal); color: var(--light); z-index: 5; } #welcomeCard { background-color: var(--teal); color: var(--light) } #profileName { background-color: var(--teal); color: var(--light) } /*the height of the footer needs to be "100 - (.geobody height vh)" so there is no gaps */ .footer { position: fixed; left: 0; bottom: 0; width: 100%; background-color: var(--teal); color: var(--teal); height: 10vh; z-index: 2; } body{ font-family:'Concert One', cursive; overflow-y: scroll; height: 100%; width: 100%; margin-bottom: 50px; } ul { margin: 0; padding: 0; list-style-type: none; } h1{ margin-left: 1em; font-size: .5em; } time { font-size: 78%; color: var(--dark); } p { overflow: hidden; margin: 10px 10px 0 0; color: var(--dark); font-size: 13px; font-weight: 500; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } hr { border: 0; margin: 0 0 10px; text-align: center; } hr:after { content: '...'; font-size: 38px; letter-spacing: 8px; font-weight: bold; } .message-entry-own .avatar { left: 90%; } .welcome-message-text { display: flex; flex-direction: column; justify-content: center; align-items: center; font-size: .9em; color: var(--dark); } .welcome-message-text .user-name { color: var(--dark); margin-right: 10px; } /*This hides the googlemap card showing where you are located*/ .gm-iv-address{ display:none !important; filter: invert(0); } /*this is the div of the googlemaps display(it needs this to fill the parent div)*/ .geopic{ height: 90vh; width: 100%; } /*This is the parent div of the googlemaps display(adjust this to change size of the display img)*/ .geobody { height:100%; width: 100vw; } /*This is the main div for the entire chat body*/ .chatbody { position: absolute; top: 27%; right: 10%; background-color: #36747d; z-index: 10; min-width: 340px; max-width: 340px; padding: 20px; width: 20vw; border-radius: 5% 5% 5% 5%; outline: silver; color: var(--light); box-shadow: 10px 10px rgba(0,0,0,.15); box-shadow: rgba(0, 0, 0, 0.349) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.377) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.322) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px; } /*this is the color of YOUR user name in chat*/ .message-entry-own .user-name { color: var(--dark); } /*this aligns YOUR chat messages to the right side of the chat box*/ .message-entry-own .message-body { position: relative; font-size: .75em; text-align: right; font-size: .75em; margin: 12px; padding: 12px; background-color: #86b3b9; margin-left: 40%; border-radius: .4em; box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; } .message-entry-own .message-body:after { content: ''; position: absolute; right: 8px; top: 50%; width: 0; height: 0; border: 34px solid transparent; border-left-color: #86b3b9; border-right: 0; border-bottom: 0; margin-top: -10px; margin-right: -26px; z-index: 0; } .message-body{ position: relative; font-size: .75em; text-align: right; font-size: .75em; margin: 12px; padding: 12px; background-color: #b2c3c5; margin-right: 40%; border-radius: .4em; box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; } .message-body::after{ content: ''; position: absolute; right: 161px; top: 50%; width: 0; height: 0; border: 34px solid transparent; border-left-color: #b2c3c5; border-right: 0; border-bottom: 0; margin-top: -10px; margin-right: -26px; z-index: 0; transform: rotate(134deg); } /*avatar stuff*/ .avatar { width: 25px; height: 25px; border-radius: 100%; margin-top: 2%; float: left; border: #9bafc4 solid 2px; z-index: 100; } .message-entry-own .avatar { margin-right: 0px; margin-left: 10px; float: right; position: relative; left: -5px; top: -4px; } .message-entry .avatar { margin-right: 10px; margin-left: 17px; position: relative; left: -5px; top: -4px; } .welcome-message-text .avatar { margin-right: 10px; } .message-input .avatar { display: none; } .message-entry-own { max-width: initial; flex-direction: row-reverse; } /*This is user name of OTHER people in chat */ .user-name { color: var(--teal); font-weight: bold; } /*feed is the actual container div for the injected li chat messages */ .feed { background-image: url(./pics/chat1.PNG); border-radius: 5px; height:34vh; overflow: scroll; border: #295a63 solid 2.5px; margin-bottom: 5%; box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset; } .feedback i { color: var(--dark); } .feedback { position: absolute; top: -25px; left: 25px; color: rgba(0, 0, 0, 0.5); font-style: italic; font-size: 16px; background-color: var(--light); } .welcome-message-text .user-name { color: var(--dark); margin-right: 10px; } .welcome-message-text { color: rgb(13, 61, 51); border-radius: 3px; background: white; width: 200px; margin-left: 45px; padding: 3px; border: rgb(223, 220, 220) solid 2px; box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; } .message-input-field { position: relative; padding: 12px 12px 12px 12px; color: rgba(8, 2, 2, 0.856); width: 100%; bottom: 0; font-weight: 500; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; border-radius: 4px; box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px; border: #36747d solid 2px; } /*This is the styling for the movebutton*/ #mydivheader { height: 3em; width: 100%; padding: 10px; border-radius: 13%; cursor: move; z-index: 112; margin: 0px; padding: 0px; } .Correct { margin-left:4.2em; font: bold 20px arial, sans-serif; background-color: #565656; color: rgba(0, 0, 0, 0.418); text-shadow: 1px 1px 2px rgba(255,255,255,0.5); -webkit-background-clip: text; -moz-background-clip: text; background-clip: text; } .Correct2 { margin-left:4.2em; font: bold 20px arial, sans-serif; background-color: gold; color: #fff; text-shadow:0 0 7px rgb(247, 242, 1),0 0 10px #fff,0 0 21px rgb(237, 248, 76),0 0 42px rgb(238, 255, 0),0 0 82px rgb(238, 255, 0),0 0 92px rgb(255, 251, 0),0 0 102px rgb(238, 255, 0),0 0 151px rgb(217, 255, 0); -webkit-background-clip: text; -moz-background-clip: text; background-clip: text; } .score { position: fixed; bottom: 0; width: 20%; background-color: var(--dark); color: goldenrod; text-align: center; min-height: 50px; max-height: 50px; display: grid; align-items: center; right: 45%; max-width: 300px; min-width: 250px; border-radius: 50px 50px 0 0 ; border: solid var(--light) 1px; border-bottom: none; box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px; } .scorename { color: var(--dark); margin-right: 10px; } #correctAnswer { right: -30px; top: -24px; position: relative; display: none; } .bi-arrows-move::before { content: "\f14e"; color: rgb(71, 70, 70); font-size: x-large; background-color: #15181b; border-radius: 50%; border: #212529 solid 2.9px; box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px; }
public/style.css
:root{ --teal: #36747d; --light: white; --dark: #212529; } /*This hides all scrollbars on the page(I dont want them in chat)*/ ::-webkit-scrollbar { display: none; } *:focus { outline: none; background-color: rgba(253, 253, 253, 0.74); } ::placeholder { color: rgba(0, 0, 0, 0.527); } /*Styling for navbar*/ .navbar { background-color: var(--teal); color: var(--light); z-index: 5; } #welcomeCard { background-color: var(--teal); color: var(--light) } #profileName { background-color: var(--teal); color: var(--light) } /*the height of the footer needs to be "100 - (.geobody height vh)" so there is no gaps */ .footer { position: fixed; left: 0; bottom: 0; width: 100%; background-color: var(--teal); color: var(--teal); height: 10vh; z-index: 2; } body{ font-family:'Concert One', cursive; overflow-y: scroll; height: 100%; width: 100%; margin-bottom: 50px; } ul { margin: 0; padding: 0; list-style-type: none; } h1{ margin-left: 1em; font-size: .5em; } time { font-size: 78%; color: var(--dark); } p { overflow: hidden; margin: 10px 10px 0 0; color: var(--dark); font-size: 13px; font-weight: 500; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } hr { border: 0; margin: 0 0 10px; text-align: center; } hr:after { content: '...'; font-size: 38px; letter-spacing: 8px; font-weight: bold; } .message-entry-own .avatar { left: 90%; } .welcome-message-text { display: flex; flex-direction: column; justify-content: center; align-items: center; font-size: .9em; color: var(--dark); } .welcome-message-text .user-name { color: var(--dark); margin-right: 10px; } /*This hides the googlemap card showing where you are located*/ .gm-iv-address{ display:none !important; filter: invert(0); } /*this is the div of the googlemaps display(it needs this to fill the parent div)*/ .geopic{ height: 90vh; width: 100%; } /*This is the parent div of the googlemaps display(adjust this to change size of the display img)*/ .geobody { height:100%; width: 100vw; } /*This is the main div for the entire chat body*/ .chatbody { position: absolute; top: 27%; right: 10%; background-color: #36747d; z-index: 10; min-width: 340px; max-width: 340px; padding: 20px; width: 20vw; border-radius: 5% 5% 5% 5%; outline: silver; color: var(--light); box-shadow: 10px 10px rgba(0,0,0,.15); box-shadow: rgba(0, 0, 0, 0.349) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.377) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.322) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px; } /*this is the color of YOUR user name in chat*/ .message-entry-own .user-name { color: var(--dark); } /*this aligns YOUR chat messages to the right side of the chat box*/ .message-entry-own .message-body { position: relative; font-size: .75em; text-align: right; font-size: .75em; margin: 12px; padding: 12px; background-color: #86b3b9; margin-left: 40%; border-radius: .4em; box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; } .message-entry-own .message-body:after { content: ''; position: absolute; right: 8px; top: 50%; width: 0; height: 0; border: 34px solid transparent; border-left-color: #86b3b9; border-right: 0; border-bottom: 0; margin-top: -10px; margin-right: -26px; z-index: 0; } .message-body{ position: relative; font-size: .75em; text-align: right; font-size: .75em; margin: 12px; padding: 12px; background-color: #b2c3c5; margin-right: 40%; border-radius: .4em; box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; } .message-body::after{ content: ''; position: absolute; right: 161px; top: 50%; width: 0; height: 0; border: 34px solid transparent; border-left-color: #b2c3c5; border-right: 0; border-bottom: 0; margin-top: -10px; margin-right: -26px; z-index: 0; transform: rotate(134deg); } /*avatar stuff*/ .avatar { width: 25px; height: 25px; border-radius: 100%; margin-top: 2%; float: left; border: #9bafc4 solid 2px; z-index: 100; } .message-entry-own .avatar { margin-right: 0px; margin-left: 10px; float: right; position: relative; left: -5px; top: -4px; } .message-entry .avatar { margin-right: 10px; margin-left: 17px; position: relative; left: -5px; top: -4px; } .welcome-message-text .avatar { margin-right: 10px; } .message-input .avatar { display: none; } .message-entry-own { max-width: initial; flex-direction: row-reverse; } /*This is user name of OTHER people in chat */ .user-name { color: var(--teal); font-weight: bold; } /*feed is the actual container div for the injected li chat messages */ .feed { background-image: url(./pics/chat1.PNG); border-radius: 5px; height:34vh; overflow: scroll; border: #295a63 solid 2.5px; margin-bottom: 5%; box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset; } .feedback i { color: var(--dark); } .feedback { position: absolute; top: -25px; left: 25px; color: rgba(0, 0, 0, 0.5); font-style: italic; font-size: 16px; background-color: var(--light); } .welcome-message-text .user-name { color: var(--dark); margin-right: 10px; } .welcome-message-text { color: rgb(13, 61, 51); border-radius: 3px; background: white; width: 200px; margin-left: 45px; padding: 3px; border: rgb(223, 220, 220) solid 2px; box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; } .message-input-field { position: relative; padding: 12px 12px 12px 12px; color: rgba(8, 2, 2, 0.856); width: 100%; bottom: 0; font-weight: 500; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; border-radius: 4px; box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px; border: #36747d solid 2px; } /*This is the styling for the movebutton*/ #mydivheader { height: 3em; width: 100%; padding: 10px; border-radius: 13%; cursor: move; z-index: 112; margin: 0px; padding: 0px; } .Correct { margin-left:4.2em; font: bold 20px arial, sans-serif; background-color: #565656; color: rgba(0, 0, 0, 0.418); text-shadow: 1px 1px 2px rgba(255,255,255,0.5); -webkit-background-clip: text; -moz-background-clip: text; background-clip: text; } .Correct2 { margin-left:4.2em; font: bold 20px arial, sans-serif; background-color: gold; color: #fff; text-shadow:0 0 7px rgb(247, 242, 1),0 0 10px #fff,0 0 21px rgb(237, 248, 76),0 0 42px rgb(238, 255, 0),0 0 82px rgb(238, 255, 0),0 0 92px rgb(255, 251, 0),0 0 102px rgb(238, 255, 0),0 0 151px rgb(217, 255, 0); -webkit-background-clip: text; -moz-background-clip: text; background-clip: text; } .score { position: fixed; bottom: 0; width: 20%; background-color: var(--dark); color: goldenrod; text-align: center; min-height: 50px; max-height: 50px; display: grid; align-items: center; right: 45%; max-width: 300px; min-width: 250px; border-radius: 50px 50px 0 0 ; border: solid var(--light) 1px; border-bottom: none; box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px; } .scorename { color: var(--dark); margin-right: 10px; } #correctAnswer { right: -30px; top: -24px; position: relative; display: none; } .bi-arrows-move::before { content: "\f14e"; color: rgb(71, 70, 70); font-size: x-large; background-color: #15181b; border-radius: 50%; border: #212529 solid 2.9px; box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px; }
0.247714
0.117092
.hs-form-field { margin-bottom: 1.4rem; } /* Labels */ form label { display: block; font-size: 0.875rem; margin-bottom: 0.35rem; } /* Help text */ form legend { font-size: 0.875rem; } /* Inputs */ form input[type=text], form input[type=email], form input[type=password], form input[type=tel], form input[type=number], form input[type=file], form select, form textarea { display: inline-block; font-size: 0.875rem; padding: 0.7rem; width: 100%; } form fieldset { max-width: 100% !important; } /* Inputs - checkbox/radio */ form .inputs-list { margin: 0; padding: 0; list-style: none; } form .inputs-list > li { display: block; margin: 0.7rem 0; } form .inputs-list input, form .inputs-list span { vertical-align: middle; } form input[type=checkbox], form input[type=radio] { cursor: pointer; margin-right: 0.35rem; } /* Inputs - date picker */ .hs-dateinput { position: relative; } .hs-dateinput:before { content:'\01F4C5'; position: absolute; right: 10%; top: 50%; transform: translateY(-50%); } .fn-date-picker .pika-table thead th { color: #FFF; } .fn-date-picker td.is-selected .pika-button { border-radius: 0; box-shadow: none; } .fn-date-picker td .pika-button:hover, .fn-date-picker td .pika-button:focus { border-radius: 0 !important; color: #FFF; } /* Inputs - file picker */ form input[type=file] { background-color: transparent; border: initial; padding: initial; } /* Headings and text */ form .hs-richtext, form .hs-richtext p { font-size: 0.875rem; margin: 0 0 1.4rem; } form .hs-richtext img { max-width: 100% !important; } /* GDPR */ .legal-consent-container .hs-form-booleancheckbox-display > span, .legal-consent-container .hs-form-booleancheckbox-display > span p { margin-left: 1rem !important; } /* Validation */ .hs-form-required { color: #EF6B51; } .hs-input.invalid.error { border-color: #EF6B51; } .hs-error-msg { color: #EF6B51; margin-top: 0.35rem; } /* Submit button */ form input[type=submit], form .hs-button { cursor: pointer; display: inline-block; text-align: center; transition: all 0.15s linear; white-space: normal; } /* Captcha */ .grecaptcha-badge { margin: 0 auto; } /* CUSTOM */ /* * HUBSPOT FORM */ .hbspt-form label { text-transform: uppercase; font-weight: 600; color: #fff; } .hbspt-form { max-width: 80%; } .hbspt-form .hs-input { width: 100%; border: 1px solid blue; border-radius: 0; padding-left: 20px; padding-top: 14px; padding-bottom: 10px; background-color: rgba(0, 0, 0, 0); } .hbspt-form .hs-input:active { border-bottom: 3px solid #00b878; } .inputs-list { list-style: none; } .inputs-list label { font-weight: 300 !important; } input:focus, textarea:focus, select:focus { outline-offset: -2px; } textarea:focus, input:focus { outline: rgba(20, 106, 151, .4) auto 5px; } input, textarea, select, button { text-rendering: auto; color: initial; letter-spacing: normal; word-spacing: normal; text-transform: none; text-indent: 0px; text-shadow: none; display: inline-block; text-align: start; margin: 0em; font: 400 16px system-ui; padding: 5px; } input, select, textarea { color: #424242 !important; font-family: sans-serif; /* text-transform: uppercase; */ } .hbspt-form .hs-form-field { position: relative; padding-left: 20px; } .hbspt-form .hs-form-field:before { left: -3px; } .hs-error-msgs { padding-top: 5px; padding-left: 0; color: rgba(20, 106, 151, 1.00) !important; } .hs-error-msgs label:before { content: ""; position: relative; display: inline-block; top: 4px; left: -3px; width: 20px; height: 20px; background-size: cover; } .submitted-message { border: 1px solid rgba(20, 106, 151, .4); border-radius: 5px; text-align: center; padding-top: 35px; padding-bottom: 40px; padding-left: 20px; padding-right: 20px; font-size: 20px; font-weight: 600; color: rgba(20, 106, 151, 1.00); background-size: cover; background-repeat: no-repeat; background-position: left center; } ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ color: #424242 !important; opacity: 1; /* Firefox */ font-size: 18px; font-family: sans-serif; } :-ms-input-placeholder { /* Internet Explorer 10-11 */ color: #424242 !important; font-size: 25px; font-weight: 600; } ::-ms-input-placeholder { /* Microsoft Edge */ color: #424242 !important; font-size: 25px; font-weight: 600; } .hs-form-required { display: none; } .hs-form-checkbox-display { display: flex; align-items: flex-start; } .hs-form-checkbox-display span { display: block; } .hs-form-checkbox-display input { width: 15px !important; margin-right: 10px; margin-top: 5px !important; } .hs-submit input { border: 1px solid #fff !important; border-radius: 0; font-size: 20px; background-color: rgba(0,0,0,0); display: block; width: 200px; text-align: center; } .hbspt-form .hs-form-field { padding-left: 0; } .hs_subject_choose_from_ { margin-top: 30px; } .hs-button.primary.large { color: #fff !important; background-color: rgba(20, 106, 151, 1.00) !important; } .hs-input { background-color: rgba(235, 237, 237, 1.00) !important; }
src/css/elements/_forms.css
.hs-form-field { margin-bottom: 1.4rem; } /* Labels */ form label { display: block; font-size: 0.875rem; margin-bottom: 0.35rem; } /* Help text */ form legend { font-size: 0.875rem; } /* Inputs */ form input[type=text], form input[type=email], form input[type=password], form input[type=tel], form input[type=number], form input[type=file], form select, form textarea { display: inline-block; font-size: 0.875rem; padding: 0.7rem; width: 100%; } form fieldset { max-width: 100% !important; } /* Inputs - checkbox/radio */ form .inputs-list { margin: 0; padding: 0; list-style: none; } form .inputs-list > li { display: block; margin: 0.7rem 0; } form .inputs-list input, form .inputs-list span { vertical-align: middle; } form input[type=checkbox], form input[type=radio] { cursor: pointer; margin-right: 0.35rem; } /* Inputs - date picker */ .hs-dateinput { position: relative; } .hs-dateinput:before { content:'\01F4C5'; position: absolute; right: 10%; top: 50%; transform: translateY(-50%); } .fn-date-picker .pika-table thead th { color: #FFF; } .fn-date-picker td.is-selected .pika-button { border-radius: 0; box-shadow: none; } .fn-date-picker td .pika-button:hover, .fn-date-picker td .pika-button:focus { border-radius: 0 !important; color: #FFF; } /* Inputs - file picker */ form input[type=file] { background-color: transparent; border: initial; padding: initial; } /* Headings and text */ form .hs-richtext, form .hs-richtext p { font-size: 0.875rem; margin: 0 0 1.4rem; } form .hs-richtext img { max-width: 100% !important; } /* GDPR */ .legal-consent-container .hs-form-booleancheckbox-display > span, .legal-consent-container .hs-form-booleancheckbox-display > span p { margin-left: 1rem !important; } /* Validation */ .hs-form-required { color: #EF6B51; } .hs-input.invalid.error { border-color: #EF6B51; } .hs-error-msg { color: #EF6B51; margin-top: 0.35rem; } /* Submit button */ form input[type=submit], form .hs-button { cursor: pointer; display: inline-block; text-align: center; transition: all 0.15s linear; white-space: normal; } /* Captcha */ .grecaptcha-badge { margin: 0 auto; } /* CUSTOM */ /* * HUBSPOT FORM */ .hbspt-form label { text-transform: uppercase; font-weight: 600; color: #fff; } .hbspt-form { max-width: 80%; } .hbspt-form .hs-input { width: 100%; border: 1px solid blue; border-radius: 0; padding-left: 20px; padding-top: 14px; padding-bottom: 10px; background-color: rgba(0, 0, 0, 0); } .hbspt-form .hs-input:active { border-bottom: 3px solid #00b878; } .inputs-list { list-style: none; } .inputs-list label { font-weight: 300 !important; } input:focus, textarea:focus, select:focus { outline-offset: -2px; } textarea:focus, input:focus { outline: rgba(20, 106, 151, .4) auto 5px; } input, textarea, select, button { text-rendering: auto; color: initial; letter-spacing: normal; word-spacing: normal; text-transform: none; text-indent: 0px; text-shadow: none; display: inline-block; text-align: start; margin: 0em; font: 400 16px system-ui; padding: 5px; } input, select, textarea { color: #424242 !important; font-family: sans-serif; /* text-transform: uppercase; */ } .hbspt-form .hs-form-field { position: relative; padding-left: 20px; } .hbspt-form .hs-form-field:before { left: -3px; } .hs-error-msgs { padding-top: 5px; padding-left: 0; color: rgba(20, 106, 151, 1.00) !important; } .hs-error-msgs label:before { content: ""; position: relative; display: inline-block; top: 4px; left: -3px; width: 20px; height: 20px; background-size: cover; } .submitted-message { border: 1px solid rgba(20, 106, 151, .4); border-radius: 5px; text-align: center; padding-top: 35px; padding-bottom: 40px; padding-left: 20px; padding-right: 20px; font-size: 20px; font-weight: 600; color: rgba(20, 106, 151, 1.00); background-size: cover; background-repeat: no-repeat; background-position: left center; } ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ color: #424242 !important; opacity: 1; /* Firefox */ font-size: 18px; font-family: sans-serif; } :-ms-input-placeholder { /* Internet Explorer 10-11 */ color: #424242 !important; font-size: 25px; font-weight: 600; } ::-ms-input-placeholder { /* Microsoft Edge */ color: #424242 !important; font-size: 25px; font-weight: 600; } .hs-form-required { display: none; } .hs-form-checkbox-display { display: flex; align-items: flex-start; } .hs-form-checkbox-display span { display: block; } .hs-form-checkbox-display input { width: 15px !important; margin-right: 10px; margin-top: 5px !important; } .hs-submit input { border: 1px solid #fff !important; border-radius: 0; font-size: 20px; background-color: rgba(0,0,0,0); display: block; width: 200px; text-align: center; } .hbspt-form .hs-form-field { padding-left: 0; } .hs_subject_choose_from_ { margin-top: 30px; } .hs-button.primary.large { color: #fff !important; background-color: rgba(20, 106, 151, 1.00) !important; } .hs-input { background-color: rgba(235, 237, 237, 1.00) !important; }
0.36727
0.055285
@media (max-width: 1300px) { .outside-arrow-simple .owl-buttons .owl-next {right:-10px;} .outside-arrow-simple .owl-buttons .owl-prev {left:-10px;} .outside-arrow .owl-buttons .owl-prev{left: 0;} .outside-arrow .owl-buttons .owl-next{right: 0;} } @media (max-width: 1199px) { /* blog*/ .blog-style2 figure {padding: 70px 40px 0;} /* section */ .md-center-col{ float:none !important; margin-left:auto !important; margin-right:auto !important} /* border */ .md-no-border { border:none !important} /* margin */ .md-margin-one-half{margin:0.5% !important} .md-margin-one{margin:1% !important} .md-margin-two{margin:1.5% !important} .md-margin-three{margin:2% !important} .md-margin-four{margin:2.5% !important} .md-margin-five{margin:3% !important} .md-margin-six{margin:3.5% !important} .md-margin-seven{margin:4% !important} .md-margin-eight {margin:4.5% !important} .md-margin-nine {margin:5% !important} .md-margin-ten{ margin:5.5% !important} .md-margin-eleven{ margin:6% !important} .md-margin-twelve{ margin:6.5% !important} .md-margin-thirteen{ margin:7% !important} .md-margin-fourteen{ margin:7.5% !important} .md-margin-fifteen{ margin:8% !important} .md-margin-sixteen{ margin:8.5% !important} .md-margin-seventeen{ margin:9% !important} .md-margin-eighteen{ margin:9.5% !important} .md-margin-nineteen{ margin:10% !important} .md-margin-twenty{ margin:10.5% !important} .md-margin-twenty-one{ margin:11% !important} .md-margin-twenty-two{ margin:11.5% !important} .md-margin-twenty-three{ margin:12% !important} .md-margin-twenty-four{ margin:12.5% !important} .md-margin-twenty-five{ margin:13% !important} .md-margin-twenty-six{ margin:13.4% !important} .md-margin-twenty-seven{ margin:14% !important} .md-margin-twenty-eight{ margin:14.5% !important} .md-margin-twenty-nine{ margin:15% !important} .md-margin-thirty{ margin:15.5% !important} .md-margin-thirty-one{margin:16% !important} .md-margin-thirty-two{margin:16.5% !important} .md-margin-thirty-three{margin:17% !important} .md-margin-thirty-four{margin:17.5% !important} .md-margin-thirty-five{margin:18% !important} .md-no-margin{ margin:0 !important} .md-no-margin-lr{ margin-left: 0 !important; margin-right: 0 !important} .md-no-margin-tb{ margin-top: 0 !important; margin-bottom: 0 !important} .md-no-margin-top{ margin-top:0 !important} .md-no-margin-bottom{ margin-bottom:0 !important} .md-no-margin-left{ margin-left:0 !important} .md-no-margin-right{ margin-right:0 !important} .md-margin-lr-auto {margin-left:auto !important; margin-right:auto !important} /* margin-bottom */ .md-margin-one-half-bottom{margin-bottom: 0.5% !important} .md-margin-one-bottom{margin-bottom:1% !important} .md-margin-two-bottom{margin-bottom:1.5% !important} .md-margin-three-bottom{margin-bottom:2% !important} .md-margin-four-bottom{margin-bottom:2.5% !important} .md-margin-five-bottom{margin-bottom:3% !important} .md-margin-six-bottom{margin-bottom:3.5% !important} .md-margin-seven-bottom{margin-bottom:4% !important} .md-margin-eight-bottom {margin-bottom:4.5% !important} .md-margin-nine-bottom{margin-bottom:5% !important} .md-margin-ten-bottom{margin-bottom:5.5% !important} .md-margin-eleven-bottom{margin-bottom:6% !important} .md-margin-twelve-bottom{margin-bottom:6.5% !important} .md-margin-thirteen-bottom{margin-bottom:7% !important} .md-margin-fourteen-bottom{margin-bottom:7.5% !important} .md-margin-fifteen-bottom{margin-bottom:8% !important} .md-margin-sixteen-bottom{margin-bottom:8.5% !important} .md-margin-seventeen-bottom{margin-bottom:9% !important} .md-margin-eighteen-bottom{margin-bottom:9.5% !important} .md-margin-nineteen-bottom{margin-bottom:10% !important} .md-margin-twenty-bottom{margin-bottom:10.5% !important} .md-margin-twenty-one-bottom{margin-bottom:11% !important} .md-margin-twenty-two-bottom{margin-bottom:11.5% !important} .md-margin-twenty-three-bottom{margin-bottom:12% !important} .md-margin-twenty-four-bottom{margin-bottom:12.5% !important} .md-margin-twenty-five-bottom{margin-bottom:13% !important} .md-margin-twenty-six-bottom{margin-bottom:13.5% !important} .md-margin-twenty-seven-bottom{margin-bottom:14% !important} .md-margin-twenty-eight-bottom{margin-bottom:14.5% !important} .md-margin-twenty-nine-bottom{margin-bottom:15% !important} .md-margin-thirty-bottom{margin-bottom:15.5% !important} .md-margin-thirty-one-bottom{margin-bottom:16% !important} .md-margin-thirty-two-bottom{margin-bottom:16.5% !important} .md-margin-thirty-three-bottom{margin-bottom:17% !important} .md-margin-thirty-four-bottom{margin-bottom:17.5% !important} .md-margin-thirty-five-bottom{margin-bottom:18% !important} .md-margin-bottom-10px{ margin-bottom:10px !important} /* margin-top */ .md-margin-one-half-top{margin-top: 0.5% !important} .md-margin-one-top{margin-top:1% !important} .md-margin-two-top{margin-top:1.5% !important} .md-margin-three-top{margin-top:2% !important} .md-margin-four-top{margin-top:2.5% !important} .md-margin-five-top{margin-top:3% !important} .md-margin-six-top{margin-top:3.5% !important} .md-margin-seven-top{margin-top:4% !important} .md-margin-eight-top {margin-top:4.5% !important} .md-margin-nine-top{margin-top:5% !important} .md-margin-ten-top{margin-top:5.5% !important} .md-margin-eleven-top{margin-top:6% !important} .md-margin-twelve-top{margin-top:6.5% !important} .md-margin-thirteen-top{margin-top:7% !important} .md-margin-fourteen-top{margin-top:7.5% !important} .md-margin-fifteen-top{margin-top:8% !important} .md-margin-sixteen-top{margin-top:8.5% !important} .md-margin-seventeen-top{margin-top:9% !important} .md-margin-eighteen-top{margin-top:9.5% !important} .md-margin-nineteen-top{margin-top:10% !important} .md-margin-twenty-top{margin-top:10.5% !important} .md-margin-twenty-one-top{margin-top:11% !important} .md-margin-twenty-two-top{margin-top:11.5% !important} .md-margin-twenty-three-top{margin-top:12% !important} .md-margin-twenty-four-top{margin-top:12.5% !important} .md-margin-twenty-five-top{margin-top:13% !important} .md-margin-twenty-six-top{margin-top:13.5% !important} .md-margin-twenty-seven-top{margin-top:14% !important} .md-margin-twenty-eight-top{margin-top:14.5% !important} .md-margin-twenty-nine-top{margin-top:15% !important} .md-margin-thirty-top{margin-top:15.5% !important} .md-margin-thirty-one-top{margin-top:16% !important} .md-margin-thirty-two-top{margin-top:16.5% !important} .md-margin-thirty-three-top{margin-top:17% !important} .md-margin-thirty-four-top{margin-top:17.5% !important} .md-margin-thirty-five-top{margin-top:18% !important} .md-margin-top-10px{ margin-top:10px !important} /* margin left */ .md-margin-one-half-left {margin-left:0.5% !important} .md-margin-one-left {margin-left:1% !important} .md-margin-two-left {margin-left:1.5% !important} .md-margin-three-left {margin-left:2% !important} .md-margin-four-left {margin-left:2.5% !important} .md-margin-five-left {margin-left:3% !important} .md-margin-six-left {margin-left:3.5% !important} .md-margin-seven-left {margin-left:4% !important} .md-margin-eight-left {margin-left:4.5% !important} .md-margin-nine-left {margin-left:5% !important} .md-margin-ten-left {margin-left:5.5% !important} .md-margin-eleven-left {margin-left:6% !important} .md-margin-twelve-left {margin-left:6.5% !important} .md-margin-thirteen-left {margin-left:7% !important} .md-margin-fourteen-left {margin-left:7.5% !important} .md-margin-fifteen-left {margin-left:8% !important} .md-margin-sixteen-left {margin-left:8.5% !important} .md-margin-seventeen-left{margin-left:9% !important} .md-margin-eighteen-left {margin-left:9.5% !important} .md-margin-nineteen-left {margin-left:10% !important} .md-margin-twenty-left{margin-left:10.5% !important} .md-margin-twenty-one-left{margin-left:11% !important} .md-margin-twenty-two-left{margin-left:11.5% !important} .md-margin-twenty-three-left{margin-left:12% !important} .md-margin-twenty-four-left{margin-left:12.5% !important} .md-margin-twenty-five-left{margin-left:13% !important} .md-margin-twenty-six-left{margin-left:13.5% !important} .md-margin-twenty-seven-left{margin-left:14% !important} .md-margin-twenty-eight-left{margin-left:14.5% !important} .md-margin-twenty-nine-left{margin-left:15% !important} /* margin right */ .md-margin-one-half-right {margin-right:0.5% !important} .md-margin-one-right {margin-right:1% !important} .md-margin-two-right {margin-right:1.5% !important} .md-margin-three-right {margin-right:2% !important} .md-margin-four-right {margin-right:2.5% !important} .md-margin-five-right {margin-right:3% !important} .md-margin-six-right {margin-right:3.5% !important} .md-margin-seven-right {margin-right:4% !important} .md-margin-eight-right {margin-right:4.5% !important} .md-margin-nine-right {margin-right:5% !important} .md-margin-ten-right {margin-right:5.5% !important} .md-margin-eleven-right {margin-right:6% !important} .md-margin-twelve-right {margin-right:6.5% !important} .md-margin-thirteen-right {margin-right:7% !important} .md-margin-fourteen-right {margin-right:7.5% !important} .md-margin-fifteen-right {margin-right:8% !important} .md-margin-sixteen-right {margin-right:8.5% !important} .md-margin-seventeen-right{margin-right:9% !important} .md-margin-eighteen-right {margin-right:9.5% !important} .md-margin-nineteen-right {margin-right:10% !important} .md-margin-twenty-right{margin-right:10.5% !important} .md-margin-twenty-one-right{margin-right:11% !important} .md-margin-twenty-two-right{margin-right:11.5% !important} .md-margin-twenty-three-right{margin-right:12% !important} .md-margin-twenty-four-right{margin-right:12.5% !important} .md-margin-twenty-five-right{margin-right:13% !important} .md-margin-twenty-six-right{margin-right:13.5% !important} .md-margin-twenty-seven-right{margin-right:14% !important} .md-margin-twenty-eight-right{margin-right:14.5% !important} .md-margin-twenty-nine-right{margin-right:15% !important} /* padding */ .md-padding-one-half{padding:0.5% !important} .md-padding-one{padding:1% !important} .md-padding-two{padding:1.5% !important} .md-padding-three{padding:2% !important} .md-padding-four{padding:2.5% !important} .md-padding-five{padding:3% !important} .md-padding-six{padding:3.5% !important} .md-padding-seven{padding:4% !important} .md-padding-eight {padding:4.5% !important} .md-padding-nine {padding:5% !important} .md-padding-ten{ padding:5.5% !important} .md-padding-eleven{ padding:6% !important} .md-padding-twelve{ padding:6.5% !important} .md-padding-thirteen{ padding:7% !important} .md-padding-fourteen{ padding:7.5% !important} .md-padding-fifteen{ padding:8% !important} .md-padding-sixteen{ padding:8.5% !important} .md-padding-seventeen{ padding:9% !important} .md-padding-eighteen{ padding:9.5% !important} .md-padding-nineteen{ padding:10% !important} .md-padding-twenty{ padding:10.5% !important} .md-padding-twenty-one{ padding:11% !important} .md-padding-twenty-two{ padding:11.5% !important} .md-padding-twenty-three{ padding:12% !important} .md-padding-twenty-four{ padding:12.5% !important} .md-padding-twenty-five{ padding:13% !important} .md-padding-twenty-six{ padding:13.4% !important} .md-padding-twenty-seven{ padding:14% !important} .md-padding-twenty-eight{ padding:14.5% !important} .md-padding-twenty-nine{ padding:15% !important} .md-padding-thirty{ padding:15.5% !important} .md-padding-thirty-one{padding:16% !important} .md-padding-thirty-two{padding:16.5% !important} .md-padding-thirty-three{padding:17% !important} .md-padding-thirty-four{padding:17.5% !important} .md-padding-thirty-five{padding:18% !important} .md-no-padding{ padding:0 !important} .md-no-padding-lr{ padding-left: 0 !important; padding-right: 0 !important} .md-no-padding-tb{ padding-top: 0 !important; padding-bottom: 0 !important} .md-no-padding-top{ padding-top:0 !important} .md-no-padding-bottom{ padding-bottom:0 !important} .md-no-padding-left{ padding-left:0 !important} .md-no-padding-right{ padding-right:0 !important} .md-no-padding-15{ padding-left: 15px !important; padding-right: 15px !important;} /* padding top */ .md-padding-one-half-top {padding-top:0.5% !important} .md-padding-one-top {padding-top:1% !important} .md-padding-two-top {padding-top:1.5% !important} .md-padding-three-top {padding-top:2% !important} .md-padding-four-top {padding-top:2.5% !important} .md-padding-five-top {padding-top:3% !important} .md-padding-six-top {padding-top:3.5% !important} .md-padding-seven-top {padding-top:4% !important} .md-padding-eight-top {padding-top:4.5% !important} .md-padding-nine-top {padding-top:5% !important} .md-padding-ten-top {padding-top:5.5% !important} .md-padding-eleven-top {padding-top:6% !important} .md-padding-twelve-top {padding-top:6.5% !important} .md-padding-thirteen-top {padding-top:7% !important} .md-padding-fourteen-top {padding-top:7.5% !important} .md-padding-fifteen-top {padding-top:8% !important} .md-padding-sixteen-top {padding-top:8.5% !important} .md-padding-seventeen-top{padding-top:9% !important} .md-padding-eighteen-top {padding-top:9.5% !important} .md-padding-nineteen-top {padding-top:10% !important} .md-padding-twenty-top{padding-top:10.5% !important} .md-padding-twenty-one-top{padding-top:11% !important} .md-padding-twenty-two-top{padding-top:11.5% !important} .md-padding-twenty-three-top{padding-top:12% !important} .md-padding-twenty-four-top{padding-top:12.5% !important} .md-padding-twenty-five-top{padding-top:13% !important} .md-padding-twenty-six-top{padding-top:13.5% !important} .md-padding-twenty-seven-top{padding-top:14% !important} .md-padding-twenty-eight-top{padding-top:14.5% !important} .md-padding-twenty-nine-top{padding-top:15% !important} .md-padding-top-5px{ padding-top:5px !important;} .md-padding-top-10px{ padding-top:10px !important;} .md-padding-top-15px{ padding-top:15px !important;} .md-padding-top-20px{ padding-top:20px !important;} .md-padding-top-25px{ padding-top:25px !important;} .md-padding-top-30px{ padding-top:30px !important;} .md-padding-top-35px{ padding-top:35px !important;} .md-padding-top-40px{ padding-top:40px !important;} .md-padding-top-45px{ padding-top:45px !important;} .md-padding-top-50px{ padding-top:50px !important;} .md-padding-top-55px{ padding-top:55px !important;} .md-padding-top-60px{ padding-top:60px !important;} .md-padding-top-65px{ padding-top:65px !important;} .md-padding-top-70px{ padding-top:70px !important;} .md-padding-top-75px{ padding-top:75px !important;} .md-padding-top-80px{ padding-top:80px !important;} /* padding bottom */ .md-padding-one-half-bottom {padding-bottom:0.5% !important} .md-padding-one-bottom {padding-bottom:1% !important} .md-padding-two-bottom {padding-bottom:1.5% !important} .md-padding-three-bottom {padding-bottom:2% !important} .md-padding-four-bottom {padding-bottom:2.5% !important} .md-padding-five-bottom {padding-bottom:3% !important} .md-padding-six-bottom {padding-bottom:3.5% !important} .md-padding-seven-bottom {padding-bottom:4% !important} .md-padding-eight-bottom {padding-bottom:4.5% !important} .md-padding-nine-bottom {padding-bottom:5% !important} .md-padding-ten-bottom {padding-bottom:5.5% !important} .md-padding-eleven-bottom {padding-bottom:6% !important} .md-padding-twelve-bottom {padding-bottom:6.5% !important} .md-padding-thirteen-bottom {padding-bottom:7% !important} .md-padding-fourteen-bottom {padding-bottom:7.5% !important} .md-padding-fifteen-bottom {padding-bottom:8% !important} .md-padding-sixteen-bottom {padding-bottom:8.5% !important} .md-padding-seventeen-bottom{padding-bottom:9% !important} .md-padding-eighteen-bottom {padding-bottom:9.5% !important} .md-padding-nineteen-bottom {padding-bottom:10% !important} .md-padding-twenty-bottom{padding-bottom:10.5% !important} .md-padding-twenty-one-bottom{padding-bottom:11% !important} .md-padding-twenty-two-bottom{padding-bottom:11.5% !important} .md-padding-twenty-three-bottom{padding-bottom:12% !important} .md-padding-twenty-four-bottom{padding-bottom:12.5% !important} .md-padding-twenty-five-bottom{padding-bottom:13% !important} .md-padding-twenty-six-bottom{padding-bottom:13.5% !important} .md-padding-twenty-seven-bottom{padding-bottom:14% !important} .md-padding-twenty-eight-bottom{padding-bottom:14.5% !important} .md-padding-twenty-nine-bottom{padding-bottom:15% !important} .md-padding-bottom-5px{ padding-bottom:5px !important;} .md-padding-bottom-10px{ padding-bottom:10px !important;} .md-padding-bottom-15px{ padding-bottom:15px !important;} .md-padding-bottom-20px{ padding-bottom:20px !important;} .md-padding-bottom-25px{ padding-bottom:25px !important;} .md-padding-bottom-30px{ padding-bottom:30px !important;} .md-padding-bottom-35px{ padding-bottom:35px !important;} .md-padding-bottom-40px{ padding-bottom:40px !important;} .md-padding-bottom-45px{ padding-bottom:45px !important;} .md-padding-bottom-50px{ padding-bottom:50px !important;} /* padding left */ .md-padding-one-half-left {padding-left:0.5% !important} .md-padding-one-left {padding-left:1% !important} .md-padding-two-left {padding-left:1.5% !important} .md-padding-three-left {padding-left:2% !important} .md-padding-four-left {padding-left:2.5% !important} .md-padding-five-left {padding-left:3% !important} .md-padding-six-left {padding-left:3.5% !important} .md-padding-seven-left {padding-left:4% !important} .md-padding-eight-left {padding-left:4.5% !important} .md-padding-nine-left {padding-left:5% !important} .md-padding-ten-left {padding-left:5.5% !important} .md-padding-eleven-left {padding-left:6% !important} .md-padding-twelve-left {padding-left:6.5% !important} .md-padding-thirteen-left {padding-left:7% !important} .md-padding-fourteen-left {padding-left:7.5% !important} .md-padding-fifteen-left {padding-left:8% !important} .md-padding-sixteen-left {padding-left:8.5% !important} .md-padding-seventeen-left{padding-left:9% !important} .md-padding-eighteen-left {padding-left:9.5% !important} .md-padding-nineteen-left {padding-left:10% !important} .md-padding-twenty-left{padding-left:10.5% !important} .md-padding-twenty-one-left{padding-left:11% !important} .md-padding-twenty-two-left{padding-left:11.5% !important} .md-padding-twenty-three-left{padding-left:12% !important} .md-padding-twenty-four-left{padding-left:12.5% !important} .md-padding-twenty-five-left{padding-left:13% !important} .md-padding-twenty-six-left{padding-left:13.5% !important} .md-padding-twenty-seven-left{padding-left:14% !important} .md-padding-twenty-eight-left{padding-left:14.5% !important} .md-padding-twenty-nine-left{padding-left:15% !important} .md-padding-left-5px{ padding-left:5px !important;} .md-padding-left-10px{ padding-left:10px !important;} .md-padding-left-15px{ padding-left:15px !important;} .md-padding-left-20px{ padding-left:20px !important;} .md-padding-left-25px{ padding-left:25px !important;} .md-padding-left-30px{ padding-left:30px !important;} .md-padding-left-35px{ padding-left:35px !important;} .md-padding-left-40px{ padding-left:40px !important;} .md-padding-left-45px{ padding-left:45px !important;} .md-padding-left-50px{ padding-left:50px !important;} .md-padding-left-55px{ padding-left:55px !important;} .md-padding-left-60px{ padding-left:60px !important;} .md-padding-left-65px{ padding-left:65px !important;} .md-padding-left-70px{ padding-left:70px !important;} .md-padding-left-75px{ padding-left:75px !important;} .md-padding-left-80px{ padding-left:80px !important;} /* padding right */ .md-padding-one-half-right {padding-right:0.5% !important} .md-padding-one-right {padding-right:1% !important} .md-padding-two-right {padding-right:1.5% !important} .md-padding-three-right {padding-right:2% !important} .md-padding-four-right {padding-right:2.5% !important} .md-padding-five-right {padding-right:3% !important} .md-padding-six-right {padding-right:3.5% !important} .md-padding-seven-right {padding-right:4% !important} .md-padding-eight-right {padding-right:4.5% !important} .md-padding-nine-right {padding-right:5% !important} .md-padding-ten-right {padding-right:5.5% !important} .md-padding-eleven-right {padding-right:6% !important} .md-padding-twelve-right {padding-right:6.5% !important} .md-padding-thirteen-right {padding-right:7% !important} .md-padding-fourteen-right {padding-right:7.5% !important} .md-padding-fifteen-right {padding-right:8% !important} .md-padding-sixteen-right {padding-right:8.5% !important} .md-padding-seventeen-right{padding-right:9% !important} .md-padding-eighteen-right {padding-right:9.5% !important} .md-padding-nineteen-right {padding-right:10% !important} .md-padding-twenty-right{padding-right:10.5% !important} .md-padding-twenty-one-right{padding-right:11% !important} .md-padding-twenty-two-right{padding-right:11.5% !important} .md-padding-twenty-three-right{padding-right:12% !important} .md-padding-twenty-four-right{padding-right:12.5% !important} .md-padding-twenty-five-right{padding-right:13% !important} .md-padding-twenty-six-right{padding-right:13.5% !important} .md-padding-twenty-seven-right{padding-right:14% !important} .md-padding-twenty-eight-right{padding-right:14.5% !important} .md-padding-twenty-nine-right{padding-right:15% !important} /* display */ .md-display-block { display: block !important} .md-overflow-hidden{ overflow: hidden !important} .md-display-inline-block { display: inline-block !important} .md-display-inline { display: inline !important} .md-display-none { display: none !important} .md-display-inline-table { display: inline-table;} /* top */ .md-top-minus1 {top: -1px !important} .md-top-minus2 {top: -2px !important} .md-top-minus3 {top: -3px !important} .md-top-minus4 {top: -4px !important} .md-top-minus5 {top: -5px !important} .md-top-minus6 {top: -6px !important} .md-top-minus7 {top: -7px !important} .md-top-minus8 {top: -8px !important} .md-top-minus9 {top: -9px !important} .md-top-minus10 {top: -10px !important} /* width */ .md-width { display: inline-block; position: relative; width: 90%; } .md-width-20 { width:20% !important;} .md-width-25 { width:25% !important;} .md-width-30 { width:30% !important;} .md-width-35 { width:35% !important;} .md-width-40 { width:40% !important;} .md-width-45 { width:45% !important;} .md-width-50 { width:50% !important;} .md-width-55 { width:55% !important;} .md-width-60 { width:60% !important;} .md-width-65 { width:65% !important;} .md-width-70 { width:70% !important;} .md-width-75 { width:75% !important;} .md-width-80 { width:80% !important;} .md-width-85 { width:85% !important;} .md-width-90 { width:90% !important;} .md-width-95 { width:95% !important;} .md-width-100 { width:100% !important;} .md-width-auto { width: auto !important} .md-container-fluid { width: 100% !important;} /* height */ .md-height-100 { height: 100% !important} .md-height-auto { height:auto !important} .md-height-100-px { height: 100px !important;} .md-height-200-px { height: 200px !important;} .md-height-300-px { height: 300px !important;} .md-height-350-px { height: 350px !important;} .md-height-400-px { height: 400px !important;} .md-height-500-px { height: 500px !important;} .md-height-600-px { height: 600px !important;} .md-height-700-px { height: 700px !important;} .md-height-800-px { height: 800px !important;} /* custom */ .md-clear-both{ clear:both} .md-no-transition * { transition-timing-function: none; -moz-transition-timing-function: none; -webkit-transition-timing-function: none; -o-transition-timing-function: none; transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; -o-transition-duration: 0s; } /* text property */ .md-vertical-align-middle { vertical-align: middle !important;} .md-vertical-align-top { vertical-align: top !important;} .md-line-break { display:block !important;} /* z-index */ .md-z-index-1 {z-index:1 !important;} .md-z-index-0 {z-index:0 !important;} .md-z-index-minus2 {z-index:-2 !important;} /* text */ .md-text-center { text-align: center !important} .md-text-left { text-align: left !important} .md-text-right { text-align: right !important} /* different text size */ .md-text-extra-small { font-size:10px !important; line-height:15px!important;} .md-text-small { font-size:11px !important; line-height:15px!important;} .md-text-medium{ font-size:14px !important; line-height:25px !important;} .md-text-large { font-size: 15px !important; line-height: 20px !important; } .md-text-extra-large { font-size: 18px !important; line-height: 25px !important; } .md-title-small{ font-size:18px !important; line-height:25px !important;} .md-title-medium{ font-size:24px !important; line-height:28px !important;} .md-title-large{ font-size:28px !important; line-height:34px !important;} .md-title-extra-large{ font-size:35px !important; line-height:40px !important;} .md-title-extra-large-2{ font-size:40px !important; line-height:48px !important;} .md-title-extra-large-3{ font-size:50px !important; line-height:50px !important;} .md-title-extra-large-4{ font-size:70px !important; line-height:50px !important;} .md-title-extra-large-5{ font-size:80px !important; line-height:50px !important;} .md-title-big { font-size:80px !important; line-height:90px !important;} .md-title-big2 { font-size: 125px !important; line-height:125px !important;} .md-title-big3 { font-size: 150px !important; line-height:150px !important;} /* line height */ .md-line-height-normal {line-height: normal !important} .md-line-height-0{ line-height: 0px !important;} .md-line-height-10{ line-height: 10px !important;} .md-line-height-15{ line-height: 15px !important;} .md-line-height-18{ line-height: 18px !important;} .md-line-height-20{ line-height: 20px !important;} .md-line-height-22{ line-height: 22px !important;} .md-line-height-24{ line-height: 24px !important;} .md-line-height-26{ line-height: 26px !important;} .md-line-height-30{ line-height: 30px !important;} .md-line-height-34{ line-height: 34px !important;} .md-line-height-40{ line-height: 40px !important;} .md-line-height-45{ line-height: 45px !important;} .md-line-height-48{ line-height: 48px !important;} .md-line-height-50 {line-height: 50px !important;} .md-line-height-55{ line-height: 55px !important;} .md-line-height-60 {line-height: 60px !important;} .md-line-height-65{ line-height: 65px !important;} .md-line-height-70{ line-height: 70px !important;} .md-line-height-75{ line-height: 75px !important;} .md-line-height-80{ line-height: 80px !important;} .md-line-height-85{ line-height: 85px !important;} .md-line-height-90{ line-height: 90px !important;} /* letter spacing */ .md-no-letter-spacing { letter-spacing: 0px !important} .md-letter-spacing-1 { letter-spacing:1px !important} .md-letter-spacing-2 { letter-spacing:2px !important} .md-letter-spacing-3 { letter-spacing:3px !important} /* font weight */ .md-font-weight-100 { font-weight:100 !important} .md-font-weight-400 { font-weight:400 !important} .md-font-weight-600 { font-weight:600 !important} .md-font-weight-700 { font-weight:700 !important} .md-font-weight-800 { font-weight:800 !important} /* icon */ .md-icon-extra-large {font-size:60px !important;} .md-icon-large {font-size:50px !important;} .md-icon-medium { font-size:40px !important; margin-bottom: 15px !important; } .md-icon-extra-small { font-size:25px !important;} .md-icon-small { font-size:18px !important;} /* float */ .md-pull-left { float: left !important} .md-pull-right { float: right !important} .md-float-none { float: none !important} /*header*/ .navbar-header {background: none} .header-style4 .header-bottom li a::before { right: -21px;} .navbar li { margin: 13px 16px;} .navbar .nav-button{margin: 10px 0 8px 10px;} .navbar-toggle{margin:4px 0;} /*slider*/ .slider-style1 .slider-title { font-size: 60px !important; line-height: 70px !important;} .slider-style1 .slider-text { font-size: 18px !important;} /*contact*/ .contact-form-style1 .contact-details .details-box .details-text.last { padding-left: 20px;} /*team*/ .team-style1 .team { height: 435px;} .team-style1 .team-details { bottom: -145px; padding: 25px 0;} /* clients */ .client-logo ul li { width: 15%;} /* subscribe */ .footer-style1 input {width: 280px;} /**/ .tab-style5 .nav-tabs li a {margin: 0 23px;} .tab-style1 .nav-tabs li a {padding: 7px 20px 6px;} .tab-style2 .nav-tabs li {float: left; margin: 0 20px;} .header-style2 li a::before{right:-19px;} /* tab style 2 */ .panel-group * { transition-timing-function: none; -moz-transition-timing-function: none; -webkit-transition-timing-function: none; -o-transition-timing-function: none; transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; -o-transition-duration: 0s; } /* team style 5 */ .team-style5 .team-details {padding:12%;} /* team style 6 */ .team-style6 .team { max-height: 490px; } /* contact style 6 */ .contact-form-style6 .contact-details { padding: 30px 15px;} .tab-style1 ul{height:auto;} h3 {font-size:28px; line-height:33px;} /* Pricing table */ .pricing-box-style1 .pricing-features{padding:30px;} .pricing-box-style4 .pricing-features{padding:30px 30px 0 30px;} .pricing-box-style4 .pricing-box { padding:45px 0;} /* client */ .client-logo-inner img { max-width: 220px; } .clients-section2 .outside-arrow-simple .owl-buttons .owl-prev{left:-50px; background:transparent;} .clients-section2 .outside-arrow-simple .owl-buttons .owl-next{right:-50px; background:transparent;} /* call to action1 */ .offer-box-right li{ margin: 0 0 15px !important;} /* header style 5 */ .header-style5 .social { float: right; margin: 12px 0 9px 18px;} .md-no-owl-buttons .owl-buttons { display: none;} /* footer-7 & footer-15 */ footer ul.links-inline li:first-child a { margin-left: 0; } } @media (max-width: 1050px) { /* agency */ .header-style8 .navbar { padding: 20px;} .header-style8 .shrink-transparent-header.shrink { padding: 11px 15px;} .tab-style6 .nav-tabs-light li a {margin: 0 25px 0 0;} .clients-section2 .outside-arrow-simple .owl-buttons .owl-prev{left:0px;} .clients-section2 .outside-arrow-simple .owl-buttons .owl-next{right:0px;} .small-screen {height: 350px;} .one-second-screen {height: 400px;} .one-third-screen {height: 500px;} .one-fourth-screen {height: 600px;} .one-fifth-screen {height: 700px;} .one-sixth-screen {height: 800px;} } @media (max-width: 991px) { /* margin */ .sm-margin-one-half{margin:0.5% !important} .sm-margin-one{margin:1% !important} .sm-margin-two{margin:1.5% !important} .sm-margin-three{margin:2% !important} .sm-margin-four{margin:2.5% !important} .sm-margin-five{margin:3% !important} .sm-margin-six{margin:3.5% !important} .sm-margin-seven{margin:4% !important} .sm-margin-eight {margin:4.5% !important} .sm-margin-nine {margin:5% !important} .sm-margin-ten{ margin:5.5% !important} .sm-margin-eleven{ margin:6% !important} .sm-margin-twelve{ margin:6.5% !important} .sm-margin-thirteen{ margin:7% !important} .sm-margin-fourteen{ margin:7.5% !important} .sm-margin-fifteen{ margin:8% !important} .sm-margin-sixteen{ margin:8.5% !important} .sm-margin-seventeen{ margin:9% !important} .sm-margin-eighteen{ margin:9.5% !important} .sm-margin-nineteen{ margin:10% !important} .sm-margin-twenty{ margin:10.5% !important} .sm-margin-twenty-one{ margin:11% !important} .sm-margin-twenty-two{ margin:11.5% !important} .sm-margin-twenty-three{ margin:12% !important} .sm-margin-twenty-four{ margin:12.5% !important} .sm-margin-twenty-five{ margin:13% !important} .sm-margin-twenty-six{ margin:13.4% !important} .sm-margin-twenty-seven{ margin:14% !important} .sm-margin-twenty-eight{ margin:14.5% !important} .sm-margin-twenty-nine{ margin:15% !important} .sm-margin-thirty{ margin:15.5% !important} .sm-margin-thirty-one{margin:16% !important} .sm-margin-thirty-two{margin:16.5% !important} .sm-margin-thirty-three{margin:17% !important} .sm-margin-thirty-four{margin:17.5% !important} .sm-margin-thirty-five{margin:18% !important} .sm-no-margin{ margin:0 !important} .sm-no-margin-lr{ margin-left: 0 !important; margin-right: 0 !important} .sm-no-margin-tb{ margin-top: 0 !important; margin-bottom: 0 !important} .sm-no-margin-top{ margin-top:0 !important} .sm-no-margin-bottom{ margin-bottom:0 !important} .sm-no-margin-left{ margin-left:0 !important} .sm-no-margin-right{ margin-right:0 !important} .sm-margin-lr-auto {margin-left:auto !important; margin-right:auto !important} /* margin-bottom */ .sm-margin-one-half-bottom{margin-bottom: 0.5% !important} .sm-margin-one-bottom{margin-bottom:1% !important} .sm-margin-two-bottom{margin-bottom:1.5% !important} .sm-margin-three-bottom{margin-bottom:2% !important} .sm-margin-four-bottom{margin-bottom:2.5% !important} .sm-margin-five-bottom{margin-bottom:3% !important} .sm-margin-six-bottom{margin-bottom:3.5% !important} .sm-margin-seven-bottom{margin-bottom:4% !important} .sm-margin-eight-bottom {margin-bottom:4.5% !important} .sm-margin-nine-bottom{margin-bottom:5% !important} .sm-margin-ten-bottom{margin-bottom:5.5% !important} .sm-margin-eleven-bottom{margin-bottom:6% !important} .sm-margin-twelve-bottom{margin-bottom:6.5% !important} .sm-margin-thirteen-bottom{margin-bottom:7% !important} .sm-margin-fourteen-bottom{margin-bottom:7.5% !important} .sm-margin-fifteen-bottom{margin-bottom:8% !important} .sm-margin-sixteen-bottom{margin-bottom:8.5% !important} .sm-margin-seventeen-bottom{margin-bottom:9% !important} .sm-margin-eighteen-bottom{margin-bottom:9.5% !important} .sm-margin-nineteen-bottom{margin-bottom:10% !important} .sm-margin-twenty-bottom{margin-bottom:10.5% !important} .sm-margin-twenty-one-bottom{margin-bottom:11% !important} .sm-margin-twenty-two-bottom{margin-bottom:11.5% !important} .sm-margin-twenty-three-bottom{margin-bottom:12% !important} .sm-margin-twenty-four-bottom{margin-bottom:12.5% !important} .sm-margin-twenty-five-bottom{margin-bottom:13% !important} .sm-margin-twenty-six-bottom{margin-bottom:13.5% !important} .sm-margin-twenty-seven-bottom{margin-bottom:14% !important} .sm-margin-twenty-eight-bottom{margin-bottom:14.5% !important} .sm-margin-twenty-nine-bottom{margin-bottom:15% !important} .sm-margin-thirty-bottom{margin-bottom:15.5% !important} .sm-margin-thirty-one-bottom{margin-bottom:16% !important} .sm-margin-thirty-two-bottom{margin-bottom:16.5% !important} .sm-margin-thirty-three-bottom{margin-bottom:17% !important} .sm-margin-thirty-four-bottom{margin-bottom:17.5% !important} .sm-margin-thirty-five-bottom{margin-bottom:18% !important} .sm-margin-bottom-10px{ margin-bottom:10px !important} .sm-margin-bottom-20px{ margin-bottom:20px !important} /* margin-top */ .sm-margin-one-half-top{margin-top: 0.5% !important} .sm-margin-one-top{margin-top:1% !important} .sm-margin-two-top{margin-top:1.5% !important} .sm-margin-three-top{margin-top:2% !important} .sm-margin-four-top{margin-top:2.5% !important} .sm-margin-five-top{margin-top:3% !important} .sm-margin-six-top{margin-top:3.5% !important} .sm-margin-seven-top{margin-top:4% !important} .sm-margin-eight-top {margin-top:4.5% !important} .sm-margin-nine-top{margin-top:5% !important} .sm-margin-ten-top{margin-top:5.5% !important} .sm-margin-eleven-top{margin-top:6% !important} .sm-margin-twelve-top{margin-top:6.5% !important} .sm-margin-thirteen-top{margin-top:7% !important} .sm-margin-fourteen-top{margin-top:7.5% !important} .sm-margin-fifteen-top{margin-top:8% !important} .sm-margin-sixteen-top{margin-top:8.5% !important} .sm-margin-seventeen-top{margin-top:9% !important} .sm-margin-eighteen-top{margin-top:9.5% !important} .sm-margin-nineteen-top{margin-top:10% !important} .sm-margin-twenty-top{margin-top:10.5% !important} .sm-margin-twenty-one-top{margin-top:11% !important} .sm-margin-twenty-two-top{margin-top:11.5% !important} .sm-margin-twenty-three-top{margin-top:12% !important} .sm-margin-twenty-four-top{margin-top:12.5% !important} .sm-margin-twenty-five-top{margin-top:13% !important} .sm-margin-twenty-six-top{margin-top:13.5% !important} .sm-margin-twenty-seven-top{margin-top:14% !important} .sm-margin-twenty-eight-top{margin-top:14.5% !important} .sm-margin-twenty-nine-top{margin-top:15% !important} .sm-margin-thirty-top{margin-top:15.5% !important} .sm-margin-thirty-one-top{margin-top:16% !important} .sm-margin-thirty-two-top{margin-top:16.5% !important} .sm-margin-thirty-three-top{margin-top:17% !important} .sm-margin-thirty-four-top{margin-top:17.5% !important} .sm-margin-thirty-five-top{margin-top:18% !important} .sm-margin-top-10px{ margin-top:10px !important} /* margin left */ .sm-margin-one-half-left {margin-left:0.5% !important} .sm-margin-one-left {margin-left:1% !important} .sm-margin-two-left {margin-left:1.5% !important} .sm-margin-three-left {margin-left:2% !important} .sm-margin-four-left {margin-left:2.5% !important} .sm-margin-five-left {margin-left:3% !important} .sm-margin-six-left {margin-left:3.5% !important} .sm-margin-seven-left {margin-left:4% !important} .sm-margin-eight-left {margin-left:4.5% !important} .sm-margin-nine-left {margin-left:5% !important} .sm-margin-ten-left {margin-left:5.5% !important} .sm-margin-eleven-left {margin-left:6% !important} .sm-margin-twelve-left {margin-left:6.5% !important} .sm-margin-thirteen-left {margin-left:7% !important} .sm-margin-fourteen-left {margin-left:7.5% !important} .sm-margin-fifteen-left {margin-left:8% !important} .sm-margin-sixteen-left {margin-left:8.5% !important} .sm-margin-seventeen-left{margin-left:9% !important} .sm-margin-eighteen-left {margin-left:9.5% !important} .sm-margin-nineteen-left {margin-left:10% !important} .sm-margin-twenty-left{margin-left:10.5% !important} .sm-margin-twenty-one-left{margin-left:11% !important} .sm-margin-twenty-two-left{margin-left:11.5% !important} .sm-margin-twenty-three-left{margin-left:12% !important} .sm-margin-twenty-four-left{margin-left:12.5% !important} .sm-margin-twenty-five-left{margin-left:13% !important} .sm-margin-twenty-six-left{margin-left:13.5% !important} .sm-margin-twenty-seven-left{margin-left:14% !important} .sm-margin-twenty-eight-left{margin-left:14.5% !important} .sm-margin-twenty-nine-left{margin-left:15% !important} .sm-margin-left-15px{ margin-left:15px !important} /* margin right */ .sm-margin-one-half-right {margin-right:0.5% !important} .sm-margin-one-right {margin-right:1% !important} .sm-margin-two-right {margin-right:1.5% !important} .sm-margin-three-right {margin-right:2% !important} .sm-margin-four-right {margin-right:2.5% !important} .sm-margin-five-right {margin-right:3% !important} .sm-margin-six-right {margin-right:3.5% !important} .sm-margin-seven-right {margin-right:4% !important} .sm-margin-eight-right {margin-right:4.5% !important} .sm-margin-nine-right {margin-right:5% !important} .sm-margin-ten-right {margin-right:5.5% !important} .sm-margin-eleven-right {margin-right:6% !important} .sm-margin-twelve-right {margin-right:6.5% !important} .sm-margin-thirteen-right {margin-right:7% !important} .sm-margin-fourteen-right {margin-right:7.5% !important} .sm-margin-fifteen-right {margin-right:8% !important} .sm-margin-sixteen-right {margin-right:8.5% !important} .sm-margin-seventeen-right{margin-right:9% !important} .sm-margin-eighteen-right {margin-right:9.5% !important} .sm-margin-nineteen-right {margin-right:10% !important} .sm-margin-twenty-right{margin-right:10.5% !important} .sm-margin-twenty-one-right{margin-right:11% !important} .sm-margin-twenty-two-right{margin-right:11.5% !important} .sm-margin-twenty-three-right{margin-right:12% !important} .sm-margin-twenty-four-right{margin-right:12.5% !important} .sm-margin-twenty-five-right{margin-right:13% !important} .sm-margin-twenty-six-right{margin-right:13.5% !important} .sm-margin-twenty-seven-right{margin-right:14% !important} .sm-margin-twenty-eight-right{margin-right:14.5% !important} .sm-margin-twenty-nine-right{margin-right:15% !important} /* padding */ .sm-padding-one-half{padding:0.5% !important} .sm-padding-one{padding:1% !important} .sm-padding-two{padding:1.5% !important} .sm-padding-three{padding:2% !important} .sm-padding-four{padding:2.5% !important} .sm-padding-five{padding:3% !important} .sm-padding-six{padding:3.5% !important} .sm-padding-seven{padding:4% !important} .sm-padding-eight {padding:4.5% !important} .sm-padding-nine {padding:5% !important} .sm-padding-ten{ padding:5.5% !important} .sm-padding-eleven{ padding:6% !important} .sm-padding-twelve{ padding:6.5% !important} .sm-padding-thirteen{ padding:7% !important} .sm-padding-fourteen{ padding:7.5% !important} .sm-padding-fifteen{ padding:8% !important} .sm-padding-sixteen{ padding:8.5% !important} .sm-padding-seventeen{ padding:9% !important} .sm-padding-eighteen{ padding:9.5% !important} .sm-padding-nineteen{ padding:10% !important} .sm-padding-twenty{ padding:10.5% !important} .sm-padding-twenty-one{ padding:11% !important} .sm-padding-twenty-two{ padding:11.5% !important} .sm-padding-twenty-three{ padding:12% !important} .sm-padding-twenty-four{ padding:12.5% !important} .sm-padding-twenty-five{ padding:13% !important} .sm-padding-twenty-six{ padding:13.4% !important} .sm-padding-twenty-seven{ padding:14% !important} .sm-padding-twenty-eight{ padding:14.5% !important} .sm-padding-twenty-nine{ padding:15% !important} .sm-padding-thirty{ padding:15.5% !important} .sm-padding-thirty-one{padding:16% !important} .sm-padding-thirty-two{padding:16.5% !important} .sm-padding-thirty-three{padding:17% !important} .sm-padding-thirty-four{padding:17.5% !important} .sm-padding-thirty-five{padding:18% !important} .sm-no-padding{ padding:0 !important} .sm-no-padding-lr{ padding-left: 0 !important; padding-right: 0 !important} .sm-no-padding-tb{ padding-top: 0 !important; padding-bottom: 0 !important} .sm-no-padding-top{ padding-top:0 !important} .sm-no-padding-bottom{ padding-bottom:0 !important} .sm-no-padding-left{ padding-left:0 !important} .sm-no-padding-right{ padding-right:0 !important} .sm-no-padding-15{ padding-left: 15px !important; padding-right: 15px !important;} .sm-padding-15{padding: 15px 15px;} .sm-padding-15px-tb { padding-bottom: 15px !important; padding-top: 15px !important;} /* padding top */ .sm-padding-one-half-top {padding-top:0.5% !important} .sm-padding-one-top {padding-top:1% !important} .sm-padding-two-top {padding-top:1.5% !important} .sm-padding-three-top {padding-top:2% !important} .sm-padding-four-top {padding-top:2.5% !important} .sm-padding-five-top {padding-top:3% !important} .sm-padding-six-top {padding-top:3.5% !important} .sm-padding-seven-top {padding-top:4% !important} .sm-padding-eight-top {padding-top:4.5% !important} .sm-padding-nine-top {padding-top:5% !important} .sm-padding-ten-top {padding-top:5.5% !important} .sm-padding-eleven-top {padding-top:6% !important} .sm-padding-twelve-top {padding-top:6.5% !important} .sm-padding-thirteen-top {padding-top:7% !important} .sm-padding-fourteen-top {padding-top:7.5% !important} .sm-padding-fifteen-top {padding-top:8% !important} .sm-padding-sixteen-top {padding-top:8.5% !important} .sm-padding-seventeen-top{padding-top:9% !important} .sm-padding-eighteen-top {padding-top:9.5% !important} .sm-padding-nineteen-top {padding-top:10% !important} .sm-padding-twenty-top{padding-top:10.5% !important} .sm-padding-twenty-one-top{padding-top:11% !important} .sm-padding-twenty-two-top{padding-top:11.5% !important} .sm-padding-twenty-three-top{padding-top:12% !important} .sm-padding-twenty-four-top{padding-top:12.5% !important} .sm-padding-twenty-five-top{padding-top:13% !important} .sm-padding-twenty-six-top{padding-top:13.5% !important} .sm-padding-twenty-seven-top{padding-top:14% !important} .sm-padding-twenty-eight-top{padding-top:14.5% !important} .sm-padding-twenty-nine-top{padding-top:15% !important} .sm-padding-top-5px{ padding-top:5px !important;} .sm-padding-top-10px{ padding-top:10px !important;} .sm-padding-top-15px{ padding-top:15px !important;} .sm-padding-top-20px{ padding-top:20px !important;} .sm-padding-top-25px{ padding-top:25px !important;} .sm-padding-top-30px{ padding-top:30px !important;} .sm-padding-top-35px{ padding-top:35px !important;} .sm-padding-top-40px{ padding-top:40px !important;} .sm-padding-top-45px{ padding-top:45px !important;} .sm-padding-top-50px{ padding-top:50px !important;} .sm-padding-top-55px{ padding-top:55px !important;} .sm-padding-top-60px{ padding-top:60px !important;} .sm-padding-top-65px{ padding-top:65px !important;} .sm-padding-top-70px{ padding-top:70px !important;} .sm-padding-top-75px{ padding-top:75px !important;} .sm-padding-top-80px{ padding-top:80px !important;} /* padding bottom */ .sm-padding-one-half-bottom {padding-bottom:0.5% !important} .sm-padding-one-bottom {padding-bottom:1% !important} .sm-padding-two-bottom {padding-bottom:1.5% !important} .sm-padding-three-bottom {padding-bottom:2% !important} .sm-padding-four-bottom {padding-bottom:2.5% !important} .sm-padding-five-bottom {padding-bottom:3% !important} .sm-padding-six-bottom {padding-bottom:3.5% !important} .sm-padding-seven-bottom {padding-bottom:4% !important} .sm-padding-eight-bottom {padding-bottom:4.5% !important} .sm-padding-nine-bottom {padding-bottom:5% !important} .sm-padding-ten-bottom {padding-bottom:5.5% !important} .sm-padding-eleven-bottom {padding-bottom:6% !important} .sm-padding-twelve-bottom {padding-bottom:6.5% !important} .sm-padding-thirteen-bottom {padding-bottom:7% !important} .sm-padding-fourteen-bottom {padding-bottom:7.5% !important} .sm-padding-fifteen-bottom {padding-bottom:8% !important} .sm-padding-sixteen-bottom {padding-bottom:8.5% !important} .sm-padding-seventeen-bottom{padding-bottom:9% !important} .sm-padding-eighteen-bottom {padding-bottom:9.5% !important} .sm-padding-nineteen-bottom {padding-bottom:10% !important} .sm-padding-twenty-bottom{padding-bottom:10.5% !important} .sm-padding-twenty-one-bottom{padding-bottom:11% !important} .sm-padding-twenty-two-bottom{padding-bottom:11.5% !important} .sm-padding-twenty-three-bottom{padding-bottom:12% !important} .sm-padding-twenty-four-bottom{padding-bottom:12.5% !important} .sm-padding-twenty-five-bottom{padding-bottom:13% !important} .sm-padding-twenty-six-bottom{padding-bottom:13.5% !important} .sm-padding-twenty-seven-bottom{padding-bottom:14% !important} .sm-padding-twenty-eight-bottom{padding-bottom:14.5% !important} .sm-padding-twenty-nine-bottom{padding-bottom:15% !important} .sm-padding-bottom-5px{ padding-bottom:5px !important;} .sm-padding-bottom-10px{ padding-bottom:10px !important;} .sm-padding-bottom-15px{ padding-bottom:15px !important;} .sm-padding-bottom-20px{ padding-bottom:20px !important;} .sm-padding-bottom-25px{ padding-bottom:25px !important;} .sm-padding-bottom-30px{ padding-bottom:30px !important;} .sm-padding-bottom-35px{ padding-bottom:35px !important;} .sm-padding-bottom-40px{ padding-bottom:40px !important;} .sm-padding-bottom-45px{ padding-bottom:45px !important;} .sm-padding-bottom-50px{ padding-bottom:50px !important;} /* padding left */ .sm-padding-one-half-left {padding-left:0.5% !important} .sm-padding-one-left {padding-left:1% !important} .sm-padding-two-left {padding-left:1.5% !important} .sm-padding-three-left {padding-left:2% !important} .sm-padding-four-left {padding-left:2.5% !important} .sm-padding-five-left {padding-left:3% !important} .sm-padding-six-left {padding-left:3.5% !important} .sm-padding-seven-left {padding-left:4% !important} .sm-padding-eight-left {padding-left:4.5% !important} .sm-padding-nine-left {padding-left:5% !important} .sm-padding-ten-left {padding-left:5.5% !important} .sm-padding-eleven-left {padding-left:6% !important} .sm-padding-twelve-left {padding-left:6.5% !important} .sm-padding-thirteen-left {padding-left:7% !important} .sm-padding-fourteen-left {padding-left:7.5% !important} .sm-padding-fifteen-left {padding-left:8% !important} .sm-padding-sixteen-left {padding-left:8.5% !important} .sm-padding-seventeen-left{padding-left:9% !important} .sm-padding-eighteen-left {padding-left:9.5% !important} .sm-padding-nineteen-left {padding-left:10% !important} .sm-padding-twenty-left{padding-left:10.5% !important} .sm-padding-twenty-one-left{padding-left:11% !important} .sm-padding-twenty-two-left{padding-left:11.5% !important} .sm-padding-twenty-three-left{padding-left:12% !important} .sm-padding-twenty-four-left{padding-left:12.5% !important} .sm-padding-twenty-five-left{padding-left:13% !important} .sm-padding-twenty-six-left{padding-left:13.5% !important} .sm-padding-twenty-seven-left{padding-left:14% !important} .sm-padding-twenty-eight-left{padding-left:14.5% !important} .sm-padding-twenty-nine-left{padding-left:15% !important} .sm-padding-left-5px{ padding-left:5px !important;} .sm-padding-left-10px{ padding-left:10px !important;} .sm-padding-left-15px{ padding-left:15px !important;} .sm-padding-left-20px{ padding-left:20px !important;} .sm-padding-left-25px{ padding-left:25px !important;} .sm-padding-left-30px{ padding-left:30px !important;} .sm-padding-left-35px{ padding-left:35px !important;} .sm-padding-left-40px{ padding-left:40px !important;} .sm-padding-left-45px{ padding-left:45px !important;} .sm-padding-left-50px{ padding-left:50px !important;} .sm-padding-left-55px{ padding-left:55px !important;} .sm-padding-left-60px{ padding-left:60px !important;} .sm-padding-left-65px{ padding-left:65px !important;} .sm-padding-left-70px{ padding-left:70px !important;} .sm-padding-left-75px{ padding-left:75px !important;} .sm-padding-left-80px{ padding-left:80px !important;} /* padding right */ .sm-padding-one-half-right {padding-right:0.5% !important} .sm-padding-one-right {padding-right:1% !important} .sm-padding-two-right {padding-right:1.5% !important} .sm-padding-three-right {padding-right:2% !important} .sm-padding-four-right {padding-right:2.5% !important} .sm-padding-five-right {padding-right:3% !important} .sm-padding-six-right {padding-right:3.5% !important} .sm-padding-seven-right {padding-right:4% !important} .sm-padding-eight-right {padding-right:4.5% !important} .sm-padding-nine-right {padding-right:5% !important} .sm-padding-ten-right {padding-right:5.5% !important} .sm-padding-eleven-right {padding-right:6% !important} .sm-padding-twelve-right {padding-right:6.5% !important} .sm-padding-thirteen-right {padding-right:7% !important} .sm-padding-fourteen-right {padding-right:7.5% !important} .sm-padding-fifteen-right {padding-right:8% !important} .sm-padding-sixteen-right {padding-right:8.5% !important} .sm-padding-seventeen-right{padding-right:9% !important} .sm-padding-eighteen-right {padding-right:9.5% !important} .sm-padding-nineteen-right {padding-right:10% !important} .sm-padding-twenty-right{padding-right:10.5% !important} .sm-padding-twenty-one-right{padding-right:11% !important} .sm-padding-twenty-two-right{padding-right:11.5% !important} .sm-padding-twenty-three-right{padding-right:12% !important} .sm-padding-twenty-four-right{padding-right:12.5% !important} .sm-padding-twenty-five-right{padding-right:13% !important} .sm-padding-twenty-six-right{padding-right:13.5% !important} .sm-padding-twenty-seven-right{padding-right:14% !important} .sm-padding-twenty-eight-right{padding-right:14.5% !important} .sm-padding-twenty-nine-right{padding-right:15% !important} /* heading */ h1 { font-size: 40px; line-height: 40px;} /* section-title */ .section-title1 { padding-bottom: 15px;} .sm-section-title1{padding-bottom:15px;} /* border */ .sm-no-border { border:none !important} .sm-border-bottom-medium-dark { border-bottom: 1px solid rgba(0, 0, 0, 0.1);} /* display */ .sm-display-block { display: block !important} .sm-overflow-hidden{ overflow: hidden !important} .sm-display-inline-block { display: inline-block !important} .sm-display-inline { display: inline !important} .sm-display-none { display: none !important} .sm-display-inline-table { display: inline-table;} /* position */ .sm-position-relative{ position: relative !important; z-index: 5 } .sm-position-absolute {position: absolute !important;} .sm-position-inherit {position: inherit !important;} .sm-position-right { right:0 !important; } .sm-position-left { left:0 !important; } .sm-position-top { top:0 !important; } /* color */ .sm-text-white{ color:#FFF !important} .sm-text-black{ color:#000 !important} /* top */ .sm-top-minus0 {top: 0 !important} .sm-top-minus1 {top: -1px !important} .sm-top-minus2 {top: -2px !important} .sm-top-minus3 {top: -3px !important} .sm-top-minus4 {top: -4px !important} .sm-top-minus5 {top: -5px !important} .sm-top-minus6 {top: -6px !important} .sm-top-minus7 {top: -7px !important} .sm-top-minus8 {top: -8px !important} .sm-top-minus9 {top: -9px !important} .sm-top-minus10 {top: -10px !important} .sm-top-3{top: 3px !important;} .sm-top-4{top: 4px !important;} .sm-top-5{top: 5px !important;} /* width */ .sm-width { display: inline-block; position: relative; width: 90%; } .sm-width-20 { width:20% !important;} .sm-width-30 { width:30% !important;} .sm-width-40 { width:40% !important;} .sm-width-50 { width:50% !important;} .sm-width-60 { width:60% !important;} .sm-width-70 { width:70% !important;} .sm-width-80 { width:80% !important;} .sm-width-90 { width:90% !important;} .sm-width-100 { width:100% !important;} .sm-width-20px { width:20px !important;} .sm-width-30px { width:30px !important;} .sm-width-40px { width:40px !important;} .sm-width-50px { width:50px !important;} .sm-width-60px { width:60px !important;} .sm-width-70px { width:70px !important;} .sm-width-80px { width:80px !important;} .sm-width-90px { width:90px !important;} .sm-width-100px { width:100px !important;} .sm-width-120px { width:120px !important;} .sm-width-140px { width:140px !important;} .sm-width-auto { width: auto !important;} .sm-container-fluid { width: 100% !important;} /* height */ .sm-height-100 { height: 100% !important} .sm-height-auto { height:auto !important} .sm-min-height-auto { height: auto !important} .sm-height-100-px { height: 100px !important;} .sm-height-200-px { height: 200px !important;} .sm-height-300-px { height: 300px !important;} .sm-height-350-px { height: 350px !important;} .sm-height-400-px { height: 400px !important;} .sm-height-500-px { height: 500px !important;} .sm-height-600-px { height: 600px !important;} .sm-height-700-px { height: 700px !important;} .sm-height-800-px { height: 800px !important;} /* section height */ .sm-one-second-screen {height: 450px;} .sm-one-third-screen {height: 500px;} .sm-one-fourth-screen {height: 600px;} .sm-one-fifth-screen {height: 650px;} .sm-one-sixth-screen {height: 750px;} /* custom */ .sm-clear-both{ clear:both} .sm-no-transition * { transition-timing-function: none; -moz-transition-timing-function: none; -webkit-transition-timing-function: none; -o-transition-timing-function: none; transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; -o-transition-duration: 0s; } /* text property */ .sm-vertical-align-middle { vertical-align: middle !important;} .sm-vertical-align-top { vertical-align: top !important;} .sm-line-break { display:block !important;} /* z-index */ .sm-z-index-1 {z-index:1 !important;} .sm-z-index-0 {z-index:0 !important;} .sm-z-index-minus2 {z-index:-2 !important;} /* text */ .sm-text-center { text-align: center !important} .sm-text-left { text-align: left !important} .sm-text-right { text-align: right !important} /* different text size */ .sm-text-extra-small { font-size:10px !important; line-height:15px!important;} .sm-text-small { font-size:11px !important; line-height:17px!important;} .sm-text-medium{ font-size:13px !important; line-height:22px !important;} .sm-text-large { font-size:14px !important; line-height:24px !important; } .sm-text-extra-large { font-size: 15px !important; line-height:22px !important; } .sm-title-small { font-size:16px !important; line-height:24px !important;} .sm-title-medium{ font-size:20px !important; line-height:26px !important;} .sm-title-large{ font-size:25px !important; line-height:33px !important;} .sm-title-extra-large{ font-size:30px !important; line-height:38px !important;} .sm-title-extra-large-2{ font-size:38px !important; line-height:40px !important;} .sm-title-extra-large-3{ font-size:38px !important; line-height:40px !important;} .sm-title-extra-large-4{ font-size:60px !important; line-height:68px !important;} .sm-title-extra-large-5{ font-size:70px !important; line-height:75px !important;} .sm-title-big { font-size:70px !important; line-height:77px !important;} .sm-title-big2 { font-size: 110px !important; line-height:115px !important;} .sm-title-big3 { font-size: 130px !important; line-height:130px !important;} .sm-section-title-large { font-size: 35px !important; line-height: 39px !important;} .sm-section-title-medium { font-size:25px !important; line-height: 30px !important;} .sm-section-title-small { font-size: 22px !important; line-height: 24px !important;} /* letter spacing */ .sm-no-letter-spacing { letter-spacing: 0px !important} .sm-letter-spacing-1 { letter-spacing:1px !important} .sm-letter-spacing-2 { letter-spacing:2px !important} .sm-letter-spacing-3 { letter-spacing:3px !important} /* font weight */ .sm-font-weight-100 { font-weight:100 !important} .sm-font-weight-400 { font-weight:400 !important} .sm-font-weight-600 { font-weight:600 !important} .sm-font-weight-700 { font-weight:700 !important} .sm-font-weight-800 { font-weight:800 !important} /* line height */ .sm-line-height-normal {line-height: normal !important} .sm-line-height-0{ line-height: 0px !important;} .sm-line-height-10{ line-height: 10px !important;} .sm-line-height-15{ line-height: 15px !important;} .sm-line-height-18{ line-height: 18px !important;} .sm-line-height-20{ line-height: 20px !important;} .sm-line-height-22{ line-height: 22px !important;} .sm-line-height-24{ line-height: 24px !important;} .sm-line-height-26{ line-height: 26px !important;} .sm-line-height-30{ line-height: 30px !important;} .sm-line-height-34{ line-height: 34px !important;} .sm-line-height-40{ line-height: 40px !important;} .sm-line-height-45{ line-height: 45px !important;} .sm-line-height-48{ line-height: 48px !important;} .sm-line-height-50 {line-height: 50px !important;} .sm-line-height-55{ line-height: 55px !important;} .sm-line-height-60 {line-height: 60px !important;} .sm-line-height-65{ line-height: 65px !important;} .sm-line-height-70{ line-height: 70px !important;} .sm-line-height-75{ line-height: 75px !important;} .sm-line-height-80{ line-height: 80px !important;} .sm-line-height-85{ line-height: 85px !important;} .sm-line-height-90{ line-height: 90px !important;} /* background image */ .parallax-fix { background-attachment: inherit !important} /* icon */ .sm-icon-extra-large {font-size:60px !important;} .sm-icon-large {font-size:50px !important;} .sm-icon-medium { font-size:40px !important; margin-bottom: 15px !important; } .sm-icon-extra-small { font-size:25px !important;} .sm-icon-small { font-size:18px !important;} /* float */ .sm-pull-left { float: left !important} .sm-pull-right { float: right !important} .sm-float-none { float: none !important} /* br */ .sm-br-display-none br { display: none !important} /* header */ .header-style1 li a::before, .header-style2 li a::before { display: none;} .navbar-toggle { background-color: #000; border-radius: 0; margin-right: 0; display: block; cursor: pointer !important;} .navbar-toggle .icon-bar {background: #fff;} .navbar-collapse {box-shadow: none; background:rgba(0,0,0,.90); width: 100%; position: absolute; top: 90px;} .navbar.shrink .navbar-collapse {top:53px;} .header-style8 .navbar.shrink .navbar-collapse {top:64px;} .navbar-collapse.collapse {display: none!important;} .navbar-nav { padding: 25px 10px; } .navbar li { margin: 0 15px; padding: 12px 0 11px; border-bottom: 1px solid rgba(255,255,255,.15);} .navbar li:last-child { border: none;} header .nav-button a.text-black, header .nav-button.active a.text-black, header .nav-button a.text-black:hover, .header-style9 .black-header.navbar li.nav-button a:hover, .header-style9 .black-header.navbar li.nav-button.active a:hover, .dark-header.navbar li.nav-button.active a {color:#000 !important;} .navbar li a:hover, .navbar li a.active, .header-style1 .black-header.navbar li a:hover, .header-style1 .black-header.navbar li a.active, .header-style3 .black-header.navbar li a:hover, .header-style3 .black-header.navbar li a.active, .header-style4 .white-header .header-bottom li a:hover, .header-style4 .white-header .header-bottom li a.active, .header-style5 .black-header.navbar li a:hover, .header-style5 .black-header.navbar li a.active, .header-style9 .black-header.navbar li a:hover, .header-style9 .black-header.navbar li a.active, .shrink-transparent-header-light.shrink.navbar li a:hover, .shrink-transparent-header-light.shrink.navbar li a.active, .dark-header.navbar li.active a, .light-header.navbar li.active > a{ opacity: 1; color: rgba(255,255,255,0.7) !important; border-bottom:1px solid transparent; } .shrink-transparent-header-light.shrink.navbar li a { color: #fff;} .shrink-transparent-header-light.shrink.navbar .nav-button a { border: 2px solid #fff;} .navbar-nav>li {float: none; } .collapse.in{display:block !important;} .navbar-nav {width: 100%;} .navbar .container {width: 100%} .navbar * { transition-timing-function: none; -moz-transition-timing-function: none; -webkit-transition-timing-function: none; -o-transition-timing-function: none; transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; -o-transition-duration: 0s; } .navbar li:last-child { margin-right: 15px;} .navbar .nav-button { margin: 15px 15px;} .navbar li a { color: #fff} .header-style1 .nav-button:last-child { margin: 15px 15px;} .header-style1 .nav-button .join-us {padding: 0 !important;} .header-style3 .logo { text-align: left; border: 0; padding-bottom: 0; margin-bottom: 0;} .header-style3 .navbar li { display: block; float: none; margin: 0 13px; text-align: left;} .header-style4 .navbar-collapse { top: 57px;} .header-style4 .header-bottom { padding: 15px 0; } .header-style4 .header-bottom li a::before { display: none;} .header-style4 .white-header .header-bottom li a { color: #ffffff;} .header-style4 .header-bottom li { margin: 0 15px; } .navbar .nav-button { margin-left: 20px;} .navbar-collapse { top:62px; left: 0;} .navbar .nav-button { margin: 15px 15px;} .header-style5 .social { margin: 10px 30px 0 0;} .header-style6 .one-fourth-screen { height: 500px;} .header-style6 h1 { line-height: 50px;} .header-style7 .header-banner span.date { margin-bottom: 30px;} .header-style7 .header-banner h1 { font-size: 38px !important;} .header-style8 .navbar-collapse { top: 82px; } .header-style8 .one-fourth-screen { height: 550px;} .header-style8 .header-banner .banner-title { font-size: 45px;} .header-style13 .social a { margin: 0 6px; } .header-style14 .social a { margin: 0 6px; } .header-style15 .social a { margin: 0 6px; } .header-margin-top { margin-top: 82px; } .header-margin-top-big { margin-top: 82px; } .header-margin-top-medium { margin-top: 115px; } .header-style9 .navbar-collapse { top:82px;} .header-style9 .navbar.shrink .navbar-collapse { top: 64px; } /* dropdown menu */ .dropdown-menu, .navbar-nav>li>.dropdown-menu { position: inherit; top: 0; min-width: 100%; padding: 0; border-radius: 0; background-color: transparent; margin: 0; border: 0; float: none; display: block; } .navbar li ul > li { border-bottom: 1px solid rgba(255,255,255,0.15); padding: 9px 0 8px; margin: 0 10px; } .navbar li ul > li:last-child { padding-bottom: 0;} .navbar-collapse.in { overflow-y: auto; } .navbar-collapse { background: rgba(0,0,0,.9)} .navbar li a:hover, .navbar li.active > a,.dropdown-menu>li>a:hover, .dropdown-menu>li.active>a, .dropdown-menu>li>a:focus { color: #bbbbbb;} .navbar-nav .open .dropdown-menu>li>a {line-height: 1.42857143;} .navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu>li>a {padding: 0;} /* hero style 3 */ .hero-style3 .one-fourth-screen {height: 500px;} /* hero style 4 */ .hero-style4 .one-third-screen {height: 454px !important;} /* hero style 5 */ .hero-style5 .one-fourth-screen { height: 570px !important;} /* hero style 6 */ .hero-style6 .one-third-screen {height: 570px !important;} /* hero style 13 */ .hero-style13 .one-third-screen {height: 500px !important;} /* hero style 14 */ .hero-style14 .one-fourth-screen {height: 500px !important;} /* hero style 15 */ /* .form-subscribe form { width: 410px;}*/ /* slider */ .slider-style1 .one-fourth-screen { height: 650px;} /* feature */ .feature-style1 .content-box { margin-top: 30px;} /* blog */ .blog-style2 figure {padding: 30px 15px 0;} .blog-style1 .post-details { padding: 20px 15px;} .blog-style1 .post-author { letter-spacing: 0;} /* work */ .grid-style1 .grid figcaption h3 { font-size: 18px;} .grid-style2 .grid figcaption { padding: 30px 15px;} .gutter-wide .grid-gallery ul { margin-left: -20px; } .gutter-wide .grid li { padding: 0 0 20px 20px; } .grid-style4 .grid figure:hover h3 { bottom: 23px; } .grid-style4 .grid h3 { left: 25px;} .work-4col .grid li { width: 50%;} .work-5col .grid li {width: 50%;} /* tab */ .tab-style4 ul { padding: 20px; text-align: center;} .tab-style4 ul li { margin: 0 0 20px;} .tab-style4 li i { width: 100% !important; text-align: center; margin: 0 0 7px 0;} .tab-style4 li::before { top: 23px;} .team-style4 .team-details {height: 52%;} .blog-style3 .post-details { padding: 10px;} .blog-style3 .post-author { font-size: 12px; letter-spacing: 0;} .blog-style3 .post-details a { min-height: 40px; line-height: 20px !important;} .tab-style5 .nav li { margin:0;} .tab-style5 .nav-tabs { margin: 0 0 15px;} .tab-style5 .nav-tabs li a{ margin: 0 10px; font-size: 11px;} .tab-style2 .nav-tabs li { margin: 0 9px;} .tab-style5-content{ min-height: 0;} .tab-style6 .nav-tabs-light li { margin: 0 10px 0 0; } /*contact*/ .contact-form-style1 .contact-details .details-box { margin-bottom: 13px;} .contact-form-style1 .contact-details .details-box .details-text.last { margin-top: 9px; padding-left: 54px;} /* content style 2 */ .content-style2 .date-box { font-size: 15px; padding: 9px 10px 8px; } /*team*/ .team-style1 .team { height: 346px;} .team-style1 .team-details { bottom: -160px;} /* team style 1 */ .team-style6 .team { height: 480px; overflow: hidden; position: relative;} /* team style 4 */ .about-style3 .about-text { padding: 5.5%;} /* team style 6 */ .team-style6 .team { max-height: 385px; } .team-style6 .team:hover .team-details { bottom: 130px; } /* owl-pagination */ .owl-buttons .owl-prev { left: 20px;} .owl-buttons .owl-next { right: 20px;} .sm-show-pagination .owl-pagination{ display: block;} .sm-no-owl-buttons .owl-buttons { display: none;} /* subscribe */ .footer-style1 input {width: 280px; margin-left: 0;} /*social*/ .footer-style1 .social{ margin-top: 30px;} .newsletter span{ display: inline-block;} /* call-to-action4 */ .call-to-action4 .one-fourth-screen { height: 570px !important;} /* call-to-action7 */ .call-to-action7 .one-third-screen { height: 570px !important;} /* call to action1 */ .offer-box-right li{ width: auto;} /* Round Image */ .img-round-250 { height: 170px; width: 170px; } /* Grid box */ .three-column > div:nth-child(3n+1) { clear: none; } .three-column > div:nth-child(2n+1) { clear: both; } .four-column > div:nth-child(4n+1) { clear: none; } .four-column > div:nth-child(2n+1) { clear: both; } .six-column > div:nth-child(6n+1) { clear: none; } .six-column > div:nth-child(2n+1) { clear: both; } .sm-padding-nav-btn, .navbar .nav-button a.sm-padding-nav-btn{padding: 6px 20px !important;} .sm-bg-bitter-sweet{background: #f3605c;} .sm-bg-white{background:#fff !important;} .sm-bg-bitter-sweet:hover{opacity:.6;} .sm-padding-left-15{padding-left:15px !important;} .sm-padding-right-15{padding-right:15px !important;} /* testimonial-style7 */ .testimonial-style7 .testimonial-box { padding: 25px 15px; } /* outside next-prev arrow */ .outside-arrow .owl-buttons .owl-next { font-size: 20px; height: 40px; padding: 8px 0 0 10px; width: 40px; right: 0;} .outside-arrow .owl-buttons .owl-prev { font-size: 20px; height: 40px; padding: 8px 0 0 10px; width: 40px; left: 0;} .btn.btn-extra-large {font-size:14px; padding:12px 24px !important; line-height: 16px;} .tab-style8 .nav-tabs li{margin:0; padding: 0;} .tab-style8 .nav-tabs li a{line-height:38px; padding:0 17px;} .sm-equalize-auto > div{height:auto !important;} h3 {font-size:26px; line-height:31px;} /* Pricing table */ .pricing-box-style1 .pricing-features{padding:22px;} .pricing-box-style4 .pricing-features{padding:22px 22px 0 22px;} .pricing-box-style4 .pricing-box { padding: 30px 0;} .pricing-box-style6 .pricing-box{padding:20px;} .pricing-box-style6 .pricing-title {padding: 25px 20px;} /*equalize display table inherit*/ .equalize.equalize-display-inherit.sm-equalize-auto .display-table-cell-vertical-middle { top: inherit; -webkit-transform: none; -moz-transform: none; -o-transform: none; -ms-transform: none; transform: none; position: inherit;} .equalize.equalize-display-inherit.sm-equalize-auto .display-table-cell-vertical-bottom { display: inherit !important; top: inherit; bottom: inherit; -webkit-transform: none; -moz-transform: none; -o-transform: none; -ms-transform: none; transform: none; position: inherit;} /* header style 13 */ .header-style13 .navbar { padding: 21px 0; } .header-style13 .navbar.shrink-nav.shrink { padding: 16px 0; } /* header style 14 */ .header-style14 .navbar { padding: 21px 0; } .header-style14 .navbar.shrink-nav.shrink { padding: 16px 0; } /* header style 12 */ .header-style12 .navbar { padding: 21px 0; } .header-style12 .navbar.shrink-nav.shrink { padding: 16px 0; } /* header style 7 */ .event-counter .counter-box { height: 120px; width: 120px; padding: 24px 0; margin-right: 20px;} .event-counter .counter-box .number { font-size: 40px; line-height: 45px; } } @media (max-width: 767px) { h3 {font-size:23px; line-height:28px;} /* Heading */ h1{ font-size: 25px !important; line-height: 30px;} /* center col */ .xs-center-col{ float:none !important; margin-left:auto !important; margin-right:auto !important} /* border */ .xs-no-border { border:none !important} .xs-separator-line-thick { height: 4px; margin: 0 auto; width: 30px; margin:7% auto} /* margin */ .xs-margin-one-half{margin:0.5% !important} .xs-margin-one{margin:1% !important} .xs-margin-two{margin:1.5% !important} .xs-margin-three{margin:2% !important} .xs-margin-four{margin:2.5% !important} .xs-margin-five{margin:3% !important} .xs-margin-six{margin:3.5% !important} .xs-margin-seven{margin:4% !important} .xs-margin-eight {margin:4.5% !important} .xs-margin-nine {margin:5% !important} .xs-margin-ten{ margin:5.5% !important} .xs-margin-eleven{ margin:6% !important} .xs-margin-twelve{ margin:6.5% !important} .xs-margin-thirteen{ margin:7% !important} .xs-margin-fourteen{ margin:7.5% !important} .xs-margin-fifteen{ margin:8% !important} .xs-margin-sixteen{ margin:8.5% !important} .xs-margin-seventeen{ margin:9% !important} .xs-margin-eighteen{ margin:9.5% !important} .xs-margin-nineteen{ margin:10% !important} .xs-margin-twenty{ margin:10.5% !important} .xs-margin-twenty-one{ margin:11% !important} .xs-margin-twenty-two{ margin:11.5% !important} .xs-margin-twenty-three{ margin:12% !important} .xs-margin-twenty-four{ margin:12.5% !important} .xs-margin-twenty-five{ margin:13% !important} .xs-margin-twenty-six{ margin:13.4% !important} .xs-margin-twenty-seven{ margin:14% !important} .xs-margin-twenty-eight{ margin:14.5% !important} .xs-margin-twenty-nine{ margin:15% !important} .xs-margin-thirty{ margin:15.5% !important} .xs-margin-thirty-one{margin:16% !important} .xs-margin-thirty-two{margin:16.5% !important} .xs-margin-thirty-three{margin:17% !important} .xs-margin-thirty-four{margin:17.5% !important} .xs-margin-thirty-five{margin:18% !important} .xs-no-margin{ margin:0 !important} .xs-no-margin-lr{ margin-left: 0 !important; margin-right: 0 !important} .xs-no-margin-tb{ margin-top: 0 !important; margin-bottom: 0 !important} .xs-no-margin-top{ margin-top:0 !important} .xs-no-margin-bottom{ margin-bottom:0 !important} .xs-no-margin-left{ margin-left:0 !important} .xs-no-margin-right{ margin-right:0 !important} .xs-margin-lr-auto {margin-left:auto !important; margin-right:auto !important} /* margin-bottom */ .xs-margin-one-half-bottom{margin-bottom: 0.5% !important} .xs-margin-one-bottom{margin-bottom:1% !important} .xs-margin-two-bottom{margin-bottom:1.5% !important} .xs-margin-three-bottom{margin-bottom:2% !important} .xs-margin-four-bottom{margin-bottom:2.5% !important} .xs-margin-five-bottom{margin-bottom:3% !important} .xs-margin-six-bottom{margin-bottom:3.5% !important} .xs-margin-seven-bottom{margin-bottom:4% !important} .xs-margin-eight-bottom {margin-bottom:4.5% !important} .xs-margin-nine-bottom{margin-bottom:5% !important} .xs-margin-ten-bottom{margin-bottom:5.5% !important} .xs-margin-eleven-bottom{margin-bottom:6% !important} .xs-margin-twelve-bottom{margin-bottom:6.5% !important} .xs-margin-thirteen-bottom{margin-bottom:7% !important} .xs-margin-fourteen-bottom{margin-bottom:7.5% !important} .xs-margin-fifteen-bottom{margin-bottom:8% !important} .xs-margin-sixteen-bottom{margin-bottom:8.5% !important} .xs-margin-seventeen-bottom{margin-bottom:9% !important} .xs-margin-eighteen-bottom{margin-bottom:9.5% !important} .xs-margin-nineteen-bottom{margin-bottom:10% !important} .xs-margin-twenty-bottom{margin-bottom:10.5% !important} .xs-margin-twenty-one-bottom{margin-bottom:11% !important} .xs-margin-twenty-two-bottom{margin-bottom:11.5% !important} .xs-margin-twenty-three-bottom{margin-bottom:12% !important} .xs-margin-twenty-four-bottom{margin-bottom:12.5% !important} .xs-margin-twenty-five-bottom{margin-bottom:13% !important} .xs-margin-twenty-six-bottom{margin-bottom:13.5% !important} .xs-margin-twenty-seven-bottom{margin-bottom:14% !important} .xs-margin-twenty-eight-bottom{margin-bottom:14.5% !important} .xs-margin-twenty-nine-bottom{margin-bottom:15% !important} .xs-margin-thirty-bottom{margin-bottom:15.5% !important} .xs-margin-thirty-one-bottom{margin-bottom:16% !important} .xs-margin-thirty-two-bottom{margin-bottom:16.5% !important} .xs-margin-thirty-three-bottom{margin-bottom:17% !important} .xs-margin-thirty-four-bottom{margin-bottom:17.5% !important} .xs-margin-thirty-five-bottom{margin-bottom:18% !important} .xs-margin-bottom-5px{ margin-bottom:5px !important} .xs-margin-bottom-10px{ margin-bottom:10px !important} .xs-margin-bottom-15px{ margin-bottom:15px !important} .xs-margin-bottom-20px{ margin-bottom:20px !important} /* margin-top */ .xs-margin-one-half-top{margin-top: 0.5% !important} .xs-margin-one-top{margin-top:1% !important} .xs-margin-two-top{margin-top:1.5% !important} .xs-margin-three-top{margin-top:2% !important} .xs-margin-four-top{margin-top:2.5% !important} .xs-margin-five-top{margin-top:3% !important} .xs-margin-six-top{margin-top:3.5% !important} .xs-margin-seven-top{margin-top:4% !important} .xs-margin-eight-top {margin-top:4.5% !important} .xs-margin-nine-top{margin-top:5% !important} .xs-margin-ten-top{margin-top:5.5% !important} .xs-margin-eleven-top{margin-top:6% !important} .xs-margin-twelve-top{margin-top:6.5% !important} .xs-margin-thirteen-top{margin-top:7% !important} .xs-margin-fourteen-top{margin-top:7.5% !important} .xs-margin-fifteen-top{margin-top:8% !important} .xs-margin-sixteen-top{margin-top:8.5% !important} .xs-margin-seventeen-top{margin-top:9% !important} .xs-margin-eighteen-top{margin-top:9.5% !important} .xs-margin-nineteen-top{margin-top:10% !important} .xs-margin-twenty-top{margin-top:10.5% !important} .xs-margin-twenty-one-top{margin-top:11% !important} .xs-margin-twenty-two-top{margin-top:11.5% !important} .xs-margin-twenty-three-top{margin-top:12% !important} .xs-margin-twenty-four-top{margin-top:12.5% !important} .xs-margin-twenty-five-top{margin-top:13% !important} .xs-margin-twenty-six-top{margin-top:13.5% !important} .xs-margin-twenty-seven-top{margin-top:14% !important} .xs-margin-twenty-eight-top{margin-top:14.5% !important} .xs-margin-twenty-nine-top{margin-top:15% !important} .xs-margin-thirty-top{margin-top:15.5% !important} .xs-margin-thirty-one-top{margin-top:16% !important} .xs-margin-thirty-two-top{margin-top:16.5% !important} .xs-margin-thirty-three-top{margin-top:17% !important} .xs-margin-thirty-four-top{margin-top:17.5% !important} .xs-margin-thirty-five-top{margin-top:18% !important} .xs-margin-top-10px{ margin-top:10px !important} .xs-margin-top-15px{ margin-top:15px !important} /* margin left */ .xs-margin-one-half-left {margin-left:0.5% !important} .xs-margin-one-left {margin-left:1% !important} .xs-margin-two-left {margin-left:1.5% !important} .xs-margin-three-left {margin-left:2% !important} .xs-margin-four-left {margin-left:2.5% !important} .xs-margin-five-left {margin-left:3% !important} .xs-margin-six-left {margin-left:3.5% !important} .xs-margin-seven-left {margin-left:4% !important} .xs-margin-eight-left {margin-left:4.5% !important} .xs-margin-nine-left {margin-left:5% !important} .xs-margin-ten-left {margin-left:5.5% !important} .xs-margin-eleven-left {margin-left:6% !important} .xs-margin-twelve-left {margin-left:6.5% !important} .xs-margin-thirteen-left {margin-left:7% !important} .xs-margin-fourteen-left {margin-left:7.5% !important} .xs-margin-fifteen-left {margin-left:8% !important} .xs-margin-sixteen-left {margin-left:8.5% !important} .xs-margin-seventeen-left{margin-left:9% !important} .xs-margin-eighteen-left {margin-left:9.5% !important} .xs-margin-nineteen-left {margin-left:10% !important} .xs-margin-twenty-left{margin-left:10.5% !important} .xs-margin-twenty-one-left{margin-left:11% !important} .xs-margin-twenty-two-left{margin-left:11.5% !important} .xs-margin-twenty-three-left{margin-left:12% !important} .xs-margin-twenty-four-left{margin-left:12.5% !important} .xs-margin-twenty-five-left{margin-left:13% !important} .xs-margin-twenty-six-left{margin-left:13.5% !important} .xs-margin-twenty-seven-left{margin-left:14% !important} .xs-margin-twenty-eight-left{margin-left:14.5% !important} .xs-margin-twenty-nine-left{margin-left:15% !important} .xs-margin-left-10px{ margin-left:10px !important} .xs-margin-left-15px{ margin-left:15px !important} /* margin right */ .xs-margin-one-half-right {margin-right:0.5% !important} .xs-margin-one-right {margin-right:1% !important} .xs-margin-two-right {margin-right:1.5% !important} .xs-margin-three-right {margin-right:2% !important} .xs-margin-four-right {margin-right:2.5% !important} .xs-margin-five-right {margin-right:3% !important} .xs-margin-six-right {margin-right:3.5% !important} .xs-margin-seven-right {margin-right:4% !important} .xs-margin-eight-right {margin-right:4.5% !important} .xs-margin-nine-right {margin-right:5% !important} .xs-margin-ten-right {margin-right:5.5% !important} .xs-margin-eleven-right {margin-right:6% !important} .xs-margin-twelve-right {margin-right:6.5% !important} .xs-margin-thirteen-right {margin-right:7% !important} .xs-margin-fourteen-right {margin-right:7.5% !important} .xs-margin-fifteen-right {margin-right:8% !important} .xs-margin-sixteen-right {margin-right:8.5% !important} .xs-margin-seventeen-right{margin-right:9% !important} .xs-margin-eighteen-right {margin-right:9.5% !important} .xs-margin-nineteen-right {margin-right:10% !important} .xs-margin-twenty-right{margin-right:10.5% !important} .xs-margin-twenty-one-right{margin-right:11% !important} .xs-margin-twenty-two-right{margin-right:11.5% !important} .xs-margin-twenty-three-right{margin-right:12% !important} .xs-margin-twenty-four-right{margin-right:12.5% !important} .xs-margin-twenty-five-right{margin-right:13% !important} .xs-margin-twenty-six-right{margin-right:13.5% !important} .xs-margin-twenty-seven-right{margin-right:14% !important} .xs-margin-twenty-eight-right{margin-right:14.5% !important} .xs-margin-twenty-nine-right{margin-right:15% !important} .xs-margin-right-10px{ margin-right:10px !important} .xs-margin-right-15px{ margin-right:15px !important} /* padding */ .xs-padding-one-half{padding:0.5% !important} .xs-padding-one{padding:1% !important} .xs-padding-two{padding:1.5% !important} .xs-padding-three{padding:2% !important} .xs-padding-four{padding:2.5% !important} .xs-padding-five{padding:3% !important} .xs-padding-six{padding:3.5% !important} .xs-padding-seven{padding:4% !important} .xs-padding-eight {padding:4.5% !important} .xs-padding-nine {padding:5% !important} .xs-padding-ten{ padding:5.5% !important} .xs-padding-eleven{ padding:6% !important} .xs-padding-twelve{ padding:6.5% !important} .xs-padding-thirteen{ padding:7% !important} .xs-padding-fourteen{ padding:7.5% !important} .xs-padding-fifteen{ padding:8% !important} .xs-padding-sixteen{ padding:8.5% !important} .xs-padding-seventeen{ padding:9% !important} .xs-padding-eighteen{ padding:9.5% !important} .xs-padding-nineteen{ padding:10% !important} .xs-padding-twenty{ padding:10.5% !important} .xs-padding-twenty-one{ padding:11% !important} .xs-padding-twenty-two{ padding:11.5% !important} .xs-padding-twenty-three{ padding:12% !important} .xs-padding-twenty-four{ padding:12.5% !important} .xs-padding-twenty-five{ padding:13% !important} .xs-padding-twenty-six{ padding:13.4% !important} .xs-padding-twenty-seven{ padding:14% !important} .xs-padding-twenty-eight{ padding:14.5% !important} .xs-padding-twenty-nine{ padding:15% !important} .xs-padding-thirty{ padding:15.5% !important} .xs-padding-thirty-one{padding:16% !important} .xs-padding-thirty-two{padding:16.5% !important} .xs-padding-thirty-three{padding:17% !important} .xs-padding-thirty-four{padding:17.5% !important} .xs-padding-thirty-five{padding:18% !important} /* padding left */ .xs-padding-one-half-left {padding-left:0.5% !important} .xs-padding-one-left {padding-left:1% !important} .xs-padding-two-left {padding-left:1.5% !important} .xs-padding-three-left {padding-left:2% !important} .xs-padding-four-left {padding-left:2.5% !important} .xs-padding-five-left {padding-left:3% !important} .xs-padding-six-left {padding-left:3.5% !important} .xs-padding-seven-left {padding-left:4% !important} .xs-padding-eight-left {padding-left:4.5% !important} .xs-padding-nine-left {padding-left:5% !important} .xs-padding-ten-left {padding-left:5.5% !important} .xs-padding-eleven-left {padding-left:6% !important} .xs-padding-twelve-left {padding-left:6.5% !important} .xs-padding-thirteen-left {padding-left:7% !important} .xs-padding-fourteen-left {padding-left:7.5% !important} .xs-padding-fifteen-left {padding-left:8% !important} .xs-padding-sixteen-left {padding-left:8.5% !important} .xs-padding-seventeen-left{padding-left:9% !important} .xs-padding-eighteen-left {padding-left:9.5% !important} .xs-padding-nineteen-left {padding-left:10% !important} .xs-padding-twenty-left{padding-left:10.5% !important} .xs-padding-twenty-one-left{padding-left:11% !important} .xs-padding-twenty-two-left{padding-left:11.5% !important} .xs-padding-twenty-three-left{padding-left:12% !important} .xs-padding-twenty-four-left{padding-left:12.5% !important} .xs-padding-twenty-five-left{padding-left:13% !important} .xs-padding-twenty-six-left{padding-left:13.5% !important} .xs-padding-twenty-seven-left{padding-left:14% !important} .xs-padding-twenty-eight-left{padding-left:14.5% !important} .xs-padding-twenty-nine-left{padding-left:15% !important} .xs-padding-left-5px{ padding-left:5px !important;} .xs-padding-left-10px{ padding-left:10px !important;} .xs-padding-left-15px{ padding-left:15px !important;} .xs-padding-left-20px{ padding-left:20px !important;} .xs-padding-left-25px{ padding-left:25px !important;} .xs-padding-left-30px{ padding-left:30px !important;} .xs-padding-left-35px{ padding-left:35px !important;} .xs-padding-left-40px{ padding-left:40px !important;} .xs-padding-left-45px{ padding-left:45px !important;} .xs-padding-left-50px{ padding-left:50px !important;} .xs-padding-left-55px{ padding-left:55px !important;} .xs-padding-left-60px{ padding-left:60px !important;} .xs-padding-left-65px{ padding-left:65px !important;} .xs-padding-left-70px{ padding-left:70px !important;} .xs-padding-left-75px{ padding-left:75px !important;} .xs-padding-left-80px{ padding-left:80px !important;} /* padding right */ .xs-padding-one-half-right {padding-right:0.5% !important} .xs-padding-one-right {padding-right:1% !important} .xs-padding-two-right {padding-right:1.5% !important} .xs-padding-three-right {padding-right:2% !important} .xs-padding-four-right {padding-right:2.5% !important} .xs-padding-five-right {padding-right:3% !important} .xs-padding-six-right {padding-right:3.5% !important} .xs-padding-seven-right {padding-right:4% !important} .xs-padding-eight-right {padding-right:4.5% !important} .xs-padding-nine-right {padding-right:5% !important} .xs-padding-ten-right {padding-right:5.5% !important} .xs-padding-eleven-right {padding-right:6% !important} .xs-padding-twelve-right {padding-right:6.5% !important} .xs-padding-thirteen-right {padding-right:7% !important} .xs-padding-fourteen-right {padding-right:7.5% !important} .xs-padding-fifteen-right {padding-right:8% !important} .xs-padding-sixteen-right {padding-right:8.5% !important} .xs-padding-seventeen-right{padding-right:9% !important} .xs-padding-eighteen-right {padding-right:9.5% !important} .xs-padding-nineteen-right {padding-right:10% !important} .xs-padding-twenty-right{padding-right:10.5% !important} .xs-padding-twenty-one-right{padding-right:11% !important} .xs-padding-twenty-two-right{padding-right:11.5% !important} .xs-padding-twenty-three-right{padding-right:12% !important} .xs-padding-twenty-four-right{padding-right:12.5% !important} .xs-padding-twenty-five-right{padding-right:13% !important} .xs-padding-twenty-six-right{padding-right:13.5% !important} .xs-padding-twenty-seven-right{padding-right:14% !important} .xs-padding-twenty-eight-right{padding-right:14.5% !important} .xs-padding-twenty-nine-right{padding-right:15% !important} /* padding top */ .xs-padding-one-half-top {padding-top:0.5% !important} .xs-padding-one-top {padding-top:1% !important} .xs-padding-two-top {padding-top:1.5% !important} .xs-padding-three-top {padding-top:2% !important} .xs-padding-four-top {padding-top:2.5% !important} .xs-padding-five-top {padding-top:3% !important} .xs-padding-six-top {padding-top:3.5% !important} .xs-padding-seven-top {padding-top:4% !important} .xs-padding-eight-top {padding-top:4.5% !important} .xs-padding-nine-top {padding-top:5% !important} .xs-padding-ten-top {padding-top:5.5% !important} .xs-padding-eleven-top {padding-top:6% !important} .xs-padding-twelve-top {padding-top:6.5% !important} .xs-padding-thirteen-top {padding-top:7% !important} .xs-padding-fourteen-top {padding-top:7.5% !important} .xs-padding-fifteen-top {padding-top:8% !important} .xs-padding-sixteen-top {padding-top:8.5% !important} .xs-padding-seventeen-top{padding-top:9% !important} .xs-padding-eighteen-top {padding-top:9.5% !important} .xs-padding-nineteen-top {padding-top:10% !important} .xs-padding-twenty-top{padding-top:10.5% !important} .xs-padding-twenty-one-top{padding-top:11% !important} .xs-padding-twenty-two-top{padding-top:11.5% !important} .xs-padding-twenty-three-top{padding-top:12% !important} .xs-padding-twenty-four-top{padding-top:12.5% !important} .xs-padding-twenty-five-top{padding-top:13% !important} .xs-padding-twenty-six-top{padding-top:13.5% !important} .xs-padding-twenty-seven-top{padding-top:14% !important} .xs-padding-twenty-eight-top{padding-top:14.5% !important} .xs-padding-twenty-nine-top{padding-top:15% !important} .xs-padding-top-5px{ padding-top:5px !important;} .xs-padding-top-10px{ padding-top:10px !important;} .xs-padding-top-15px{ padding-top:15px !important;} .xs-padding-top-20px{ padding-top:20px !important;} .xs-padding-top-25px{ padding-top:25px !important;} .xs-padding-top-30px{ padding-top:30px !important;} .xs-padding-top-35px{ padding-top:35px !important;} .xs-padding-top-40px{ padding-top:40px !important;} .xs-padding-top-45px{ padding-top:45px !important;} .xs-padding-top-50px{ padding-top:50px !important;} .xs-padding-top-55px{ padding-top:55px !important;} .xs-padding-top-60px{ padding-top:60px !important;} .xs-padding-top-65px{ padding-top:65px !important;} .xs-padding-top-70px{ padding-top:70px !important;} .xs-padding-top-75px{ padding-top:75px !important;} .xs-padding-top-80px{ padding-top:80px !important;} /* padding bottom */ .xs-padding-one-half-bottom {padding-bottom:0.5% !important} .xs-padding-one-bottom {padding-bottom:1% !important} .xs-padding-two-bottom {padding-bottom:1.5% !important} .xs-padding-three-bottom {padding-bottom:2% !important} .xs-padding-four-bottom {padding-bottom:2.5% !important} .xs-padding-five-bottom {padding-bottom:3% !important} .xs-padding-six-bottom {padding-bottom:3.5% !important} .xs-padding-seven-bottom {padding-bottom:4% !important} .xs-padding-eight-bottom {padding-bottom:4.5% !important} .xs-padding-nine-bottom {padding-bottom:5% !important} .xs-padding-ten-bottom {padding-bottom:5.5% !important} .xs-padding-eleven-bottom {padding-bottom:6% !important} .xs-padding-twelve-bottom {padding-bottom:6.5% !important} .xs-padding-thirteen-bottom {padding-bottom:7% !important} .xs-padding-fourteen-bottom {padding-bottom:7.5% !important} .xs-padding-fifteen-bottom {padding-bottom:8% !important} .xs-padding-sixteen-bottom {padding-bottom:8.5% !important} .xs-padding-seventeen-bottom{padding-bottom:9% !important} .xs-padding-eighteen-bottom {padding-bottom:9.5% !important} .xs-padding-nineteen-bottom {padding-bottom:10% !important} .xs-padding-twenty-bottom{padding-bottom:10.5% !important} .xs-padding-twenty-one-bottom{padding-bottom:11% !important} .xs-padding-twenty-two-bottom{padding-bottom:11.5% !important} .xs-padding-twenty-three-bottom{padding-bottom:12% !important} .xs-padding-twenty-four-bottom{padding-bottom:12.5% !important} .xs-padding-twenty-five-bottom{padding-bottom:13% !important} .xs-padding-twenty-six-bottom{padding-bottom:13.5% !important} .xs-padding-twenty-seven-bottom{padding-bottom:14% !important} .xs-padding-twenty-eight-bottom{padding-bottom:14.5% !important} .xs-padding-twenty-nine-bottom{padding-bottom:15% !important} .xs-padding-top-5px{ padding-top:5px !important;} .xs-padding-top-10px{ padding-top:10px !important;} .xs-padding-top-15px{ padding-top:15px !important;} .xs-padding-top-20px{ padding-top:20px !important;} .xs-padding-top-25px{ padding-top:25px !important;} .xs-padding-top-30px{ padding-top:30px !important;} .xs-padding-top-35px{ padding-top:35px !important;} .xs-padding-top-40px{ padding-top:40px !important;} .xs-padding-top-45px{ padding-top:45px !important;} .xs-padding-top-50px{ padding-top:50px !important;} .xs-padding-top-60px{ padding-top:60px !important;} .xs-padding-bottom-5px{ padding-bottom:5px !important;} .xs-padding-bottom-10px{ padding-bottom:10px !important;} .xs-padding-bottom-15px{ padding-bottom:15px !important;} .xs-padding-bottom-20px{ padding-bottom:20px !important;} .xs-padding-bottom-25px{ padding-bottom:25px !important;} .xs-padding-bottom-30px{ padding-bottom:30px !important;} .xs-padding-bottom-35px{ padding-bottom:35px !important;} .xs-padding-bottom-40px{ padding-bottom:40px !important;} .xs-padding-bottom-45px{ padding-bottom:45px !important;} .xs-padding-bottom-50px{ padding-bottom:50px !important;} .xs-padding-bottom-60px{ padding-bottom:60px !important;} .xs-padding-20px-tb{padding-top:20px !important; padding-bottom:20px !important;} .xs-padding-30px-tb{padding-top:30px !important; padding-bottom:30px !important;} .xs-padding-40px-tb{padding-top:40px !important; padding-bottom:40px !important;} .xs-padding-50px-tb{padding-top:50px !important; padding-bottom:50px !important;} .xs-padding-60px-tb{padding-top:60px !important; padding-bottom:60px !important;} .xs-padding-70px-tb{padding-top:70px !important; padding-bottom:70px !important;} .xs-padding-30px{padding:30px !important;} /* no padding */ .xs-no-padding{ padding:0 !important} .xs-no-padding-lr{ padding-left: 0 !important; padding-right: 0 !important} .xs-no-padding-tb{ padding-top: 0 !important; padding-bottom: 0 !important} .xs-no-padding-top{ padding-top:0 !important} .xs-no-padding-bottom{ padding-bottom:0 !important} .xs-no-padding-left{ padding-left:0 !important} .xs-no-padding-right{ padding-right:0 !important} .xs-no-padding-15{ padding-left: 15px !important; padding-right: 15px !important;} .xs-no-padding-15-left{ padding-left: 15px !important; } /* display */ .xs-display-block { display: block !important} .xs-overflow-hidden{ overflow: hidden !important} .xs-display-inline-block { display: inline-block !important} .xs-display-inline { display: inline !important} .xs-display-none { display: none !important} .xs-display-inline-table { display: inline-table;} .xs-display-table-cell { display: table-cell !important} /* position */ .xs-position-static{ position: static !important; z-index: 5 } .xs-position-relative{ position: relative !important; z-index: 5 } .xs-position-absolute {position: absolute !important;} .xs-position-right { right:0 !important; } .xs-position-left { left:0 !important; } .xs-position-top { top:0 !important; } .xs-position-fixed {position: fixed !important;} .xs-position-inherit {position: inherit !important;} /* top */ .xs-top-zero0 {top: -1px !important} .xs-top-minus1 {top: -1px !important} .xs-top-minus2 {top: -2px !important} .xs-top-minus3 {top: -3px !important} .xs-top-minus4 {top: -4px !important} .xs-top-minus5 {top: -5px !important} .xs-top-minus6 {top: -6px !important} .xs-top-minus7 {top: -7px !important} .xs-top-minus8 {top: -8px !important} .xs-top-minus9 {top: -9px !important} .xs-top-minus10 {top: -10px !important} /* width */ .xs-width { display: inline-block; position: relative; width: 90%; } .xs-width-20 { width:20% !important;} .xs-width-30 { width:30% !important;} .xs-width-40 { width:40% !important;} .xs-width-45 { width:45% !important;} .xs-width-50 { width:50% !important;} .xs-width-55 { width:55% !important;} .xs-width-60 { width:60% !important;} .xs-width-65 { width:65% !important;} .xs-width-70 { width:70% !important;} .xs-width-75 { width:75% !important;} .xs-width-80 { width:80% !important;} .xs-width-85 { width:85% !important;} .xs-width-90 { width:90% !important;} .xs-width-95 { width:95% !important;} .xs-width-100 { width:100% !important;} .xs-width-auto { width: auto !important} .xs-container-fluid { width: 100% !important;} .xs-width-20px { width:20px !important;} .xs-width-30px { width:30px !important;} .xs-width-40px { width:40px !important;} .xs-width-50px { width:50px !important;} .xs-width-60px { width:60px !important;} .xs-width-70px { width:70px !important;} .xs-width-80px { width:80px !important;} .xs-width-90px { width:90px !important;} .xs-width-100px { width:100px !important;} .xs-width-120px { width:120px !important;} .xs-width-140px { width:140px !important;} /* height */ .xs-height-100 { height: 100% !important} .xs-height-auto { height:auto !important} .xs-height-100-px { height: 100px !important} .xs-height-200-px { height: 200px !important} .xs-height-300-px { height: 300px !important} .xs-height-350-px { height: 350px !important} .xs-height-400-px { height: 400px !important} .xs-height-500-px { height: 500px !important} .xs-height-600-px { height: 600px !important} .xs-min-height-auto { height: auto !important} .xs-clear-both{ clear:both} .xs-vertical-align-middle { vertical-align: middle !important;} .xs-vertical-align-top { vertical-align: top !important;} .xs-line-break { display:block !important;} .xs-z-index-1 {z-index:1 !important;} .xs-z-index-0 {z-index:0 !important;} .xs-z-index-minus2 {z-index:-2 !important;} .xs-no-transition * { transition-timing-function: none; -moz-transition-timing-function: none; -webkit-transition-timing-function: none; -o-transition-timing-function: none; transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; -o-transition-duration: 0s; } /* line height */ .xs-line-height-normal {line-height: normal !important} .xs-line-height-0{ line-height: 0px !important;} .xs-line-height-10{ line-height: 10px !important;} .xs-line-height-15{ line-height: 15px !important;} .xs-line-height-18{ line-height: 18px !important;} .xs-line-height-20{ line-height: 20px !important;} .xs-line-height-22{ line-height: 22px !important;} .xs-line-height-24{ line-height: 24px !important;} .xs-line-height-26{ line-height: 26px !important;} .xs-line-height-30{ line-height: 30px !important;} .xs-line-height-34{ line-height: 34px !important;} .xs-line-height-40{ line-height: 40px !important;} .xs-line-height-45{ line-height: 45px !important;} .xs-line-height-48{ line-height: 48px !important;} .xs-line-height-50 {line-height: 50px !important;} .xs-line-height-55{ line-height: 55px !important;} .xs-line-height-60 {line-height: 60px !important;} .xs-line-height-65{ line-height: 65px !important;} .xs-line-height-70{ line-height: 70px !important;} .xs-line-height-75{ line-height: 75px !important;} .xs-line-height-80{ line-height: 80px !important;} .xs-line-height-85{ line-height: 85px !important;} .xs-line-height-90{ line-height: 90px !important;} /* text */ .xs-text-center { text-align: center !important} .xs-text-left { text-align: left !important} .xs-text-right { text-align: right !important} /* float */ .xs-f-right {float: right !important;} .xs-f-left {float: left !important;} .xs-fl-none {float: none !important;} /* color */ .xs{ color:#FFF !important} .xs-text-black{ color:#000 !important} .xs-text-white {color: #fff !important;} /* background position */ .xs-background-position-center-top { background-position: center top !important;} .xs-background-position-left-center { background-position: left center !important;} .xs-background-position-right-center { background-position: right center !important;} /* different text size */ .xs-text-extra-small { font-size:10px !important; line-height:15px!important;} .xs-text-small { font-size:11px !important; line-height:15px!important;} .xs-text-medium{ font-size:12px !important; line-height:17px !important;} .xs-text-large { font-size: 13px !important; line-height:18px !important; } .xs-text-extra-large { font-size: 14px !important; line-height:22px !important; } .xs-title-small{ font-size:15px !important; line-height:22px !important;} .xs-title-medium{ font-size:18px !important; line-height:24px !important;} .xs-title-large{ font-size:21px !important; line-height:25px !important;} .xs-title-extra-large{ font-size:22px !important; line-height:30px !important;} .xs-title-extra-large-2{ font-size:26px !important; line-height:32px !important;} .xs-title-extra-large-3{ font-size:32px !important; line-height:38px !important;} .xs-title-extra-large-4{ font-size:36px !important; line-height:42px !important;} .xs-title-extra-large-5{ font-size:44px !important; line-height:52px !important;} .xs-title-big { font-size:50px !important; line-height:60px !important;} .xs-title-big2 { font-size:60px !important; line-height:72px !important;} .xs-title-big3 { font-size:70px !important; line-height:80px !important;} .xs-section-title-large { font-size:27px !important; line-height:33px !important;} .xs-section-title-medium { font-size:25px !important; line-height:29px !important;} .xs-section-title-small { font-size: 25px !important; line-height:31px !important;} /* form controls */ .big-input, .big-textarea, .big-select select { padding: 10px 15px !important;} .extra-big-input, .extra-big-textarea, .extra-big-select select {padding-right: 15px !important; padding-left: 15px !important;} .input-group input, .input-group textarea, .input-group select { padding-right: 15px !important; padding-left: 15px !important; padding-top: 15px !important; padding-bottom: 15px !important;} .input-group-btn .btn.btn-large { padding: 10px 25px !important;height: 54px !important;} /* letter spacing */ .xs-no-letter-spacing { letter-spacing: 0px !important} .xs-letter-spacing-1 { letter-spacing:1px !important} .xs-letter-spacing-2 { letter-spacing:2px !important} .xs-letter-spacing-3 { letter-spacing:3px !important} /* font weight */ .xs-font-weight-100 { font-weight:100 !important} .xs-font-weight-400 { font-weight:400 !important} .xs-font-weight-600 { font-weight:600 !important} .xs-font-weight-700 { font-weight:700 !important} .xs-font-weight-800 { font-weight:800 !important} /* icon */ .xs-icon-extra-large {font-size:60px !important;} .xs-icon-large {font-size:50px !important;} .xs-icon-medium { font-size:40px !important; margin-bottom: 15px !important; } .xs-icon-medium-large { font-size:35px !important;} .xs-icon-extra-small { font-size:25px !important;} .xs-icon-small { font-size:18px !important;} /* float */ .xs-pull-left { float: left !important} .xs-pull-right { float: right !important} .xs-float-none { float: none !important} /* br */ .xs-br-display-none br { display: none !important} /* iframe */ iframe {height: auto; width: 100%;} /* alert */ .alert {padding: 15px;} .alert button.close {margin-top: -7px} /* border */ .xs-no-border { border:none !important} .img-border { border: 4px solid #fff; height: calc(100% - 20px); width: calc(100% - 20px); left: 10px; top: 10px; } .xs-border-bottom-medium-dark { border-bottom: 1px solid rgba(0, 0, 0, 0.1);} /* section height */ .xs-one-second-screen {height:400px;} .xs-one-third-screen {height:500px;} .xs-one-fourth-screen {height:600px;} .xs-one-fifth-screen {height:700px;} .xs-one-sixth-screen {height: 800px;} /* header */ /* .navbar.shrink .navbar-collapse {top:61px}*/ .navbar-nav { margin: 0;} .header-style6 .one-fourth-screen{height: 520px;} .header-style6 h1 { font-size: 35px !important;} .header-style7 .one-fourth-screen{height: 650px;} .header-style7 .header-banner, .header-style8 .header-banner{ margin-top: 100px; padding: 0;} .header-style7 .header-banner h1 { font-size: 33px !important;} .header-style8 .one-fourth-screen { height: 450px;} .header-style8 .header-banner .banner-icon { font-size: 60px;} .header-style8 .header-banner .banner-title { font-size: 38px; line-height: 48px !important;} .navbar{padding:11px 0;} .header-style13 .header-bottom {padding:11px 0;} .header-style14 .header-bottom {padding:11px 0;} .header-style4 .header-bottom { padding: 11px 0; } .header-style4 .navbar-collapse { top: 53px;} .header-style8 .navbar-collapse { top: 63px; } .header-style8 .navbar { padding: 11px 15px; } .header-margin-top { margin-top: 64px; } .header-margin-top-big { margin-top: 64px; } .header-margin-top-medium { margin-top: 134px; } .header-style9 .navbar-collapse { top: 64px; } .header-style8 .navbar.shrink .navbar-collapse {top:63px;} /* slider */ .xs-no-owl-buttons .owl-buttons { display: none;} .owl-buttons .owl-prev, .owl-buttons .owl-next { bottom: -45px; top: inherit; font-size: 15px; text-align: center; color: #fff; line-height: 25px; padding: 0; background-color: #767676; width: 26px; height: 26px; border-radius: 50%;} .owl-buttons .owl-prev:hover, .owl-buttons .owl-next:hover { background-color: #000; color: #fff;} .clients-section2 .outside-arrow-simple .owl-buttons .owl-prev:hover, .clients-section2 .outside-arrow-simple .owl-buttons .owl-next:hover { color: #282828;} .owl-buttons .owl-prev { left: 50%; margin-left: -30px;} .owl-buttons .owl-next { right: 50%; margin-right: -30px;} .outside-arrow .owl-buttons .owl-prev, .outside-arrow .owl-buttons .owl-next { bottom: -45px; top: inherit; font-size: 15px; text-align: center; line-height: 24px; padding: 0; width: 26px; height: 26px; } .outside-arrow .owl-buttons .owl-next { right: 50%; margin-right: -30px;} .outside-arrow .owl-buttons .owl-prev { left: 50%; margin-left: -30px;} .one-fourth-screen{height:auto;} .slider-style1 .slider-title, .slider-style2 .slider-title { font-size: 50px !important; line-height: 50px !important;} .slider-style1 .slider-text { letter-spacing: 0;} .slider-style1 .one-fourth-screen { height: 400px; height:auto;} .slider-style2 .slider-text { font-size: 24px; line-height: 28px; margin-top: 20px;} .slider-style3 .slider-title { font-size: 60px !important; line-height: 65px; width: 100%;} .slider-style3 .slider-text { font-size: 20px;} .slider-style5 .slider-content { margin: 0 auto; width: 450px; padding: 30px;} .slider-style5 .slider-title { font-size: 30px !important; line-height: 35px; width: 100%;} .slider-style4 .slider-content-bg .slider-title { font-size: 26px !important;line-height: 30px; padding: 27px 0 0;} .slider-style4 .slider-content-bg { width: 100%; background-size: 90%;} .slider-style4 .slider-content-bg .slider-title::after { right: 110px; top: -5px;} .slider-style6 .title-extra-large-4 span {font-size: 40px;line-height: 45px;} .slider-style6 .slider-text-middle-main { padding: 0 15px; width: 50%;} .slider-button .btn.btn-large { padding: 10px 20px !important; } /* owl-pagination */ .xs-show-pagination .owl-pagination{ display: block;} /* feature box */ .feature-style3 .feature-box .feature-text { width: 50%;} /* blog */ .blog-style1 .post-author { letter-spacing: 1px;} .blog-style1 .post-details { min-height: auto;} /* work */ .work-4col .grid li { width:100%;} .work-3col .grid li {width:100%;} .work-2col .grid li {width:100%;} .half-project-bg { height:350px;} .ajax-popup-title-text { background: transparent; padding: 0} .work-5col .grid li {width:100%;} /* team */ .team-style4 .team-details{ height: 20%; padding-top: 3%;} /* tab */ .tab-style3 li { width: 100%; float: left; text-align: left; margin: 0 0 10px;} .tab-style3 li a { border-bottom: 2px solid #bfbdbd; display: inline-block !important; padding: 0 0 10px !important; width: 100%;} .tab-style3 li.active a, .tab-style3 li:hover a { border-color: #000; border-width: 2px !important;} .tab-style4 li:hover::before, .tab-style4 li.active::before{display: none;} .tab-style1 .nav-tabs > li {float: none;} .tab-style1 .nav-tabs{ width: 100%; display: table; text-align: center;} .tab-style6 .nav-tabs{ width: 100%; display: table; text-align: center;} .tab-style6 .nav-tabs li{margin:2px 0; width:100%; padding:2px 0;} .tab-style6 .nav-tabs li a{border-bottom: 2px solid transparent; padding:6px 0;} .tab-style6 .nav-tabs-light li a:first-child{margin:0;} .tab-style8 .nav-tabs li{margin:0 0 -1px 0; width:100%; border:0;} .tab-style8 .nav-tabs li a{line-height:38px; padding:0 17px; border:1px solid #e5e5e5;} .tab-style8 .nav-tabs-light li:first-child{margin:0; border: 0;} .tab-style8 .nav-tabs > li.active > a{border:1px solid #e5e5e5; top: 0;} .tab-style8 .nav-tabs > li:first-child > a { border-bottom: 0; } .tab-style8 .tab-content { padding: 25px 0 0;} .accordion-style1 .tab-tag { padding: 0 0 0 15px} .accordion-style1 .panel-title {font-size: 15px; line-height: 25px; min-height: 48px; padding: 10px 31px 10px 45px; position: relative;} .accordion-style1 .panel-heading i {font-size: 20px; position: absolute; right: 10px; top: 19px; line-height: 10px;} .accordion-style1 .panel-title .tab-tag { left: 0; position: absolute; top: 0; font-size: 16px; line-height: 46px; width: 44px; height: 100%; margin-right: 0;} .accordion-style1 .panel-title strong{position: absolute; top: 50%; transform: translateY(-50%);vertical-align: middle;} .accordion-style1 .panel-body {padding: 20px 15px;} .tab-style2 .nav-tabs li {float: none; margin: 0 15px 20px;} .tab-style5 .nav-tabs li a{ padding: 0 0 5px; margin: 0 0 10px; font-size:13px; border-bottom: 1px solid transparent;} .tab-style7 li { width: 100%; float: left; text-align: left; margin: 0 0 10px;} .tab-style7 li a { border-bottom: 2px solid #bfbdbd; display: inline-block !important; padding: 0 0 10px !important; width: 100%;} .tab-style7 li.active a, .tab-style7 li:hover a { border-color: #bfbdbd; border-width: 2px !important;} /* blog */ .blog-style3 .post-details { padding: 30px;} .blog-style3 .post-author { letter-spacing: 1px; font-size: 12px;} .blog-style3 .post-details, .blog-style3 .post-details a { min-height: auto;} .post-thumbnail img{ width: 100%;} .blog-style2 figure {padding: 80px 30px 0;} .groom-box .groom-box-img img{ height: auto;} /* contact */ .contact-form-style1 .contact-details .details-box { margin-bottom: 20px;} .contact-form-style1 textarea { min-height: 130px;} /*team*/ .team-style1 .team { height: auto;} .team-style1 .team-details { bottom: -160px;} .team-style1 .team-details {background-color: #282828; bottom: 5px; position: relative;} .team-style1 .team-details span{ color: #fff;} /* team style 6 */ .team-style6 .team { height: auto; max-height:inherit;} .team-style6 .team-details{ padding:25px 0 0; position:relative; bottom: 0;} .team-style6 .team:hover .team-details {bottom: 0;} /* team style 3 */ .team-style3 .team-details { padding:35px; } /* team style 4 */ .about-style3 .about-text {min-height: 0; padding: 7% 5.5%;} .about-style3 .about-img {min-height: 420px;} /*content*/ .content-style1 { margin: 0 auto; width: 100%;} .section-title3 p{ width: 100%; padding:0 15px;} .content-style4 .content-text{ min-height: 0;} .separator-line3 { margin: 0 auto;} .treatments-details {left: 0; position: relative;top: 0;width: 100%;} .treatments-details-sub {position: relative; right: 0; top: 0; transform: none; width: 100%;} .groom-box .groom-box-img {height: auto; width: 100%;} .treatments-details{ height: auto;} /* call-to-action-1 */ .offer .offer-box-right ul li {margin: 0 0 15px;} .offer .offer-box-right ul li.no-margin { margin: 0 !important;} /* clients */ .client-logo ul li { width: 100%; text-align: center} /* social */ .newsletter-style1 p { width: 100%;} /* hero style 3 */ .hero-style3 .one-fourth-screen {min-height:0;} /* hero style 4 */ .hero-style4 .one-third-screen {height: 400px !important;} .hero-style4 .application-mobile {position: inherit;} .hero-style4 .slider-typography{ padding:30px 0 0;} /* hero style 5 */ .hero-style5 .one-fourth-screen { height: 400px !important;} .hero-style5 .application-mobile {position: inherit;} .hero-style5 .slider-typography{ padding:30px 0 0;} /* hero style 6 */ .hero-style6 .one-third-screen {height: 400px !important;} .hero-style6 .application-mobile {position: inherit;} .hero-style6 .slider-typography{ padding:30px 0 0;} /*hero style 9*/ .form-subscribe form {width: 100%;} /* hero style 12 */ .hero-style12 .one-third-screen {height: 350px !important;} /* hero style 13 */ .hero-style13 .application-mobile { position: inherit;} /* hero style 14 */ .hero-style14 .application-mobile { position: inherit;} /* hero style 19 */ .hero-bottom-img img { border:15px solid #000; margin: 0 5% -70px} /*hero style 11*/ .back-down { position: relative; margin: 0 0 20px} /* blog style 11 */ .post-item .post-details, .post-item .blog-image, .post-item{ display: block;} .post-item .blog-post{display: block;} /* content style 21*/ .xs-no-content-middle-center{ left: 0%; position: inherit; top: 0; transform: none;} /* subscribe-style2 */ .subscribe-style2 input { margin: 0 0 20px; width: 100%;} /* subscribe-style3 */ .subscribe-style3 input { margin: 0 0 20px; width: 100%;} /* Call to action4 */ .call-to-action4 .one-fourth-screen { height: 400px !important;} .call-to-action4 .application-mobile {position: inherit;} .call-to-action4 .slider-typography{ padding:30px 0 0;} /* Call to action7 */ .call-to-action7 .one-fourth-screen { height: 400px !important;} .call-to-action7 .application-mobile {position: inherit;} .call-to-action7 .slider-typography{ padding:30px 0 0;} /* Round Image */ .img-round { width: 170px;} .xs-display-table-cell-vertical-middle{float:left !important;} .xs-padding-15-lr{padding:0 15px !important;} .header-style3 .logo{margin-bottom:0;} .navbar-collapse { top:53px;} /* header */ .header-style5 .social a { margin: 0 6px;} .header-style9 .full-header { padding: 0 15px; } .xs-padding-left-15{padding-left:15px !important;} .xs-padding-right-15{padding-right:15px !important;} /* feature */ .feature-style1 .content-box { margin-top: 25px;} /* equalize height */ .xs-equalize-auto>div { height: auto !important} /* testimonial-style7 */ .testimonial-style9-con { padding: 30px 15px; } /* testimonial-style5 */ .testimonial-style5 .testimonial::before { content: ""; } .scroll-down{bottom:20px;} /* Counter 1 */ .time-counter .counter-box { border:none; padding:20px 45px 7px; width:100%; margin-bottom:2%;} .time-counter .counter-box .number {font-size:35px; padding-bottom:5px;} .time-counter p {font-size: 13px !important; line-height:18px !important;} .one-fifth-screen {height:700px;} .btn.btn-extra-large {font-size:13px; padding:11px 22px !important;} .xs-bg-none{background:none;} /*hero*/ .hero-style25 .input-group-btn .btn.btn-large {line-height:2px; height:52px !important; padding:11px 15px!important;} .hero-style25 .input-group input, .input-group textarea, .input-group select { margin: 0; border-radius: 4px 0 0 4px; border: none !important; padding: 13px 20px; font-size: 13px !important; } .hero-style19 .btn-dual .btn{margin:0 0;} /* tab*/ .tab-style1 .nav-tabs li a{margin:0;} .tab-style1 ul{height:auto;} /*clients*/ .clients-section2 .outside-arrow-simple .owl-buttons .owl-prev{left:30px; background:transparent;} .clients-section2 .outside-arrow-simple .owl-buttons .owl-next{right:30px; background:transparent;} .clients-section4 .client-logo-inner, .clients-section3 .client-logo-inner { height: 130px;} .owl-dark-pagination .owl-buttons .owl-prev, .owl-dark-pagination .owl-buttons .owl-next { font-size: 28px; position: inherit; display: inline-block; background: transparent; margin: 0 5px; height: auto; width: auto;} .owl-dark-pagination .owl-buttons .owl-prev:hover, .owl-dark-pagination .owl-buttons .owl-next:hover{ color: inherit;} .owl-dark-pagination .owl-buttons{ text-align: center; margin-top: 10px;} /*equalize display table inherit*/ /* .equalize.equalize-display-inherit .display-table { display: inherit !important; position: inherit;}*/ .equalize.equalize-display-inherit .display-table-cell-vertical-middle { top: inherit; -webkit-transform: none; -moz-transform: none; -o-transform: none; -ms-transform: none; transform: none; position: inherit;} .equalize.equalize-display-inherit .display-table-cell-vertical-bottom { top: inherit; bottom: inherit; -webkit-transform: none; -moz-transform: none; -o-transform: none; -ms-transform: none; transform: none; position: inherit;} /* header style 12 */ .header-style12 .navbar { padding: 16px 0;} .header-style12 .navbar.shrink-nav.shrink { padding: 16px 0;} /* header style 13 */ .header-style13 .navbar { padding: 16px 0;} .header-style13 .navbar.shrink-nav.shrink { padding: 16px 0;} /* header style 14 */ .header-style14 .navbar { padding: 16px 0;} .header-style14 .navbar.shrink-nav.shrink { padding: 16px 0;} /* button */ .btn.xs-btn-extra-large2 { font-size: 18px; padding: 18px 30px !important; line-height: 20px;} .btn.xs-btn-extra-large { font-size: 16px; padding: 14px 28px !important; line-height: 18px;} .btn.xs-btn-large { font-size: 14px; padding: 11px 25px !important; line-height: 18px;} .btn.xs-btn-medium { font-size: 12px; padding: 8px 20px !important; line-height: 18px;} .btn.xs-btn-small { font-size: 11px; padding: 4px 14px !important; line-height: 18px;} .btn.xs-btn-very-small {font-size: 10px; padding: 10px 12px 10px !important; line-height: 0;} .btn-dual .btn {margin:0 10px 0 0} /* price box 7 */ .pricing-box-style7 li, .pricing-box-style7 li:first-child, .pricing-box-style7 li, .pricing-box-style7 li:first-child, .pricing-box-style7 li:last-child { height: auto; padding: 30px 15px; } } @media (max-width: 640px) { /* header */ .header-style6 .one-fourth-screen{height: 520px;} .header-style6 h1 { font-size: 30px !important; line-height: 35px;} .header-style7 .one-fourth-screen{height:850px;} .header-style7 .header-banner, .header-style6 .header-banner, .header-style8 .header-banner { margin-top: 90px !important;} .header-style7 .header-banner span.date { margin-bottom: 20px;} .header-style7 .header-banner h1 { font-size: 24px !important;} .header-style7 .header-banner .counter-content { width:90px; height:90px; padding: 20px 0; margin:10px auto 15px auto; float:none; display:block; } .header-style7 .header-banner .counter-content span { font-size: 30px;} .header-style8 .header-banner .banner-title { font-size: 29px;} /* slider */ .slider-style1 .slider-title { font-size: 35px !important; line-height: 40px !important;} .slider-style1 .slider-text { font-size: 14px !important;} .slider-style2 .slider-title { font-size: 40px !important;} .slider-style2 .slider-text { font-size: 20px; margin-top: 10px;} .slider-style3 .slider-title { font-size: 45px !important; line-height: 45px;} .slider-style3 .slider-text { font-size: 17px; line-height: 22px;} .slider-style6 .slider-text-middle-main { padding: 0 15px; width: 68%;} /* feature box */ .feature-style3 .feature-box .feature-text { width: 80%;} .header-style4 .header-bottom {padding: 11px 0;} .header-style4 .navbar-collapse { top: 53px; } .video-section{max-height:350px; height:100%;} .one-fifth-screen {height:550px;} .xs-one-sixth-screen {height:600px;} /* header style 7 */ .event-counter .counter-box { float: none; height: 90px; margin: 10px auto 15px; padding: 15px 0; width: 90px; display: block;} .event-counter .counter-box .number { font-size: 30px; line-height: 35px; } .event-counter .counter-box span { font-size: 12px; line-height: 17px; } } @media (max-width: 480px) { /* header */ .navbar-collapse { top:53px;} .header-style4 .header-top .mail { width: 100%; margin-bottom: 5px; text-align: center;} .header-style4 .header-top .social{ text-align: center; width: 100%;} .header-style6 .one-fourth-screen{height: auto;} .header-style6 p { font-size: 14px;} .header-style7 .header-banner h1 { font-size: 20px !important; line-height: 30px;} .header-style8 .header-banner .banner-icon { font-size: 50px;} .header-style8 .header-banner .banner-text { font-size: 14px;} /* slider */ .slider-style1 .slider-title { font-size: 30px !important; line-height: 35px !important;} .slider-style1 .slider-text { line-height: 20px;} .slider-style2 .slider-title { font-size: 35px !important; line-height:38px !important;} .slider-style2 .slider-text { font-size: 16px; line-height: 22px;} .slider-style2 .scroll-down a i { position: relative; top: 30px;} .slider-style3 .slider-title { font-size: 33px !important; line-height: 38px;} .slider-style3 .slider-text { font-size: 15px; line-height: 24px;} .slider-style5 .slider-content {width: 100%; padding: 30px; background-color: rgba(0, 0, 0, 0.85); border:none} .slider-style5 .slider-title { font-size: 20px !important; line-height: 25px;} .slider-style6 .slider-text-middle-main { width: 100%; padding: 0; } /* feature box */ .feature-style3 .feature-box .feature-text { width: 100%;} /* blog */ .blog-post-style1 article:hover .post-details {padding-left: 12px;} .blog-post-style2 .post-details span a { font-size: 11px;} .blog-post-style2 .post-details { padding: 15px;} .blog-post-style1 .blog-like, .blog-share, .comment{margin-right: 10px;} .blog-comment .comment-avtar{width: 100%; margin: 0; float: none;} .blog-comment .comment-avtar img{width: 100%; margin-bottom: 15px;} .blog-post-title::after {top: 15px;} /* team */ .team-style4 .team-details { height: 36%;} .team-style7 .team-details {height: 40%;} /* content */ .content-style1 .title { font-size: 35px;} .content-style1 .title::after { width: 30px; left: -46px;} .content-style1 .title::before { width: 30px; right: -46px;} /* content style 30 */ .content-section30 .list-style1 li{width: 100%;} .owl-pagination {bottom: 20px;} .xs-text-white {color: #fff !important;} .xs-text-black {color: #000 !important;} .xs-bg-white {background: #fff;} } @media (max-width: 419px) { /* header */ .header-style5 .social a { margin: 0 4px;} .header-style5 .social { margin-right: 8px; } .header-style13 .social a{margin-left: 0px;} .header-style14 .social a, .header-style15 .social a{margin-left: 0px;} .one-fifth-screen {height:450px;} .xs-one-sixth-screen {min-height:500px;} } @media (max-width: 380px) { /* header */ .header-style13 .social a{margin:0 0 0 6px; } .header-style14 .social a, .header-style15 .social a{margin:0 0 0 6px; } } @media screen and (max-width: 320px) { /* navigation */ .shrink-nav .navbar-collapse { max-height: 420px; } } @media screen and (orientation : landscape) { /* navigation */ .shrink-nav .navbar-collapse { max-height: 270px; } .shrink-medium-header.shrink-nav .navbar-collapse { max-height: 200px; } }
css/responsive.css
@media (max-width: 1300px) { .outside-arrow-simple .owl-buttons .owl-next {right:-10px;} .outside-arrow-simple .owl-buttons .owl-prev {left:-10px;} .outside-arrow .owl-buttons .owl-prev{left: 0;} .outside-arrow .owl-buttons .owl-next{right: 0;} } @media (max-width: 1199px) { /* blog*/ .blog-style2 figure {padding: 70px 40px 0;} /* section */ .md-center-col{ float:none !important; margin-left:auto !important; margin-right:auto !important} /* border */ .md-no-border { border:none !important} /* margin */ .md-margin-one-half{margin:0.5% !important} .md-margin-one{margin:1% !important} .md-margin-two{margin:1.5% !important} .md-margin-three{margin:2% !important} .md-margin-four{margin:2.5% !important} .md-margin-five{margin:3% !important} .md-margin-six{margin:3.5% !important} .md-margin-seven{margin:4% !important} .md-margin-eight {margin:4.5% !important} .md-margin-nine {margin:5% !important} .md-margin-ten{ margin:5.5% !important} .md-margin-eleven{ margin:6% !important} .md-margin-twelve{ margin:6.5% !important} .md-margin-thirteen{ margin:7% !important} .md-margin-fourteen{ margin:7.5% !important} .md-margin-fifteen{ margin:8% !important} .md-margin-sixteen{ margin:8.5% !important} .md-margin-seventeen{ margin:9% !important} .md-margin-eighteen{ margin:9.5% !important} .md-margin-nineteen{ margin:10% !important} .md-margin-twenty{ margin:10.5% !important} .md-margin-twenty-one{ margin:11% !important} .md-margin-twenty-two{ margin:11.5% !important} .md-margin-twenty-three{ margin:12% !important} .md-margin-twenty-four{ margin:12.5% !important} .md-margin-twenty-five{ margin:13% !important} .md-margin-twenty-six{ margin:13.4% !important} .md-margin-twenty-seven{ margin:14% !important} .md-margin-twenty-eight{ margin:14.5% !important} .md-margin-twenty-nine{ margin:15% !important} .md-margin-thirty{ margin:15.5% !important} .md-margin-thirty-one{margin:16% !important} .md-margin-thirty-two{margin:16.5% !important} .md-margin-thirty-three{margin:17% !important} .md-margin-thirty-four{margin:17.5% !important} .md-margin-thirty-five{margin:18% !important} .md-no-margin{ margin:0 !important} .md-no-margin-lr{ margin-left: 0 !important; margin-right: 0 !important} .md-no-margin-tb{ margin-top: 0 !important; margin-bottom: 0 !important} .md-no-margin-top{ margin-top:0 !important} .md-no-margin-bottom{ margin-bottom:0 !important} .md-no-margin-left{ margin-left:0 !important} .md-no-margin-right{ margin-right:0 !important} .md-margin-lr-auto {margin-left:auto !important; margin-right:auto !important} /* margin-bottom */ .md-margin-one-half-bottom{margin-bottom: 0.5% !important} .md-margin-one-bottom{margin-bottom:1% !important} .md-margin-two-bottom{margin-bottom:1.5% !important} .md-margin-three-bottom{margin-bottom:2% !important} .md-margin-four-bottom{margin-bottom:2.5% !important} .md-margin-five-bottom{margin-bottom:3% !important} .md-margin-six-bottom{margin-bottom:3.5% !important} .md-margin-seven-bottom{margin-bottom:4% !important} .md-margin-eight-bottom {margin-bottom:4.5% !important} .md-margin-nine-bottom{margin-bottom:5% !important} .md-margin-ten-bottom{margin-bottom:5.5% !important} .md-margin-eleven-bottom{margin-bottom:6% !important} .md-margin-twelve-bottom{margin-bottom:6.5% !important} .md-margin-thirteen-bottom{margin-bottom:7% !important} .md-margin-fourteen-bottom{margin-bottom:7.5% !important} .md-margin-fifteen-bottom{margin-bottom:8% !important} .md-margin-sixteen-bottom{margin-bottom:8.5% !important} .md-margin-seventeen-bottom{margin-bottom:9% !important} .md-margin-eighteen-bottom{margin-bottom:9.5% !important} .md-margin-nineteen-bottom{margin-bottom:10% !important} .md-margin-twenty-bottom{margin-bottom:10.5% !important} .md-margin-twenty-one-bottom{margin-bottom:11% !important} .md-margin-twenty-two-bottom{margin-bottom:11.5% !important} .md-margin-twenty-three-bottom{margin-bottom:12% !important} .md-margin-twenty-four-bottom{margin-bottom:12.5% !important} .md-margin-twenty-five-bottom{margin-bottom:13% !important} .md-margin-twenty-six-bottom{margin-bottom:13.5% !important} .md-margin-twenty-seven-bottom{margin-bottom:14% !important} .md-margin-twenty-eight-bottom{margin-bottom:14.5% !important} .md-margin-twenty-nine-bottom{margin-bottom:15% !important} .md-margin-thirty-bottom{margin-bottom:15.5% !important} .md-margin-thirty-one-bottom{margin-bottom:16% !important} .md-margin-thirty-two-bottom{margin-bottom:16.5% !important} .md-margin-thirty-three-bottom{margin-bottom:17% !important} .md-margin-thirty-four-bottom{margin-bottom:17.5% !important} .md-margin-thirty-five-bottom{margin-bottom:18% !important} .md-margin-bottom-10px{ margin-bottom:10px !important} /* margin-top */ .md-margin-one-half-top{margin-top: 0.5% !important} .md-margin-one-top{margin-top:1% !important} .md-margin-two-top{margin-top:1.5% !important} .md-margin-three-top{margin-top:2% !important} .md-margin-four-top{margin-top:2.5% !important} .md-margin-five-top{margin-top:3% !important} .md-margin-six-top{margin-top:3.5% !important} .md-margin-seven-top{margin-top:4% !important} .md-margin-eight-top {margin-top:4.5% !important} .md-margin-nine-top{margin-top:5% !important} .md-margin-ten-top{margin-top:5.5% !important} .md-margin-eleven-top{margin-top:6% !important} .md-margin-twelve-top{margin-top:6.5% !important} .md-margin-thirteen-top{margin-top:7% !important} .md-margin-fourteen-top{margin-top:7.5% !important} .md-margin-fifteen-top{margin-top:8% !important} .md-margin-sixteen-top{margin-top:8.5% !important} .md-margin-seventeen-top{margin-top:9% !important} .md-margin-eighteen-top{margin-top:9.5% !important} .md-margin-nineteen-top{margin-top:10% !important} .md-margin-twenty-top{margin-top:10.5% !important} .md-margin-twenty-one-top{margin-top:11% !important} .md-margin-twenty-two-top{margin-top:11.5% !important} .md-margin-twenty-three-top{margin-top:12% !important} .md-margin-twenty-four-top{margin-top:12.5% !important} .md-margin-twenty-five-top{margin-top:13% !important} .md-margin-twenty-six-top{margin-top:13.5% !important} .md-margin-twenty-seven-top{margin-top:14% !important} .md-margin-twenty-eight-top{margin-top:14.5% !important} .md-margin-twenty-nine-top{margin-top:15% !important} .md-margin-thirty-top{margin-top:15.5% !important} .md-margin-thirty-one-top{margin-top:16% !important} .md-margin-thirty-two-top{margin-top:16.5% !important} .md-margin-thirty-three-top{margin-top:17% !important} .md-margin-thirty-four-top{margin-top:17.5% !important} .md-margin-thirty-five-top{margin-top:18% !important} .md-margin-top-10px{ margin-top:10px !important} /* margin left */ .md-margin-one-half-left {margin-left:0.5% !important} .md-margin-one-left {margin-left:1% !important} .md-margin-two-left {margin-left:1.5% !important} .md-margin-three-left {margin-left:2% !important} .md-margin-four-left {margin-left:2.5% !important} .md-margin-five-left {margin-left:3% !important} .md-margin-six-left {margin-left:3.5% !important} .md-margin-seven-left {margin-left:4% !important} .md-margin-eight-left {margin-left:4.5% !important} .md-margin-nine-left {margin-left:5% !important} .md-margin-ten-left {margin-left:5.5% !important} .md-margin-eleven-left {margin-left:6% !important} .md-margin-twelve-left {margin-left:6.5% !important} .md-margin-thirteen-left {margin-left:7% !important} .md-margin-fourteen-left {margin-left:7.5% !important} .md-margin-fifteen-left {margin-left:8% !important} .md-margin-sixteen-left {margin-left:8.5% !important} .md-margin-seventeen-left{margin-left:9% !important} .md-margin-eighteen-left {margin-left:9.5% !important} .md-margin-nineteen-left {margin-left:10% !important} .md-margin-twenty-left{margin-left:10.5% !important} .md-margin-twenty-one-left{margin-left:11% !important} .md-margin-twenty-two-left{margin-left:11.5% !important} .md-margin-twenty-three-left{margin-left:12% !important} .md-margin-twenty-four-left{margin-left:12.5% !important} .md-margin-twenty-five-left{margin-left:13% !important} .md-margin-twenty-six-left{margin-left:13.5% !important} .md-margin-twenty-seven-left{margin-left:14% !important} .md-margin-twenty-eight-left{margin-left:14.5% !important} .md-margin-twenty-nine-left{margin-left:15% !important} /* margin right */ .md-margin-one-half-right {margin-right:0.5% !important} .md-margin-one-right {margin-right:1% !important} .md-margin-two-right {margin-right:1.5% !important} .md-margin-three-right {margin-right:2% !important} .md-margin-four-right {margin-right:2.5% !important} .md-margin-five-right {margin-right:3% !important} .md-margin-six-right {margin-right:3.5% !important} .md-margin-seven-right {margin-right:4% !important} .md-margin-eight-right {margin-right:4.5% !important} .md-margin-nine-right {margin-right:5% !important} .md-margin-ten-right {margin-right:5.5% !important} .md-margin-eleven-right {margin-right:6% !important} .md-margin-twelve-right {margin-right:6.5% !important} .md-margin-thirteen-right {margin-right:7% !important} .md-margin-fourteen-right {margin-right:7.5% !important} .md-margin-fifteen-right {margin-right:8% !important} .md-margin-sixteen-right {margin-right:8.5% !important} .md-margin-seventeen-right{margin-right:9% !important} .md-margin-eighteen-right {margin-right:9.5% !important} .md-margin-nineteen-right {margin-right:10% !important} .md-margin-twenty-right{margin-right:10.5% !important} .md-margin-twenty-one-right{margin-right:11% !important} .md-margin-twenty-two-right{margin-right:11.5% !important} .md-margin-twenty-three-right{margin-right:12% !important} .md-margin-twenty-four-right{margin-right:12.5% !important} .md-margin-twenty-five-right{margin-right:13% !important} .md-margin-twenty-six-right{margin-right:13.5% !important} .md-margin-twenty-seven-right{margin-right:14% !important} .md-margin-twenty-eight-right{margin-right:14.5% !important} .md-margin-twenty-nine-right{margin-right:15% !important} /* padding */ .md-padding-one-half{padding:0.5% !important} .md-padding-one{padding:1% !important} .md-padding-two{padding:1.5% !important} .md-padding-three{padding:2% !important} .md-padding-four{padding:2.5% !important} .md-padding-five{padding:3% !important} .md-padding-six{padding:3.5% !important} .md-padding-seven{padding:4% !important} .md-padding-eight {padding:4.5% !important} .md-padding-nine {padding:5% !important} .md-padding-ten{ padding:5.5% !important} .md-padding-eleven{ padding:6% !important} .md-padding-twelve{ padding:6.5% !important} .md-padding-thirteen{ padding:7% !important} .md-padding-fourteen{ padding:7.5% !important} .md-padding-fifteen{ padding:8% !important} .md-padding-sixteen{ padding:8.5% !important} .md-padding-seventeen{ padding:9% !important} .md-padding-eighteen{ padding:9.5% !important} .md-padding-nineteen{ padding:10% !important} .md-padding-twenty{ padding:10.5% !important} .md-padding-twenty-one{ padding:11% !important} .md-padding-twenty-two{ padding:11.5% !important} .md-padding-twenty-three{ padding:12% !important} .md-padding-twenty-four{ padding:12.5% !important} .md-padding-twenty-five{ padding:13% !important} .md-padding-twenty-six{ padding:13.4% !important} .md-padding-twenty-seven{ padding:14% !important} .md-padding-twenty-eight{ padding:14.5% !important} .md-padding-twenty-nine{ padding:15% !important} .md-padding-thirty{ padding:15.5% !important} .md-padding-thirty-one{padding:16% !important} .md-padding-thirty-two{padding:16.5% !important} .md-padding-thirty-three{padding:17% !important} .md-padding-thirty-four{padding:17.5% !important} .md-padding-thirty-five{padding:18% !important} .md-no-padding{ padding:0 !important} .md-no-padding-lr{ padding-left: 0 !important; padding-right: 0 !important} .md-no-padding-tb{ padding-top: 0 !important; padding-bottom: 0 !important} .md-no-padding-top{ padding-top:0 !important} .md-no-padding-bottom{ padding-bottom:0 !important} .md-no-padding-left{ padding-left:0 !important} .md-no-padding-right{ padding-right:0 !important} .md-no-padding-15{ padding-left: 15px !important; padding-right: 15px !important;} /* padding top */ .md-padding-one-half-top {padding-top:0.5% !important} .md-padding-one-top {padding-top:1% !important} .md-padding-two-top {padding-top:1.5% !important} .md-padding-three-top {padding-top:2% !important} .md-padding-four-top {padding-top:2.5% !important} .md-padding-five-top {padding-top:3% !important} .md-padding-six-top {padding-top:3.5% !important} .md-padding-seven-top {padding-top:4% !important} .md-padding-eight-top {padding-top:4.5% !important} .md-padding-nine-top {padding-top:5% !important} .md-padding-ten-top {padding-top:5.5% !important} .md-padding-eleven-top {padding-top:6% !important} .md-padding-twelve-top {padding-top:6.5% !important} .md-padding-thirteen-top {padding-top:7% !important} .md-padding-fourteen-top {padding-top:7.5% !important} .md-padding-fifteen-top {padding-top:8% !important} .md-padding-sixteen-top {padding-top:8.5% !important} .md-padding-seventeen-top{padding-top:9% !important} .md-padding-eighteen-top {padding-top:9.5% !important} .md-padding-nineteen-top {padding-top:10% !important} .md-padding-twenty-top{padding-top:10.5% !important} .md-padding-twenty-one-top{padding-top:11% !important} .md-padding-twenty-two-top{padding-top:11.5% !important} .md-padding-twenty-three-top{padding-top:12% !important} .md-padding-twenty-four-top{padding-top:12.5% !important} .md-padding-twenty-five-top{padding-top:13% !important} .md-padding-twenty-six-top{padding-top:13.5% !important} .md-padding-twenty-seven-top{padding-top:14% !important} .md-padding-twenty-eight-top{padding-top:14.5% !important} .md-padding-twenty-nine-top{padding-top:15% !important} .md-padding-top-5px{ padding-top:5px !important;} .md-padding-top-10px{ padding-top:10px !important;} .md-padding-top-15px{ padding-top:15px !important;} .md-padding-top-20px{ padding-top:20px !important;} .md-padding-top-25px{ padding-top:25px !important;} .md-padding-top-30px{ padding-top:30px !important;} .md-padding-top-35px{ padding-top:35px !important;} .md-padding-top-40px{ padding-top:40px !important;} .md-padding-top-45px{ padding-top:45px !important;} .md-padding-top-50px{ padding-top:50px !important;} .md-padding-top-55px{ padding-top:55px !important;} .md-padding-top-60px{ padding-top:60px !important;} .md-padding-top-65px{ padding-top:65px !important;} .md-padding-top-70px{ padding-top:70px !important;} .md-padding-top-75px{ padding-top:75px !important;} .md-padding-top-80px{ padding-top:80px !important;} /* padding bottom */ .md-padding-one-half-bottom {padding-bottom:0.5% !important} .md-padding-one-bottom {padding-bottom:1% !important} .md-padding-two-bottom {padding-bottom:1.5% !important} .md-padding-three-bottom {padding-bottom:2% !important} .md-padding-four-bottom {padding-bottom:2.5% !important} .md-padding-five-bottom {padding-bottom:3% !important} .md-padding-six-bottom {padding-bottom:3.5% !important} .md-padding-seven-bottom {padding-bottom:4% !important} .md-padding-eight-bottom {padding-bottom:4.5% !important} .md-padding-nine-bottom {padding-bottom:5% !important} .md-padding-ten-bottom {padding-bottom:5.5% !important} .md-padding-eleven-bottom {padding-bottom:6% !important} .md-padding-twelve-bottom {padding-bottom:6.5% !important} .md-padding-thirteen-bottom {padding-bottom:7% !important} .md-padding-fourteen-bottom {padding-bottom:7.5% !important} .md-padding-fifteen-bottom {padding-bottom:8% !important} .md-padding-sixteen-bottom {padding-bottom:8.5% !important} .md-padding-seventeen-bottom{padding-bottom:9% !important} .md-padding-eighteen-bottom {padding-bottom:9.5% !important} .md-padding-nineteen-bottom {padding-bottom:10% !important} .md-padding-twenty-bottom{padding-bottom:10.5% !important} .md-padding-twenty-one-bottom{padding-bottom:11% !important} .md-padding-twenty-two-bottom{padding-bottom:11.5% !important} .md-padding-twenty-three-bottom{padding-bottom:12% !important} .md-padding-twenty-four-bottom{padding-bottom:12.5% !important} .md-padding-twenty-five-bottom{padding-bottom:13% !important} .md-padding-twenty-six-bottom{padding-bottom:13.5% !important} .md-padding-twenty-seven-bottom{padding-bottom:14% !important} .md-padding-twenty-eight-bottom{padding-bottom:14.5% !important} .md-padding-twenty-nine-bottom{padding-bottom:15% !important} .md-padding-bottom-5px{ padding-bottom:5px !important;} .md-padding-bottom-10px{ padding-bottom:10px !important;} .md-padding-bottom-15px{ padding-bottom:15px !important;} .md-padding-bottom-20px{ padding-bottom:20px !important;} .md-padding-bottom-25px{ padding-bottom:25px !important;} .md-padding-bottom-30px{ padding-bottom:30px !important;} .md-padding-bottom-35px{ padding-bottom:35px !important;} .md-padding-bottom-40px{ padding-bottom:40px !important;} .md-padding-bottom-45px{ padding-bottom:45px !important;} .md-padding-bottom-50px{ padding-bottom:50px !important;} /* padding left */ .md-padding-one-half-left {padding-left:0.5% !important} .md-padding-one-left {padding-left:1% !important} .md-padding-two-left {padding-left:1.5% !important} .md-padding-three-left {padding-left:2% !important} .md-padding-four-left {padding-left:2.5% !important} .md-padding-five-left {padding-left:3% !important} .md-padding-six-left {padding-left:3.5% !important} .md-padding-seven-left {padding-left:4% !important} .md-padding-eight-left {padding-left:4.5% !important} .md-padding-nine-left {padding-left:5% !important} .md-padding-ten-left {padding-left:5.5% !important} .md-padding-eleven-left {padding-left:6% !important} .md-padding-twelve-left {padding-left:6.5% !important} .md-padding-thirteen-left {padding-left:7% !important} .md-padding-fourteen-left {padding-left:7.5% !important} .md-padding-fifteen-left {padding-left:8% !important} .md-padding-sixteen-left {padding-left:8.5% !important} .md-padding-seventeen-left{padding-left:9% !important} .md-padding-eighteen-left {padding-left:9.5% !important} .md-padding-nineteen-left {padding-left:10% !important} .md-padding-twenty-left{padding-left:10.5% !important} .md-padding-twenty-one-left{padding-left:11% !important} .md-padding-twenty-two-left{padding-left:11.5% !important} .md-padding-twenty-three-left{padding-left:12% !important} .md-padding-twenty-four-left{padding-left:12.5% !important} .md-padding-twenty-five-left{padding-left:13% !important} .md-padding-twenty-six-left{padding-left:13.5% !important} .md-padding-twenty-seven-left{padding-left:14% !important} .md-padding-twenty-eight-left{padding-left:14.5% !important} .md-padding-twenty-nine-left{padding-left:15% !important} .md-padding-left-5px{ padding-left:5px !important;} .md-padding-left-10px{ padding-left:10px !important;} .md-padding-left-15px{ padding-left:15px !important;} .md-padding-left-20px{ padding-left:20px !important;} .md-padding-left-25px{ padding-left:25px !important;} .md-padding-left-30px{ padding-left:30px !important;} .md-padding-left-35px{ padding-left:35px !important;} .md-padding-left-40px{ padding-left:40px !important;} .md-padding-left-45px{ padding-left:45px !important;} .md-padding-left-50px{ padding-left:50px !important;} .md-padding-left-55px{ padding-left:55px !important;} .md-padding-left-60px{ padding-left:60px !important;} .md-padding-left-65px{ padding-left:65px !important;} .md-padding-left-70px{ padding-left:70px !important;} .md-padding-left-75px{ padding-left:75px !important;} .md-padding-left-80px{ padding-left:80px !important;} /* padding right */ .md-padding-one-half-right {padding-right:0.5% !important} .md-padding-one-right {padding-right:1% !important} .md-padding-two-right {padding-right:1.5% !important} .md-padding-three-right {padding-right:2% !important} .md-padding-four-right {padding-right:2.5% !important} .md-padding-five-right {padding-right:3% !important} .md-padding-six-right {padding-right:3.5% !important} .md-padding-seven-right {padding-right:4% !important} .md-padding-eight-right {padding-right:4.5% !important} .md-padding-nine-right {padding-right:5% !important} .md-padding-ten-right {padding-right:5.5% !important} .md-padding-eleven-right {padding-right:6% !important} .md-padding-twelve-right {padding-right:6.5% !important} .md-padding-thirteen-right {padding-right:7% !important} .md-padding-fourteen-right {padding-right:7.5% !important} .md-padding-fifteen-right {padding-right:8% !important} .md-padding-sixteen-right {padding-right:8.5% !important} .md-padding-seventeen-right{padding-right:9% !important} .md-padding-eighteen-right {padding-right:9.5% !important} .md-padding-nineteen-right {padding-right:10% !important} .md-padding-twenty-right{padding-right:10.5% !important} .md-padding-twenty-one-right{padding-right:11% !important} .md-padding-twenty-two-right{padding-right:11.5% !important} .md-padding-twenty-three-right{padding-right:12% !important} .md-padding-twenty-four-right{padding-right:12.5% !important} .md-padding-twenty-five-right{padding-right:13% !important} .md-padding-twenty-six-right{padding-right:13.5% !important} .md-padding-twenty-seven-right{padding-right:14% !important} .md-padding-twenty-eight-right{padding-right:14.5% !important} .md-padding-twenty-nine-right{padding-right:15% !important} /* display */ .md-display-block { display: block !important} .md-overflow-hidden{ overflow: hidden !important} .md-display-inline-block { display: inline-block !important} .md-display-inline { display: inline !important} .md-display-none { display: none !important} .md-display-inline-table { display: inline-table;} /* top */ .md-top-minus1 {top: -1px !important} .md-top-minus2 {top: -2px !important} .md-top-minus3 {top: -3px !important} .md-top-minus4 {top: -4px !important} .md-top-minus5 {top: -5px !important} .md-top-minus6 {top: -6px !important} .md-top-minus7 {top: -7px !important} .md-top-minus8 {top: -8px !important} .md-top-minus9 {top: -9px !important} .md-top-minus10 {top: -10px !important} /* width */ .md-width { display: inline-block; position: relative; width: 90%; } .md-width-20 { width:20% !important;} .md-width-25 { width:25% !important;} .md-width-30 { width:30% !important;} .md-width-35 { width:35% !important;} .md-width-40 { width:40% !important;} .md-width-45 { width:45% !important;} .md-width-50 { width:50% !important;} .md-width-55 { width:55% !important;} .md-width-60 { width:60% !important;} .md-width-65 { width:65% !important;} .md-width-70 { width:70% !important;} .md-width-75 { width:75% !important;} .md-width-80 { width:80% !important;} .md-width-85 { width:85% !important;} .md-width-90 { width:90% !important;} .md-width-95 { width:95% !important;} .md-width-100 { width:100% !important;} .md-width-auto { width: auto !important} .md-container-fluid { width: 100% !important;} /* height */ .md-height-100 { height: 100% !important} .md-height-auto { height:auto !important} .md-height-100-px { height: 100px !important;} .md-height-200-px { height: 200px !important;} .md-height-300-px { height: 300px !important;} .md-height-350-px { height: 350px !important;} .md-height-400-px { height: 400px !important;} .md-height-500-px { height: 500px !important;} .md-height-600-px { height: 600px !important;} .md-height-700-px { height: 700px !important;} .md-height-800-px { height: 800px !important;} /* custom */ .md-clear-both{ clear:both} .md-no-transition * { transition-timing-function: none; -moz-transition-timing-function: none; -webkit-transition-timing-function: none; -o-transition-timing-function: none; transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; -o-transition-duration: 0s; } /* text property */ .md-vertical-align-middle { vertical-align: middle !important;} .md-vertical-align-top { vertical-align: top !important;} .md-line-break { display:block !important;} /* z-index */ .md-z-index-1 {z-index:1 !important;} .md-z-index-0 {z-index:0 !important;} .md-z-index-minus2 {z-index:-2 !important;} /* text */ .md-text-center { text-align: center !important} .md-text-left { text-align: left !important} .md-text-right { text-align: right !important} /* different text size */ .md-text-extra-small { font-size:10px !important; line-height:15px!important;} .md-text-small { font-size:11px !important; line-height:15px!important;} .md-text-medium{ font-size:14px !important; line-height:25px !important;} .md-text-large { font-size: 15px !important; line-height: 20px !important; } .md-text-extra-large { font-size: 18px !important; line-height: 25px !important; } .md-title-small{ font-size:18px !important; line-height:25px !important;} .md-title-medium{ font-size:24px !important; line-height:28px !important;} .md-title-large{ font-size:28px !important; line-height:34px !important;} .md-title-extra-large{ font-size:35px !important; line-height:40px !important;} .md-title-extra-large-2{ font-size:40px !important; line-height:48px !important;} .md-title-extra-large-3{ font-size:50px !important; line-height:50px !important;} .md-title-extra-large-4{ font-size:70px !important; line-height:50px !important;} .md-title-extra-large-5{ font-size:80px !important; line-height:50px !important;} .md-title-big { font-size:80px !important; line-height:90px !important;} .md-title-big2 { font-size: 125px !important; line-height:125px !important;} .md-title-big3 { font-size: 150px !important; line-height:150px !important;} /* line height */ .md-line-height-normal {line-height: normal !important} .md-line-height-0{ line-height: 0px !important;} .md-line-height-10{ line-height: 10px !important;} .md-line-height-15{ line-height: 15px !important;} .md-line-height-18{ line-height: 18px !important;} .md-line-height-20{ line-height: 20px !important;} .md-line-height-22{ line-height: 22px !important;} .md-line-height-24{ line-height: 24px !important;} .md-line-height-26{ line-height: 26px !important;} .md-line-height-30{ line-height: 30px !important;} .md-line-height-34{ line-height: 34px !important;} .md-line-height-40{ line-height: 40px !important;} .md-line-height-45{ line-height: 45px !important;} .md-line-height-48{ line-height: 48px !important;} .md-line-height-50 {line-height: 50px !important;} .md-line-height-55{ line-height: 55px !important;} .md-line-height-60 {line-height: 60px !important;} .md-line-height-65{ line-height: 65px !important;} .md-line-height-70{ line-height: 70px !important;} .md-line-height-75{ line-height: 75px !important;} .md-line-height-80{ line-height: 80px !important;} .md-line-height-85{ line-height: 85px !important;} .md-line-height-90{ line-height: 90px !important;} /* letter spacing */ .md-no-letter-spacing { letter-spacing: 0px !important} .md-letter-spacing-1 { letter-spacing:1px !important} .md-letter-spacing-2 { letter-spacing:2px !important} .md-letter-spacing-3 { letter-spacing:3px !important} /* font weight */ .md-font-weight-100 { font-weight:100 !important} .md-font-weight-400 { font-weight:400 !important} .md-font-weight-600 { font-weight:600 !important} .md-font-weight-700 { font-weight:700 !important} .md-font-weight-800 { font-weight:800 !important} /* icon */ .md-icon-extra-large {font-size:60px !important;} .md-icon-large {font-size:50px !important;} .md-icon-medium { font-size:40px !important; margin-bottom: 15px !important; } .md-icon-extra-small { font-size:25px !important;} .md-icon-small { font-size:18px !important;} /* float */ .md-pull-left { float: left !important} .md-pull-right { float: right !important} .md-float-none { float: none !important} /*header*/ .navbar-header {background: none} .header-style4 .header-bottom li a::before { right: -21px;} .navbar li { margin: 13px 16px;} .navbar .nav-button{margin: 10px 0 8px 10px;} .navbar-toggle{margin:4px 0;} /*slider*/ .slider-style1 .slider-title { font-size: 60px !important; line-height: 70px !important;} .slider-style1 .slider-text { font-size: 18px !important;} /*contact*/ .contact-form-style1 .contact-details .details-box .details-text.last { padding-left: 20px;} /*team*/ .team-style1 .team { height: 435px;} .team-style1 .team-details { bottom: -145px; padding: 25px 0;} /* clients */ .client-logo ul li { width: 15%;} /* subscribe */ .footer-style1 input {width: 280px;} /**/ .tab-style5 .nav-tabs li a {margin: 0 23px;} .tab-style1 .nav-tabs li a {padding: 7px 20px 6px;} .tab-style2 .nav-tabs li {float: left; margin: 0 20px;} .header-style2 li a::before{right:-19px;} /* tab style 2 */ .panel-group * { transition-timing-function: none; -moz-transition-timing-function: none; -webkit-transition-timing-function: none; -o-transition-timing-function: none; transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; -o-transition-duration: 0s; } /* team style 5 */ .team-style5 .team-details {padding:12%;} /* team style 6 */ .team-style6 .team { max-height: 490px; } /* contact style 6 */ .contact-form-style6 .contact-details { padding: 30px 15px;} .tab-style1 ul{height:auto;} h3 {font-size:28px; line-height:33px;} /* Pricing table */ .pricing-box-style1 .pricing-features{padding:30px;} .pricing-box-style4 .pricing-features{padding:30px 30px 0 30px;} .pricing-box-style4 .pricing-box { padding:45px 0;} /* client */ .client-logo-inner img { max-width: 220px; } .clients-section2 .outside-arrow-simple .owl-buttons .owl-prev{left:-50px; background:transparent;} .clients-section2 .outside-arrow-simple .owl-buttons .owl-next{right:-50px; background:transparent;} /* call to action1 */ .offer-box-right li{ margin: 0 0 15px !important;} /* header style 5 */ .header-style5 .social { float: right; margin: 12px 0 9px 18px;} .md-no-owl-buttons .owl-buttons { display: none;} /* footer-7 & footer-15 */ footer ul.links-inline li:first-child a { margin-left: 0; } } @media (max-width: 1050px) { /* agency */ .header-style8 .navbar { padding: 20px;} .header-style8 .shrink-transparent-header.shrink { padding: 11px 15px;} .tab-style6 .nav-tabs-light li a {margin: 0 25px 0 0;} .clients-section2 .outside-arrow-simple .owl-buttons .owl-prev{left:0px;} .clients-section2 .outside-arrow-simple .owl-buttons .owl-next{right:0px;} .small-screen {height: 350px;} .one-second-screen {height: 400px;} .one-third-screen {height: 500px;} .one-fourth-screen {height: 600px;} .one-fifth-screen {height: 700px;} .one-sixth-screen {height: 800px;} } @media (max-width: 991px) { /* margin */ .sm-margin-one-half{margin:0.5% !important} .sm-margin-one{margin:1% !important} .sm-margin-two{margin:1.5% !important} .sm-margin-three{margin:2% !important} .sm-margin-four{margin:2.5% !important} .sm-margin-five{margin:3% !important} .sm-margin-six{margin:3.5% !important} .sm-margin-seven{margin:4% !important} .sm-margin-eight {margin:4.5% !important} .sm-margin-nine {margin:5% !important} .sm-margin-ten{ margin:5.5% !important} .sm-margin-eleven{ margin:6% !important} .sm-margin-twelve{ margin:6.5% !important} .sm-margin-thirteen{ margin:7% !important} .sm-margin-fourteen{ margin:7.5% !important} .sm-margin-fifteen{ margin:8% !important} .sm-margin-sixteen{ margin:8.5% !important} .sm-margin-seventeen{ margin:9% !important} .sm-margin-eighteen{ margin:9.5% !important} .sm-margin-nineteen{ margin:10% !important} .sm-margin-twenty{ margin:10.5% !important} .sm-margin-twenty-one{ margin:11% !important} .sm-margin-twenty-two{ margin:11.5% !important} .sm-margin-twenty-three{ margin:12% !important} .sm-margin-twenty-four{ margin:12.5% !important} .sm-margin-twenty-five{ margin:13% !important} .sm-margin-twenty-six{ margin:13.4% !important} .sm-margin-twenty-seven{ margin:14% !important} .sm-margin-twenty-eight{ margin:14.5% !important} .sm-margin-twenty-nine{ margin:15% !important} .sm-margin-thirty{ margin:15.5% !important} .sm-margin-thirty-one{margin:16% !important} .sm-margin-thirty-two{margin:16.5% !important} .sm-margin-thirty-three{margin:17% !important} .sm-margin-thirty-four{margin:17.5% !important} .sm-margin-thirty-five{margin:18% !important} .sm-no-margin{ margin:0 !important} .sm-no-margin-lr{ margin-left: 0 !important; margin-right: 0 !important} .sm-no-margin-tb{ margin-top: 0 !important; margin-bottom: 0 !important} .sm-no-margin-top{ margin-top:0 !important} .sm-no-margin-bottom{ margin-bottom:0 !important} .sm-no-margin-left{ margin-left:0 !important} .sm-no-margin-right{ margin-right:0 !important} .sm-margin-lr-auto {margin-left:auto !important; margin-right:auto !important} /* margin-bottom */ .sm-margin-one-half-bottom{margin-bottom: 0.5% !important} .sm-margin-one-bottom{margin-bottom:1% !important} .sm-margin-two-bottom{margin-bottom:1.5% !important} .sm-margin-three-bottom{margin-bottom:2% !important} .sm-margin-four-bottom{margin-bottom:2.5% !important} .sm-margin-five-bottom{margin-bottom:3% !important} .sm-margin-six-bottom{margin-bottom:3.5% !important} .sm-margin-seven-bottom{margin-bottom:4% !important} .sm-margin-eight-bottom {margin-bottom:4.5% !important} .sm-margin-nine-bottom{margin-bottom:5% !important} .sm-margin-ten-bottom{margin-bottom:5.5% !important} .sm-margin-eleven-bottom{margin-bottom:6% !important} .sm-margin-twelve-bottom{margin-bottom:6.5% !important} .sm-margin-thirteen-bottom{margin-bottom:7% !important} .sm-margin-fourteen-bottom{margin-bottom:7.5% !important} .sm-margin-fifteen-bottom{margin-bottom:8% !important} .sm-margin-sixteen-bottom{margin-bottom:8.5% !important} .sm-margin-seventeen-bottom{margin-bottom:9% !important} .sm-margin-eighteen-bottom{margin-bottom:9.5% !important} .sm-margin-nineteen-bottom{margin-bottom:10% !important} .sm-margin-twenty-bottom{margin-bottom:10.5% !important} .sm-margin-twenty-one-bottom{margin-bottom:11% !important} .sm-margin-twenty-two-bottom{margin-bottom:11.5% !important} .sm-margin-twenty-three-bottom{margin-bottom:12% !important} .sm-margin-twenty-four-bottom{margin-bottom:12.5% !important} .sm-margin-twenty-five-bottom{margin-bottom:13% !important} .sm-margin-twenty-six-bottom{margin-bottom:13.5% !important} .sm-margin-twenty-seven-bottom{margin-bottom:14% !important} .sm-margin-twenty-eight-bottom{margin-bottom:14.5% !important} .sm-margin-twenty-nine-bottom{margin-bottom:15% !important} .sm-margin-thirty-bottom{margin-bottom:15.5% !important} .sm-margin-thirty-one-bottom{margin-bottom:16% !important} .sm-margin-thirty-two-bottom{margin-bottom:16.5% !important} .sm-margin-thirty-three-bottom{margin-bottom:17% !important} .sm-margin-thirty-four-bottom{margin-bottom:17.5% !important} .sm-margin-thirty-five-bottom{margin-bottom:18% !important} .sm-margin-bottom-10px{ margin-bottom:10px !important} .sm-margin-bottom-20px{ margin-bottom:20px !important} /* margin-top */ .sm-margin-one-half-top{margin-top: 0.5% !important} .sm-margin-one-top{margin-top:1% !important} .sm-margin-two-top{margin-top:1.5% !important} .sm-margin-three-top{margin-top:2% !important} .sm-margin-four-top{margin-top:2.5% !important} .sm-margin-five-top{margin-top:3% !important} .sm-margin-six-top{margin-top:3.5% !important} .sm-margin-seven-top{margin-top:4% !important} .sm-margin-eight-top {margin-top:4.5% !important} .sm-margin-nine-top{margin-top:5% !important} .sm-margin-ten-top{margin-top:5.5% !important} .sm-margin-eleven-top{margin-top:6% !important} .sm-margin-twelve-top{margin-top:6.5% !important} .sm-margin-thirteen-top{margin-top:7% !important} .sm-margin-fourteen-top{margin-top:7.5% !important} .sm-margin-fifteen-top{margin-top:8% !important} .sm-margin-sixteen-top{margin-top:8.5% !important} .sm-margin-seventeen-top{margin-top:9% !important} .sm-margin-eighteen-top{margin-top:9.5% !important} .sm-margin-nineteen-top{margin-top:10% !important} .sm-margin-twenty-top{margin-top:10.5% !important} .sm-margin-twenty-one-top{margin-top:11% !important} .sm-margin-twenty-two-top{margin-top:11.5% !important} .sm-margin-twenty-three-top{margin-top:12% !important} .sm-margin-twenty-four-top{margin-top:12.5% !important} .sm-margin-twenty-five-top{margin-top:13% !important} .sm-margin-twenty-six-top{margin-top:13.5% !important} .sm-margin-twenty-seven-top{margin-top:14% !important} .sm-margin-twenty-eight-top{margin-top:14.5% !important} .sm-margin-twenty-nine-top{margin-top:15% !important} .sm-margin-thirty-top{margin-top:15.5% !important} .sm-margin-thirty-one-top{margin-top:16% !important} .sm-margin-thirty-two-top{margin-top:16.5% !important} .sm-margin-thirty-three-top{margin-top:17% !important} .sm-margin-thirty-four-top{margin-top:17.5% !important} .sm-margin-thirty-five-top{margin-top:18% !important} .sm-margin-top-10px{ margin-top:10px !important} /* margin left */ .sm-margin-one-half-left {margin-left:0.5% !important} .sm-margin-one-left {margin-left:1% !important} .sm-margin-two-left {margin-left:1.5% !important} .sm-margin-three-left {margin-left:2% !important} .sm-margin-four-left {margin-left:2.5% !important} .sm-margin-five-left {margin-left:3% !important} .sm-margin-six-left {margin-left:3.5% !important} .sm-margin-seven-left {margin-left:4% !important} .sm-margin-eight-left {margin-left:4.5% !important} .sm-margin-nine-left {margin-left:5% !important} .sm-margin-ten-left {margin-left:5.5% !important} .sm-margin-eleven-left {margin-left:6% !important} .sm-margin-twelve-left {margin-left:6.5% !important} .sm-margin-thirteen-left {margin-left:7% !important} .sm-margin-fourteen-left {margin-left:7.5% !important} .sm-margin-fifteen-left {margin-left:8% !important} .sm-margin-sixteen-left {margin-left:8.5% !important} .sm-margin-seventeen-left{margin-left:9% !important} .sm-margin-eighteen-left {margin-left:9.5% !important} .sm-margin-nineteen-left {margin-left:10% !important} .sm-margin-twenty-left{margin-left:10.5% !important} .sm-margin-twenty-one-left{margin-left:11% !important} .sm-margin-twenty-two-left{margin-left:11.5% !important} .sm-margin-twenty-three-left{margin-left:12% !important} .sm-margin-twenty-four-left{margin-left:12.5% !important} .sm-margin-twenty-five-left{margin-left:13% !important} .sm-margin-twenty-six-left{margin-left:13.5% !important} .sm-margin-twenty-seven-left{margin-left:14% !important} .sm-margin-twenty-eight-left{margin-left:14.5% !important} .sm-margin-twenty-nine-left{margin-left:15% !important} .sm-margin-left-15px{ margin-left:15px !important} /* margin right */ .sm-margin-one-half-right {margin-right:0.5% !important} .sm-margin-one-right {margin-right:1% !important} .sm-margin-two-right {margin-right:1.5% !important} .sm-margin-three-right {margin-right:2% !important} .sm-margin-four-right {margin-right:2.5% !important} .sm-margin-five-right {margin-right:3% !important} .sm-margin-six-right {margin-right:3.5% !important} .sm-margin-seven-right {margin-right:4% !important} .sm-margin-eight-right {margin-right:4.5% !important} .sm-margin-nine-right {margin-right:5% !important} .sm-margin-ten-right {margin-right:5.5% !important} .sm-margin-eleven-right {margin-right:6% !important} .sm-margin-twelve-right {margin-right:6.5% !important} .sm-margin-thirteen-right {margin-right:7% !important} .sm-margin-fourteen-right {margin-right:7.5% !important} .sm-margin-fifteen-right {margin-right:8% !important} .sm-margin-sixteen-right {margin-right:8.5% !important} .sm-margin-seventeen-right{margin-right:9% !important} .sm-margin-eighteen-right {margin-right:9.5% !important} .sm-margin-nineteen-right {margin-right:10% !important} .sm-margin-twenty-right{margin-right:10.5% !important} .sm-margin-twenty-one-right{margin-right:11% !important} .sm-margin-twenty-two-right{margin-right:11.5% !important} .sm-margin-twenty-three-right{margin-right:12% !important} .sm-margin-twenty-four-right{margin-right:12.5% !important} .sm-margin-twenty-five-right{margin-right:13% !important} .sm-margin-twenty-six-right{margin-right:13.5% !important} .sm-margin-twenty-seven-right{margin-right:14% !important} .sm-margin-twenty-eight-right{margin-right:14.5% !important} .sm-margin-twenty-nine-right{margin-right:15% !important} /* padding */ .sm-padding-one-half{padding:0.5% !important} .sm-padding-one{padding:1% !important} .sm-padding-two{padding:1.5% !important} .sm-padding-three{padding:2% !important} .sm-padding-four{padding:2.5% !important} .sm-padding-five{padding:3% !important} .sm-padding-six{padding:3.5% !important} .sm-padding-seven{padding:4% !important} .sm-padding-eight {padding:4.5% !important} .sm-padding-nine {padding:5% !important} .sm-padding-ten{ padding:5.5% !important} .sm-padding-eleven{ padding:6% !important} .sm-padding-twelve{ padding:6.5% !important} .sm-padding-thirteen{ padding:7% !important} .sm-padding-fourteen{ padding:7.5% !important} .sm-padding-fifteen{ padding:8% !important} .sm-padding-sixteen{ padding:8.5% !important} .sm-padding-seventeen{ padding:9% !important} .sm-padding-eighteen{ padding:9.5% !important} .sm-padding-nineteen{ padding:10% !important} .sm-padding-twenty{ padding:10.5% !important} .sm-padding-twenty-one{ padding:11% !important} .sm-padding-twenty-two{ padding:11.5% !important} .sm-padding-twenty-three{ padding:12% !important} .sm-padding-twenty-four{ padding:12.5% !important} .sm-padding-twenty-five{ padding:13% !important} .sm-padding-twenty-six{ padding:13.4% !important} .sm-padding-twenty-seven{ padding:14% !important} .sm-padding-twenty-eight{ padding:14.5% !important} .sm-padding-twenty-nine{ padding:15% !important} .sm-padding-thirty{ padding:15.5% !important} .sm-padding-thirty-one{padding:16% !important} .sm-padding-thirty-two{padding:16.5% !important} .sm-padding-thirty-three{padding:17% !important} .sm-padding-thirty-four{padding:17.5% !important} .sm-padding-thirty-five{padding:18% !important} .sm-no-padding{ padding:0 !important} .sm-no-padding-lr{ padding-left: 0 !important; padding-right: 0 !important} .sm-no-padding-tb{ padding-top: 0 !important; padding-bottom: 0 !important} .sm-no-padding-top{ padding-top:0 !important} .sm-no-padding-bottom{ padding-bottom:0 !important} .sm-no-padding-left{ padding-left:0 !important} .sm-no-padding-right{ padding-right:0 !important} .sm-no-padding-15{ padding-left: 15px !important; padding-right: 15px !important;} .sm-padding-15{padding: 15px 15px;} .sm-padding-15px-tb { padding-bottom: 15px !important; padding-top: 15px !important;} /* padding top */ .sm-padding-one-half-top {padding-top:0.5% !important} .sm-padding-one-top {padding-top:1% !important} .sm-padding-two-top {padding-top:1.5% !important} .sm-padding-three-top {padding-top:2% !important} .sm-padding-four-top {padding-top:2.5% !important} .sm-padding-five-top {padding-top:3% !important} .sm-padding-six-top {padding-top:3.5% !important} .sm-padding-seven-top {padding-top:4% !important} .sm-padding-eight-top {padding-top:4.5% !important} .sm-padding-nine-top {padding-top:5% !important} .sm-padding-ten-top {padding-top:5.5% !important} .sm-padding-eleven-top {padding-top:6% !important} .sm-padding-twelve-top {padding-top:6.5% !important} .sm-padding-thirteen-top {padding-top:7% !important} .sm-padding-fourteen-top {padding-top:7.5% !important} .sm-padding-fifteen-top {padding-top:8% !important} .sm-padding-sixteen-top {padding-top:8.5% !important} .sm-padding-seventeen-top{padding-top:9% !important} .sm-padding-eighteen-top {padding-top:9.5% !important} .sm-padding-nineteen-top {padding-top:10% !important} .sm-padding-twenty-top{padding-top:10.5% !important} .sm-padding-twenty-one-top{padding-top:11% !important} .sm-padding-twenty-two-top{padding-top:11.5% !important} .sm-padding-twenty-three-top{padding-top:12% !important} .sm-padding-twenty-four-top{padding-top:12.5% !important} .sm-padding-twenty-five-top{padding-top:13% !important} .sm-padding-twenty-six-top{padding-top:13.5% !important} .sm-padding-twenty-seven-top{padding-top:14% !important} .sm-padding-twenty-eight-top{padding-top:14.5% !important} .sm-padding-twenty-nine-top{padding-top:15% !important} .sm-padding-top-5px{ padding-top:5px !important;} .sm-padding-top-10px{ padding-top:10px !important;} .sm-padding-top-15px{ padding-top:15px !important;} .sm-padding-top-20px{ padding-top:20px !important;} .sm-padding-top-25px{ padding-top:25px !important;} .sm-padding-top-30px{ padding-top:30px !important;} .sm-padding-top-35px{ padding-top:35px !important;} .sm-padding-top-40px{ padding-top:40px !important;} .sm-padding-top-45px{ padding-top:45px !important;} .sm-padding-top-50px{ padding-top:50px !important;} .sm-padding-top-55px{ padding-top:55px !important;} .sm-padding-top-60px{ padding-top:60px !important;} .sm-padding-top-65px{ padding-top:65px !important;} .sm-padding-top-70px{ padding-top:70px !important;} .sm-padding-top-75px{ padding-top:75px !important;} .sm-padding-top-80px{ padding-top:80px !important;} /* padding bottom */ .sm-padding-one-half-bottom {padding-bottom:0.5% !important} .sm-padding-one-bottom {padding-bottom:1% !important} .sm-padding-two-bottom {padding-bottom:1.5% !important} .sm-padding-three-bottom {padding-bottom:2% !important} .sm-padding-four-bottom {padding-bottom:2.5% !important} .sm-padding-five-bottom {padding-bottom:3% !important} .sm-padding-six-bottom {padding-bottom:3.5% !important} .sm-padding-seven-bottom {padding-bottom:4% !important} .sm-padding-eight-bottom {padding-bottom:4.5% !important} .sm-padding-nine-bottom {padding-bottom:5% !important} .sm-padding-ten-bottom {padding-bottom:5.5% !important} .sm-padding-eleven-bottom {padding-bottom:6% !important} .sm-padding-twelve-bottom {padding-bottom:6.5% !important} .sm-padding-thirteen-bottom {padding-bottom:7% !important} .sm-padding-fourteen-bottom {padding-bottom:7.5% !important} .sm-padding-fifteen-bottom {padding-bottom:8% !important} .sm-padding-sixteen-bottom {padding-bottom:8.5% !important} .sm-padding-seventeen-bottom{padding-bottom:9% !important} .sm-padding-eighteen-bottom {padding-bottom:9.5% !important} .sm-padding-nineteen-bottom {padding-bottom:10% !important} .sm-padding-twenty-bottom{padding-bottom:10.5% !important} .sm-padding-twenty-one-bottom{padding-bottom:11% !important} .sm-padding-twenty-two-bottom{padding-bottom:11.5% !important} .sm-padding-twenty-three-bottom{padding-bottom:12% !important} .sm-padding-twenty-four-bottom{padding-bottom:12.5% !important} .sm-padding-twenty-five-bottom{padding-bottom:13% !important} .sm-padding-twenty-six-bottom{padding-bottom:13.5% !important} .sm-padding-twenty-seven-bottom{padding-bottom:14% !important} .sm-padding-twenty-eight-bottom{padding-bottom:14.5% !important} .sm-padding-twenty-nine-bottom{padding-bottom:15% !important} .sm-padding-bottom-5px{ padding-bottom:5px !important;} .sm-padding-bottom-10px{ padding-bottom:10px !important;} .sm-padding-bottom-15px{ padding-bottom:15px !important;} .sm-padding-bottom-20px{ padding-bottom:20px !important;} .sm-padding-bottom-25px{ padding-bottom:25px !important;} .sm-padding-bottom-30px{ padding-bottom:30px !important;} .sm-padding-bottom-35px{ padding-bottom:35px !important;} .sm-padding-bottom-40px{ padding-bottom:40px !important;} .sm-padding-bottom-45px{ padding-bottom:45px !important;} .sm-padding-bottom-50px{ padding-bottom:50px !important;} /* padding left */ .sm-padding-one-half-left {padding-left:0.5% !important} .sm-padding-one-left {padding-left:1% !important} .sm-padding-two-left {padding-left:1.5% !important} .sm-padding-three-left {padding-left:2% !important} .sm-padding-four-left {padding-left:2.5% !important} .sm-padding-five-left {padding-left:3% !important} .sm-padding-six-left {padding-left:3.5% !important} .sm-padding-seven-left {padding-left:4% !important} .sm-padding-eight-left {padding-left:4.5% !important} .sm-padding-nine-left {padding-left:5% !important} .sm-padding-ten-left {padding-left:5.5% !important} .sm-padding-eleven-left {padding-left:6% !important} .sm-padding-twelve-left {padding-left:6.5% !important} .sm-padding-thirteen-left {padding-left:7% !important} .sm-padding-fourteen-left {padding-left:7.5% !important} .sm-padding-fifteen-left {padding-left:8% !important} .sm-padding-sixteen-left {padding-left:8.5% !important} .sm-padding-seventeen-left{padding-left:9% !important} .sm-padding-eighteen-left {padding-left:9.5% !important} .sm-padding-nineteen-left {padding-left:10% !important} .sm-padding-twenty-left{padding-left:10.5% !important} .sm-padding-twenty-one-left{padding-left:11% !important} .sm-padding-twenty-two-left{padding-left:11.5% !important} .sm-padding-twenty-three-left{padding-left:12% !important} .sm-padding-twenty-four-left{padding-left:12.5% !important} .sm-padding-twenty-five-left{padding-left:13% !important} .sm-padding-twenty-six-left{padding-left:13.5% !important} .sm-padding-twenty-seven-left{padding-left:14% !important} .sm-padding-twenty-eight-left{padding-left:14.5% !important} .sm-padding-twenty-nine-left{padding-left:15% !important} .sm-padding-left-5px{ padding-left:5px !important;} .sm-padding-left-10px{ padding-left:10px !important;} .sm-padding-left-15px{ padding-left:15px !important;} .sm-padding-left-20px{ padding-left:20px !important;} .sm-padding-left-25px{ padding-left:25px !important;} .sm-padding-left-30px{ padding-left:30px !important;} .sm-padding-left-35px{ padding-left:35px !important;} .sm-padding-left-40px{ padding-left:40px !important;} .sm-padding-left-45px{ padding-left:45px !important;} .sm-padding-left-50px{ padding-left:50px !important;} .sm-padding-left-55px{ padding-left:55px !important;} .sm-padding-left-60px{ padding-left:60px !important;} .sm-padding-left-65px{ padding-left:65px !important;} .sm-padding-left-70px{ padding-left:70px !important;} .sm-padding-left-75px{ padding-left:75px !important;} .sm-padding-left-80px{ padding-left:80px !important;} /* padding right */ .sm-padding-one-half-right {padding-right:0.5% !important} .sm-padding-one-right {padding-right:1% !important} .sm-padding-two-right {padding-right:1.5% !important} .sm-padding-three-right {padding-right:2% !important} .sm-padding-four-right {padding-right:2.5% !important} .sm-padding-five-right {padding-right:3% !important} .sm-padding-six-right {padding-right:3.5% !important} .sm-padding-seven-right {padding-right:4% !important} .sm-padding-eight-right {padding-right:4.5% !important} .sm-padding-nine-right {padding-right:5% !important} .sm-padding-ten-right {padding-right:5.5% !important} .sm-padding-eleven-right {padding-right:6% !important} .sm-padding-twelve-right {padding-right:6.5% !important} .sm-padding-thirteen-right {padding-right:7% !important} .sm-padding-fourteen-right {padding-right:7.5% !important} .sm-padding-fifteen-right {padding-right:8% !important} .sm-padding-sixteen-right {padding-right:8.5% !important} .sm-padding-seventeen-right{padding-right:9% !important} .sm-padding-eighteen-right {padding-right:9.5% !important} .sm-padding-nineteen-right {padding-right:10% !important} .sm-padding-twenty-right{padding-right:10.5% !important} .sm-padding-twenty-one-right{padding-right:11% !important} .sm-padding-twenty-two-right{padding-right:11.5% !important} .sm-padding-twenty-three-right{padding-right:12% !important} .sm-padding-twenty-four-right{padding-right:12.5% !important} .sm-padding-twenty-five-right{padding-right:13% !important} .sm-padding-twenty-six-right{padding-right:13.5% !important} .sm-padding-twenty-seven-right{padding-right:14% !important} .sm-padding-twenty-eight-right{padding-right:14.5% !important} .sm-padding-twenty-nine-right{padding-right:15% !important} /* heading */ h1 { font-size: 40px; line-height: 40px;} /* section-title */ .section-title1 { padding-bottom: 15px;} .sm-section-title1{padding-bottom:15px;} /* border */ .sm-no-border { border:none !important} .sm-border-bottom-medium-dark { border-bottom: 1px solid rgba(0, 0, 0, 0.1);} /* display */ .sm-display-block { display: block !important} .sm-overflow-hidden{ overflow: hidden !important} .sm-display-inline-block { display: inline-block !important} .sm-display-inline { display: inline !important} .sm-display-none { display: none !important} .sm-display-inline-table { display: inline-table;} /* position */ .sm-position-relative{ position: relative !important; z-index: 5 } .sm-position-absolute {position: absolute !important;} .sm-position-inherit {position: inherit !important;} .sm-position-right { right:0 !important; } .sm-position-left { left:0 !important; } .sm-position-top { top:0 !important; } /* color */ .sm-text-white{ color:#FFF !important} .sm-text-black{ color:#000 !important} /* top */ .sm-top-minus0 {top: 0 !important} .sm-top-minus1 {top: -1px !important} .sm-top-minus2 {top: -2px !important} .sm-top-minus3 {top: -3px !important} .sm-top-minus4 {top: -4px !important} .sm-top-minus5 {top: -5px !important} .sm-top-minus6 {top: -6px !important} .sm-top-minus7 {top: -7px !important} .sm-top-minus8 {top: -8px !important} .sm-top-minus9 {top: -9px !important} .sm-top-minus10 {top: -10px !important} .sm-top-3{top: 3px !important;} .sm-top-4{top: 4px !important;} .sm-top-5{top: 5px !important;} /* width */ .sm-width { display: inline-block; position: relative; width: 90%; } .sm-width-20 { width:20% !important;} .sm-width-30 { width:30% !important;} .sm-width-40 { width:40% !important;} .sm-width-50 { width:50% !important;} .sm-width-60 { width:60% !important;} .sm-width-70 { width:70% !important;} .sm-width-80 { width:80% !important;} .sm-width-90 { width:90% !important;} .sm-width-100 { width:100% !important;} .sm-width-20px { width:20px !important;} .sm-width-30px { width:30px !important;} .sm-width-40px { width:40px !important;} .sm-width-50px { width:50px !important;} .sm-width-60px { width:60px !important;} .sm-width-70px { width:70px !important;} .sm-width-80px { width:80px !important;} .sm-width-90px { width:90px !important;} .sm-width-100px { width:100px !important;} .sm-width-120px { width:120px !important;} .sm-width-140px { width:140px !important;} .sm-width-auto { width: auto !important;} .sm-container-fluid { width: 100% !important;} /* height */ .sm-height-100 { height: 100% !important} .sm-height-auto { height:auto !important} .sm-min-height-auto { height: auto !important} .sm-height-100-px { height: 100px !important;} .sm-height-200-px { height: 200px !important;} .sm-height-300-px { height: 300px !important;} .sm-height-350-px { height: 350px !important;} .sm-height-400-px { height: 400px !important;} .sm-height-500-px { height: 500px !important;} .sm-height-600-px { height: 600px !important;} .sm-height-700-px { height: 700px !important;} .sm-height-800-px { height: 800px !important;} /* section height */ .sm-one-second-screen {height: 450px;} .sm-one-third-screen {height: 500px;} .sm-one-fourth-screen {height: 600px;} .sm-one-fifth-screen {height: 650px;} .sm-one-sixth-screen {height: 750px;} /* custom */ .sm-clear-both{ clear:both} .sm-no-transition * { transition-timing-function: none; -moz-transition-timing-function: none; -webkit-transition-timing-function: none; -o-transition-timing-function: none; transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; -o-transition-duration: 0s; } /* text property */ .sm-vertical-align-middle { vertical-align: middle !important;} .sm-vertical-align-top { vertical-align: top !important;} .sm-line-break { display:block !important;} /* z-index */ .sm-z-index-1 {z-index:1 !important;} .sm-z-index-0 {z-index:0 !important;} .sm-z-index-minus2 {z-index:-2 !important;} /* text */ .sm-text-center { text-align: center !important} .sm-text-left { text-align: left !important} .sm-text-right { text-align: right !important} /* different text size */ .sm-text-extra-small { font-size:10px !important; line-height:15px!important;} .sm-text-small { font-size:11px !important; line-height:17px!important;} .sm-text-medium{ font-size:13px !important; line-height:22px !important;} .sm-text-large { font-size:14px !important; line-height:24px !important; } .sm-text-extra-large { font-size: 15px !important; line-height:22px !important; } .sm-title-small { font-size:16px !important; line-height:24px !important;} .sm-title-medium{ font-size:20px !important; line-height:26px !important;} .sm-title-large{ font-size:25px !important; line-height:33px !important;} .sm-title-extra-large{ font-size:30px !important; line-height:38px !important;} .sm-title-extra-large-2{ font-size:38px !important; line-height:40px !important;} .sm-title-extra-large-3{ font-size:38px !important; line-height:40px !important;} .sm-title-extra-large-4{ font-size:60px !important; line-height:68px !important;} .sm-title-extra-large-5{ font-size:70px !important; line-height:75px !important;} .sm-title-big { font-size:70px !important; line-height:77px !important;} .sm-title-big2 { font-size: 110px !important; line-height:115px !important;} .sm-title-big3 { font-size: 130px !important; line-height:130px !important;} .sm-section-title-large { font-size: 35px !important; line-height: 39px !important;} .sm-section-title-medium { font-size:25px !important; line-height: 30px !important;} .sm-section-title-small { font-size: 22px !important; line-height: 24px !important;} /* letter spacing */ .sm-no-letter-spacing { letter-spacing: 0px !important} .sm-letter-spacing-1 { letter-spacing:1px !important} .sm-letter-spacing-2 { letter-spacing:2px !important} .sm-letter-spacing-3 { letter-spacing:3px !important} /* font weight */ .sm-font-weight-100 { font-weight:100 !important} .sm-font-weight-400 { font-weight:400 !important} .sm-font-weight-600 { font-weight:600 !important} .sm-font-weight-700 { font-weight:700 !important} .sm-font-weight-800 { font-weight:800 !important} /* line height */ .sm-line-height-normal {line-height: normal !important} .sm-line-height-0{ line-height: 0px !important;} .sm-line-height-10{ line-height: 10px !important;} .sm-line-height-15{ line-height: 15px !important;} .sm-line-height-18{ line-height: 18px !important;} .sm-line-height-20{ line-height: 20px !important;} .sm-line-height-22{ line-height: 22px !important;} .sm-line-height-24{ line-height: 24px !important;} .sm-line-height-26{ line-height: 26px !important;} .sm-line-height-30{ line-height: 30px !important;} .sm-line-height-34{ line-height: 34px !important;} .sm-line-height-40{ line-height: 40px !important;} .sm-line-height-45{ line-height: 45px !important;} .sm-line-height-48{ line-height: 48px !important;} .sm-line-height-50 {line-height: 50px !important;} .sm-line-height-55{ line-height: 55px !important;} .sm-line-height-60 {line-height: 60px !important;} .sm-line-height-65{ line-height: 65px !important;} .sm-line-height-70{ line-height: 70px !important;} .sm-line-height-75{ line-height: 75px !important;} .sm-line-height-80{ line-height: 80px !important;} .sm-line-height-85{ line-height: 85px !important;} .sm-line-height-90{ line-height: 90px !important;} /* background image */ .parallax-fix { background-attachment: inherit !important} /* icon */ .sm-icon-extra-large {font-size:60px !important;} .sm-icon-large {font-size:50px !important;} .sm-icon-medium { font-size:40px !important; margin-bottom: 15px !important; } .sm-icon-extra-small { font-size:25px !important;} .sm-icon-small { font-size:18px !important;} /* float */ .sm-pull-left { float: left !important} .sm-pull-right { float: right !important} .sm-float-none { float: none !important} /* br */ .sm-br-display-none br { display: none !important} /* header */ .header-style1 li a::before, .header-style2 li a::before { display: none;} .navbar-toggle { background-color: #000; border-radius: 0; margin-right: 0; display: block; cursor: pointer !important;} .navbar-toggle .icon-bar {background: #fff;} .navbar-collapse {box-shadow: none; background:rgba(0,0,0,.90); width: 100%; position: absolute; top: 90px;} .navbar.shrink .navbar-collapse {top:53px;} .header-style8 .navbar.shrink .navbar-collapse {top:64px;} .navbar-collapse.collapse {display: none!important;} .navbar-nav { padding: 25px 10px; } .navbar li { margin: 0 15px; padding: 12px 0 11px; border-bottom: 1px solid rgba(255,255,255,.15);} .navbar li:last-child { border: none;} header .nav-button a.text-black, header .nav-button.active a.text-black, header .nav-button a.text-black:hover, .header-style9 .black-header.navbar li.nav-button a:hover, .header-style9 .black-header.navbar li.nav-button.active a:hover, .dark-header.navbar li.nav-button.active a {color:#000 !important;} .navbar li a:hover, .navbar li a.active, .header-style1 .black-header.navbar li a:hover, .header-style1 .black-header.navbar li a.active, .header-style3 .black-header.navbar li a:hover, .header-style3 .black-header.navbar li a.active, .header-style4 .white-header .header-bottom li a:hover, .header-style4 .white-header .header-bottom li a.active, .header-style5 .black-header.navbar li a:hover, .header-style5 .black-header.navbar li a.active, .header-style9 .black-header.navbar li a:hover, .header-style9 .black-header.navbar li a.active, .shrink-transparent-header-light.shrink.navbar li a:hover, .shrink-transparent-header-light.shrink.navbar li a.active, .dark-header.navbar li.active a, .light-header.navbar li.active > a{ opacity: 1; color: rgba(255,255,255,0.7) !important; border-bottom:1px solid transparent; } .shrink-transparent-header-light.shrink.navbar li a { color: #fff;} .shrink-transparent-header-light.shrink.navbar .nav-button a { border: 2px solid #fff;} .navbar-nav>li {float: none; } .collapse.in{display:block !important;} .navbar-nav {width: 100%;} .navbar .container {width: 100%} .navbar * { transition-timing-function: none; -moz-transition-timing-function: none; -webkit-transition-timing-function: none; -o-transition-timing-function: none; transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; -o-transition-duration: 0s; } .navbar li:last-child { margin-right: 15px;} .navbar .nav-button { margin: 15px 15px;} .navbar li a { color: #fff} .header-style1 .nav-button:last-child { margin: 15px 15px;} .header-style1 .nav-button .join-us {padding: 0 !important;} .header-style3 .logo { text-align: left; border: 0; padding-bottom: 0; margin-bottom: 0;} .header-style3 .navbar li { display: block; float: none; margin: 0 13px; text-align: left;} .header-style4 .navbar-collapse { top: 57px;} .header-style4 .header-bottom { padding: 15px 0; } .header-style4 .header-bottom li a::before { display: none;} .header-style4 .white-header .header-bottom li a { color: #ffffff;} .header-style4 .header-bottom li { margin: 0 15px; } .navbar .nav-button { margin-left: 20px;} .navbar-collapse { top:62px; left: 0;} .navbar .nav-button { margin: 15px 15px;} .header-style5 .social { margin: 10px 30px 0 0;} .header-style6 .one-fourth-screen { height: 500px;} .header-style6 h1 { line-height: 50px;} .header-style7 .header-banner span.date { margin-bottom: 30px;} .header-style7 .header-banner h1 { font-size: 38px !important;} .header-style8 .navbar-collapse { top: 82px; } .header-style8 .one-fourth-screen { height: 550px;} .header-style8 .header-banner .banner-title { font-size: 45px;} .header-style13 .social a { margin: 0 6px; } .header-style14 .social a { margin: 0 6px; } .header-style15 .social a { margin: 0 6px; } .header-margin-top { margin-top: 82px; } .header-margin-top-big { margin-top: 82px; } .header-margin-top-medium { margin-top: 115px; } .header-style9 .navbar-collapse { top:82px;} .header-style9 .navbar.shrink .navbar-collapse { top: 64px; } /* dropdown menu */ .dropdown-menu, .navbar-nav>li>.dropdown-menu { position: inherit; top: 0; min-width: 100%; padding: 0; border-radius: 0; background-color: transparent; margin: 0; border: 0; float: none; display: block; } .navbar li ul > li { border-bottom: 1px solid rgba(255,255,255,0.15); padding: 9px 0 8px; margin: 0 10px; } .navbar li ul > li:last-child { padding-bottom: 0;} .navbar-collapse.in { overflow-y: auto; } .navbar-collapse { background: rgba(0,0,0,.9)} .navbar li a:hover, .navbar li.active > a,.dropdown-menu>li>a:hover, .dropdown-menu>li.active>a, .dropdown-menu>li>a:focus { color: #bbbbbb;} .navbar-nav .open .dropdown-menu>li>a {line-height: 1.42857143;} .navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu>li>a {padding: 0;} /* hero style 3 */ .hero-style3 .one-fourth-screen {height: 500px;} /* hero style 4 */ .hero-style4 .one-third-screen {height: 454px !important;} /* hero style 5 */ .hero-style5 .one-fourth-screen { height: 570px !important;} /* hero style 6 */ .hero-style6 .one-third-screen {height: 570px !important;} /* hero style 13 */ .hero-style13 .one-third-screen {height: 500px !important;} /* hero style 14 */ .hero-style14 .one-fourth-screen {height: 500px !important;} /* hero style 15 */ /* .form-subscribe form { width: 410px;}*/ /* slider */ .slider-style1 .one-fourth-screen { height: 650px;} /* feature */ .feature-style1 .content-box { margin-top: 30px;} /* blog */ .blog-style2 figure {padding: 30px 15px 0;} .blog-style1 .post-details { padding: 20px 15px;} .blog-style1 .post-author { letter-spacing: 0;} /* work */ .grid-style1 .grid figcaption h3 { font-size: 18px;} .grid-style2 .grid figcaption { padding: 30px 15px;} .gutter-wide .grid-gallery ul { margin-left: -20px; } .gutter-wide .grid li { padding: 0 0 20px 20px; } .grid-style4 .grid figure:hover h3 { bottom: 23px; } .grid-style4 .grid h3 { left: 25px;} .work-4col .grid li { width: 50%;} .work-5col .grid li {width: 50%;} /* tab */ .tab-style4 ul { padding: 20px; text-align: center;} .tab-style4 ul li { margin: 0 0 20px;} .tab-style4 li i { width: 100% !important; text-align: center; margin: 0 0 7px 0;} .tab-style4 li::before { top: 23px;} .team-style4 .team-details {height: 52%;} .blog-style3 .post-details { padding: 10px;} .blog-style3 .post-author { font-size: 12px; letter-spacing: 0;} .blog-style3 .post-details a { min-height: 40px; line-height: 20px !important;} .tab-style5 .nav li { margin:0;} .tab-style5 .nav-tabs { margin: 0 0 15px;} .tab-style5 .nav-tabs li a{ margin: 0 10px; font-size: 11px;} .tab-style2 .nav-tabs li { margin: 0 9px;} .tab-style5-content{ min-height: 0;} .tab-style6 .nav-tabs-light li { margin: 0 10px 0 0; } /*contact*/ .contact-form-style1 .contact-details .details-box { margin-bottom: 13px;} .contact-form-style1 .contact-details .details-box .details-text.last { margin-top: 9px; padding-left: 54px;} /* content style 2 */ .content-style2 .date-box { font-size: 15px; padding: 9px 10px 8px; } /*team*/ .team-style1 .team { height: 346px;} .team-style1 .team-details { bottom: -160px;} /* team style 1 */ .team-style6 .team { height: 480px; overflow: hidden; position: relative;} /* team style 4 */ .about-style3 .about-text { padding: 5.5%;} /* team style 6 */ .team-style6 .team { max-height: 385px; } .team-style6 .team:hover .team-details { bottom: 130px; } /* owl-pagination */ .owl-buttons .owl-prev { left: 20px;} .owl-buttons .owl-next { right: 20px;} .sm-show-pagination .owl-pagination{ display: block;} .sm-no-owl-buttons .owl-buttons { display: none;} /* subscribe */ .footer-style1 input {width: 280px; margin-left: 0;} /*social*/ .footer-style1 .social{ margin-top: 30px;} .newsletter span{ display: inline-block;} /* call-to-action4 */ .call-to-action4 .one-fourth-screen { height: 570px !important;} /* call-to-action7 */ .call-to-action7 .one-third-screen { height: 570px !important;} /* call to action1 */ .offer-box-right li{ width: auto;} /* Round Image */ .img-round-250 { height: 170px; width: 170px; } /* Grid box */ .three-column > div:nth-child(3n+1) { clear: none; } .three-column > div:nth-child(2n+1) { clear: both; } .four-column > div:nth-child(4n+1) { clear: none; } .four-column > div:nth-child(2n+1) { clear: both; } .six-column > div:nth-child(6n+1) { clear: none; } .six-column > div:nth-child(2n+1) { clear: both; } .sm-padding-nav-btn, .navbar .nav-button a.sm-padding-nav-btn{padding: 6px 20px !important;} .sm-bg-bitter-sweet{background: #f3605c;} .sm-bg-white{background:#fff !important;} .sm-bg-bitter-sweet:hover{opacity:.6;} .sm-padding-left-15{padding-left:15px !important;} .sm-padding-right-15{padding-right:15px !important;} /* testimonial-style7 */ .testimonial-style7 .testimonial-box { padding: 25px 15px; } /* outside next-prev arrow */ .outside-arrow .owl-buttons .owl-next { font-size: 20px; height: 40px; padding: 8px 0 0 10px; width: 40px; right: 0;} .outside-arrow .owl-buttons .owl-prev { font-size: 20px; height: 40px; padding: 8px 0 0 10px; width: 40px; left: 0;} .btn.btn-extra-large {font-size:14px; padding:12px 24px !important; line-height: 16px;} .tab-style8 .nav-tabs li{margin:0; padding: 0;} .tab-style8 .nav-tabs li a{line-height:38px; padding:0 17px;} .sm-equalize-auto > div{height:auto !important;} h3 {font-size:26px; line-height:31px;} /* Pricing table */ .pricing-box-style1 .pricing-features{padding:22px;} .pricing-box-style4 .pricing-features{padding:22px 22px 0 22px;} .pricing-box-style4 .pricing-box { padding: 30px 0;} .pricing-box-style6 .pricing-box{padding:20px;} .pricing-box-style6 .pricing-title {padding: 25px 20px;} /*equalize display table inherit*/ .equalize.equalize-display-inherit.sm-equalize-auto .display-table-cell-vertical-middle { top: inherit; -webkit-transform: none; -moz-transform: none; -o-transform: none; -ms-transform: none; transform: none; position: inherit;} .equalize.equalize-display-inherit.sm-equalize-auto .display-table-cell-vertical-bottom { display: inherit !important; top: inherit; bottom: inherit; -webkit-transform: none; -moz-transform: none; -o-transform: none; -ms-transform: none; transform: none; position: inherit;} /* header style 13 */ .header-style13 .navbar { padding: 21px 0; } .header-style13 .navbar.shrink-nav.shrink { padding: 16px 0; } /* header style 14 */ .header-style14 .navbar { padding: 21px 0; } .header-style14 .navbar.shrink-nav.shrink { padding: 16px 0; } /* header style 12 */ .header-style12 .navbar { padding: 21px 0; } .header-style12 .navbar.shrink-nav.shrink { padding: 16px 0; } /* header style 7 */ .event-counter .counter-box { height: 120px; width: 120px; padding: 24px 0; margin-right: 20px;} .event-counter .counter-box .number { font-size: 40px; line-height: 45px; } } @media (max-width: 767px) { h3 {font-size:23px; line-height:28px;} /* Heading */ h1{ font-size: 25px !important; line-height: 30px;} /* center col */ .xs-center-col{ float:none !important; margin-left:auto !important; margin-right:auto !important} /* border */ .xs-no-border { border:none !important} .xs-separator-line-thick { height: 4px; margin: 0 auto; width: 30px; margin:7% auto} /* margin */ .xs-margin-one-half{margin:0.5% !important} .xs-margin-one{margin:1% !important} .xs-margin-two{margin:1.5% !important} .xs-margin-three{margin:2% !important} .xs-margin-four{margin:2.5% !important} .xs-margin-five{margin:3% !important} .xs-margin-six{margin:3.5% !important} .xs-margin-seven{margin:4% !important} .xs-margin-eight {margin:4.5% !important} .xs-margin-nine {margin:5% !important} .xs-margin-ten{ margin:5.5% !important} .xs-margin-eleven{ margin:6% !important} .xs-margin-twelve{ margin:6.5% !important} .xs-margin-thirteen{ margin:7% !important} .xs-margin-fourteen{ margin:7.5% !important} .xs-margin-fifteen{ margin:8% !important} .xs-margin-sixteen{ margin:8.5% !important} .xs-margin-seventeen{ margin:9% !important} .xs-margin-eighteen{ margin:9.5% !important} .xs-margin-nineteen{ margin:10% !important} .xs-margin-twenty{ margin:10.5% !important} .xs-margin-twenty-one{ margin:11% !important} .xs-margin-twenty-two{ margin:11.5% !important} .xs-margin-twenty-three{ margin:12% !important} .xs-margin-twenty-four{ margin:12.5% !important} .xs-margin-twenty-five{ margin:13% !important} .xs-margin-twenty-six{ margin:13.4% !important} .xs-margin-twenty-seven{ margin:14% !important} .xs-margin-twenty-eight{ margin:14.5% !important} .xs-margin-twenty-nine{ margin:15% !important} .xs-margin-thirty{ margin:15.5% !important} .xs-margin-thirty-one{margin:16% !important} .xs-margin-thirty-two{margin:16.5% !important} .xs-margin-thirty-three{margin:17% !important} .xs-margin-thirty-four{margin:17.5% !important} .xs-margin-thirty-five{margin:18% !important} .xs-no-margin{ margin:0 !important} .xs-no-margin-lr{ margin-left: 0 !important; margin-right: 0 !important} .xs-no-margin-tb{ margin-top: 0 !important; margin-bottom: 0 !important} .xs-no-margin-top{ margin-top:0 !important} .xs-no-margin-bottom{ margin-bottom:0 !important} .xs-no-margin-left{ margin-left:0 !important} .xs-no-margin-right{ margin-right:0 !important} .xs-margin-lr-auto {margin-left:auto !important; margin-right:auto !important} /* margin-bottom */ .xs-margin-one-half-bottom{margin-bottom: 0.5% !important} .xs-margin-one-bottom{margin-bottom:1% !important} .xs-margin-two-bottom{margin-bottom:1.5% !important} .xs-margin-three-bottom{margin-bottom:2% !important} .xs-margin-four-bottom{margin-bottom:2.5% !important} .xs-margin-five-bottom{margin-bottom:3% !important} .xs-margin-six-bottom{margin-bottom:3.5% !important} .xs-margin-seven-bottom{margin-bottom:4% !important} .xs-margin-eight-bottom {margin-bottom:4.5% !important} .xs-margin-nine-bottom{margin-bottom:5% !important} .xs-margin-ten-bottom{margin-bottom:5.5% !important} .xs-margin-eleven-bottom{margin-bottom:6% !important} .xs-margin-twelve-bottom{margin-bottom:6.5% !important} .xs-margin-thirteen-bottom{margin-bottom:7% !important} .xs-margin-fourteen-bottom{margin-bottom:7.5% !important} .xs-margin-fifteen-bottom{margin-bottom:8% !important} .xs-margin-sixteen-bottom{margin-bottom:8.5% !important} .xs-margin-seventeen-bottom{margin-bottom:9% !important} .xs-margin-eighteen-bottom{margin-bottom:9.5% !important} .xs-margin-nineteen-bottom{margin-bottom:10% !important} .xs-margin-twenty-bottom{margin-bottom:10.5% !important} .xs-margin-twenty-one-bottom{margin-bottom:11% !important} .xs-margin-twenty-two-bottom{margin-bottom:11.5% !important} .xs-margin-twenty-three-bottom{margin-bottom:12% !important} .xs-margin-twenty-four-bottom{margin-bottom:12.5% !important} .xs-margin-twenty-five-bottom{margin-bottom:13% !important} .xs-margin-twenty-six-bottom{margin-bottom:13.5% !important} .xs-margin-twenty-seven-bottom{margin-bottom:14% !important} .xs-margin-twenty-eight-bottom{margin-bottom:14.5% !important} .xs-margin-twenty-nine-bottom{margin-bottom:15% !important} .xs-margin-thirty-bottom{margin-bottom:15.5% !important} .xs-margin-thirty-one-bottom{margin-bottom:16% !important} .xs-margin-thirty-two-bottom{margin-bottom:16.5% !important} .xs-margin-thirty-three-bottom{margin-bottom:17% !important} .xs-margin-thirty-four-bottom{margin-bottom:17.5% !important} .xs-margin-thirty-five-bottom{margin-bottom:18% !important} .xs-margin-bottom-5px{ margin-bottom:5px !important} .xs-margin-bottom-10px{ margin-bottom:10px !important} .xs-margin-bottom-15px{ margin-bottom:15px !important} .xs-margin-bottom-20px{ margin-bottom:20px !important} /* margin-top */ .xs-margin-one-half-top{margin-top: 0.5% !important} .xs-margin-one-top{margin-top:1% !important} .xs-margin-two-top{margin-top:1.5% !important} .xs-margin-three-top{margin-top:2% !important} .xs-margin-four-top{margin-top:2.5% !important} .xs-margin-five-top{margin-top:3% !important} .xs-margin-six-top{margin-top:3.5% !important} .xs-margin-seven-top{margin-top:4% !important} .xs-margin-eight-top {margin-top:4.5% !important} .xs-margin-nine-top{margin-top:5% !important} .xs-margin-ten-top{margin-top:5.5% !important} .xs-margin-eleven-top{margin-top:6% !important} .xs-margin-twelve-top{margin-top:6.5% !important} .xs-margin-thirteen-top{margin-top:7% !important} .xs-margin-fourteen-top{margin-top:7.5% !important} .xs-margin-fifteen-top{margin-top:8% !important} .xs-margin-sixteen-top{margin-top:8.5% !important} .xs-margin-seventeen-top{margin-top:9% !important} .xs-margin-eighteen-top{margin-top:9.5% !important} .xs-margin-nineteen-top{margin-top:10% !important} .xs-margin-twenty-top{margin-top:10.5% !important} .xs-margin-twenty-one-top{margin-top:11% !important} .xs-margin-twenty-two-top{margin-top:11.5% !important} .xs-margin-twenty-three-top{margin-top:12% !important} .xs-margin-twenty-four-top{margin-top:12.5% !important} .xs-margin-twenty-five-top{margin-top:13% !important} .xs-margin-twenty-six-top{margin-top:13.5% !important} .xs-margin-twenty-seven-top{margin-top:14% !important} .xs-margin-twenty-eight-top{margin-top:14.5% !important} .xs-margin-twenty-nine-top{margin-top:15% !important} .xs-margin-thirty-top{margin-top:15.5% !important} .xs-margin-thirty-one-top{margin-top:16% !important} .xs-margin-thirty-two-top{margin-top:16.5% !important} .xs-margin-thirty-three-top{margin-top:17% !important} .xs-margin-thirty-four-top{margin-top:17.5% !important} .xs-margin-thirty-five-top{margin-top:18% !important} .xs-margin-top-10px{ margin-top:10px !important} .xs-margin-top-15px{ margin-top:15px !important} /* margin left */ .xs-margin-one-half-left {margin-left:0.5% !important} .xs-margin-one-left {margin-left:1% !important} .xs-margin-two-left {margin-left:1.5% !important} .xs-margin-three-left {margin-left:2% !important} .xs-margin-four-left {margin-left:2.5% !important} .xs-margin-five-left {margin-left:3% !important} .xs-margin-six-left {margin-left:3.5% !important} .xs-margin-seven-left {margin-left:4% !important} .xs-margin-eight-left {margin-left:4.5% !important} .xs-margin-nine-left {margin-left:5% !important} .xs-margin-ten-left {margin-left:5.5% !important} .xs-margin-eleven-left {margin-left:6% !important} .xs-margin-twelve-left {margin-left:6.5% !important} .xs-margin-thirteen-left {margin-left:7% !important} .xs-margin-fourteen-left {margin-left:7.5% !important} .xs-margin-fifteen-left {margin-left:8% !important} .xs-margin-sixteen-left {margin-left:8.5% !important} .xs-margin-seventeen-left{margin-left:9% !important} .xs-margin-eighteen-left {margin-left:9.5% !important} .xs-margin-nineteen-left {margin-left:10% !important} .xs-margin-twenty-left{margin-left:10.5% !important} .xs-margin-twenty-one-left{margin-left:11% !important} .xs-margin-twenty-two-left{margin-left:11.5% !important} .xs-margin-twenty-three-left{margin-left:12% !important} .xs-margin-twenty-four-left{margin-left:12.5% !important} .xs-margin-twenty-five-left{margin-left:13% !important} .xs-margin-twenty-six-left{margin-left:13.5% !important} .xs-margin-twenty-seven-left{margin-left:14% !important} .xs-margin-twenty-eight-left{margin-left:14.5% !important} .xs-margin-twenty-nine-left{margin-left:15% !important} .xs-margin-left-10px{ margin-left:10px !important} .xs-margin-left-15px{ margin-left:15px !important} /* margin right */ .xs-margin-one-half-right {margin-right:0.5% !important} .xs-margin-one-right {margin-right:1% !important} .xs-margin-two-right {margin-right:1.5% !important} .xs-margin-three-right {margin-right:2% !important} .xs-margin-four-right {margin-right:2.5% !important} .xs-margin-five-right {margin-right:3% !important} .xs-margin-six-right {margin-right:3.5% !important} .xs-margin-seven-right {margin-right:4% !important} .xs-margin-eight-right {margin-right:4.5% !important} .xs-margin-nine-right {margin-right:5% !important} .xs-margin-ten-right {margin-right:5.5% !important} .xs-margin-eleven-right {margin-right:6% !important} .xs-margin-twelve-right {margin-right:6.5% !important} .xs-margin-thirteen-right {margin-right:7% !important} .xs-margin-fourteen-right {margin-right:7.5% !important} .xs-margin-fifteen-right {margin-right:8% !important} .xs-margin-sixteen-right {margin-right:8.5% !important} .xs-margin-seventeen-right{margin-right:9% !important} .xs-margin-eighteen-right {margin-right:9.5% !important} .xs-margin-nineteen-right {margin-right:10% !important} .xs-margin-twenty-right{margin-right:10.5% !important} .xs-margin-twenty-one-right{margin-right:11% !important} .xs-margin-twenty-two-right{margin-right:11.5% !important} .xs-margin-twenty-three-right{margin-right:12% !important} .xs-margin-twenty-four-right{margin-right:12.5% !important} .xs-margin-twenty-five-right{margin-right:13% !important} .xs-margin-twenty-six-right{margin-right:13.5% !important} .xs-margin-twenty-seven-right{margin-right:14% !important} .xs-margin-twenty-eight-right{margin-right:14.5% !important} .xs-margin-twenty-nine-right{margin-right:15% !important} .xs-margin-right-10px{ margin-right:10px !important} .xs-margin-right-15px{ margin-right:15px !important} /* padding */ .xs-padding-one-half{padding:0.5% !important} .xs-padding-one{padding:1% !important} .xs-padding-two{padding:1.5% !important} .xs-padding-three{padding:2% !important} .xs-padding-four{padding:2.5% !important} .xs-padding-five{padding:3% !important} .xs-padding-six{padding:3.5% !important} .xs-padding-seven{padding:4% !important} .xs-padding-eight {padding:4.5% !important} .xs-padding-nine {padding:5% !important} .xs-padding-ten{ padding:5.5% !important} .xs-padding-eleven{ padding:6% !important} .xs-padding-twelve{ padding:6.5% !important} .xs-padding-thirteen{ padding:7% !important} .xs-padding-fourteen{ padding:7.5% !important} .xs-padding-fifteen{ padding:8% !important} .xs-padding-sixteen{ padding:8.5% !important} .xs-padding-seventeen{ padding:9% !important} .xs-padding-eighteen{ padding:9.5% !important} .xs-padding-nineteen{ padding:10% !important} .xs-padding-twenty{ padding:10.5% !important} .xs-padding-twenty-one{ padding:11% !important} .xs-padding-twenty-two{ padding:11.5% !important} .xs-padding-twenty-three{ padding:12% !important} .xs-padding-twenty-four{ padding:12.5% !important} .xs-padding-twenty-five{ padding:13% !important} .xs-padding-twenty-six{ padding:13.4% !important} .xs-padding-twenty-seven{ padding:14% !important} .xs-padding-twenty-eight{ padding:14.5% !important} .xs-padding-twenty-nine{ padding:15% !important} .xs-padding-thirty{ padding:15.5% !important} .xs-padding-thirty-one{padding:16% !important} .xs-padding-thirty-two{padding:16.5% !important} .xs-padding-thirty-three{padding:17% !important} .xs-padding-thirty-four{padding:17.5% !important} .xs-padding-thirty-five{padding:18% !important} /* padding left */ .xs-padding-one-half-left {padding-left:0.5% !important} .xs-padding-one-left {padding-left:1% !important} .xs-padding-two-left {padding-left:1.5% !important} .xs-padding-three-left {padding-left:2% !important} .xs-padding-four-left {padding-left:2.5% !important} .xs-padding-five-left {padding-left:3% !important} .xs-padding-six-left {padding-left:3.5% !important} .xs-padding-seven-left {padding-left:4% !important} .xs-padding-eight-left {padding-left:4.5% !important} .xs-padding-nine-left {padding-left:5% !important} .xs-padding-ten-left {padding-left:5.5% !important} .xs-padding-eleven-left {padding-left:6% !important} .xs-padding-twelve-left {padding-left:6.5% !important} .xs-padding-thirteen-left {padding-left:7% !important} .xs-padding-fourteen-left {padding-left:7.5% !important} .xs-padding-fifteen-left {padding-left:8% !important} .xs-padding-sixteen-left {padding-left:8.5% !important} .xs-padding-seventeen-left{padding-left:9% !important} .xs-padding-eighteen-left {padding-left:9.5% !important} .xs-padding-nineteen-left {padding-left:10% !important} .xs-padding-twenty-left{padding-left:10.5% !important} .xs-padding-twenty-one-left{padding-left:11% !important} .xs-padding-twenty-two-left{padding-left:11.5% !important} .xs-padding-twenty-three-left{padding-left:12% !important} .xs-padding-twenty-four-left{padding-left:12.5% !important} .xs-padding-twenty-five-left{padding-left:13% !important} .xs-padding-twenty-six-left{padding-left:13.5% !important} .xs-padding-twenty-seven-left{padding-left:14% !important} .xs-padding-twenty-eight-left{padding-left:14.5% !important} .xs-padding-twenty-nine-left{padding-left:15% !important} .xs-padding-left-5px{ padding-left:5px !important;} .xs-padding-left-10px{ padding-left:10px !important;} .xs-padding-left-15px{ padding-left:15px !important;} .xs-padding-left-20px{ padding-left:20px !important;} .xs-padding-left-25px{ padding-left:25px !important;} .xs-padding-left-30px{ padding-left:30px !important;} .xs-padding-left-35px{ padding-left:35px !important;} .xs-padding-left-40px{ padding-left:40px !important;} .xs-padding-left-45px{ padding-left:45px !important;} .xs-padding-left-50px{ padding-left:50px !important;} .xs-padding-left-55px{ padding-left:55px !important;} .xs-padding-left-60px{ padding-left:60px !important;} .xs-padding-left-65px{ padding-left:65px !important;} .xs-padding-left-70px{ padding-left:70px !important;} .xs-padding-left-75px{ padding-left:75px !important;} .xs-padding-left-80px{ padding-left:80px !important;} /* padding right */ .xs-padding-one-half-right {padding-right:0.5% !important} .xs-padding-one-right {padding-right:1% !important} .xs-padding-two-right {padding-right:1.5% !important} .xs-padding-three-right {padding-right:2% !important} .xs-padding-four-right {padding-right:2.5% !important} .xs-padding-five-right {padding-right:3% !important} .xs-padding-six-right {padding-right:3.5% !important} .xs-padding-seven-right {padding-right:4% !important} .xs-padding-eight-right {padding-right:4.5% !important} .xs-padding-nine-right {padding-right:5% !important} .xs-padding-ten-right {padding-right:5.5% !important} .xs-padding-eleven-right {padding-right:6% !important} .xs-padding-twelve-right {padding-right:6.5% !important} .xs-padding-thirteen-right {padding-right:7% !important} .xs-padding-fourteen-right {padding-right:7.5% !important} .xs-padding-fifteen-right {padding-right:8% !important} .xs-padding-sixteen-right {padding-right:8.5% !important} .xs-padding-seventeen-right{padding-right:9% !important} .xs-padding-eighteen-right {padding-right:9.5% !important} .xs-padding-nineteen-right {padding-right:10% !important} .xs-padding-twenty-right{padding-right:10.5% !important} .xs-padding-twenty-one-right{padding-right:11% !important} .xs-padding-twenty-two-right{padding-right:11.5% !important} .xs-padding-twenty-three-right{padding-right:12% !important} .xs-padding-twenty-four-right{padding-right:12.5% !important} .xs-padding-twenty-five-right{padding-right:13% !important} .xs-padding-twenty-six-right{padding-right:13.5% !important} .xs-padding-twenty-seven-right{padding-right:14% !important} .xs-padding-twenty-eight-right{padding-right:14.5% !important} .xs-padding-twenty-nine-right{padding-right:15% !important} /* padding top */ .xs-padding-one-half-top {padding-top:0.5% !important} .xs-padding-one-top {padding-top:1% !important} .xs-padding-two-top {padding-top:1.5% !important} .xs-padding-three-top {padding-top:2% !important} .xs-padding-four-top {padding-top:2.5% !important} .xs-padding-five-top {padding-top:3% !important} .xs-padding-six-top {padding-top:3.5% !important} .xs-padding-seven-top {padding-top:4% !important} .xs-padding-eight-top {padding-top:4.5% !important} .xs-padding-nine-top {padding-top:5% !important} .xs-padding-ten-top {padding-top:5.5% !important} .xs-padding-eleven-top {padding-top:6% !important} .xs-padding-twelve-top {padding-top:6.5% !important} .xs-padding-thirteen-top {padding-top:7% !important} .xs-padding-fourteen-top {padding-top:7.5% !important} .xs-padding-fifteen-top {padding-top:8% !important} .xs-padding-sixteen-top {padding-top:8.5% !important} .xs-padding-seventeen-top{padding-top:9% !important} .xs-padding-eighteen-top {padding-top:9.5% !important} .xs-padding-nineteen-top {padding-top:10% !important} .xs-padding-twenty-top{padding-top:10.5% !important} .xs-padding-twenty-one-top{padding-top:11% !important} .xs-padding-twenty-two-top{padding-top:11.5% !important} .xs-padding-twenty-three-top{padding-top:12% !important} .xs-padding-twenty-four-top{padding-top:12.5% !important} .xs-padding-twenty-five-top{padding-top:13% !important} .xs-padding-twenty-six-top{padding-top:13.5% !important} .xs-padding-twenty-seven-top{padding-top:14% !important} .xs-padding-twenty-eight-top{padding-top:14.5% !important} .xs-padding-twenty-nine-top{padding-top:15% !important} .xs-padding-top-5px{ padding-top:5px !important;} .xs-padding-top-10px{ padding-top:10px !important;} .xs-padding-top-15px{ padding-top:15px !important;} .xs-padding-top-20px{ padding-top:20px !important;} .xs-padding-top-25px{ padding-top:25px !important;} .xs-padding-top-30px{ padding-top:30px !important;} .xs-padding-top-35px{ padding-top:35px !important;} .xs-padding-top-40px{ padding-top:40px !important;} .xs-padding-top-45px{ padding-top:45px !important;} .xs-padding-top-50px{ padding-top:50px !important;} .xs-padding-top-55px{ padding-top:55px !important;} .xs-padding-top-60px{ padding-top:60px !important;} .xs-padding-top-65px{ padding-top:65px !important;} .xs-padding-top-70px{ padding-top:70px !important;} .xs-padding-top-75px{ padding-top:75px !important;} .xs-padding-top-80px{ padding-top:80px !important;} /* padding bottom */ .xs-padding-one-half-bottom {padding-bottom:0.5% !important} .xs-padding-one-bottom {padding-bottom:1% !important} .xs-padding-two-bottom {padding-bottom:1.5% !important} .xs-padding-three-bottom {padding-bottom:2% !important} .xs-padding-four-bottom {padding-bottom:2.5% !important} .xs-padding-five-bottom {padding-bottom:3% !important} .xs-padding-six-bottom {padding-bottom:3.5% !important} .xs-padding-seven-bottom {padding-bottom:4% !important} .xs-padding-eight-bottom {padding-bottom:4.5% !important} .xs-padding-nine-bottom {padding-bottom:5% !important} .xs-padding-ten-bottom {padding-bottom:5.5% !important} .xs-padding-eleven-bottom {padding-bottom:6% !important} .xs-padding-twelve-bottom {padding-bottom:6.5% !important} .xs-padding-thirteen-bottom {padding-bottom:7% !important} .xs-padding-fourteen-bottom {padding-bottom:7.5% !important} .xs-padding-fifteen-bottom {padding-bottom:8% !important} .xs-padding-sixteen-bottom {padding-bottom:8.5% !important} .xs-padding-seventeen-bottom{padding-bottom:9% !important} .xs-padding-eighteen-bottom {padding-bottom:9.5% !important} .xs-padding-nineteen-bottom {padding-bottom:10% !important} .xs-padding-twenty-bottom{padding-bottom:10.5% !important} .xs-padding-twenty-one-bottom{padding-bottom:11% !important} .xs-padding-twenty-two-bottom{padding-bottom:11.5% !important} .xs-padding-twenty-three-bottom{padding-bottom:12% !important} .xs-padding-twenty-four-bottom{padding-bottom:12.5% !important} .xs-padding-twenty-five-bottom{padding-bottom:13% !important} .xs-padding-twenty-six-bottom{padding-bottom:13.5% !important} .xs-padding-twenty-seven-bottom{padding-bottom:14% !important} .xs-padding-twenty-eight-bottom{padding-bottom:14.5% !important} .xs-padding-twenty-nine-bottom{padding-bottom:15% !important} .xs-padding-top-5px{ padding-top:5px !important;} .xs-padding-top-10px{ padding-top:10px !important;} .xs-padding-top-15px{ padding-top:15px !important;} .xs-padding-top-20px{ padding-top:20px !important;} .xs-padding-top-25px{ padding-top:25px !important;} .xs-padding-top-30px{ padding-top:30px !important;} .xs-padding-top-35px{ padding-top:35px !important;} .xs-padding-top-40px{ padding-top:40px !important;} .xs-padding-top-45px{ padding-top:45px !important;} .xs-padding-top-50px{ padding-top:50px !important;} .xs-padding-top-60px{ padding-top:60px !important;} .xs-padding-bottom-5px{ padding-bottom:5px !important;} .xs-padding-bottom-10px{ padding-bottom:10px !important;} .xs-padding-bottom-15px{ padding-bottom:15px !important;} .xs-padding-bottom-20px{ padding-bottom:20px !important;} .xs-padding-bottom-25px{ padding-bottom:25px !important;} .xs-padding-bottom-30px{ padding-bottom:30px !important;} .xs-padding-bottom-35px{ padding-bottom:35px !important;} .xs-padding-bottom-40px{ padding-bottom:40px !important;} .xs-padding-bottom-45px{ padding-bottom:45px !important;} .xs-padding-bottom-50px{ padding-bottom:50px !important;} .xs-padding-bottom-60px{ padding-bottom:60px !important;} .xs-padding-20px-tb{padding-top:20px !important; padding-bottom:20px !important;} .xs-padding-30px-tb{padding-top:30px !important; padding-bottom:30px !important;} .xs-padding-40px-tb{padding-top:40px !important; padding-bottom:40px !important;} .xs-padding-50px-tb{padding-top:50px !important; padding-bottom:50px !important;} .xs-padding-60px-tb{padding-top:60px !important; padding-bottom:60px !important;} .xs-padding-70px-tb{padding-top:70px !important; padding-bottom:70px !important;} .xs-padding-30px{padding:30px !important;} /* no padding */ .xs-no-padding{ padding:0 !important} .xs-no-padding-lr{ padding-left: 0 !important; padding-right: 0 !important} .xs-no-padding-tb{ padding-top: 0 !important; padding-bottom: 0 !important} .xs-no-padding-top{ padding-top:0 !important} .xs-no-padding-bottom{ padding-bottom:0 !important} .xs-no-padding-left{ padding-left:0 !important} .xs-no-padding-right{ padding-right:0 !important} .xs-no-padding-15{ padding-left: 15px !important; padding-right: 15px !important;} .xs-no-padding-15-left{ padding-left: 15px !important; } /* display */ .xs-display-block { display: block !important} .xs-overflow-hidden{ overflow: hidden !important} .xs-display-inline-block { display: inline-block !important} .xs-display-inline { display: inline !important} .xs-display-none { display: none !important} .xs-display-inline-table { display: inline-table;} .xs-display-table-cell { display: table-cell !important} /* position */ .xs-position-static{ position: static !important; z-index: 5 } .xs-position-relative{ position: relative !important; z-index: 5 } .xs-position-absolute {position: absolute !important;} .xs-position-right { right:0 !important; } .xs-position-left { left:0 !important; } .xs-position-top { top:0 !important; } .xs-position-fixed {position: fixed !important;} .xs-position-inherit {position: inherit !important;} /* top */ .xs-top-zero0 {top: -1px !important} .xs-top-minus1 {top: -1px !important} .xs-top-minus2 {top: -2px !important} .xs-top-minus3 {top: -3px !important} .xs-top-minus4 {top: -4px !important} .xs-top-minus5 {top: -5px !important} .xs-top-minus6 {top: -6px !important} .xs-top-minus7 {top: -7px !important} .xs-top-minus8 {top: -8px !important} .xs-top-minus9 {top: -9px !important} .xs-top-minus10 {top: -10px !important} /* width */ .xs-width { display: inline-block; position: relative; width: 90%; } .xs-width-20 { width:20% !important;} .xs-width-30 { width:30% !important;} .xs-width-40 { width:40% !important;} .xs-width-45 { width:45% !important;} .xs-width-50 { width:50% !important;} .xs-width-55 { width:55% !important;} .xs-width-60 { width:60% !important;} .xs-width-65 { width:65% !important;} .xs-width-70 { width:70% !important;} .xs-width-75 { width:75% !important;} .xs-width-80 { width:80% !important;} .xs-width-85 { width:85% !important;} .xs-width-90 { width:90% !important;} .xs-width-95 { width:95% !important;} .xs-width-100 { width:100% !important;} .xs-width-auto { width: auto !important} .xs-container-fluid { width: 100% !important;} .xs-width-20px { width:20px !important;} .xs-width-30px { width:30px !important;} .xs-width-40px { width:40px !important;} .xs-width-50px { width:50px !important;} .xs-width-60px { width:60px !important;} .xs-width-70px { width:70px !important;} .xs-width-80px { width:80px !important;} .xs-width-90px { width:90px !important;} .xs-width-100px { width:100px !important;} .xs-width-120px { width:120px !important;} .xs-width-140px { width:140px !important;} /* height */ .xs-height-100 { height: 100% !important} .xs-height-auto { height:auto !important} .xs-height-100-px { height: 100px !important} .xs-height-200-px { height: 200px !important} .xs-height-300-px { height: 300px !important} .xs-height-350-px { height: 350px !important} .xs-height-400-px { height: 400px !important} .xs-height-500-px { height: 500px !important} .xs-height-600-px { height: 600px !important} .xs-min-height-auto { height: auto !important} .xs-clear-both{ clear:both} .xs-vertical-align-middle { vertical-align: middle !important;} .xs-vertical-align-top { vertical-align: top !important;} .xs-line-break { display:block !important;} .xs-z-index-1 {z-index:1 !important;} .xs-z-index-0 {z-index:0 !important;} .xs-z-index-minus2 {z-index:-2 !important;} .xs-no-transition * { transition-timing-function: none; -moz-transition-timing-function: none; -webkit-transition-timing-function: none; -o-transition-timing-function: none; transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; -o-transition-duration: 0s; } /* line height */ .xs-line-height-normal {line-height: normal !important} .xs-line-height-0{ line-height: 0px !important;} .xs-line-height-10{ line-height: 10px !important;} .xs-line-height-15{ line-height: 15px !important;} .xs-line-height-18{ line-height: 18px !important;} .xs-line-height-20{ line-height: 20px !important;} .xs-line-height-22{ line-height: 22px !important;} .xs-line-height-24{ line-height: 24px !important;} .xs-line-height-26{ line-height: 26px !important;} .xs-line-height-30{ line-height: 30px !important;} .xs-line-height-34{ line-height: 34px !important;} .xs-line-height-40{ line-height: 40px !important;} .xs-line-height-45{ line-height: 45px !important;} .xs-line-height-48{ line-height: 48px !important;} .xs-line-height-50 {line-height: 50px !important;} .xs-line-height-55{ line-height: 55px !important;} .xs-line-height-60 {line-height: 60px !important;} .xs-line-height-65{ line-height: 65px !important;} .xs-line-height-70{ line-height: 70px !important;} .xs-line-height-75{ line-height: 75px !important;} .xs-line-height-80{ line-height: 80px !important;} .xs-line-height-85{ line-height: 85px !important;} .xs-line-height-90{ line-height: 90px !important;} /* text */ .xs-text-center { text-align: center !important} .xs-text-left { text-align: left !important} .xs-text-right { text-align: right !important} /* float */ .xs-f-right {float: right !important;} .xs-f-left {float: left !important;} .xs-fl-none {float: none !important;} /* color */ .xs{ color:#FFF !important} .xs-text-black{ color:#000 !important} .xs-text-white {color: #fff !important;} /* background position */ .xs-background-position-center-top { background-position: center top !important;} .xs-background-position-left-center { background-position: left center !important;} .xs-background-position-right-center { background-position: right center !important;} /* different text size */ .xs-text-extra-small { font-size:10px !important; line-height:15px!important;} .xs-text-small { font-size:11px !important; line-height:15px!important;} .xs-text-medium{ font-size:12px !important; line-height:17px !important;} .xs-text-large { font-size: 13px !important; line-height:18px !important; } .xs-text-extra-large { font-size: 14px !important; line-height:22px !important; } .xs-title-small{ font-size:15px !important; line-height:22px !important;} .xs-title-medium{ font-size:18px !important; line-height:24px !important;} .xs-title-large{ font-size:21px !important; line-height:25px !important;} .xs-title-extra-large{ font-size:22px !important; line-height:30px !important;} .xs-title-extra-large-2{ font-size:26px !important; line-height:32px !important;} .xs-title-extra-large-3{ font-size:32px !important; line-height:38px !important;} .xs-title-extra-large-4{ font-size:36px !important; line-height:42px !important;} .xs-title-extra-large-5{ font-size:44px !important; line-height:52px !important;} .xs-title-big { font-size:50px !important; line-height:60px !important;} .xs-title-big2 { font-size:60px !important; line-height:72px !important;} .xs-title-big3 { font-size:70px !important; line-height:80px !important;} .xs-section-title-large { font-size:27px !important; line-height:33px !important;} .xs-section-title-medium { font-size:25px !important; line-height:29px !important;} .xs-section-title-small { font-size: 25px !important; line-height:31px !important;} /* form controls */ .big-input, .big-textarea, .big-select select { padding: 10px 15px !important;} .extra-big-input, .extra-big-textarea, .extra-big-select select {padding-right: 15px !important; padding-left: 15px !important;} .input-group input, .input-group textarea, .input-group select { padding-right: 15px !important; padding-left: 15px !important; padding-top: 15px !important; padding-bottom: 15px !important;} .input-group-btn .btn.btn-large { padding: 10px 25px !important;height: 54px !important;} /* letter spacing */ .xs-no-letter-spacing { letter-spacing: 0px !important} .xs-letter-spacing-1 { letter-spacing:1px !important} .xs-letter-spacing-2 { letter-spacing:2px !important} .xs-letter-spacing-3 { letter-spacing:3px !important} /* font weight */ .xs-font-weight-100 { font-weight:100 !important} .xs-font-weight-400 { font-weight:400 !important} .xs-font-weight-600 { font-weight:600 !important} .xs-font-weight-700 { font-weight:700 !important} .xs-font-weight-800 { font-weight:800 !important} /* icon */ .xs-icon-extra-large {font-size:60px !important;} .xs-icon-large {font-size:50px !important;} .xs-icon-medium { font-size:40px !important; margin-bottom: 15px !important; } .xs-icon-medium-large { font-size:35px !important;} .xs-icon-extra-small { font-size:25px !important;} .xs-icon-small { font-size:18px !important;} /* float */ .xs-pull-left { float: left !important} .xs-pull-right { float: right !important} .xs-float-none { float: none !important} /* br */ .xs-br-display-none br { display: none !important} /* iframe */ iframe {height: auto; width: 100%;} /* alert */ .alert {padding: 15px;} .alert button.close {margin-top: -7px} /* border */ .xs-no-border { border:none !important} .img-border { border: 4px solid #fff; height: calc(100% - 20px); width: calc(100% - 20px); left: 10px; top: 10px; } .xs-border-bottom-medium-dark { border-bottom: 1px solid rgba(0, 0, 0, 0.1);} /* section height */ .xs-one-second-screen {height:400px;} .xs-one-third-screen {height:500px;} .xs-one-fourth-screen {height:600px;} .xs-one-fifth-screen {height:700px;} .xs-one-sixth-screen {height: 800px;} /* header */ /* .navbar.shrink .navbar-collapse {top:61px}*/ .navbar-nav { margin: 0;} .header-style6 .one-fourth-screen{height: 520px;} .header-style6 h1 { font-size: 35px !important;} .header-style7 .one-fourth-screen{height: 650px;} .header-style7 .header-banner, .header-style8 .header-banner{ margin-top: 100px; padding: 0;} .header-style7 .header-banner h1 { font-size: 33px !important;} .header-style8 .one-fourth-screen { height: 450px;} .header-style8 .header-banner .banner-icon { font-size: 60px;} .header-style8 .header-banner .banner-title { font-size: 38px; line-height: 48px !important;} .navbar{padding:11px 0;} .header-style13 .header-bottom {padding:11px 0;} .header-style14 .header-bottom {padding:11px 0;} .header-style4 .header-bottom { padding: 11px 0; } .header-style4 .navbar-collapse { top: 53px;} .header-style8 .navbar-collapse { top: 63px; } .header-style8 .navbar { padding: 11px 15px; } .header-margin-top { margin-top: 64px; } .header-margin-top-big { margin-top: 64px; } .header-margin-top-medium { margin-top: 134px; } .header-style9 .navbar-collapse { top: 64px; } .header-style8 .navbar.shrink .navbar-collapse {top:63px;} /* slider */ .xs-no-owl-buttons .owl-buttons { display: none;} .owl-buttons .owl-prev, .owl-buttons .owl-next { bottom: -45px; top: inherit; font-size: 15px; text-align: center; color: #fff; line-height: 25px; padding: 0; background-color: #767676; width: 26px; height: 26px; border-radius: 50%;} .owl-buttons .owl-prev:hover, .owl-buttons .owl-next:hover { background-color: #000; color: #fff;} .clients-section2 .outside-arrow-simple .owl-buttons .owl-prev:hover, .clients-section2 .outside-arrow-simple .owl-buttons .owl-next:hover { color: #282828;} .owl-buttons .owl-prev { left: 50%; margin-left: -30px;} .owl-buttons .owl-next { right: 50%; margin-right: -30px;} .outside-arrow .owl-buttons .owl-prev, .outside-arrow .owl-buttons .owl-next { bottom: -45px; top: inherit; font-size: 15px; text-align: center; line-height: 24px; padding: 0; width: 26px; height: 26px; } .outside-arrow .owl-buttons .owl-next { right: 50%; margin-right: -30px;} .outside-arrow .owl-buttons .owl-prev { left: 50%; margin-left: -30px;} .one-fourth-screen{height:auto;} .slider-style1 .slider-title, .slider-style2 .slider-title { font-size: 50px !important; line-height: 50px !important;} .slider-style1 .slider-text { letter-spacing: 0;} .slider-style1 .one-fourth-screen { height: 400px; height:auto;} .slider-style2 .slider-text { font-size: 24px; line-height: 28px; margin-top: 20px;} .slider-style3 .slider-title { font-size: 60px !important; line-height: 65px; width: 100%;} .slider-style3 .slider-text { font-size: 20px;} .slider-style5 .slider-content { margin: 0 auto; width: 450px; padding: 30px;} .slider-style5 .slider-title { font-size: 30px !important; line-height: 35px; width: 100%;} .slider-style4 .slider-content-bg .slider-title { font-size: 26px !important;line-height: 30px; padding: 27px 0 0;} .slider-style4 .slider-content-bg { width: 100%; background-size: 90%;} .slider-style4 .slider-content-bg .slider-title::after { right: 110px; top: -5px;} .slider-style6 .title-extra-large-4 span {font-size: 40px;line-height: 45px;} .slider-style6 .slider-text-middle-main { padding: 0 15px; width: 50%;} .slider-button .btn.btn-large { padding: 10px 20px !important; } /* owl-pagination */ .xs-show-pagination .owl-pagination{ display: block;} /* feature box */ .feature-style3 .feature-box .feature-text { width: 50%;} /* blog */ .blog-style1 .post-author { letter-spacing: 1px;} .blog-style1 .post-details { min-height: auto;} /* work */ .work-4col .grid li { width:100%;} .work-3col .grid li {width:100%;} .work-2col .grid li {width:100%;} .half-project-bg { height:350px;} .ajax-popup-title-text { background: transparent; padding: 0} .work-5col .grid li {width:100%;} /* team */ .team-style4 .team-details{ height: 20%; padding-top: 3%;} /* tab */ .tab-style3 li { width: 100%; float: left; text-align: left; margin: 0 0 10px;} .tab-style3 li a { border-bottom: 2px solid #bfbdbd; display: inline-block !important; padding: 0 0 10px !important; width: 100%;} .tab-style3 li.active a, .tab-style3 li:hover a { border-color: #000; border-width: 2px !important;} .tab-style4 li:hover::before, .tab-style4 li.active::before{display: none;} .tab-style1 .nav-tabs > li {float: none;} .tab-style1 .nav-tabs{ width: 100%; display: table; text-align: center;} .tab-style6 .nav-tabs{ width: 100%; display: table; text-align: center;} .tab-style6 .nav-tabs li{margin:2px 0; width:100%; padding:2px 0;} .tab-style6 .nav-tabs li a{border-bottom: 2px solid transparent; padding:6px 0;} .tab-style6 .nav-tabs-light li a:first-child{margin:0;} .tab-style8 .nav-tabs li{margin:0 0 -1px 0; width:100%; border:0;} .tab-style8 .nav-tabs li a{line-height:38px; padding:0 17px; border:1px solid #e5e5e5;} .tab-style8 .nav-tabs-light li:first-child{margin:0; border: 0;} .tab-style8 .nav-tabs > li.active > a{border:1px solid #e5e5e5; top: 0;} .tab-style8 .nav-tabs > li:first-child > a { border-bottom: 0; } .tab-style8 .tab-content { padding: 25px 0 0;} .accordion-style1 .tab-tag { padding: 0 0 0 15px} .accordion-style1 .panel-title {font-size: 15px; line-height: 25px; min-height: 48px; padding: 10px 31px 10px 45px; position: relative;} .accordion-style1 .panel-heading i {font-size: 20px; position: absolute; right: 10px; top: 19px; line-height: 10px;} .accordion-style1 .panel-title .tab-tag { left: 0; position: absolute; top: 0; font-size: 16px; line-height: 46px; width: 44px; height: 100%; margin-right: 0;} .accordion-style1 .panel-title strong{position: absolute; top: 50%; transform: translateY(-50%);vertical-align: middle;} .accordion-style1 .panel-body {padding: 20px 15px;} .tab-style2 .nav-tabs li {float: none; margin: 0 15px 20px;} .tab-style5 .nav-tabs li a{ padding: 0 0 5px; margin: 0 0 10px; font-size:13px; border-bottom: 1px solid transparent;} .tab-style7 li { width: 100%; float: left; text-align: left; margin: 0 0 10px;} .tab-style7 li a { border-bottom: 2px solid #bfbdbd; display: inline-block !important; padding: 0 0 10px !important; width: 100%;} .tab-style7 li.active a, .tab-style7 li:hover a { border-color: #bfbdbd; border-width: 2px !important;} /* blog */ .blog-style3 .post-details { padding: 30px;} .blog-style3 .post-author { letter-spacing: 1px; font-size: 12px;} .blog-style3 .post-details, .blog-style3 .post-details a { min-height: auto;} .post-thumbnail img{ width: 100%;} .blog-style2 figure {padding: 80px 30px 0;} .groom-box .groom-box-img img{ height: auto;} /* contact */ .contact-form-style1 .contact-details .details-box { margin-bottom: 20px;} .contact-form-style1 textarea { min-height: 130px;} /*team*/ .team-style1 .team { height: auto;} .team-style1 .team-details { bottom: -160px;} .team-style1 .team-details {background-color: #282828; bottom: 5px; position: relative;} .team-style1 .team-details span{ color: #fff;} /* team style 6 */ .team-style6 .team { height: auto; max-height:inherit;} .team-style6 .team-details{ padding:25px 0 0; position:relative; bottom: 0;} .team-style6 .team:hover .team-details {bottom: 0;} /* team style 3 */ .team-style3 .team-details { padding:35px; } /* team style 4 */ .about-style3 .about-text {min-height: 0; padding: 7% 5.5%;} .about-style3 .about-img {min-height: 420px;} /*content*/ .content-style1 { margin: 0 auto; width: 100%;} .section-title3 p{ width: 100%; padding:0 15px;} .content-style4 .content-text{ min-height: 0;} .separator-line3 { margin: 0 auto;} .treatments-details {left: 0; position: relative;top: 0;width: 100%;} .treatments-details-sub {position: relative; right: 0; top: 0; transform: none; width: 100%;} .groom-box .groom-box-img {height: auto; width: 100%;} .treatments-details{ height: auto;} /* call-to-action-1 */ .offer .offer-box-right ul li {margin: 0 0 15px;} .offer .offer-box-right ul li.no-margin { margin: 0 !important;} /* clients */ .client-logo ul li { width: 100%; text-align: center} /* social */ .newsletter-style1 p { width: 100%;} /* hero style 3 */ .hero-style3 .one-fourth-screen {min-height:0;} /* hero style 4 */ .hero-style4 .one-third-screen {height: 400px !important;} .hero-style4 .application-mobile {position: inherit;} .hero-style4 .slider-typography{ padding:30px 0 0;} /* hero style 5 */ .hero-style5 .one-fourth-screen { height: 400px !important;} .hero-style5 .application-mobile {position: inherit;} .hero-style5 .slider-typography{ padding:30px 0 0;} /* hero style 6 */ .hero-style6 .one-third-screen {height: 400px !important;} .hero-style6 .application-mobile {position: inherit;} .hero-style6 .slider-typography{ padding:30px 0 0;} /*hero style 9*/ .form-subscribe form {width: 100%;} /* hero style 12 */ .hero-style12 .one-third-screen {height: 350px !important;} /* hero style 13 */ .hero-style13 .application-mobile { position: inherit;} /* hero style 14 */ .hero-style14 .application-mobile { position: inherit;} /* hero style 19 */ .hero-bottom-img img { border:15px solid #000; margin: 0 5% -70px} /*hero style 11*/ .back-down { position: relative; margin: 0 0 20px} /* blog style 11 */ .post-item .post-details, .post-item .blog-image, .post-item{ display: block;} .post-item .blog-post{display: block;} /* content style 21*/ .xs-no-content-middle-center{ left: 0%; position: inherit; top: 0; transform: none;} /* subscribe-style2 */ .subscribe-style2 input { margin: 0 0 20px; width: 100%;} /* subscribe-style3 */ .subscribe-style3 input { margin: 0 0 20px; width: 100%;} /* Call to action4 */ .call-to-action4 .one-fourth-screen { height: 400px !important;} .call-to-action4 .application-mobile {position: inherit;} .call-to-action4 .slider-typography{ padding:30px 0 0;} /* Call to action7 */ .call-to-action7 .one-fourth-screen { height: 400px !important;} .call-to-action7 .application-mobile {position: inherit;} .call-to-action7 .slider-typography{ padding:30px 0 0;} /* Round Image */ .img-round { width: 170px;} .xs-display-table-cell-vertical-middle{float:left !important;} .xs-padding-15-lr{padding:0 15px !important;} .header-style3 .logo{margin-bottom:0;} .navbar-collapse { top:53px;} /* header */ .header-style5 .social a { margin: 0 6px;} .header-style9 .full-header { padding: 0 15px; } .xs-padding-left-15{padding-left:15px !important;} .xs-padding-right-15{padding-right:15px !important;} /* feature */ .feature-style1 .content-box { margin-top: 25px;} /* equalize height */ .xs-equalize-auto>div { height: auto !important} /* testimonial-style7 */ .testimonial-style9-con { padding: 30px 15px; } /* testimonial-style5 */ .testimonial-style5 .testimonial::before { content: ""; } .scroll-down{bottom:20px;} /* Counter 1 */ .time-counter .counter-box { border:none; padding:20px 45px 7px; width:100%; margin-bottom:2%;} .time-counter .counter-box .number {font-size:35px; padding-bottom:5px;} .time-counter p {font-size: 13px !important; line-height:18px !important;} .one-fifth-screen {height:700px;} .btn.btn-extra-large {font-size:13px; padding:11px 22px !important;} .xs-bg-none{background:none;} /*hero*/ .hero-style25 .input-group-btn .btn.btn-large {line-height:2px; height:52px !important; padding:11px 15px!important;} .hero-style25 .input-group input, .input-group textarea, .input-group select { margin: 0; border-radius: 4px 0 0 4px; border: none !important; padding: 13px 20px; font-size: 13px !important; } .hero-style19 .btn-dual .btn{margin:0 0;} /* tab*/ .tab-style1 .nav-tabs li a{margin:0;} .tab-style1 ul{height:auto;} /*clients*/ .clients-section2 .outside-arrow-simple .owl-buttons .owl-prev{left:30px; background:transparent;} .clients-section2 .outside-arrow-simple .owl-buttons .owl-next{right:30px; background:transparent;} .clients-section4 .client-logo-inner, .clients-section3 .client-logo-inner { height: 130px;} .owl-dark-pagination .owl-buttons .owl-prev, .owl-dark-pagination .owl-buttons .owl-next { font-size: 28px; position: inherit; display: inline-block; background: transparent; margin: 0 5px; height: auto; width: auto;} .owl-dark-pagination .owl-buttons .owl-prev:hover, .owl-dark-pagination .owl-buttons .owl-next:hover{ color: inherit;} .owl-dark-pagination .owl-buttons{ text-align: center; margin-top: 10px;} /*equalize display table inherit*/ /* .equalize.equalize-display-inherit .display-table { display: inherit !important; position: inherit;}*/ .equalize.equalize-display-inherit .display-table-cell-vertical-middle { top: inherit; -webkit-transform: none; -moz-transform: none; -o-transform: none; -ms-transform: none; transform: none; position: inherit;} .equalize.equalize-display-inherit .display-table-cell-vertical-bottom { top: inherit; bottom: inherit; -webkit-transform: none; -moz-transform: none; -o-transform: none; -ms-transform: none; transform: none; position: inherit;} /* header style 12 */ .header-style12 .navbar { padding: 16px 0;} .header-style12 .navbar.shrink-nav.shrink { padding: 16px 0;} /* header style 13 */ .header-style13 .navbar { padding: 16px 0;} .header-style13 .navbar.shrink-nav.shrink { padding: 16px 0;} /* header style 14 */ .header-style14 .navbar { padding: 16px 0;} .header-style14 .navbar.shrink-nav.shrink { padding: 16px 0;} /* button */ .btn.xs-btn-extra-large2 { font-size: 18px; padding: 18px 30px !important; line-height: 20px;} .btn.xs-btn-extra-large { font-size: 16px; padding: 14px 28px !important; line-height: 18px;} .btn.xs-btn-large { font-size: 14px; padding: 11px 25px !important; line-height: 18px;} .btn.xs-btn-medium { font-size: 12px; padding: 8px 20px !important; line-height: 18px;} .btn.xs-btn-small { font-size: 11px; padding: 4px 14px !important; line-height: 18px;} .btn.xs-btn-very-small {font-size: 10px; padding: 10px 12px 10px !important; line-height: 0;} .btn-dual .btn {margin:0 10px 0 0} /* price box 7 */ .pricing-box-style7 li, .pricing-box-style7 li:first-child, .pricing-box-style7 li, .pricing-box-style7 li:first-child, .pricing-box-style7 li:last-child { height: auto; padding: 30px 15px; } } @media (max-width: 640px) { /* header */ .header-style6 .one-fourth-screen{height: 520px;} .header-style6 h1 { font-size: 30px !important; line-height: 35px;} .header-style7 .one-fourth-screen{height:850px;} .header-style7 .header-banner, .header-style6 .header-banner, .header-style8 .header-banner { margin-top: 90px !important;} .header-style7 .header-banner span.date { margin-bottom: 20px;} .header-style7 .header-banner h1 { font-size: 24px !important;} .header-style7 .header-banner .counter-content { width:90px; height:90px; padding: 20px 0; margin:10px auto 15px auto; float:none; display:block; } .header-style7 .header-banner .counter-content span { font-size: 30px;} .header-style8 .header-banner .banner-title { font-size: 29px;} /* slider */ .slider-style1 .slider-title { font-size: 35px !important; line-height: 40px !important;} .slider-style1 .slider-text { font-size: 14px !important;} .slider-style2 .slider-title { font-size: 40px !important;} .slider-style2 .slider-text { font-size: 20px; margin-top: 10px;} .slider-style3 .slider-title { font-size: 45px !important; line-height: 45px;} .slider-style3 .slider-text { font-size: 17px; line-height: 22px;} .slider-style6 .slider-text-middle-main { padding: 0 15px; width: 68%;} /* feature box */ .feature-style3 .feature-box .feature-text { width: 80%;} .header-style4 .header-bottom {padding: 11px 0;} .header-style4 .navbar-collapse { top: 53px; } .video-section{max-height:350px; height:100%;} .one-fifth-screen {height:550px;} .xs-one-sixth-screen {height:600px;} /* header style 7 */ .event-counter .counter-box { float: none; height: 90px; margin: 10px auto 15px; padding: 15px 0; width: 90px; display: block;} .event-counter .counter-box .number { font-size: 30px; line-height: 35px; } .event-counter .counter-box span { font-size: 12px; line-height: 17px; } } @media (max-width: 480px) { /* header */ .navbar-collapse { top:53px;} .header-style4 .header-top .mail { width: 100%; margin-bottom: 5px; text-align: center;} .header-style4 .header-top .social{ text-align: center; width: 100%;} .header-style6 .one-fourth-screen{height: auto;} .header-style6 p { font-size: 14px;} .header-style7 .header-banner h1 { font-size: 20px !important; line-height: 30px;} .header-style8 .header-banner .banner-icon { font-size: 50px;} .header-style8 .header-banner .banner-text { font-size: 14px;} /* slider */ .slider-style1 .slider-title { font-size: 30px !important; line-height: 35px !important;} .slider-style1 .slider-text { line-height: 20px;} .slider-style2 .slider-title { font-size: 35px !important; line-height:38px !important;} .slider-style2 .slider-text { font-size: 16px; line-height: 22px;} .slider-style2 .scroll-down a i { position: relative; top: 30px;} .slider-style3 .slider-title { font-size: 33px !important; line-height: 38px;} .slider-style3 .slider-text { font-size: 15px; line-height: 24px;} .slider-style5 .slider-content {width: 100%; padding: 30px; background-color: rgba(0, 0, 0, 0.85); border:none} .slider-style5 .slider-title { font-size: 20px !important; line-height: 25px;} .slider-style6 .slider-text-middle-main { width: 100%; padding: 0; } /* feature box */ .feature-style3 .feature-box .feature-text { width: 100%;} /* blog */ .blog-post-style1 article:hover .post-details {padding-left: 12px;} .blog-post-style2 .post-details span a { font-size: 11px;} .blog-post-style2 .post-details { padding: 15px;} .blog-post-style1 .blog-like, .blog-share, .comment{margin-right: 10px;} .blog-comment .comment-avtar{width: 100%; margin: 0; float: none;} .blog-comment .comment-avtar img{width: 100%; margin-bottom: 15px;} .blog-post-title::after {top: 15px;} /* team */ .team-style4 .team-details { height: 36%;} .team-style7 .team-details {height: 40%;} /* content */ .content-style1 .title { font-size: 35px;} .content-style1 .title::after { width: 30px; left: -46px;} .content-style1 .title::before { width: 30px; right: -46px;} /* content style 30 */ .content-section30 .list-style1 li{width: 100%;} .owl-pagination {bottom: 20px;} .xs-text-white {color: #fff !important;} .xs-text-black {color: #000 !important;} .xs-bg-white {background: #fff;} } @media (max-width: 419px) { /* header */ .header-style5 .social a { margin: 0 4px;} .header-style5 .social { margin-right: 8px; } .header-style13 .social a{margin-left: 0px;} .header-style14 .social a, .header-style15 .social a{margin-left: 0px;} .one-fifth-screen {height:450px;} .xs-one-sixth-screen {min-height:500px;} } @media (max-width: 380px) { /* header */ .header-style13 .social a{margin:0 0 0 6px; } .header-style14 .social a, .header-style15 .social a{margin:0 0 0 6px; } } @media screen and (max-width: 320px) { /* navigation */ .shrink-nav .navbar-collapse { max-height: 420px; } } @media screen and (orientation : landscape) { /* navigation */ .shrink-nav .navbar-collapse { max-height: 270px; } .shrink-medium-header.shrink-nav .navbar-collapse { max-height: 200px; } }
0.291989
0.065366
body { direction: __MSG_@@bidi_dir__; font: menu; color: #000; background-color: #fff; margin: 0; padding: 0; cursor: default; -webkit-user-drag: none; -webkit-user-select: none; overflow: hidden; width: 320px; height: 530px; } body.linux { font-size: 12px; } body.transitional { -webkit-transition-property: height; } body[data-zoom='90']>*:not(menu), body[data-zoom='90'] menu[type=context] command { zoom: .9; } body[data-zoom='90'] #drop-overlay.bookmark { /* zooming out makes the line too hard to see */ border-top: 0; } body[data-zoom='110']>*:not(menu), body[data-zoom='110'] menu[type=context] command { zoom: 1.1; } body[data-zoom='120']>*:not(menu), body[data-zoom='120'] menu[type=context] command { zoom: 1.2; } body[data-zoom='130']>*:not(menu), body[data-zoom='130'] menu[type=context] command { zoom: 1.3; } body[data-zoom='140']>*:not(menu), body[data-zoom='140'] menu[type=context] command { zoom: 1.4; } body[data-zoom='150']>*:not(menu), body[data-zoom='150'] menu[type=context] command { zoom: 1.5; } input { -webkit-box-sizing: border-box; box-sizing: border-box; font: menu; } body.linux input { font-size: 12px; } #container { display: -webkit-box; -webkit-box-orient: vertical; box-orient: vertical; position: absolute; top: 0; right: 0; bottom: 0; left: 0; } #copier-input { width: 0px; height: 0px; border: 0; } #search { position: relative; top: -3px; margin: 0 -1px -5px -1px; padding: 0; } #search input { width: 100%; padding: 6px 8px; margin: 0; } #results, #tree { background-color: #f8f9fa; overflow: auto; outline: 0; padding: 3px 0; -webkit-box-shadow: inset 0 4px 4px -4px rgba(0, 0, 0, .1); -webkit-box-flex: 1; box-flex: 1; text-shadow: 0 1px #f6f6f6; position: relative; } #results ul, #results ul li, #tree ul, #tree ul li { list-style: none; margin: 0; padding: 0; display: block; } #results ul li a, #tree ul li a, #tree ul li span { display: block; line-height: 1.67em; padding: 0 4px; text-decoration: none; color: #000; outline: 0; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } #results ul li a *, #tree ul li a *, #tree ul li span * { pointer-events: none; } #tree ul li span .twisty { display: inline-block; position: relative; width: 0; height: 0; border-width: 4.5px 0 4.5px 8px; border-color: transparent transparent transparent #84919f; border-style: solid; margin: 0 4px; -webkit-transition: -webkit-transform .15s; -webkit-transform: scaleX(.99); } .chrome-536 #tree ul li span .twisty { /* Chrome build 536 dev bug */ -webkit-transition-duration: 0s; } .rtl #tree ul li span .twisty { -webkit-transform: scaleX(-1); } #tree ul li.open>span .twisty { -webkit-transform: rotate(90deg); } .rtl #tree ul li.open>span .twisty { -webkit-transform: scaleX(-1) rotate(90deg); } #results ul li a img, #results ul li span img, #tree ul li a img, #tree ul li span img { margin-top: -2px; vertical-align: middle; margin-__MSG_@@bidi_end_edge__: 4px; } #results ul li a img, #tree ul li a img { margin-__MSG_@@bidi_start_edge__: 16px; } #results ul li i, #tree ul li i { font-style: normal; } #results ul li a:hover i, #tree ul li a:hover i { text-decoration: underline; } #results ul li a:active, #results ul li a.active, #results ul li a:focus, #tree ul li a:active, #tree ul li span:active, #tree ul li a.active, #tree ul li span.active, #tree ul li a:focus, #tree ul li span:focus, menu[type=context] command:focus { color: #fff; background-color: #4687cb; background-image: -webkit-gradient(linear, left top, left bottom, from(#6fa6de), to(#1e6cbb)); -webkit-box-shadow: 0 -1px #5594d2; text-shadow: 0 0 rgba(255, 255, 255, .5), 0 1px rgba(0, 0, 0, .5); outline: 0; } .searchFocus #results ul>li:first-child a { background-color: rgba(43, 93, 205, .2); } #tree ul li span:active .twisty, #tree ul li span.active .twisty, #tree ul li span:focus .twisty { border-color: transparent transparent transparent #e5eef8; } #tree ul ul { height: 0; overflow: hidden; } #tree .open>ul { height: auto; } @-webkit-keyframes blueFade { 0% { background-color: transparent; } 10% { background-color: rgba(43, 93, 205, .2); } 100% { background-color: transparent; } } #tree ul li a.focus, #tree ul li span.focus { -webkit-animation-name: blueFade; -webkit-animation-duration: 3s; } #bookmark-clone { position: absolute; left: -999px; margin: -1em 0 0 -24px; white-space: nowrap; line-height: 1em; padding: .3em; padding-__MSG_@@bidi_end_edge__: .5em; -webkit-mask-image: -webkit-gradient(linear, left top, 320 top, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0))); pointer-events: none; cursor: default; } .rtl #bookmark-clone { margin-left: 24px; -webkit-mask-image: -webkit-gradient(linear, right top, -320 top, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0))); } #bookmark-clone img { vertical-align: text-top; margin-__MSG_@@bidi_end_edge__: 4px; } #bookmark-clone i { font-style: normal; } #drop-overlay { display: block; width: 100%; position: absolute; left: -999px; pointer-events: none; margin: -1px 0 0; -webkit-box-sizing: border-box; -box-sizing: border-box; } #drop-overlay.bookmark { margin-__MSG_@@bidi_start_edge__: -3px; height: 3px; background-color: #000; border: 1px solid #fff; } #drop-overlay.folder { background-color: rgba(43, 93, 205, .2); border: 1px solid #5594d2; border-radius: 2px; } menu[type=context] { -webkit-transition: opacity .3s; opacity: 0; margin: 0; padding: 5px 0; list-style: none; position: absolute; left: -999px; border: 1px solid #bbb; border-radius: 5px; background-color: rgba(255, 255, 255, .96); box-shadow: 0 2px 6px rgba(0, 0, 0, .2); -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2); outline: 0; max-width: 100%; } menu[type=context] command { display: block; padding: 0 10px; line-height: 20px; text-shadow: none; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } /* convert title-style to sentence-style capitalization, for Windows */ .win menu[type=context] command { text-transform: lowercase; } .win menu[type=context] command:first-letter { text-transform: uppercase; } menu[type=context] hr { border: 0; padding: 0; height: 1px; margin: 2px 0; background-color: #eee; pointer-events: none; } menu[type=context].hide-editables hr, menu[type=context].hide-editables #folder-edit, menu[type=context].hide-editables #folder-delete { display: none; } #resizer { position: absolute; width: 4px; height: 100%; __MSG_@@bidi_start_edge__: 0; top: 0; cursor: col-resize; } #cover { position: absolute; top: 0; left: -100%; bottom: 0; width: 100%; opacity: 0; background-color: rgba(255, 255, 255, .5); } .transitional #cover { -webkit-transition: opacity .3s; } .needAlert #cover, .needConfirm #cover, .needEdit #cover { left: 0; opacity: 1; } .needInputName #cover { left: 0; opacity: 1; } .dialog { position: absolute; top: -150px; left: 0; right: 0; opacity: 0; background-color: #fff; padding: 1em; border-bottom: 1px solid #e0e0e0; -webkit-box-shadow: 0 0 100px rgba(0, 0, 0, .1); box-shadow: 0 0 100px rgba(0, 0, 0, .1); } .transitional .dialog { -webkit-transition-property: opacity, top; -webkit-transition-duration: .3s; } .dialog-text { padding: 0; margin: 0; line-height: 1.4em; font-size: 110%; } .dialog .buttons { margin: 1em 0 0; text-align: __MSG_@@bidi_end_edge__; } .dialog .buttons button { padding: .3em 1.5em; } .dialog pre { white-space: pre-line; margin: 0; padding: 5px; line-height: 1.1em; -webkit-user-select: text; cursor: text; background-color: #fafafa; text-shadow: none; } #edit-dialog .dialog-text { margin: 0; font-weight: bold; } #edit-dialog input { width: 100%; padding: 2px; } #edit-dialog input:invalid { outline-color: red; } #edit-dialog .buttons { margin: 0; } #edit-dialog .buttons button { font-weight: bold; } #new-folder-dialog .dialog-text { margin: 0; font-weight: bold; } #new-folder-dialog input { width: 100%; padding: 2px; } #new-folder-dialog input:invalid { outline-color: red; } #new-folder-dialog .buttons { margin: 0; } #new-folder-dialog .buttons button { font-weight: bold; } .needAlert #alert-dialog, .needConfirm #confirm-dialog, .needEdit #edit-dialog { top: 0; opacity: 1; } .needInputName #new-folder-dialog { top: 0; opacity: 1; } #mainSection { margin: 0; padding: 0; overflow-y: auto; /* The height will be defined in JS */ } ::-webkit-scrollbar-track-piece { background-color: #fff; -webkit-border-radius: 0; } ::-webkit-scrollbar { width: 8px; height: 8px; } ::-webkit-scrollbar-thumb { background-color: #c1c1c1; -webkit-border-radius: 4px; outline: 2px solid #fff; outline-offset: -2px; border: 2px solid #fff; } ::-webkit-scrollbar-thumb:hover { background-color: #9f9f9f; -webkit-border-radius: 4px; }
neat.css
body { direction: __MSG_@@bidi_dir__; font: menu; color: #000; background-color: #fff; margin: 0; padding: 0; cursor: default; -webkit-user-drag: none; -webkit-user-select: none; overflow: hidden; width: 320px; height: 530px; } body.linux { font-size: 12px; } body.transitional { -webkit-transition-property: height; } body[data-zoom='90']>*:not(menu), body[data-zoom='90'] menu[type=context] command { zoom: .9; } body[data-zoom='90'] #drop-overlay.bookmark { /* zooming out makes the line too hard to see */ border-top: 0; } body[data-zoom='110']>*:not(menu), body[data-zoom='110'] menu[type=context] command { zoom: 1.1; } body[data-zoom='120']>*:not(menu), body[data-zoom='120'] menu[type=context] command { zoom: 1.2; } body[data-zoom='130']>*:not(menu), body[data-zoom='130'] menu[type=context] command { zoom: 1.3; } body[data-zoom='140']>*:not(menu), body[data-zoom='140'] menu[type=context] command { zoom: 1.4; } body[data-zoom='150']>*:not(menu), body[data-zoom='150'] menu[type=context] command { zoom: 1.5; } input { -webkit-box-sizing: border-box; box-sizing: border-box; font: menu; } body.linux input { font-size: 12px; } #container { display: -webkit-box; -webkit-box-orient: vertical; box-orient: vertical; position: absolute; top: 0; right: 0; bottom: 0; left: 0; } #copier-input { width: 0px; height: 0px; border: 0; } #search { position: relative; top: -3px; margin: 0 -1px -5px -1px; padding: 0; } #search input { width: 100%; padding: 6px 8px; margin: 0; } #results, #tree { background-color: #f8f9fa; overflow: auto; outline: 0; padding: 3px 0; -webkit-box-shadow: inset 0 4px 4px -4px rgba(0, 0, 0, .1); -webkit-box-flex: 1; box-flex: 1; text-shadow: 0 1px #f6f6f6; position: relative; } #results ul, #results ul li, #tree ul, #tree ul li { list-style: none; margin: 0; padding: 0; display: block; } #results ul li a, #tree ul li a, #tree ul li span { display: block; line-height: 1.67em; padding: 0 4px; text-decoration: none; color: #000; outline: 0; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } #results ul li a *, #tree ul li a *, #tree ul li span * { pointer-events: none; } #tree ul li span .twisty { display: inline-block; position: relative; width: 0; height: 0; border-width: 4.5px 0 4.5px 8px; border-color: transparent transparent transparent #84919f; border-style: solid; margin: 0 4px; -webkit-transition: -webkit-transform .15s; -webkit-transform: scaleX(.99); } .chrome-536 #tree ul li span .twisty { /* Chrome build 536 dev bug */ -webkit-transition-duration: 0s; } .rtl #tree ul li span .twisty { -webkit-transform: scaleX(-1); } #tree ul li.open>span .twisty { -webkit-transform: rotate(90deg); } .rtl #tree ul li.open>span .twisty { -webkit-transform: scaleX(-1) rotate(90deg); } #results ul li a img, #results ul li span img, #tree ul li a img, #tree ul li span img { margin-top: -2px; vertical-align: middle; margin-__MSG_@@bidi_end_edge__: 4px; } #results ul li a img, #tree ul li a img { margin-__MSG_@@bidi_start_edge__: 16px; } #results ul li i, #tree ul li i { font-style: normal; } #results ul li a:hover i, #tree ul li a:hover i { text-decoration: underline; } #results ul li a:active, #results ul li a.active, #results ul li a:focus, #tree ul li a:active, #tree ul li span:active, #tree ul li a.active, #tree ul li span.active, #tree ul li a:focus, #tree ul li span:focus, menu[type=context] command:focus { color: #fff; background-color: #4687cb; background-image: -webkit-gradient(linear, left top, left bottom, from(#6fa6de), to(#1e6cbb)); -webkit-box-shadow: 0 -1px #5594d2; text-shadow: 0 0 rgba(255, 255, 255, .5), 0 1px rgba(0, 0, 0, .5); outline: 0; } .searchFocus #results ul>li:first-child a { background-color: rgba(43, 93, 205, .2); } #tree ul li span:active .twisty, #tree ul li span.active .twisty, #tree ul li span:focus .twisty { border-color: transparent transparent transparent #e5eef8; } #tree ul ul { height: 0; overflow: hidden; } #tree .open>ul { height: auto; } @-webkit-keyframes blueFade { 0% { background-color: transparent; } 10% { background-color: rgba(43, 93, 205, .2); } 100% { background-color: transparent; } } #tree ul li a.focus, #tree ul li span.focus { -webkit-animation-name: blueFade; -webkit-animation-duration: 3s; } #bookmark-clone { position: absolute; left: -999px; margin: -1em 0 0 -24px; white-space: nowrap; line-height: 1em; padding: .3em; padding-__MSG_@@bidi_end_edge__: .5em; -webkit-mask-image: -webkit-gradient(linear, left top, 320 top, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0))); pointer-events: none; cursor: default; } .rtl #bookmark-clone { margin-left: 24px; -webkit-mask-image: -webkit-gradient(linear, right top, -320 top, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0))); } #bookmark-clone img { vertical-align: text-top; margin-__MSG_@@bidi_end_edge__: 4px; } #bookmark-clone i { font-style: normal; } #drop-overlay { display: block; width: 100%; position: absolute; left: -999px; pointer-events: none; margin: -1px 0 0; -webkit-box-sizing: border-box; -box-sizing: border-box; } #drop-overlay.bookmark { margin-__MSG_@@bidi_start_edge__: -3px; height: 3px; background-color: #000; border: 1px solid #fff; } #drop-overlay.folder { background-color: rgba(43, 93, 205, .2); border: 1px solid #5594d2; border-radius: 2px; } menu[type=context] { -webkit-transition: opacity .3s; opacity: 0; margin: 0; padding: 5px 0; list-style: none; position: absolute; left: -999px; border: 1px solid #bbb; border-radius: 5px; background-color: rgba(255, 255, 255, .96); box-shadow: 0 2px 6px rgba(0, 0, 0, .2); -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2); outline: 0; max-width: 100%; } menu[type=context] command { display: block; padding: 0 10px; line-height: 20px; text-shadow: none; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } /* convert title-style to sentence-style capitalization, for Windows */ .win menu[type=context] command { text-transform: lowercase; } .win menu[type=context] command:first-letter { text-transform: uppercase; } menu[type=context] hr { border: 0; padding: 0; height: 1px; margin: 2px 0; background-color: #eee; pointer-events: none; } menu[type=context].hide-editables hr, menu[type=context].hide-editables #folder-edit, menu[type=context].hide-editables #folder-delete { display: none; } #resizer { position: absolute; width: 4px; height: 100%; __MSG_@@bidi_start_edge__: 0; top: 0; cursor: col-resize; } #cover { position: absolute; top: 0; left: -100%; bottom: 0; width: 100%; opacity: 0; background-color: rgba(255, 255, 255, .5); } .transitional #cover { -webkit-transition: opacity .3s; } .needAlert #cover, .needConfirm #cover, .needEdit #cover { left: 0; opacity: 1; } .needInputName #cover { left: 0; opacity: 1; } .dialog { position: absolute; top: -150px; left: 0; right: 0; opacity: 0; background-color: #fff; padding: 1em; border-bottom: 1px solid #e0e0e0; -webkit-box-shadow: 0 0 100px rgba(0, 0, 0, .1); box-shadow: 0 0 100px rgba(0, 0, 0, .1); } .transitional .dialog { -webkit-transition-property: opacity, top; -webkit-transition-duration: .3s; } .dialog-text { padding: 0; margin: 0; line-height: 1.4em; font-size: 110%; } .dialog .buttons { margin: 1em 0 0; text-align: __MSG_@@bidi_end_edge__; } .dialog .buttons button { padding: .3em 1.5em; } .dialog pre { white-space: pre-line; margin: 0; padding: 5px; line-height: 1.1em; -webkit-user-select: text; cursor: text; background-color: #fafafa; text-shadow: none; } #edit-dialog .dialog-text { margin: 0; font-weight: bold; } #edit-dialog input { width: 100%; padding: 2px; } #edit-dialog input:invalid { outline-color: red; } #edit-dialog .buttons { margin: 0; } #edit-dialog .buttons button { font-weight: bold; } #new-folder-dialog .dialog-text { margin: 0; font-weight: bold; } #new-folder-dialog input { width: 100%; padding: 2px; } #new-folder-dialog input:invalid { outline-color: red; } #new-folder-dialog .buttons { margin: 0; } #new-folder-dialog .buttons button { font-weight: bold; } .needAlert #alert-dialog, .needConfirm #confirm-dialog, .needEdit #edit-dialog { top: 0; opacity: 1; } .needInputName #new-folder-dialog { top: 0; opacity: 1; } #mainSection { margin: 0; padding: 0; overflow-y: auto; /* The height will be defined in JS */ } ::-webkit-scrollbar-track-piece { background-color: #fff; -webkit-border-radius: 0; } ::-webkit-scrollbar { width: 8px; height: 8px; } ::-webkit-scrollbar-thumb { background-color: #c1c1c1; -webkit-border-radius: 4px; outline: 2px solid #fff; outline-offset: -2px; border: 2px solid #fff; } ::-webkit-scrollbar-thumb:hover { background-color: #9f9f9f; -webkit-border-radius: 4px; }
0.420719
0.074973
body { position: relative; height: 100%!important; width: 100%; font-family: 'Montserrat', sans-serif; font-size: 13px; background: #fff; color: #4E5E6A; margin: 0; } h1, h2, h3, h4, h5, h6 { font-weight: 600; } /* Demos */ .demos { text-align: center; padding-top: 50px; padding-bottom: 50px; } .demos h1 { text-transform: uppercase; font-size: 28px; letter-spacing: 0.1em; margin: 0; } .demos p { margin-top: 10px; margin-bottom: 50px; font-size: 18px; } .examples .item { display: inline-block; border: 1px solid #e9e9e9; padding: 20px; margin-bottom: 15px; position: relative; } .examples .item:hover { background: #f1f1f1; } .examples .item h3 { margin: 0 0 15px 0; font-size: 18px; } .examples .item a { display: block; margin-top: 20px; margin-bottom: 5px; padding: 10px; background: #55BAA0; color: #fff; text-decoration: none; } .examples .item a.disabled { opacity: 0.7; cursor: not-allowed; } a.buy-link { display: table; width: auto; border: 2px solid #e9e9e9; border-radius: 50px; padding: 15px 20px; margin: 20px auto 0 auto; font-size: 15px; color: #5f5f5f; text-decoration: none; font-weight: 600; } @media (max-width: 500px) { .demos { padding: 10px; } } /* Custom Badges */ .badge { -webkit-border-radius: 12px !important; -moz-border-radius: 12px !important; border-radius: 12px !important; border-radius: 0px; font-weight: 300; font-size: 11px !important; text-align: center; vertical-align: middle; line-height: 11px!important; height: 18px; padding: 3px 6px 3px 6px; text-shadow: none !important; } .badge.badge-roundless { -webkit-border-radius: 0 !important; -moz-border-radius: 0 !important; border-radius: 0 !important; } .badge.badge-default { background: #f1f1f1; color: #aaa; } .badge.badge-primary { background: #7a6fbe; color: #FFF; } .badge.badge-info { background: #12AFCB; color: #FFF; } .badge.badge-success { background: #22BAA0; color: #FFF; } .badge.badge-danger { background: #f25656; color: #FFF; } .badge.badge-warning { background: #f6d433; color: #FFF; } .examples .item .badge { position: absolute; top: 0; right: 0; border-radius: 0!important; }
template/admin/css/component.css
body { position: relative; height: 100%!important; width: 100%; font-family: 'Montserrat', sans-serif; font-size: 13px; background: #fff; color: #4E5E6A; margin: 0; } h1, h2, h3, h4, h5, h6 { font-weight: 600; } /* Demos */ .demos { text-align: center; padding-top: 50px; padding-bottom: 50px; } .demos h1 { text-transform: uppercase; font-size: 28px; letter-spacing: 0.1em; margin: 0; } .demos p { margin-top: 10px; margin-bottom: 50px; font-size: 18px; } .examples .item { display: inline-block; border: 1px solid #e9e9e9; padding: 20px; margin-bottom: 15px; position: relative; } .examples .item:hover { background: #f1f1f1; } .examples .item h3 { margin: 0 0 15px 0; font-size: 18px; } .examples .item a { display: block; margin-top: 20px; margin-bottom: 5px; padding: 10px; background: #55BAA0; color: #fff; text-decoration: none; } .examples .item a.disabled { opacity: 0.7; cursor: not-allowed; } a.buy-link { display: table; width: auto; border: 2px solid #e9e9e9; border-radius: 50px; padding: 15px 20px; margin: 20px auto 0 auto; font-size: 15px; color: #5f5f5f; text-decoration: none; font-weight: 600; } @media (max-width: 500px) { .demos { padding: 10px; } } /* Custom Badges */ .badge { -webkit-border-radius: 12px !important; -moz-border-radius: 12px !important; border-radius: 12px !important; border-radius: 0px; font-weight: 300; font-size: 11px !important; text-align: center; vertical-align: middle; line-height: 11px!important; height: 18px; padding: 3px 6px 3px 6px; text-shadow: none !important; } .badge.badge-roundless { -webkit-border-radius: 0 !important; -moz-border-radius: 0 !important; border-radius: 0 !important; } .badge.badge-default { background: #f1f1f1; color: #aaa; } .badge.badge-primary { background: #7a6fbe; color: #FFF; } .badge.badge-info { background: #12AFCB; color: #FFF; } .badge.badge-success { background: #22BAA0; color: #FFF; } .badge.badge-danger { background: #f25656; color: #FFF; } .badge.badge-warning { background: #f6d433; color: #FFF; } .examples .item .badge { position: absolute; top: 0; right: 0; border-radius: 0!important; }
0.419767
0.131814
position: relative; } .region-container { margin-bottom: 16px; } .section-subheading { margin-bottom: 24px; } #portfolio .region-container .line { width: 80%; height: 4px; background-color: #000000; } #portfolio .region-container .cityhall { top: 0px; left: 25%; opacity: 0.3; -webkit-transform: scale(2.5); transform: scale(2.5); } #portfolio .region-container .gv { font-size: 40px; font-weight: 700; text-align: left; z-index: 10; } #portfolio .portfolio-item { right: 0; margin: 0 0 15px; } #portfolio .portfolio-item .portfolio-link { position: relative; display: block; max-width: 400px; margin: 0 auto; } .modals { cursor: pointer; } #portfolio .portfolio-item .portfolio-link .portfolio-hover { position: absolute; width: 100%; height: 100%; -webkit-transition: all ease 0.5s; transition: all ease 0.5s; opacity: 0; background: rgba(18, 167, 101, 0.9); } #portfolio .portfolio-item .portfolio-link .portfolio-hover:hover { opacity: 1; } .portfolio-modal { overflow-y: scroll; } #portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content { font-size: 20px; position: absolute; width: 100%; height: 100px; top: 25%; text-align: center; color: white; } #portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content .keylo-key { height: 80px; } #portfolio .portfolio-item .portfolio-caption { max-width: 400px; margin: 0 auto; padding: 5px; text-align: center; background-color: #fff; bottom: -25%; } #portfolio .portfolio-item .portfolio-caption h4 { margin: 0; text-transform: none; } #portfolio .portfolio-item .portfolio-caption p { font-size: 24px; font-weight: 700; margin: 0; font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } #portfolio * { z-index: 2; } @media (min-width: 767px) { #portfolio .communities-container { width: 60%; } } .portfolio-modal .modal-dialog { margin: 1rem; max-width: 100vw; } .portfolio-modal .modal-content { padding: 100px 0 40px; text-align: center; } .portfolio-modal .modal-content .modal-heading { font-size: 40px; font-weight: 700; } .portfolio-modal .modal-content .line { width: 80%; height: 4px; background-color: #000000; margin-bottom: 15px; } .portfolio-modal .modal-content h2 { font-size: 3em; margin-bottom: 15px; } .portfolio-modal .modal-content p { margin-bottom: 30px; } .portfolio-modal .modal-content p.item-intro { font-size: 16px; font-style: italic; margin: 20px 0 30px; font-family: "Droid Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } .portfolio-modal .modal-content ul.list-inline { margin-top: 0; margin-bottom: 30px; } .portfolio-modal .modal-content img { margin-bottom: 30px; } .portfolio-modal .modal-content button { cursor: pointer; } .portfolio-modal .modal-content .button { border-radius: 2px; height: 50px; width: 240px; margin-bottom: 25px; } .portfolio-modal .close-modal { position: absolute; top: 25px; right: 25px; width: 30px; height: 30px; cursor: pointer; background-color: transparent; } .portfolio-modal .close-modal:hover { opacity: 0.3; } .portfolio-modal .close-modal .lr { /* Safari and Chrome */ z-index: 1051; width: 1px; height: 75px; margin-left: 35px; /* IE 9 */ -webkit-transform: rotate(45deg); transform: rotate(45deg); background-color: #212529; } .portfolio-modal .close-modal .lr .rl { /* Safari and Chrome */ z-index: 1052; width: 1px; height: 75px; /* IE 9 */ -webkit-transform: rotate(90deg); transform: rotate(90deg); background-color: #212529; } @media (min-width: 767px) { #portfolio .portfolio-item { margin: 0 0 30px; } .portfolio-modal { margin-left: 10%; margin-right: 10%; } .portfolio-modal .modal-dialog { max-width: 80%; } } .portfolio-hover { z-index: 10 !important; }
src/components/portfolio/portfolio.css
position: relative; } .region-container { margin-bottom: 16px; } .section-subheading { margin-bottom: 24px; } #portfolio .region-container .line { width: 80%; height: 4px; background-color: #000000; } #portfolio .region-container .cityhall { top: 0px; left: 25%; opacity: 0.3; -webkit-transform: scale(2.5); transform: scale(2.5); } #portfolio .region-container .gv { font-size: 40px; font-weight: 700; text-align: left; z-index: 10; } #portfolio .portfolio-item { right: 0; margin: 0 0 15px; } #portfolio .portfolio-item .portfolio-link { position: relative; display: block; max-width: 400px; margin: 0 auto; } .modals { cursor: pointer; } #portfolio .portfolio-item .portfolio-link .portfolio-hover { position: absolute; width: 100%; height: 100%; -webkit-transition: all ease 0.5s; transition: all ease 0.5s; opacity: 0; background: rgba(18, 167, 101, 0.9); } #portfolio .portfolio-item .portfolio-link .portfolio-hover:hover { opacity: 1; } .portfolio-modal { overflow-y: scroll; } #portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content { font-size: 20px; position: absolute; width: 100%; height: 100px; top: 25%; text-align: center; color: white; } #portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content .keylo-key { height: 80px; } #portfolio .portfolio-item .portfolio-caption { max-width: 400px; margin: 0 auto; padding: 5px; text-align: center; background-color: #fff; bottom: -25%; } #portfolio .portfolio-item .portfolio-caption h4 { margin: 0; text-transform: none; } #portfolio .portfolio-item .portfolio-caption p { font-size: 24px; font-weight: 700; margin: 0; font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } #portfolio * { z-index: 2; } @media (min-width: 767px) { #portfolio .communities-container { width: 60%; } } .portfolio-modal .modal-dialog { margin: 1rem; max-width: 100vw; } .portfolio-modal .modal-content { padding: 100px 0 40px; text-align: center; } .portfolio-modal .modal-content .modal-heading { font-size: 40px; font-weight: 700; } .portfolio-modal .modal-content .line { width: 80%; height: 4px; background-color: #000000; margin-bottom: 15px; } .portfolio-modal .modal-content h2 { font-size: 3em; margin-bottom: 15px; } .portfolio-modal .modal-content p { margin-bottom: 30px; } .portfolio-modal .modal-content p.item-intro { font-size: 16px; font-style: italic; margin: 20px 0 30px; font-family: "Droid Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } .portfolio-modal .modal-content ul.list-inline { margin-top: 0; margin-bottom: 30px; } .portfolio-modal .modal-content img { margin-bottom: 30px; } .portfolio-modal .modal-content button { cursor: pointer; } .portfolio-modal .modal-content .button { border-radius: 2px; height: 50px; width: 240px; margin-bottom: 25px; } .portfolio-modal .close-modal { position: absolute; top: 25px; right: 25px; width: 30px; height: 30px; cursor: pointer; background-color: transparent; } .portfolio-modal .close-modal:hover { opacity: 0.3; } .portfolio-modal .close-modal .lr { /* Safari and Chrome */ z-index: 1051; width: 1px; height: 75px; margin-left: 35px; /* IE 9 */ -webkit-transform: rotate(45deg); transform: rotate(45deg); background-color: #212529; } .portfolio-modal .close-modal .lr .rl { /* Safari and Chrome */ z-index: 1052; width: 1px; height: 75px; /* IE 9 */ -webkit-transform: rotate(90deg); transform: rotate(90deg); background-color: #212529; } @media (min-width: 767px) { #portfolio .portfolio-item { margin: 0 0 30px; } .portfolio-modal { margin-left: 10%; margin-right: 10%; } .portfolio-modal .modal-dialog { max-width: 80%; } } .portfolio-hover { z-index: 10 !important; }
0.356447
0.067886
* { padding: 0px; margin: 0px; box-sizing: border-box; } .font { font-family: "Fuzzy Bubbles", sans-serif; } header { margin: 12px; background-image: linear-gradient(25deg, rgb(246, 248, 130) 10% ,#00d1b2 70%, rgb(246, 248, 130)); height: 150px; border-radius: 12px; font-size: 3rem; } #city-history { border-top: dotted 3px gray; } .button { margin-top: 8px; margin-bottom: 8px; } main { margin: 20px; } #today .uv span { padding: 8px; color: white; border: none; border-radius: 4px; } .green { background-color: rgba(6, 105, 6, 0.8); } .orange { background-color: rgba(255, 166, 0, 0.5); } .red { background-color: rgba(255, 0, 0, 0.5); } [name=cloudy] { background-image: url(../images/cloudy.jpg); color: black; background-size: cover; } [name=clear] { background-image: url(../images/sunny.jpg); background-size: cover; color: black; } [name=rainy] { background-image: url(../images/rainy.jpg); color: white; background-position: bottom; background-size: cover; } [name=stormy] { background-image: url(../images/thunderstorm.jpg); color: white; background-size: cover; } [name=snowy] { background-image: url(../images/snowy.jpg); background-size: cover; color: black; } [name=hazy] { background-image: url(../images/hazy.jpg); color: white; background-size: cover; } .card-content { margin-top: 30px; padding: 1rem; } #future-days { margin-right: -12px; } .card-header { box-shadow: none; } .card { box-shadow: none; } footer { margin: auto; margin-bottom: 0px; font-size: 10px; color: gray; font-family: sans-serif; padding: 0px 1rem!important; text-decoration: none; } footer a { color:gray; } @media screen and (max-width:300px) { header { margin: -3px; } header h1 { font-size: 2rem !important; } } @media screen and (max-width: 1024px) { .column.is-one-fifth, .column.is-one-fifth-tablet { flex: none; width: 100%; } }
css/stlye.css
* { padding: 0px; margin: 0px; box-sizing: border-box; } .font { font-family: "Fuzzy Bubbles", sans-serif; } header { margin: 12px; background-image: linear-gradient(25deg, rgb(246, 248, 130) 10% ,#00d1b2 70%, rgb(246, 248, 130)); height: 150px; border-radius: 12px; font-size: 3rem; } #city-history { border-top: dotted 3px gray; } .button { margin-top: 8px; margin-bottom: 8px; } main { margin: 20px; } #today .uv span { padding: 8px; color: white; border: none; border-radius: 4px; } .green { background-color: rgba(6, 105, 6, 0.8); } .orange { background-color: rgba(255, 166, 0, 0.5); } .red { background-color: rgba(255, 0, 0, 0.5); } [name=cloudy] { background-image: url(../images/cloudy.jpg); color: black; background-size: cover; } [name=clear] { background-image: url(../images/sunny.jpg); background-size: cover; color: black; } [name=rainy] { background-image: url(../images/rainy.jpg); color: white; background-position: bottom; background-size: cover; } [name=stormy] { background-image: url(../images/thunderstorm.jpg); color: white; background-size: cover; } [name=snowy] { background-image: url(../images/snowy.jpg); background-size: cover; color: black; } [name=hazy] { background-image: url(../images/hazy.jpg); color: white; background-size: cover; } .card-content { margin-top: 30px; padding: 1rem; } #future-days { margin-right: -12px; } .card-header { box-shadow: none; } .card { box-shadow: none; } footer { margin: auto; margin-bottom: 0px; font-size: 10px; color: gray; font-family: sans-serif; padding: 0px 1rem!important; text-decoration: none; } footer a { color:gray; } @media screen and (max-width:300px) { header { margin: -3px; } header h1 { font-size: 2rem !important; } } @media screen and (max-width: 1024px) { .column.is-one-fifth, .column.is-one-fifth-tablet { flex: none; width: 100%; } }
0.418222
0.19546
@import url('https://fonts.googleapis.com/css?family=Indie+Flower|Reenie+Beanie'); #garbage { margin: auto; } .garbageSpan { text-decoration:none; display:inline-block; height:150px; width:150px; padding:15px; margin:20px; /* float:left;*/ font-family:"Reenie Beanie",'Indie Flower',arial,sans-serif; font-size:22pt; font-weight: bold; overflow: hidden; background-color: rgb(232,76,61); color: white; word-break: break-word; word-wrap: break-word; /* Firefox */ -moz-box-shadow:5px 5px 7px rgba(90,90,90,1); /* Safari+Chrome */ -webkit-box-shadow: 5px 5px 7px rgba(90,90,90,.7); /* Opera */ box-shadow: 5px 5px 7px rgba(90,90,90,.7); } .garbageSpan:after{ zindex: 40; } .garbageSpan:nth-child(odd) { -o-transform:rotate(4deg); -webkit-transform:rotate(4deg); -moz-transform:rotate(4deg); transform:rotate(4deg); /* position:relative;*/ top:5px; } .garbageSpan:nth-child(odd) > * { -o-transform:rotate(-9deg); -webkit-transform:rotate(-9deg); -moz-transform:rotate(-9deg); transform:rotate(-9deg); } .garbageSpan:nth-child(2n) { -o-transform:rotate(-3deg); -webkit-transform:rotate(-3deg); -moz-transform:rotate(-3deg); transform:rotate(-3deg); position:relative; top:-5px; } .garbageSpan:nth-child(2n) > * { -o-transform:rotate(3deg); -webkit-transform:rotate(3deg); -moz-transform:rotate(3deg); transform:rotate(3deg); } .garbageSpan:nth-child(4n) { -o-transform:rotate(5deg); -webkit-transform:rotate(5deg); -moz-transform:rotate(5deg); transform:rotate(5deg); position:relative; top:-10px; }.garbageSpan:nth-child(4n) > * { -o-transform:rotate(-5deg); -webkit-transform:rotate(-5deg); -moz-transform:rotate(-5deg); transform:rotate(-5deg); } .garbageSpan:nth-child(5n) { -o-transform:rotate(-5deg); -webkit-transform:rotate(-5deg); -moz-transform:rotate(-5deg); transform:rotate(-5deg); position:relative; top:-10px; } .garbageSpan:nth-child(5n) > * { -o-transform:rotate(5deg); -webkit-transform:rotate(5deg); -moz-transform:rotate(5deg); transform:rotate(5deg); } .garbageSpan.blaueTonne{ background-color: rgb(82,153,199); color: white; } .garbageSpan.bioTonne{ background-color: rgb(00,204,00); color: black; } .garbageSpan.gelberSack{ background-color: rgb(241,196,15); color: black; } .garbageSpan.gelbeTonne{ background-color: rgb(241,196,15); color: black; } .garbageSpan.schwarzeTonne{ background-color: rgb(190,195,199); color: black; }
garbage.css
@import url('https://fonts.googleapis.com/css?family=Indie+Flower|Reenie+Beanie'); #garbage { margin: auto; } .garbageSpan { text-decoration:none; display:inline-block; height:150px; width:150px; padding:15px; margin:20px; /* float:left;*/ font-family:"Reenie Beanie",'Indie Flower',arial,sans-serif; font-size:22pt; font-weight: bold; overflow: hidden; background-color: rgb(232,76,61); color: white; word-break: break-word; word-wrap: break-word; /* Firefox */ -moz-box-shadow:5px 5px 7px rgba(90,90,90,1); /* Safari+Chrome */ -webkit-box-shadow: 5px 5px 7px rgba(90,90,90,.7); /* Opera */ box-shadow: 5px 5px 7px rgba(90,90,90,.7); } .garbageSpan:after{ zindex: 40; } .garbageSpan:nth-child(odd) { -o-transform:rotate(4deg); -webkit-transform:rotate(4deg); -moz-transform:rotate(4deg); transform:rotate(4deg); /* position:relative;*/ top:5px; } .garbageSpan:nth-child(odd) > * { -o-transform:rotate(-9deg); -webkit-transform:rotate(-9deg); -moz-transform:rotate(-9deg); transform:rotate(-9deg); } .garbageSpan:nth-child(2n) { -o-transform:rotate(-3deg); -webkit-transform:rotate(-3deg); -moz-transform:rotate(-3deg); transform:rotate(-3deg); position:relative; top:-5px; } .garbageSpan:nth-child(2n) > * { -o-transform:rotate(3deg); -webkit-transform:rotate(3deg); -moz-transform:rotate(3deg); transform:rotate(3deg); } .garbageSpan:nth-child(4n) { -o-transform:rotate(5deg); -webkit-transform:rotate(5deg); -moz-transform:rotate(5deg); transform:rotate(5deg); position:relative; top:-10px; }.garbageSpan:nth-child(4n) > * { -o-transform:rotate(-5deg); -webkit-transform:rotate(-5deg); -moz-transform:rotate(-5deg); transform:rotate(-5deg); } .garbageSpan:nth-child(5n) { -o-transform:rotate(-5deg); -webkit-transform:rotate(-5deg); -moz-transform:rotate(-5deg); transform:rotate(-5deg); position:relative; top:-10px; } .garbageSpan:nth-child(5n) > * { -o-transform:rotate(5deg); -webkit-transform:rotate(5deg); -moz-transform:rotate(5deg); transform:rotate(5deg); } .garbageSpan.blaueTonne{ background-color: rgb(82,153,199); color: white; } .garbageSpan.bioTonne{ background-color: rgb(00,204,00); color: black; } .garbageSpan.gelberSack{ background-color: rgb(241,196,15); color: black; } .garbageSpan.gelbeTonne{ background-color: rgb(241,196,15); color: black; } .garbageSpan.schwarzeTonne{ background-color: rgb(190,195,199); color: black; }
0.454714
0.11158
* { box-sizing: border-box; margin: 0; padding: 0; } body { overflow-x: hidden; font-family: -apple-system, Helvetica, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', arial, sans-serif; } section { min-height: 45em; padding: 50px 0; } section h2{ margin: 50px; } section, footer { width: 100%; text-align: center; } a { color: #b4a5a5; transition: 200ms ease; text-decoration: none; } a:hover{ text-decoration: underline; cursor: pointer; } a:visited , a:focus, a:active{ text-decoration: none; } /* || Typography */ h1 { font-family: 'Freeway Gothic', Helvetica, sans-serif; } h2{ font-size: 4em; } h2, h3{ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif; } h3{ font-weight: lighter; } /* || Navigation */ nav{ width: 100%; height: auto; background-color: #151515; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; font-size: 1.4em; position: fixed; z-index: 10; } nav a { padding: 15px; } /* || Header */ header{ width: 100%; height: 90vh; background: url("https://images.pexels.com/photos/132340/pexels-photo-132340.jpeg"); background-size: cover; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #b4a5a5; background-attachment: fixed; background-position: center; } header::after{ content: ''; width: 100%; height: 90vh; background-color: #301b3f; opacity: 0.85; z-index: 0; position: absolute; } header h1{ font-size: 4em; } header > h1 ,span { z-index: 1; } /* || Mission */ #mission { background-color: #b4a5a5; display: flex; flex-direction: column; justify-content: center; align-items: center; } #mission p { max-width: 30%; font-size: 2em; font-weight: lighter; text-align: justify; } /* || Showcase */ #work { background-color: #301b3f; color: #b4a5a5; display: flex; flex-direction: column; align-items: center; } .pictures { display: flex; flex-wrap: wrap; padding: 0 5px; max-width: 60%; } .col { flex: 50%; max-width: 50%; padding: 0 5px; } .col img { margin-top: 8px; vertical-align: middle; width: 100%; } @media screen and (max-width: 950px) { .col { flex: 100%; max-width: 100%; } } /* || Team */ #team { background-color: #3c415c; color: #b4a5a5; } .people { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-evenly; margin: 6% 15%; } .people div { display: flex; flex-direction: column; padding: 25px; font-size: 3em; justify-content: center; position: relative; } .people div > img { border-radius: 100%; border: 2px solid #b4a5a5; box-shadow: 0 0 45px rgba(0, 0, 0, 0.75); max-width: 5em; max-height: 5em; margin: 0.8em 0; } .people div > span{ color: #b4a5a5; background-color: #301b3f; border-radius: 100%; transition: all 450ms cubic-bezier(0, -0.01, 0.85, 1.25); position: absolute; width: 5em; height: 5em; top: calc(25px + 0.8em); text-align: center; display: flex; justify-content: center; align-items: center; opacity: 0; border: 2px solid; } .people div > span:hover{ opacity: 1; background-color: rgba(48, 27, 63, 0.95) } /* || Team Title */ #team h2{ margin-bottom: 0 !important; } #team:nth-child(2){ font-size: 1.4em; } /* || Footer */ footer { padding: 80px; justify-content: space-around; display: flex; background: #151515; color: #b4a5a5; align-items: center; flex-wrap: wrap; } footer h3 { padding: 20px; } footer div:nth-child(1) { flex-basis: 0; flex-grow: 1; } footer div:nth-child(2){ flex-basis: 0; flex-grow: 3; } footer div:nth-child(3){ flex-basis: 0; flex-grow: 1; } @media screen and (max-width: 1111px) { footer { flex-direction: column; } } footer a { padding: 20px; background: #301b3f; }
style.css
* { box-sizing: border-box; margin: 0; padding: 0; } body { overflow-x: hidden; font-family: -apple-system, Helvetica, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', arial, sans-serif; } section { min-height: 45em; padding: 50px 0; } section h2{ margin: 50px; } section, footer { width: 100%; text-align: center; } a { color: #b4a5a5; transition: 200ms ease; text-decoration: none; } a:hover{ text-decoration: underline; cursor: pointer; } a:visited , a:focus, a:active{ text-decoration: none; } /* || Typography */ h1 { font-family: 'Freeway Gothic', Helvetica, sans-serif; } h2{ font-size: 4em; } h2, h3{ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif; } h3{ font-weight: lighter; } /* || Navigation */ nav{ width: 100%; height: auto; background-color: #151515; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; font-size: 1.4em; position: fixed; z-index: 10; } nav a { padding: 15px; } /* || Header */ header{ width: 100%; height: 90vh; background: url("https://images.pexels.com/photos/132340/pexels-photo-132340.jpeg"); background-size: cover; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #b4a5a5; background-attachment: fixed; background-position: center; } header::after{ content: ''; width: 100%; height: 90vh; background-color: #301b3f; opacity: 0.85; z-index: 0; position: absolute; } header h1{ font-size: 4em; } header > h1 ,span { z-index: 1; } /* || Mission */ #mission { background-color: #b4a5a5; display: flex; flex-direction: column; justify-content: center; align-items: center; } #mission p { max-width: 30%; font-size: 2em; font-weight: lighter; text-align: justify; } /* || Showcase */ #work { background-color: #301b3f; color: #b4a5a5; display: flex; flex-direction: column; align-items: center; } .pictures { display: flex; flex-wrap: wrap; padding: 0 5px; max-width: 60%; } .col { flex: 50%; max-width: 50%; padding: 0 5px; } .col img { margin-top: 8px; vertical-align: middle; width: 100%; } @media screen and (max-width: 950px) { .col { flex: 100%; max-width: 100%; } } /* || Team */ #team { background-color: #3c415c; color: #b4a5a5; } .people { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-evenly; margin: 6% 15%; } .people div { display: flex; flex-direction: column; padding: 25px; font-size: 3em; justify-content: center; position: relative; } .people div > img { border-radius: 100%; border: 2px solid #b4a5a5; box-shadow: 0 0 45px rgba(0, 0, 0, 0.75); max-width: 5em; max-height: 5em; margin: 0.8em 0; } .people div > span{ color: #b4a5a5; background-color: #301b3f; border-radius: 100%; transition: all 450ms cubic-bezier(0, -0.01, 0.85, 1.25); position: absolute; width: 5em; height: 5em; top: calc(25px + 0.8em); text-align: center; display: flex; justify-content: center; align-items: center; opacity: 0; border: 2px solid; } .people div > span:hover{ opacity: 1; background-color: rgba(48, 27, 63, 0.95) } /* || Team Title */ #team h2{ margin-bottom: 0 !important; } #team:nth-child(2){ font-size: 1.4em; } /* || Footer */ footer { padding: 80px; justify-content: space-around; display: flex; background: #151515; color: #b4a5a5; align-items: center; flex-wrap: wrap; } footer h3 { padding: 20px; } footer div:nth-child(1) { flex-basis: 0; flex-grow: 1; } footer div:nth-child(2){ flex-basis: 0; flex-grow: 3; } footer div:nth-child(3){ flex-basis: 0; flex-grow: 1; } @media screen and (max-width: 1111px) { footer { flex-direction: column; } } footer a { padding: 20px; background: #301b3f; }
0.541894
0.127002
* { margin: 0; padding: 0; font-family: "microsoft yahei"; box-sizing: border-box; font-weight: normal; } a { text-decoration: none; color: #999; } ul { list-style: none; } img { border: none; } .bg-grey { background-color: #f2f2f4; width: 100%; height: auto; padding: 76px 0; } .content { width: 1200px; margin: 0 auto; height: auto; } h2.title { text-align: center; font-size: 24px; color: #333; line-height: 24px; padding-bottom: 24px; position: relative; } h2.title:after { position: absolute; left: 50%; width: 46px; height: 1px; margin-left: -23px; background-color: #0c9; bottom: 0; content: ''; } p.subtitle { margin-top: 18px; text-align: center; font-size: 16px; color: #666; line-height: 30px; } .tab-block { width: 1200px; height: 580px; margin: 50px auto 0; background-color: #FFF; border: 1px solid #e5e5e5 } .tab-block.information-tab { height: 430px } .tab-block.information-tab .tabs { height: 380px } .tab-block .tab-buttons { width: 100%; height: 50px; background-color: #fafafa } .tab-block .tab-buttons .tab-button { width: 33.33%; float: left; height: 50px; text-align: center; font-size: 16px; color: #999; line-height: 50px; position: relative; cursor: pointer } .tab-block .tab-buttons .tab-button.cur { background-color: #fff; color: #333 } .tab-block .tab-buttons .tab-button.cur:after { content: ''; position: absolute; top: -1px; left: 0; width: 100%; height: 2px; background-color: #1183ff } .tab-block .tabs { width: 100%; height: 528px } .tab-block .tabs .tab-item { width: 100%; height: 100%; padding: 20px; display: none } .tab-block .tabs .tab-item.active { display: block } .information-tab .information-left { width: 500px; height: 340px; overflow: hidden; position: relative; float: left; } .information-tab .information-left img { width: 100%; height: auto } .information-tab .information-left .left-bottom { position: absolute; bottom: 0; left: 0; width: 100%; height: 48px; line-height: 48px; background-color: rgba(0, 0, 0, .5); z-index: 2; color: #fff; padding: 0 14px } .information-tab .information-left .left-bottom .article-title { font-size: 18px; width: 400px; float: left; } .information-tab .information-left .left-bottom .article-time { font-size: 14px; float: right; } .information-tab .information-right { width: 640px; height: 340px; float: right; } .information-tab .information-right .article-list { padding-top: 20px } .information-tab .information-right .article-list .article-link { display: block; padding: 0 20px } .information-tab .information-right .article-list .article-link .article-head span { display: inline-block; vertical-align: middle } .information-tab .information-right .article-list .article-number { width: 20px; height: 20px; text-align: center; line-height: 20px; color: #fff; background-color: #999; font-size: 14px } .information-tab .information-right .article-list .article-title { font-size: 16px; color: #333; line-height: 20px; margin-left: 14px; width: 450px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap } .information-tab .information-right .article-list .article-time { float: right; font-size: 12px; color: #999; line-height: 20px } .information-tab .information-right .article-list .article-content { margin-top: 10px; padding-left: 44px; width: 450px; font-size: 14px; color: #666; line-height: 26px; display: none } .information-tab .information-right .article-list .article-content p { height: 52px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; } .information-tab .information-right .article-list:nth-of-type(1) .article-number, .information-tab .information-right .article-list:nth-of-type(2) .article-number, .information-tab .information-right .article-list:nth-of-type(3) .article-number { background-color: #333 } .information-tab .information-right .article-list.current .article-link { background-color: #fafafc; padding: 20px } .information-tab .information-right .article-list.current .article-number { background-color: #0c9!important } .information-tab .information-right .article-list.current .article-title { color: #0c9 } .information-tab .information-right .article-list.current .article-content { display: block } .question-icon { width: 16px; height: 16px; display: inline-block; vertical-align: middle; background: url(../images/question-icon.png) center no-repeat; -ms-background-size: 16px 16px; background-size: 16px 16px; }
src/main/resources/static/css/stylenew.css
* { margin: 0; padding: 0; font-family: "microsoft yahei"; box-sizing: border-box; font-weight: normal; } a { text-decoration: none; color: #999; } ul { list-style: none; } img { border: none; } .bg-grey { background-color: #f2f2f4; width: 100%; height: auto; padding: 76px 0; } .content { width: 1200px; margin: 0 auto; height: auto; } h2.title { text-align: center; font-size: 24px; color: #333; line-height: 24px; padding-bottom: 24px; position: relative; } h2.title:after { position: absolute; left: 50%; width: 46px; height: 1px; margin-left: -23px; background-color: #0c9; bottom: 0; content: ''; } p.subtitle { margin-top: 18px; text-align: center; font-size: 16px; color: #666; line-height: 30px; } .tab-block { width: 1200px; height: 580px; margin: 50px auto 0; background-color: #FFF; border: 1px solid #e5e5e5 } .tab-block.information-tab { height: 430px } .tab-block.information-tab .tabs { height: 380px } .tab-block .tab-buttons { width: 100%; height: 50px; background-color: #fafafa } .tab-block .tab-buttons .tab-button { width: 33.33%; float: left; height: 50px; text-align: center; font-size: 16px; color: #999; line-height: 50px; position: relative; cursor: pointer } .tab-block .tab-buttons .tab-button.cur { background-color: #fff; color: #333 } .tab-block .tab-buttons .tab-button.cur:after { content: ''; position: absolute; top: -1px; left: 0; width: 100%; height: 2px; background-color: #1183ff } .tab-block .tabs { width: 100%; height: 528px } .tab-block .tabs .tab-item { width: 100%; height: 100%; padding: 20px; display: none } .tab-block .tabs .tab-item.active { display: block } .information-tab .information-left { width: 500px; height: 340px; overflow: hidden; position: relative; float: left; } .information-tab .information-left img { width: 100%; height: auto } .information-tab .information-left .left-bottom { position: absolute; bottom: 0; left: 0; width: 100%; height: 48px; line-height: 48px; background-color: rgba(0, 0, 0, .5); z-index: 2; color: #fff; padding: 0 14px } .information-tab .information-left .left-bottom .article-title { font-size: 18px; width: 400px; float: left; } .information-tab .information-left .left-bottom .article-time { font-size: 14px; float: right; } .information-tab .information-right { width: 640px; height: 340px; float: right; } .information-tab .information-right .article-list { padding-top: 20px } .information-tab .information-right .article-list .article-link { display: block; padding: 0 20px } .information-tab .information-right .article-list .article-link .article-head span { display: inline-block; vertical-align: middle } .information-tab .information-right .article-list .article-number { width: 20px; height: 20px; text-align: center; line-height: 20px; color: #fff; background-color: #999; font-size: 14px } .information-tab .information-right .article-list .article-title { font-size: 16px; color: #333; line-height: 20px; margin-left: 14px; width: 450px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap } .information-tab .information-right .article-list .article-time { float: right; font-size: 12px; color: #999; line-height: 20px } .information-tab .information-right .article-list .article-content { margin-top: 10px; padding-left: 44px; width: 450px; font-size: 14px; color: #666; line-height: 26px; display: none } .information-tab .information-right .article-list .article-content p { height: 52px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; } .information-tab .information-right .article-list:nth-of-type(1) .article-number, .information-tab .information-right .article-list:nth-of-type(2) .article-number, .information-tab .information-right .article-list:nth-of-type(3) .article-number { background-color: #333 } .information-tab .information-right .article-list.current .article-link { background-color: #fafafc; padding: 20px } .information-tab .information-right .article-list.current .article-number { background-color: #0c9!important } .information-tab .information-right .article-list.current .article-title { color: #0c9 } .information-tab .information-right .article-list.current .article-content { display: block } .question-icon { width: 16px; height: 16px; display: inline-block; vertical-align: middle; background: url(../images/question-icon.png) center no-repeat; -ms-background-size: 16px 16px; background-size: 16px 16px; }
0.351645
0.065635
:root { --select-arrow-bg-color: var(--color-bg-medium); --select-border-color: color(var(--color-border) blackness(+5%)); --select-bg-color: var(--color-bg-white); --select-text-color: var(--color-text-medium); --select-border-radius: 4px; } .Select { position: relative; display: inline-block; color: var(--color-text-medium); } /* custom arrows */ .Select:before, .Select:after { content: ""; position: absolute; top: 50%; right: 1em; width: 0; height: 0; pointer-events: none; /* no clicks since arrow is just for appearance */ } /* arrow pointing up */ .Select:before { margin-top: -0.25rem; border-left: 0.3rem solid transparent; border-right: 0.3rem solid transparent; border-bottom: 0.3rem solid var(--color-border); } /* arrow pointing down */ .Select:after { margin-top: 0.2rem; border-left: 0.3rem solid transparent; border-right: 0.3rem solid transparent; border-top: 0.3rem solid var(--color-border); } .Select select { display: inline-block; width: 100%; padding: 1rem 3rem 1rem 1rem; font-size: 0.8em; line-height: 1; color: var(--color-text-medium); border: 1px solid var(--color-border); background: var(--color-bg-white); border-radius: var(--select-border-radius); -webkit-appearance: none; -moz-appearance: none; box-shadow: 0 1px 2px var(--color-shadow); } .Select--blue select { color: var(--color-brand); border-color: var(--color-border); background-color: var(--color-bg-medium); } .Select--blue:after { border-top: 0.3rem solid var(--color-brand); } .Select--blue:before { border-bottom: 0.3rem solid var(--color-brand); } .Select--purple select { color: var(--color-accent2); border-color: var(--color-accent2); background-color: var(--color-bg-medium); } .Select--purple:after { border-top: 0.3rem solid var(--color-accent2); } .Select--purple:before { border-bottom: 0.3rem solid var(--color-accent2); } .Select--small select { padding: 0.25rem 1.5rem 0.25rem 0.5rem; font-size: 0.7em; line-height: 1.5em; } .Select--small:after { margin-top: -0.1rem; right: 0.5em; } .Select--small:before { border-bottom: none; } .Select select:focus { outline: none; } /* fix the outline that appears when interacting with metabase/components/Select */ .MB-Select:focus { outline: none; }
c#-metabase/frontend/src/metabase/css/components/select.css
:root { --select-arrow-bg-color: var(--color-bg-medium); --select-border-color: color(var(--color-border) blackness(+5%)); --select-bg-color: var(--color-bg-white); --select-text-color: var(--color-text-medium); --select-border-radius: 4px; } .Select { position: relative; display: inline-block; color: var(--color-text-medium); } /* custom arrows */ .Select:before, .Select:after { content: ""; position: absolute; top: 50%; right: 1em; width: 0; height: 0; pointer-events: none; /* no clicks since arrow is just for appearance */ } /* arrow pointing up */ .Select:before { margin-top: -0.25rem; border-left: 0.3rem solid transparent; border-right: 0.3rem solid transparent; border-bottom: 0.3rem solid var(--color-border); } /* arrow pointing down */ .Select:after { margin-top: 0.2rem; border-left: 0.3rem solid transparent; border-right: 0.3rem solid transparent; border-top: 0.3rem solid var(--color-border); } .Select select { display: inline-block; width: 100%; padding: 1rem 3rem 1rem 1rem; font-size: 0.8em; line-height: 1; color: var(--color-text-medium); border: 1px solid var(--color-border); background: var(--color-bg-white); border-radius: var(--select-border-radius); -webkit-appearance: none; -moz-appearance: none; box-shadow: 0 1px 2px var(--color-shadow); } .Select--blue select { color: var(--color-brand); border-color: var(--color-border); background-color: var(--color-bg-medium); } .Select--blue:after { border-top: 0.3rem solid var(--color-brand); } .Select--blue:before { border-bottom: 0.3rem solid var(--color-brand); } .Select--purple select { color: var(--color-accent2); border-color: var(--color-accent2); background-color: var(--color-bg-medium); } .Select--purple:after { border-top: 0.3rem solid var(--color-accent2); } .Select--purple:before { border-bottom: 0.3rem solid var(--color-accent2); } .Select--small select { padding: 0.25rem 1.5rem 0.25rem 0.5rem; font-size: 0.7em; line-height: 1.5em; } .Select--small:after { margin-top: -0.1rem; right: 0.5em; } .Select--small:before { border-bottom: none; } .Select select:focus { outline: none; } /* fix the outline that appears when interacting with metabase/components/Select */ .MB-Select:focus { outline: none; }
0.354768
0.144089
* { box-sizing: border-box; } .register-form { background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/12005/agsquare.png); padding-top: 20%; } h1, .login, .account, .contact{ width:80%; margin: 0 auto; } @supports (display: flex) { .register-form { padding:0; height: 92vh; display: flex; align-items: center; justify-content: center; flex-direction: column; } h1, .login, .account, .contact { margin: 0; width: 80%; } } @supports (display: grid) { .register-form { display: grid; grid-template-columns: 80%; align-content: center; align-items: stretch; } @media (min-width: 650px) { .register-form { grid-template-columns: repeat(2, minmax(150px, 30%)); } h1, .login { grid-column-end: span 2; width: auto; } .login > div { display: grid; grid-template-columns: 1fr 2fr; align-items: center; } .login > div.actions { grid-template-columns: 1fr 1fr 1fr; } .account { border-right: 1px dotted rgb(191, 216, 227); padding: 0 10px 0 0; align-self: end; width: auto; } .contact { padding: 0 0 0 10px; width: auto; } input[type="submit"] { grid-column: 2; } .actions a { justify-self: end; } } } h1 { background-color: rgba(191, 216, 227, 0.8); border-top-right-radius: 5px; border-top-left-radius: 5px; padding: 10px; font-size: 24px; line-height: 1.4; } .login { background-color: rgba(191, 216, 227, .4); border: 1px solid rgba(191, 216, 227, .8); border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; padding: 10px; margin-bottom: 10px; } .login > div { padding: 5px 0; } input[type="submit"] { border: 1px solid rgba(191, 216, 227, .8); border-radius: 5px; color: #fff; background-color: rgb(54, 134, 169); font-size: 110%; } input[type="text"], input[type="password"] { border: 1px solid rgba(191, 216, 227, .8); padding: 5px; border-radius: 5px; font-size: 110%; width: 100%; } .actions a { font-size: 80%; } /*Password hide/show */ .glyphicon, .glyphicon { position: relative; top: -25px; left: 776px; cursor: pointer; }
client/src/app/register/register.component.css
* { box-sizing: border-box; } .register-form { background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/12005/agsquare.png); padding-top: 20%; } h1, .login, .account, .contact{ width:80%; margin: 0 auto; } @supports (display: flex) { .register-form { padding:0; height: 92vh; display: flex; align-items: center; justify-content: center; flex-direction: column; } h1, .login, .account, .contact { margin: 0; width: 80%; } } @supports (display: grid) { .register-form { display: grid; grid-template-columns: 80%; align-content: center; align-items: stretch; } @media (min-width: 650px) { .register-form { grid-template-columns: repeat(2, minmax(150px, 30%)); } h1, .login { grid-column-end: span 2; width: auto; } .login > div { display: grid; grid-template-columns: 1fr 2fr; align-items: center; } .login > div.actions { grid-template-columns: 1fr 1fr 1fr; } .account { border-right: 1px dotted rgb(191, 216, 227); padding: 0 10px 0 0; align-self: end; width: auto; } .contact { padding: 0 0 0 10px; width: auto; } input[type="submit"] { grid-column: 2; } .actions a { justify-self: end; } } } h1 { background-color: rgba(191, 216, 227, 0.8); border-top-right-radius: 5px; border-top-left-radius: 5px; padding: 10px; font-size: 24px; line-height: 1.4; } .login { background-color: rgba(191, 216, 227, .4); border: 1px solid rgba(191, 216, 227, .8); border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; padding: 10px; margin-bottom: 10px; } .login > div { padding: 5px 0; } input[type="submit"] { border: 1px solid rgba(191, 216, 227, .8); border-radius: 5px; color: #fff; background-color: rgb(54, 134, 169); font-size: 110%; } input[type="text"], input[type="password"] { border: 1px solid rgba(191, 216, 227, .8); padding: 5px; border-radius: 5px; font-size: 110%; width: 100%; } .actions a { font-size: 80%; } /*Password hide/show */ .glyphicon, .glyphicon { position: relative; top: -25px; left: 776px; cursor: pointer; }
0.494873
0.198646
1. General CSS ============================================== */ * { margin: 0; padding: 0; outline: none; } body { color: #7a7a7a; font-family: 'Roboto', sans-serif; font-weight: 300; line-height: 25px; font-size: 16px; font-style: normal; -webkit-font-smoothing: antialiased; -moz-font-smoothing: antialiased; text-rendering: optimizeLegibility; } ::-moz-selection { background: #b3d4fc; text-shadow: none; } ::selection { background: #b3d4fc; text-shadow: none; } ol, ul { list-style: none; } a:hover { text-decoration: none; } audio, canvas, iframe, img, svg, video { vertical-align: middle; margin: 0; padding: 0; } img { max-width: 100%; } p { font-family: 'Roboto', sans-serif; } /*========================= 2.Typography ===========================*/ h1 { font-family: 'Raleway', sans-serif; font-size: 48px; font-weight: 500; } h2 { font-family: 'Raleway', sans-serif; font-size: 34px; } h3 { font-family: 'Raleway', sans-serif; font-size: 26px; } h4 { font-family: 'Raleway', sans-serif; font-size: 19px; } h5 { font-family: 'Raleway', sans-serif; font-size: 14px; } h6 { font-family: 'Raleway', sans-serif; font-weight:400; } /* ============================================== 2.1. Browser Upgrade Prompt ============================================== */ .browserupgrade { margin: 0.2em 0; background: #ccc; color: #000; padding: 0.2em 0; } /* ============================================== 2.2. Default CSS ============================================== */ .np { padding: 0; } .padding-zero { padding: 0; } .bg-change { background: #ffffff!important; color: #8272D1!important; } .mt { margin-top: 115px; } .mb { margin-bottom: 115px; } .mt-90 { margin-top: 0px; } .mb-60 { margin-bottom: 60px; } .mt-50 { margin-top: 50px; } .mt-0 { margin-top: 0px; } .mb-100 { margin-bottom: 100px; } section.pt-25 { padding-top: 25px; } .section-ptb { padding-top: 70px; padding-bottom: 70px; } .section-ptb-2 { padding-top: 60px; } .section-ptb-3 { padding-top: 50px; padding-bottom: 50px; } .section-ptb-4 { padding-top: 30px; padding-bottom: 90px; } .section-pt { padding-top: 90px; } .section-pb { padding-bottom: 90px; } .pt { padding-top: 95px; } .pb { padding-bottom: 95px; } .pb-70 { padding-bottom: 70px; } .pt-70 { padding-top: 70px; } .pt-50 { padding-top: 50px; } .pt { padding-top: 80px; } .pb-120 { padding-bottom: 120px; } .pb-90 { padding-bottom: 90px; } .pb-100 { padding-bottom: 100px; } .pb-50 { padding-bottom: 50px; } .pt-50 { padding-top: 50px; } .pt-80 { padding-top: 80px; } .pb-80 { padding-bottom: 80px; } .themeix-title-h1 { font-size: 36px; line-height: 48px; color: #333; font-weight: 400; margin-bottom: 20px; } .appix-danger { display: inline-block; padding: 12px 52px; background: #2E94DF; color: #ffffff; text-transform: uppercase; font-weight: 400; font-size: 12px; text-align: center; border-radius: 5px; transition: all 0.5s; } .appix-danger:hover { color: #fff; } .b-mr { margin-right: 25px; } .appix-info { display: inline-block; padding: 12px 20px; background: #3694F4; color: #ffffff; text-transform: uppercase; font-weight: 400; text-align: center; font-size: 12px; border-radius: 5px; transition: all 0.5s; } .appix-info:hover { color: #fff; } .para-mb { margin-bottom: 42px; font-size: 16px; } .bg-gray { background-color:#F5F5F5; } /* ========================================== 6. Sticky Menu ========================================== */ .stickey .main-menu { //box-shadow: 0 4px 5px rgba(0, 0, 0, 0.05); background: #FFFFFF; left: 0; color: #6d7680 !important; margin: 0 auto; position: fixed; right: 0; top: 0; z-index: 10; padding: 0px 0; border: 0; opacity: 0.95; } .sub-menu { box-shadow: 0 4px 5px rgba(0, 0, 0, 0.05); } .stickey .main-menu ul li a { color: #6d7680; } /* ========================================== 7. About Fixing ========================================== */ .about-pb { padding-top: 80px; padding-bottom: 80px; overflow: hidden; } /* ========================================== 8. Our Services ========================================== */ .our-service-section { padding: 25px 0 30px; } .themeix-sub-title { color: #ffffff; position: relative; } .themeix-sub-title::after { position: absolute; content: ""; height: 3px; left: 45%; top: 40px; width: 6%; background: #ffffff; text-align: center; margin: 0 auto; } .service-main { padding-top: 110px; padding-bottom: 110px; text-align: center; } .servic-icon { margin-bottom: 30px; } .service-content h3 { margin-bottom: 30px; } .themeix-para-style { color: #7a7a7a; line-height: 24px; font-size: 15px; } .home-bg-gradient{ background: linear-gradient(60deg, rgb(101, 140, 217) 0%, rgb(148, 91, 199) 100%); background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgb(148, 91, 199)), color-stop(100%, rgb(101, 140, 217))); /* safari4+,chrome */ background: -webkit-linear-gradient(35deg, rgb(148, 91, 199) 0%, rgb(101, 140, 217) 100%); /* safari5.1+,chrome10+ */ background: -o-linear-gradient(35deg, rgb(148, 91, 199) 0%, rgb(101, 140, 217) 100%); /* opera 11.10+ */ background: -ms-linear-gradient(35deg, rgb(148, 91, 199) 0%, rgb(101, 140, 217) 100%); /* ie10+ */ background: linear-gradient(55deg, rgb(148, 91, 199) 0%, rrgb(101, 140, 217) 100%); /* w3c */ filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f96a91', endColorstr='#3694F4', GradientType=1); /* ie6-9 */ } .bg-gradient { background: -moz-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* ff3.6+ */ background: -webkit-gradient(90deg, linear, left bottom, right top, color-stop(0%, #56b6e7), color-stop(100%, #c63db8)); /* safari4+,chrome */ background: -webkit-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* safari5.1+,chrome10+ */ background: -o-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* opera 11.10+ */ background: -ms-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* ie10+ */ background: linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* w3c */ } /* ========================================== 17. Footer Area ========================================== */ .themeix-footer-bottom { text-align: center; padding: 60px 0; } .inner-section a { display: inline-block; } .footer-menu { padding: 10px 0; } .footer-menu li { display: block; display: inline-block; border-right: 1px solid#ffffff; } .footer-menu li:last-child { border-right: none; } .footer-menu li a { color: #7a7a7a; font-weight: 400; padding: 0 11px; } .footer-overlay, .inner-section { color:#cfcbcb; } a.themeix-tool .fa { color: #FFFFFF; font-size: 24px; text-indent: .6px; margin-top: 7px; } /* ========================================== 18. scrollUP ========================================== */ #scrollUp { background: #7d5ab5 none repeat scroll 0 0; bottom: 40px; color: #FFFFFF; font-size: 20px; font-weight: 500; width: 40px; height: 40px; right: 3%; text-align: center; -webkit-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; line-height: 40px; text-align: center; } /* ========================================== 19. Page Header Background (All) ========================================== */ .categories-header { background-color: #FAFAFA; color: #7a7a7a; background-size: cover; background-position: 50% 14px; width: 100%; height: 100%; margin: 0 auto; background-position: top center; padding: 20px 0; } .categories-header.blue { background: -moz-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* ff3.6+ */ background: -webkit-gradient(90deg, linear, left bottom, right top, color-stop(0%, #56b6e7), color-stop(100%, #c63db8)); /* safari4+,chrome */ background: -webkit-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* safari5.1+,chrome10+ */ background: -o-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* opera 11.10+ */ background: -ms-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* ie10+ */ background: linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* w3c */ color: #FFF; } .categories-header.blue li, .categories-header.blue li a { color: #FFF; } .categories-header.purple { background-color: #7d5ab5; color: #FFF; } .categories-header.purple li, .categories-header.purple li a { color: #FFF; } .page-header-bg { background-color: #FAFAFA; border-bottom: 1px solid #CCC; color: #7a7a7a; background-size: cover; background-position: 50% 14px; width: 100%; height: 100%; margin: 0 auto; background-position: top center; } .page-header-bg { padding: 10px 0; color: #FFFFFF; } ul.page-list { list-style: none; margin: 0; padding: 0; } ul.page-list li { display: inline-block; color: #7a7a7a; } ul.page-list li + li::before { font-family: 'FontAwesome'; content: "\f101"; padding: 0px 8px; } ul.page-list li a { color: #7a7a7a; } /* ========================================== 20. Blog ========================================== */ .blog-item { margin-bottom: 50px; position: relative; overflow:hidden; } .blog-image { position: relative; overflow: hidden; min-height: 200px; background-size:cover; background-position:center center; border-radius: 8px 8px 0px 0px; } .blog-image:after { width: 30px; height: 30px; text-align: center; line-height: 30px; font-size: 30px; color: #fff; z-index: 11; position: absolute; left: 0; right: 0; top: 0; bottom: 0; margin: auto; content: "\f067"; font-family: FontAwesome; opacity: 0; visibility: hidden; -webkit-transform: scaleX(-1); transform: scaleX(-1); transition: transform 400ms ease 0s; -webkit-transition: -webkit-transform 400ms ease 0s; -moz-transition: transform 400ms ease; } .blog-item:hover .blog-image:after { opacity: 1; visibility: visible; -webkit-transform: scaleX(1); transform: scaleX(1); } .blog-image > img { width: 100%; } .item-overlay:before { position: absolute; content: " "; left: 0; width: 100%; height: 100%; top: 0; right: 0; bottom: 0; background: rgba(63, 63, 63, .61); opacity: 0; transition: all 350ms; } .blog-item:hover .item-overlay:before { opacity: 1; } .blog-details { min-height: 240px; background-color: white; padding: 17px; border-radius: 0px 0px 8px 8px; box-shadow: 1px 13px 35px rgba(66, 45, 178, 0.12); transition: all 0.3s ease; margin-bottom: 30px; } .blog-details h3 a { font-size:21px; text-transform: NONE; font-weight: 500; margin: 0px; margin-bottom: 0px; text-decoration: none; color: #333; font-weight: 400; transition: all .4s linear 0s; padding-bottom: 0px; display: inline-block; } .blog-item .blog-excerpt { padding-bottom:12px; padding-top: 0px; } .blog-details>h3 { font-size: 30px; } .blog-details h3 a:hover { color: #7d5ab5; } ul.blog-author-name li { display: inline-block; margin-right: 10px; color: #795BB6; } ul.blog-author-name li a { color: #795BB6; } ul.blog-author-name li i { margin-right: 10px; color: #795BB6; } .blog-details p { color: #777777; font-size: 15px; line-height: 24px; } .share-icon span { display: inline-block; font-size: 16px; text-transform: uppercase; margin-right: 20px; color: #7d5ab5; } ul.social-icon { display: inline-block; margin-bottom: 0; } .social-icon li a { display: inline-block; width: 30px; height: 30px; text-align: center; line-height: 30px; color: #fff; font-size: 15px; margin-right: 6px; -webkit-transition: all .5s; -o-transition: all .5s; transition: all .5s; border-radius: 50%; } a:hover { text-decoration: none; } a:focus, a:hover { color: #23527c; text-decoration: underline; } a:active, a:hover { outline: 0; } .twitter { background: #1DA1F2; } a { color: #337ab7; text-decoration: none; } .social-icon li { display: inline-block; } .twitter { background: #1DA1F2; } .facebook { background: #3B5998; } .google { background: #DC4A3D; } .social-icon a:hover { background: #424242; color: #FFFFFF; } .icon-button { position: relative; padding-top: 20px; } .blog-meta-wrapper { margin-top: 0px; margin-bottom: 30px; float: left; width: 100%; position: relative; } .blog-meta { float: left; width: 60%; } .tag-clouds { margin-bottom: 10px; } .tag-clouds a { border: 1px solid #7d5ab5; color: #7d5ab5; padding: 5px 10px; margin-right: 5px; } .blog-cats { float: left; margin-right: 15px; } .blog-cats i, .blog-author i { margin-right: 5px; color: #9d9d9d; } .share-icon { /* float: right; position: absolute; bottom: 10px; right: 0; */ } .blog-navigation { margin-bottom: 10px; float: left; width: 100%; } .previous-blog-post { float: left; width: 50%; padding-right: 30px; } .next-blog-post { padding-left: 30px; float: right; width: 50%; text-align: right; } .hover-color { transition:all .4s linear 0s; } .hover-color:hover { color: #7d5ab5; } h5.author-title { color: #333333; font-size: 18px; line-height: 64px; } .read-more { float: left; } .blog-excerpt p { margin-top: 20px; margin-bottom:20px; height: 72px; overflow: hidden; position: relative; } .blog-excerpt p:after { content: ""; text-align: right; position: absolute; bottom: 0; right: 0; width: 50%; height: 1.2em; background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%); } .previous-blog-post i { padding-right: 5px; } .blog-cats a, .blog-author a { color: #7d5ab5; } .previous-blog-post a, .previous-blog-post i, .next-blog-post a, .next-blog-post i { color: #3d93f1; } /* ========================================== 21. Pagination ========================================== */ .cust-pagi {} .pagination>li:first-child>a, .pagination>li:first-child>span, .pagination>li:last-child>a, .pagination>li:last-child>span { margin-left: 0; border-top-left-radius: 0px; border-bottom-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; } .pagination >li > a { padding: 8px 12px; margin-left: -1px; line-height: 1.42857143; color: #337ab7; text-decoration: none; background-color: #fff; border: 0px solid #ddd; font-weight: 400; color: #fff; font-size: 16px; background: #CCCCCC; -webkit-transition: all .5s; -o-transition: all .5s; transition: all .5s; margin-right: 8px; } .pagination li a:hover { background: #2E94DF; color: #FFFFFF; } .pagination li a.active { background: #2E94DF; color: #FFFFFF; } /* ========================================== 22. Blog Footer ========================================== */ .column { overflow: hidden; } .themeix-tool i { color: #FFFFFF; font-size: 20px; } .themeix-tool:hover i { color: #ffffff; transition: color 0.3s 0.6s; } .themeix-tool:hover #colorbox, .themeix-tool:hover #colorboxs, .themeix-tool:hover #colorboxss { margin-top: -61px; height: 72px; transition: margin 0.6s, height 0.3s 0.6s; } .themeix-tool { transform: scale(1); } .themeix-tool:hover { transform: scale(1.1); } .themeix-color { background-color: #7d5ab5; } .twitter-color { background-color: #55ACEE; } .facebook-color { background: #3B5998; } .google-color { background: #DC4A3D; } #colorbox, #colorboxs, #colorboxss { height: 30px; width: 63px; margin-top: 100px; } .column p { margin-bottom: 22px; } .widget-content ul { margin: 0; padding: 0; list-style: none; } .widget-content ul li { margin-bottom: 0; font-family: 'Roboto', sans-serif; } .widget-content a { color: #AAAAAA; font-size: 14px; display: inline-block; } .widget-content a:hover { color: #7d5ab5; } .newsletter { position: relative; } .newsletter input { background: #FFFFFF; border: 1px solid#E4E4E4; width: 100%; padding: 0 15px; line-height: 25px; text-align: left; } .newsletter button { position: absolute; right: 0; top: 0; height: 47px; width: 43px; line-height: 42px; background: #2E94DF; color: #FFF; border: 0; } .mar-top { margin-top: -12px; } /* ========================================================================== 30. Print styles ========================================================================== */ @media print { *, *:before, *:after, *:first-letter, *:first-line { background: transparent !important; color: #000 !important; /* Black prints faster: http://www.sanbeiji.com/archives/953 */ box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } /* * Don't show links that are fragment identifiers, * or use the `javascript:` pseudo protocol */ a[href^="#"]:after, a[href^="javascript:"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } /* * Printing Tables: * http://css-discuss.incutio.com/wiki/Printing_Tables */ thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } } ul li.cat-item a { text-transform:capitalize; } .sidebar ul li.cat-item a { padding: 10px 0; position: relative; color: 7d5ab5; } .blog-meta-wrapper .blog-cats, .blog-meta-wrapper .blog-author{ color:#7d5ab5; } /* ========================================================================== Progress bars ========================================================================== */ .progress-bar { color: #fff; background: rgba(207,72,207,1); background: -moz-linear-gradient(45deg, rgba(207,72,207,1) 0%, rgba(125,90,181,0.83) 54%, rgba(125,185,232,0.68) 100%); background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(207,72,207,1)), color-stop(54%, rgba(125,90,181,0.83)), color-stop(100%, rgba(125,185,232,0.68))); background: -webkit-linear-gradient(45deg, rgba(207,72,207,1) 0%, rgba(125,90,181,0.83) 54%, rgba(125,185,232,0.68) 100%); background: -o-linear-gradient(45deg, rgba(207,72,207,1) 0%, rgba(125,90,181,0.83) 54%, rgba(125,185,232,0.68) 100%); background: -ms-linear-gradient(45deg, rgba(207,72,207,1) 0%, rgba(125,90,181,0.83) 54%, rgba(125,185,232,0.68) 100%); background: linear-gradient(45deg, rgba(207,72,207,1) 0%, rgba(125,90,181,0.83) 54%, rgba(125,185,232,0.68) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cf48cf', endColorstr='#7db9e8', GradientType=1 ); } /* ========================================================================== Additional CSS ========================================================================== */ #project .caption-area { padding: 10% 0; } #project .service-main { padding: 15px 0; } #project #links .single-item { padding: 40px 20px; } #project #links .service-icon { margin-bottom: 20px; } #project #links .service-main { background-color: #FFF; padding: 20px 0 0 0; } #project #links a.link-item { display: block; } #project #links a.link-item:hover { opacity: 0.9; } #project #links .service-content h3 { margin: 0; padding: 15px 0; } #project .our-service-section { padding: 0; } #project .service-icon img { max-width: 170px; /* border-radius: 1000px; */ } .about-appix-left-img { text-align: center; } .about-appix-center-img { text-align: center; } #project .container { background-size: cover; } .project-card { position: relative; min-width: 344px; } .project-desc { margin-bottom: 60px; } .info-links { bottom: 14px; position: absolute; } .click-through { margin-right: 5px; background-color: rgba(33, 33, 33, 0.5); color: #fff; font-size: 12px; padding: 6px 10px; display: inline-block; cursor: pointer; float: right; } .click-through:hover { color: #FFF; } .click-through label { margin: 0; } .project-btn { padding: 12px 20px; display: inline-block; font-size: 15px; text-transform: capitalize; line-height: 24px; background: #795BB6; margin-right: 12px; font-weight: 400; color: #fff; position: relative; z-index: 2; margin-top: 20px; } .project-btn:hover { color: #FFF; opacity: 0.8; } .roadmap-item-container { position: relative; padding-bottom: 64px; padding-left: 4em; } .link-section-item:hover { display: block; border-radius: 5px; opacity: 0.75; } @media (max-width: 1199px){ .projects-card-container .project-card { max-width: 100%!important; width: 100%; } } @media (max-width: 440px) { .project-more { display:none; } } .roadmap-icon { display: inline-block; position: absolute; width: 3em; height: 3em; text-align: center; border-radius: 100em; margin: 0 auto; color: #ffffff; background-color: hsl(263, 38%, 53%); padding: 1em 0; font-size: 1em; margin-top: 1em; } .roadmap-connector { border-left: 1px dashed hsl(263, 38%, 53%); margin: 1em 0 0 1.5em; display: inline-block; height: 100%; position: absolute; } .roadmap-table { display: table; position: relative; width: 100%; } .roadmap-table:last-child .roadmap-connector { display: none; } .card-author-subhead { position: relative; top: -8px; font-size: 10px; height: 0px; display: block; } .card-author-name { position: relative; display: block; top: 6px; } .info-links.roadmap-info-links label { background-color: #523971; } .roadmap-content>p:first-of-type { display: none } .recent-posts li { display: none; } .recent-posts li:nth-child(1) { display: block; } .recent-posts li:nth-child(2) { display: block; } .recent-posts li:nth-child(3) { display: block; } .recent-posts li:nth-child(4) { display: block; } .recent-posts li:nth-child(5) { display: block; } nav li ul { display: none; position: fixed; } .main-menu .navbar-nav li ul li { padding: 0; } .main-menu .navbar-nav li ul li a { padding: 8px 30px; } .nav li:hover ul { display: block; background-color: #FFF; } .sub-menu .fa { margin-right: 5px; } .links-image-shadow .service-icon img { filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.2)) } .links-desc { padding: 0 20px; } .footer-area { border-top: 1px solid #e2e2e2; } body > p { display: none; } .title-block-section { text-align: center; } .community-fund-section ul { list-style: disc; padding-left: 40px; margin: 20px 0; } .community-fund-section ol { list-style: decimal; padding-left: 40px; margin: 20px 0; }
themes/nav-community-v2/static/css/style.css
1. General CSS ============================================== */ * { margin: 0; padding: 0; outline: none; } body { color: #7a7a7a; font-family: 'Roboto', sans-serif; font-weight: 300; line-height: 25px; font-size: 16px; font-style: normal; -webkit-font-smoothing: antialiased; -moz-font-smoothing: antialiased; text-rendering: optimizeLegibility; } ::-moz-selection { background: #b3d4fc; text-shadow: none; } ::selection { background: #b3d4fc; text-shadow: none; } ol, ul { list-style: none; } a:hover { text-decoration: none; } audio, canvas, iframe, img, svg, video { vertical-align: middle; margin: 0; padding: 0; } img { max-width: 100%; } p { font-family: 'Roboto', sans-serif; } /*========================= 2.Typography ===========================*/ h1 { font-family: 'Raleway', sans-serif; font-size: 48px; font-weight: 500; } h2 { font-family: 'Raleway', sans-serif; font-size: 34px; } h3 { font-family: 'Raleway', sans-serif; font-size: 26px; } h4 { font-family: 'Raleway', sans-serif; font-size: 19px; } h5 { font-family: 'Raleway', sans-serif; font-size: 14px; } h6 { font-family: 'Raleway', sans-serif; font-weight:400; } /* ============================================== 2.1. Browser Upgrade Prompt ============================================== */ .browserupgrade { margin: 0.2em 0; background: #ccc; color: #000; padding: 0.2em 0; } /* ============================================== 2.2. Default CSS ============================================== */ .np { padding: 0; } .padding-zero { padding: 0; } .bg-change { background: #ffffff!important; color: #8272D1!important; } .mt { margin-top: 115px; } .mb { margin-bottom: 115px; } .mt-90 { margin-top: 0px; } .mb-60 { margin-bottom: 60px; } .mt-50 { margin-top: 50px; } .mt-0 { margin-top: 0px; } .mb-100 { margin-bottom: 100px; } section.pt-25 { padding-top: 25px; } .section-ptb { padding-top: 70px; padding-bottom: 70px; } .section-ptb-2 { padding-top: 60px; } .section-ptb-3 { padding-top: 50px; padding-bottom: 50px; } .section-ptb-4 { padding-top: 30px; padding-bottom: 90px; } .section-pt { padding-top: 90px; } .section-pb { padding-bottom: 90px; } .pt { padding-top: 95px; } .pb { padding-bottom: 95px; } .pb-70 { padding-bottom: 70px; } .pt-70 { padding-top: 70px; } .pt-50 { padding-top: 50px; } .pt { padding-top: 80px; } .pb-120 { padding-bottom: 120px; } .pb-90 { padding-bottom: 90px; } .pb-100 { padding-bottom: 100px; } .pb-50 { padding-bottom: 50px; } .pt-50 { padding-top: 50px; } .pt-80 { padding-top: 80px; } .pb-80 { padding-bottom: 80px; } .themeix-title-h1 { font-size: 36px; line-height: 48px; color: #333; font-weight: 400; margin-bottom: 20px; } .appix-danger { display: inline-block; padding: 12px 52px; background: #2E94DF; color: #ffffff; text-transform: uppercase; font-weight: 400; font-size: 12px; text-align: center; border-radius: 5px; transition: all 0.5s; } .appix-danger:hover { color: #fff; } .b-mr { margin-right: 25px; } .appix-info { display: inline-block; padding: 12px 20px; background: #3694F4; color: #ffffff; text-transform: uppercase; font-weight: 400; text-align: center; font-size: 12px; border-radius: 5px; transition: all 0.5s; } .appix-info:hover { color: #fff; } .para-mb { margin-bottom: 42px; font-size: 16px; } .bg-gray { background-color:#F5F5F5; } /* ========================================== 6. Sticky Menu ========================================== */ .stickey .main-menu { //box-shadow: 0 4px 5px rgba(0, 0, 0, 0.05); background: #FFFFFF; left: 0; color: #6d7680 !important; margin: 0 auto; position: fixed; right: 0; top: 0; z-index: 10; padding: 0px 0; border: 0; opacity: 0.95; } .sub-menu { box-shadow: 0 4px 5px rgba(0, 0, 0, 0.05); } .stickey .main-menu ul li a { color: #6d7680; } /* ========================================== 7. About Fixing ========================================== */ .about-pb { padding-top: 80px; padding-bottom: 80px; overflow: hidden; } /* ========================================== 8. Our Services ========================================== */ .our-service-section { padding: 25px 0 30px; } .themeix-sub-title { color: #ffffff; position: relative; } .themeix-sub-title::after { position: absolute; content: ""; height: 3px; left: 45%; top: 40px; width: 6%; background: #ffffff; text-align: center; margin: 0 auto; } .service-main { padding-top: 110px; padding-bottom: 110px; text-align: center; } .servic-icon { margin-bottom: 30px; } .service-content h3 { margin-bottom: 30px; } .themeix-para-style { color: #7a7a7a; line-height: 24px; font-size: 15px; } .home-bg-gradient{ background: linear-gradient(60deg, rgb(101, 140, 217) 0%, rgb(148, 91, 199) 100%); background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgb(148, 91, 199)), color-stop(100%, rgb(101, 140, 217))); /* safari4+,chrome */ background: -webkit-linear-gradient(35deg, rgb(148, 91, 199) 0%, rgb(101, 140, 217) 100%); /* safari5.1+,chrome10+ */ background: -o-linear-gradient(35deg, rgb(148, 91, 199) 0%, rgb(101, 140, 217) 100%); /* opera 11.10+ */ background: -ms-linear-gradient(35deg, rgb(148, 91, 199) 0%, rgb(101, 140, 217) 100%); /* ie10+ */ background: linear-gradient(55deg, rgb(148, 91, 199) 0%, rrgb(101, 140, 217) 100%); /* w3c */ filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f96a91', endColorstr='#3694F4', GradientType=1); /* ie6-9 */ } .bg-gradient { background: -moz-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* ff3.6+ */ background: -webkit-gradient(90deg, linear, left bottom, right top, color-stop(0%, #56b6e7), color-stop(100%, #c63db8)); /* safari4+,chrome */ background: -webkit-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* safari5.1+,chrome10+ */ background: -o-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* opera 11.10+ */ background: -ms-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* ie10+ */ background: linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* w3c */ } /* ========================================== 17. Footer Area ========================================== */ .themeix-footer-bottom { text-align: center; padding: 60px 0; } .inner-section a { display: inline-block; } .footer-menu { padding: 10px 0; } .footer-menu li { display: block; display: inline-block; border-right: 1px solid#ffffff; } .footer-menu li:last-child { border-right: none; } .footer-menu li a { color: #7a7a7a; font-weight: 400; padding: 0 11px; } .footer-overlay, .inner-section { color:#cfcbcb; } a.themeix-tool .fa { color: #FFFFFF; font-size: 24px; text-indent: .6px; margin-top: 7px; } /* ========================================== 18. scrollUP ========================================== */ #scrollUp { background: #7d5ab5 none repeat scroll 0 0; bottom: 40px; color: #FFFFFF; font-size: 20px; font-weight: 500; width: 40px; height: 40px; right: 3%; text-align: center; -webkit-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; line-height: 40px; text-align: center; } /* ========================================== 19. Page Header Background (All) ========================================== */ .categories-header { background-color: #FAFAFA; color: #7a7a7a; background-size: cover; background-position: 50% 14px; width: 100%; height: 100%; margin: 0 auto; background-position: top center; padding: 20px 0; } .categories-header.blue { background: -moz-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* ff3.6+ */ background: -webkit-gradient(90deg, linear, left bottom, right top, color-stop(0%, #56b6e7), color-stop(100%, #c63db8)); /* safari4+,chrome */ background: -webkit-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* safari5.1+,chrome10+ */ background: -o-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* opera 11.10+ */ background: -ms-linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* ie10+ */ background: linear-gradient(90deg, #56b6e7 0%, #c63db8 100%); /* w3c */ color: #FFF; } .categories-header.blue li, .categories-header.blue li a { color: #FFF; } .categories-header.purple { background-color: #7d5ab5; color: #FFF; } .categories-header.purple li, .categories-header.purple li a { color: #FFF; } .page-header-bg { background-color: #FAFAFA; border-bottom: 1px solid #CCC; color: #7a7a7a; background-size: cover; background-position: 50% 14px; width: 100%; height: 100%; margin: 0 auto; background-position: top center; } .page-header-bg { padding: 10px 0; color: #FFFFFF; } ul.page-list { list-style: none; margin: 0; padding: 0; } ul.page-list li { display: inline-block; color: #7a7a7a; } ul.page-list li + li::before { font-family: 'FontAwesome'; content: "\f101"; padding: 0px 8px; } ul.page-list li a { color: #7a7a7a; } /* ========================================== 20. Blog ========================================== */ .blog-item { margin-bottom: 50px; position: relative; overflow:hidden; } .blog-image { position: relative; overflow: hidden; min-height: 200px; background-size:cover; background-position:center center; border-radius: 8px 8px 0px 0px; } .blog-image:after { width: 30px; height: 30px; text-align: center; line-height: 30px; font-size: 30px; color: #fff; z-index: 11; position: absolute; left: 0; right: 0; top: 0; bottom: 0; margin: auto; content: "\f067"; font-family: FontAwesome; opacity: 0; visibility: hidden; -webkit-transform: scaleX(-1); transform: scaleX(-1); transition: transform 400ms ease 0s; -webkit-transition: -webkit-transform 400ms ease 0s; -moz-transition: transform 400ms ease; } .blog-item:hover .blog-image:after { opacity: 1; visibility: visible; -webkit-transform: scaleX(1); transform: scaleX(1); } .blog-image > img { width: 100%; } .item-overlay:before { position: absolute; content: " "; left: 0; width: 100%; height: 100%; top: 0; right: 0; bottom: 0; background: rgba(63, 63, 63, .61); opacity: 0; transition: all 350ms; } .blog-item:hover .item-overlay:before { opacity: 1; } .blog-details { min-height: 240px; background-color: white; padding: 17px; border-radius: 0px 0px 8px 8px; box-shadow: 1px 13px 35px rgba(66, 45, 178, 0.12); transition: all 0.3s ease; margin-bottom: 30px; } .blog-details h3 a { font-size:21px; text-transform: NONE; font-weight: 500; margin: 0px; margin-bottom: 0px; text-decoration: none; color: #333; font-weight: 400; transition: all .4s linear 0s; padding-bottom: 0px; display: inline-block; } .blog-item .blog-excerpt { padding-bottom:12px; padding-top: 0px; } .blog-details>h3 { font-size: 30px; } .blog-details h3 a:hover { color: #7d5ab5; } ul.blog-author-name li { display: inline-block; margin-right: 10px; color: #795BB6; } ul.blog-author-name li a { color: #795BB6; } ul.blog-author-name li i { margin-right: 10px; color: #795BB6; } .blog-details p { color: #777777; font-size: 15px; line-height: 24px; } .share-icon span { display: inline-block; font-size: 16px; text-transform: uppercase; margin-right: 20px; color: #7d5ab5; } ul.social-icon { display: inline-block; margin-bottom: 0; } .social-icon li a { display: inline-block; width: 30px; height: 30px; text-align: center; line-height: 30px; color: #fff; font-size: 15px; margin-right: 6px; -webkit-transition: all .5s; -o-transition: all .5s; transition: all .5s; border-radius: 50%; } a:hover { text-decoration: none; } a:focus, a:hover { color: #23527c; text-decoration: underline; } a:active, a:hover { outline: 0; } .twitter { background: #1DA1F2; } a { color: #337ab7; text-decoration: none; } .social-icon li { display: inline-block; } .twitter { background: #1DA1F2; } .facebook { background: #3B5998; } .google { background: #DC4A3D; } .social-icon a:hover { background: #424242; color: #FFFFFF; } .icon-button { position: relative; padding-top: 20px; } .blog-meta-wrapper { margin-top: 0px; margin-bottom: 30px; float: left; width: 100%; position: relative; } .blog-meta { float: left; width: 60%; } .tag-clouds { margin-bottom: 10px; } .tag-clouds a { border: 1px solid #7d5ab5; color: #7d5ab5; padding: 5px 10px; margin-right: 5px; } .blog-cats { float: left; margin-right: 15px; } .blog-cats i, .blog-author i { margin-right: 5px; color: #9d9d9d; } .share-icon { /* float: right; position: absolute; bottom: 10px; right: 0; */ } .blog-navigation { margin-bottom: 10px; float: left; width: 100%; } .previous-blog-post { float: left; width: 50%; padding-right: 30px; } .next-blog-post { padding-left: 30px; float: right; width: 50%; text-align: right; } .hover-color { transition:all .4s linear 0s; } .hover-color:hover { color: #7d5ab5; } h5.author-title { color: #333333; font-size: 18px; line-height: 64px; } .read-more { float: left; } .blog-excerpt p { margin-top: 20px; margin-bottom:20px; height: 72px; overflow: hidden; position: relative; } .blog-excerpt p:after { content: ""; text-align: right; position: absolute; bottom: 0; right: 0; width: 50%; height: 1.2em; background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%); } .previous-blog-post i { padding-right: 5px; } .blog-cats a, .blog-author a { color: #7d5ab5; } .previous-blog-post a, .previous-blog-post i, .next-blog-post a, .next-blog-post i { color: #3d93f1; } /* ========================================== 21. Pagination ========================================== */ .cust-pagi {} .pagination>li:first-child>a, .pagination>li:first-child>span, .pagination>li:last-child>a, .pagination>li:last-child>span { margin-left: 0; border-top-left-radius: 0px; border-bottom-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; } .pagination >li > a { padding: 8px 12px; margin-left: -1px; line-height: 1.42857143; color: #337ab7; text-decoration: none; background-color: #fff; border: 0px solid #ddd; font-weight: 400; color: #fff; font-size: 16px; background: #CCCCCC; -webkit-transition: all .5s; -o-transition: all .5s; transition: all .5s; margin-right: 8px; } .pagination li a:hover { background: #2E94DF; color: #FFFFFF; } .pagination li a.active { background: #2E94DF; color: #FFFFFF; } /* ========================================== 22. Blog Footer ========================================== */ .column { overflow: hidden; } .themeix-tool i { color: #FFFFFF; font-size: 20px; } .themeix-tool:hover i { color: #ffffff; transition: color 0.3s 0.6s; } .themeix-tool:hover #colorbox, .themeix-tool:hover #colorboxs, .themeix-tool:hover #colorboxss { margin-top: -61px; height: 72px; transition: margin 0.6s, height 0.3s 0.6s; } .themeix-tool { transform: scale(1); } .themeix-tool:hover { transform: scale(1.1); } .themeix-color { background-color: #7d5ab5; } .twitter-color { background-color: #55ACEE; } .facebook-color { background: #3B5998; } .google-color { background: #DC4A3D; } #colorbox, #colorboxs, #colorboxss { height: 30px; width: 63px; margin-top: 100px; } .column p { margin-bottom: 22px; } .widget-content ul { margin: 0; padding: 0; list-style: none; } .widget-content ul li { margin-bottom: 0; font-family: 'Roboto', sans-serif; } .widget-content a { color: #AAAAAA; font-size: 14px; display: inline-block; } .widget-content a:hover { color: #7d5ab5; } .newsletter { position: relative; } .newsletter input { background: #FFFFFF; border: 1px solid#E4E4E4; width: 100%; padding: 0 15px; line-height: 25px; text-align: left; } .newsletter button { position: absolute; right: 0; top: 0; height: 47px; width: 43px; line-height: 42px; background: #2E94DF; color: #FFF; border: 0; } .mar-top { margin-top: -12px; } /* ========================================================================== 30. Print styles ========================================================================== */ @media print { *, *:before, *:after, *:first-letter, *:first-line { background: transparent !important; color: #000 !important; /* Black prints faster: http://www.sanbeiji.com/archives/953 */ box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } /* * Don't show links that are fragment identifiers, * or use the `javascript:` pseudo protocol */ a[href^="#"]:after, a[href^="javascript:"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } /* * Printing Tables: * http://css-discuss.incutio.com/wiki/Printing_Tables */ thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } } ul li.cat-item a { text-transform:capitalize; } .sidebar ul li.cat-item a { padding: 10px 0; position: relative; color: 7d5ab5; } .blog-meta-wrapper .blog-cats, .blog-meta-wrapper .blog-author{ color:#7d5ab5; } /* ========================================================================== Progress bars ========================================================================== */ .progress-bar { color: #fff; background: rgba(207,72,207,1); background: -moz-linear-gradient(45deg, rgba(207,72,207,1) 0%, rgba(125,90,181,0.83) 54%, rgba(125,185,232,0.68) 100%); background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(207,72,207,1)), color-stop(54%, rgba(125,90,181,0.83)), color-stop(100%, rgba(125,185,232,0.68))); background: -webkit-linear-gradient(45deg, rgba(207,72,207,1) 0%, rgba(125,90,181,0.83) 54%, rgba(125,185,232,0.68) 100%); background: -o-linear-gradient(45deg, rgba(207,72,207,1) 0%, rgba(125,90,181,0.83) 54%, rgba(125,185,232,0.68) 100%); background: -ms-linear-gradient(45deg, rgba(207,72,207,1) 0%, rgba(125,90,181,0.83) 54%, rgba(125,185,232,0.68) 100%); background: linear-gradient(45deg, rgba(207,72,207,1) 0%, rgba(125,90,181,0.83) 54%, rgba(125,185,232,0.68) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cf48cf', endColorstr='#7db9e8', GradientType=1 ); } /* ========================================================================== Additional CSS ========================================================================== */ #project .caption-area { padding: 10% 0; } #project .service-main { padding: 15px 0; } #project #links .single-item { padding: 40px 20px; } #project #links .service-icon { margin-bottom: 20px; } #project #links .service-main { background-color: #FFF; padding: 20px 0 0 0; } #project #links a.link-item { display: block; } #project #links a.link-item:hover { opacity: 0.9; } #project #links .service-content h3 { margin: 0; padding: 15px 0; } #project .our-service-section { padding: 0; } #project .service-icon img { max-width: 170px; /* border-radius: 1000px; */ } .about-appix-left-img { text-align: center; } .about-appix-center-img { text-align: center; } #project .container { background-size: cover; } .project-card { position: relative; min-width: 344px; } .project-desc { margin-bottom: 60px; } .info-links { bottom: 14px; position: absolute; } .click-through { margin-right: 5px; background-color: rgba(33, 33, 33, 0.5); color: #fff; font-size: 12px; padding: 6px 10px; display: inline-block; cursor: pointer; float: right; } .click-through:hover { color: #FFF; } .click-through label { margin: 0; } .project-btn { padding: 12px 20px; display: inline-block; font-size: 15px; text-transform: capitalize; line-height: 24px; background: #795BB6; margin-right: 12px; font-weight: 400; color: #fff; position: relative; z-index: 2; margin-top: 20px; } .project-btn:hover { color: #FFF; opacity: 0.8; } .roadmap-item-container { position: relative; padding-bottom: 64px; padding-left: 4em; } .link-section-item:hover { display: block; border-radius: 5px; opacity: 0.75; } @media (max-width: 1199px){ .projects-card-container .project-card { max-width: 100%!important; width: 100%; } } @media (max-width: 440px) { .project-more { display:none; } } .roadmap-icon { display: inline-block; position: absolute; width: 3em; height: 3em; text-align: center; border-radius: 100em; margin: 0 auto; color: #ffffff; background-color: hsl(263, 38%, 53%); padding: 1em 0; font-size: 1em; margin-top: 1em; } .roadmap-connector { border-left: 1px dashed hsl(263, 38%, 53%); margin: 1em 0 0 1.5em; display: inline-block; height: 100%; position: absolute; } .roadmap-table { display: table; position: relative; width: 100%; } .roadmap-table:last-child .roadmap-connector { display: none; } .card-author-subhead { position: relative; top: -8px; font-size: 10px; height: 0px; display: block; } .card-author-name { position: relative; display: block; top: 6px; } .info-links.roadmap-info-links label { background-color: #523971; } .roadmap-content>p:first-of-type { display: none } .recent-posts li { display: none; } .recent-posts li:nth-child(1) { display: block; } .recent-posts li:nth-child(2) { display: block; } .recent-posts li:nth-child(3) { display: block; } .recent-posts li:nth-child(4) { display: block; } .recent-posts li:nth-child(5) { display: block; } nav li ul { display: none; position: fixed; } .main-menu .navbar-nav li ul li { padding: 0; } .main-menu .navbar-nav li ul li a { padding: 8px 30px; } .nav li:hover ul { display: block; background-color: #FFF; } .sub-menu .fa { margin-right: 5px; } .links-image-shadow .service-icon img { filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.2)) } .links-desc { padding: 0 20px; } .footer-area { border-top: 1px solid #e2e2e2; } body > p { display: none; } .title-block-section { text-align: center; } .community-fund-section ul { list-style: disc; padding-left: 40px; margin: 20px 0; } .community-fund-section ol { list-style: decimal; padding-left: 40px; margin: 20px 0; }
0.490724
0.074804
@media (min-width: 900px) { } @media (min-width: 900px){ .nav-item{ margin-left : 15px; margin-right : 15px; } #change{ margin-left: 250px; } } body { height: 100%; } a{ color: white;!important; } #myFooter { background-color: #373a48; color: white; } #myFooter .footer-copyright { background-color: #383737; padding-top: 3px; padding-bottom: 3px; text-align: center; } #myFooter .footer-copyright p { margin: 10px; color: #ccc; } #myFooter ul { list-style-type: none; padding-left: 0; line-height: 1.7; } #myFooter h5 { font-size: 18px; color: white; font-weight: bold; margin-top: 30px; } #myFooter a { color: #d2d1d1; text-decoration: none; } #myFooter a:hover, #myFooter a:focus { text-decoration: none; color: white; } #myFooter .myCols { text-align: center; } #myFooter .social-networks { text-align: center; padding-top: 30px; padding-bottom: 38px; } #myFooter .social-networks a { font-size: 32px; margin-right: 5px; margin-left: 5px; color: #f9f9f9; padding: 10px; transition: 0.2s; } #myFooter .social-networks a:hover { text-decoration: none; } #myFooter .facebook:hover { color: #0077e2; } #myFooter .google:hover { color: #ef1a1a; } #myFooter .twitter:hover { color: #00aced; } @media screen and (max-width: 767px) { #myFooter { text-align: center; } } #myCarouse { margin-left: 100px; margin-right: 100px; } #myCarouse .carousel-control-prev { margin-left: -125px; color: black; } #myCarouse .carousel-control-next { margin-right: -125px; color: black; } #myCarousell { margin-left: 100px; margin-right: 100px; } #myCarousell .carousel-control-prev { margin-left: -125px; color: black; } #myCarousell .carousel-control-next { margin-right: -125px; color: black; } #largeImage { width: 320px; height: 320px; -webkit-transition: all .4s ease-in-out; -moz-transition: all .4s ease-in-out; -o-transition: all .4s ease-in-out; -ms-transition: all .4s ease-in-out; } .transition { -webkit-transform: scale(1.6); -moz-transform: scale(1.6); -o-transform: scale(1.6); transform: scale(1.6); } #productheading{ font-family: "sans-serif"; color: darkgoldenrod; font-size: 30px; } #productheading .productprice{ font-size: 20px; color: black; } #productheading .updatedprice{ font-size: 20px; color: black; } #productheading .stockupdate{ color: darkgreen ; font-size: 20px; } #seperatedetail{ margin-left: 20px; } .save{ color: darkred; } .adding{ width: 300px; padding: 60px; border: 1px solid lightgrey; } .movecollapseleft{ margin-left: 50px; } .panel-default>.panel-heading { color: #333; background-color: #fff; border-color: #e4e5e7; padding: 0; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .panel-default>.panel-heading a { display: block; padding: 10px 15px; } .panel-default>.panel-heading a:after { content: ""; position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: 400; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; float: right; transition: transform .25s linear; -webkit-transition: -webkit-transform .25s linear; } .panel-default>.panel-heading a[aria-expanded="true"] { background-color: #eee; } .panel-default>.panel-heading a[aria-expanded="true"]:after { content: "\2212"; -webkit-transform: rotate(180deg); transform: rotate(180deg); } .panel-default>.panel-heading a[aria-expanded="false"]:after { content: "\002b"; -webkit-transform: rotate(90deg); transform: rotate(90deg); } .accordion-option { width: 100%; float: left; clear: both; margin: 15px 0; } .accordion-option .title { font-size: 20px; font-weight: bold; float: left; padding: 0; margin: 0; } .accordion-option .toggle-accordion { float: right; font-size: 16px; color: #6a6c6f; } .accordion-option .toggle-accordion:before { content: "Expand All"; } .accordion-option .toggle-accordion.active:before { content: "Collapse All"; } .img-fluid{ height:250px; } .largeimage{ margin-left: 30px; margin-top: 20px; } .img-thumbnail{ height: 50px; width: 50px; } #thick{ color: lightseagreen; } #reviewusername{ color: darkgray; } #purchaseverification{ color: lightcoral; font-size: 15px; margin-top: -15px; margin-bottom: 15px; } .starrating{ color: black; font-size: 20px; } .insidestar{ color: green; font-size: 20px; } .stars{ color: gold; margin-top: -10px; } #dealheading{ color:white; background-color: darkred; padding: 2px; font-size: 12px; display: inline-block; } .proprice{ margin-bottom: 0px; } .goldstar{ color: darkgoldenrod; } .prodiscount{ color: darkred; } .cutoff{ text-decoration: line-through; } .filterheading{ font-size: 20px; padding: 2px; border-top: 2px solid lightgrey; margin-left: 10px; } #scroller{ overflow: scroll; height: 750px; } .content{ align-content: center; margin-top: 10px; font-family: sans-serif; } .seperator{ margin-left: 15px; margin-right: 15px; } .btn-primary{ margin-bottom: 20px; } #shoppingcartproduct{ font-family: sans-serif; font-size: 20px; color: #0077e2; } #shoppingcartbrand{ font-family: sans-serif; font-size: 15px; color: black; } .fa-heart{ color: pink; } .fa-heart:hover{ color: red; } .fa-trash{ color: #373a48; } .fa-trash:hover{ color: #00aced; }
public/css/styles.css
@media (min-width: 900px) { } @media (min-width: 900px){ .nav-item{ margin-left : 15px; margin-right : 15px; } #change{ margin-left: 250px; } } body { height: 100%; } a{ color: white;!important; } #myFooter { background-color: #373a48; color: white; } #myFooter .footer-copyright { background-color: #383737; padding-top: 3px; padding-bottom: 3px; text-align: center; } #myFooter .footer-copyright p { margin: 10px; color: #ccc; } #myFooter ul { list-style-type: none; padding-left: 0; line-height: 1.7; } #myFooter h5 { font-size: 18px; color: white; font-weight: bold; margin-top: 30px; } #myFooter a { color: #d2d1d1; text-decoration: none; } #myFooter a:hover, #myFooter a:focus { text-decoration: none; color: white; } #myFooter .myCols { text-align: center; } #myFooter .social-networks { text-align: center; padding-top: 30px; padding-bottom: 38px; } #myFooter .social-networks a { font-size: 32px; margin-right: 5px; margin-left: 5px; color: #f9f9f9; padding: 10px; transition: 0.2s; } #myFooter .social-networks a:hover { text-decoration: none; } #myFooter .facebook:hover { color: #0077e2; } #myFooter .google:hover { color: #ef1a1a; } #myFooter .twitter:hover { color: #00aced; } @media screen and (max-width: 767px) { #myFooter { text-align: center; } } #myCarouse { margin-left: 100px; margin-right: 100px; } #myCarouse .carousel-control-prev { margin-left: -125px; color: black; } #myCarouse .carousel-control-next { margin-right: -125px; color: black; } #myCarousell { margin-left: 100px; margin-right: 100px; } #myCarousell .carousel-control-prev { margin-left: -125px; color: black; } #myCarousell .carousel-control-next { margin-right: -125px; color: black; } #largeImage { width: 320px; height: 320px; -webkit-transition: all .4s ease-in-out; -moz-transition: all .4s ease-in-out; -o-transition: all .4s ease-in-out; -ms-transition: all .4s ease-in-out; } .transition { -webkit-transform: scale(1.6); -moz-transform: scale(1.6); -o-transform: scale(1.6); transform: scale(1.6); } #productheading{ font-family: "sans-serif"; color: darkgoldenrod; font-size: 30px; } #productheading .productprice{ font-size: 20px; color: black; } #productheading .updatedprice{ font-size: 20px; color: black; } #productheading .stockupdate{ color: darkgreen ; font-size: 20px; } #seperatedetail{ margin-left: 20px; } .save{ color: darkred; } .adding{ width: 300px; padding: 60px; border: 1px solid lightgrey; } .movecollapseleft{ margin-left: 50px; } .panel-default>.panel-heading { color: #333; background-color: #fff; border-color: #e4e5e7; padding: 0; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .panel-default>.panel-heading a { display: block; padding: 10px 15px; } .panel-default>.panel-heading a:after { content: ""; position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: 400; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; float: right; transition: transform .25s linear; -webkit-transition: -webkit-transform .25s linear; } .panel-default>.panel-heading a[aria-expanded="true"] { background-color: #eee; } .panel-default>.panel-heading a[aria-expanded="true"]:after { content: "\2212"; -webkit-transform: rotate(180deg); transform: rotate(180deg); } .panel-default>.panel-heading a[aria-expanded="false"]:after { content: "\002b"; -webkit-transform: rotate(90deg); transform: rotate(90deg); } .accordion-option { width: 100%; float: left; clear: both; margin: 15px 0; } .accordion-option .title { font-size: 20px; font-weight: bold; float: left; padding: 0; margin: 0; } .accordion-option .toggle-accordion { float: right; font-size: 16px; color: #6a6c6f; } .accordion-option .toggle-accordion:before { content: "Expand All"; } .accordion-option .toggle-accordion.active:before { content: "Collapse All"; } .img-fluid{ height:250px; } .largeimage{ margin-left: 30px; margin-top: 20px; } .img-thumbnail{ height: 50px; width: 50px; } #thick{ color: lightseagreen; } #reviewusername{ color: darkgray; } #purchaseverification{ color: lightcoral; font-size: 15px; margin-top: -15px; margin-bottom: 15px; } .starrating{ color: black; font-size: 20px; } .insidestar{ color: green; font-size: 20px; } .stars{ color: gold; margin-top: -10px; } #dealheading{ color:white; background-color: darkred; padding: 2px; font-size: 12px; display: inline-block; } .proprice{ margin-bottom: 0px; } .goldstar{ color: darkgoldenrod; } .prodiscount{ color: darkred; } .cutoff{ text-decoration: line-through; } .filterheading{ font-size: 20px; padding: 2px; border-top: 2px solid lightgrey; margin-left: 10px; } #scroller{ overflow: scroll; height: 750px; } .content{ align-content: center; margin-top: 10px; font-family: sans-serif; } .seperator{ margin-left: 15px; margin-right: 15px; } .btn-primary{ margin-bottom: 20px; } #shoppingcartproduct{ font-family: sans-serif; font-size: 20px; color: #0077e2; } #shoppingcartbrand{ font-family: sans-serif; font-size: 15px; color: black; } .fa-heart{ color: pink; } .fa-heart:hover{ color: red; } .fa-trash{ color: #373a48; } .fa-trash:hover{ color: #00aced; }
0.382026
0.071559
*{ padding: 0; margin: 0; } body{ color: #000; font-size: 16px; } input[required] { background: none !important; } /* Phần menu top */ .top-bar{ background: #2FAF23; max-height: 30px; border: 0; } /*.top-bar .container, .nav-header .container{ padding-left: 0px; padding-right: 0px; }*/ .nav-header .container, .nav-header .col-md-5{ padding-left: 0px; padding-right: 0px; } .top-bar ul{ float: right; margin-bottom: 0; } .top-bar ul li{ float: left; list-style: none; line-height: 30px; padding: 0 7px; } .top-bar ul li:last-child{ padding-right: 0; } .top-bar ul li a{ color: #fff; font-size: 0.75em; text-decoration: none; } .top-bar ul li a:hover{ color: #0026FF; } /* Phần logo và Form tìm kiếm, giỏ hàng */ .nav-header{ background: #fff; max-height: 60px; clear: both; } /*.nav-header .col-md-3, .nav-header .col-md-5, .nav-header .col-md-1, .nav-header .col-md-2{ padding-left: 0 !important; padding-right: 0 !important; }*/ .nav-header .logo{ float: left; } .nav-header .logo img{ width: auto; height: 60px; } .form-search{ width: 100%; height: 60px; float: left; margin-top: 10px; margin-bottom: -10px; } .form-search input{ width: 81%; height: 66.667%; padding: 0 15px; float: left; border-top: 1px solid #e90000; border-right: none; border-bottom: 1px solid #e90000; border-left: 1px solid #e90000; vertical-align: middle; margin: auto; } .form-search button{ width: 18%; height: 66.667%; margin-right: 0; float: left; background: #e90000; border: none; color: #fff; text-transform: uppercase; border: 1px solid #e90000; padding: 0 5px; vertical-align: middle; margin: auto; } .top-cart{ height: 60px; position: relative; } /*.top-cart:hover .top-cart-content{ display: block; }*/ .top-cart img{ float: right; margin-top: 13px; padding-right: 8px; } .top-cart > span{ display: inline; background: #e90000; color: #fff; padding: 0px 4px; font-size: 0.75em; border-radius: 7px 7px 7px 7px; position: absolute; top: 10px; right: 3px; } .hot-line img{ float: right; margin-top: 10px; } .top-cart-content { position: absolute; width: 330px; min-height: 115px; background: #fff; box-shadow: 0 0 5px 0 rgba(85, 85, 85, 0.5); top: 60px; z-index: 50; right: 0px; overflow: hidden; border-radius: 4px; display: none; } .top-cart-content .minicart-header{ font-size: 0.85em; text-transform: uppercase; color: #333333; padding: 10px; border-bottom: 1px solid #ebebeb; font-weight: normal; font-weight: 700; text-align: center; } .top-cart-title { padding: 12px 15px; border-bottom: 1px solid #EEE; } .top-cart-title h4 { margin-bottom: 0; font-size: 0.85em; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; } .top-cart-items { overflow-y: scroll; height: 250px; width: 100%; } .top-cart-items { padding: 15px; } .top-cart-item:first-child { padding-top: 0; margin-top: 0; border-top: 0; } .top-cart-item { padding-top: 15px; margin-top: 15px; border-top: 1px solid #F5F5F5; } div.top-cart-item-image { width: 20%; height: auto!important; } div.top-cart-item-image a, div.top-cart-item-image img { height: auto!important; } .top-cart-item-image a, .top-cart-item-image img { display: block; width: 44px !important; height: 44px !important; } .top-cart-item-title{ width: 200px; } .top-cart-item-image { float: left; margin-right: 15px; width: 48px !important; height: 48px !important; border: 2px solid #EEE; -webkit-transition: border-color .2s linear; -o-transition: border-color .2s linear; transition: border-color .2s linear; } .top-cart-item-image:hover { border-color: #e90000; } .top-cart-item-desc { position: relative; overflow: hidden; width: 77%; } .top-cart-item-desc a { padding-right: 20px; } .top-cart-item-desc a { text-align: left !important; font-size: 13px !important; width: auto !important; height: auto !important; font-weight: 600; } .top-cart-item-desc a:hover{ text-decoration: none; color: #e90000; } .top-cart-item-desc span.top-cart-item-price { display: block; line-height: 20px; font-size: 12px !important; color: #999; } .top-cart-item-desc span.top-cart-item-quantity { display: block; position: absolute; font-size: 12px !important; right: 0; top: 2px; color: #444; } .minicart-footer{ padding: 20px; text-align: center; } .view-cart{ border-top: 1px solid #dcdcdc; } .view-cart a{ background: #e90000; padding: 2px 5px; height: 35px; line-height: 35px; font-size: 0.8em; } .view-cart a:hover{ color: #fff; background:#2faf23; text-decoration: none; } .cart-total{ float: left; line-height: 35px; padding: 10px 10px; color: red; font-weight: 600; font-size: 1.1em; } .btn-view{ float: right; padding: 5px 5px; } .minicart-footer a{ width: 260px; height: 50px; margin: auto; background: #e90000; display: block; text-decoration: none; line-height: 50px; color: #fff; font-weight: 500; font-size: 0.85em; } .minicart-footer span{ text-transform: uppercase; font-weight: 600; } /* Nội dung */ .slide-wrapper{ width: 100%; margin: auto; border-top: 1px solid #dcdcdc; color: #000; height: 550px; margin-bottom: 50px; } .wraper{ width: 100%; margin: auto; border-top: 1px solid #dcdcdc; color: #000; margin-bottom: 50px; } /* Panel Left */ .slide-wrapper .col-md-3 .panel-left-header, .wraper .col-md-3 .panel-left-header{ width: 100%; min-height: 60px; clear: both; background: #D40000; overflow: auto; } .slide-wrapper .col-md-3 .panel-left-header a, .wraper .col-md-3 .panel-left-header a{ color: #fff; text-transform: uppercase; font-size: 1.1em; text-decoration: none; } .slide-wrapper .col-md-3 .panel-left-header .title-header, .wraper .col-md-3 .panel-left-header .title-header { padding: 17px 24px; } .panel-left-header .title-header a #arrow{ float: right; margin-right: 15px; padding: 4px 0; } .collapse-1{ width: 100%; background: #fff; float: left; display: inline; position: relative; border-left: 1px solid #c6c6c6; border-bottom: 1px solid #c6c6c6; border-right: 1px solid #c6c6c6; border-top: none; } .panel-left-body { border-top: 0; } .panel-left-body ul{ margin-bottom: 0; } .panel-left-body li.menu{ list-style: none; padding: 6px 10px 0px 20px; height: 40px; overflow: auto; } .panel-left-body .menu a{ text-decoration: none; color: #000; font-size: 0.875em; display: block; min-width: 100%; height: 34px; } .panel-left-body .menu a img{ padding-right: 7px; padding-top: 2px; } .panel-left-body .menu .arrow{ float: right; padding-top: 3px; } .panel-left-body .menu:hover{ background: #c6c6c6; } .submenu { margin-left: 0; z-index: 2; position: absolute; left: 100.3%; list-style: none; top: 0; background-color: #fff; min-width: 100%; border-top: 5px solid #e90000; height: 100%; box-shadow: 2px 2px 4px #ccc; display: none; } .panel-left-body .menu .submenu .submenu-padding{ width: 867px; } ul.submenu .submenu-padding:first-child > li { position: relative; } .submenu li a { color: #636363; line-height: 22px; } .submenu-padding li{ width: 33.3333%; float: left; } .panel-left-body .submenu-padding > li:hover{ background: #bedb39; color: #fff; } .submenu-padding a .arrow { font-weight: 400; float: right; position: absolute; right: 8px; font-size: 1.0625em; line-height: 30px; top: 0; } .panel-left-body .menu:hover .submenu{ display: block; } /* Slide Wrapp */ #primary-menu{ height: 60px; overflow: hidden; } .primary-menu > ul.main{ position: relative; } #primary-menu > ul.main > li.li-menu{ float: left; list-style: none; padding: 0px 14px; border-bottom: 1px solid #dcdcdc; } #primary-menu > ul.main > li.li-menu:nth-child(6){ padding: 0px 18px 0 15px; } #primary-menu > ul.main > li.li-menu:nth-child(11){ padding: 0px 18px 0 18px; } #primary-menu ul.main > li.li-menu > a{ text-decoration: none; color: #000; font-size: 0.75em; } #primary-menu .menu-icon img{ margin-bottom: 5px; } #primary-menu .menu-icon { display: block; width: auto; margin: 0px auto 5px auto; padding-top: 8px; text-align: center; } #primary-menu > ul.main > li.li-menu:hover, #primary-menu > ul > li > a:hover{ background: #c6c6c6; } #primary-menu .main{ padding: 0px; } .carousel-indicators li { margin: 0; list-style-type: none; line-height: 18px; padding: 3px 0; } #carousel-id .left { margin-bottom: 0; } /* PHẦN COMPONENTS */ .index-group-product h1{ color: red; } .index-group-product > .col-md-3 > a{ float: right; color: #e90000; font-size: 0.8em; text-decoration: underline; padding-top: 10px; padding-right: 10px; } .index-group-product > .col-md-3 > a:hover{ color: #1F90D8; } .index-left-panel{ float: left; height: auto; width: 100%; margin-bottom: 50px; } .index-title{ background: #3eaaeb; height: 40px; text-align: center; padding: 7px 0; } .index-title a{ color: #fff; font-size: 1.22em; text-transform: uppercase; text-decoration: none; font-weight: 500; } .index-group-product ul, .index_col_group_left ul{ margin-bottom: 0; } .index-group-product ul li, .index_col_group_left ul li{ list-style: none; width: 100%; border-bottom: 1px dotted #dcdcdc; padding: 7px 0px 7px 20px; vertical-align: middle; } .index-group-product ul li a, .index_col_group_left ul li a{ color: #000; font-size: 0.875em; text-decoration: none; width: 100%; display: block; } .index-group-product ul li a:hover, .index_col_group_left ul li a:hover{ color: #1F90D8; } .index_col_group_left > ul > a:last-child{ color: red; float: right; font-size: 0.82em; text-decoration: underline; padding: 10px 10px 5px 0; } .index_col_group_left > ul > a:last-child:hover{ color: #1F90D8; } .index-main-product{ background: #fff; padding: 0 !important; margin-bottom: 50px; border-top: 1px solid #dcdcdc; border-left: 1px solid #dcdcdc; } #similar-products .index-main-product{ border-top: none; } .index-main-product .col-sm-3{ border-right: 1px solid #dcdcdc; border-bottom: 1px solid #dcdcdc; } #similar-products .index-main-product .col-sm-3:nth-child(1), #similar-products .index-main-product .col-sm-3:nth-child(2), #similar-products .index-main-product .col-sm-3:nth-child(3), #similar-products .index-main-product .col-sm-3:nth-child(4){ border-right: 1px solid #dcdcdc; border-bottom: 1px solid #dcdcdc; border-top: 1px solid #dcdcdc; } #collapseThree .index-main-product{ background: #fff; padding: 0 !important; margin-bottom: 0px; border-top: 1px solid #dcdcdc; border-left: 1px solid #dcdcdc; } .info-product{ width: 100%; margin: 0 !important; padding-right: 0 !important; padding-left: 0 0 !important; text-align: center !important; position: relative; /*overflow: auto;*/ min-height: 225px; } .info-product .header-info{ padding: 2px 0 5px 0; } .info-product .header-info a{ color: #000; font-weight: bold; text-decoration: none; font-size: 0.85em; } .info-product .header-info a:hover{ color: #1F90D8; } .info-product .header-info div{ color: #000; } .info-product .image-product{ padding: 0px 0 0px 0; position: relative; margin: 0 !important; height: 125px; width: 100%; overflow: hidden; } .info-product .image-product a img{ max-width: 100%; width: 134px; height: auto; margin-left: auto; margin-right: auto; display: block; position: absolute; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); } .tab-pane img { display: block; max-width: 640px; height: auto; max-height: 533px; margin: 10px auto; } .sale-flash { position: absolute; top: 2px; left: 2px; padding: 3px 7px; background-color: #e90000; color: #FFF; border-radius: 3px; } .product-overlay { position: absolute; width: 100%; height: 40px; line-height: 40px; top: 40%; left: 0; z-index: 6; text-align: center; } .product-overlay a { /* background-color: #e90000; */ background-color: rgba(0,0,0,0.6); color: #fff; } .image-product:hover .product-overlay a { transform: scale(1); } .product-overlay a { display: inline-block; margin-right: 30px; width: 50px; height: 40px; font-size: 0.85em; color: #333; text-align: center; border-right: 1px solid rgba(0,0,0,0.1); transform: scale(0); position: relative; top: 0; line-height: 40px; } .product-overlay a:hover { background-color: rgba(74,10,10,0.5); color: #FFF; text-shadow: 1px 1px 1px rgba(0,0,0,0.2); transition: bottom .3s ease-in-out; } .product-overlay a i { position: relative; top: 12px; } .product-overlay i{ color: #fff; } .product-overlay a span { text-transform: uppercase; font-size: 13px; background: #e90000; } .product-overlay a span { text-transform: uppercase; font-size: 13px; } .product-overlay { position: absolute; width: 100%; height: 40px; line-height: 40px; top: 40%; left: 0; z-index: 6; text-align: center; } .product:hover .product-overlay a { transform: scale(1); } .product-overlay a.item-quick-view { border-right: 0; } .product-overlay a:last-child { margin-right: 0; } .info-product .price-product{ color: red; font-size: 1em; float: left; font-weight: bold; padding: 5px 0px 0px 20px; } .info-product .price-product > div{ color: #887777; font-size: 0.9em; text-decoration: line-through; text-align: left !important; font-weight: normal; } .btn-product{ margin: 5px auto; } .btn-product a{ border-radius: 0px; text-transform: uppercase; font-size: 0.8em; background: #e90000; border: none; } .btn-product a.btn-primary:hover { color: #fff; background-color: #e90000; border-color: none; } .pagination{ } .pagination li.active a{ background: #e90000; border: 1px solid #e90000; } .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus { z-index: 2; color: #fff; cursor: default; background-color: #e90000; border-color: #e90000; } .footer{ background: #333333; } .footer .container{ padding-top: 30px; padding-bottom: 20px; border-bottom: 1px dashed #4C4B4B } .footer .logo-footer img{ max-width: 100%; } .footer span{ color: #fff; font-size: 0.8125em; line-height: 2; } .footer h4{ color: #fff; font-size: 0.9em; font-weight: 500; text-transform: uppercase; } .footer .first h4, .footer .end h4 { padding-left: 30px; } .footer ul{ float: none; } .footer .first ul li{ list-style: none; padding-left: 30px; padding: 3px 0px 3px 30px; } .footer ul li{ list-style: none; padding-left: 30px; padding: 3px 0px 3px 0px; } .footer ul li a{ text-decoration: none; color: #ccc; font-size: 0.84em; } .footer ul li a:hover, .footer address a:hover{ color: #aaa; } .footer p{ padding-left: 30px; font-size: 0.83em; color: #ccc; } .footer img{ margin-right: 3px; } .footer address a{ font-size: 0.9em; color: #ccc; text-decoration: none; } .payment{ background: #333333; text-align: center; padding-top: 20px; padding-bottom: 20px; } .payment h4{ color: #fff; font-size: 0.9em; text-transform: uppercase; } .payment img{ max-width: 100%; } .copyright{ padding-top: 20px; background: #292929; color: #6b6666; font-size: 0.85em; font-weight: 200; } .left{ margin-bottom: 10px; } .left > p > a{ color: #e90000; text-transform: uppercase; text-decoration: none; } .left > p > a:hover{ color: #fff; } .copyright .left ul li{ float: left; list-style: none; padding-left: 6px; } .copyright .left ul li:first-child{ padding-left: 0; } .left ul.cp li a{ text-decoration: none; font-size: 0.85em; color: #6b6666; display: block; border-bottom: 1px dotted #6b6666; } .left ul.cp li a:hover{ color: #aaa; border-bottom: 1px solid #6b6666; } .copyright .right p{ float: right; } /* PHẦN CSS TRANG SẢN PHẨM */ .col_images { margin-bottom: 20px; } .col_images img{ max-width: 100%; border: none; } .sort-wrapper .text-right span{ font-size: 0.85em; line-height: 30px; } .info { margin-bottom: 50px; margin-left: 20px; margin-right: 20px; color: #8a9494; font-size: 1em; } /*.content .container,.slide-wrapper .container,.wraper .container, .content .container .col-xs-12, .content .container .col-sm-12, .content .container .col-md-3, .content .container .col-lg-3, .slide-wrapper .container .col-md-3, .slide-wrapper .container .col-lg-3, .slide-wrapper .container .col-md-9, .slide-wrapper .container .col-lg-9, .wraper .container .col-md-9, .wraper .container .col-lg-9, .wraper .container .col-md-3, .wraper .container .col-lg-3, .content-wrap .container, .content-wrap .container .col-md-9, .content-wrap .container .col-lg-9, .content-ct .container .col-md-9, .content-ct .container .col-lg-9.content-ct .container .col-md-9, .content-ct .container .col-lg-9 ,.content-ct .container .col-md-3, .content-ct .container .col-lg-3, .content-ct .container, .content-ct .col-xs-12, .content-ct .col-sm-12, .content-ct .col-md-4, .content-ct .col-lg-4 ,.content-ct .col-md-8, .index-main-product .col-sm-4, .index-main-product .col-xs-6 { padding-right: 0px; padding-left: 0px; }*/ .slide-wrapper .container, .content .container .col-xs-12, .footer .container .col-lg-3 .content .container .col-sm-12, .content .container .col-md-3, .footer .container .col-md-3 .content .container .col-lg-3, .footer .container .col-xs-6, .footer .container .col-sm-3, .wraper .container .col-lg-3, .wraper .container .col-md-3, .wraper .container .col-lg-9, .wraper .container .col-md-9, .content-wrap .container .col-md-9,.content-wrap .container .col-lg-9, .content-wrap .container .col-xs-12, .content-wrap .container .col-sm-12, .sort-wrapper .col-md-3 , .sort-wrapper .col-sm-3, .sort-wrapper .col-xs-5, .content-ct .container .col-md-3, .content-ct .container .col-lg-3, .content-ct .container .col-md-9, .content-ct .container .col-lg-9, .content-ct .col-xs-12, .content-ct .col-sm-12{ padding-right: 0px; padding-left: 0px; } .slide-wrapper .container .col-lg-3{ padding-right: 0px; } .slide-wrapper .container .col-lg-9{ padding-left: 0px; } .index-main-product .col-sm-4, .index-main-product .col-xs-6, .product_category .col-sm-3, .product_category .col-xs-6{ padding-left: 5px; padding-right: 5px; } .row { margin-right: 0px; margin-left: 0px; } .content-ct .container{ border-top: 1px solid #dcdcdc; } #cart-info{ margin-top: 30px; } .undo{ margin-bottom: 50px; } .undo:hover{ text-decoration: none; color: #e90000; } .pagination li a{ color: #887777; } .info ul li{ list-style-type: disc; margin-left: 40px; } .content-wrap .index-product{ background: #fff; width: 100%; padding: 0 !important; margin-top: 12px; margin-bottom: 50px; border-top: 1px solid #dcdcdc; border-left: 1px solid #dcdcdc; } .content-wrap .index-product .col-sm-3{ border-right: 1px solid #dcdcdc; border-bottom: 1px solid #dcdcdc; } .content_title{ margin-top: 20px; text-align: center; } .sidebar-widgets-wrap{ width: 23%; float: left; margin-right: 2%; } .widgets-links{ margin-bottom: 20px; } .widgets-links p, .widget p{ background: #e90000; height: 40px; margin: 0; color: #fff; font-size: 0.9em; line-height: 40px; padding-left: 24px; } .widgets-links .panel-left-body{ border-left: 1px solid #dcdcdc; border-right: 1px solid #dcdcdc; border-bottom: 1px solid #dcdcdc; } .widgets-links .panel-left-body li{ padding: 0px 10px 0px 23px; height: 37px; line-height: 37px; } .widgets-links .panel-left-body li a{ font-size: 0.84em; } .widget { width: 100%; min-height: 250px; border: 1px solid #dcdcdc; margin-bottom: 50px; } .e-img{ margin: 10px 10px 0 10px !important; } .e-meta li a:hover{ text-decoration: none !important; } .e-title{ padding-right: 5px !important; text-transform: capitalize !important; } .news{ margin-top: 20px; border-bottom: 1px dashed #dcdcdc; padding: 0 5px; } .news h3{ margin-top: 0px; } .news img{ margin-top: 0; margin-bottom: 60px; display: block; position: relative; max-width: 100%; vertical-align: middle; } .entry-title { color: #464646; text-transform: uppercase; font-size: 1em; } .entry-title > a{ text-decoration: none; } .entry-title a:hover{ color: #e90000; } .entry-meta li{ float: left; list-style: none; font-size: 0.8em; line-height: 14px; margin-top: 10px; margin-right: 20px; color: #999; } .entry-meta i{ padding-right: 5px; } .entry-content a{ text-decoration: none; font-size: 0.8em; color: #e90000; display: inline-block; border-bottom: 1px solid #e90000; font-style: italic; margin-bottom: 20px; margin-top: 20px; } .entry-content p{ padding: 0 10px; text-indent: 40px; text-align: justify; margin-bottom: 50px; } .entry-content img{ max-width: 90%; display: block; margin: auto; margin-top: 50px; margin-bottom: 25px; } .entry-content a:hover{ color: blue; border-bottom: 1px solid blue; } .entry-title ,.entry-meta, .entry-content{ padding-left: 5px; } /* TRANG ADMIN */ .mauxanh18 { font-size: 1em; color: blue; } td span{ padding-right: 3px; } .main-footer{ font-size: 0.85em; } label{ display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: 600; } span.maudo{ font-size: 1em; color: red; } table th{ font-weight: 600; } .alert-success, .label-success, .modal-success .modal-body { background-color: #00a65a !important; } .alert .close { color: #000; opacity: .2; filter: alpha(opacity=20); } button.close { -webkit-appearance: none; padding: 0; cursor: pointer; background: 0 0; border: 0; } .close { float: right; font-size: 21px; font-weight: 700; line-height: 1; color: #000; text-shadow: 0 1px 0 #fff; filter: alpha(opacity=20); opacity: .2; } .navbar-nav>.user-menu .glyphicon-home { margin-right: 10px; } .btn-top { /*z-index: 299; position: fixed; width: 40px; height: 40px; background-color: rgba(0, 0, 0, 0.298039); font-size: 20px; text-align: center; color: rgb(255, 255, 255); top: auto; left: auto; right: 30px; bottom: 50px; cursor: pointer; border-radius: 2px;*/ width: 34px; height: 34px; position: fixed; font-size: 0; z-index: 9999; right: 40px; bottom: 45px; background: #fd7400; border-radius: 50%; } .btn-top:hover { background-color: rgb(233, 0, 0); text-decoration: none; } .btn-top:before{ content: "\f062"; font-family: "FontAwesome"; font-size: 14px; color: #fff; text-align: center; width: 34px; height: 34px; line-height: 34px; display: block; } /* SẢN PHẨM KHUYẾN MÃI */ .sidebar_menu { padding: 5px 0px; border: 1px solid #eee; border-top: 0; } .spost:first-child{ margin-top: 0; padding-top: 0; border-top: 0; } .spost{ /*margin-top: 20px;*/ padding-top: 10px; padding-bottom: 10px; border-top: 1px dashed #E5E5E5; } .entry-image { height: auto; float: left; margin: 0 10px 0 10px; text-align: center; } .entry-image img{ width: 48px; height: auto; display: block; position: relative; } .entry-c { position: relative; overflow: hidden; } .entry-title a{ font-weight: 300; } .spost .entry-title a{ margin: 0; font-size: 0.8em; } .spost .entry-title a{ color: #333; } .spost .entry-title a:hover{ color: blue; text-decoration: none; } .spost .entry-meta { margin: 8px -10px 0 0; } .spost .entry-meta li{ font-size: 0.8em; margin: 0 10px 0 0; } .entry-meta li { float: left; line-height: 14px; color: #999; } .entry-meta li ins { font-weight: 300; color: red; text-decoration: none; } .entry-meta li del { color: #888; padding-left: 15px; } /* <NAME> */ .accordion{ margin-bottom: 50px; } .divcenter { position: relative !important; float: none !important; margin-left: auto !important; margin-right: auto !important; } .accordion.accordion-lg .acctitle { font-size: 23px; line-height: 44px; padding-left: 30px; font-weight: 400; } .acctitle:first-child { border-top: none; } .acctitlec { cursor: auto; } .acctitle { display: block; position: relative; line-height: 24px; margin: 0; font-size: 14px; font-weight: bold; color: #444; cursor: pointer; border-top: 1px dotted #DDD; padding: 10px 0 10px 20px; } .accordion.accordion-lg .acctitle i { width: 20px; font-size: 20px; line-height: 64px; } .acctitle i { position: absolute; top: 0; left: 0; width: 14px; text-align: center; font-size: 14px; line-height: 44px; } .accordion.accordion-lg .acc_content { padding: 10px 0 30px 30px; } .acc_content { position: relative; padding: 0 0 15px 20px; } .col_full { clear: both; float: none; margin-right: 0; margin-bottom: 25px; display: block; position: relative; width: 100%; } .col_full label { display: inline-block; font-size: 0.8em; font-weight: 700; letter-spacing: 1px; color: #555; margin-bottom: 5px; cursor: pointer; text-transform: uppercase; } .require_symbol { color: red!important; } .form-control { border-radius: 3px; } .button.button-3d { border-radius: 3px; border-bottom: 3px solid rgba(0,0,0,0.15); } .button { display: inline-block; position: relative; cursor: pointer; outline: none; white-space: nowrap; margin: 5px; padding: 0 22px; font-size: 0.85em; height: 40px; line-height: 40px; background-color: #e90000; color: #FFF; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; border: none; text-align: center; overflow: visible; /* text-shadow: 1px 1px 1px rgba(0,0,0,0.2); */ } .button-3d.button-black:hover, .button-reveal.button-black:hover { background-color: #111 !important; } .fright, .right { float: right !important; } .nobottommargin ul li{ list-style: none; } a.fright{ text-decoration: none !important; color: blue; font-size: 0.8em; } .right{ text-decoration: none !important; color: #333; font-size: 0.8em; } .right > a#login{ padding-right: 3px; color: blue; text-decoration: underline; } .nobottommargin ul li a{ padding-right: 30px; padding-top: 10px; } .nobottommargin ul li a:hover, .right > a#login:hover{ color: #e90000; } /*-----------------------*/ .fancybox-wrap .in{ display: block; padding-right: 0; } .fancybox-wrap .modal-dialog{ width: 70%; } .fancybox-wrap .modal-content{ width: 100%; height: auto; position: absolute; opacity: 1; overflow: visible; margin: auto; } /*-----------------*/ .fancy-wrap{ width: auto; height: auto; display: block; } .shop-quick-view-ajax, .portfolio-ajax-modal { position: relative; background-color: #FFF; width: 800px; margin: 0 auto; } /*--------------*/ .error{ color: #e90000; font-size: 0.8em; } /*----------GIỎ HÀNG--------*/ .cart .thead { border-bottom: 2px solid #ddd; font-weight: 700; } .cart .td { padding-top: 10px; padding-bottom: 10px; font-size: 0.85em; font-weight: 600; color: #333; } .cart .cart_item { border-bottom: 1px solid #ddd; } .cart-product-thumbnail a { width: 68px; text-decoration: none !important; color: #e90000; } .cart-product-thumbnail img { height: auto!important; } .cart-product-thumbnail img { width: 64px; height: 64px; border: 2px solid #EEE; } .cart-product-quantity .quantity { display: inline-block; margin: 0; float: none; font-weight: 100; } .cart-product-name, .cart-product-price, .cart-product-quantity, .cart-product-subtotal{ text-align: left; } .cart-product-name > a{ color: #333; font-weight: bold; font-size: 1em; } .cart-product-name > a:hover{ text-decoration: none; color: #e90000; } .amount{ font-weight: 100; font-size: 1em; } .nomargin { font-weight: 400; font-size: 1.2em; } .color { color: #e90000 !important; font-weight: 700; font-size: 1.5em; } .btn-submit{ margin-bottom: 5px; } .wrap{ border-top: 1px solid #dcdcdc; } /*-------Trang chi tiết sản phẩm------*/ .content-pd-wrap{ border-top: 1px solid #dcdcdc; } /*-------Trang cám ơn đặt hàng------*/ .shipping-info{ border: 1px solid #dcdcdc; width: 98%; margin-top: 10px; } .content-pd-wrap .product-price p{ text-transform: uppercase; } .content-pd-wrap .product-price ins{ color: red; font-size: 1.5em; text-decoration: none; } .content-pd-wrap .col-md-6, .content-pd-wrap .col-sm-6, .content-pd-wrap .col-xs-6, .content-pd-wrap .col-md-4, .content-pd-wrap .col-sm-4, .content-pd-wrap .col-xs-12{ padding: 0px; } .content-pd-wrap .clear { clear: both; display: block; font-size: 0px; height: 0px; line-height: 0; width: 100%; overflow: hidden; } .content-pd-wrap .line{ clear: both; position: relative; width: 100%; margin: 20px 0px; border-top: 1px solid rgb(238, 238, 238); } .content-pd-wrap .quantity { float: left; } .content-pd-wrap .quantity .plus, .content-pd-wrap .quantity .minus { display: block; float: left; cursor: pointer; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; width: 30%; height: 40px; line-height: 40px; text-align: center; background-color: rgb(255, 255, 255); font-size: 1em; font-weight: bold; border-width: 1px; border-style: solid; border-color: rgb(238, 238, 238); padding: 0px; transition: background-color 0.2s linear; } .content-pd-wrap .quantity .qty { float: left; width: 40%; height: 40px; line-height: 40px; border-right-style: initial; border-left-style: initial; border-right-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; background-color: rgb(255, 255, 255); text-align: center; margin-bottom: 0px; border-width: 1px 0px; border-top: 1px solid rgb(238, 238, 238); border-bottom: 1px solid rgb(238, 238, 238); } .content-pd-wrap .add-to-cart.button { font-size: 1em; height: 40px; line-height: 40px; color: rgb(252, 252, 252); background-color: rgb(255, 0, 0); margin: 0px 0px 0px 0px; } #buynow { font-size: 22px; color: rgb(255, 255, 255); background-color: rgb(0, 184, 78); margin: 10px 0px 0px; } .pd_policies { background: url(../images/templates/pd_policies.png); padding: 5px; border-radius: 5px; } .pd_policies ul { margin-bottom: 0; background-color: #fff; overflow: hidden; font-size: 13px; padding: 5px 10px; } .nostyled { list-style: none; } .nopadding { padding: 0 !important; } .pd_policies ul a { line-height: 20px; vertical-align: bottom; font-size: 12px; } .pd_policies ul a img { width: 20px; margin-right: 5px; padding: 2px 0px; } .pd_policies ul a:hover{ text-decoration: none; } .product-meta { font-size: 15px; color: #777; margin-bottom: 15px; } .product-meta strong { display: block; margin-bottom: 10px; } .tagged_as a { border-left: 3px solid #e90000; padding: 5px 10px; background: #e6e9ed; margin: 0 5px 5px 0; display: inline-block; position: relative; color: #666; font-size: 12px; } .tagged_as a i { position: absolute; left: -1px; top: -1px; font-size: 20px; color: #e90000; } .tagged_as a:hover{ color: #666; text-decoration: none; } .content-pd-wrap p strong{ color: blue; } .panel-group .panel-body img{ max-width: 100%; height: auto; } /******** TRANG ACCOUNT *********/ .account{ margin-top: 50px; border-top: 1px solid #dcdcdc; } .customer-title{ display: block; background: transparent; border-bottom: 2px solid #e90000; margin-top: 20px; } .customer-detail p{ color: #777; line-height: 1em; margin: 0 0 0.8em; } /*--------Tài khoản/Đơn hàng --------*/ .account-table td a{ font-style: italic; } .account-table td a:hover{ text-decoration: none; } #undo a.undo-order:hover{ text-decoration: none; } .undo-order{ float: right; } .account label{ font-weight: normal; } /*------------------------*/ .sidebar-menu span{ font-weight: normal; } .pull-left p{ font-weight: normal !important; } .logo{ text-decoration: none !important; } .navbar-custom-menu span{ font-weight: normal !important; } .user-header p{ font-weight: normal !important; } .logo-lg{ font-weight: normal !important; } .logo-mini b{ font-weight: normal !important; } .small-box-footer{ font-weight: normal !important; } .inner p{ font-weight: normal !important; } .treeview-menu a{ font-weight: normal !important; } .content{ font-weight: normal !important; }
public/backend/css/style.css
*{ padding: 0; margin: 0; } body{ color: #000; font-size: 16px; } input[required] { background: none !important; } /* Phần menu top */ .top-bar{ background: #2FAF23; max-height: 30px; border: 0; } /*.top-bar .container, .nav-header .container{ padding-left: 0px; padding-right: 0px; }*/ .nav-header .container, .nav-header .col-md-5{ padding-left: 0px; padding-right: 0px; } .top-bar ul{ float: right; margin-bottom: 0; } .top-bar ul li{ float: left; list-style: none; line-height: 30px; padding: 0 7px; } .top-bar ul li:last-child{ padding-right: 0; } .top-bar ul li a{ color: #fff; font-size: 0.75em; text-decoration: none; } .top-bar ul li a:hover{ color: #0026FF; } /* Phần logo và Form tìm kiếm, giỏ hàng */ .nav-header{ background: #fff; max-height: 60px; clear: both; } /*.nav-header .col-md-3, .nav-header .col-md-5, .nav-header .col-md-1, .nav-header .col-md-2{ padding-left: 0 !important; padding-right: 0 !important; }*/ .nav-header .logo{ float: left; } .nav-header .logo img{ width: auto; height: 60px; } .form-search{ width: 100%; height: 60px; float: left; margin-top: 10px; margin-bottom: -10px; } .form-search input{ width: 81%; height: 66.667%; padding: 0 15px; float: left; border-top: 1px solid #e90000; border-right: none; border-bottom: 1px solid #e90000; border-left: 1px solid #e90000; vertical-align: middle; margin: auto; } .form-search button{ width: 18%; height: 66.667%; margin-right: 0; float: left; background: #e90000; border: none; color: #fff; text-transform: uppercase; border: 1px solid #e90000; padding: 0 5px; vertical-align: middle; margin: auto; } .top-cart{ height: 60px; position: relative; } /*.top-cart:hover .top-cart-content{ display: block; }*/ .top-cart img{ float: right; margin-top: 13px; padding-right: 8px; } .top-cart > span{ display: inline; background: #e90000; color: #fff; padding: 0px 4px; font-size: 0.75em; border-radius: 7px 7px 7px 7px; position: absolute; top: 10px; right: 3px; } .hot-line img{ float: right; margin-top: 10px; } .top-cart-content { position: absolute; width: 330px; min-height: 115px; background: #fff; box-shadow: 0 0 5px 0 rgba(85, 85, 85, 0.5); top: 60px; z-index: 50; right: 0px; overflow: hidden; border-radius: 4px; display: none; } .top-cart-content .minicart-header{ font-size: 0.85em; text-transform: uppercase; color: #333333; padding: 10px; border-bottom: 1px solid #ebebeb; font-weight: normal; font-weight: 700; text-align: center; } .top-cart-title { padding: 12px 15px; border-bottom: 1px solid #EEE; } .top-cart-title h4 { margin-bottom: 0; font-size: 0.85em; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; } .top-cart-items { overflow-y: scroll; height: 250px; width: 100%; } .top-cart-items { padding: 15px; } .top-cart-item:first-child { padding-top: 0; margin-top: 0; border-top: 0; } .top-cart-item { padding-top: 15px; margin-top: 15px; border-top: 1px solid #F5F5F5; } div.top-cart-item-image { width: 20%; height: auto!important; } div.top-cart-item-image a, div.top-cart-item-image img { height: auto!important; } .top-cart-item-image a, .top-cart-item-image img { display: block; width: 44px !important; height: 44px !important; } .top-cart-item-title{ width: 200px; } .top-cart-item-image { float: left; margin-right: 15px; width: 48px !important; height: 48px !important; border: 2px solid #EEE; -webkit-transition: border-color .2s linear; -o-transition: border-color .2s linear; transition: border-color .2s linear; } .top-cart-item-image:hover { border-color: #e90000; } .top-cart-item-desc { position: relative; overflow: hidden; width: 77%; } .top-cart-item-desc a { padding-right: 20px; } .top-cart-item-desc a { text-align: left !important; font-size: 13px !important; width: auto !important; height: auto !important; font-weight: 600; } .top-cart-item-desc a:hover{ text-decoration: none; color: #e90000; } .top-cart-item-desc span.top-cart-item-price { display: block; line-height: 20px; font-size: 12px !important; color: #999; } .top-cart-item-desc span.top-cart-item-quantity { display: block; position: absolute; font-size: 12px !important; right: 0; top: 2px; color: #444; } .minicart-footer{ padding: 20px; text-align: center; } .view-cart{ border-top: 1px solid #dcdcdc; } .view-cart a{ background: #e90000; padding: 2px 5px; height: 35px; line-height: 35px; font-size: 0.8em; } .view-cart a:hover{ color: #fff; background:#2faf23; text-decoration: none; } .cart-total{ float: left; line-height: 35px; padding: 10px 10px; color: red; font-weight: 600; font-size: 1.1em; } .btn-view{ float: right; padding: 5px 5px; } .minicart-footer a{ width: 260px; height: 50px; margin: auto; background: #e90000; display: block; text-decoration: none; line-height: 50px; color: #fff; font-weight: 500; font-size: 0.85em; } .minicart-footer span{ text-transform: uppercase; font-weight: 600; } /* Nội dung */ .slide-wrapper{ width: 100%; margin: auto; border-top: 1px solid #dcdcdc; color: #000; height: 550px; margin-bottom: 50px; } .wraper{ width: 100%; margin: auto; border-top: 1px solid #dcdcdc; color: #000; margin-bottom: 50px; } /* Panel Left */ .slide-wrapper .col-md-3 .panel-left-header, .wraper .col-md-3 .panel-left-header{ width: 100%; min-height: 60px; clear: both; background: #D40000; overflow: auto; } .slide-wrapper .col-md-3 .panel-left-header a, .wraper .col-md-3 .panel-left-header a{ color: #fff; text-transform: uppercase; font-size: 1.1em; text-decoration: none; } .slide-wrapper .col-md-3 .panel-left-header .title-header, .wraper .col-md-3 .panel-left-header .title-header { padding: 17px 24px; } .panel-left-header .title-header a #arrow{ float: right; margin-right: 15px; padding: 4px 0; } .collapse-1{ width: 100%; background: #fff; float: left; display: inline; position: relative; border-left: 1px solid #c6c6c6; border-bottom: 1px solid #c6c6c6; border-right: 1px solid #c6c6c6; border-top: none; } .panel-left-body { border-top: 0; } .panel-left-body ul{ margin-bottom: 0; } .panel-left-body li.menu{ list-style: none; padding: 6px 10px 0px 20px; height: 40px; overflow: auto; } .panel-left-body .menu a{ text-decoration: none; color: #000; font-size: 0.875em; display: block; min-width: 100%; height: 34px; } .panel-left-body .menu a img{ padding-right: 7px; padding-top: 2px; } .panel-left-body .menu .arrow{ float: right; padding-top: 3px; } .panel-left-body .menu:hover{ background: #c6c6c6; } .submenu { margin-left: 0; z-index: 2; position: absolute; left: 100.3%; list-style: none; top: 0; background-color: #fff; min-width: 100%; border-top: 5px solid #e90000; height: 100%; box-shadow: 2px 2px 4px #ccc; display: none; } .panel-left-body .menu .submenu .submenu-padding{ width: 867px; } ul.submenu .submenu-padding:first-child > li { position: relative; } .submenu li a { color: #636363; line-height: 22px; } .submenu-padding li{ width: 33.3333%; float: left; } .panel-left-body .submenu-padding > li:hover{ background: #bedb39; color: #fff; } .submenu-padding a .arrow { font-weight: 400; float: right; position: absolute; right: 8px; font-size: 1.0625em; line-height: 30px; top: 0; } .panel-left-body .menu:hover .submenu{ display: block; } /* Slide Wrapp */ #primary-menu{ height: 60px; overflow: hidden; } .primary-menu > ul.main{ position: relative; } #primary-menu > ul.main > li.li-menu{ float: left; list-style: none; padding: 0px 14px; border-bottom: 1px solid #dcdcdc; } #primary-menu > ul.main > li.li-menu:nth-child(6){ padding: 0px 18px 0 15px; } #primary-menu > ul.main > li.li-menu:nth-child(11){ padding: 0px 18px 0 18px; } #primary-menu ul.main > li.li-menu > a{ text-decoration: none; color: #000; font-size: 0.75em; } #primary-menu .menu-icon img{ margin-bottom: 5px; } #primary-menu .menu-icon { display: block; width: auto; margin: 0px auto 5px auto; padding-top: 8px; text-align: center; } #primary-menu > ul.main > li.li-menu:hover, #primary-menu > ul > li > a:hover{ background: #c6c6c6; } #primary-menu .main{ padding: 0px; } .carousel-indicators li { margin: 0; list-style-type: none; line-height: 18px; padding: 3px 0; } #carousel-id .left { margin-bottom: 0; } /* PHẦN COMPONENTS */ .index-group-product h1{ color: red; } .index-group-product > .col-md-3 > a{ float: right; color: #e90000; font-size: 0.8em; text-decoration: underline; padding-top: 10px; padding-right: 10px; } .index-group-product > .col-md-3 > a:hover{ color: #1F90D8; } .index-left-panel{ float: left; height: auto; width: 100%; margin-bottom: 50px; } .index-title{ background: #3eaaeb; height: 40px; text-align: center; padding: 7px 0; } .index-title a{ color: #fff; font-size: 1.22em; text-transform: uppercase; text-decoration: none; font-weight: 500; } .index-group-product ul, .index_col_group_left ul{ margin-bottom: 0; } .index-group-product ul li, .index_col_group_left ul li{ list-style: none; width: 100%; border-bottom: 1px dotted #dcdcdc; padding: 7px 0px 7px 20px; vertical-align: middle; } .index-group-product ul li a, .index_col_group_left ul li a{ color: #000; font-size: 0.875em; text-decoration: none; width: 100%; display: block; } .index-group-product ul li a:hover, .index_col_group_left ul li a:hover{ color: #1F90D8; } .index_col_group_left > ul > a:last-child{ color: red; float: right; font-size: 0.82em; text-decoration: underline; padding: 10px 10px 5px 0; } .index_col_group_left > ul > a:last-child:hover{ color: #1F90D8; } .index-main-product{ background: #fff; padding: 0 !important; margin-bottom: 50px; border-top: 1px solid #dcdcdc; border-left: 1px solid #dcdcdc; } #similar-products .index-main-product{ border-top: none; } .index-main-product .col-sm-3{ border-right: 1px solid #dcdcdc; border-bottom: 1px solid #dcdcdc; } #similar-products .index-main-product .col-sm-3:nth-child(1), #similar-products .index-main-product .col-sm-3:nth-child(2), #similar-products .index-main-product .col-sm-3:nth-child(3), #similar-products .index-main-product .col-sm-3:nth-child(4){ border-right: 1px solid #dcdcdc; border-bottom: 1px solid #dcdcdc; border-top: 1px solid #dcdcdc; } #collapseThree .index-main-product{ background: #fff; padding: 0 !important; margin-bottom: 0px; border-top: 1px solid #dcdcdc; border-left: 1px solid #dcdcdc; } .info-product{ width: 100%; margin: 0 !important; padding-right: 0 !important; padding-left: 0 0 !important; text-align: center !important; position: relative; /*overflow: auto;*/ min-height: 225px; } .info-product .header-info{ padding: 2px 0 5px 0; } .info-product .header-info a{ color: #000; font-weight: bold; text-decoration: none; font-size: 0.85em; } .info-product .header-info a:hover{ color: #1F90D8; } .info-product .header-info div{ color: #000; } .info-product .image-product{ padding: 0px 0 0px 0; position: relative; margin: 0 !important; height: 125px; width: 100%; overflow: hidden; } .info-product .image-product a img{ max-width: 100%; width: 134px; height: auto; margin-left: auto; margin-right: auto; display: block; position: absolute; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); } .tab-pane img { display: block; max-width: 640px; height: auto; max-height: 533px; margin: 10px auto; } .sale-flash { position: absolute; top: 2px; left: 2px; padding: 3px 7px; background-color: #e90000; color: #FFF; border-radius: 3px; } .product-overlay { position: absolute; width: 100%; height: 40px; line-height: 40px; top: 40%; left: 0; z-index: 6; text-align: center; } .product-overlay a { /* background-color: #e90000; */ background-color: rgba(0,0,0,0.6); color: #fff; } .image-product:hover .product-overlay a { transform: scale(1); } .product-overlay a { display: inline-block; margin-right: 30px; width: 50px; height: 40px; font-size: 0.85em; color: #333; text-align: center; border-right: 1px solid rgba(0,0,0,0.1); transform: scale(0); position: relative; top: 0; line-height: 40px; } .product-overlay a:hover { background-color: rgba(74,10,10,0.5); color: #FFF; text-shadow: 1px 1px 1px rgba(0,0,0,0.2); transition: bottom .3s ease-in-out; } .product-overlay a i { position: relative; top: 12px; } .product-overlay i{ color: #fff; } .product-overlay a span { text-transform: uppercase; font-size: 13px; background: #e90000; } .product-overlay a span { text-transform: uppercase; font-size: 13px; } .product-overlay { position: absolute; width: 100%; height: 40px; line-height: 40px; top: 40%; left: 0; z-index: 6; text-align: center; } .product:hover .product-overlay a { transform: scale(1); } .product-overlay a.item-quick-view { border-right: 0; } .product-overlay a:last-child { margin-right: 0; } .info-product .price-product{ color: red; font-size: 1em; float: left; font-weight: bold; padding: 5px 0px 0px 20px; } .info-product .price-product > div{ color: #887777; font-size: 0.9em; text-decoration: line-through; text-align: left !important; font-weight: normal; } .btn-product{ margin: 5px auto; } .btn-product a{ border-radius: 0px; text-transform: uppercase; font-size: 0.8em; background: #e90000; border: none; } .btn-product a.btn-primary:hover { color: #fff; background-color: #e90000; border-color: none; } .pagination{ } .pagination li.active a{ background: #e90000; border: 1px solid #e90000; } .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus { z-index: 2; color: #fff; cursor: default; background-color: #e90000; border-color: #e90000; } .footer{ background: #333333; } .footer .container{ padding-top: 30px; padding-bottom: 20px; border-bottom: 1px dashed #4C4B4B } .footer .logo-footer img{ max-width: 100%; } .footer span{ color: #fff; font-size: 0.8125em; line-height: 2; } .footer h4{ color: #fff; font-size: 0.9em; font-weight: 500; text-transform: uppercase; } .footer .first h4, .footer .end h4 { padding-left: 30px; } .footer ul{ float: none; } .footer .first ul li{ list-style: none; padding-left: 30px; padding: 3px 0px 3px 30px; } .footer ul li{ list-style: none; padding-left: 30px; padding: 3px 0px 3px 0px; } .footer ul li a{ text-decoration: none; color: #ccc; font-size: 0.84em; } .footer ul li a:hover, .footer address a:hover{ color: #aaa; } .footer p{ padding-left: 30px; font-size: 0.83em; color: #ccc; } .footer img{ margin-right: 3px; } .footer address a{ font-size: 0.9em; color: #ccc; text-decoration: none; } .payment{ background: #333333; text-align: center; padding-top: 20px; padding-bottom: 20px; } .payment h4{ color: #fff; font-size: 0.9em; text-transform: uppercase; } .payment img{ max-width: 100%; } .copyright{ padding-top: 20px; background: #292929; color: #6b6666; font-size: 0.85em; font-weight: 200; } .left{ margin-bottom: 10px; } .left > p > a{ color: #e90000; text-transform: uppercase; text-decoration: none; } .left > p > a:hover{ color: #fff; } .copyright .left ul li{ float: left; list-style: none; padding-left: 6px; } .copyright .left ul li:first-child{ padding-left: 0; } .left ul.cp li a{ text-decoration: none; font-size: 0.85em; color: #6b6666; display: block; border-bottom: 1px dotted #6b6666; } .left ul.cp li a:hover{ color: #aaa; border-bottom: 1px solid #6b6666; } .copyright .right p{ float: right; } /* PHẦN CSS TRANG SẢN PHẨM */ .col_images { margin-bottom: 20px; } .col_images img{ max-width: 100%; border: none; } .sort-wrapper .text-right span{ font-size: 0.85em; line-height: 30px; } .info { margin-bottom: 50px; margin-left: 20px; margin-right: 20px; color: #8a9494; font-size: 1em; } /*.content .container,.slide-wrapper .container,.wraper .container, .content .container .col-xs-12, .content .container .col-sm-12, .content .container .col-md-3, .content .container .col-lg-3, .slide-wrapper .container .col-md-3, .slide-wrapper .container .col-lg-3, .slide-wrapper .container .col-md-9, .slide-wrapper .container .col-lg-9, .wraper .container .col-md-9, .wraper .container .col-lg-9, .wraper .container .col-md-3, .wraper .container .col-lg-3, .content-wrap .container, .content-wrap .container .col-md-9, .content-wrap .container .col-lg-9, .content-ct .container .col-md-9, .content-ct .container .col-lg-9.content-ct .container .col-md-9, .content-ct .container .col-lg-9 ,.content-ct .container .col-md-3, .content-ct .container .col-lg-3, .content-ct .container, .content-ct .col-xs-12, .content-ct .col-sm-12, .content-ct .col-md-4, .content-ct .col-lg-4 ,.content-ct .col-md-8, .index-main-product .col-sm-4, .index-main-product .col-xs-6 { padding-right: 0px; padding-left: 0px; }*/ .slide-wrapper .container, .content .container .col-xs-12, .footer .container .col-lg-3 .content .container .col-sm-12, .content .container .col-md-3, .footer .container .col-md-3 .content .container .col-lg-3, .footer .container .col-xs-6, .footer .container .col-sm-3, .wraper .container .col-lg-3, .wraper .container .col-md-3, .wraper .container .col-lg-9, .wraper .container .col-md-9, .content-wrap .container .col-md-9,.content-wrap .container .col-lg-9, .content-wrap .container .col-xs-12, .content-wrap .container .col-sm-12, .sort-wrapper .col-md-3 , .sort-wrapper .col-sm-3, .sort-wrapper .col-xs-5, .content-ct .container .col-md-3, .content-ct .container .col-lg-3, .content-ct .container .col-md-9, .content-ct .container .col-lg-9, .content-ct .col-xs-12, .content-ct .col-sm-12{ padding-right: 0px; padding-left: 0px; } .slide-wrapper .container .col-lg-3{ padding-right: 0px; } .slide-wrapper .container .col-lg-9{ padding-left: 0px; } .index-main-product .col-sm-4, .index-main-product .col-xs-6, .product_category .col-sm-3, .product_category .col-xs-6{ padding-left: 5px; padding-right: 5px; } .row { margin-right: 0px; margin-left: 0px; } .content-ct .container{ border-top: 1px solid #dcdcdc; } #cart-info{ margin-top: 30px; } .undo{ margin-bottom: 50px; } .undo:hover{ text-decoration: none; color: #e90000; } .pagination li a{ color: #887777; } .info ul li{ list-style-type: disc; margin-left: 40px; } .content-wrap .index-product{ background: #fff; width: 100%; padding: 0 !important; margin-top: 12px; margin-bottom: 50px; border-top: 1px solid #dcdcdc; border-left: 1px solid #dcdcdc; } .content-wrap .index-product .col-sm-3{ border-right: 1px solid #dcdcdc; border-bottom: 1px solid #dcdcdc; } .content_title{ margin-top: 20px; text-align: center; } .sidebar-widgets-wrap{ width: 23%; float: left; margin-right: 2%; } .widgets-links{ margin-bottom: 20px; } .widgets-links p, .widget p{ background: #e90000; height: 40px; margin: 0; color: #fff; font-size: 0.9em; line-height: 40px; padding-left: 24px; } .widgets-links .panel-left-body{ border-left: 1px solid #dcdcdc; border-right: 1px solid #dcdcdc; border-bottom: 1px solid #dcdcdc; } .widgets-links .panel-left-body li{ padding: 0px 10px 0px 23px; height: 37px; line-height: 37px; } .widgets-links .panel-left-body li a{ font-size: 0.84em; } .widget { width: 100%; min-height: 250px; border: 1px solid #dcdcdc; margin-bottom: 50px; } .e-img{ margin: 10px 10px 0 10px !important; } .e-meta li a:hover{ text-decoration: none !important; } .e-title{ padding-right: 5px !important; text-transform: capitalize !important; } .news{ margin-top: 20px; border-bottom: 1px dashed #dcdcdc; padding: 0 5px; } .news h3{ margin-top: 0px; } .news img{ margin-top: 0; margin-bottom: 60px; display: block; position: relative; max-width: 100%; vertical-align: middle; } .entry-title { color: #464646; text-transform: uppercase; font-size: 1em; } .entry-title > a{ text-decoration: none; } .entry-title a:hover{ color: #e90000; } .entry-meta li{ float: left; list-style: none; font-size: 0.8em; line-height: 14px; margin-top: 10px; margin-right: 20px; color: #999; } .entry-meta i{ padding-right: 5px; } .entry-content a{ text-decoration: none; font-size: 0.8em; color: #e90000; display: inline-block; border-bottom: 1px solid #e90000; font-style: italic; margin-bottom: 20px; margin-top: 20px; } .entry-content p{ padding: 0 10px; text-indent: 40px; text-align: justify; margin-bottom: 50px; } .entry-content img{ max-width: 90%; display: block; margin: auto; margin-top: 50px; margin-bottom: 25px; } .entry-content a:hover{ color: blue; border-bottom: 1px solid blue; } .entry-title ,.entry-meta, .entry-content{ padding-left: 5px; } /* TRANG ADMIN */ .mauxanh18 { font-size: 1em; color: blue; } td span{ padding-right: 3px; } .main-footer{ font-size: 0.85em; } label{ display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: 600; } span.maudo{ font-size: 1em; color: red; } table th{ font-weight: 600; } .alert-success, .label-success, .modal-success .modal-body { background-color: #00a65a !important; } .alert .close { color: #000; opacity: .2; filter: alpha(opacity=20); } button.close { -webkit-appearance: none; padding: 0; cursor: pointer; background: 0 0; border: 0; } .close { float: right; font-size: 21px; font-weight: 700; line-height: 1; color: #000; text-shadow: 0 1px 0 #fff; filter: alpha(opacity=20); opacity: .2; } .navbar-nav>.user-menu .glyphicon-home { margin-right: 10px; } .btn-top { /*z-index: 299; position: fixed; width: 40px; height: 40px; background-color: rgba(0, 0, 0, 0.298039); font-size: 20px; text-align: center; color: rgb(255, 255, 255); top: auto; left: auto; right: 30px; bottom: 50px; cursor: pointer; border-radius: 2px;*/ width: 34px; height: 34px; position: fixed; font-size: 0; z-index: 9999; right: 40px; bottom: 45px; background: #fd7400; border-radius: 50%; } .btn-top:hover { background-color: rgb(233, 0, 0); text-decoration: none; } .btn-top:before{ content: "\f062"; font-family: "FontAwesome"; font-size: 14px; color: #fff; text-align: center; width: 34px; height: 34px; line-height: 34px; display: block; } /* SẢN PHẨM KHUYẾN MÃI */ .sidebar_menu { padding: 5px 0px; border: 1px solid #eee; border-top: 0; } .spost:first-child{ margin-top: 0; padding-top: 0; border-top: 0; } .spost{ /*margin-top: 20px;*/ padding-top: 10px; padding-bottom: 10px; border-top: 1px dashed #E5E5E5; } .entry-image { height: auto; float: left; margin: 0 10px 0 10px; text-align: center; } .entry-image img{ width: 48px; height: auto; display: block; position: relative; } .entry-c { position: relative; overflow: hidden; } .entry-title a{ font-weight: 300; } .spost .entry-title a{ margin: 0; font-size: 0.8em; } .spost .entry-title a{ color: #333; } .spost .entry-title a:hover{ color: blue; text-decoration: none; } .spost .entry-meta { margin: 8px -10px 0 0; } .spost .entry-meta li{ font-size: 0.8em; margin: 0 10px 0 0; } .entry-meta li { float: left; line-height: 14px; color: #999; } .entry-meta li ins { font-weight: 300; color: red; text-decoration: none; } .entry-meta li del { color: #888; padding-left: 15px; } /* <NAME> */ .accordion{ margin-bottom: 50px; } .divcenter { position: relative !important; float: none !important; margin-left: auto !important; margin-right: auto !important; } .accordion.accordion-lg .acctitle { font-size: 23px; line-height: 44px; padding-left: 30px; font-weight: 400; } .acctitle:first-child { border-top: none; } .acctitlec { cursor: auto; } .acctitle { display: block; position: relative; line-height: 24px; margin: 0; font-size: 14px; font-weight: bold; color: #444; cursor: pointer; border-top: 1px dotted #DDD; padding: 10px 0 10px 20px; } .accordion.accordion-lg .acctitle i { width: 20px; font-size: 20px; line-height: 64px; } .acctitle i { position: absolute; top: 0; left: 0; width: 14px; text-align: center; font-size: 14px; line-height: 44px; } .accordion.accordion-lg .acc_content { padding: 10px 0 30px 30px; } .acc_content { position: relative; padding: 0 0 15px 20px; } .col_full { clear: both; float: none; margin-right: 0; margin-bottom: 25px; display: block; position: relative; width: 100%; } .col_full label { display: inline-block; font-size: 0.8em; font-weight: 700; letter-spacing: 1px; color: #555; margin-bottom: 5px; cursor: pointer; text-transform: uppercase; } .require_symbol { color: red!important; } .form-control { border-radius: 3px; } .button.button-3d { border-radius: 3px; border-bottom: 3px solid rgba(0,0,0,0.15); } .button { display: inline-block; position: relative; cursor: pointer; outline: none; white-space: nowrap; margin: 5px; padding: 0 22px; font-size: 0.85em; height: 40px; line-height: 40px; background-color: #e90000; color: #FFF; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; border: none; text-align: center; overflow: visible; /* text-shadow: 1px 1px 1px rgba(0,0,0,0.2); */ } .button-3d.button-black:hover, .button-reveal.button-black:hover { background-color: #111 !important; } .fright, .right { float: right !important; } .nobottommargin ul li{ list-style: none; } a.fright{ text-decoration: none !important; color: blue; font-size: 0.8em; } .right{ text-decoration: none !important; color: #333; font-size: 0.8em; } .right > a#login{ padding-right: 3px; color: blue; text-decoration: underline; } .nobottommargin ul li a{ padding-right: 30px; padding-top: 10px; } .nobottommargin ul li a:hover, .right > a#login:hover{ color: #e90000; } /*-----------------------*/ .fancybox-wrap .in{ display: block; padding-right: 0; } .fancybox-wrap .modal-dialog{ width: 70%; } .fancybox-wrap .modal-content{ width: 100%; height: auto; position: absolute; opacity: 1; overflow: visible; margin: auto; } /*-----------------*/ .fancy-wrap{ width: auto; height: auto; display: block; } .shop-quick-view-ajax, .portfolio-ajax-modal { position: relative; background-color: #FFF; width: 800px; margin: 0 auto; } /*--------------*/ .error{ color: #e90000; font-size: 0.8em; } /*----------GIỎ HÀNG--------*/ .cart .thead { border-bottom: 2px solid #ddd; font-weight: 700; } .cart .td { padding-top: 10px; padding-bottom: 10px; font-size: 0.85em; font-weight: 600; color: #333; } .cart .cart_item { border-bottom: 1px solid #ddd; } .cart-product-thumbnail a { width: 68px; text-decoration: none !important; color: #e90000; } .cart-product-thumbnail img { height: auto!important; } .cart-product-thumbnail img { width: 64px; height: 64px; border: 2px solid #EEE; } .cart-product-quantity .quantity { display: inline-block; margin: 0; float: none; font-weight: 100; } .cart-product-name, .cart-product-price, .cart-product-quantity, .cart-product-subtotal{ text-align: left; } .cart-product-name > a{ color: #333; font-weight: bold; font-size: 1em; } .cart-product-name > a:hover{ text-decoration: none; color: #e90000; } .amount{ font-weight: 100; font-size: 1em; } .nomargin { font-weight: 400; font-size: 1.2em; } .color { color: #e90000 !important; font-weight: 700; font-size: 1.5em; } .btn-submit{ margin-bottom: 5px; } .wrap{ border-top: 1px solid #dcdcdc; } /*-------Trang chi tiết sản phẩm------*/ .content-pd-wrap{ border-top: 1px solid #dcdcdc; } /*-------Trang cám ơn đặt hàng------*/ .shipping-info{ border: 1px solid #dcdcdc; width: 98%; margin-top: 10px; } .content-pd-wrap .product-price p{ text-transform: uppercase; } .content-pd-wrap .product-price ins{ color: red; font-size: 1.5em; text-decoration: none; } .content-pd-wrap .col-md-6, .content-pd-wrap .col-sm-6, .content-pd-wrap .col-xs-6, .content-pd-wrap .col-md-4, .content-pd-wrap .col-sm-4, .content-pd-wrap .col-xs-12{ padding: 0px; } .content-pd-wrap .clear { clear: both; display: block; font-size: 0px; height: 0px; line-height: 0; width: 100%; overflow: hidden; } .content-pd-wrap .line{ clear: both; position: relative; width: 100%; margin: 20px 0px; border-top: 1px solid rgb(238, 238, 238); } .content-pd-wrap .quantity { float: left; } .content-pd-wrap .quantity .plus, .content-pd-wrap .quantity .minus { display: block; float: left; cursor: pointer; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; width: 30%; height: 40px; line-height: 40px; text-align: center; background-color: rgb(255, 255, 255); font-size: 1em; font-weight: bold; border-width: 1px; border-style: solid; border-color: rgb(238, 238, 238); padding: 0px; transition: background-color 0.2s linear; } .content-pd-wrap .quantity .qty { float: left; width: 40%; height: 40px; line-height: 40px; border-right-style: initial; border-left-style: initial; border-right-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; background-color: rgb(255, 255, 255); text-align: center; margin-bottom: 0px; border-width: 1px 0px; border-top: 1px solid rgb(238, 238, 238); border-bottom: 1px solid rgb(238, 238, 238); } .content-pd-wrap .add-to-cart.button { font-size: 1em; height: 40px; line-height: 40px; color: rgb(252, 252, 252); background-color: rgb(255, 0, 0); margin: 0px 0px 0px 0px; } #buynow { font-size: 22px; color: rgb(255, 255, 255); background-color: rgb(0, 184, 78); margin: 10px 0px 0px; } .pd_policies { background: url(../images/templates/pd_policies.png); padding: 5px; border-radius: 5px; } .pd_policies ul { margin-bottom: 0; background-color: #fff; overflow: hidden; font-size: 13px; padding: 5px 10px; } .nostyled { list-style: none; } .nopadding { padding: 0 !important; } .pd_policies ul a { line-height: 20px; vertical-align: bottom; font-size: 12px; } .pd_policies ul a img { width: 20px; margin-right: 5px; padding: 2px 0px; } .pd_policies ul a:hover{ text-decoration: none; } .product-meta { font-size: 15px; color: #777; margin-bottom: 15px; } .product-meta strong { display: block; margin-bottom: 10px; } .tagged_as a { border-left: 3px solid #e90000; padding: 5px 10px; background: #e6e9ed; margin: 0 5px 5px 0; display: inline-block; position: relative; color: #666; font-size: 12px; } .tagged_as a i { position: absolute; left: -1px; top: -1px; font-size: 20px; color: #e90000; } .tagged_as a:hover{ color: #666; text-decoration: none; } .content-pd-wrap p strong{ color: blue; } .panel-group .panel-body img{ max-width: 100%; height: auto; } /******** TRANG ACCOUNT *********/ .account{ margin-top: 50px; border-top: 1px solid #dcdcdc; } .customer-title{ display: block; background: transparent; border-bottom: 2px solid #e90000; margin-top: 20px; } .customer-detail p{ color: #777; line-height: 1em; margin: 0 0 0.8em; } /*--------Tài khoản/Đơn hàng --------*/ .account-table td a{ font-style: italic; } .account-table td a:hover{ text-decoration: none; } #undo a.undo-order:hover{ text-decoration: none; } .undo-order{ float: right; } .account label{ font-weight: normal; } /*------------------------*/ .sidebar-menu span{ font-weight: normal; } .pull-left p{ font-weight: normal !important; } .logo{ text-decoration: none !important; } .navbar-custom-menu span{ font-weight: normal !important; } .user-header p{ font-weight: normal !important; } .logo-lg{ font-weight: normal !important; } .logo-mini b{ font-weight: normal !important; } .small-box-footer{ font-weight: normal !important; } .inner p{ font-weight: normal !important; } .treeview-menu a{ font-weight: normal !important; } .content{ font-weight: normal !important; }
0.349755
0.051774
@charset "utf-8"; @import url(http://weloveiconfonts.com/api/?family=fontawesome); @import url(http://meyerweb.com/eric/tools/css/reset/reset.css); @import url(http://fonts.googleapis.com/css?family=Montserrat+Alternates); @import url(https://fonts.googleapis.com/css?family=Comfortaa); [class*="fontawesome-"]:before { font-family: 'FontAwesome', sans-serif; } body { line-height: 1.5em; font-size: 14px; /*font-family: 'Montserrat Alternates',Arial, sans-serif;*/ } /*-------login------ 5270F7 */ #font1{ font-family: 'Montserrat Alternates',Arial, sans-serif; font-size: 25px; z-index: 1; color: black ; padding: 15px; text-align: center; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(130, 123, 225, 1); } #font2{ font-family: 'Montserrat Alternates',Arial, sans-serif; z-index: 1; border:2px solid #819FF7; border-radius:40px 0 40px 0; text-align: center; box-shadow: 10px 10px 6px -5px rgba(11,23,59,1); } .login-page { width: 360px; padding: 4% 0 0; margin: auto; } .form { position: relative; z-index: 1; background: #FFFFFF; max-width: 360px; margin: 0 auto 100px; padding: 45px; text-align: center; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); } .form input { font-family: 'Montserrat Alternates',Arial, sans-serif; outline: 0; background: #f2f2f2; width: 100%; margin: 0 0 15px; padding: 15px; box-sizing: border-box; font-size: 14px; } .form button { font-family: 'Montserrat Alternates',Arial, sans-serif; font-size: 14px; background: #827BE1; width: 100%; border: 0; padding: 15px; color: #FFFFFF; font-size: 14px; -webkit-transition: all 0.3 ease; transition: all 0.3 ease; cursor: pointer; } /*---- cierre del login*---*/ .mastfoot { position: fixed; bottom: 0; width: 100%; color: white; } /* ----------- */ .container1{ margin: 120px auto; width: 280px; height:200px; } /*------*/ #formulario { font-size: 12px; background-color: #fafafa; left: 360px; border: 3px solid #73AD21; width: 800px; text-align: center; height:auto; padding:50px; background-color:#EEE; color:#333; border:2px solid #827BE1; border-radius:40px 0 40px 0 } h1 { font-family: 'Comfortaa', cursive; font-weight: bold; font-size: 1.6em; line-height: 1.7em; margin-bottom: 10px; text-align: center; } h2 { font-family: 'Comfortaa', cursive; font-weight: bold; font-size: 1.4em; line-height: 1.7em; margin-bottom: 10px; text-align: center; } h3 { font-family: 'Comfortaa', cursive; font-weight: bold; font-size: 1.3em; line-height: 1.7em; margin-bottom: 10px; text-align: center; } h4 { font-family: 'Comfortaa', cursive; font-weight: bold; font-size: 1.5em; line-height: 1.7em; margin-bottom: 10px; text-align: center; } /*-----------------------------------------*/ table { border-collapse: separate; background: #fff; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; margin: 25px auto; -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); } thead { -moz-border-radius: 55px; -webkit-border-radius: 55px; border-radius: 55px; } thead th { color: #fff; text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5); text-align: left; padding: 20px; background-size: 100%; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #646f7f), color-stop(100%, #4a5564)); background-image: -moz-linear-gradient(#646f7f, #4a5564); background-image: -webkit-linear-gradient(#646f7f, #4a5564); background-image: linear-gradient(#646f7f, #4a5564); border-top: 1px solid #858d99; } tbody tr td { font-weight: 400; color: #5f6062; font-size: 13px; padding: 20px 20px 20px 20px; border-bottom: 1px solid #e0e0e0; } tbody tr:nth-child(2n) { background: #f0f3f5; } tbody tr:last-child td { border-bottom: none; } tbody:hover > tr td { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } tbody:hover > tr:hover td { text-shadow: none; color: #2d2d2d; filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; } /*---------------------------------------*/ #custom-search-input { margin:0; margin-top: 10px; padding: 0; } #custom-search-input .search-query { padding-right: 3px; padding-right: 4px \9; padding-left: 3px; padding-left: 4px \9; margin-bottom: 0; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } #custom-search-input button { border: 0; background: none; padding: 2px 5px; margin-top: 2px; position: relative; left: -28px; margin-bottom: 0; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; color:#D9230F; } /************************************/
public/css/estilopage.css
@charset "utf-8"; @import url(http://weloveiconfonts.com/api/?family=fontawesome); @import url(http://meyerweb.com/eric/tools/css/reset/reset.css); @import url(http://fonts.googleapis.com/css?family=Montserrat+Alternates); @import url(https://fonts.googleapis.com/css?family=Comfortaa); [class*="fontawesome-"]:before { font-family: 'FontAwesome', sans-serif; } body { line-height: 1.5em; font-size: 14px; /*font-family: 'Montserrat Alternates',Arial, sans-serif;*/ } /*-------login------ 5270F7 */ #font1{ font-family: 'Montserrat Alternates',Arial, sans-serif; font-size: 25px; z-index: 1; color: black ; padding: 15px; text-align: center; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(130, 123, 225, 1); } #font2{ font-family: 'Montserrat Alternates',Arial, sans-serif; z-index: 1; border:2px solid #819FF7; border-radius:40px 0 40px 0; text-align: center; box-shadow: 10px 10px 6px -5px rgba(11,23,59,1); } .login-page { width: 360px; padding: 4% 0 0; margin: auto; } .form { position: relative; z-index: 1; background: #FFFFFF; max-width: 360px; margin: 0 auto 100px; padding: 45px; text-align: center; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); } .form input { font-family: 'Montserrat Alternates',Arial, sans-serif; outline: 0; background: #f2f2f2; width: 100%; margin: 0 0 15px; padding: 15px; box-sizing: border-box; font-size: 14px; } .form button { font-family: 'Montserrat Alternates',Arial, sans-serif; font-size: 14px; background: #827BE1; width: 100%; border: 0; padding: 15px; color: #FFFFFF; font-size: 14px; -webkit-transition: all 0.3 ease; transition: all 0.3 ease; cursor: pointer; } /*---- cierre del login*---*/ .mastfoot { position: fixed; bottom: 0; width: 100%; color: white; } /* ----------- */ .container1{ margin: 120px auto; width: 280px; height:200px; } /*------*/ #formulario { font-size: 12px; background-color: #fafafa; left: 360px; border: 3px solid #73AD21; width: 800px; text-align: center; height:auto; padding:50px; background-color:#EEE; color:#333; border:2px solid #827BE1; border-radius:40px 0 40px 0 } h1 { font-family: 'Comfortaa', cursive; font-weight: bold; font-size: 1.6em; line-height: 1.7em; margin-bottom: 10px; text-align: center; } h2 { font-family: 'Comfortaa', cursive; font-weight: bold; font-size: 1.4em; line-height: 1.7em; margin-bottom: 10px; text-align: center; } h3 { font-family: 'Comfortaa', cursive; font-weight: bold; font-size: 1.3em; line-height: 1.7em; margin-bottom: 10px; text-align: center; } h4 { font-family: 'Comfortaa', cursive; font-weight: bold; font-size: 1.5em; line-height: 1.7em; margin-bottom: 10px; text-align: center; } /*-----------------------------------------*/ table { border-collapse: separate; background: #fff; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; margin: 25px auto; -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); } thead { -moz-border-radius: 55px; -webkit-border-radius: 55px; border-radius: 55px; } thead th { color: #fff; text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5); text-align: left; padding: 20px; background-size: 100%; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #646f7f), color-stop(100%, #4a5564)); background-image: -moz-linear-gradient(#646f7f, #4a5564); background-image: -webkit-linear-gradient(#646f7f, #4a5564); background-image: linear-gradient(#646f7f, #4a5564); border-top: 1px solid #858d99; } tbody tr td { font-weight: 400; color: #5f6062; font-size: 13px; padding: 20px 20px 20px 20px; border-bottom: 1px solid #e0e0e0; } tbody tr:nth-child(2n) { background: #f0f3f5; } tbody tr:last-child td { border-bottom: none; } tbody:hover > tr td { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; } tbody:hover > tr:hover td { text-shadow: none; color: #2d2d2d; filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; } /*---------------------------------------*/ #custom-search-input { margin:0; margin-top: 10px; padding: 0; } #custom-search-input .search-query { padding-right: 3px; padding-right: 4px \9; padding-left: 3px; padding-left: 4px \9; margin-bottom: 0; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } #custom-search-input button { border: 0; background: none; padding: 2px 5px; margin-top: 2px; position: relative; left: -28px; margin-bottom: 0; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; color:#D9230F; } /************************************/
0.258045
0.067608
@media (min-width: 992px){ } @media only screen and (max-width: 991px) { .header-logo { max-width: 35% !important; } #he-123{ height: 220px !important; } #oldpricehide{ display: unset !important; } #oldpriceipad{ display: none !important; } } #oldpriceipad{ display: none ; } @media only screen and (max-width: 1024px) { #cartipda{ display: none !important; } #oldpricehide{ display: none !important; } #oldpriceipad{ display: unset !important; } } @media only screen and (max-width: 575px) { .mgl-50 { margin-left: unset !important; } .mgl-60 { margin-left: unset !important; } #oldpriceipad{ display: none !important; } #oldpricehide{ display: unset !important; } #cartipda{ display: unset !important; } #col-top-50{ margin-top: 0% !important; margin-bottom: 20% !important; } #col-top-30{ margin-top: 0% !important; margin-bottom: 20% !important; } #btn-center-desktop{ margin-right: auto !important; } .header-logo img { height: 32px; width: 90px !important; margin-left: -70px; } #responsivelogo { margin-right: 25%; } #responsicecustom{margin-bottom: -19px;} .header-logo { max-width: unset !important; } .toast-container--fade{ bottom: 8% !important; } } .modal-sm { max-width: 400px !important; } .modal-dialog .modal-header{ justify-content: center!important; border-bottom: 2px solid black!important; } .header-logo img{ width: unset !important; } .btn-close{ width: 10px!important; } .ec-header-bottom { padding: 8px 0 !important; } .ec-header{ background-color: var(--background)!important; color: var(--font)!important; } .ec-main-menu ul li.active > a{ color: var(--font)!important; } .ec-main-menu ul li a{ color: var(--font)!important; } .ec-main-menu ul li:hover > a { color: var(--font)!important; } .ec-main-menu > ul > li:hover > a:before{ background: var(--font)!important; } body{ color: var(--body)!important; } .ec-main-menu > ul > li.active > a:before{ background: var(--font)!important; } .header_svg{ fill: var(--font)!important; } .ec-header-bottons .ec-header-btn .ec-header-count{ background-color: var(--font)!important; color: var(--body)!important; } .ec-product-inner .ec-pro-content .ec-pro-title a { color: var(--body)!important; } .ec-product-inner .ec-pro-content .ec-price span.old-price{ color: var(--body)!important; } .ec-product-inner .ec-pro-content .ec-price span.new-price{ color: var(--body)!important; } .footer-bottom-social ul li .hdr-facebook:hover { background: var(--background)!important; color: var(--font)!important; } .footer-bottom-social ul li a { color: var(--body)!important; } .footer-bottom .ec-copy .site-name{ color: var(--body)!important; } .footer-bottom .ec-copy .site-name:hover{ color: var(--background)!important; } .footer-bottom .ec-copy{ color: var(--body)!important; } a{ color: var(--body)!important; } #scrollUp{ background-color: var(--background)!important; color: var(--font)!important; } .main-slider-nav .swiper-buttons .swiper-button-prev:hover { background-color: var(--body)!important; color: var(--font)!important; } .main-slider-nav .swiper-buttons .swiper-button-prev { background-color: var(--background)!important; color: var(--font)!important; } .main-slider-nav .swiper-buttons .swiper-button-next { background-color: var(--background)!important; color: var(--font)!important; } .main-slider-nav .swiper-buttons .swiper-button-next:hover { background-color: var(--body)!important; color: var(--font)!important; } .ec-gl-btn .btn.active{ color: var(--font)!important; fill: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } .ec-gl-btn .btn.svg_img.gl_svg:active { fill: var(--font)!important; } .ec-gl-btn .btn.svg_img.gl_svg:hover { fill: var(--font)!important; } .ec-gl-btn .btn:hover { color: var(--font)!important; fill: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } .ec-sort-select .sort-by{ color: var(--body)!important; } .ec-pro-pagination a.active { background-color: var(--background)!important; color: var(--font)!important; } .ec-pro-pagination a:hover{ background-color: var(--body)!important; color: var(--font)!important; } .hdr-facebook:hover{ background: var(--background)!important; color: var(--font)!important; } .hdr-facebook{ width: 25px; height: 25px; text-align: center; display: -webkit-box; display: -ms-flexbox; display: flex; background: #909090; border-radius: 100%; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; font-size: 15px; background: #f7f7f7; border: 1px solid #eeeeee; color: var(--body); } .submit .header_svg{ fill: var(--body)!important; } .btn-primary{ /* color: var(--body)!important; background-color: unset!important; */ border: 1px solid var(--body)!important; } .btn-primary:hover { color: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } .btn-secondary{ color: var(--body)!important; background-color: unset!important; border: 1px solid var(--body)!important; } .btn-secondary:hover{ color: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } .btn-outline-primary{ color: var(--background)!important; border: 1px solid!important; border-color: var(--background)!important; } .btn-outline-primary:hover{ color: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } .single-pro-content .ec-single-qty .ec-btn-group:hover{ color: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } /* .ec-gl-btn .btn .svg_img.gl_svg{ fill: var(--font)!important; } */ .ec-side-cart .ec-cart-inner .ec-cart-title .cart_title{ color: var(--body)!important; } .eccart-pro-items li .ec-pro-content .cart-price span{ color: var(--body)!important; } .text-left{ color: var(--body)!important; } .text-right{ color: var(--body)!important; } .ec-side-cart .ec-cart-inner .ec-cart-title .ec-close{ color: var(--body)!important; } .single-pro-content .ec-single-title{ color: var(--body)!important; } .single-pro-content p{ color: var(--body)!important; } .single-pro-content .ec-single-desc{ color: var(--body)!important; } .single-pro-content .ec-single-price span.new-price{ color: var(--body)!important; } .color-black a{ color: var(--body)!important; } h3, .h3,h5{ color: var(--body)!important; } .ec-vendor-dashboard .ec-vendor-dashboard-sort-card h5, .ec-vendor-dashboard .ec-vendor-dashboard-sort-card .h5, .ec-vendor-uploads .ec-vendor-dashboard-sort-card h5, .ec-vendor-uploads .ec-vendor-dashboard-sort-card .h5{ color: var(--font)!important; } table{ color: var(--body)!important; } .ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table thead tr th, .ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table thead tr th{ color: var(--body)!important; } .ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th, .ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td, .ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th, .ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td{ color: var(--body)!important; } .ec-checkout-wrap .ec-check-bill-form label{ color: var(--body)!important; } .ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content .ec-pay-desc{ color: var(--body)!important; } .checkout_page [type=radio]:checked + label{ color: var(--body)!important; } .ec-nav-toolbar{ background-color: var(--background)!important; } .ec-gl-btn .btn{ fill: var(--body)!important; } .ec-gl-btn .btn .svg_img.gl_svg{ color: var(--body); fill: var(--body); background-color: unset; border-color: var(--body); } /* .ec-nav-toolbar { display: none; background-color: #ffffff; } */ /* mobile-view-grid-hide */ @media (max-width: 767px) { .mobile-view-grid-hide{ display: none!important; } .sm-12-width{ width: 100%; } #btn-center-desktop{ margin-right: auto !important; } } .ec-side-cart .ec-menu-title .menu_title{ color: var(--body)!important; } .gridlist { fill: var(--font)!important; } .ec-gl-btn .btn:hover .svg_img.gl_svg{ fill: var(--font)!important; } .ec-gl-btn .btn.active .svg_img.gl_svg { fill: var(--font)!important; } .svg_img.pro_svg{ fill:var(--body)!important; } .noUi-horizontal .noUi-handle{ width:16px!important; height:16px!important; } .noUi-horizontal{ height: 4px!important; } .filter__label:nth-child(1):before{ content:"PKR"!important; } .filter__label:nth-child(3):before{ content:"PKR"!important; } .ec-register-wrapper .ec-register-container .ec-register-form .btn{ width: unset; } .ec-register-wrapper .ec-register-container .ec-register-form .btn{ font-size: 15px!important; } .single-nav-thumb .slick-slide.slick-current.slick-active img{ border-color: var(--body)!important; } .toast-container--fade{ z-index:500 !important; } .ec-vendor-dashboard .color-pink, .ec-vendor-uploads .color-pink{ background-image:unset; background-color: var(--background); } .ec-vendor-dashboard-sort-card > h3{ color: var(--font) !important; } .ec-vendor-dashboard .color-blue, .ec-vendor-uploads .color-blue { background-image:unset; background-color: var(--background); } .ec-vendor-dashboard .color-green, .ec-vendor-uploads .color-green{ background-image:unset; background-color: var(--background); } .ec-vendor-dashboard .color-orange, .ec-vendor-uploads .color-orange{ background-image:unset; background-color: var(--background); } .ec-register-wrapper .ec-register-container .ec-register-form input{ margin-bottom:0px !important; width: 80%; } .ec-register-wrapper .ec-register-container .ec-register-form input{ border:none !important; border-bottom:1px solid !important; } #col-top-50{ margin-top: 70%; } #col-top-30{ margin-top: 30%; } #btn-center-desktop{ margin-right: 30px; margin-bottom: 50px; } .ec-register-wrapper{ max-width:734px; } .ec-register-wrapper .ec-register-container .ec-register-form .ec-register-wrap { padding: 0 0px; } .input-group{ padding-bottom: 15px !important; } #p-rl{ padding: 0 20px 0 10px; } #he-123{ height: 200px; } .ec-product-lsc .ec-product-body .ec-link-btn{ display: -webkit-inline-box; } .ec-product-lsc .ec-product-body .ec-el-price .ec-o-price{ color: var(--body) !important; } .ec-title a{ color: var(--body) !important; } .ec-product-lsc .ec-product-body .ec-description{ color: var(--body) !important; } .ec-product-lsc .ec-product-body .ec-description span { color: var(--body) !important; } .ec-product-lsc .ec-product-image .ec-product-ribbon{ background-color:var(--background) !important; color: var(--font) !important; } .btn-third{ color: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } .btn-third:hover{ color: var(--body)!important; background-color: unset!important; border: 1px solid var(--body)!important; } .ec-offer-section { min-height: 620px; background-size: cover; overflow: hidden; padding: 30px 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; background-image: url("https://sojanya.com/pub/media/wysiwyg/wholesalemenbanner1.jpg"); background-repeat: no-repeat; background-size: cover; background-position: center; } .ec-offer-content { 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; } .ec-offer-content .ec-offer-title { font-size: 60px; color: #3474d4; margin-bottom: 5px; letter-spacing: 2px; font-family: "Montserrat"; text-transform: uppercase; line-height: 1; font-weight: 800; } .ec-offer-content .ec-offer-stitle { font-size: 40px; color: #3474d4; margin-bottom: 13px; letter-spacing: 1.5px; font-family: "Montserrat"; text-transform: uppercase; } .ec-offer-content .btn-primary { width: 140px; margin: 15px auto 0 auto; } .ec-offer-content .ec-offer-img { margin-bottom: 16px; } .ec-offer-content .ec-offer-desc { font-size: 32px; color: #444444; margin-bottom: 16px; letter-spacing: 1.2px; font-weight: 600; line-height: 1.2; } .ec-offer-content .ec-offer-price { font-size: 40px; color: #555; letter-spacing: 1.5px; font-weight: 900; line-height: 1.2; } .ec-fre-spe-section .section-title { padding-bottom: 5px; border-bottom: 1px solid #eeeeee; } .ec-fre-spe-section .section-title .ec-bg-title { font-size: 52px; letter-spacing: 1px; } .ec-fre-spe-section .section-title .ec-title { padding: 0; } .ec-fre-spe-section .section-title .ec-title:after { content: none; } .ec-fre-spe-section .section-title .ec-title:before { content: none; } .ec-fre-spe-section .ec-fs-product { padding: 0 10px; } .ec-fre-spe-section .ec-fre-products { margin: 0 -10px; } .ec-fre-spe-section .ec-spe-products { margin: 0 -10px; } .ec-fre-spe-section .ec-fs-pro-inner { background: #f7f7f7; padding: 15px 35px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; min-height: 476px; } .ec-fre-spe-section .slick-arrow { top: -70px; } .periodDisplay { font-size: 13px; } .ec-fs-pro-inner .ec-fs-pro-image { position: relative; } .ec-fs-pro-inner .ec-fs-pro-image .image img { max-width: 100%; padding-right: 10px; -webkit-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; z-index: 1; } .ec-fs-pro-inner .ec-fs-pro-image .image img.hover-image { position: absolute; z-index: 2; top: 0; left: 0; opacity: 0; } .ec-fs-pro-inner .ec-fs-pro-image a.quickview { position: absolute; z-index: 9; top: 60%; right: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; visibility: hidden; -webkit-transition: all 0.5s ease 0s; transition: all 0.5s ease 0s; width: 40px; height: 40px; left: 0; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; opacity: 0; margin: 0 auto; color: #ffffff; background-color: #ffffff; border: 1px solid #eeeeee; border-radius: 50%; } .ec-fs-pro-inner .ec-fs-pro-image a.quickview:hover { -webkit-box-shadow: 0px 0px 5px 0px #ccc; box-shadow: 0px 0px 5px 0px #ccc; } .ec-fs-pro-inner:hover .ec-fs-pro-image a.quickview { visibility: visible; opacity: 1; top: 44%; } .ec-fs-pro-inner .ec-fs-pro-content { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding-left: 30px; } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-price { font-size: 16px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: left; color: #777777; margin: 10px 0 20px 0; line-height: 1.2; } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-price span.new-price { color: #555; font-weight: 700; font-size: 15px; } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-price span.old-price { font-size: 13px; margin-right: 15px; text-decoration: line-through; color: #777777; margin-top: 2px; } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-pro-desc { font-size: 14px; color: #777777; border-top: 1px solid #eeeeee; padding: 10px 0 0; line-height: 22px; letter-spacing: 0.5px; margin-bottom: 10px; margin-top: 15px; } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-pro-book { margin-bottom: 10px; font-size: 16px; color: var(--body); letter-spacing: 0.5px; font-weight: 600; } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-pro-book span { color: var(--body); } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-pro-btn a { height: 35px; line-height: 35px; padding-left: 10px; padding-right: 10px; font-weight: 400; min-width: 120px; text-transform: uppercase; font-size: 14px; } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-pro-btn a:not(:last-child) { margin-right: 11px; } .ec-fs-pro-inner .ec-fs-pro-title { margin: 0 0 2px; } .ec-fs-pro-inner .ec-fs-pro-title a { font-family: "Poppins, sans-serif"; font-weight: 400; font-size: 20px; color: #777; letter-spacing: 0.6px; text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; line-height: 34px; } .ec-fs-pro-inner .ec-fs-pro-rating { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-size: 16px; margin-bottom: 2px; } .ec-fs-pro-inner .ec-fs-pro-rating .ec-fs-rating-text { font-size: 16px; color: #777777; } .ec-fs-pro-inner .ec-fs-pro-rating .ec-fs-rating-icon { margin-right: 14px; margin-top: -1px; } .ec-fre-products .slick-arrow.slick-prev { right: 28px; left: auto; } .ec-fre-products .slick-arrow.slick-next { right: 0; left: auto; } .ec-spe-products .slick-arrow.slick-prev { right: 28px; left: auto; } .ec-spe-products .slick-arrow.slick-next { right: 0; left: auto; } .numberDisplay { color: #686868; background-color: #ffffff; font-weight: 500; border-radius: 5px; } .ec-category-section .ec-cat-tab-nav .cat-link.active{ background-color: var(--background); } .ec-category-section .ec-cat-tab-nav .cat-link.active .cat-desc span{ color:var(--font); } .ec-category-section .ec-cat-tab-nav .cat-link.active .cat-desc span + span{ color:var(--font); } .ec-category-section .ec-cat-tab-nav .cat-link .cat-desc span{ color: var(--body); } .ec-category-section .ec-cat-tab-nav .cat-link .cat-desc span + span{ color: var(--body); } .ec-category-section .ec-cat-tab-nav .cat-link:hover{ background-color: var(--background); } .ec-product-lsc { border-color: #c1c1c1; } .ec-product-lsc .ec-product-body .ec-el-price .ec-d-price{ margin-bottom: -3px !important; position: unset !important; left: 0px !important; top: 0px !important; } .mgl-50 { margin-left: 20%; } .mgl-60 { margin-left: 23%; } .mgb-30-s{ margin-bottom: 70px; } .bg-third{ background-image: url(https://cdn.shopify.com/s/files/1/0586/8873/3344/files/900_2_720x.jpg?v=1631664387); background-size: cover; } .rectangle-span:active{ color: white; background-color:rgba(33,43,54,.9) } .active{ color: white; background-color:rgba(33,43,54,.9) } .btn-primary{ color: var(--body)!important; background-color: unset!important; border: 1px solid var(--body)!important; } .btn-primary{ color: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } .flickity-viewport{ height:560px !important; }
site/static/css/style.min.css
@media (min-width: 992px){ } @media only screen and (max-width: 991px) { .header-logo { max-width: 35% !important; } #he-123{ height: 220px !important; } #oldpricehide{ display: unset !important; } #oldpriceipad{ display: none !important; } } #oldpriceipad{ display: none ; } @media only screen and (max-width: 1024px) { #cartipda{ display: none !important; } #oldpricehide{ display: none !important; } #oldpriceipad{ display: unset !important; } } @media only screen and (max-width: 575px) { .mgl-50 { margin-left: unset !important; } .mgl-60 { margin-left: unset !important; } #oldpriceipad{ display: none !important; } #oldpricehide{ display: unset !important; } #cartipda{ display: unset !important; } #col-top-50{ margin-top: 0% !important; margin-bottom: 20% !important; } #col-top-30{ margin-top: 0% !important; margin-bottom: 20% !important; } #btn-center-desktop{ margin-right: auto !important; } .header-logo img { height: 32px; width: 90px !important; margin-left: -70px; } #responsivelogo { margin-right: 25%; } #responsicecustom{margin-bottom: -19px;} .header-logo { max-width: unset !important; } .toast-container--fade{ bottom: 8% !important; } } .modal-sm { max-width: 400px !important; } .modal-dialog .modal-header{ justify-content: center!important; border-bottom: 2px solid black!important; } .header-logo img{ width: unset !important; } .btn-close{ width: 10px!important; } .ec-header-bottom { padding: 8px 0 !important; } .ec-header{ background-color: var(--background)!important; color: var(--font)!important; } .ec-main-menu ul li.active > a{ color: var(--font)!important; } .ec-main-menu ul li a{ color: var(--font)!important; } .ec-main-menu ul li:hover > a { color: var(--font)!important; } .ec-main-menu > ul > li:hover > a:before{ background: var(--font)!important; } body{ color: var(--body)!important; } .ec-main-menu > ul > li.active > a:before{ background: var(--font)!important; } .header_svg{ fill: var(--font)!important; } .ec-header-bottons .ec-header-btn .ec-header-count{ background-color: var(--font)!important; color: var(--body)!important; } .ec-product-inner .ec-pro-content .ec-pro-title a { color: var(--body)!important; } .ec-product-inner .ec-pro-content .ec-price span.old-price{ color: var(--body)!important; } .ec-product-inner .ec-pro-content .ec-price span.new-price{ color: var(--body)!important; } .footer-bottom-social ul li .hdr-facebook:hover { background: var(--background)!important; color: var(--font)!important; } .footer-bottom-social ul li a { color: var(--body)!important; } .footer-bottom .ec-copy .site-name{ color: var(--body)!important; } .footer-bottom .ec-copy .site-name:hover{ color: var(--background)!important; } .footer-bottom .ec-copy{ color: var(--body)!important; } a{ color: var(--body)!important; } #scrollUp{ background-color: var(--background)!important; color: var(--font)!important; } .main-slider-nav .swiper-buttons .swiper-button-prev:hover { background-color: var(--body)!important; color: var(--font)!important; } .main-slider-nav .swiper-buttons .swiper-button-prev { background-color: var(--background)!important; color: var(--font)!important; } .main-slider-nav .swiper-buttons .swiper-button-next { background-color: var(--background)!important; color: var(--font)!important; } .main-slider-nav .swiper-buttons .swiper-button-next:hover { background-color: var(--body)!important; color: var(--font)!important; } .ec-gl-btn .btn.active{ color: var(--font)!important; fill: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } .ec-gl-btn .btn.svg_img.gl_svg:active { fill: var(--font)!important; } .ec-gl-btn .btn.svg_img.gl_svg:hover { fill: var(--font)!important; } .ec-gl-btn .btn:hover { color: var(--font)!important; fill: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } .ec-sort-select .sort-by{ color: var(--body)!important; } .ec-pro-pagination a.active { background-color: var(--background)!important; color: var(--font)!important; } .ec-pro-pagination a:hover{ background-color: var(--body)!important; color: var(--font)!important; } .hdr-facebook:hover{ background: var(--background)!important; color: var(--font)!important; } .hdr-facebook{ width: 25px; height: 25px; text-align: center; display: -webkit-box; display: -ms-flexbox; display: flex; background: #909090; border-radius: 100%; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; font-size: 15px; background: #f7f7f7; border: 1px solid #eeeeee; color: var(--body); } .submit .header_svg{ fill: var(--body)!important; } .btn-primary{ /* color: var(--body)!important; background-color: unset!important; */ border: 1px solid var(--body)!important; } .btn-primary:hover { color: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } .btn-secondary{ color: var(--body)!important; background-color: unset!important; border: 1px solid var(--body)!important; } .btn-secondary:hover{ color: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } .btn-outline-primary{ color: var(--background)!important; border: 1px solid!important; border-color: var(--background)!important; } .btn-outline-primary:hover{ color: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } .single-pro-content .ec-single-qty .ec-btn-group:hover{ color: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } /* .ec-gl-btn .btn .svg_img.gl_svg{ fill: var(--font)!important; } */ .ec-side-cart .ec-cart-inner .ec-cart-title .cart_title{ color: var(--body)!important; } .eccart-pro-items li .ec-pro-content .cart-price span{ color: var(--body)!important; } .text-left{ color: var(--body)!important; } .text-right{ color: var(--body)!important; } .ec-side-cart .ec-cart-inner .ec-cart-title .ec-close{ color: var(--body)!important; } .single-pro-content .ec-single-title{ color: var(--body)!important; } .single-pro-content p{ color: var(--body)!important; } .single-pro-content .ec-single-desc{ color: var(--body)!important; } .single-pro-content .ec-single-price span.new-price{ color: var(--body)!important; } .color-black a{ color: var(--body)!important; } h3, .h3,h5{ color: var(--body)!important; } .ec-vendor-dashboard .ec-vendor-dashboard-sort-card h5, .ec-vendor-dashboard .ec-vendor-dashboard-sort-card .h5, .ec-vendor-uploads .ec-vendor-dashboard-sort-card h5, .ec-vendor-uploads .ec-vendor-dashboard-sort-card .h5{ color: var(--font)!important; } table{ color: var(--body)!important; } .ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table thead tr th, .ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table thead tr th{ color: var(--body)!important; } .ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th, .ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td, .ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th, .ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td{ color: var(--body)!important; } .ec-checkout-wrap .ec-check-bill-form label{ color: var(--body)!important; } .ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content .ec-pay-desc{ color: var(--body)!important; } .checkout_page [type=radio]:checked + label{ color: var(--body)!important; } .ec-nav-toolbar{ background-color: var(--background)!important; } .ec-gl-btn .btn{ fill: var(--body)!important; } .ec-gl-btn .btn .svg_img.gl_svg{ color: var(--body); fill: var(--body); background-color: unset; border-color: var(--body); } /* .ec-nav-toolbar { display: none; background-color: #ffffff; } */ /* mobile-view-grid-hide */ @media (max-width: 767px) { .mobile-view-grid-hide{ display: none!important; } .sm-12-width{ width: 100%; } #btn-center-desktop{ margin-right: auto !important; } } .ec-side-cart .ec-menu-title .menu_title{ color: var(--body)!important; } .gridlist { fill: var(--font)!important; } .ec-gl-btn .btn:hover .svg_img.gl_svg{ fill: var(--font)!important; } .ec-gl-btn .btn.active .svg_img.gl_svg { fill: var(--font)!important; } .svg_img.pro_svg{ fill:var(--body)!important; } .noUi-horizontal .noUi-handle{ width:16px!important; height:16px!important; } .noUi-horizontal{ height: 4px!important; } .filter__label:nth-child(1):before{ content:"PKR"!important; } .filter__label:nth-child(3):before{ content:"PKR"!important; } .ec-register-wrapper .ec-register-container .ec-register-form .btn{ width: unset; } .ec-register-wrapper .ec-register-container .ec-register-form .btn{ font-size: 15px!important; } .single-nav-thumb .slick-slide.slick-current.slick-active img{ border-color: var(--body)!important; } .toast-container--fade{ z-index:500 !important; } .ec-vendor-dashboard .color-pink, .ec-vendor-uploads .color-pink{ background-image:unset; background-color: var(--background); } .ec-vendor-dashboard-sort-card > h3{ color: var(--font) !important; } .ec-vendor-dashboard .color-blue, .ec-vendor-uploads .color-blue { background-image:unset; background-color: var(--background); } .ec-vendor-dashboard .color-green, .ec-vendor-uploads .color-green{ background-image:unset; background-color: var(--background); } .ec-vendor-dashboard .color-orange, .ec-vendor-uploads .color-orange{ background-image:unset; background-color: var(--background); } .ec-register-wrapper .ec-register-container .ec-register-form input{ margin-bottom:0px !important; width: 80%; } .ec-register-wrapper .ec-register-container .ec-register-form input{ border:none !important; border-bottom:1px solid !important; } #col-top-50{ margin-top: 70%; } #col-top-30{ margin-top: 30%; } #btn-center-desktop{ margin-right: 30px; margin-bottom: 50px; } .ec-register-wrapper{ max-width:734px; } .ec-register-wrapper .ec-register-container .ec-register-form .ec-register-wrap { padding: 0 0px; } .input-group{ padding-bottom: 15px !important; } #p-rl{ padding: 0 20px 0 10px; } #he-123{ height: 200px; } .ec-product-lsc .ec-product-body .ec-link-btn{ display: -webkit-inline-box; } .ec-product-lsc .ec-product-body .ec-el-price .ec-o-price{ color: var(--body) !important; } .ec-title a{ color: var(--body) !important; } .ec-product-lsc .ec-product-body .ec-description{ color: var(--body) !important; } .ec-product-lsc .ec-product-body .ec-description span { color: var(--body) !important; } .ec-product-lsc .ec-product-image .ec-product-ribbon{ background-color:var(--background) !important; color: var(--font) !important; } .btn-third{ color: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } .btn-third:hover{ color: var(--body)!important; background-color: unset!important; border: 1px solid var(--body)!important; } .ec-offer-section { min-height: 620px; background-size: cover; overflow: hidden; padding: 30px 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; background-image: url("https://sojanya.com/pub/media/wysiwyg/wholesalemenbanner1.jpg"); background-repeat: no-repeat; background-size: cover; background-position: center; } .ec-offer-content { 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; } .ec-offer-content .ec-offer-title { font-size: 60px; color: #3474d4; margin-bottom: 5px; letter-spacing: 2px; font-family: "Montserrat"; text-transform: uppercase; line-height: 1; font-weight: 800; } .ec-offer-content .ec-offer-stitle { font-size: 40px; color: #3474d4; margin-bottom: 13px; letter-spacing: 1.5px; font-family: "Montserrat"; text-transform: uppercase; } .ec-offer-content .btn-primary { width: 140px; margin: 15px auto 0 auto; } .ec-offer-content .ec-offer-img { margin-bottom: 16px; } .ec-offer-content .ec-offer-desc { font-size: 32px; color: #444444; margin-bottom: 16px; letter-spacing: 1.2px; font-weight: 600; line-height: 1.2; } .ec-offer-content .ec-offer-price { font-size: 40px; color: #555; letter-spacing: 1.5px; font-weight: 900; line-height: 1.2; } .ec-fre-spe-section .section-title { padding-bottom: 5px; border-bottom: 1px solid #eeeeee; } .ec-fre-spe-section .section-title .ec-bg-title { font-size: 52px; letter-spacing: 1px; } .ec-fre-spe-section .section-title .ec-title { padding: 0; } .ec-fre-spe-section .section-title .ec-title:after { content: none; } .ec-fre-spe-section .section-title .ec-title:before { content: none; } .ec-fre-spe-section .ec-fs-product { padding: 0 10px; } .ec-fre-spe-section .ec-fre-products { margin: 0 -10px; } .ec-fre-spe-section .ec-spe-products { margin: 0 -10px; } .ec-fre-spe-section .ec-fs-pro-inner { background: #f7f7f7; padding: 15px 35px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; min-height: 476px; } .ec-fre-spe-section .slick-arrow { top: -70px; } .periodDisplay { font-size: 13px; } .ec-fs-pro-inner .ec-fs-pro-image { position: relative; } .ec-fs-pro-inner .ec-fs-pro-image .image img { max-width: 100%; padding-right: 10px; -webkit-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; z-index: 1; } .ec-fs-pro-inner .ec-fs-pro-image .image img.hover-image { position: absolute; z-index: 2; top: 0; left: 0; opacity: 0; } .ec-fs-pro-inner .ec-fs-pro-image a.quickview { position: absolute; z-index: 9; top: 60%; right: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; visibility: hidden; -webkit-transition: all 0.5s ease 0s; transition: all 0.5s ease 0s; width: 40px; height: 40px; left: 0; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; opacity: 0; margin: 0 auto; color: #ffffff; background-color: #ffffff; border: 1px solid #eeeeee; border-radius: 50%; } .ec-fs-pro-inner .ec-fs-pro-image a.quickview:hover { -webkit-box-shadow: 0px 0px 5px 0px #ccc; box-shadow: 0px 0px 5px 0px #ccc; } .ec-fs-pro-inner:hover .ec-fs-pro-image a.quickview { visibility: visible; opacity: 1; top: 44%; } .ec-fs-pro-inner .ec-fs-pro-content { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding-left: 30px; } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-price { font-size: 16px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: left; color: #777777; margin: 10px 0 20px 0; line-height: 1.2; } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-price span.new-price { color: #555; font-weight: 700; font-size: 15px; } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-price span.old-price { font-size: 13px; margin-right: 15px; text-decoration: line-through; color: #777777; margin-top: 2px; } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-pro-desc { font-size: 14px; color: #777777; border-top: 1px solid #eeeeee; padding: 10px 0 0; line-height: 22px; letter-spacing: 0.5px; margin-bottom: 10px; margin-top: 15px; } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-pro-book { margin-bottom: 10px; font-size: 16px; color: var(--body); letter-spacing: 0.5px; font-weight: 600; } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-pro-book span { color: var(--body); } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-pro-btn a { height: 35px; line-height: 35px; padding-left: 10px; padding-right: 10px; font-weight: 400; min-width: 120px; text-transform: uppercase; font-size: 14px; } .ec-fs-pro-inner .ec-fs-pro-content .ec-fs-pro-btn a:not(:last-child) { margin-right: 11px; } .ec-fs-pro-inner .ec-fs-pro-title { margin: 0 0 2px; } .ec-fs-pro-inner .ec-fs-pro-title a { font-family: "Poppins, sans-serif"; font-weight: 400; font-size: 20px; color: #777; letter-spacing: 0.6px; text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; line-height: 34px; } .ec-fs-pro-inner .ec-fs-pro-rating { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-size: 16px; margin-bottom: 2px; } .ec-fs-pro-inner .ec-fs-pro-rating .ec-fs-rating-text { font-size: 16px; color: #777777; } .ec-fs-pro-inner .ec-fs-pro-rating .ec-fs-rating-icon { margin-right: 14px; margin-top: -1px; } .ec-fre-products .slick-arrow.slick-prev { right: 28px; left: auto; } .ec-fre-products .slick-arrow.slick-next { right: 0; left: auto; } .ec-spe-products .slick-arrow.slick-prev { right: 28px; left: auto; } .ec-spe-products .slick-arrow.slick-next { right: 0; left: auto; } .numberDisplay { color: #686868; background-color: #ffffff; font-weight: 500; border-radius: 5px; } .ec-category-section .ec-cat-tab-nav .cat-link.active{ background-color: var(--background); } .ec-category-section .ec-cat-tab-nav .cat-link.active .cat-desc span{ color:var(--font); } .ec-category-section .ec-cat-tab-nav .cat-link.active .cat-desc span + span{ color:var(--font); } .ec-category-section .ec-cat-tab-nav .cat-link .cat-desc span{ color: var(--body); } .ec-category-section .ec-cat-tab-nav .cat-link .cat-desc span + span{ color: var(--body); } .ec-category-section .ec-cat-tab-nav .cat-link:hover{ background-color: var(--background); } .ec-product-lsc { border-color: #c1c1c1; } .ec-product-lsc .ec-product-body .ec-el-price .ec-d-price{ margin-bottom: -3px !important; position: unset !important; left: 0px !important; top: 0px !important; } .mgl-50 { margin-left: 20%; } .mgl-60 { margin-left: 23%; } .mgb-30-s{ margin-bottom: 70px; } .bg-third{ background-image: url(https://cdn.shopify.com/s/files/1/0586/8873/3344/files/900_2_720x.jpg?v=1631664387); background-size: cover; } .rectangle-span:active{ color: white; background-color:rgba(33,43,54,.9) } .active{ color: white; background-color:rgba(33,43,54,.9) } .btn-primary{ color: var(--body)!important; background-color: unset!important; border: 1px solid var(--body)!important; } .btn-primary{ color: var(--font)!important; background-color: var(--background)!important; border-color: var(--background)!important; } .flickity-viewport{ height:560px !important; }
0.111773
0.060724
body { background-color: #F1F1F1; } /* 头部 */ .fixed{ position: fixed; top: 0; left: 0; z-index: 999; } #header { width: 100%; background-color: #F1F1F1; } /* logo */ #header .logo , .welfare , .service-box , .test-box , .condition-box , .examples-box , .contact ,.flow-title ,.transact-box , .details-box , .news{ width: 1200px; margin: 0 auto; } #header .logo { display: flex; padding: 20px 0; } #header .logo > div { width: 33.3333%; } #header .logo > div.logo-lf{ padding-top: 15px; } #header .logo .logo-md { text-align: center; } #header .logo .logo-rt { text-align: right; padding-top: 20px; } #header .logo .logo-rt i{ display: inline-block; width: 30px; height: 30px; background: url(../images/phone.png); } #header .logo .logo-rt>div{ display: inline-block; text-align: left; padding-left: 5px; } /* 导航 */ #header .nav { width: 100%; height: 50px; line-height: 50px; background-color: #98CB00; } #header .nav ul { width: 950px; margin: 0 auto; } #header .nav ul li { float: left; } #header .nav ul li a { display: block; color: #fff; font-size: 16px; padding: 0 17px; } /* 轮播插件样式 */ .slideBox { width: 100%; min-width: 1200px; height: 680px; overflow: hidden; position: relative; } .slideBox .bd { position: relative; height: 100%; z-index: 0; } .slideBox .bd li { zoom: 1; vertical-align: middle; } .slideBox .bd a { width: 100%; height: 680px; display: block; background-position: center 0; } /* 下面是前/后按钮代码,如果不需要删除即可 */ .slideBox .prev, .slideBox .next { position: absolute; left: 3%; top: 50%; margin-top: -25px; display: block; width: 32px; height: 40px; background: url(../images/slider-arrow.png) -110px 5px no-repeat; filter: alpha(opacity=50); opacity: 0.5; } .slideBox .next { left: auto; right: 3%; background-position: 8px 5px; } .slideBox .prev:hover, .slideBox .next:hover { filter: alpha(opacity=100); opacity: 1; } .slideBox .prevStop { display: none; } .slideBox .nextStop { display: none; } /* 轮播详情盒子 */ .banner{position: relative} .banner-box{ width: 100%; height: 170px; background-color: rgba(0,0,0,0.3); position: absolute; bottom: 0; left: 0; } .banner .banner-content{ width: 1200px; height:170px; margin: 0 auto; color: #ffffff; } .banner .messages{ width: 100%; height: 40px; letter-spacing:3px; padding-top: 15px; padding-left: 30px; overflow: hidden; } .banner .messages h3{ line-height: 16px; font-size: 14px; font-weight: bold; float: left; padding-right: 3px; } .banner .messages i{ float:left; width: 32px; height: 32px; margin-right: 3px; background: url(../images/messages.png) no-repeat; } .banner .messages p{ width: 970px; height: 18px; line-height: 18px; color: #A09A9C; font-size: 12px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .banner-list ul li{ float: left; width: 370px; background-color: rgba(0,0,0,0.7); margin-right: 45px; } .banner-list ul li:last-child{ margin-right: 0; } .banner-list ul li a{ color: #fff; } /* 鼠标移入效果 */ .banner-list ul li:hover{ background-color: rgba(152,203,0,0.9); } .banner-list .list-img{ float: left; } .banner-list .list-box{ float: left; width: 200px; margin-left: 20px; margin-top: 20px; } .banner-list .list-box dl dt{ font-weight: bold; letter-spacing:1px; margin-bottom: 15px; } .banner-list .list-box dl dd{ padding-right: 3px; } .banner-list .list-box dl dd span{ float: left; width: 18px; height: 30px; } .welfare{margin-bottom: 50px;} .welfare h1{ font-size: 34px; font-weight: 500; letter-spacing: 3px; text-align: center; margin: 50px 0; } .welfare h1 span{ color: #D12400; } .welfare-box ul li{ float: left; width: 380px; height: 240px; margin-right: 30px; margin-bottom: 30px; background-color: #ffffff; border:1px solid #E6E6E6; text-align: center; } .welfare-box ul li:nth-child(3n){ margin-right: 0; } .welfare-box ul li:hover img{ transform: scale(1.2); -webkit-transform: scale(1.1); transition:All 0.4s ease-in-out; } /* 服务范围 */ .service{ padding-bottom: 50px; background: url(../images/service_bg.jpg) no-repeat; } .service-title{ text-align: center; padding: 70px 0; } .service-title h1{ font-size: 34px; font-weight: 500; letter-spacing:4px; } .service-title h3{ margin-top: 5px; font-size: 18px; font-weight: 500; letter-spacing: 2px; } /* 入户咨询 */ .consult dl{ position: relative; float: left; width: 260px; height: 400px; margin-right: 53.33px; background-color: #ffffff; border: 1px solid #C8C8C8; } .consult dl:last-child{ margin-right: 0; } .consult dl dt{ font-size: 22px; font-weight: bold; padding: 30px 0; margin-bottom: 30px; text-align: center; border-bottom:1px solid #C8C8C8 ; color: #000000; } .consult dl:hover{ border: 1px solid #98CB00; background-color: #98CB00; } .consult dl:hover dt{ background-color: #98CB00; color: #ffffff; } .consult dl:hover dd{ background-color: #98CB00; } .consult dl dd{ padding: 0 30px; font-size: 14px; font-weight: 500; letter-spacing: 1px; line-height: 36px; } .consult dl dd a{ display: block; width: 100px; height: 40px; margin: 0 auto; margin-top: 40px; background-color: #98CB00; color: #ffffff; text-align: center; line-height: 40px; } .consult dl:hover dd a{ background-color: #E9351C; } /* 入户测试 */ .test{ width: 100%; height: 860px; padding-bottom: 50px; background: url(../images/test_bg.jpg) no-repeat; } .test-box{ position: relative; width: 1200px; height: 860px; background: url(../images/test_box_bg.png) no-repeat 125px 65px; } .test-content{ padding-top: 250px; padding-left: 200px; } .test-content i{ float: left; width: 40px; height: 40px; background: url(../images/icon.png) no-repeat; } .test-content i.i_1{ background-position: 0 -147px; } .test-content i.i_2{ background-position: -50px -147px; } .test-content i.i_3{ background-position: 0 -183px; } .test-content i.i_4{ background-position: -49px -183px; } .test-content i.i_5{ background-position: 0 -217px; } .test-content i.i_6{ background-position: -45px -222px; } .test-content .form-item{ padding-bottom: 20px; } .test-content form .form-label{ color: #FFFFFF; line-height: 40px; padding-left: 20px; } .test-content form input , .test-content form select{ border: none; width: 320px; height: 32px; font-size: 14px; line-height: 32px; border-radius: 5px; padding-left: 10px; margin-left: 10px; } .test-box .btn{ position: absolute; right: 110px; top:272px; } /* 入户条件 */ .test-title{ text-align: center; padding: 55px 0; } .test-title h1{ font-size: 38px; font-weight: 500; letter-spacing: 4px; } .test-title h3{ font-size: 18px; font-weight: 400; letter-spacing: 2px; padding-top: 10px; } .condition{ padding-bottom: 60px; background: url(../images/condition_bg.jpg); } .condition-list{ width: 1200px; height: 534px; background: url(../images/condition_list_bg.png) no-repeat; } .condition-list dl{ position: relative; margin-top: 150px; float: left; width: 230px; height: 380px; margin-right: 12.5px; padding-top: 20px; } .condition-list dl:last-child{ margin-right: 0; } .condition-list dl dt{ font-size: 18px; text-align: center; padding-bottom: 10px; } .condition-list dl dd{ padding-left: 38px; color: #000; font-weight: 500; line-height: 28px; } .condition-list dl:hover{ background-color: #98CB00; } .condition-list dl dd.line-feel{ padding-left: 56px; } .condition-list dl dd.button a{ position: absolute; bottom: 30px; left: 50.5px; display: block; width: 135px; height: 40px; line-height: 40px; text-align: center; font-size: 14px; color: #ffffff; background-color: #98CB00; } .condition-list dl:hover dd.button a{ background-color: #EF4700; } /* 预约入户 */ .order{ background: url(../images/order_bg.jpg) no-repeat; } .order-box{ width: 760px; height: 673px; margin: 0 auto; padding-top: 30px; background: url(../images/order_box_bg.png)no-repeat; /* ------- */ color: #ffffff; } .order-title h1{ text-align: center; font-size: 26px; color: #ffffff; padding-bottom: 30px; } .order-details h3{ padding-left:105px; font-size: 16px; line-height: 28px; } /* 表单 */ .order-box form{ padding-left: 105px; padding-top: 50px; } .order-box .form-list{ padding-bottom: 15px; } .order-box .form-list span{ float: left; width: 100px; line-height: 40px; margin-right: 25px; } .order-box .form-list select{ width: 170px; height: 40px; padding-left: 10px; } .order-box .form-input input{ height: 40px; width: 355px; padding-left: 10px; } .order-box .form-radio{ line-height: 40px; } .order-box form button{ width: 160px; height: 45px; line-height: 45px; text-align: center; border: none; font-size: 18px; font-weight: bold; letter-spacing: 3px; background-color: #98CB00; color: #ffffff; margin-left: 200px; margin-top: 40px; } /*右侧固定栏 入户咨询*/ .f-consult{ position: fixed; right: 0; top: 15%; z-index: 999; width: 150px; height: 483px; background: url(../images/f_consult_bg.png) no-repeat; } .f-consult ul li{ text-align: center; font-size: 14px; font-weight: 600; } .f-consult ul li.f-consult-title a{ margin-top: 0; line-height: 75px; font-size: 18px; } .f-consult ul li a{ display: block; color: #ffffff; line-height: 34px; margin-top: 11.3px; } /* 弹出框 */ .popup{ display: none; width: 30%; height: 30%; position: fixed; z-index: 99; left: 35%; top: 35%; background-color: rgba(255,255,255,0.9); text-align: center; } .popup .close{ cursor: pointer ; font-size: 24px; position: absolute; right: 10px; top: 6px; } .popup-box{ display: table; width: 100%; height: 100%; } .popup-box p{ display: table-cell; vertical-align: middle; font-size: 18px; } /* ** **案** **例** **展** **示** ** */ .examples{ margin-bottom: 50px; } .banner img{ width: 100%; } .loc ul li{ float: left; height: 60px; line-height: 60px; font-size: 18px; color: #666; } .loc ul li + li:before{ content: ""; position: relative; top:-6px; display: inline-block; width: 10px; height: 1px; background-color: #666666; margin: 0 10px; } .examples-list{ margin-bottom: 30px; } .examples-list>h3{ background-color: #98CB00; height: 60px; line-height: 60px; text-align: center; font-size: 24px; color: #ffffff; } .examples-list-box{ background-color: #ffffff; border-radius: 20px; padding: 15px 100px 30px 45px; } .examples-list-box li{ font-size: 16px; line-height: 34px; } .examples-list-box li i{ float: left; width: 25px; height: 25px; margin-top: 6px; margin-right: 7px; background: url(../images/icon.png) no-repeat; } .examples-list-box li i.i_2{ background-position: -38px 0; } .examples-list-box li i.i_3{ background-position: -75px 0; } .examples-list-box li i.i_4{ background-position:0 -38px ; } .examples-list-box li i.i_5{ background-position:-38px -38px ; } .examples-list-box li i.i_6{ background-position:-75px -38px ; } .examples-list-box li span.colour{ color: #98CB00; } .examples-list-box li span.desc{ font-size: 14px; } .examples-list-box .list-img{ margin-top: 10px; } /* 分页 */ .pag{ width: 1200px; margin: 0 auto; text-align: center; } .pag a{ display: inline-block; background-color: #E6E6E6; padding: 8px 15px; } .pag span{ display: inline-block; height: 37px; line-height: 37px; } .pag span.pure-button{ font-family: inherit; padding: 0 15px; color: #ffffff; background-color: #98CB00; } /* ** **联** **系** **我** **们** ** */ .contact-title{ margin-top: 720px; text-align: center; } .contact-title span{ font-size: 18px; } .contact-title h3{ font-size: 28px; margin-bottom: 10px; } .contact-title b{ padding-right: 80px; border-top: 4px solid #98CB00; } /*盒子内容*/ .contact-content{ margin-top: 40px; margin-bottom: 50px; } .contact-way ul{ padding-left: 150px; padding-top: 40px; } .contact-way li{ display: table; width: 420px; height: 90px; border-bottom: 2px dotted #C8C8C8; } .contact-way i{ margin-top: 32px; float: left; width: 25px; height: 26px; background: url(../images/icon.png) no-repeat 0 -75px; } .contact-way i.i_2{ background-position: -37px -75px; } .contact-way i.i_3{ background-position: -75px -75px; } .contact-way i.i_4{ background-position: 0 -112px; } .contact-way li .way-box{ width: 375px; display: table-cell; vertical-align: middle; } .contact-way li p{ font-size: 16px; line-height: 32px; } .contact-img{ float: right; margin-right: 150px; } /* ** **入** **户** **流** **程** ** */ .flow h3{ text-align: center; font-size: 28px; padding-top: 30px; padding-bottom: 20px; } .flow ul{ padding-bottom: 30px; } .flow ul li{ float: left; width: 25%; } .flow ul li i{ float: left; width: 51px; height: 50px; background: url(../images/icon.png) no-repeat; } .flow ul li i.i_1{ background-position: 3px -259px; } .flow ul li i.i_2{ background-position: -50px -259px; } .flow ul li i.i_3{ background-position: 13px -314px; } .flow ul li i.i_4{ background-position: -49px -314px; } .flow ul li span.colour{ font-size: 34px; color: #e9351c; padding-left: 7px; } .flow ul li span.desc { font-size: 20px; padding-left: 7px; color: #666666; } .flow-transact{ background-color: #FFFFFF; padding-bottom: 60px; } .transact-title h3{ font-size: 38px; font-weight: bold; padding-top: 50px; } .transact-title span{ margin-top: 12px; width: 225px; height: 1px; background-color: #999999; } .transact-title p{ font-size: 20px; float: left; width: 750px; text-align: center; } .transact-img{ margin-top: 60px; } /*******************/ .flow-details{ width: 100%; height: 580px; background: url(../images/flow_img_2.jpg) no-repeat center center; } .details-title{ width: 650px; margin: 0 auto; padding-top: 95px; color: #FFFFFF; text-align: center; } .details-title>div{ padding: 0 67px; } .details-title>div>span{ width: 72px; height: 2px; background-color: #FFFFFF; margin-top: 27px; } .details-title>div>h2{ font-size: 40px; padding: 0 6px; } .details-title>h3{ background-color: #98CB00; border-radius: 50px; padding: 10px 0; letter-spacing: 5px; margin-top: 30px; } /**********/ .details-content{ margin-top: 65px; } .details-content ul li{ float: left; width: 190px; height: 250px; background-color: #FFFFFF; text-align: center; margin-right: 10px; } .details-content ul li:last-child{ margin-right: 0; } .details-content ul li:hover{ color: #FFFFFF; background-color: #98CB00; } .details-content ul li h1{ font-size: 24px; padding: 25px 0; } .details-content ul li>div{ padding: 0 10px; } .details-content ul li>div img{ width: 170px; height: 100px; } .details-content ul li span{ display: block; padding: 10px 5px; font-size: 14px; } /* ** **公** **告** ** */ .news{ background-color: #FFFFFF; padding: 30px 20px 80px; margin: 30px auto; } .news-title{ text-align: center; } .news-title h3{ font-size: 24px; } .news-title p{ padding: 15px 0; border-bottom: 1px solid #dddddd; } .news-title p span{ color: #808080; padding-right: 10px; } /*******/ .news-box h3{ text-align: center; font-size: 18px; padding: 30px 0; color: rgb(6, 76, 140); } .news-box p{ margin-bottom: 10px; text-indent: 2em; line-height: 24px; } /* 底部 */ #footer{ background-color: #98CB00; height: 200px; width: 100%; } .footer-box{ width: 1200px; margin: 0 auto; padding-top:25px; } .footer-img{ float: left; } .copyright{ float:left; margin-left: 340px; margin-top: 30px; } .copyright ul li{ font-size: 14px; line-height: 24px; color: #ffffff; font-weight: 500; } /* 清除浮动 */ ul:after,div:after{ content: ""; display: block; clear: both; }
public/home/images/css/index.css
body { background-color: #F1F1F1; } /* 头部 */ .fixed{ position: fixed; top: 0; left: 0; z-index: 999; } #header { width: 100%; background-color: #F1F1F1; } /* logo */ #header .logo , .welfare , .service-box , .test-box , .condition-box , .examples-box , .contact ,.flow-title ,.transact-box , .details-box , .news{ width: 1200px; margin: 0 auto; } #header .logo { display: flex; padding: 20px 0; } #header .logo > div { width: 33.3333%; } #header .logo > div.logo-lf{ padding-top: 15px; } #header .logo .logo-md { text-align: center; } #header .logo .logo-rt { text-align: right; padding-top: 20px; } #header .logo .logo-rt i{ display: inline-block; width: 30px; height: 30px; background: url(../images/phone.png); } #header .logo .logo-rt>div{ display: inline-block; text-align: left; padding-left: 5px; } /* 导航 */ #header .nav { width: 100%; height: 50px; line-height: 50px; background-color: #98CB00; } #header .nav ul { width: 950px; margin: 0 auto; } #header .nav ul li { float: left; } #header .nav ul li a { display: block; color: #fff; font-size: 16px; padding: 0 17px; } /* 轮播插件样式 */ .slideBox { width: 100%; min-width: 1200px; height: 680px; overflow: hidden; position: relative; } .slideBox .bd { position: relative; height: 100%; z-index: 0; } .slideBox .bd li { zoom: 1; vertical-align: middle; } .slideBox .bd a { width: 100%; height: 680px; display: block; background-position: center 0; } /* 下面是前/后按钮代码,如果不需要删除即可 */ .slideBox .prev, .slideBox .next { position: absolute; left: 3%; top: 50%; margin-top: -25px; display: block; width: 32px; height: 40px; background: url(../images/slider-arrow.png) -110px 5px no-repeat; filter: alpha(opacity=50); opacity: 0.5; } .slideBox .next { left: auto; right: 3%; background-position: 8px 5px; } .slideBox .prev:hover, .slideBox .next:hover { filter: alpha(opacity=100); opacity: 1; } .slideBox .prevStop { display: none; } .slideBox .nextStop { display: none; } /* 轮播详情盒子 */ .banner{position: relative} .banner-box{ width: 100%; height: 170px; background-color: rgba(0,0,0,0.3); position: absolute; bottom: 0; left: 0; } .banner .banner-content{ width: 1200px; height:170px; margin: 0 auto; color: #ffffff; } .banner .messages{ width: 100%; height: 40px; letter-spacing:3px; padding-top: 15px; padding-left: 30px; overflow: hidden; } .banner .messages h3{ line-height: 16px; font-size: 14px; font-weight: bold; float: left; padding-right: 3px; } .banner .messages i{ float:left; width: 32px; height: 32px; margin-right: 3px; background: url(../images/messages.png) no-repeat; } .banner .messages p{ width: 970px; height: 18px; line-height: 18px; color: #A09A9C; font-size: 12px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .banner-list ul li{ float: left; width: 370px; background-color: rgba(0,0,0,0.7); margin-right: 45px; } .banner-list ul li:last-child{ margin-right: 0; } .banner-list ul li a{ color: #fff; } /* 鼠标移入效果 */ .banner-list ul li:hover{ background-color: rgba(152,203,0,0.9); } .banner-list .list-img{ float: left; } .banner-list .list-box{ float: left; width: 200px; margin-left: 20px; margin-top: 20px; } .banner-list .list-box dl dt{ font-weight: bold; letter-spacing:1px; margin-bottom: 15px; } .banner-list .list-box dl dd{ padding-right: 3px; } .banner-list .list-box dl dd span{ float: left; width: 18px; height: 30px; } .welfare{margin-bottom: 50px;} .welfare h1{ font-size: 34px; font-weight: 500; letter-spacing: 3px; text-align: center; margin: 50px 0; } .welfare h1 span{ color: #D12400; } .welfare-box ul li{ float: left; width: 380px; height: 240px; margin-right: 30px; margin-bottom: 30px; background-color: #ffffff; border:1px solid #E6E6E6; text-align: center; } .welfare-box ul li:nth-child(3n){ margin-right: 0; } .welfare-box ul li:hover img{ transform: scale(1.2); -webkit-transform: scale(1.1); transition:All 0.4s ease-in-out; } /* 服务范围 */ .service{ padding-bottom: 50px; background: url(../images/service_bg.jpg) no-repeat; } .service-title{ text-align: center; padding: 70px 0; } .service-title h1{ font-size: 34px; font-weight: 500; letter-spacing:4px; } .service-title h3{ margin-top: 5px; font-size: 18px; font-weight: 500; letter-spacing: 2px; } /* 入户咨询 */ .consult dl{ position: relative; float: left; width: 260px; height: 400px; margin-right: 53.33px; background-color: #ffffff; border: 1px solid #C8C8C8; } .consult dl:last-child{ margin-right: 0; } .consult dl dt{ font-size: 22px; font-weight: bold; padding: 30px 0; margin-bottom: 30px; text-align: center; border-bottom:1px solid #C8C8C8 ; color: #000000; } .consult dl:hover{ border: 1px solid #98CB00; background-color: #98CB00; } .consult dl:hover dt{ background-color: #98CB00; color: #ffffff; } .consult dl:hover dd{ background-color: #98CB00; } .consult dl dd{ padding: 0 30px; font-size: 14px; font-weight: 500; letter-spacing: 1px; line-height: 36px; } .consult dl dd a{ display: block; width: 100px; height: 40px; margin: 0 auto; margin-top: 40px; background-color: #98CB00; color: #ffffff; text-align: center; line-height: 40px; } .consult dl:hover dd a{ background-color: #E9351C; } /* 入户测试 */ .test{ width: 100%; height: 860px; padding-bottom: 50px; background: url(../images/test_bg.jpg) no-repeat; } .test-box{ position: relative; width: 1200px; height: 860px; background: url(../images/test_box_bg.png) no-repeat 125px 65px; } .test-content{ padding-top: 250px; padding-left: 200px; } .test-content i{ float: left; width: 40px; height: 40px; background: url(../images/icon.png) no-repeat; } .test-content i.i_1{ background-position: 0 -147px; } .test-content i.i_2{ background-position: -50px -147px; } .test-content i.i_3{ background-position: 0 -183px; } .test-content i.i_4{ background-position: -49px -183px; } .test-content i.i_5{ background-position: 0 -217px; } .test-content i.i_6{ background-position: -45px -222px; } .test-content .form-item{ padding-bottom: 20px; } .test-content form .form-label{ color: #FFFFFF; line-height: 40px; padding-left: 20px; } .test-content form input , .test-content form select{ border: none; width: 320px; height: 32px; font-size: 14px; line-height: 32px; border-radius: 5px; padding-left: 10px; margin-left: 10px; } .test-box .btn{ position: absolute; right: 110px; top:272px; } /* 入户条件 */ .test-title{ text-align: center; padding: 55px 0; } .test-title h1{ font-size: 38px; font-weight: 500; letter-spacing: 4px; } .test-title h3{ font-size: 18px; font-weight: 400; letter-spacing: 2px; padding-top: 10px; } .condition{ padding-bottom: 60px; background: url(../images/condition_bg.jpg); } .condition-list{ width: 1200px; height: 534px; background: url(../images/condition_list_bg.png) no-repeat; } .condition-list dl{ position: relative; margin-top: 150px; float: left; width: 230px; height: 380px; margin-right: 12.5px; padding-top: 20px; } .condition-list dl:last-child{ margin-right: 0; } .condition-list dl dt{ font-size: 18px; text-align: center; padding-bottom: 10px; } .condition-list dl dd{ padding-left: 38px; color: #000; font-weight: 500; line-height: 28px; } .condition-list dl:hover{ background-color: #98CB00; } .condition-list dl dd.line-feel{ padding-left: 56px; } .condition-list dl dd.button a{ position: absolute; bottom: 30px; left: 50.5px; display: block; width: 135px; height: 40px; line-height: 40px; text-align: center; font-size: 14px; color: #ffffff; background-color: #98CB00; } .condition-list dl:hover dd.button a{ background-color: #EF4700; } /* 预约入户 */ .order{ background: url(../images/order_bg.jpg) no-repeat; } .order-box{ width: 760px; height: 673px; margin: 0 auto; padding-top: 30px; background: url(../images/order_box_bg.png)no-repeat; /* ------- */ color: #ffffff; } .order-title h1{ text-align: center; font-size: 26px; color: #ffffff; padding-bottom: 30px; } .order-details h3{ padding-left:105px; font-size: 16px; line-height: 28px; } /* 表单 */ .order-box form{ padding-left: 105px; padding-top: 50px; } .order-box .form-list{ padding-bottom: 15px; } .order-box .form-list span{ float: left; width: 100px; line-height: 40px; margin-right: 25px; } .order-box .form-list select{ width: 170px; height: 40px; padding-left: 10px; } .order-box .form-input input{ height: 40px; width: 355px; padding-left: 10px; } .order-box .form-radio{ line-height: 40px; } .order-box form button{ width: 160px; height: 45px; line-height: 45px; text-align: center; border: none; font-size: 18px; font-weight: bold; letter-spacing: 3px; background-color: #98CB00; color: #ffffff; margin-left: 200px; margin-top: 40px; } /*右侧固定栏 入户咨询*/ .f-consult{ position: fixed; right: 0; top: 15%; z-index: 999; width: 150px; height: 483px; background: url(../images/f_consult_bg.png) no-repeat; } .f-consult ul li{ text-align: center; font-size: 14px; font-weight: 600; } .f-consult ul li.f-consult-title a{ margin-top: 0; line-height: 75px; font-size: 18px; } .f-consult ul li a{ display: block; color: #ffffff; line-height: 34px; margin-top: 11.3px; } /* 弹出框 */ .popup{ display: none; width: 30%; height: 30%; position: fixed; z-index: 99; left: 35%; top: 35%; background-color: rgba(255,255,255,0.9); text-align: center; } .popup .close{ cursor: pointer ; font-size: 24px; position: absolute; right: 10px; top: 6px; } .popup-box{ display: table; width: 100%; height: 100%; } .popup-box p{ display: table-cell; vertical-align: middle; font-size: 18px; } /* ** **案** **例** **展** **示** ** */ .examples{ margin-bottom: 50px; } .banner img{ width: 100%; } .loc ul li{ float: left; height: 60px; line-height: 60px; font-size: 18px; color: #666; } .loc ul li + li:before{ content: ""; position: relative; top:-6px; display: inline-block; width: 10px; height: 1px; background-color: #666666; margin: 0 10px; } .examples-list{ margin-bottom: 30px; } .examples-list>h3{ background-color: #98CB00; height: 60px; line-height: 60px; text-align: center; font-size: 24px; color: #ffffff; } .examples-list-box{ background-color: #ffffff; border-radius: 20px; padding: 15px 100px 30px 45px; } .examples-list-box li{ font-size: 16px; line-height: 34px; } .examples-list-box li i{ float: left; width: 25px; height: 25px; margin-top: 6px; margin-right: 7px; background: url(../images/icon.png) no-repeat; } .examples-list-box li i.i_2{ background-position: -38px 0; } .examples-list-box li i.i_3{ background-position: -75px 0; } .examples-list-box li i.i_4{ background-position:0 -38px ; } .examples-list-box li i.i_5{ background-position:-38px -38px ; } .examples-list-box li i.i_6{ background-position:-75px -38px ; } .examples-list-box li span.colour{ color: #98CB00; } .examples-list-box li span.desc{ font-size: 14px; } .examples-list-box .list-img{ margin-top: 10px; } /* 分页 */ .pag{ width: 1200px; margin: 0 auto; text-align: center; } .pag a{ display: inline-block; background-color: #E6E6E6; padding: 8px 15px; } .pag span{ display: inline-block; height: 37px; line-height: 37px; } .pag span.pure-button{ font-family: inherit; padding: 0 15px; color: #ffffff; background-color: #98CB00; } /* ** **联** **系** **我** **们** ** */ .contact-title{ margin-top: 720px; text-align: center; } .contact-title span{ font-size: 18px; } .contact-title h3{ font-size: 28px; margin-bottom: 10px; } .contact-title b{ padding-right: 80px; border-top: 4px solid #98CB00; } /*盒子内容*/ .contact-content{ margin-top: 40px; margin-bottom: 50px; } .contact-way ul{ padding-left: 150px; padding-top: 40px; } .contact-way li{ display: table; width: 420px; height: 90px; border-bottom: 2px dotted #C8C8C8; } .contact-way i{ margin-top: 32px; float: left; width: 25px; height: 26px; background: url(../images/icon.png) no-repeat 0 -75px; } .contact-way i.i_2{ background-position: -37px -75px; } .contact-way i.i_3{ background-position: -75px -75px; } .contact-way i.i_4{ background-position: 0 -112px; } .contact-way li .way-box{ width: 375px; display: table-cell; vertical-align: middle; } .contact-way li p{ font-size: 16px; line-height: 32px; } .contact-img{ float: right; margin-right: 150px; } /* ** **入** **户** **流** **程** ** */ .flow h3{ text-align: center; font-size: 28px; padding-top: 30px; padding-bottom: 20px; } .flow ul{ padding-bottom: 30px; } .flow ul li{ float: left; width: 25%; } .flow ul li i{ float: left; width: 51px; height: 50px; background: url(../images/icon.png) no-repeat; } .flow ul li i.i_1{ background-position: 3px -259px; } .flow ul li i.i_2{ background-position: -50px -259px; } .flow ul li i.i_3{ background-position: 13px -314px; } .flow ul li i.i_4{ background-position: -49px -314px; } .flow ul li span.colour{ font-size: 34px; color: #e9351c; padding-left: 7px; } .flow ul li span.desc { font-size: 20px; padding-left: 7px; color: #666666; } .flow-transact{ background-color: #FFFFFF; padding-bottom: 60px; } .transact-title h3{ font-size: 38px; font-weight: bold; padding-top: 50px; } .transact-title span{ margin-top: 12px; width: 225px; height: 1px; background-color: #999999; } .transact-title p{ font-size: 20px; float: left; width: 750px; text-align: center; } .transact-img{ margin-top: 60px; } /*******************/ .flow-details{ width: 100%; height: 580px; background: url(../images/flow_img_2.jpg) no-repeat center center; } .details-title{ width: 650px; margin: 0 auto; padding-top: 95px; color: #FFFFFF; text-align: center; } .details-title>div{ padding: 0 67px; } .details-title>div>span{ width: 72px; height: 2px; background-color: #FFFFFF; margin-top: 27px; } .details-title>div>h2{ font-size: 40px; padding: 0 6px; } .details-title>h3{ background-color: #98CB00; border-radius: 50px; padding: 10px 0; letter-spacing: 5px; margin-top: 30px; } /**********/ .details-content{ margin-top: 65px; } .details-content ul li{ float: left; width: 190px; height: 250px; background-color: #FFFFFF; text-align: center; margin-right: 10px; } .details-content ul li:last-child{ margin-right: 0; } .details-content ul li:hover{ color: #FFFFFF; background-color: #98CB00; } .details-content ul li h1{ font-size: 24px; padding: 25px 0; } .details-content ul li>div{ padding: 0 10px; } .details-content ul li>div img{ width: 170px; height: 100px; } .details-content ul li span{ display: block; padding: 10px 5px; font-size: 14px; } /* ** **公** **告** ** */ .news{ background-color: #FFFFFF; padding: 30px 20px 80px; margin: 30px auto; } .news-title{ text-align: center; } .news-title h3{ font-size: 24px; } .news-title p{ padding: 15px 0; border-bottom: 1px solid #dddddd; } .news-title p span{ color: #808080; padding-right: 10px; } /*******/ .news-box h3{ text-align: center; font-size: 18px; padding: 30px 0; color: rgb(6, 76, 140); } .news-box p{ margin-bottom: 10px; text-indent: 2em; line-height: 24px; } /* 底部 */ #footer{ background-color: #98CB00; height: 200px; width: 100%; } .footer-box{ width: 1200px; margin: 0 auto; padding-top:25px; } .footer-img{ float: left; } .copyright{ float:left; margin-left: 340px; margin-top: 30px; } .copyright ul li{ font-size: 14px; line-height: 24px; color: #ffffff; font-weight: 500; } /* 清除浮动 */ ul:after,div:after{ content: ""; display: block; clear: both; }
0.220426
0.075721
body{ height: 100%; margin-top: 50px; margin-right: 0; margin-left: 0; margin-bottom: 0; background-color: #f2f2f2; } /*STYLES FOR FONTS*/ body{ font-family: "Myriad Set Pro","Helvetica Neue","Helvetica","Arial",sans-serif; } nav ul{ font-family: "Myriad Set Pro","Helvetica Neue","Helvetica","Arial",sans-serif; text-transform: uppercase; } /*STYLES FOR CONTENT*/ /*-----FOR THE HEADER-----*/ .backgroundHeader { background-image: url("../images/BG1.jpg"); background-size: cover; background-repeat: no-repeat; background-attachment: fixed; height: 100vh; width: 100%; } img.head{ margin: 13% 25% 0% 25%; width: 50%; } img.arrow { width: 20px; margin: 9% 40% 0 50%; transition: all .2s ease-in-out; } img.arrow:hover { transform: scale(1.5,1.5); cursor: pointer; } /*-----FOR THE MAIN CONTENT-----*/ .sect{ height: 50%; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; padding-top: 100px; padding-bottom: 100px; } #HomeSection h1{ text-align: center; vertical-align: middle; padding-top: 50px; padding-bottom: 50px; } #AboutSection{ height:100%; background-color: #f2f2f2; color:#A8FFF2; background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed; } #AboutSection h1{ margin-top: 0; padding-top: 5%; text-align: center; color: #000000; } #AboutSection .subtitleAbout p{ text-align: center; } #AboutSection h1:hover{ color: white; text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue; } .about{ float: left; width:50%; background-color: #f2f2f2; } .about img{ border-radius: 50%; max-width: 35%; width: auto; height: auto; padding: 0 32.5% 0 32.5%; margin-bottom: 3%; } .about h1{ text-align: center; font-size: 20px; color: #000000; } .about figcaption{ padding: 10px 10px 10px 10px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); height: 120px; } .about p{ padding-top: 10px; text-align: center; font-size: 15px; color: #000000; } .image_aboutUs img{ transition: all .2s ease-in-out; } .image_aboutUs:hover{ transform: scale(1.2,1.2); } /*-----FOR THE LESSONS-----*/ .PrelimSectOne{ background-image: url("../images/sectBG(1).jpg"); } .PrelimSectTwo{ background-image: url("../images/sectBG(2).jpg"); } .PrelimSectThree{ background-image: url("../images/sectBG(3).jpg"); } .PrelimSectFour{ background-image: url("../images/sectBG(4).jpg"); } .sect h1{ font-size: 50px; font-family: "Trebuchet MS", Helvetica, sans-serif; color: #ffffff; text-align: center; } #TopicContent1, #TopicContent2, #TopicContent3, #TopicContent4{ padding: 3% 6% 3% 6%; } .tableTitle{ text-align: center; background-color: #000000; color: #ffffff; } .globeImg{ float: right; } .imgHover a{ display: none; } .imgHover a:hover{ display: block; } /*STYLES FOR THE TABLE */ table { font-family: arial, sans-serif; border-collapse: collapse; width: 90%; box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.3), 0 10px 30px 0 rgba(0, 0, 0, 0.20); } td, th { border: 1px solid #dddddd; text-align: center; padding: 8px; } tr:first-child { background-color: #669aa0; text-transform: uppercase; } /*STYLES FOR THE DROPDOWN DETAILS */ summary { background-color: #193a5b; color: #ffffff; text-align: center; font-size: 25px; height: 30px; margin-left: 200px; margin-right: 200px; margin-bottom: 8px; box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.3), 0 10px 30px 0 rgba(0, 0, 0, 0.20); } summary:hover{ background-color: #4fad73; color: #ffffff; cursor: pointer; } .Informational:hover{ background-color: #72b4db; color: #ffffff; cursor: pointer; } .Success:hover{ background-color: #72db7e; color: #ffffff; cursor: pointer; } .Redirection:hover{ background-color: #d972db; color: #ffffff; cursor: pointer; } .Error:hover{ background-color: #db7272; color: #ffffff; cursor: pointer; } .Server:hover{ background-color: #dbd072; color: #ffffff; cursor: pointer; } dt.standardMethods, dd.methodTypes, .generalHeaderFields, dd.requestHeaderFields, dd.responseHeaderFields, dd.entityHeaderFields{ font-size: 15px; line-height: 18px; margin-left: 250px; margin-right: 250px; } .status p{ font-size: 15px; line-height: 18px; margin-left: 250px; margin-right: 250px; } .button { position: relative; } .button figure { display: none; position: absolute; top: 2em; left: 1em; padding: 0; margin: 0; background: black; border-radius: 1em; } .button:focus figure, .button:hover figure { display: block; } footer{ background-color: #000000; clear: both; margin-top: -10px; margin-bottom: -16px; } footer img{ height: 40px; margin: 0 30% 0 45%; } footer p{ color: #ffffff; text-align: center; margin-top: -5px; }
SampleMidterms/css/style.css
body{ height: 100%; margin-top: 50px; margin-right: 0; margin-left: 0; margin-bottom: 0; background-color: #f2f2f2; } /*STYLES FOR FONTS*/ body{ font-family: "Myriad Set Pro","Helvetica Neue","Helvetica","Arial",sans-serif; } nav ul{ font-family: "Myriad Set Pro","Helvetica Neue","Helvetica","Arial",sans-serif; text-transform: uppercase; } /*STYLES FOR CONTENT*/ /*-----FOR THE HEADER-----*/ .backgroundHeader { background-image: url("../images/BG1.jpg"); background-size: cover; background-repeat: no-repeat; background-attachment: fixed; height: 100vh; width: 100%; } img.head{ margin: 13% 25% 0% 25%; width: 50%; } img.arrow { width: 20px; margin: 9% 40% 0 50%; transition: all .2s ease-in-out; } img.arrow:hover { transform: scale(1.5,1.5); cursor: pointer; } /*-----FOR THE MAIN CONTENT-----*/ .sect{ height: 50%; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; padding-top: 100px; padding-bottom: 100px; } #HomeSection h1{ text-align: center; vertical-align: middle; padding-top: 50px; padding-bottom: 50px; } #AboutSection{ height:100%; background-color: #f2f2f2; color:#A8FFF2; background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed; } #AboutSection h1{ margin-top: 0; padding-top: 5%; text-align: center; color: #000000; } #AboutSection .subtitleAbout p{ text-align: center; } #AboutSection h1:hover{ color: white; text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue; } .about{ float: left; width:50%; background-color: #f2f2f2; } .about img{ border-radius: 50%; max-width: 35%; width: auto; height: auto; padding: 0 32.5% 0 32.5%; margin-bottom: 3%; } .about h1{ text-align: center; font-size: 20px; color: #000000; } .about figcaption{ padding: 10px 10px 10px 10px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); height: 120px; } .about p{ padding-top: 10px; text-align: center; font-size: 15px; color: #000000; } .image_aboutUs img{ transition: all .2s ease-in-out; } .image_aboutUs:hover{ transform: scale(1.2,1.2); } /*-----FOR THE LESSONS-----*/ .PrelimSectOne{ background-image: url("../images/sectBG(1).jpg"); } .PrelimSectTwo{ background-image: url("../images/sectBG(2).jpg"); } .PrelimSectThree{ background-image: url("../images/sectBG(3).jpg"); } .PrelimSectFour{ background-image: url("../images/sectBG(4).jpg"); } .sect h1{ font-size: 50px; font-family: "Trebuchet MS", Helvetica, sans-serif; color: #ffffff; text-align: center; } #TopicContent1, #TopicContent2, #TopicContent3, #TopicContent4{ padding: 3% 6% 3% 6%; } .tableTitle{ text-align: center; background-color: #000000; color: #ffffff; } .globeImg{ float: right; } .imgHover a{ display: none; } .imgHover a:hover{ display: block; } /*STYLES FOR THE TABLE */ table { font-family: arial, sans-serif; border-collapse: collapse; width: 90%; box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.3), 0 10px 30px 0 rgba(0, 0, 0, 0.20); } td, th { border: 1px solid #dddddd; text-align: center; padding: 8px; } tr:first-child { background-color: #669aa0; text-transform: uppercase; } /*STYLES FOR THE DROPDOWN DETAILS */ summary { background-color: #193a5b; color: #ffffff; text-align: center; font-size: 25px; height: 30px; margin-left: 200px; margin-right: 200px; margin-bottom: 8px; box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.3), 0 10px 30px 0 rgba(0, 0, 0, 0.20); } summary:hover{ background-color: #4fad73; color: #ffffff; cursor: pointer; } .Informational:hover{ background-color: #72b4db; color: #ffffff; cursor: pointer; } .Success:hover{ background-color: #72db7e; color: #ffffff; cursor: pointer; } .Redirection:hover{ background-color: #d972db; color: #ffffff; cursor: pointer; } .Error:hover{ background-color: #db7272; color: #ffffff; cursor: pointer; } .Server:hover{ background-color: #dbd072; color: #ffffff; cursor: pointer; } dt.standardMethods, dd.methodTypes, .generalHeaderFields, dd.requestHeaderFields, dd.responseHeaderFields, dd.entityHeaderFields{ font-size: 15px; line-height: 18px; margin-left: 250px; margin-right: 250px; } .status p{ font-size: 15px; line-height: 18px; margin-left: 250px; margin-right: 250px; } .button { position: relative; } .button figure { display: none; position: absolute; top: 2em; left: 1em; padding: 0; margin: 0; background: black; border-radius: 1em; } .button:focus figure, .button:hover figure { display: block; } footer{ background-color: #000000; clear: both; margin-top: -10px; margin-bottom: -16px; } footer img{ height: 40px; margin: 0 30% 0 45%; } footer p{ color: #ffffff; text-align: center; margin-top: -5px; }
0.332202
0.067485
body{ padding: 0; margin:0; width: 100vw; height:100vh; position: relative; overflow: hidden; background: #E2F6FE; } img{ height: 100%; width: 100%; } /* Icons */ .icons-container{ position: absolute; height: 20%; width: 10%; top: 0; right: 3%; display: flex; flex-direction: row; align-items: center; justify-content: space-around; } .icons-container img{ height: 30%; width: 30%; } .icons-container a img { width: 50%; margin: 30px; } /* Feature matriochka */ .matriochka-container { position: absolute; top:0; left:0; width: 100vw; height: 100vh; background-color: rgba(0,0,0, 0.7); z-index: 10; } .matriochka { position: absolute; } .hidden{ opacity: 0; pointer-events: none; } .matriochka-1 { width: 20%; height: 20%; left: 5vw; top: 20vh; z-index: 60; cursor: pointer; } .matriochka-2 { width: 90%; height: 90%; left: 100vw; top: 100vh; z-index: 50; animation-name: popping-matriochka-p1; animation-duration: 1.5s; animation-fill-mode: forwards; animation-timing-function: ease-in-out; } .matriochka-3 { width: 90%; height: 90%; left: 1vw; top: 1.5vh; z-index: 40; animation-name: popping-matriochka-p2; animation-duration: 1.5s; animation-delay: 1.5s; animation-fill-mode: forwards; animation-timing-function: ease-in-out; } .matriochka-4 { width: 90%; height: 90%; left: 1vw; top: 1.5vh; z-index: 30; animation-name: popping-matriochka-p3; animation-duration: 1.5s; animation-delay: 3s; animation-fill-mode: forwards; animation-timing-function: ease-in-out; } .matriochka-5 { width: 90%; height: 90%; left: 1vw; top: 1.5vh; z-index: 20; animation-name: popping-matriochka-p4; animation-duration: 1.5s; animation-delay: 4.5s; animation-fill-mode: forwards; animation-timing-function: ease-in-out; } @keyframes popping-matriochka-p1 { 0% { transform: translate(0vw, 0vh); top: 4vh; left: 5vw; } 40% { transform: translate(10vw, -10vh); top: 4vh; left: 5vw; } 100% { transform: translate(15vw, 0vh); top: 4vh; left: 5vw; } } @keyframes popping-matriochka-p2 { 0% { transform: translate(0vw, 0vh); top: 4vh; left: 3vw; } 40% { transform: translate(10vw, -10vh); top: 4vh; left: 3vw; } 100% { transform: translate(15vw, 0vh); top: 4vh; left: 3vw; } } @keyframes popping-matriochka-p3 { 0% { transform: translate(0vw, 0vh); top: 3vh; left: 1.5vw; } 40% { transform: translate(10vw, -10vh); top: 3vh; left: 1.5vw; } 100% { transform: translate(15vw, 0vh); top: 3vh; left: 1.5vw; } } @keyframes popping-matriochka-p4 { 0% { transform: translate(0vw, 0vh); top: 2vh; left: 0vw; } 40% { transform: translate(10vw, -10vh); top: 2vh; left: 0vw; } 100% { transform: translate(15vw, 0vh); top: 2vh; left: 0vw; } } /* Page */ .element{ cursor: pointer; transition: transform 0.5s ease-in; } .element:hover{ transform: scale(1.05); } .background{ width: 120%; height:auto; position: absolute; top: 5%; left: -5%; z-index: -1; } .monument{ width: 35%; height: auto; position: absolute; top: 3%; left: calc(50% - 35%/2); } .animal{ width: 20%; height: auto; position: absolute; top: 50%; left:5%; } .activity{ width: 20%; height: auto; position: absolute; top: 35%; right: 5%; } .child{ width: 5%; height: auto; position: absolute; top: 50%; left: 55%; } .food{ height: 12%; width: 12%; position: absolute; top: 80%; right:5%; } .souvenir{ height: 10%; width: 10%; position: absolute; top: -20%; left:45%; } .souvenir-rotate{ animation: object-spinning-animation 2s ease-in-out 1; } @keyframes object-spinning-animation { 0% {transform: rotate(0deg);} 25% {transform: rotate(-5deg);} 100% {transform: rotate(1440deg);} } /** responsive tablet**/ @media screen and (max-width:1024px) and (orientation: landscape) { .background { top: 32%; left: -1%; } .monument { top: 0%; left: 25%; width: 60%; } .food { top: 100%; } .child { top: 80%; } .activity { top: 60%; left: 90%;} .animal {width: 15%; top: 60%; } } @media screen and (max-width:1024px) and (orientation: portrait) { .background { top: 70%; left: -1%; } .monument { top: 50%; left: 25%; width: 60%; } .food { top: 100%; } .child { top: 95%; } .activity { top: 85%; left: 90%; } .animal {width: 15%; top: 90%; } }
styles/russia.css
body{ padding: 0; margin:0; width: 100vw; height:100vh; position: relative; overflow: hidden; background: #E2F6FE; } img{ height: 100%; width: 100%; } /* Icons */ .icons-container{ position: absolute; height: 20%; width: 10%; top: 0; right: 3%; display: flex; flex-direction: row; align-items: center; justify-content: space-around; } .icons-container img{ height: 30%; width: 30%; } .icons-container a img { width: 50%; margin: 30px; } /* Feature matriochka */ .matriochka-container { position: absolute; top:0; left:0; width: 100vw; height: 100vh; background-color: rgba(0,0,0, 0.7); z-index: 10; } .matriochka { position: absolute; } .hidden{ opacity: 0; pointer-events: none; } .matriochka-1 { width: 20%; height: 20%; left: 5vw; top: 20vh; z-index: 60; cursor: pointer; } .matriochka-2 { width: 90%; height: 90%; left: 100vw; top: 100vh; z-index: 50; animation-name: popping-matriochka-p1; animation-duration: 1.5s; animation-fill-mode: forwards; animation-timing-function: ease-in-out; } .matriochka-3 { width: 90%; height: 90%; left: 1vw; top: 1.5vh; z-index: 40; animation-name: popping-matriochka-p2; animation-duration: 1.5s; animation-delay: 1.5s; animation-fill-mode: forwards; animation-timing-function: ease-in-out; } .matriochka-4 { width: 90%; height: 90%; left: 1vw; top: 1.5vh; z-index: 30; animation-name: popping-matriochka-p3; animation-duration: 1.5s; animation-delay: 3s; animation-fill-mode: forwards; animation-timing-function: ease-in-out; } .matriochka-5 { width: 90%; height: 90%; left: 1vw; top: 1.5vh; z-index: 20; animation-name: popping-matriochka-p4; animation-duration: 1.5s; animation-delay: 4.5s; animation-fill-mode: forwards; animation-timing-function: ease-in-out; } @keyframes popping-matriochka-p1 { 0% { transform: translate(0vw, 0vh); top: 4vh; left: 5vw; } 40% { transform: translate(10vw, -10vh); top: 4vh; left: 5vw; } 100% { transform: translate(15vw, 0vh); top: 4vh; left: 5vw; } } @keyframes popping-matriochka-p2 { 0% { transform: translate(0vw, 0vh); top: 4vh; left: 3vw; } 40% { transform: translate(10vw, -10vh); top: 4vh; left: 3vw; } 100% { transform: translate(15vw, 0vh); top: 4vh; left: 3vw; } } @keyframes popping-matriochka-p3 { 0% { transform: translate(0vw, 0vh); top: 3vh; left: 1.5vw; } 40% { transform: translate(10vw, -10vh); top: 3vh; left: 1.5vw; } 100% { transform: translate(15vw, 0vh); top: 3vh; left: 1.5vw; } } @keyframes popping-matriochka-p4 { 0% { transform: translate(0vw, 0vh); top: 2vh; left: 0vw; } 40% { transform: translate(10vw, -10vh); top: 2vh; left: 0vw; } 100% { transform: translate(15vw, 0vh); top: 2vh; left: 0vw; } } /* Page */ .element{ cursor: pointer; transition: transform 0.5s ease-in; } .element:hover{ transform: scale(1.05); } .background{ width: 120%; height:auto; position: absolute; top: 5%; left: -5%; z-index: -1; } .monument{ width: 35%; height: auto; position: absolute; top: 3%; left: calc(50% - 35%/2); } .animal{ width: 20%; height: auto; position: absolute; top: 50%; left:5%; } .activity{ width: 20%; height: auto; position: absolute; top: 35%; right: 5%; } .child{ width: 5%; height: auto; position: absolute; top: 50%; left: 55%; } .food{ height: 12%; width: 12%; position: absolute; top: 80%; right:5%; } .souvenir{ height: 10%; width: 10%; position: absolute; top: -20%; left:45%; } .souvenir-rotate{ animation: object-spinning-animation 2s ease-in-out 1; } @keyframes object-spinning-animation { 0% {transform: rotate(0deg);} 25% {transform: rotate(-5deg);} 100% {transform: rotate(1440deg);} } /** responsive tablet**/ @media screen and (max-width:1024px) and (orientation: landscape) { .background { top: 32%; left: -1%; } .monument { top: 0%; left: 25%; width: 60%; } .food { top: 100%; } .child { top: 80%; } .activity { top: 60%; left: 90%;} .animal {width: 15%; top: 60%; } } @media screen and (max-width:1024px) and (orientation: portrait) { .background { top: 70%; left: -1%; } .monument { top: 50%; left: 25%; width: 60%; } .food { top: 100%; } .child { top: 95%; } .activity { top: 85%; left: 90%; } .animal {width: 15%; top: 90%; } }
0.748076
0.084833
text-align:center; display:none } #status.rate-banner p, .rate-banner .stars { float:none; display:inline-block; width:auto; vertical-align:middle } .rate-banner .stars { padding:0; font-size:24px; margin:0 0 0 10px } .rate-banner .stars li { float:left; list-style:none } .rate-banner .stars li a { color:#ccc; padding:0 2px; font-weight:700; transition:all .2s } .rate-banner .stars .rating1 a { color:#f0463c } .rate-banner .stars .rating2 a { color:#f0c792 } .rate-banner .stars .rating3 a { color:#7bba21 } .review-item { border-bottom:1px solid #ddd } .review-item .label { position:relative; top:-1px; vertical-align:middle } .review-item__text { color:#676767 } .review-item__image-block { margin-left:-2px; margin-right:-2px } .review-item__image { display:inline-block; width:128px; height:128px; background:no-repeat #fff 50%; background-size:cover } .c-multiselect { position:relative } .c-multiselect__toggle { line-height:18px; padding:9px 45px 10px 12px; border-radius:0; width:100%; text-align:left } .c-multiselect__toggle:focus { border:1px solid #e5e5e5!important; outline:none } .c-multiselect__dropdown { min-width:230px; position:absolute; top:50px; width:100%; right:0 } @media (min-width:768px) { .c-multiselect__dropdown { width:auto } } .c-multiselect__group-title { color:#555; border-bottom:1px solid #e5e5e5; line-height:22px; font-size:15px; padding:8px 8px 7px 20px; font-weight:700 } .c-multiselect__list { margin:0; padding:0 } .c-multiselect__list-item { list-style:none } .c-multiselect__list-item:hover { background-color:#f8f8f8 } .c-multiselect__list-item.is-selected label:before { display:block; content:""; background-image:url(/static/images/layout/dashboard/ic_check.svg); width:17px; height:14px; position:absolute; left:23px; top:10px } .c-multiselect__list-item label { cursor:pointer; margin:0; padding:8px 20px 8px 52px; font-weight:400; color:#222; line-height:20px; display:block; position:relative } .c-dropdown { z-index:1; border-radius:0; box-shadow:0 0 12px rgba(0,0,0,.175); border:1px solid #bfbfbf; background:#fff } .c-dropdown:after, .c-dropdown:before { bottom:100%; border:solid transparent; content:" "; height:0; width:0; position:absolute; pointer-events:none } .c-dropdown:after { border-bottom-color:#fff; border-width:8px; margin-left:-8px; right:10px } .c-dropdown:before { border-bottom-color:#bfbfbf; border-width:9px; margin-left:-9px; right:9px } .styled-select { background:#fff url(/static/images/layout/nav-arrow.png) no-repeat 95%!important; border:1px solid #e5e5e5!important; display:block; overflow:hidden; box-shadow:inset 0 1px 1px rgba(0,0,0,.075)!important; transition:border .2s linear,box-shadow .2s linear!important } .validate-tax-exemption { line-height:39px; height:39px; width:39px } .validate-tax-exemption--validated { color:#3c763d } .validate-tax-exemption--validated:before { content:url(/static/images/layout/verified.svg) } .validate-tax-exemption--validating:before { display:inline-block; height:14px; width:14px; background:url(/static/images/layout/spinner-white.gif) no-repeat 0 0; background-size:100%; content:"" } .tax-exemption-upload .btn { width:100% } .tax-exemption-upload { line-height:38px } @media (min-width:768px) { .tax-exemption-info { position:absolute; top:5px } } .amazon-gtin-select input[type=radio] { margin-right:5px } #disclaimer-content p img { max-width:100%; height:auto } .account-users { padding-bottom:40px } .account-users .users-name-and-email { line-height:1 } .account-users .invite-others-button { float:right; margin-top:-82px } .account-users .modal-body { padding:24px 24px 32px } .account-users .modal-title { font-size:24px } .account-users button.close span:first-child { top:8px; position:relative } .account-users .modal-footer, .account-users .modal-header { padding:16px 24px; text-align:left } .account-users .text-cell { padding:0 16px!important; line-height:70px!important } @media (max-width:991.98px) { .account-users .text-cell { padding:12px 0!important; line-height:24px!important } } .account-users .dropdown-cell { padding:20px 0!important; line-height:24px!important } .account-users .col-1-5 { flex:0 0 20%; max-width:20% } .account-users .table-base { -ms-word-break:break-all; word-break:break-word } .account-users .table-base div.text-center { line-height:1 } .account-users .table-base div.text-center ul.pagination { margin-top:32px; margin-bottom:0 } .account-users .table-base div.text-center ul.pagination a { padding-top:7px; padding-bottom:7px; line-height:24px } .account-users .header-text { clear:both; line-height:48px } .account-users .row-text { font-size:16px; clear:both; line-height:46px } .account-users .email { word-break:break-all } .account-users .success { font-weight:700 } .account-users .error { color:#cf1814 } .account-users .table-row { border-bottom:1px solid #e5e5e5 } .account-users .table-row>td.value { text-align:right } .account-users .table-row>td>div.account-users__dropdown-wrapper { line-height:1.5 } @media (min-width:992px) { .account-users .table-row>td>div.account-users__dropdown-wrapper { margin-top:15px!important } } .account-users .users-remove-i-trash { color:#b1b1b1 } .account-users .users-remove-i-trash:hover { color:#555 } .account-users .white-space-nowrap { white-space:nowrap } .account-users a.role-action { text-decoration:none } .account-users a.role-action:active>span, .account-users a.role-action:hover>span { text-decoration:underline } @media (min-width:992px) { .account-users .col-md-1-5 { flex:0 0 20%; max-width:20% } .account-users .pf-md-pl-12 { padding-left:12px!important } } .account-users .modal-content { overflow:visible } @media (min-width:992px) { .account-users .table-base { margin-right:0 } .account-users .table-base .table-row { min-height:45px } .account-users .table-base .table-row>td.value { text-align:left; word-break:normal; word-wrap:break-word } } @media (max-width:991.98px) { .account-users .pending-invitation { line-height:1 } .account-users .invite-others-button { float:none; margin-top:-28px; margin-bottom:40px; display:block } .account-users .invite-others-button a { width:100% } .account-users .row-text { line-height:48px } .account-users .users-resend-remove-row { line-height:1 } .account-users .table-row { border-bottom:none } .account-users .table-row>td>div.dropdown { line-height:1; margin:0 } .account-users .row-text { padding:0 } .account-users .dropdown-label { display:inline-block; float:left } .account-users .settings-dropdown { display:inline-block; float:right; width:100%; margin-top:-52px; padding-right:8px } .account-users .settings-dropdown .user-role-select { margin-top:0 } .account-users .settings-dropdown .dropdown-input { outline:none; float:right; max-width:320px } .account-users .settings-dropdown .dropdown-input__button { width:50%; outline:1px solid #e5e5e5; float:right } .account-users .settings-dropdown .dropdown-input .dropdown-menu { width:100%; margin-top:-1px; margin-left:1px } } .dashboard-home__welcome { text-overflow:ellipsis; overflow:hidden; white-space:nowrap } @media (max-width:991.98px) { .dashboard-home__welcome { background:url(/static/images/landing/holiday-order-deadlines-2018/confetti-bg.svg) no-repeat 50%; background-size:cover } } .dashboard-home__welcome--hidden { background:none } .dashboard-home__resources a { text-decoration:none } .dashboard-home__resources a:hover { background-color:#f8f8f8 } .dashboard-home__resources a:hover p { color:#222 } .dashboard-home__resources a:not(:last-of-type) { border-bottom:1px solid #e5e5e5 } .dashboard-home__resources div { overflow:hidden } .dashboard-home__resources p { text-overflow:ellipsis; overflow:hidden; white-space:nowrap; color:#555 } .dashboard-home__warehousing>div:not(:first-of-type) { border-top:1px solid #e5e5e5 } .dashboard-home__shortcuts-container>div, .dashboard-home__trending-products-item { width:50% } .dashboard-home__trending-products-item .product-item { margin:0!important } .dashboard-home__trending-products-item .product-item__detail { min-height:0 } .dashboard-home__shortcut { position:relative; height:100% } .dashboard-home__shortcut p { width:100% } .dashboard-home__shortcut-img { width:48px } .dashboard-home__shortcut-badge { position:absolute; top:-3px; padding-top:2px; right:-18px; font-size:10px; line-height:15px; text-transform:uppercase; font-weight:700 } .dashboard-home__announcement img { width:96px } .dashboard-home__banner img { max-width:42px } .dashboard-home__banner i { position:absolute; cursor:pointer; top:-5px; right:13px } .dashboard-home__essential-steps img { width:100% } .dashboard-home__essential-steps-list>div a, .dashboard-home__extra-steps-list>div a { text-decoration:none } .dashboard-home__essential-steps-list>div:not(:last-of-type), .dashboard-home__extra-steps-list>div:not(:last-of-type) { border-bottom:1px solid #e5e5e5 } .dashboard-home__onboarding-step--completed { pointer-events:none } .dashboard-home__onboarding-step--completed h4 { text-decoration:line-through } .dashboard-home__onboarding-step--disabled { pointer-events:none; user-select:none; opacity:.3 } .dashboard-home__onboarding-step--extra { pointer-events:auto } .dashboard-home__statistics img { width:100%; max-width:240px } .dashboard-home__issues-filter a, .dashboard-home__orders-filter a { text-decoration:none; color:#555 } .dashboard-home__issues-filter a:hover, .dashboard-home__orders-filter a:hover { background-color:#f8f8f8 } .dashboard-home__issues-filter a:hover p, .dashboard-home__orders-filter a:hover p { color:#222 } .dashboard-home__issues-filter a:not(:last-of-type), .dashboard-home__orders-filter a:not(:last-of-type) { border-bottom:1px solid #e5e5e5 } .dashboard-home__filters select { position:absolute; padding:0!important; top:0; width:90%!important; height:100%!important; color:transparent } .dashboard-home__mobile-filter { position:relative; background:transparent url(/static/images/icons/chevron-down.svg) no-repeat right 16px center; background-size:auto 20px; cursor:pointer } .dashboard-home__rotate { transform:rotate(180deg) } .dashboard-home__pending-reviews .pf-i { cursor:pointer } .dashboard-home__pending-reviews .pf-i:hover { color:#222!important } .dashboard-home__pending-reviews-list { max-height:318px; overflow:scroll } .dashboard-home__pending-reviews p { text-overflow:ellipsis; overflow:hidden; color:#555 } .dashboard-home__pending-reviews .modal-content { margin:250px auto auto } @media screen and (max-width:550px) { .dashboard-home__pending-reviews .modal-content { margin:100px auto auto } } .dashboard-home__pending-reviews .modal-header { padding-left:24px } .dashboard-home__pending-reviews .modal-body { padding:0 20px 0 24px } .dashboard-home__pending-reviews .review__buttons { margin-right:-20px; margin-left:-24px } .dashboard-home__pending-reviews .review__buttons .col-6 { padding-left:24px } .dashboard-home__review-item>div { cursor:pointer } .dashboard-home__review-item .pf-i:hover { color:#222!important } .dashboard-home__review-item:hover { box-shadow:0 0 8px 0 rgba(0,0,0,.06); background-color:#fff } .dashboard-home__review-item:hover p { color:#222 } .dashboard-home__review-item img { width:48px; height:48px; margin-right:12px; display:inline-block } .dashboard-home__tip-item-text { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; text-overflow:ellipsis } .dashboard-home__no-outline, .dashboard-home__no-outline span a { outline:none!important } .dashboard-home__done-btn { height:auto; line-height:normal; white-space:normal } .dashboard-home__tip-done { text-decoration:line-through } .dashboard-home__top-position { position:absolute; left:0; top:0 } h4.small { font-size:20px; font-weight:400 } h4.grey { color:#bbb } span.bold { font-weight:700 } span.block { display:block } .intro-content-row div.col-md-6 { border:30px solid transparent; margin-left:-6px } .intro-content-row ul.list-unstyled li { border-radius:0; background:#f8f8f8 } .intro-content-row a.integration-button { width:115px } .intro-content-row a.integration-button.shopify { background-size:150px 38px } .intro-content-row a.integration-button.tictail { background-size:145px 40px } .intro-content-row a.integration-button.bigcartel { background-size:140px 30px } .intro-content-row a.integration-button.bigcommerce, .intro-content-row a.integration-button.gumroad, .intro-content-row a.integration-button.magento, .intro-content-row a.integration-button.opencart, .intro-content-row a.integration-button.shipstation-intro, .intro-content-row a.integration-button.storenvy, .intro-content-row a.integration-button.woocommerce { background-size:110px 28px!important } .intro-content-row .box-grey { padding-top:5px } .intro-content-row .box-grey .box-inner { background:#f8f8f8; padding:4px; border:1px solid #ddd } .intro-content-row .box-grey .box-inner h3 { font-size:25px } .intro-content-row .box-grey .box-inner .order-asset-image { width:68px; height:70px; margin:0 auto; background:url(/static/images/layout/order-asset.png) no-repeat } @media (-o-min-device-pixel-ratio:2.6/2),(-webkit-min-device-pixel-ratio:1.3),(min--moz-device-pixel-ratio:1.3),(min-device-pixel-ratio:1.3),(min-resolution:1.3dppx) { .intro-content-row .box-grey .box-inner .order-asset-image { background-image:url(/static/images/layout/order-asset@2x.png); background-size:68px 70px } } .intro-content-row .horizontal-divider { width:100% } .intro-content-row .horizontal-divider .divider-line:first-child { height:1px; width:100%; background:#ccc } .intro-content-row .horizontal-divider .divider-line:not(:first-child) { display:none } .intro-content-row .horizontal-divider .divider-text { margin-top:-30px; margin-left:auto; margin-right:auto; background:#fff } .intro-content-row .vertical-divider { position:absolute; left:46%; z-index:1; padding-top:5px; height:440px } .intro-content-row .vertical-divider .divider-line { width:1px; height:140px; margin:0 auto; background:#ccc } .intro-content-row .horizontal-divider .divider-text, .intro-content-row .vertical-divider .divider-text { height:60px; width:60px; padding-top:10px; padding-left:13px; border:5px solid #ccc; border-radius:50%; font-size:22px; font-weight:700; font-style:italic } .youtube-video-box { max-width:720px; width:100%; height:405px; margin:0 auto } .youtube-video-box.small { max-width:213px; height:120px; overflow:hidden; text-align:center } .youtube-video-box.small iframe { max-width:220px; height:120px; margin-left:-3px } .b2c-nav li.sign-out { padding-top:4px!important; border-top:1px solid #e5e5e5!important; background:#f8f8f8!important } .b2c-nav li.sign-out button { width:100%; height:30px; padding-left:20px; background:none; border:none; color:#7c7c7c; text-align:left } .b2c-nav li.sign-out button:hover { color:#000 } @media (min-width:768px) { .youtube-video-box { height:405px } } @media (max-width:767.98px) { .youtube-video-box { height:250px } } @media (min-width:992px) and (max-width:1199.98px) { .intro-content-row a.integration-button { width:107px } } .logo-maker .pf-badge { white-space:nowrap } @media (min-width:768px) { .logo-maker .mobile-filter-selector { display:none } } .logo-maker-filter__search input.search { height:40px } .logo-maker-list table thead { display:none } .logo-maker-list table tbody { display:block } .logo-maker-list .logo-maker-list-item { display:flex; align-items:center; flex-wrap:wrap } .logo-maker-list .logo-maker-list-item:not(:first-child) { border-top:none!important } .logo-maker-list .logo-maker-list-item.logo-maker-item--initializer { display:block } .logo-maker-list .logo-maker-list-item .logo-maker-item--initializer-contents:hover { background-color:#f8f8f8 } .logo-maker-list .logo-maker-list-item__cell { display:block } .logo-maker-list .logo-maker-list-item__cell--checkbox { min-width:30px; flex-basis:10% } .logo-maker-list .logo-maker-list-item__cell--logo { flex-basis:80%; flex-grow:1 } .logo-maker-list .logo-maker-list-item__cell--details { flex-basis:100% } .logo-maker-list .logo-maker-list-item__cell--actions { min-width:180px; text-align:center; flex-basis:100% } .logo-maker-list .logo-maker-list-item__cell--actions .button-list { width:100% } .logo-maker-list .logo-maker-list-item__cell--actions .button-list>* { display:block; float:left } .logo-maker-list .logo-maker-list-item__cell--actions .button-list .last-visible-btn { width:calc(100% - 52px) } @media (min-width:540px) { .logo-maker-list .logo-maker-list-item__cell--details, .logo-maker-list .logo-maker-list-item__cell--logo { flex-basis:45% } } @media (min-width:768px) { .logo-maker-list:not(.logo-maker-list--simple-view) table thead { display:table-header-group } .logo-maker-list:not(.logo-maker-list--simple-view) table tbody { display:table-row-group } .logo-maker-list:not(.logo-maker-list--simple-view) .logo-maker-list-item, .logo-maker-list:not(.logo-maker-list--simple-view) .logo-maker-list-item.logo-maker-item--initializer { display:table-row } .logo-maker-list:not(.logo-maker-list--simple-view) .logo-maker-list-item__cell { display:table-cell } .logo-maker-list:not(.logo-maker-list--simple-view) .logo-maker-list-item__cell--actions { text-align:right } .logo-maker-list:not(.logo-maker-list--simple-view) .logo-maker-list-item__cell--actions .button-list { width:inherit } .logo-maker-list:not(.logo-maker-list--simple-view) .logo-maker-list-item__cell--actions .button-list>* { display:inherit; float:none } .logo-maker-list:not(.logo-maker-list--simple-view) .logo-maker-list-item__cell--actions .button-list .last-visible-btn { width:inherit } } .logo-maker-list .logo-list-enter { background-color:#e5f5e4 } .logo-maker-list .logo-list-enter-active { transition:background-color 2s cubic-bezier(.6,.04,.98,.335) } .logo-maker-list .logo-list-enter-to { background-color:inherit } .logo-maker-grid .logo-maker-grid-item__checkbox { position:absolute } .logo-maker-grid .logo-maker-item { display:flex } .logo-maker-grid .logo-maker-item__initializer-contents { height:100% } .logo-maker-grid .logo-maker-item__initializer-contents:hover { background-color:#f8f8f8 } .logo-maker-grid .logo-maker-item__initializer-contents .logo-maker-initializer__text { text-align:center } .logo-maker-grid .logo-maker-item__inner { cursor:pointer; min-height:361px; width:100%; position:relative } @media (min-width:540px) { .logo-maker-grid .logo-maker-item__inner:hover { box-shadow:0 1px 7px 0 rgba(90,90,90,.5) } .logo-maker-grid .logo-maker-item__inner:hover .thumbnail-node .overlay { display:block } .logo-maker-grid .logo-maker-item__inner:hover .thumbnail-node .overlay .choose { pointer-events:auto } .logo-maker-grid .logo-maker-item__inner:hover .actions { display:block; width:90% } } .logo-maker-grid .logo-maker-item__inner .logo-maker-grid-item__checkbox { z-index:10; display:none } @media (min-width:768px) { .logo-maker-grid .logo-maker-item__inner .logo-maker-grid-item__checkbox { display:block!important } } .logo-maker-grid .logo-maker-item__inner .thumbnail-node { position:relative } .logo-maker-grid .logo-maker-item__inner .thumbnail-node .overlay { position:absolute; display:none; top:0; right:0; bottom:0; left:0; background-color:hsla(0,0%,77.3%,.7); overflow:hidden } .logo-maker-grid .logo-maker-item__inner .thumbnail-node .overlay .choose { position:absolute; top:80px; left:20px; right:20px; display:block; background-color:#e5e5e5; pointer-events:none } .logo-maker-grid .logo-maker-item__inner .actions { position:absolute; top:0; right:0; padding:10px; text-align:right; display:none } .logo-maker-grid .logo-maker-item__inner .actions .pf-i { padding:0 5px } .logo-maker-grid .logo-maker-item__inner .actions .pf-i:hover { color:#555 } .logo-maker-grid .logo-maker-item__inner .actions .dropdown-button .dropdown-menu.dropdown-menu-left { right:auto } @media (max-width:767.98px) { .logo-maker-grid .logo-maker-item__inner .actions { display:block } } @media (max-width:539.98px) { .logo-maker-grid .logo-maker-item__inner .override-right-menu-pos .dropdown .dropdown-menu.dropdown-menu-right { left:0; right:auto } } .logo-maker-picker__items .logo-maker-picker-item__container { cursor:pointer; width:100%; height:100%; word-wrap:break-word; text-decoration:none; max-width:265px; margin:0 auto } .logo-maker-group-grid__item { display:inline-block; margin:12px 15px; padding:12px; width:132px; height:168px; border:1px solid #d8d8d8; cursor:pointer } .logo-maker-group-grid__item:hover { border-color:#555 } .logo-maker-group-grid__item__selected { border-color:#222 } .logo-maker-group-grid__item__image img { max-width:108px; height:108px; width:100% } .logo-maker-item-grid__item { width:213px; height:213px; border-radius:2px; border:1px solid #d8d8d8; display:inline-block; margin:16px } .logo-maker-item-grid__item__image img { max-width:213px; height:213px; width:100% } .pf-hover-shadow:hover { box-shadow:0 1px 5px 0 rgba(90,90,90,.5) } .pf-hover-shadow:hover.pf-border, .pf-hover-shadow:hover.pf-border-light { border-color:#e3e3e3!important } .pf-hover-background-dark:hover { color:#555!important } .product-templates .pf-badge { white-space:nowrap } .product-templates .desktop-filter-selector { display:none } @media (min-width:768px) { .product-templates .desktop-filter-selector { display:block } .product-templates .mobile-filter-selector { display:none } } .product-templates-filter__search input.search { height:40px } .product-templates-filter__sort-by { min-width:0 } .product-templates-bulk-actions .button-list.with-dropdown .last-visible-btn { width:calc(100% - 52px) } @media (min-width:540px) { .product-templates-bulk-actions .button-list.with-dropdown .last-visible-btn { width:auto } } .product-templates-bulk-actions .button-list:not(.with-dropdown) .last-visible-btn { width:100% } @media (min-width:540px) { .product-templates-bulk-actions .button-list:not(.with-dropdown) .last-visible-btn { width:auto } } .product-templates-whats-next__logo img { width:150px; height:140px } @media (min-width:992px) { .product-templates-whats-next__logo img { width:180px; height:168px } } .product-templates-intro__steps-container { overflow-x:hidden } .product-templates-intro__steps { min-width:750px } .product-templates-intro__step-image img { width:165px; height:134px } .product-templates-intro__step-part-container { display:flex; justify-content:space-between } .product-templates-intro__step-part-container .product-templates-intro__step-part { width:276px } .product-templates-intro__closer { top:16px; right:16px } .product-templates-list table thead { display:none } .product-templates-list table tbody { display:block } .product-templates-list .product-templates-item--initializer-contents:hover { background-color:#f8f8f8 } .product-templates-list .product-templates-list-item { display:flex; align-items:center; flex-wrap:wrap } .product-templates-list .product-templates-list-item:not(:first-child) { border-top:none!important } .product-templates-list .product-templates-list-item.product-templates-item--initializer, .product-templates-list .product-templates-list-item__cell { display:block } .product-templates-list .product-templates-list-item__cell--checkbox { min-width:30px; flex-basis:10% } .product-templates-list .product-templates-list-item__cell--template { flex-basis:80%; flex-grow:1 } .product-templates-list .product-templates-list-item__cell--details { flex-basis:100% } .product-templates-list .product-templates-list-item__cell--actions { min-width:180px; text-align:center; flex-basis:100% } .product-templates-list .product-templates-list-item__cell--actions .button-list { width:100% } .product-templates-list .product-templates-list-item__cell--actions .button-list>* { display:block; float:left } .product-templates-list .product-templates-list-item__cell--actions .button-list .last-visible-btn { width:calc(100% - 52px) } @media (min-width:540px) { .product-templates-list .product-templates-list-item__cell--details, .product-templates-list .product-templates-list-item__cell--template { flex-basis:45% } } @media (min-width:768px) { .product-templates-list:not(.product-templates-list--simple-view) table thead { display:table-header-group } .product-templates-list:not(.product-templates-list--simple-view) table tbody { display:table-row-group } .product-templates-list:not(.product-templates-list--simple-view) .product-templates-list-item, .product-templates-list:not(.product-templates-list--simple-view) .product-templates-list-item.product-templates-item--initializer { display:table-row } .product-templates-list:not(.product-templates-list--simple-view) .product-templates-list-item__cell { display:table-cell } .product-templates-list:not(.product-templates-list--simple-view) .product-templates-list-item__cell--actions { text-align:right } .product-templates-list:not(.product-templates-list--simple-view) .product-templates-list-item__cell--actions .button-list { width:inherit } .product-templates-list:not(.product-templates-list--simple-view) .product-templates-list-item__cell--actions .button-list>* { display:inherit; float:none } .product-templates-list:not(.product-templates-list--simple-view) .product-templates-list-item__cell--actions .button-list .last-visible-btn { width:inherit } } .product-templates-list .templates-list-enter { background-color:#e5f5e4 } .product-templates-list .templates-list-enter-active { transition:background-color 2s cubic-bezier(.6,.04,.98,.335) } .product-templates-list .templates-list-enter-to { background-color:inherit } .product-templates-grid .product-templates-grid-item__checkbox { position:absolute; line-height:1 } .product-templates-grid .product-templates-grid-item__pro-badge { position:absolute; bottom:8px; left:8px; cursor:auto } .product-templates-grid .product-templates-item { display:flex } .product-templates-grid .product-templates-item__initializer-contents { height:100% } .product-templates-grid .product-templates-item__initializer-contents:hover { background-color:#f8f8f8 } .product-templates-grid .product-templates-item__initializer-contents .product-templates-initializer__text { text-align:center } .product-templates-grid .product-templates-item__title { word-wrap:break-word } .product-templates-grid .product-templates-item__inner { cursor:pointer; min-height:361px; width:100%; position:relative } @media (min-width:540px) { .product-templates-grid .product-templates-item__inner:hover { box-shadow:0 1px 5px 0 rgba(90,90,90,.5) } .product-templates-grid .product-templates-item__inner:hover.pf-border { border-color:#e3e3e3!important } .product-templates-grid .product-templates-item__inner:hover .thumbnail-node .overlay { display:block } .product-templates-grid .product-templates-item__inner:hover .thumbnail-node .overlay .add-to-store, .product-templates-grid .product-templates-item__inner:hover .thumbnail-node .overlay .choose { pointer-events:auto } .product-templates-grid .product-templates-item__inner:hover .actions { display:block; width:90% } } .product-templates-grid .product-templates-item__inner .product-templates-grid-item__checkbox { z-index:1; display:none } @media (min-width:768px) { .product-templates-grid .product-templates-item__inner .product-templates-grid-item__checkbox { display:block!important } } .product-templates-grid .product-templates-item__inner .thumbnail-node { position:relative } .product-templates-grid .product-templates-item__inner .thumbnail-node .overlay { position:absolute; display:none; top:0; right:0; bottom:0; left:0; background-color:rgba(34,34,34,.7); overflow:hidden } .product-templates-grid .product-templates-item__inner .thumbnail-node .overlay .add-to-store, .product-templates-grid .product-templates-item__inner .thumbnail-node .overlay .choose { position:absolute; left:8px; right:8px; pointer-events:none; padding-left:0; padding-right:0; text-align:center } .product-templates-grid .product-templates-item__inner .thumbnail-node .overlay .choose { top:80px } .product-templates-grid .product-templates-item__inner .thumbnail-node .overlay .add-to-store { display:none } @media (min-width:1200px) { .product-templates-grid .product-templates-item__inner .thumbnail-node .overlay .choose { top:120px } .product-templates-grid .product-templates-item__inner .thumbnail-node .overlay .add-to-store { display:block; top:64px } } .product-templates-grid .product-templates-item__inner .actions { position:absolute; top:0; right:0; padding:8px; text-align:right; display:none } .product-templates-grid .product-templates-item__inner .actions .pf-i { padding:0 5px } .product-templates-grid .product-templates-item__inner .actions .pf-i:hover { color:#686868 } .product-templates-grid .product-templates-item__inner .actions .dropdown-button .dropdown-menu.dropdown-menu-left { right:auto } @media (max-width:1199.98px) { .product-templates-grid .product-templates-item__inner .actions { display:block } } @media (max-width:539.98px) { .product-templates-grid .product-templates-item__inner .override-right-menu-pos .dropdown .dropdown-menu.dropdown-menu-right { left:0; right:auto } } .product-template-picker__items .product-template-picker-item__container { cursor:pointer; width:100%; height:100%; word-wrap:break-word; text-decoration:none; max-width:265px; margin:0 auto } .product-template-details-editor .product-template-details-printfiles__container { margin:0 auto } .product-template-details-editor .product-template-details-printfiles__image { width:100%; height:auto; max-width:450px } .product-template-details-editor .product-template-details-printfiles__fake-image-wrapper { position:relative } .product-template-details-editor .product-template-details-printfiles__fake-image-wrapper .product-template-details-printfiles__image { visibility:hidden } .product-template-details-editor .product-template-details-printfiles__fake-image-wrapper .product-template-details-printfiles__fake-image-background { position:absolute; top:0; left:0; right:0; bottom:0; background-size:32px 32px; background-position:50%; background-repeat:no-repeat } .product-template-details-editor .product-template-details-printfiles__loader { background-image:url(/static/images/layout/spinner-transparent.gif) } .product-template-details-editor .product-template-details-printfiles__broken { background-image:url(/static/images/retina/invalid-file.svg) } .product-template-details-editor .regions-dropdown__region-picker { max-width:500px } .product-templates-review-step__title-input { max-width:556px } .rounded-color-swatch { width:12px; height:12px; border-radius:3px; border:1px solid rgba(0,0,0,.12); overflow:hidden } .item-disabled-overlay { background-color:rgba(34,34,34,.7); position:absolute; top:0; right:0; left:0; bottom:0; overflow:hidden; text-align:center; padding-top:70px; word-break:break-word } @media (max-width:767px) { .item-disabled-overlay { font-size:14px; line-height:22px; padding-top:60px } } .has-error label { color:#222!important } .has-error .help-block { font-weight:700; font-size:14px } .input-group-addon { border-color:#e5e5e5; -webkit-border-radius:0; border-radius:0 } h5 { margin:0 0 10px; font-weight:700; color:#222; line-height:30px; text-transform:none } #stats .border-right { border-right:1px solid #746861 } #stats .row:not(:last-child) { border-bottom:1px solid #fff } #stats h1 { font-family:Open Sans,sans-serif; font-weight:300; font-size:40px; color:#fff; text-transform:uppercase; line-height:55px; margin:0; white-space:nowrap } @media (max-width:991px) { #stats h1 { font-size:24px; line-height:40px } #stats h1 span:first-child { max-width:calc(100% - 25px); overflow:hidden; text-overflow:ellipsis; vertical-align:top } } #stats h2 { font-family:Open Sans,sans-serif; font-weight:300; font-size:35px; color:#fff; text-transform:uppercase; line-height:55px; text-align:left; margin:0 } #stats h2.no-transform { text-transform:none!important } #stats h2.no-transform span.small { font-size:40%; color:inherit!important } #stats h3 { margin:0; font-family:Open Sans,sans-serif; font-weight:700; font-size:14px; color:#f2c994; line-height:30px; text-transform:uppercase } @media (max-width:991px) { #stats h3 { font-size:12px } } #stats h3 strong { font-weight:700; color:#999 } #stats h4 { margin:0; font-family:Open Sans,sans-serif; font-weight:700; font-size:14px; color:#f2c994; line-height:30px; text-transform:uppercase; text-align:left } #stats h1 span, #stats h3 span { background-color:transparent; width:auto; height:auto; margin:0; padding:0; display:inline-block } #stats h3 a { display:none; line-height:26px } #stats h1 span.down, #stats h1 span.up { margin-left:7px; width:16px; height:18px; display:inline-block } @media (max-width:991px) { #stats h1 span.down, #stats h1 span.up { vertical-align:baseline } } #stats h1 span.up { background:url(/static/images/layout/arrow-up.png) no-repeat bottom } #stats h1 span.down { background:url(/static/images/layout/arrow-down.png) no-repeat bottom } @media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-resolution:2dppx) { #stats h1 span.down { background:url(/static/images/layout/arrow-down@2x.png) no-repeat bottom } #stats h1 span.up { background:url(/static/images/layout/arrow-up@2x.png) no-repeat bottom } #stats h1 span.down, #stats h1 span.up { -webkit-background-size:16px 18px; -moz-background-size:16px 18px; -o-background-size:16px 18px; background-size:16px 18px } } h3 { font-size:30px; line-height:39px } h3.small, h4.small { font-size:20px; line-height:21px } h3 a { font-size:13px; font-weight:400; line-height:35px; text-transform:none } #filter { background:#fff; position:relative } .formOverlay { position:fixed; width:100%; height:100%; top:0; background-color:#fff; opacity:.8; z-index:10 } .formOverlay .waiting { position:relative; display:block; margin:auto; font-weight:700; top:45%; width:300px; text-align:center } .spinner { background:url(/static/images/layout/spinner-white.gif) no-repeat 50%; width:32px; height:32px; margin:0; display:none } .spinner.yellow { background-image:url(/static/images/layout/spinner-yellow.gif) } .spinner.small { -webkit-background-size:16px 16px; background-size:16px 16px; display:inline-block; vertical-align:middle } table.orders .icon-alternatives { color:#bcbcbc; font-size:12px; margin-left:8px } table.orders>tbody>tr>td>a.customer, table.table>tbody>tr>td { color:#222 } table.orders>tbody>tr>td>a.customer:hover { text-decoration:none; border-bottom:1px dotted #222 } table.orders>tbody>tr.grayscale, table.orders>tbody>tr.grayscale>td, table.orders>tbody>tr.grayscale>td>a { color:#bcbcbc } table.orders>tbody>tr.not-synced { background-color:#f3f3f3 } div.status-label { white-space:nowrap; min-width:190px; height:30px; margin:0; padding:0 8px; font-weight:400; font-size:15px; line-height:30px; display:inline-block; float:left } div.status-label.canceled { background-color:#f0f0f0 } div.status-label.failed, div.status-label.temporary { background-color:#f2836b; color:#fff } div.status-label.onhold, div.status-label.onhold__second-badge { background-color:#b6dde9; color:#222; float:left } div.status-label.approved, div.status-label.draft, div.status-label.inreview { background-color:#d5eff6; color:#222 } div.status-label.onhold__second-badge { position:relative; width:auto; display:inline-block; margin-right:10px } div.status-label.onhold__second-badge--status { padding:0 8px; display:inline-block; width:auto; float:left } .onhold__update-icon, .report-icon { display:inline-block; width:22px; height:30px; background:url(/static/images/icons/hold/request-icon.svg) no-repeat 50%; margin-left:10px; float:left } div.status-label.fulfilled { float:left } .report-icon { height:28px; background:url(/static/images/layout/icons/problem_report.svg) no-repeat 50% } div.status-label.draft.not-synced { background-color:#f2ded6; color:#222 } div.status-label.inprocess { background-color:#dbe3a2; color:#222 } div.status-label.inreview, div.status-label.pending { background-color:#fee79b; color:#222 } div.status-label.partial { background-color:#1cc98e; color:#fff } div.status-label.fulfilled { background-color:#f8f8f8; color:#b7b7b7 } table.table.summary { width:440px; margin:0 auto 20px } @media screen and (max-width:767px) { table.table.summary { width:100% } } table.table.summary tbody tr { border-bottom:1px solid #e5e5e5; height:53px; line-height:53px } table.table.summary tbody tr:first-child { border-top:0 } table.table.summary tbody tr:last-child { border-bottom:0 } table.table.summary tbody td { font-size:16px; font-weight:700; line-height:53px; white-space:nowrap } table.table.summary tbody td:first-child { font-weight:400; padding:0 0 0 47px!important } @media screen and (max-width:767px) { table.table.summary tbody td:first-child { padding:0!important } } table.table.summary tbody td:last-child { padding:0 47px 0 0 } @media screen and (max-width:767px) { table.table.summary tbody td:last-child { padding:0!important } } table.table.summary.bottom-form input { margin:0; vertical-align:middle; display:inline-block } table.table.summary.bottom-form span { vertical-align:middle } .order-item-table .arrow { display:none; bottom:2% } .order-item-table.no-products { width:100%; text-align:center } .order-item-table.no-products .arrow { display:block } .col-md-4 div.brown.one, .col-md-4 div.brown.three, .col-md-4 div.brown.two { padding:35px 45px } .col-md-4 div.brown.one h3, .col-md-4 div.brown.three h3, .col-md-4 div.brown.two h3 { margin-top:0; font-size:20px; line-height:21px; color:#fff } .col-md-4 div.brown.one p, .col-md-4 div.brown.three p, .col-md-4 div.brown.two p { margin:0 0 20px; font-weight:700; font-size:15px; color:#fff; line-height:23px } .col-md-4 div.brown.one { background:#3d3733 url(/static/images/layout/one.png) no-repeat 0 0 } .col-md-4 div.brown.two { background:#3d3733 url(/static/images/layout/two.png) no-repeat 0 0 } .col-md-4 div.brown.three { background:#3d3733 url(/static/images/layout/three.png) no-repeat 0 0 } .affiliate-settings label { display:none } ul.orderTypeList li>div { background-color:#fff; color:#222; border:1px solid #eee; overflow:hidden; margin:0 20px 20px 0; vertical-align:top } ul.orderTypeList li:last-child { padding-right:0 } ul.orderTypeList li:last-child>div { margin-right:0 } ul.orderTypeList li>div:not(.disabled):hover { cursor:pointer; -webkit-box-shadow:0 2px 3px 0 rgba(91,91,91,.4); -moz-box-shadow:0 2px 3px 0 rgba(91,91,91,.4); box-shadow:0 2px 3px 0 rgba(91,91,91,.4) } ul.orderTypeList li>div:not(.disabled):hover .button.gray { border-color:#bbb } ul.orderTypeList li>div:hover .button.red, ul.orderTypeList li>div:not(.disabled):hover .button.gray { text-decoration:none; box-shadow:0 2px 4px 0 rgba(0,0,0,.25); -webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.25) } ul.orderTypeList li>div:hover .button.red { border-color:#9e231c } ul.orderTypeList li>div.disabled a { cursor:default } ul.orderTypeList li>div .disabled { padding:10px 0 9px; text-align:center; display:block; color:#222; font-weight:600 } ul.orderTypeList .standard-order { background:#f8f8f8 } ul.orderTypeList .box-content>a.box-title, ul.orderTypeList .box-content>span.box-title { color:#222; display:block; text-align:center; font-size:22px; padding:10px 0 } ul.orderTypeList .box-content { padding:25px 15px } ul.orderTypeList .box-content ul li { margin-bottom:15px } ul.orderTypeList .box-content>a, ul.orderTypeList .box-content>span { width:100% } ul.orderTypeList .box-content>a.type-link, ul.orderTypeList .box-content>span.type-link { display:block; padding-top:90px; text-align:center; color:#767676; height:185px } ul.orderTypeList .standard-order .box-content a.type-link { background:url(/static/images/layout/standard-order-icon.png) no-repeat 50% 10px } ul.orderTypeList .sample-order .box-content>span.type-link, ul.orderTypeList .sample-order .box-content a.type-link { background:url(/static/images/layout/sample-order-icon.png) no-repeat 50% 10px } @media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-resolution:2dppx) { ul.orderTypeList .standard-order .box-content a.type-link { background:url(/static/images/retina/standard-order-icon@2x.png) no-repeat 50% 10px; -webkit-background-size:55px 57px; -moz-background-size:55px 57px; -o-background-size:55px 57px; background-size:55px 57px } ul.orderTypeList .sample-order .box-content>span.type-link, ul.orderTypeList .sample-order .box-content a.type-link { background:url(/static/images/retina/sample-order-icon@2x.png) no-repeat 50% 10px; -webkit-background-size:57px 57px; -moz-background-size:57px 57px; -o-background-size:57px 57px; background-size:57px 57px } } .syncList td { vertical-align:middle } .syncList .syncStatus { padding:7px 5px } .syncList .syncStatus.all { background:#f8f8f8; color:#999 } .syncList .syncStatus.partial { background:#fde79b } .syncList .syncStatus.none { background:#f1836a; color:#fff } span.comingSoon { margin:1px; padding:0 20px; font-family:Raleway,sans-serif; font-size:13px; font-weight:700; line-height:37px; text-transform:uppercase; text-align:center; display:inline-block; vertical-align:top; color:#999 } ul.orderProgress { height:50px; margin:0; padding:0; list-style:none; overflow:hidden } ul.orderProgress li { padding:0!important } ul.orderProgress li:nth-child(2) { width:220px; text-align:center } ul.orderProgress li h4 { margin:0; font-weight:700; font-size:16px; color:#8d8d8d; line-height:48px; text-transform:uppercase } ul.orderProgress li.active h4 { color:#222 } ul.orderProgress li div { background-color:#e5e5e5; height:2px; margin:0; padding:0; -webkit-transition:all .1s linear; -moz-transition:all .1s linear; -ms-transition:all .1s linear; -o-transition:all .1s linear; transition:all .1s linear } ul.orderProgress li div.progress50 { background:#74c008; background:-moz-linear-gradient(left,#74c008 0,#74c008 50%,#e5e5e5 50%,#e5e5e5 100%); background:-webkit-gradient(linear,left top,right top,color-stop(0,#74c008),color-stop(50%,#74c008),color-stop(50%,#e5e5e5),color-stop(100%,#e5e5e5)); background:-webkit-linear-gradient(left,#74c008,#74c008 50%,#e5e5e5 0,#e5e5e5); background:-o-linear-gradient(left,#74c008 0,#74c008 50%,#e5e5e5 50%,#e5e5e5 100%); background:-ms-linear-gradient(left,#74c008 0,#74c008 50%,#e5e5e5 50%,#e5e5e5 100%); background:linear-gradient(90deg,#74c008 0,#74c008 50%,#e5e5e5 0,#e5e5e5); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#74c008",endColorstr="#e5e5e5",GradientType=1) } ul.orderProgress li div.progress100 { background-color:#74c008 } input.search { background:url(/static/images/layout/search_magnet.png) no-repeat 9px 10px; padding:5px 10px 5px 35px!important } input.search.with-clear { background-image:none } .search-wrapper { position:relative } .search-wrapper .search-clear { position:absolute; top:9px; right:2% } .search-wrapper .search-clear img { width:14px; height:14px } @media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-resolution:2dppx) { input.search { background:url(/static/images/retina/search_magnet@2x.png) no-repeat 9px 10px; -webkit-background-size:16px 16px; -moz-background-size:16px 16px; -o-background-size:16px 16px; background-size:16px 16px } } .cardlabel { background:#74c008 url(/static/images/layout/icons/cardlabel.png) no-repeat 15px 19px; margin:25px 0 10px; padding:15px 25px 15px 40px } .cardlabel p { font-weight:700; font-size:14px; color:#fff; line-height:20px } div.hosted-container { display:flex; height:38px; background-color:#fff; margin:0; border:1px solid #e5e5e5!important; width:100%; padding:0 10px; font-weight:300; font-size:15px; color:#222!important; line-height:25px; outline:none; box-sizing:border-box!important } div.hosted-container>div, div.hosted-container span { height:inherit; line-height:1; width:100% } #cvv.hosted-container { width:100px!important; margin-right:15px!important } div.hosted-container.date { display:inline-flex; width:50px } div.hosted-container.new div { height:33px } div.hosted-container.new.date:first-of-type { margin-right:10px } .securitylabel { background:#fae067 url(/static/images/layout/icons/securitylabel.png) no-repeat 17px 19px; margin:0 0 10px; padding:15px 25px 15px 40px } .securitylabel p { font-weight:700; font-size:14px; color:#333; line-height:20px } .infolabel { background:#f9f2d2 url(/static/images/layout/icons/infolabel.png) no-repeat 15px 19px; margin:0 0 10px; padding:15px 25px 15px 40px } .infolabel p { font-weight:400; font-size:14px; color:#333; line-height:20px } .legallabel { background:#f9f2d2 url(/static/images/layout/icons/infolabel.png) no-repeat 15px 19px; margin:0 0 10px; padding:15px 25px 15px 40px } .legallabel p { font-weight:400; font-size:14px; color:#333; line-height:20px } .infolabel p strong, .legallabel p strong { margin:0 0 10px; display:block } .creditcard { width:51px; height:32px; margin:0 5px 0 0; padding:0; display:inline-block; vertical-align:middle } .visa { background:url(/static/images/layout/icons/visa.png) no-repeat } .mastercard { background:url(/static/images/layout/icons/mastercard.png) no-repeat } .maestro { background:url(/static/images/layout/icons/maestro.png) no-repeat } .americanexpress { background:url(/static/images/layout/icons/americanexpress.png) no-repeat } .discover { background:url(/static/images/layout/icons/discover.png) no-repeat } .paypal { background:url(/static/images/layout/icons/paypal.png) no-repeat; background-size:contain } a#braintree-paypal-button { background-color:#0079c1!important; background-image:-webkit-linear-gradient(#00a1ff 20%,#0079c1)!important; background-image:linear-gradient(#00a1ff 20%,#0079c1)!important; background-repeat:no-repeat!important; border-color:#0079c1 #00588b #004b77!important; -webkit-box-shadow:inset 0 1px #4dbeff!important; box-shadow:inset 0 1px #4dbeff!important; cursor:pointer!important; display:inline-block!important; box-sizing:border-box!important; border-radius:5px!important; font-size:16px!important; height:2em!important; margin:0!important; overflow:hidden!important; padding:0!important; position:relative!important; text-align:center!important; width:auto!important; white-space:nowrap!important; border-width:1px; border-style:solid } a#braintree-paypal-button:before { content:url(/static/images/layout/icons/paypal-button.svg); height:100%!important; margin:.4em .4em 0 .5em!important; width:1em!important; display:block!important; float:left!important } a#braintree-paypal-button:after { content:"Log In with PayPal"; box-shadow:inset 1px 0 rgba(77,190,255,.5)!important; color:#f9fcff!important; text-shadow:0 -1px 0 #00629c!important; border-left:1px solid #00588b!important; font:normal 700 .6875em/1.5 Helvetica Neue,Arial,sans-serif!important; height:2.75em!important; padding:.625em .66667em!important; vertical-align:baseline!important; cursor:pointer!important; display:inline-block!important } a#braintree-paypal-button:hover { box-shadow:0 2px 4px 0 rgba(0,0,0,.25)!important; border-color:#00588b!important } a#braintree-paypal-button img { display:none!important } div#braintree-paypal-loggedin { padding:6px!important } .creditcard.none, .postpay, .wallet { background:url(/static/images/layout/icons/wallet.png) no-repeat } .card { background:url(/static/images/layout/icons/card.png) no-repeat } @media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-resolution:2dppx) { .visa { background-image:url(/static/images/retina/icons/visa@2x.png) } .mastercard, .visa { -webkit-background-size:51px 32px; -moz-background-size:51px 32px; background-size:51px 32px } .mastercard { background-image:url(/static/images/retina/icons/mastercard@2x.png) } .maestro { background-image:url(/static/images/retina/icons/maestro@2x.png) } .americanexpress, .maestro { -webkit-background-size:51px 32px; -moz-background-size:51px 32px; background-size:51px 32px } .americanexpress { background-image:url(/static/images/retina/icons/americanexpress@2x.png) } .discover { background-image:url(/static/images/retina/icons/discover@2x.png) } .discover, .paypal { -webkit-background-size:51px 32px; -moz-background-size:51px 32px; background-size:51px 32px } .paypal { background-image:url(/static/images/retina/icons/paypal@2x.png) } .postpay, .wallet { background-image:url(/static/images/retina/icons/wallet@2x.png) } .card, .postpay, .wallet { -webkit-background-size:51px 32px; -moz-background-size:51px 32px; background-size:51px 32px } .card { background-image:url(/static/images/retina/icons/card@2x.png) } } p.text-loading { font-size:14px; line-height:16px } @media only screen and (max-width:991px) { .billing-head .col-md-4 { margin-bottom:20px } .billing-head .col-md-4:last-child { margin-bottom:0 } } table.billing div.status-label { width:100px; height:30px; margin:0; padding:0 8px; font-weight:400; font-size:15px; line-height:30px } table.billing div.status-label.refunded, table.billing div.status-label.voided { background-color:#f0f0f0 } table.billing div.status-label.unknown { background-color:#d5eff6; color:#222 } table.billing div.status-label.failed { background-color:#f2836b; color:#fff } table.billing div.status-label.success { background-color:#dbe3a2; color:#222 } @media (min-width:768px) { .notifications-header { padding-left:0 } } .notifications-navi li a { font-size:16px } @media screen and (max-width:991px) { .notification-window-holder { padding:20px 0 } } .notification-warning { background:#fff; border:1px solid #dedede; padding:110px; text-align:center } .notification-warning p { color:#555 } .notifications .notification-group { color:#7c7c7c; padding:15px 0 30px; line-height:36px; font-size:24px } .notifications .notification-item { border:1px solid #e5e5e5; background:#f8f8f8; font-size:15px; padding:20px; margin:0 0 20px } .notifications .notification-item.new { background:#fff } .notifications .notification-circle { width:100%; border-radius:50%; overflow:hidden } .notifications .notification-circle img { width:100%; display:block } .notification-body { padding:20px 0 0 } .notification-footer { border-top:1px solid #e5e5e5; padding:15px 0 0; margin:15px 0 0 } .notification-type { height:30%; overflow:hidden; line-height:14px; text-overflow:ellipsis; float:left } .notification-meta-right, .notification-meta-right a, .notification-type, .notification-type a { color:#7c7c7c; font-size:13px; line-height:14px } .notification-employee, .notification-employee a { color:#7c7c7c; font-size:13px; line-height:16px } .notification-meta-right { position:relative; float:right } .notification-meta-right .date { display:block; min-width:70px; text-align:right } .notification-meta-right a:hover { color:#0a0a0a } .notification-type.warning { color:#f34536 } .notification-type.success { color:#0c8512 } .notification-title { font-size:20px; line-height:30px; padding:0 0 3px } .notification-image { float:left; width:60px } .notification-content { margin:0 0 0 76px; overflow:hidden } .new .notification-title { font-weight:700 } .container-header-holder { padding:20px 0 } .container-header { font-size:40px } .link-left { float:left } .link-right { float:right } .link-readmore .glyphicon { color:silver; font-size:12px } .link-settings { margin:15px 20px 0 0; display:block } .image-icon { position:relative; top:1px; display:inline-block } .image-icon:before { content:""; display:block; margin:0 5px; position:relative } .image-icon-like:before { width:15px; height:15px; background:url(/static/images/layout/notifications/like.svg) no-repeat 50%; background-size:100% } .image-icon-settings:before { width:15px; height:15px; background:url(/static/images/layout/notifications/settings.svg) no-repeat 50%; background-size:100%; top:1px } .headcrumbs .order-info--logo { height:40px } @media (max-width:991.98px) { .headcrumbs .order-info--logo { height:24px } } @media (max-width:991.98px) { .headcrumbs .order-info { border:none!important } } @media only scre0en and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-resolution:2dppx) { .notifications .notification-item .notification-success { background:url(/static/images/retina/info-ikona@2x.png) no-repeat 80% 50%; -webkit-background-size:19px 19px; -moz-background-size:19px 19px; -o-background-size:19px 19px; background-size:19px 19px } .notifications .notification-item .notification-warning { background:url(/static/images/retina/uzmanibu-ikona@2x.png) no-repeat 80% 50%; -webkit-background-size:19px 19px; -moz-background-size:19px 19px; -o-background-size:19px 19px; background-size:19px 19px } } .nav-pills.switch li { border-bottom:3px solid transparent } .nav-pills.switch li.active { border-bottom:3px solid #333 } @media (max-width:767px) { .nav-pills.switch li a { margin:10px 0 } } #statistics h4 { margin:0; line-height:39px } #statistics .period-switch a.btn.btn-default { border-color:#e5e5e5; width:40px; height:39px; font-size:20px; line-height:25px; color:#7c7c7c; -webkit-border-radius:0; border-radius:0 } #statistics .period-switch input[type=text] { border-top:1px solid #e5e5e5; border-right:0!important; border-bottom:1px solid #e5e5e5; border-left:0!important; width:auto; float:left; text-align:center } #alternatives-banner .whitesmoke { border-top-left-radius:35px; border-bottom-left-radius:35px } #alternatives-banner .content { padding-left:60px } #alternatives-banner .image-container { margin-left:-4px } #alternatives-banner .img-rounded { width:125px; position:absolute; top:-30px; left:0 } @media (max-width:991px) { #alternatives-banner .whitesmoke { border-top-left-radius:50px; border-bottom-left-radius:70px } #alternatives-banner .content { padding-left:80px } } @media (max-width:767px) { #alternatives-banner .whitesmoke { position:relative; border-top-left-radius:0; border-bottom-left-radius:0; padding-top:60px!important; margin-top:50px } #alternatives-banner .content { padding-left:15px; text-align:center } #alternatives-banner .image-container { position:absolute; top:-63px; margin-left:0 } #alternatives-banner .img-rounded { display:block; position:relative; margin:auto; top:0 } #alternatives-banner .btn { margin-top:15px } } .form-control::-webkit-input-placeholder, ::-webkit-input-placeholder { color:#a7a7a7 } .form-control:-moz-placeholder, .form-control::-moz-placeholder, :-moz-placeholder, ::-moz-placeholder { color:#a7a7a7; opacity:1 } .form-control:-ms-input-placeholder, :-ms-input-placeholder { color:#a7a7a7 } .integration-logo.small { height:36px; max-width:36px } .modal-on-top { z-index:10000!important } .learn-box { background:#f8f8f8; border:1px solid #e5e5e5 } .learn-box .icon-info { color:#a7a7a7 } .learn-box span { color:#222; font-family:ProximaNova,sans-serif } .main-title { line-height:1.5em } @media screen and (min-width:0px) { .main-title { font-size:calc(16px + 1.33333vw) } } @media screen and (min-width:1200px) { .main-title { font-size:32px } } .delete-account input[type=checkbox] { margin:0; position:relative; top:2px; width:16px!important; height:16px!important } .delete-account .support-info { text-align:center; margin-top:10px; margin-bottom:30px; line-height:2em } .delete-account .support-info .info-title { font-weight:700; font-size:1.2em } .delete-account .support-info>span { display:block } .dom-debugging-container { min-height:20px; border:2px solid red } .dom-debugging-container .dom-log-wrapper { color:#000 } .dom-debugging-container .dom-log-wrapper .dom-log { max-height:200px; overflow-y:scroll } @media only screen and (min-width:0px) and (max-width:767px) { .dom-debugging-container { margin-top:54px } } .hold-request-modal { float:left; left:50%!important; top:50%!important; transform:translate(-50%,-50%)!important } .hold-request-modal__textarea { height:80px; resize:vertical } .billing-email-address { padding-top:5px!important; text-overflow:ellipsis; word-break:break-all; overflow:hidden; white-space:nowrap } .billing-email-address:hover { overflow:visible; white-space:normal; height:auto } .amazon-regions { margin-left:-5px } .shipping-banner { position:relative; background-color:#f8f8f8 } .shipping-banner div a { color:#000!important; background-color:#e5e5e5 } .shipping-banner .title { font-size:18px; font-weight:700; color:#000 } .shipping-banner p { color:#000 } .shipping-banner #banner-close { position:absolute; top:7px; right:7px; background:none; font-weight:700 } .order-customized-label { display:inline-block; height:14px; width:14px; background-color:#40d2d2; color:#fff; font-size:14px; text-align:center; font-weight:700; line-height:16px; margin-left:4px } .embedded .user-settings { margin-top:0 } .embedded--force-scroll { overflow:scroll } .dashboard>.header { display:none } .dashboard__header { position:fixed; height:64px; top:0; right:0; left:0; z-index:100; border-bottom:1px solid #e5e5e5 } .dashboard__header .customer-notifications>li>a span.notification-count { border:2px solid #fff; color:#fff!important } .dashboard__logo { position:absolute; top:0; left:0; bottom:0; width:232px; border-right:1px solid #e5e5e5; box-shadow:8px 0 10px -2px rgba(0,0,0,.05); line-height:1; font-size:16px; z-index:101 } .dashboard__logo img { height:18px; -webkit-flex-shrink:0; -moz-flex-shrink:0; -ms-flex-shrink:0; flex-shrink:0; align-self:center } .dashboard__logo a { white-space:nowrap } .dashboard__logo a>* { vertical-align:middle } .dashboard__logo .divider { display:inline-block; width:0; height:28px } .dashboard__menu { position:absolute; top:0; left:0; padding-left:232px; width:100% } .dashboard__menu .shipping-bar { height:64px; line-height:1 } .dashboard__menu #userbar { list-style:none } .dashboard__menu #userbar a { text-decoration:none } .dashboard__menu #userbar>li { vertical-align:top; display:inline-block!important } .dashboard__menu #userbar #toggle-customer-notifications, .dashboard__menu #userbar .account-menu .dropdown-toggle, .dashboard__menu #userbar .language-menu .dropdown-toggle, .dashboard__menu #userbar .settings-menu .dropdown-toggle:not(.dropdown-input__button) { margin-top:10px!important } .dashboard__menu #userbar .language-menu .dropdown-toggle { padding-top:10px!important } .dashboard__menu #userbar .language-menu>li>ul.dropdown-menu { top:63px } .dashboard__menu #userbar .nav.account-menu>li>a { padding-left:1px } .dashboard__menu #userbar .nav.account-menu>li>ul.dropdown-menu { top:53px } .dashboard__menu #userbar .settings-menu>li>ul.dropdown-menu { margin-top:10px!important } .dashboard__menu #userbar .customer-notifications>li>ul.dropdown-menu, .dashboard__menu #userbar .settings-menu>li>ul.dropdown-menu { top:54px; right:-19px } .dashboard__menu #userbar .customer-notifications>li>ul.dropdown-menu:after, .dashboard__menu #userbar .customer-notifications>li>ul.dropdown-menu:before, .dashboard__menu #userbar .settings-menu>li>ul.dropdown-menu:after, .dashboard__menu #userbar .settings-menu>li>ul.dropdown-menu:before { display:none } .dashboard__sidebar { position:fixed; width:232px; top:64px; bottom:0; left:0; z-index:100; border-right:1px solid #e5e5e5; box-shadow:8px 0 10px -2px rgba(0,0,0,.05); display:flex; flex-direction:column } .dashboard__sidebar>ul { flex:1 1 auto; overflow-y:auto } .dashboard__sidebar>ul+hr { display:block; position:relative; width:100%; height:0; border:0; margin:0; flex:0; z-index:1; overflow:visible; pointer-events:none } .dashboard__sidebar>ul+hr:before { content:" "; display:block; position:absolute; top:-60px; left:0; width:100%; height:60px; background:-moz-linear-gradient(top,hsla(0,0%,100%,0) 10%,#fff 90%); background:-webkit-linear-gradient(top,hsla(0,0%,100%,0) 10%,#fff 90%); background:linear-gradient(180deg,hsla(0,0%,100%,0) 10%,#fff 90%); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff",endColorstr="#ffffff",GradientType=0) } .dashboard__sidebar>ul~ul { overflow:hidden; flex:0 0 auto } .dashboard__sidebar>ul>li>ul>li:first-of-type { display:none } .dashboard__sidebar>ul .collapse, .dashboard__sidebar>ul .collapsing { transition:none!important } .dashboard__sidebar>ul::-webkit-scrollbar { width:5px; height:5px; background:transparent } .dashboard__sidebar>ul::-webkit-scrollbar-track { background:rgba(0,0,0,.01) } .dashboard__sidebar>ul::-webkit-scrollbar-thumb { background:rgba(0,0,0,.08) } .dashboard__sidebar>ul::-webkit-scrollbar-thumb:active, .dashboard__sidebar>ul::-webkit-scrollbar-thumb:hover { background:rgba(0,0,0,.16) } .dashboard__sidebar ul { list-style:none } .dashboard__sidebar ul li a { position:relative; white-space:nowrap; color:#555 } .dashboard__sidebar ul li a:hover { color:#222 } .dashboard__sidebar ul li a:hover>.pf-i:first-of-type { color:#555 } .dashboard__sidebar ul li a:hover [data-toggle=collapse] { color:#b1b1b1 } .dashboard__sidebar ul li a.active { color:#222; font-weight:700; letter-spacing:-.25px } .dashboard__sidebar ul li a.active>.pf-i:first-of-type { color:#ed4642 } .dashboard__sidebar ul li a>.pf-i:first-of-type { color:#b1b1b1 } .dashboard__sidebar ul li a span { white-space:normal; max-width:150px } .dashboard__sidebar ul li a span.collapsed i { transform:rotate(180deg) } .dashboard__sidebar ul li a span:nth-of-type(2) { display:inline-flex } .dashboard__sidebar ul li a [data-toggle=collapse] { position:absolute; right:0; top:0; color:#b1b1b1 } .dashboard__sidebar ul li a [data-toggle=collapse]:hover { color:#555 } .dashboard__sidebar ul li a [data-toggle=collapse]>* { pointer-events:none } .dashboard__sidebar ul li a>.indication { top:6px; margin-left:2px } .dashboard__sidebar ul li a.dashed-separator { margin-top:17px } .dashboard__sidebar ul li a.dashed-separator:before { content:""; display:block; position:relative; top:-16px; height:1px; width:100%; background-image:linear-gradient(90deg,#e5e5e5 60%,transparent 0); background-size:11px 100% } .dashboard__sidebar ul li a.start-selling:after { content:"\F0417"; position:absolute; right:0; font-family:Material Design Icons; padding-right:24px; padding-left:24px; color:#b1b1b1; font-size:20px; font-weight:400 } .dashboard__sidebar ul li a.start-selling.active:after, .dashboard__sidebar ul li a.start-selling:hover:after { color:#0c8512 } .dashboard__sidebar ul ul li a { margin-left:10.5px; border-left:3px solid transparent } .dashboard__sidebar ul ul li a:hover { border-left:3px solid #e5e5e5 } .dashboard__sidebar ul ul li a.active { border-left:3px solid #ed4642 } .dashboard__sidebar ul router-link { margin-left:10.5px; border-left:3px solid transparent; color:#555 } .dashboard__sidebar ul router-link.active { border-left:3px solid #ed4642 } .dashboard__sidebar ul .panel { margin-bottom:0; background:transparent; border:0; box-shadow:none } .dashboard__toggler { position:absolute; top:16px; right:-16px; width:32px; height:32px; box-shadow:0 2px 4px 0 rgba(0,0,0,.07); z-index:101; background:#fff } .dashboard__toggler:hover { background:#f8f8f8 } .dashboard__content { width:100%; padding:64px 16px 0 248px; min-height:100vh; overflow:hidden; display:flex; flex-direction:column; margin-top:53px } @media (min-width:992px) { .dashboard__content { margin-top:0 } } .embedded .dashboard__content { margin-top:0 } .dashboard__content.mobile-payments { padding:16px } .dashboard__container { max-width:1152px; flex:1 1 auto } .dashboard__container+.dashboard__container { flex:0 0 auto } .dashboard__fullwidth { padding-left:999px!important; padding-right:999px!important } .dashboard__blue-banner-fullwidth, .dashboard__fullwidth { width:auto!important; margin-left:-999px!important; margin-right:-999px!important } .dashboard__blue-banner-fullwidth { padding-left:1015px!important; padding-right:1015px!important } .dashboard--embed>.header { display:block } .dashboard--embed .dashboard__header, .dashboard--embed .dashboard__sidebar { display:none } .dashboard--embed .dashboard__content { padding:0 } .dashboard--embed__container { max-width:1152px } @media (min-width:992px) { .dashboard--embed__container #dashboard-new-order { position:absolute; right:0 } } .dashboard--collapsed .dashboard__logo { width:80px; font-size:10px; padding-left:16px!important } .dashboard--collapsed .dashboard__logo a { white-space:normal; display:block!important } .dashboard--collapsed .dashboard__logo a span { margin-right:8px!important } .dashboard--collapsed .dashboard__logo .divider { display:block; height:0 } .dashboard--collapsed .dashboard__menu { padding-left:80px } .dashboard--collapsed .dashboard__sidebar { width:80px; text-align:center } .dashboard--collapsed .dashboard__sidebar>ul>li>ul>li:first-of-type { display:block } .dashboard--collapsed .dashboard__sidebar>ul li { position:relative } .dashboard--collapsed .dashboard__sidebar>ul li a span:nth-of-type(2) { display:none } .dashboard--collapsed .dashboard__sidebar>ul li a [data-toggle=collapse] { padding-left:56px!important; padding-right:8px!important } .dashboard--collapsed .dashboard__sidebar>ul li a [data-toggle=collapse] i { transform:rotate(-90deg) } .dashboard--collapsed .dashboard__sidebar>ul li a [data-toggle=collapse].collapsed i { transform:rotate(90deg) } .dashboard--collapsed .dashboard__sidebar>ul li a.start-selling:after { display:none } .dashboard--collapsed .dashboard__sidebar>ul ul { text-align:left } .dashboard--collapsed .dashboard__sidebar>ul ul.collapse, .dashboard--collapsed .dashboard__sidebar>ul ul.collapsing { position:fixed; border:1px solid #e5e5e5; padding:8px 0 8px 16px!important; white-space:nowrap; min-width:232px; height:auto!important } .dashboard--collapsed .dashboard__toggler i { transform:rotate(180deg) } .dashboard--collapsed .dashboard__content { padding-left:96px } @media (max-width:991.98px) { .dashboard>.header { display:block } .dashboard .dashboard__header, .dashboard .dashboard__sidebar { display:none } .dashboard .dashboard__content { padding:0 } } .dashboard__account-menu-text { text-overflow:ellipsis; overflow:hidden; white-space:nowrap; line-height:1.5 } .pf-dropdown .dropdown-menu { margin-top:-1px; border-radius:0; min-width:250px; border-color:#e5e5e5!important; right:0; left:auto } @media (max-width:767.98px) { .pf-dropdown .dropdown-menu { min-width:160px } } .pf-dropdown .dropdown-menu>li { font-weight:400; letter-spacing:0; font-size:16px; line-height:24px } .pf-dropdown .dropdown-menu>li a { color:#222 } .pf-dropdown .dropdown-menu>li a:focus, .pf-dropdown .dropdown-menu>li a:hover { background-color:#e5e5e5 } .pf-dropdown .dropdown-menu>li>:not(.tooltip) { padding-top:8px; padding-bottom:8px } .my-stores .store-logo { width:48px } @media (min-width:768px) { .my-stores .store-logo { width:64px } } .my-stores .store-status { cursor:default } .my-stores .store--inactive img { opacity:.5 } img.logo-preview { border:1px solid buttonface } img.old { filter:contrast(40%) } i.migration-arrow { color:buttonface; font-size:20px } .store-settings .page-subtitle--underlined, .store-settings .page-title--underlined, .store-settings .underlined { border-bottom:1px solid #e5e5e5; padding-bottom:12px } .store-settings .page-title { line-height:30px; font-size:20px; margin:0 0 10px; font-weight:700 } .store-settings .page-title a { font-weight:400; letter-spacing:normal } .store-settings .page-title a.add-new { margin-top:-10px } @media (max-width:1199.98px) { .store-settings .page-title--warehouse-grid { padding:10px 0 20px } .store-settings .page-title a.add-new { margin-top:-4px } } .store-settings .page-subtitle { line-height:20px; font-size:16px; font-weight:700 } .store-settings .page-subtitle--muted { color:#878787; font-weight:400 } .store-settings .underlined { margin-bottom:30px } .store-settings .small { font-size:14px } .store-settings .text-unmuted { color:#000 } .store-settings ol.counters { counter-reset:list } .store-settings ol.counters>li { list-style:none; position:relative; margin-bottom:25px; padding-top:3px } .store-settings ol.counters>li ul>li { list-style-type:disc } .store-settings ol.counters>li:before { counter-increment:list; content:counter(list); position:absolute; top:-2px; left:-40px; display:block; border:3px solid #e5e5e5; border-radius:100%; font-weight:700; color:#555; width:30px; height:30px; line-height:24px; text-align:center; text-indent:-1px; background-color:#fff } .store-settings ol.counters>li.completed:before { content:""; text-indent:-9999px; background:#fff url(/static/images/retina/done@2x.png) no-repeat 50%; background-size:12px } @keyframes right-left { 50% { transform:translate(5px) } to { transform:translate(0) } } .store-settings .animated-tooltip { transition:transform 2s ease; -webkit-animation:right-left 2s infinite; -o-animation:right-left 2s infinite; animation:right-left 2s infinite } .store-settings .form-group:not(.has-error) .help-block { display:none } .store-settings .settings-section .checkbox-container { line-height:20px; margin:0 } .store-settings .settings-section .checkbox-container .tooltip-container { display:inline; width:13px; height:13px; position:absolute } .store-settings .settings-section .settings-item { overflow:auto } .pf-lang--jp .label-fulfillment-location { width:80px } .label-fulfillment-location { height:22px; border-radius:3px; display:inline-block; line-height:2; padding:0; font-size:11px; color:#fff; margin-right:5px; border:1px solid transparent; text-align:center } .label-fulfillment-location.label-AU { background:#00843d } .label-fulfillment-location.label-JP { background:#950000 } .label-fulfillment-location.label-CA { background:#3d3733 } .label-fulfillment-location.label-USA { background-color:#bd3d44 } .label-fulfillment-location.label-EU { background-color:#0054a3 } .label-fulfillment-location.label-MX { background-color:#006948 } .amazon-gtin .table-header { font-weight:700 } .amazon-gtin .table-header, .amazon-gtin .table-row { border-bottom:1px solid #ddd; margin:0!important } .amazon-gtin .table-header>div, .amazon-gtin .table-row>div { padding:5px 10px 5px 5px!important } .store-settings.store-marketplaces .store-marketplace-block__status { text-align:right; display:inline-block; width:100% } .store-settings.store-marketplaces .store-marketplace-block__status--active { color:#0c8512 } .store-settings.store-marketplaces .store-marketplace-block__status--error { color:#cf1814 } .store-settings.store-marketplaces .store-marketplace-block__status--inactive, .store-settings.store-marketplaces .store-marketplace-block__status--none { color:#555 } .store-settings.store-marketplaces .store-marketplace-block__status--pending-changes { color:#e79b39 } .store-settings.store-marketplaces .store-marketplace-block:last-child { border-bottom:none!important; padding-bottom:0!important } .store-settings.store-marketplaces .loading-overlay { display:none; width:100%; height:100% } .store-settings.store-marketplaces .loading-overlay.loading { display:block } .product-sync .nav>li>a { padding:10px } .product-sync .product-name { font-size:16px; line-height:24px; color:#222; word-wrap:break-word; width:100% } @media (min-width:768px) { .product-sync .product-name { display:table; table-layout:fixed } } .product-sync .product-name .external-id, .product-sync .product-name .product-name { word-break:break-all } .product-sync .product-name .sync-products__name--ignored .external-id, .product-sync .product-name .sync-products__name--ignored .product-name { color:#c5c5c5 } .product-sync .external-id { font-size:14px; line-height:18px; color:#555 } .product-sync .sync-products__convert-cell { width:140px } .variant-name { display:table; table-layout:fixed; width:100%; word-wrap:break-word; font-weight:700; color:#222; white-space:normal } #sync-search { float:right } #sync-search .search-box { height:43px } #sync-search a, #sync-search a:hover { text-decoration:none } @media (max-width:991.98px) { #sync-search { float:none; text-align:right } #sync-search .search-box { height:auto } } @media (max-width:767.98px) { .sync-products__container { margin-bottom:50px } } .sync-top-links>a { white-space:nowrap } .sync-top-links>a:first-child { margin-left:0 } .sync-top-links.sync-top-links--sync-variants>a { margin-left:0; margin-right:24px } #sync-variants-container tr.animate { transition:background .75s linear .2s } #sync-variants-container tr.highlight { background:#fdf7ef } #sync-variants-container tr.is-ignored td:first-child { color:grey } #sync-variants-container tr.is-out-of-stock { background-color:#ffedf0 } #sync-variants-container tr a.bulk-edit { text-transform:none; font-size:14px } #sync-variants-container tr a.bulk-edit.unselect { line-height:40px } #sync-variants-container tr th.bulk-edit-column { white-space:nowrap } #sync-variants-container th .selected-count-text, #sync-variants-container th a { text-transform:none } #sync-variants-container .original-products { display:inline-block } #sync-variants-container .original-products p { display:block } @media (max-width:767.98px) { .sync-products { border-bottom:none; border-collapse:separate } .sync-products tr { border-bottom:1px solid #ddd } .sync-products__button-edit, .sync-products__button-ignore, .sync-products__image, .sync-products__name, .sync-products__stats { display:block; width:100% } .sync-products__action-column { text-align:center!important } } .sync-products__image { width:86px } @media (max-width:767.98px) { .sync-products__image { clear:left; float:left; width:30% } } @media (max-width:767.98px) { .sync-products__info, .sync-products__name { padding-top:10px; clear:right; float:left; width:70% } } @media (max-width:767.98px) { .sync-products__action-column { clear:left; display:block } } .sync-products__stats { width:255px; min-width:225px } @media (max-width:767.98px) { .sync-products__stats { width:100%; clear:both } .sync-products__stats .sync-stats { display:block } } @media (min-width:992px) { .sync-products__stats { width:220px } } .sync-products__button-edit { width:70px; text-align:center } @media (max-width:767.98px) { .sync-products__button-edit { clear:left; float:left; width:50% } } .sync-products__button-edit-wide { width:70px; text-align:center } @media (max-width:767.98px) { .sync-products__button-edit-wide { clear:left; float:left; width:100% } } .sync-products__button-ignore { width:125px } @media (max-width:767.98px) { .sync-products__button-ignore { float:left; width:50% } } @media (max-width:767.98px) { .sync-products__button--add-to-warehouse { font-size:13px!important; padding:0 5px!important } } .sync-products__action-column { white-space:nowrap } .sync-products__action-column .dropdown { display:inline-block } .sync-products__action-column .dropdown .dropdown-menu { min-width:160px } .sync-products thead .fake-th { border-bottom:1px solid #ddd } @media (max-width:1199.98px) { .sync-products__header .btn-default { padding:0 10px!important } } .sync-edit-prices tbody input { padding-left:0; padding-right:0; display:inline-block; width:85px; text-align:center; vertical-align:middle; font-weight:700 } .sync-edit-prices tr.header-row { background:#f8f8f8; border-bottom:1px solid #e5e5e5 } .sync-edit-prices tr.header-row .text-bold { font-weight:700 } .sync-edit-prices td.negative-profit { color:#f0473d } .sync-edit-prices td.price-td { min-width:180px; width:180px } .sync-edit-prices td.price-td .styled-select { width:60px; background-position:75%!important } .sync-edit-prices td.price-td .input__price { width:100px } .variant-prices-edit__table-container table { min-width:720px } .variant-prices-edit__table-container table td, .variant-prices-edit__table-container table th { white-space:normal!important } .variant-prices-edit .variant-edit-price__retail-price .pf-form-group { margin:0; display:inline-block; vertical-align:middle } .variant-prices-edit .variant-edit-price__retail-price .pf-form-group input { padding-left:0; padding-right:0; display:inline-block; width:85px; text-align:center; vertical-align:middle; font-weight:700 } .variant-prices-edit .variant-edit-price__retail-price .pf-form-group .help-block { display:none } .variant-prices-edit .variant-edit-price__retail-price .pf-form-group.has-error input { border-color:#a94442!important; background-color:#f2dede!important } .variant-prices-edit__profit-inputs { min-width:310px } .variant-prices-edit__profit-inputs>* { display:inline-block; vertical-align:middle } .variant-prices-edit__profit-inputs .profit-change-type { width:160px; margin-right:8px; background-position:90%!important } .variant-prices-edit__profit-inputs .profit-type { width:65px; background-position:85%!important } .variant-prices-edit__profit-inputs .profit-amount { width:85px; margin-left:-1px } .variant-prices-edit__footer { padding-bottom:20px } .variant-prices-edit .variant-prices-edit-header { min-height:25px } .variant-prices-edit .variant-prices-edit-header__vd-checker label { font-weight:400 } @media (min-width:768px) and (max-width:1199.98px) { .sync-row-selector { min-width:630px } } .sync-row-selector .row { word-wrap:break-word } .sync-row-selector .product-detail-widget { white-space:normal } .sync-row-selector .checkbox-wrapper { width:60px } .sync-row-selector td.checkbox-wrapper { vertical-align:top; padding-top:25px } .sync-row-selector.sync-row-selector--selected .hidden-selected { display:none } .sync-row-selector.sync-row-selector--selected .hidden-deselected { display:block } .sync-row-selector.sync-row-selector--selected .hidden-deselected-inline { display:inline } .sync-row-selector .hidden-deselected, .sync-row-selector .hidden-deselected-inline { display:none } .sync-row-selector__row--selected { background-color:#fdf7ef } .sync-row-selector__row--selected .hidden-row-selected { display:none } @media (max-width:991.98px) { .sync-row-selector .tooltip.fade { z-index:1 } } @media screen and (max-width:500px) { .sync-row-selector .btn-danger { margin-bottom:10px!important } } .etsy-vacation-mode-cta { text-align:center } .etsy-vacation-mode-cta .btn { display:inline-block } .add-first-product { font-size:40px } .squarespace__number-list { width:40px; height:40px; margin:0 auto; border:5px solid #faebcc; border-radius:20px; color:#8a6d3b; background-color:#fff; text-align:center; font-weight:700; font-size:15px; line-height:31px; float:left } .squarespace__number-list__text { line-height:40px; font-size:15px; color:#8a6d3b } .squarespace__number-list__connect-line { width:1px; height:30px; margin:0 auto; background:#faebcc } .squarespace__step-image { max-width:350px; max-height:150px } .delete-modal-label { font-size:15px } .alternatives-arrows { width:30px; position:absolute; top:0; left:-60px } .integration-product-update__main-container { position:relative } .integration-product-update__main-container .variants-basic-edit table .form-item input { padding-left:0; padding-right:0; display:inline-block; width:85px; text-align:center; vertical-align:middle; font-weight:700 } .integration-product-update__main-container .form-item.has-error input { border-color:#a94442!important; background-color:#f2dede!important } .integration-product-update__main-container .loading-overlay { display:none; width:100%; height:100% } .integration-product-update.loading .loading-overlay { display:block } @media (max-width:767.98px) { .currency-banner-button { margin-right:0!important; margin-top:12px!important } } a.close-button { width:20px; height:20px; display:block; background-image:url(/static/images/layout/close@2x.png); background-size:contain } .billing-method__selector { position:relative } .billing-method__selector__list { list-style-type:none; position:absolute; border:1px solid #e5e5e5; background-color:#fff; width:100%; max-width:270px; z-index:1; cursor:pointer; box-shadow:0 0 12px rgba(0,0,0,.175) } .billing-method__selector__list :before { border-bottom-color:#bfbfbf; border-width:9px; margin-left:-9px; right:9px } .billing-method__selector .billing-method__option { align-items:center; border-bottom:1px solid #e5e5e5 } .billing-method__selector .billing-method__option__data { display:inline-block; overflow:hidden; flex:4 } .billing-method__selector .billing-method__option__mask { overflow:hidden; text-overflow:ellipsis } .billing-method__selector .billing-method__option__icon, .billing-method__selector .billing-method__option__top-icon { display:inline-block; width:52px; min-width:52px; height:32px } .billing-method__selector .billing-method__option__icon { flex:1 } .billing-method__selector .billing-method__option__tick { display:block; width:37px; height:14px; flex:1 } .billing-method__selector .billing-method__option__tick.active { background:url(/static/images/layout/dashboard/green_tick.svg) no-repeat 50% } .billing-method__selector .billing-method__option--expired { background-color:#feedec } .billing-method__selector .billing-method__option--expired:hover { background-color:#feedec!important; cursor:not-allowed } .billing-method__selector .billing-method__option:hover { background-color:#f8f8f8 } .billing-method__option--selected { padding:4px; cursor:pointer } @media (min-width:768px) { .billing-method__option--selected { max-width:270px } } .billing-method--hover:hover { border-color:#bbb; box-shadow:0 2px 4px 0 rgba(0,0,0,.25) } .billing-method__data { min-width:135px } .billing-method--expired { background:#feedec; border-color:#cf1814!important } .billing-method__method-icon { min-width:48px; height:32px; background-size:contain; background:url(/static/images/layout/dashboard/credit_card.svg) no-repeat 50% } .billing-method__method-icon__card-list-icon { margin-right:5px; margin-bottom:6px } .billing-method__info { color:#555; max-width:135px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap } .billing-method__address { overflow:hidden } @media (max-width:991.98px) { .billing-method__address { flex-basis:100% } } .billing-method__address-label { text-overflow:ellipsis; white-space:nowrap; overflow:hidden; max-width:520px } .billing-method__address .tooltip .tooltip-inner { max-width:none; width:96vw; margin-right:2vw } @media (min-width:540px) { .billing-method__address .tooltip .tooltip-inner { max-width:480px; width:auto; margin-right:0 } } .billing-method__buttons { flex:1 } .billing-method__modal { display:inline-flex } .billing-method--disabled { position:absolute; top:0; left:0; right:0; bottom:0; background-color:hsla(0,0%,100%,.5) } .billing-method--disabled-info { font-size:10px; color:#222; text-align:left; line-height:1.5; position:relative } .billing-method--disabled-info-warning { content:""; background-image:url(/static/images/layout/dashboard/alert-icon.svg); display:inline-block; width:13.7px; height:11.7px; margin-right:3px; vertical-align:middle } @media (min-width:992px) { .billing-method--disabled-info { max-width:130px; text-align:right; text-indent:15px } } .billing-method--credit-card { background:url(/static/images/layout/dashboard/credit_card.svg) no-repeat 50% } .billing-method--visa { background:url(/static/images/layout/dashboard/visa.svg) no-repeat 50% } .billing-method--visa-light { background:url(/static/images/layout/dashboard/visa-light.svg) no-repeat 50% } .billing-method--master-card, .billing-method--mastercard { background:url(/static/images/layout/dashboard/mastercard.svg) no-repeat 50% } .billing-method--master-card-light { background:url(/static/images/layout/dashboard/mastercard-light.svg) no-repeat 50% } .billing-method--no-card { background:url(/static/images/layout/dashboard/blank-method.svg) no-repeat 50% } .billing-method--american-express { background:url(/static/images/layout/dashboard/american-express.svg) no-repeat 50% } .billing-method--american-express-light { background:url(/static/images/layout/dashboard/american-express-light.svg) no-repeat 50% } .billing-method--jcb { background:url(/static/images/layout/dashboard/jcb.svg) no-repeat 50% } .billing-method--jcb-light { background:url(/static/images/layout/dashboard/jcb-light.svg) no-repeat 50% } .billing-method--diners { background:url(/static/images/layout/dashboard/diners.svg) no-repeat 50% } .billing-method--diners-light { background:url(/static/images/layout/dashboard/diners-club-light.svg) no-repeat 50% } .billing-method--maestro { background:url(/static/images/layout/dashboard/maestro.svg) no-repeat 50% } .billing-method--maestro-light { background:url(/static/images/layout/dashboard/maestro-light.svg) no-repeat 50% } .billing-method--discover { background:url(/static/images/layout/dashboard/discover.svg) no-repeat 50% } .billing-method--discover-light { background:url(/static/images/layout/dashboard/discover-light.svg) no-repeat 50% } .billing-method--cartes-bancaires-light { background:url(/static/images/layout/dashboard/cartes-bancaires-light.svg) no-repeat 50% } .billing-method--union-pay-light { background:url(/static/images/layout/dashboard/union-pay-light.svg) no-repeat 50% } .billing-method--wallet { background:url(/static/images/layout/dashboard/wallet.svg) no-repeat 50% } .billing-method--postpay { background:url(/static/images/layout/icons/wallet.png) no-repeat 50% } .billing-method--paypal { background:url(/static/images/layout/dashboard/paypal.svg) no-repeat 50% } .billing-method--sofort { background:url(/static/images/layout/dashboard/sofort.svg) no-repeat 50% } .billing-method--klarna, .billing-method--klarna-pay-now, .billing-method--klarna-slice-it { background:url(/static/images/layout/dashboard/klarna.svg) no-repeat 50% } .billing-method--ach { background:url(/static/images/layout/dashboard/ach.svg) no-repeat 50% } .billing-method--can-select { background-color:#fff } .billing-method--can-select input[type=radio] { margin:0 10px 0 0 } .has-transition .billing-method { animation-duration:3s; animation-name:default-method-transition } @keyframes default-method-transition { 0% { opacity:0; border:1px solid #e5e5e5 } 20% { opacity:1; border:2px solid #89b93a } 70% { opacity:1; border:2px solid #89b93a } to { opacity:1; border:1px solid #e5e5e5 } } .c-chips { display:block; padding:0!important; margin:0 } .c-chips__item { list-style:none; display:inline-flex; flex-direction:row; align-items:center; padding:0 10px 0 7px; margin:8px 8px 8px 0!important; font-size:14px; line-height:17px; background-color:#e5e5e5 } .c-chips__remove { margin-left:7px; position:relative; display:inline-block; width:9px; height:9px; padding:0 } .c-chips__remove:after, .c-chips__remove:before { content:""; position:absolute; width:11px; height:2px; background-color:#888; border-radius:1px; top:4px; left:-1px } .c-chips__remove:before { transform:rotate(45deg) } .c-chips__remove:after { transform:rotate(-45deg) } .billing-discounts__board { text-align:center; display:-webkit-box; display:-moz-box; display:-ms-flexbox; display:-webkit-flex; display:flex } @media (max-width:991.98px) { .billing-discounts__board { -webkit-flex-direction:column; -moz-flex-direction:column; -ms-flex-direction:column; flex-direction:column } } .billing-discounts__board .img-wrapper { display:-webkit-box; display:-moz-box; display:-ms-flexbox; display:-webkit-flex; display:flex; -webkit-flex-direction:column; -moz-flex-direction:column; -ms-flex-direction:column; flex-direction:column; -webkit-justify-content:center; -moz-justify-content:center; -ms-justify-content:center; justify-content:center; -ms-flex-pack:center } .billing-discounts__board .img-wrapper>img { width:100%; max-width:54px } @media (max-width:991.98px) { .billing-discounts__board__discount:not(:last-of-type), .billing-discounts__board__turnover:not(:last-of-type) { border-bottom:1px solid #e5e5e5 } } @media (min-width:992px) { .billing-discounts__board__discount:not(:last-of-type), .billing-discounts__board__turnover:not(:last-of-type) { border-right:1px solid #e5e5e5 } } @media (max-width:991.98px) { .billing-discounts__board__link { -webkit-box-ordinal-group:30; -moz-box-ordinal-group:30; -ms-flex-order:30; -webkit-order:30; order:30 } } @media (max-width:991.98px) { .billing-discounts__board__current-discount { -webkit-flex-direction:column; -moz-flex-direction:column; -ms-flex-direction:column; flex-direction:column } } .billing-discounts__boost-sales .img-wrapper { text-align:right; padding:0; -webkit-justify-content:start; -moz-justify-content:start; -ms-justify-content:start; justify-content:start; -ms-flex-pack:start } @media (max-width:991.98px) { .billing-discounts__boost-sales { -webkit-flex-direction:column; -moz-flex-direction:column; -ms-flex-direction:column; flex-direction:column } } .billing-discounts__separator { color:#e5e5e5; margin:8px 0 0 } .billing-discounts__sample-info--hover-down { margin-bottom:-24px } .billing-discounts__sample-info--hover-up { margin-top:-24px } @media only screen and (min-width:992px) { .billing-discounts__sample-progress--hover-up { margin-top:-16px } } .billing-discounts__sample-progress .pb-field { background-color:#d8d8d8; height:8px } @media only screen and (min-width:992px) { .billing-discounts__sample-progress .pb-field__profit { margin-top:-40px; left:0 } } .billing-discounts__sample-progress .img-left { margin-right:-4px; z-index:2 } .billing-discounts__sample-progress .img-right { margin-left:-4px; z-index:2 } .billing-discounts__sample-progress .img-element__pointer { margin-top:-24px } .billing-discounts__sample-progress .img-element__pointer--on-left { right:0 } .custom__dropdown-menu { position:relative } .custom__dropdown-menu .dropdown-menu { color:#222; border-radius:0; padding:0; box-shadow:0 0 12px rgba(0,0,0,.175); border-color:#bfbfbf; right:-15px } .custom__dropdown-menu .dropdown-menu:after, .custom__dropdown-menu .dropdown-menu:before { bottom:100%; border:solid transparent; content:" "; height:0; width:0; position:absolute; pointer-events:none } .custom__dropdown-menu .dropdown-menu:after { border-bottom-color:#fff; border-width:8px } @media (max-width:991.98px) { .custom__dropdown-menu .dropdown-menu:after { margin-right:-8px; left:1px } } @media (min-width:992px) { .custom__dropdown-menu .dropdown-menu:after { margin-left:-8px; right:10px } } .custom__dropdown-menu .dropdown-menu:before { border-bottom-color:#bfbfbf; border-width:9px } @media (max-width:991.98px) { .custom__dropdown-menu .dropdown-menu:before { margin-right:-9px } } @media (min-width:992px) { .custom__dropdown-menu .dropdown-menu:before { margin-left:-9px; right:9px } } .custom__dropdown-menu .dropdown-menu li { cursor:pointer } .custom__dropdown-menu .dropdown-menu__input-with-button .cta-link { position:absolute; right:16px; color:#1164a9; text-align:right } .custom__dropdown-menu .dropdown-menu__input-with-button .input-field { position:relative; width:100%; min-width:0 } .custom__dropdown-menu .dropdown-menu__input-with-button .input-field::-ms-clear { display:none } .custom__dropdown-menu__tick { display:block; width:17px; height:14px; margin-left:20px; margin-right:10px } .custom__dropdown-menu__tick.active { background:url(/static/images/layout/dashboard/green_tick.svg) no-repeat 50% } .custom__dropdown-menu.open .custom__dropdown-menu__toggle { -webkit-transform:rotate(180deg); transform:rotate(180deg) } .custom__dropdown-menu__toggle { background:url(/static/images/layout/nav-arrow.png) no-repeat 95%; width:10px; height:10px; margin-left:5px } @media not all,only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-resolution:2dppx) { .custom__dropdown-menu__toggle { background:url(/static/images/retina/nav-arrow@2x.png) no-repeat 95%; background-size:10px } } .billing-history .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody { overflow-y:visible!important; overflow-x:auto!important; position:inherit!important } .billing-history .DTFC_LeftBodyLiner { overflow-y:hidden!important; width:auto!important } .billing-history .DTFC_RightWrapper { display:none } .billing-history .customerEmail { white-space:nowrap; display:inline-block; vertical-align:middle; width:100% } .billing-history .billing-address-label, .billing-history .customerEmail { overflow:hidden; text-overflow:ellipsis } .billing-history .table-container { min-height:100px } .billing-history .history { border:1px solid #e5e5e5; border-bottom:none } .billing-history .history table.dataTable thead tr th { text-align:left } .billing-history .history table.dataTable td { text-align:left; max-width:120px } .billing-history .history table.dataTable .first-column { width:66%; min-width:240px; white-space:normal; word-wrap:break-word } .billing-history .history .dataTables_empty { padding:48px; color:#555; visibility:visible!important } .billing-history .history .account-image { width:17px; height:17px } .billing-history .billing__method { align-items:center } .billing-history .billing__method--customer { max-width:100%; width:fit-content } .billing-history .billing__method--customer--name { overflow:hidden; text-overflow:ellipsis } .billing-history .billing__method--container { white-space:nowrap; text-overflow:ellipsis; vertical-align:super } .billing-history .billing__method--mask { display:inline-block; max-width:calc(100% - 65px); width:fit-content; overflow:hidden; white-space:nowrap; text-overflow:ellipsis } .billing-history .billing__method--icon { display:inline-block; width:52px; min-width:52px; height:32px; vertical-align:sub } .billing-history .billing__method--store-name { overflow:hidden; white-space:nowrap; text-overflow:ellipsis; display:inline-block; vertical-align:middle; width:100% } .billing-history__toggle { clear:both; padding-bottom:24px; border-top:1px solid #e5e5e5; font-size:20px; font-weight:700 } .billing-history__toggle a { color:#000 } .billing-history__toggle a:hover { color:#555!important; text-decoration:none } .billing-history__toggle a[aria-expanded=true] span.arrow { transform:rotate(-180deg) } .billing-history__toggle a span.arrow { background:url(/static/images/retina/arrow-profile@2x.png) no-repeat 50% 50%; background-size:10px 6px; transition:transform 333ms; width:10px; height:12px; display:inline-block; margin-right:8px } .billing-history .has-fixed-col-shadow .history .dataTables_scroll table.dataTable tbody tr td:first-of-type { visibility:hidden } .billing__intro { font-size:15px; line-height:22px; border:1px solid #e5e5e5; height:250px; display:flex; cursor:pointer } .billing__intro__heading { font-weight:700; display:flex; align-items:center } .billing__intro__heading:before { content:""; min-width:44px; height:44px; display:block; position:relative; margin-right:12px } .billing__intro__heading--account-billing-method:before { background:url(/static/images/layout/dashboard/intro/ill-acc.svg) } .billing__intro__heading--payment-history:before { background:url(/static/images/layout/dashboard/intro/ill-hist.svg) } .billing__intro__heading--volume-discounts:before { background:url(/static/images/layout/dashboard/intro/ill-disc.svg) } .billing__intro__heading--wallet:before { background:url(/static/images/layout/dashboard/intro/ill-wallet.svg) } .billing__intro__heading--currency:before { background:url(/static/images/layout/dashboard/intro/ill-currency.svg) } .billing__intro__heading--legal-info:before { background:url(/static/images/layout/dashboard/intro/ill-legal-info.svg) } .billing__intro__content { flex-grow:1; color:#555 } .billing__intro__faq { color:#555; font-size:15px; line-height:21px } .billing__intro__separator { color:#e5e5e5 } .billing__intro__turnover { color:#222; font-weight:700 } .billing__store-switcher .store-switcher .form-group { margin-bottom:0!important } @media (max-width:991.98px) { .billing__store-switcher .store-switcher .form-group { width:100% } } .billing__store-switcher .store-switcher .form-group .switcher-container { display:block!important } @media (min-width:992px) { .billing__store-switcher .store-switcher { margin-bottom:0!important } } @media (max-width:767.98px) { .billing__store-switcher .store-switcher { margin-bottom:0!important } } @media (max-width:991.98px) { .billing__store-switcher .form-group { width:100% } } .billing__store-switcher select.form-control.styled-select.switcher { margin-top:0 } @media (max-width:991.98px) { .billing__store-switcher select.form-control.styled-select.switcher { display:block; min-width:100% } } .billing__legal-info label { margin-bottom:8px!important } .billing__heading { font-size:20px; font-weight:700; padding-bottom:15px } .billing__description { color:#555; font-size:14px } .billing__default-billing-method { border:1px dashed #e5e5e5; display:flex; justify-content:center } .billing__default-billing-method a { cursor:pointer; padding:0 4px } .billing__default-currency-info { font-weight:700; font-size:14px } .billing__loading-overlay-text { color:#222; font-size:50px; font-weight:700; top:50%; position:absolute; padding-top:30px; left:0; right:0; text-align:center } .billing .loading-overlay__text { top:50%; padding-top:30px } .billing--disabled { position:absolute; top:0; left:0; right:0; bottom:0; background-color:hsla(0,0%,100%,.5) } .pf-medal { background-size:100%; width:54px; height:56px; border-radius:50%; margin:4px; position:relative } .pf-medal--lock { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%) } .pf-medal--small { width:32px; height:32px } .pf-medal--locked { filter:opacity(.5) } .pf-medal--green { background-image:url(/static/images/icons/pf-medal-green.svg) } .pf-medal--bronze { background-image:url(/static/images/icons/pf-medal-bronze.svg) } .pf-medal--silver { background-image:url(/static/images/icons/pf-medal-silver.svg) } .pf-medal--gold { background-image:url(/static/images/icons/pf-medal-gold.svg) } .pf-medal--platinum { background-image:url(/static/images/icons/pf-medal-platinum.svg) } .pf-medal--executive { background-image:url(/static/images/icons/pf-medal-executive.svg) } .billing-resale-certificates .category-label { display:unset; font-weight:unset; margin-bottom:unset } .billing-resale-certificates .add-glyphicon { color:#b1b1b1; -webkit-text-stroke:1.5px #fff } .billing-resale-certificates .pagination { margin:32px 0 0 } .billing-resale-certificates__pagination .pagination { margin-top:32px } .billing-resale-certificates .table-container { min-height:100px } .billing-resale-certificates .certificates { border:1px solid #e5e5e5; border-top:none; border-bottom:none } .billing-resale-certificates .certificates table.dataTable td, .billing-resale-certificates .certificates table.dataTable thead tr th { text-align:left } .billing-resale-certificates .certificates .dataTables_scroll table.dataTable tbody tr td:first-of-type a.merchant { visibility:hidden } .billing-resale-certificates .certificates .dataTables_empty { padding:48px; color:#555; visibility:visible!important } .billing-resale-certificates .button { width:auto } @media (max-width:767.98px) { .billing-resale-certificates .button { width:100%!important } } .billing-resale-certificates .control-label { font-size:16px } .billing-resale-certificates .label-valid { background-color:#bcd694 } .billing-resale-certificates .secondary-row { background-color:#f8f8f8 } @media (max-width:767.98px) { .billing-resale-certificates .certificate-geo-chart { height:240px } } .billing-resale-certificates .secondary-row { line-height:55px } .billing-resale-certificates .parent-accordion-icon { align-self:center!important; margin-top:4px; max-height:24px!important } @media (max-width:991.98px) { .billing-resale-certificates .parent-main-text { font-weight:700 } } .billing-resale-certificates .table .child-table-cell { font-size:16px!important; line-height:24px!important } .billing-resale-certificates .table .table-head { justify-content:space-between } .certificate .details { display:block; text-align:left; cursor:pointer } .certificate .details:before { width:20px; height:20px; display:inline-block; content:""; background:url(/static/images/layout/dashboard/ic_visibility.svg) no-repeat 50%; margin-right:5px; vertical-align:middle } @media (max-width:991.98px) { .review-payment .white-block { margin-left:-15px; margin-right:-15px; border-left-color:#fff; border-right-color:#fff } } .review-payment .breadcrumbs-flow { width:auto } .billing-tax-exemption__preview .row { padding-bottom:10px } .billing-tax-exemption__certificate-label, .billing-tax-exemption__preview .row { overflow:hidden; white-space:nowrap; text-overflow:ellipsis } .billing-tax-exemption__preview-label { text-align:left } @media (min-width:768px) { .billing-tax-exemption__preview-label { text-align:right } } .billing-tax-exemption .vat-prefix-input::placeholder { color:#555!important } .billing-tax-exemption__form-ni-warning-area { width:auto; height:auto; padding:12px 12px 16px 24px; border:1px solid #fce7b8; background-color:#fef8e9 } .billing-tax-exemption .billing-tax-exemption__form_ni_header, .billing-tax-exemption .billing-tax-exemption__form_ni_text { color:#bd7417; display:block } .billing-tax-exemption__form_ni_header { font-weight:700 } .billing-tax-exemption__form_ni_text { font-weight:400; white-space:normal } .billing__sidebar .export { display:flex; flex-direction:row; align-items:center; padding-bottom:24px; position:relative } .billing__sidebar .export__controls { height:37px; display:inline-flex; align-items:center } .billing__sidebar .export__range { display:inline-block; width:100% } @media (min-width:992px) { .billing__sidebar .export__range { width:auto } } .billing__sidebar .export__button { display:flex; flex-direction:row; align-items:center; margin-left:20px; cursor:pointer } .billing__sidebar .export__button:before { display:block; content:""; min-width:12px; height:15px; background-image:url(/static/images/layout/dashboard/ic_download.svg); margin-right:9px } .billing-transactions { margin-bottom:57px } .billing-transactions .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody { overflow-y:visible!important; overflow-x:auto!important; position:inherit!important } .billing-transactions .DTFC_LeftBodyLiner { overflow-y:hidden!important; width:auto!important } .billing-transactions .DTFC_RightWrapper { display:none } .billing-transactions__pagination .pagination { margin-top:32px } .billing-transactions__buttons { border-bottom:1px solid #e5e5e5 } .billing-transactions .table-container { min-height:100px } .billing-transactions .transactions { border:1px solid #e5e5e5; border-bottom:none } .billing-transactions .transactions table.dataTable tbody tr.transaction .status-cell, .billing-transactions .transactions table.dataTable thead tr th { text-align:center } .billing-transactions .transactions table.dataTable tbody tr.transaction--hover { background-color:#f5f5f5 } .billing-transactions .transactions table.dataTable tbody tr.transaction--failed td { background-color:#f9e8e8 } .billing-transactions .transactions table.dataTable tbody tr.transaction--failed.transaction--hover td { background-color:#f5f5f5 } .billing-transactions .transactions table.dataTable tbody tr.transaction td { padding:10px 8px; text-align:center } @media (min-width:768px) { .billing-transactions .transactions table.dataTable tbody tr.transaction td:first-of-type { padding-right:0 } } .billing-transactions .transactions .dataTables_scroll table.dataTable tbody tr td:first-of-type a.merchant { visibility:hidden } @media (min-width:768px) { .billing-transactions .transactions .dataTables_scroll table.dataTable tbody tr td:nth-of-type(2) div.merchant__details--visible { visibility:hidden } } .billing-transactions .switcher-container { margin-top:0!important } .transaction__store-switcher .store-switcher label { display:none } .transaction__order, .transaction__order .merchant:before { cursor:pointer } .transaction .merchant { color:#222; flex-direction:row; align-items:center } .transaction .merchant div { content:""; min-width:48px; height:32px; display:inline-block; position:relative } .transaction .merchant--postpay { background:url(/static/images/layout/icons/wallet.png) no-repeat 50%; background-size:contain } .transaction .merchant--card, .transaction .merchant--maestro { background:url(/static/images/layout/dashboard/credit_card.svg) no-repeat 50% } .transaction .merchant--ach { background:url(/static/images/layout/dashboard/ach.svg) no-repeat 50% } .transaction .merchant--none, .transaction .merchant--wallet { background:url(/static/images/layout/dashboard/wallet.svg) no-repeat 50% } .transaction .merchant--missing { background:url(/static/images/layout/dashboard/blank-method.svg) no-repeat 50% } .transaction .merchant--visa { background:url(/static/images/layout/dashboard/visa.svg) no-repeat 50% } .transaction .merchant--diners { background:url(/static/images/layout/dashboard/diners.svg) no-repeat 50% } .transaction .merchant--master-card, .transaction .merchant--mastercard { background:url(/static/images/layout/dashboard/mastercard.svg) no-repeat 50% } .transaction .merchant--american-express { background:url(/static/images/layout/dashboard/american-express.svg) no-repeat 50% } .transaction .merchant--pay-pal, .transaction .merchant--paypal { background:url(/static/images/layout/dashboard/paypal.svg) no-repeat 50% } .transaction .merchant--sofort { background:url(/static/images/layout/dashboard/sofort.svg) no-repeat 50% } .transaction .merchant--klarna, .transaction .merchant--klarna-pay-now, .transaction .merchant--klarna-slice-it { background:url(/static/images/layout/dashboard/klarna.svg) no-repeat 50% } .transaction .merchant--jcb { background:url(/static/images/layout/dashboard/jcb.svg) no-repeat 50% } .transaction .merchant--discover { background:url(/static/images/layout/dashboard/discover.svg) no-repeat 50% } .transaction .merchant--maestro { background:url(/static/images/layout/dashboard/maestro.svg) no-repeat 50% } .transaction .merchant__details { display:none } @media (min-width:768px) { .transaction .merchant__details { display:block } } .transaction .merchant__details--visible { text-align:left } .transaction .merchant__title { line-height:22px; width:155px; white-space:normal } .transaction .merchant__sub-title { color:#555; font-size:12px; line-height:16px } .transaction .merchant__error { cursor:default; font-size:13px; color:#f34536; white-space:normal } .transaction__error-detail-tooltip { background:url(/static/images/layout/dashboard/failed_tooltip.svg); display:inline-block; background-size:cover } .transaction .status-tooltip, .transaction__error-detail-tooltip { width:22px; height:22px; position:absolute; top:-11.5px; right:-11.5px } .transaction .status-tooltip { background-color:#e5e5e5; font-size:15px; border-radius:50%; display:flex; align-items:center; justify-content:center; border:2px solid #f8f8f8 } .transaction .status-tooltip--completed { background-color:#c9e8c6 } .transaction .status-tooltip--failed { background-color:#f6908f } .transaction .status-tooltip--pending { background-color:#f0ad4e } .transaction .status { border-radius:3px; color:#333; font-size:13px; font-weight:400; line-height:16px; padding:4px 12px; position:relative; background-color:#e5e5e5 } .transaction .status--completed { background-color:#c9e8c6 } .transaction .status--failed { background-color:#f6908f; cursor:pointer } .transaction .status--pending { background-color:#f0ad4e } .transaction .amount { color:#222 } .transaction .amount--negative { color:#f34536 } .transaction .amount--negative:before { content:"-" } .transaction .amount--positive { color:green } .transaction .amount--positive:before { content:"+" } .transaction .download { display:block } .transaction .download:before { width:20px; height:20px; display:inline-block; content:""; background:url(/static/images/layout/dashboard/ic_visibility.svg) no-repeat 50%; margin-right:5px; vertical-align:middle } #dashboard .transaction-order #close-modal { display:none } .unconfirmed-payments__description { min-width:168px } .unconfirmed-payments__status { width:300px } .unconfirmed-payments__totals { width:280px } .billing-wallet__buttons .btn.btn-danger { margin-left:3px } .billing-wallet input[type=radio] { margin:0 10px 0 0 } .billing-wallet--icon { width:48px; height:32px; background:url(/static/images/layout/dashboard/wallet.svg) no-repeat 50% } .billing-wallet--empty { color:#9d4a46!important } .billing-wallet__auto-recharge { cursor:pointer } .billing-wallet__auto-recharge--amount-value.active { color:#3b8d33!important } .billing-wallet__auto-recharge__amount { line-height:20px; padding:5px 0 } .billing-wallet__auto-recharge__amount:hover { background-color:#f8f8f8 } .billing-wallet__auto-recharge .dropdown-menu { width:240px; top:125% } @media (max-width:767.98px) { .billing-wallet__auto-recharge .dropdown-menu { width:120px } } .billing-wallet__auto-recharge .dropdown-menu li:first-of-type { display:flex; align-items:center; border-bottom:1px solid #e5e5e5 } .billing-wallet__auto-recharge .dropdown-menu li:first-of-type span { margin-right:2px; width:25px } .billing-wallet__auto-recharge .dropdown-menu li:first-of-type span:not(.active) { display:none } .billing-wallet__auto-recharge .dropdown-menu li:first-of-type input { display:inline-block; width:100%; box-shadow:inset 0 2px 3px 0 rgba(0,0,0,.05); line-height:18px; padding:10px 12px; margin:8px } .wallet-block .wallet-header { cursor:pointer } .wallet-block:hover { box-shadow:0 4px 8px 0 rgba(0,0,0,.08) } .wallet-block__chevron { flex-grow:1 } .wallet-block__currency { width:40px; height:40px; font-size:15px; line-height:38px; border-radius:50% } .wallet-block__currency .large-symbol { font-size:21px } img.withdraw-img { max-height:400px; max-width:100% } .billing__store__image { height:40px; width:40px; vertical-align:middle } .billing__store__heading { border-top:1px solid #e5e5e5 } .billing__store__currency-switcher { width:100%!important; height:40px!important; vertical-align:middle } .billing__store__save-button-longer { vertical-align:middle; margin-left:8px } @media (max-width:767.98px) { .billing__store__save-button-longer { width:100%; margin-left:0; margin-top:12px } } .billing__store__save-button { vertical-align:middle; margin-left:8px } @media (max-width:1199.98px) { .billing__store__save-button { width:100%; margin-left:0; margin-top:12px } } .billing__store-billing_methods div.row { border:1px solid #e5e5e5; border-bottom:0 } .billing__store-billing_methods div.row:last-of-type { border-bottom:1px solid #e5e5e5 } .billing__store-billing_methods__heading { color:#555; font-size:16px; line-height:24px; font-weight:700 } .billing__store-billing_methods__heading--main { border-top:1px solid #e5e5e5 } .order-intro__arrow { position:absolute; width:110px; right:60px; top:65px } @media (min-width:992px) { .embedded .order-intro__arrow { right:calc(50% - 380px) } } @media (min-width:1200px) { .embedded .order-intro__arrow { right:calc(50% - 290px) } } @media (min-width:1600px) { .embedded .order-intro__arrow { right:calc(50% - 90px) } } .order-intro { position:relative } .order-intro__buttons { display:inline-block } .order-intro__buttons a { margin:10px 0 0; width:150px } @media (min-width:768px) { .order-intro__buttons a { margin:0 10px } } .order-popup>tbody>tr:first-child>td { border-top:none } .order-popup>tbody>tr.item.shipped>td { background-color:#f3f5df } .order-popup>tbody>tr.item.reshipped>td { background-color:#c4e3f3 } .order-popup>tbody>tr.item.returned>td { background-color:#f5dede } .order-popup>tbody>tr.item.onhold>td { background-color:#c4e3f3 } .order-popup>tbody>tr.shipment { border-bottom:1px solid #fff } .order-popup>tbody>tr.shipment>td>strong { font:700 14px ProximaNova,sans-serif } .order-popup>tbody>tr.shipment.onhold>td { background-color:#add8e6 } .order-popup>tbody>tr.shipment.shipped>td { background-color:#dbe3a2 } .order-popup>tbody>tr.shipment.reshipped>td { background-color:#95ccea } .order-popup>tbody>tr.shipment.returned>td { background-color:#e49f9f } .order-popup>tbody>tr.shipment.return-to-warehouse>td { background-color:#fff3f4 } .order-popup>tbody>tr.shipment.return-to-warehouse>td a.linked { color:#1164a9!important } .order-popup>tbody>tr.shipment.packaged>td, .order-popup>tbody>tr.shipment.printed>td, .order-popup>tbody>tr.shipment.started>td { background-color:#dbe3a2 } .order-popup>tbody>tr.shipment.onhold { background-color:#add8e6 } .order-popup>tbody>tr.shipment.pending { background-color:#fee79b } .order-popup>tbody>tr.shipment.canceled>td, .order-popup>tbody>tr.shipment.outstock>td { background-color:#f0f0f0 } .order-popup>tbody>tr.shipment .label-fulfillment-location { width:auto; height:22px; border-radius:3px; display:inline-block; line-height:2; padding:0 4px; font-size:11px; color:#fff; margin-right:5px; border:1px solid transparent; text-align:center } .order-popup>tbody>tr.shipment.label-AU { background:#00843d } .order-popup>tbody>tr.shipment.label-JP { background:#950000 } .order-popup>tbody>tr.shipment.label-CA { background:#3d3733 } .order-popup>tbody>tr.shipment .label-USA { background-color:#bd3d44 } .order-popup>tbody>tr.shipment .label-EU { background-color:#0054a3 } .order-popup>tbody>tr.shipment.label-MX { background-color:#c84e02 } .order-popup>tbody>tr.shipment .pf-badge-location { white-space:nowrap } .order-popup>tbody>tr.shipment .pf-badge-location i { font-size:15px } .order-popup>tbody>tr.shipment .tooltip { left:0!important } .order-popup>tbody>tr.shipment .tooltip .tooltip-arrow { left:20%!important } .order-popup>tbody>tr.shipment .tooltip .tooltip-inner { max-width:none } .order-popup>tbody>tr.shipment a.tracking-number { color:#38557f; font-weight:700; text-decoration:none } .order-popup>tbody>tr.shipment p a:hover { border-bottom:1px dotted #222!important } .order-popup>tbody>tr div.tooltip.top div.tooltip-arrow { top:auto!important } .order-popup>tbody>tr.bordered>td { border-top:1px solid #e5e5e5; border-bottom:1px solid #e5e5e5; padding:10px 7px 6px 11px } .order-popup>tbody>tr.bordered:last-of-type>td { border-bottom:none } .order-popup>tbody>tr.bordered>td>strong { font:700 15px ProximaNova,sans-serif; text-transform:uppercase; line-height:18px } .order-popup>tbody>tr.bordered:hover, .order-popup>tbody>tr.bordered:hover>td { background-color:#fff } .order-popup>tbody>tr>td>small { color:#787878 } .order-popup>tbody .estimated-date { margin:10px 0 0 } .order-popup>tbody .report-icon { float:none; height:14px; margin-left:0 } .order-popup>tbody .thumb-popover { background:transparent; border:none; margin:0; padding:0; max-width:165px; display:none; position:absolute; top:35px; left:0; z-index:100; -webkit-border-radius:0; -moz-border-radius:0; border-radius:0 } .order-popup>tbody .thumb-popover>div.arrow { background:url(/static/images/layout/thumbnail-arrow.png) no-repeat 0 0; width:63px; height:10px; position:absolute; top:-9px; left:0 } .order-popup>tbody .thumb-popover>div.inner { min-width:63px; background-color:#fff; border:1px solid #c8c8c8; margin:0; padding:10px; float:left; overflow:hidden } .order-popup>tbody .thumb-popover>div.inner>h3 { margin-top:0; font-size:20px; line-height:21px } .order-popup>tbody .thumb-popover>div.inner>img { background-color:#f0f0f0 } .order-popup>tbody .thumb-popover>div.inner:nth-child(odd) { margin:0 0 0 -1px } .order-popup>tbody .item-metrics li:first-of-type .tooltip { max-width:220px } .order-popup__display-name { font-size:15px; color:#222 } .order-popup__view-content { white-space:nowrap; color:#38557f; margin-right:5px } .order-popup__view-content--unavailable { cursor:default; color:#555 } .order-popup__view-content--unavailable:focus, .order-popup__view-content--unavailable:hover { color:#555; text-decoration:none } .order-popup__popover-attribute { margin-top:5px } .order-popup__popover-attribute strong { font-size:14px } .order-popup__label { color:#fff; background-color:#629800; position:relative; padding:3px 4px 3px 22px; vertical-align:middle; margin-right:5px; font-size:10px; font-family:ProximaNova,sans-serif!important; font-weight:400 } .order-popup__label:before { position:absolute; left:4px; top:3px; font-family:icomoon!important } .order-popup__hold-message--active { animation:highlight-message 20s } @keyframes highlight-message { 0% { background:#eefaff } to { background:#fff } } .order-popup__hold-message__flag-icon { position:absolute; right:-25px; top:0 } .order-popup__copyright-link { color:#fff; font-weight:700; font-size:16px } .order-popup__copyright-link:hover { color:#fff; text-decoration:underline!important } .order-popup-history { position:relative } .order-popup-history h2.history-title { font-size:23px!important; font-weight:700!important; line-height:28px!important; padding-bottom:7px; border-bottom:1px solid #e5e5e5 } .order-popup-history__list { border-left:1px solid #e5e5e5; margin-left:7px; padding:0 0 0 6px } .order-popup-history__item { list-style:none; padding:26px 16px 10px; position:relative } .order-popup-history__item:first-of-type { padding-top:21px } .order-popup-history__item:first-of-type .timeline-icon { top:25px } .order-popup-history__item span { display:block; color:#222; font-size:15px; line-height:22px } .order-popup-history__item .timeline-icon { position:absolute; left:-15px; top:29px; width:17px; height:17px; border:2px solid #e5e5e5; border-radius:10px; background-color:#fff } .order-popup-history__item .item-date .date-text, .order-popup-history__item .item-date .shipment-number { font-size:12px; line-height:16px; display:inline-block } .order-popup-history__item .item-date .date-text { padding:3px 0 0; color:#555 } .order-popup-history__item .item-date .shipment-number { color:#222; background-color:#f7c657; padding:3px 6px 0; margin-left:5px } @media (max-width:991.98px) { .order-popup-history__item .item-date .date-text { display:block } .order-popup-history__item .item-date .shipment-number { margin-left:0 } } .order-popup-history__item .item-contents { word-wrap:break-word } .order-popup-history__item .item-contents .report-content { color:#555 } .order-popup-history__item .item-contents__approval-sheet-product-image { text-align:center; width:116px } .order-popup-history__item .item-contents__approval-sheet-product-image>img { height:116px } .order-popup-history__item .item-contents__approval-sheet-colors { width:10px; height:10px } .order-popup-history__item .item-contents__approval-sheet-design { max-width:300px } .order-popup-history__item .item-contents__approval-sheet-design>img { max-width:100% } .order-popup-history__item--report-action-required .timeline-icon, .order-popup-history__item--report-related .timeline-icon, .order-popup-history__item--report-submitted .timeline-icon { border:none; border-radius:0; background:url(/static/images/layout/icons/problem_report.svg) no-repeat; width:23px; height:21px; left:-16px } .order-popup-history__item--approval-sheet .hold-message-background, .order-popup-history__item--on-hold .hold-message-background, .order-popup-history__item--report-closed .report-completed-message-background { position:absolute; top:10px; left:-7px; width:calc(100% + 7px); height:100%; background-color:#dbf2fa; z-index:-1 } .order-popup-history__item--approval-sheet.order-popup-history__item--success .hold-message-background { background-color:#e5f5e4 } .order-popup-history__item--report-closed .timeline-icon, .order-popup-history__item--success .timeline-icon { border:none; border-radius:0; background:url(/static/images/layout/icons/problem_report_closed.svg) no-repeat; width:23px; height:21px; left:-14px } .order-popup-history__item--report-closed .report-completed-message-background, .order-popup-history__item--success .report-completed-message-background { background-color:#e5f5e4 } .order-popup-history__item--changes-requested .timeline-icon, .order-popup-history__item--on-hold .timeline-icon { top:30px; left:-14px; width:16px; height:16px; border-radius:8px; border:none; background:url(/static/images/layout/icons/icon_flag_white.svg) #1164a9 no-repeat 50% 50%/70% } .order-popup-history__item:first-of-type .hold-message-background, .order-popup-history__item:first-of-type .report-completed-message-background { top:-1px; height:calc(100% + 10px) } .order-popup-history__item--report-action-required .form-container { padding-top:12px } .order-popup-history__item--report-action-required .form-container label { display:inline-block; width:100% } .order-popup-history__item--report-action-required .form-container label span.radio-container { width:calc(100% - 23px); display:inline-block; float:right } .order-popup-history__item--report-action-required .form-container label span.radio-label { color:#222; font-size:15px; font-weight:400; line-height:22px } .order-popup-history__item--report-action-required .form-container label span.radio-sub-label { font-size:12px; font-weight:400; line-height:14px } .order-popup-history__item--report-action-required .form-container label span.radio-sub-label.info-label { color:#0c8512 } .order-popup-history__item--report-action-required .form-container label span.radio-sub-label.warning-label { color:#cf1814 } .order-popup-history__item--report-action-required .form-container input { margin-right:10px } .order-popup-history__item--report-action-required .form-container button.submit-action { margin-top:12px; width:124px } .order-popup-history__item--report-action-required .form-container span.border-alert { display:block; position:absolute; top:42px; left:-8px; height:calc(100% - 52px); width:3px; background-color:#f7c657 } .order-popup-history__item--report-action-required .form-container .error-message { margin-top:15px; color:#cf1814 } .order-popup-history__item--report-action-required .form-container .report-completed { color:#555 } .order-popup-history__item--report-action-required .form-container .report-completed b { margin-top:8px; display:inline-block } .order-popup-history__item--report-action-required .form-container textarea { margin-top:9px; resize:none; font-size:15px; line-height:22px; height:80px; max-width:420px } .order-popup-history__item .upload-container { margin-bottom:10px } .order-popup-history .alternative__status-message { font-size:15px; padding:8px; position:absolute; display:inline; top:-2px; left:69%; width:320px } @media (max-width:991.98px) { .order-popup-history .alternative__status-message { width:90%; margin-left:0; left:5% } } .order-popup ul.item-metrics { padding:0; list-style:none; overflow:hidden } .order-popup ul.item-metrics li { border-right:1px solid #e5e5e5; min-width:70px; width:auto!important; margin:0; padding:0; float:left } .order-popup ul.item-metrics li:last-child { border-right:0 } .order-popup ul.item-metrics li p { border-top:3px solid #e5e5e5; margin:0; padding:3px 5px 0; font-size:14px } .order-popup ul.item-metrics li.pending p { border-color:#d8d8d8; color:#d8d8d8 } .order-popup ul.item-metrics li.processing p { border-color:#ffa547; color:#ffa547 } .order-popup ul.item-metrics li.completed p { border-color:#56b957; color:#56b957 } .order-popup ul.item-metrics li.failed p { border-color:#f0473d; color:#f0473d } .order-popup ul.item-metrics li p span.clock-icon { background:url(/static/images/layout/icon-clock.png) no-repeat 50%; width:12px; height:12px; display:inline-block; position:relative; top:2px } @media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-resolution:2dppx) { .order-popup ul.item-metrics li p span.clock-icon { background-image:url(/static/images/retina/icon-clock@2x.png)!important; background-size:12px 12px } } .modal-dialog .modal-header-order-view.long-order-number h1 { font-size:24px!important; line-height:34px!important } .modal-dialog .modal-header-order-view h1 { word-break:break-all } .modal-dialog .modal-header-order-view #order-navigation { padding-left:15px!important; padding-right:15px!important } .modal-dialog .modal-header-order-view #order-navigation a { position:relative; font-size:16px; line-height:19px; text-decoration:none; cursor:pointer } .modal-dialog .modal-header-order-view #order-navigation a.disabled { cursor:none; pointer-events:none; opacity:.4 } .modal-dialog .modal-header-order-view #order-navigation a .navigation--text:hover { text-decoration:underline } @media (min-width:992px) { .modal-dialog .modal-header-order-view #order-navigation { text-align:right } .modal-dialog .modal-header-order-view #order-navigation a { top:51px!important } } @media (max-width:991.98px) { .modal-dialog .modal-header-order-view #order-navigation { margin-top:16px; margin-bottom:10px } .modal-dialog .modal-header-order-view #order-navigation a.previous--order { float:left } .modal-dialog .modal-header-order-view #order-navigation a.next--order { float:right } } @media (min-width:768px) { .modal-dialog .modal-header-order-view h1 { line-height:51px!important } .modal-header-order-view { padding:23px 15px 22px 42px } .modal-header-order-view .number-container { display:inline-block } .modal-header-order-view .report-icon { float:right; height:45px; width:33px; margin-left:5px; background-size:contain } } .product-push-customizer-options__label { font-size:14px; cursor:pointer } .product-push-customizer-options__checkbox-wrapper { display:flex } .product-push-customizer-options__title--text-layer { border-top:1px solid #ddd; padding-top:20px } .product-push-add .add-block { margin-bottom:30px; background-color:#f8f8f8; border-top:1px solid #ddd; border-bottom:1px solid #ddd; text-align:center; padding:20px 0; position:relative } .product-push-add .add-block .info-arrow { background:url(/static/images/layout/push-products-arrow.png) 50% no-repeat; width:165px; height:58px; position:absolute; left:100%; top:100%; margin-top:-67px; margin-left:20px; background-size:100% 100% } body.pf-lang--es .product-push-add .add-block .info-arrow { background:url(/static/images/layout/push-products-arrow-es.png) 50% no-repeat; background-size:100% 100% } body.pf-lang--jp .product-push-add .add-block .info-arrow { background:url(/static/images/layout/push-products-arrow-jp.png) 50% no-repeat; background-size:100% 100% } body.pf-lang--fr .product-push-add .add-block .info-arrow { background:url(/static/images/layout/push-products-arrow-fr.png) 50% no-repeat; background-size:100% 100% } body.pf-lang--de .product-push-add .add-block .info-arrow { background:url(/static/images/layout/push-products-arrow-de.png) 50% no-repeat; background-size:100% 100% } body.pf-lang--it .product-push-add .add-block .info-arrow { background:url(/static/images/layout/push-products-arrow-it.png) 50% no-repeat; background-size:100% 100% } .product-push-add .add-block .btn { padding-left:60px; padding-right:60px; position:relative } .product-push-add .product-push-statuses>.product-push-task-status.row { margin:5px 0 } .product-push-add .product-push-statuses>.product-push-task-status.row>.col { padding:0 10px } .product-push-add .product-push-statuses>.product-push-task-status.row>.col-bt { padding:5px 7px 0 0 } .product-push-add .product-push-statuses>.product-push-task-status.row .product-title { font-weight:700 } .product-push-add .product-push-statuses>.product-push-task-status.row .subtitle { font-size:.9em; margin-left:5px } .product-push-add .product-push-statuses table { margin-bottom:0 } .product-push-add .product-push-statuses table td { color:inherit; padding-left:0; padding-right:0 } .product-push-add .product-push-statuses table td.image { width:50px; padding:10px 10px 10px 0; vertical-align:top } .product-push-add .product-push-statuses table td.image img { width:50px!important } .product-push-add .product-push-statuses table td.title { word-break:break-word; font-weight:700; padding-top:10px; padding-bottom:5px } .product-push-add .product-push-statuses table td.title a { color:#37577d; font-size:.9em; margin-left:10px; font-weight:400 } .product-push-add .product-push-statuses table td.title a span { margin-right:5px; font-size:inherit } .product-push-add .product-push-statuses table td.extra { padding-top:0; padding-bottom:5px } .product-push-add .product-push-statuses table td.extra p { margin-bottom:0 } .product-push-add .product-push-statuses .success { background-color:#dff0d8; border:1px solid #d6e7cf; border-radius:2px; color:#048711 } .product-push-add .product-push-statuses .success table td.title { padding-top:8px; padding-bottom:8px } .product-push-add .product-push-statuses .error { background-color:#f6ddde; border:1px solid #f1cbd1; border-radius:2px; color:#b73b3d } .product-push-add .product-push-statuses .progress { margin:0 0 4px } .product-push-add .product-push-statuses .progress .progress-bar { width:100%; color:#000; font-weight:700 } .product-push-add .product-push-statuses a.close-bt { color:inherit } .product-push-add .product-push-statuses .icon-close { font-size:.65em } .product-push-add .product-push-statuses a.extra-links { font-weight:700 } @media (max-width:640px) { .product-push-add .product-push-statuses a.extra-links { display:block; margin-left:0 } } .inline-product-picker--title { line-height:1.44 } @media (min-width:992px) { .inline-product-picker__modal { width:992px } } @media (min-width:1200px) { .inline-product-picker__modal { width:1200px } } @media (min-width:1600px) { .inline-product-picker__modal { width:1600px } } .inline-product-picker__modal .modal-header .search-box { float:right; margin-right:15px } @media (max-width:700px) { .inline-product-picker__modal .modal-header .search-box { float:left; margin-right:0; width:98% } } .layer-picker__type { height:100%; cursor:pointer; border-radius:2px } .layer-picker__type:hover { box-shadow:0 2px 4px 0 rgba(0,0,0,.25) } .layer-picker__type.disabled { opacity:.4; cursor:not-allowed; user-select:none } .layer-picker__type.disabled:hover { box-shadow:none } .layer-picker__item { position:relative; cursor:pointer; background:#fff; user-select:none } .layer-picker__item a { text-decoration:none } .layer-picker__item>div { border-left:3px solid transparent } .layer-picker__item.active>div, .layer-picker__item:active>div, .layer-picker__item:hover>div { border-left-color:#ed4642 } .layer-picker__item.active .layer-picker__item__delete, .layer-picker__item.active .layer-picker__item__handle, .layer-picker__item.active .layer-picker__item__reset, .layer-picker__item:active .layer-picker__item__delete, .layer-picker__item:active .layer-picker__item__handle, .layer-picker__item:active .layer-picker__item__reset, .layer-picker__item:hover .layer-picker__item__delete, .layer-picker__item:hover .layer-picker__item__handle, .layer-picker__item:hover .layer-picker__item__reset { display:block } .layer-picker__item:hover:not(:active):not(.active)>div { border-left-color:#e5e5e5 } .layer-picker__item.active { cursor:default } .layer-picker__item.active .layer-picker__item__controls { display:flex } .layer-picker__item.ui-sortable-helper { background:hsla(0,0%,100%,.75); box-shadow:0 2px 4px 0 rgba(0,0,0,.075); border:1px solid #e5e5e5 } .layer-picker__item--ghost:not(.ui-sortable-helper) { display:block!important; background:#f8f8f8; border-color:transparent!important } .layer-picker__item--ghost:not(.ui-sortable-helper)>* { visibility:hidden; pointer-events:none } .layer-picker__item__thumb { width:50px; height:50px; background:transparent url(/static/images/layout/trasnparent-pattern.png) repeat 50%; background-size:18px } .layer-picker__item__thumb>img { width:100%; height:100%; object-fit:contain } .layer-picker__item__inside { text-align:right; display:none; width:53px; margin:30px 10px 13px 0 } .layer-picker__item__inside>i { -webkit-transform:rotate(90deg); -ms-transform:rotate(90deg); -o-transform:rotate(90deg); transform:rotate(90deg) } .layer-picker__item__title { word-wrap:break-word; word-break:break-word; line-height:1 } .layer-picker__item__title>span { vertical-align:middle } .layer-picker__item__badge { background:#e5e5e5; padding:2px 8px; font-size:12px; border-radius:5px; display:inline-block; margin-right:4px } .layer-picker__item__guideline-info .close { margin-top:-10px; margin-right:-5px; color:#8a6d3b; font-size:20px; font-weight:100; opacity:1 } .layer-picker__item__controls { display:none } .layer-picker__item__handle, .layer-picker__item__handle-wrap { cursor:move; cursor:grab; cursor:-moz-grab; cursor:-webkit-grab } .layer-picker__item__handle-wrap:active, .layer-picker__item__handle:active { cursor:grabbing; cursor:-moz-grabbing; cursor:-webkit-grabbing; cursor:row-resize } .layer-picker__item__handle { display:none; position:absolute; top:31px; left:8px; line-height:1; color:#b1b1b1; cursor:pointer } .layer-picker__item__handle>* { display:block; width:18px; height:18px; color:transparent; background:transparent url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMT<KEY>PSJldmVub2RkIiBvcGFjaXR5PSIuO<KEY>=") 50% no-repeat; background-size:18px; opacity:1 } .layer-picker__item__handle:hover>* { background:transparent url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxkZWZzPjxwYXRoIGlkPSJhIiBkPSJNNC4yNSAwTDYuNSAzSDJsMi4yNS0zem0wIDE1TDIgMTJoNC41bC0yLjI1IDN6bS00LTkuNzVoOHYxLjVoLTh2LTEuNXptMCAzaDh2MS41aC04di0xLjV6Ii8+PC9kZWZzPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuNzUgMS41KSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIuOSI+PG1hc2sgaWQ9ImIiIGZpbGw9IiNmZmYiPjx1c2UgeGxpbms6aHJlZj0iI2EiLz48L21hc2s+PHVzZSBmaWxsPSIjNzc3IiB4bGluazpocmVmPSIjYSIvPjxnIG1hc2s9InVybCgjYikiPjxwYXRoIGQ9Ik0tMzEtMjguNWg3M3Y3M2gtNzN6IiBmaWxsPSIjNzc3Ii8+PC9nPjwvZz48L3N2Zz4=") 50% no-repeat } @media (max-width:1199.98px) { .layer-picker__item__handle { display:block; left:4px } .layer-picker__item__handle>* { font-size:24px; width:24px; height:24px; background-size:24px } } .layer-picker__item__handle-wrap { padding-left:24px } .layer-picker__item__tag { border-radius:2px; background-color:#3d3733; color:#fff } .layer-picker__item__tag--active, .layer-picker__item__tag--active:hover, .layer-picker__item__tag:hover { background-color:rgba(61,55,51,.8) } .layer-picker__item__delete, .layer-picker__item__reset { display:none; position:absolute; right:8px; line-height:1; color:#b1b1b1; cursor:pointer } @media (max-width:1199.98px) { .layer-picker__item__delete .pf-i, .layer-picker__item__reset .pf-i { font-size:24px!important } } .layer-picker__item__delete:hover, .layer-picker__item__reset:hover { color:#555 } .layer-picker__item__delete:hover>*, .layer-picker__item__reset:hover>* { opacity:1 } .layer-picker__item__delete { top:16px } .layer-picker__item__reset { top:42px } @media (max-width:1199.98px) { .layer-picker__item__reset { top:52px } } .layer-picker__item__quality { display:flex; flex-wrap:wrap } .layer-picker__item .dropdown-menu { width:100%; border-radius:0 } .layer-picker__item .remove-background-tooltip .tooltip-inner { width:max-content; max-width:400px } @media (max-width:767.98px) { .layer-picker__item .remove-background-tooltip .tooltip-inner { max-width:300px } } .layer-picker__group { position:relative; cursor:pointer; background:#fff; user-select:none } .layer-picker__group a { text-decoration:none } .layer-picker__group>div:not(.accordion__content) { border-left:3px solid transparent } .layer-picker__group.activated>div { border-left-color:#f8b8b6 } .layer-picker__group.activated>div .layer-picker__item--ghost { border-left:3px solid #f8b8b6!important } .layer-picker__group.activated>div .layer-picker__item>div { border-left-color:#f8b8b6 } .layer-picker__group.activated>div .layer-picker__item.active>div, .layer-picker__group.active>div, .layer-picker__group__details:active>div, .layer-picker__group__details:hover>div { border-left-color:#ed4642 } .layer-picker__group.active .layer-picker__group__delete, .layer-picker__group.active .layer-picker__group__handle, .layer-picker__group.active .layer-picker__group__reset, .layer-picker__group__details:active .layer-picker__group__delete, .layer-picker__group__details:active .layer-picker__group__handle, .layer-picker__group__details:active .layer-picker__group__reset, .layer-picker__group__details:hover .layer-picker__group__delete, .layer-picker__group__details:hover .layer-picker__group__handle, .layer-picker__group__details:hover .layer-picker__group__reset { display:block } .layer-picker__group:hover:not(:active):not(.active):not(.activated)>div, .layer-picker__group:hover:not(:active):not(.active):not(.activated)>div .layer-picker__item>div { border-left-color:#e5e5e5 } .layer-picker__group.active { cursor:default } .layer-picker__group.active .layer-picker__group__controls { display:flex } .layer-picker__group.ui-sortable-helper { background:hsla(0,0%,100%,.75); box-shadow:0 2px 4px 0 rgba(0,0,0,.075); border:1px solid #e5e5e5 } .layer-picker__group--ghost:not(.ui-sortable-helper) { display:block!important; background:#f8f8f8; border-color:transparent!important } .layer-picker__group--ghost:not(.ui-sortable-helper)>* { visibility:hidden; pointer-events:none } .layer-picker__group__thumb { width:50px; height:50px; background:transparent url(/static/images/layout/trasnparent-pattern.png) repeat 50%; background-size:18px } .layer-picker__group__thumb>img { width:100%; height:100%; object-fit:contain } .layer-picker__group__title { word-wrap:break-word; word-break:break-word; line-height:1 } .layer-picker__group__title>span { vertical-align:middle } .layer-picker__group__badge { background:#000; color:#fff; padding:4px 8px; font-size:12px; border-radius:5px; display:inline-block; margin-right:4px } .layer-picker__group__guideline-info .close { margin-top:-10px; margin-right:-5px; color:#8a6d3b; font-size:20px; font-weight:100; opacity:1 } .layer-picker__group__controls { display:none } .layer-picker__group__handle, .layer-picker__group__handle-wrap { cursor:move; cursor:grab; cursor:-moz-grab; cursor:-webkit-grab } .layer-picker__group__handle-wrap:active, .layer-picker__group__handle:active { cursor:grabbing; cursor:-moz-grabbing; cursor:-webkit-grabbing; cursor:row-resize } .layer-picker__group__handle { display:none; position:absolute; top:31px; left:8px; line-height:1; color:#b1b1b1; cursor:pointer } .layer-picker__group__handle>* { display:block; width:18px; height:18px; color:transparent; background:transparent url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxkZWZzPjxwYXRoIGlkPSJhIiBkPSJNNC4yNSAwTDYuNSAzSDJsMi4yNS0zem0wIDE1TDIgMTJoNC41bC0yLjI1IDN6bS00LTkuNzVoOHYxLjVoLTh2LTEuNXptMCAzaDh2MS41aC04di0xLjV6Ii8+PC9kZWZzPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuNzUgMS41KSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIuOSI+PG1hc2sgaWQ9ImIiIGZpbGw9IiNmZmYiPjx1c2UgeGxpbms6aHJlZj0iI2EiLz48L21hc2s+PHVzZSBmaWxsPSIjQjFCMUIxIiB4bGluazpocmVmPSIjYSIvPjxnIG1hc2s9InVybCgjYikiPjxwYXRoIGQ9Ik0tMzEtMjguNWg3M3Y3M2gtNzN6IiBmaWxsPSIjQjFCMUIxIi8+PC9nPjwvZz48L3N2Zz4=") 50% no-repeat; background-size:18px; opacity:1 } .layer-picker__group__handle:hover>* { background:transparent url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxkZWZzPjxwYXRoIGlkPSJhIiBkPSJNNC4yNSAwTDYuNSAzSDJsMi4yNS0zem0wIDE1TDIgMTJoNC41bC0yLjI1IDN6bS00LTkuNzVoOHYxLjVoLTh2LTEuNXptMCAzaDh2MS41aC04di0xLjV6Ii8+PC9kZWZzPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuNzUgMS41KSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIuOSI+PG1hc2sgaWQ9ImIiIGZpbGw9IiNmZmYiPjx1c2UgeGxpbms6aHJlZj0iI2EiLz48L21hc2s+PHVzZSBmaWxsPSIjNzc3IiB4bGluazpocmVmPSIjYSIvPjxnIG1hc2s9InVybCgjYikiPjxwYXRoIGQ9Ik0tMzEtMjguNWg3M3Y3M2gtNzN6IiBmaWxsPSIjNzc3Ii8+PC9nPjwvZz48L3N2Zz4=") 50% no-repeat } @media (max-width:1199.98px) { .layer-picker__group__handle { display:block; left:4px } .layer-picker__group__handle>* { font-size:24px; width:24px; height:24px; background-size:24px } } .layer-picker__group__tag { border-radius:2px; background-color:#3d3733; color:#fff } .layer-picker__group__tag--active, .layer-picker__group__tag--active:hover, .layer-picker__group__tag:hover { background-color:rgba(61,55,51,.8) } .layer-picker__group__delete, .layer-picker__group__reset { display:none; position:absolute; right:8px; line-height:1; color:#b1b1b1; cursor:pointer } .layer-picker__group__delete:hover, .layer-picker__group__reset:hover { color:#555 } .layer-picker__group__delete:hover>*, .layer-picker__group__reset:hover>* { opacity:1 } .layer-picker__group__delete { top:16px } .layer-picker__group__reset { top:42px } .layer-picker__group__quality { display:flex; flex-wrap:wrap } .layer-picker__group .dropdown-menu { width:100%; border-radius:0 } .layer-picker__group .layer-toggle { background-color:#f8f8f8 } .layer-picker__group .layer-toggle__icon { width:60px } .layer-picker__group .layer-picker__item__inside { display:block } .layer-picker__group .layer-picker__item__handle-wrap { padding-left:0 } .layer-picker__group .accordion__icon { pointer-events:none } .layer-picker__placeholder { height:3px; background:#4a90e2 } .product-push-details-mke table.price-list tbody td, .product-push-pricing table.price-list tbody td { color:#222; font-size:16px; font-weight:700 } .product-push-details-mke table.price-list tbody input, .product-push-pricing table.price-list tbody input { padding-left:0; padding-right:0; display:inline-block; width:85px; text-align:center; vertical-align:middle; font-weight:700 } .product-push-details-mke table.price-list .negative-profit, .product-push-pricing table.price-list .negative-profit { color:#f0473d } .product-push-details-mke table.price-list .product-retail-warning, .product-push-pricing table.price-list .product-retail-warning { color:#a94442; font-weight:700; font-size:14px; margin:0 } .product-push-details-mke table.main-picker .small-variant-item, .product-push-pricing table.main-picker .small-variant-item { width:72px; height:72px; display:inline-block; margin-top:-5px; margin-left:5px; margin-bottom:10px; border:1px solid transparent; padding:5px; text-align:center; cursor:pointer } .product-push-details-mke table.main-picker .small-variant-item.active, .product-push-pricing table.main-picker .small-variant-item.active { border-color:#bbb } .product-push-details-mke table.main-picker .small-variant-item:hover, .product-push-pricing table.main-picker .small-variant-item:hover { box-shadow:0 0 5px 0 rgba(50,50,50,.3) } .product-push-details-mke table.main-picker .small-variant-item.active:hover, .product-push-pricing table.main-picker .small-variant-item.active:hover { box-shadow:none; cursor:default } .product-push-details-mke table.main-picker td, .product-push-pricing table.main-picker td { vertical-align:top } .product-push-details-mke label.inline-radio, .product-push-pricing label.inline-radio { display:inline-block; font-weight:400 } .product-push-details-mke label.inline-radio+label.inline-radio, .product-push-pricing label.inline-radio+label.inline-radio { margin-left:20px } .product-push-details-mke thead>tr.header-row, .product-push-pricing thead>tr.header-row { background-color:#f3f3f3; border-bottom:1px solid #e5e5e5 } .product-push-details-mke thead>tr.header-row>th, .product-push-pricing thead>tr.header-row>th { text-transform:none; font-weight:700; color:#222 } .product-push-details-mke .price-range, .product-push-details-mke .profit-margin, .product-push-pricing .price-range, .product-push-pricing .profit-margin { padding-left:34px; white-space:nowrap } .product-push-details-mke .price-range input, .product-push-details-mke .profit-margin input, .product-push-pricing .price-range input, .product-push-pricing .profit-margin input { width:100px; text-align:center; font-weight:700; color:#222; padding-left:20px; margin-left:5px } .product-push-details-mke .price-range input.percent, .product-push-details-mke .profit-margin input.percent, .product-push-pricing .price-range input.percent, .product-push-pricing .profit-margin input.percent { width:75px } .product-push-details-mke__collection-select, .product-push-pricing__collection-select { padding-right:8px!important; border:1px solid #e5e5e5!important; width:100%!important } .product-push-details-mke__select-note, .product-push-pricing__select-note { color:#555 } .product-push-details-mke .chosen-single>span, .product-push-pricing .chosen-single>span { color:#222 } .product-push-details-mke .shipping-cost .cost-item, .product-push-pricing .shipping-cost .cost-item { font-size:1.1em; width:auto } .product-push-details-mke .shipping-cost .cost-item .flag.us-cost, .product-push-pricing .shipping-cost .cost-item .flag.us-cost { background-image:url(/static/images/layout/flags/us.svg) } .product-push-details-mke .shipping-cost .cost-item .flag.eu-cost, .product-push-pricing .shipping-cost .cost-item .flag.eu-cost { background-image:url(/static/images/layout/flags/eu.svg) } .product-push-details-mke .shipping-cost .cost-item .flag.ca-cost, .product-push-pricing .shipping-cost .cost-item .flag.ca-cost { background-image:url(/static/images/layout/flags/ca.svg) } .product-push-details-mke .shipping-cost .cost-item .flag.au-cost, .product-push-pricing .shipping-cost .cost-item .flag.au-cost { background-image:url(/static/images/layout/flags/au.svg) } .product-push-details-mke .shipping-cost .cost-item .flag.nz-cost, .product-push-pricing .shipping-cost .cost-item .flag.nz-cost { background-image:url(/static/images/layout/flags/nz.svg) } .product-push-details-mke .shipping-cost .cost-item .flag.worldwide, .product-push-pricing .shipping-cost .cost-item .flag.worldwide { background-image:url(/static/images/layout/flags/png/worldwide.png); margin-bottom:-4px; margin-left:-2px; width:20px; height:20px } .product-push-details-mke .shipping-cost .cost-item .flag:not(.worldwide), .product-push-pricing .shipping-cost .cost-item .flag:not(.worldwide) { margin-bottom:-1px; width:17px; height:13px } .product-push-details-mke .shipping-cost .cost-item .location-prefix, .product-push-pricing .shipping-cost .cost-item .location-prefix { font-weight:700 } .product-push-details-mke sup, .product-push-pricing sup { top:0 } .product-push-details-mke .dropdown-picker__button, .product-push-details-mke .dropdown-picker__button.selected, .product-push-pricing .dropdown-picker__button, .product-push-pricing .dropdown-picker__button.selected { padding:0 8px } .product-push { min-height:50px } .product-push .product-model { margin:0 } .product-push .file-name { font-weight:700; margin-top:10px; font-size:12px; width:100%; max-width:155px; text-overflow:ellipsis; overflow:hidden } .product-push .picked-graphic { position:relative; width:135px; background-color:#e5e5e5 } .product-push .picked-graphic .btn { position:absolute; display:none; top:50px; left:20px; right:20px } .product-push .picked-graphic:hover .btn { display:block } .product-push .textbox-colors__shadow, .product-push .textbox-colors__stroke, .product-push .textbox-colors__text { align-self:flex-end } .product-push .textbox-colors__shadow .color-dropdown__dropdown, .product-push .textbox-colors__stroke .color-dropdown__dropdown, .product-push .textbox-colors__text .color-dropdown__dropdown { width:300% } @media (max-width:1199.98px) { .product-push .textbox-colors__text .color-dropdown__dropdown--open { left:0 } .product-push .textbox-colors__stroke .color-dropdown__dropdown--open { left:50%; transform:translate(-50%) } .product-push .textbox-colors__shadow .color-dropdown__dropdown--open { right:0; left:auto } } .product-push__design-fill-color-picker .color-dropdown__dropdown--open { position:relative } .product-push__design-fill-color-picker .control-options { padding-left:4px } .product-push__design-fill-color-picker .control-options label { font-size:16px } .product-push__design-fill-color-picker .control-options input[type=checkbox] { margin-top:2px } .product-push__design-fill-color-picker .pf-badge { position:relative; top:-1px } .product-push__transperancy label { font-weight:400 } .product-push__transperancy label input { font-size:16px; margin:2px 0 0 } .product-push__transperancy label span { padding-left:5px } .product-push__transperancy label span b { font-weight:700 } .product-push__transperancy .inline-radio { display:flex } .product-push__droparea { position:absolute; width:100%; height:100%; top:0; left:0; padding-top:29%; z-index:1 } .product-push__droparea--active { z-index:100; top:100px } .product-push__droparea--padding-top-3 { padding-top:3% } .product-push__droparea--padding-top-7 { padding-top:7% } .product-push__droparea--padding-top-45 { padding-top:45% } .product-push__droparea--backpack { padding-top:22% } .product-push__droparea--fannypack { padding-top:37% } .product-push__droparea--fannypack .product-push__droparea__image { width:26% } .product-push__droparea--fannypack-front { padding-top:19% } .product-push__droparea--fannypack-front .product-push__droparea__image { width:30% } .product-push__droparea--fannypack-top { padding-top:15% } .product-push__droparea--fannypack-top .product-push__droparea__image { width:20% } .product-push__droparea--fannypack-back { padding-top:16% } .product-push__droparea--fannypack-back .product-push__droparea__image { width:32% } .product-push__droparea--fannypack-pocket { padding-top:26% } .product-push__droparea--fannypack-pocket .product-push__droparea__image { width:34% } .product-push__droparea--fannypack-label { padding-top:38% } .product-push__droparea--fannypack-label .product-push__droparea__image { width:24% } .product-push__droparea--beanies { padding-top:65% } .product-push__droparea--beanies .product-push__droparea__image { width:27% } .product-push__droparea--mugs { padding-top:35% } .product-push__droparea--mugs .product-push__droparea__image { margin-left:30% } .product-push__droparea--mugs-black .product-push__droparea__image { margin-left:27% } .product-push__droparea--975mpr .product-push__droparea__image { margin-top:5%; margin-right:14%; width:17% } .product-push__droparea--stsu822-sleeve-left .product-push__droparea__image { margin-top:0; margin-right:30% } .product-push__droparea--stsu822-sleeve-right .product-push__droparea__image { margin-top:0; margin-right:33% } .product-push__droparea--embroidery-chest-left .product-push__droparea__image { margin-top:17%; margin-right:22%; width:25% } .product-push__droparea--embroidery-chest-center .product-push__droparea__image { margin-top:17%; margin-right:37%; width:25% } .product-push__droparea--sleeve-left .product-push__droparea__image { margin-left:46%; margin-top:6% } .product-push__droparea--sleeve-right .product-push__droparea__image { margin-left:24%; margin-top:6% } .product-push__droparea--label-outside .product-push__droparea__image { margin-top:11% } .product-push__droparea--label-inside { padding-top:38% } .product-push__droparea--label-inside .product-push__droparea__image { width:24% } .main-mockup-area--with-3dview .product-push__droparea--label-inside { padding-top:28.5% } .product-push__droparea--label-inside-native { padding-top:34% } .product-push__droparea--label-inside-native .product-push__droparea__image { width:18% } .product-push__droparea--label-inside-custom { padding-top:41% } .product-push__droparea--label-inside-custom .product-push__droparea__image { width:28% } .product-push__droparea--label-inside-flip-flops { padding-top:16% } .product-push__droparea--label-inside-flip-flops .product-push__droparea__image { width:25%; margin-left:36.5% } .product-push__droparea--tank-template .product-push__droparea__image { margin-left:34%; margin-top:5% } .product-push__droparea--black-mugs .product-push__droparea__image { margin-left:25%; margin-top:3% } .product-push__droparea--hats-right-side .product-push__droparea__image { margin-left:13% } .product-push__droparea--hats-left-side .product-push__droparea__image { margin-left:50% } .product-push__droparea--hats-back-side .product-push__droparea__image { margin-left:32% } .product-push__droparea__image { margin:0 auto; width:37%; cursor:pointer } .product-push__size-guide .table-responsive { margin-right:20px } .product-push__size-guide .table-responsive table td { padding:10px; border:1px solid #e5e5e5 } .product-push__size-guide .table-responsive table td:first-child { width:130px } @media screen and (max-width:767px) { .product-push__size-guide .table-responsive table tr:first-child td { border-top:0 } .product-push__size-guide .table-responsive table tr:last-child td { border-bottom:0 } .product-push__size-guide .table-responsive table tr td:first-child { border-left:0 } .product-push__size-guide .table-responsive table tr td:last-child { border-right:0 } } .product-push__size-guide .table-responsive:last-child { margin-top:20px } .product-push__recent-tags span { color:#7a7979 } .product-push__recent-tags--inner { display:inline-block; max-width:100%; word-wrap:break-word } .product-push__recent-tags--inner a:after { content:"," } .product-push__recent-tags--inner a:last-of-type:after { display:none } .product-push .blue-box-warning { border:1px solid #b7e5f6; background-color:#dbf1fa; color:#126988; padding:20px } .product-push .orange-box-warning { border:1px solid #fce7b8; background-color:#fef8e8; color:#bd7318; padding:20px; text-align:center } .product-push .variation-warning-block { display:flex } .product-push-video-tutorials-modal .modal-header { padding-left:24px } @media (min-width:992px) { .product-push-video-tutorials-modal .modal-dialog { width:66% } } .product-push .loading-overlay__text { top:50%; padding-top:25px } .mockup-generator-loading-overlay { position:fixed; width:100%; height:100%; z-index:100; background:rgba(34,34,34,.7); pointer-events:none } .generator-size-picker label.one-size { font-weight:400; display:inline-block; margin:0 15px 10px 0; cursor:pointer } .generator-size-picker label.one-size input { margin-right:5px; vertical-align:middle; margin-top:0; cursor:pointer } .generator-size-picker .glyphicon.size-picker-tooltip { top:3px; left:5px } .generator-size-picker .disabled { opacity:.4; pointer-events:none } .product-push-sync-products .styled-select { width:100%!important; background-position:right 15px bottom 50%!important } .synced-product-add-picker__item .pf-custom-checkbox { position:absolute; top:8px; left:8px } .product-push-stock-management table.stock-list tbody td { color:#222; font-size:16px; font-weight:700 } .product-push-stock-management table.stock-list tbody td .pf-form-group input { padding-left:0; padding-right:0; display:inline-block; width:85px; text-align:center; vertical-align:middle; font-weight:700 } .product-push-stock-management table.stock-list tbody td .pf-form-group.pf-custom-control-has-error input { border-color:#a94442!important; background-color:#f2dede!important } .product-push-stock-management table.stock-list tbody td .pf-form-group.pf-custom-control-has-error .pf-custom-control-error-message { display:none } .generator-variant-area { text-align:center } .generator-variant-area .variant-item { cursor:pointer; display:inline-block; width:85px; min-height:85px; text-align:center; border:1px solid transparent; margin:0 4px 8px; font-size:13px; padding-top:5px; vertical-align:top; position:relative } .generator-variant-area .variant-item.quality-bad { border-color:#f0473d } .generator-variant-area .variant-item--has-out-of-bounds-layers, .generator-variant-area .variant-item.quality-medium { border-color:#f8b830 } .generator-variant-area .variant-item--has-out-of-bounds-layers .out-of-bounds-icon { background-color:#f8b830 } .generator-variant-area .variant-item.active, .generator-variant-area .variant-item:hover { border-color:#bbb } .generator-variant-area .variant-item:not(:only-child):hover .variant-item__remove { display:block } .generator-variant-area .variant-item__remove { display:none; width:16px; height:16px; top:-8px; right:-8px; position:absolute; color:#fff; background:url(/static/generator/image-controls.svg) no-repeat 0 0; background-position:-16px 0; background-color:#f0473d; background-size:cover; z-index:100; border-radius:100% } .generator-variant-area .variant-item__overlay { background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAFo9M/3AAAABGdBTUEAALGPC/xhBQAAAY5JREFUOBGVkrGPQUEQxr/HFaLRSMSLP0CjehGl/0BIRNBoKDQaiqdVvUKlUag0Wr1CTSMRhUKtoqDRuv0mt3POXeJM8nZnd+f7zey8dXK5nBePx/GRTCZBc+73u0cnxIEW5s52u3X3+717PB5dOaGIdj6fvzWyYwbV/n8DzFIsFj3O9ms2m+prYWSWSiXM53OLR6vVghAeFc/EH<KEY>"); background-repeat:repeat; background-size:16px; position:absolute; top:0; bottom:0; right:0; left:0; z-index:5 } .generator-variant-area .out-of-bounds-icon, .generator-variant-area .quality-icon { position:absolute; color:#fff; font-weight:700; width:16px; height:16px; border-radius:100%; top:2px; left:2px; line-height:16px; font-size:10px; z-index:6 } .generator-variant-area .quality-bad .quality-icon { background-color:#f0473d } .generator-variant-area .quality-medium .quality-icon { background-color:#f8b830 } .generator-variant-area .overlay-notice__pattern { border:1px solid #222; background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAA<KEY>"); background-repeat:repeat; background-size:16px; height:32px; width:32px; display:inline-block; vertical-align:middle } .generator-variant-area .overlay-notice__text { display:inline-block; text-align:left; vertical-align:middle } .skeleton-loader__container { background:#f6f6f6 } .skeleton-loader__animated-line { animation:backgroundMove 2.5s linear infinite forwards; background:-webkit-linear-gradient(left,#f6f6f6,#eee 60%,#f6f6f6 80%,#f6f6f6) no-repeat } @keyframes backgroundMove { 0% { transform:translateX(-640px) } to { transform:translateX(640px) } } .dashboard-reports__integration-logo { width:36px } .dashboard-reports__content { min-height:400px } .dashboard-reports__content .pf-tabs+.tab-content .tab-pane { padding:0 } .dashboard-reports__content .block-missing-data { width:60%; margin-bottom:30px } .dashboard-reports__container__chart-box { opacity:1; transition:opacity .5s linear } .dashboard-reports__container__chart-box path[stroke-width="3"] { stroke-width:2px } .dashboard-reports__container__chart-box--loading { opacity:.1 } .dashboard-reports__container__chart-box .download-link { display:block } .dashboard-reports__container__chart-box .download-link .download-icon { display:inline-block; height:16px; width:14px; background:50%/cover no-repeat url(/static/images/layout/ic-download.svg); opacity:.8; margin:0 6px -3px 4px } .dashboard-reports__container__chart-box .download-link:hover { cursor:pointer } .dashboard-reports__container__chart-box .download-link:hover .download-icon { opacity:1 } .dashboard-reports__container__chart-box .table-container { padding:16px 0 24px } .dashboard-reports__container__chart-box .table-container .DTFC_ScrollWrapper { border:1px solid #e5e5e5 } .dashboard-reports__container__chart-box .table-container .DTFC_LeftBodyLiner { overflow-y:hidden!important } .dashboard-reports__container__chart-box .table-container .dataTable tr.highlighted { font-weight:700; color:#222; background-color:#f8f8f8 } .dashboard-reports__container__chart-box .table-container .dataTable tr.highlighted td { border-bottom:1px solid #e5e5e5 } .dashboard-reports__container__chart-box .table-container .dataTable .first-column.with-link { display:flex; justify-content:space-between; min-width:200px } .dashboard-reports__container__chart-box .table-container .dataTable .first-column .geo-color-block { border:1px solid rgba(0,0,0,.12); border-radius:2px; margin-top:7px; width:12px; height:12px } .dashboard-reports__container__chart-box .table-container .dataTable .first-column .popularity__first { background-color:#3abcb6 } .dashboard-reports__container__chart-box .table-container .dataTable .first-column .popularity__second { background-color:#88dfdb } .dashboard-reports__container__chart-box .table-container .dataTable .first-column .popularity__third { background-color:#d2f3f0 } .dashboard-reports__container__chart-box .table-container .dataTable .cell-link { float:right; padding-right:8px; height:16px; width:24px; display:block; padding-top:1px } .dashboard-reports__container__chart-box .table-container .dataTable .cell-link a { color:#858585 } .dashboard-reports__container__chart-box .table-container .dataTable .cell-link a:hover { color:#222 } .dashboard-reports__container__chart-box .table-container .dataTables_paginate { width:100%; text-align:center; margin:32px 0 8px } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .ellipsis, .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button { border:1px solid #e3e3e3; color:#909090; margin:0 2px; padding:6px 12px } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .ellipsis { display:inline-block; height:35px; cursor:default } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button.next, .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button.previous { font-weight:700 } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button.next { margin-left:8px } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button.previous { margin-right:8px } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button.current, .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button:hover { color:#000!important; border-color:#aaa; background:#fff; z-index:1 } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button:active { background:#fff; box-shadow:none } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button.disabled { display:none } .branding-image-upload__overlay { padding-top:10px; align-items:center; visibility:hidden; position:absolute; bottom:0; left:0; top:0; z-index:4; right:0; text-align:center; background-color:hsla(0,0%,100%,.7) } .branding-image-upload__overlay-button { margin-bottom:10px } .branding-image-upload__custom-overlay { width:100%; height:100%; position:absolute; top:0; left:0; z-index:2; background:hsla(0,0%,100%,.76) } .branding-image-upload__controls .logo-preview { position:relative; z-index:3 } .branding-image-upload__controls:hover .branding-image-upload__overlay { visibility:visible } .input-url { display:flex; align-items:center } .input-url__prefix { color:#a7a7a7; font-family:Proxima Nova,sans-serif; height:39px; padding:0 10px; line-height:2.5; border:1px solid #e5e5e5; background-color:#f6f6f6; box-shadow:inset 0 2px 3px 0 rgba(0,0,0,.05) } .returns-expired { position:relative } .returns-expired-circles { width:40px; min-width:40px; height:40px; border:3px solid #e5e5e5; z-index:1 } .returns-expired-lines { position:absolute; height:100% } .returns-expired .step-container { position:relative } .returns-expired .step-container:after { content:""; height:100%; width:1px; background:#e5e5e5; left:20px; position:absolute; display:flex; align-items:center; justify-content:center } .disabled-overlay { width:100%; height:100%; background-color:hsla(0,0%,100%,.6); position:absolute; z-index:1 } @media only screen and (max-width:767px) { .toggle-returns { margin-top:20px } } .page-preview { position:relative; padding-bottom:65.25%; padding-top:30px; height:0; overflow:auto; -webkit-overflow-scrolling:touch } .page-preview iframe { position:absolute; top:0; left:0; width:100%; height:100% } @media only screen and (max-width:767px) { .pull-sm-left { float:left!important } } .returns-details .modal-lg { width:80%!important; margin:30px auto 0 } @media only screen and (max-width:767px) { .returns-details .modal-lg { width:95%!important } } .withdrawal-modal .modal-header:after { display:inline } .withdrawal-modal .withdraw__accept-terms { display:inline-flex; align-items:flex-start } .add-similar-products__block { position:relative } .add-similar-products__slider-container { overflow-x:hidden } .add-similar-products__item-container { margin-right:18px; display:flex } .add-similar-products__item-container:last-of-type { margin-right:0 } .add-similar-products-item { width:128px; min-width:128px; display:flex; flex-direction:column; flex-grow:1 } .add-similar-products-item, .add-similar-products-item *, .add-similar-products-item:focus, .add-similar-products-item :focus, .add-similar-products-item:hover, .add-similar-products-item :hover { text-decoration:none } .add-similar-products-item__image-block { height:128px; background-size:auto 100% } .add-similar-products-item__info-block { min-height:60px } .add-similar-products-item__printfile-block { height:128px; background-repeat:repeat; background-image:url(/static/images/layout/trasnparent-pattern.png); background-size:20% } .add-similar-products-item__printfile-block img { max-width:100%; max-height:100% } .add-similar-products-item:first-of-type { margin-left:4px } .sync-products-list { position:relative } .sync-products-list .sync-stats { white-space:normal } .sync-products-list .sync-stats .value { display:block } .sync-products-list__header { border-bottom:1px solid #ddd } .sync-products-list__tabs ul { border-bottom:none } .sync-products-list__table { overflow:visible } .sync-products-list a.bulk-edit { text-transform:none; font-size:14px } .sync-products-list .sync-products-list-groups { margin-bottom:-1px } .sync-products-list-item { cursor:pointer; border-bottom:1px solid #e5e5e5!important; position:relative } .sync-products-list-item:last-of-type { border-bottom:none!important } .sync-products-list-item__thumbnail .sync-product-image { margin:0 auto; width:60px; height:60px; background-size:contain; background-position:50%; background-repeat:no-repeat; background-color:transparent } .sync-products-list-item__title .product-name__badges { display:block } .sync-products-list-item__title .product-name__badges .label { display:inline-block } .sync-products-list-item__subtitle, .sync-products-list-item__title .product-name__actual-name { white-space:normal } .sync-products-list-item__action-link { display:inline-block; vertical-align:middle } .sync-products-list-item__action-link a, .sync-products-list-item__action-link a:hover { text-decoration:none } .sync-products-list-item__action-link .small-icon { font-size:.7em } .sync-products.sync-row-selector td.checkbox-wrapper { vertical-align:middle; padding-top:0 } .sync-products>tbody>tr>td { padding-top:9px; padding-bottom:9px } .sync-products>tbody>tr>td:first-of-type { padding-left:9px } .sync-products>tbody>tr>td:last-of-type { padding-right:9px } .sync-products-list-task-item { cursor:default } .sync-products-list-task-item__task-col { position:relative } .sync-products-list-task-item.running-task .sync-products-list-item__thumbnail, .sync-products-list-task-item.running-task .sync-products-list-item__title { opacity:.6 } .sync-products-list-task-item.running-task .sync-products-list-task-item__main-content__progress { color:#0c8512 } .sync-products-list-task-item.failed-task { background-color:#feedec } .sync-products-list-task-item.failed-task:hover { background-color:#fde4e2 } .sync-products-list-task-item.failed-task .sync-products-list-item__thumbnail { vertical-align:top } .sync-products-list-task-item.failed-task .sync-products-list-item__title, .sync-products-list-task-item.failed-task .sync-products-list-task-item__main-content { color:#cf1814!important } .sync-products-list-task-item.failed-task .sync-products-list-item__title .error-message, .sync-products-list-task-item.failed-task .sync-products-list-task-item__main-content .error-message { white-space:normal } .sync-products-list-task-item.failed-task .sync-products-list-task-item__main-content p { margin-bottom:0 } .sync-products-list-task-item .close-task { position:absolute; top:9px; right:9px } .sync-products-list-product-item.new-product:not(.bg-warning) { background-color:#e5f5e4 } .sync-products-list-product-item.new-product:not(.bg-warning):hover { background-color:#def2dd } .sync-products-list-message-container .h6 { color:inherit } .sync-products-list-header .checkbox-wrapper { vertical-align:top; line-height:40px } .sync-products-list-header .checkbox-wrapper input[type=checkbox] { margin:0; padding:0 } .sync-products-list-header .sync-products-list-header-actions { border-collapse:collapse } .sync-products-list-header .sync-products-list-header-actions .actions-container .pf-dropdown { min-width:180px } .sync-products-list-items__header>.row { height:48px }
public/model_front/dashboard.84fa86e1289af4b53617.css
text-align:center; display:none } #status.rate-banner p, .rate-banner .stars { float:none; display:inline-block; width:auto; vertical-align:middle } .rate-banner .stars { padding:0; font-size:24px; margin:0 0 0 10px } .rate-banner .stars li { float:left; list-style:none } .rate-banner .stars li a { color:#ccc; padding:0 2px; font-weight:700; transition:all .2s } .rate-banner .stars .rating1 a { color:#f0463c } .rate-banner .stars .rating2 a { color:#f0c792 } .rate-banner .stars .rating3 a { color:#7bba21 } .review-item { border-bottom:1px solid #ddd } .review-item .label { position:relative; top:-1px; vertical-align:middle } .review-item__text { color:#676767 } .review-item__image-block { margin-left:-2px; margin-right:-2px } .review-item__image { display:inline-block; width:128px; height:128px; background:no-repeat #fff 50%; background-size:cover } .c-multiselect { position:relative } .c-multiselect__toggle { line-height:18px; padding:9px 45px 10px 12px; border-radius:0; width:100%; text-align:left } .c-multiselect__toggle:focus { border:1px solid #e5e5e5!important; outline:none } .c-multiselect__dropdown { min-width:230px; position:absolute; top:50px; width:100%; right:0 } @media (min-width:768px) { .c-multiselect__dropdown { width:auto } } .c-multiselect__group-title { color:#555; border-bottom:1px solid #e5e5e5; line-height:22px; font-size:15px; padding:8px 8px 7px 20px; font-weight:700 } .c-multiselect__list { margin:0; padding:0 } .c-multiselect__list-item { list-style:none } .c-multiselect__list-item:hover { background-color:#f8f8f8 } .c-multiselect__list-item.is-selected label:before { display:block; content:""; background-image:url(/static/images/layout/dashboard/ic_check.svg); width:17px; height:14px; position:absolute; left:23px; top:10px } .c-multiselect__list-item label { cursor:pointer; margin:0; padding:8px 20px 8px 52px; font-weight:400; color:#222; line-height:20px; display:block; position:relative } .c-dropdown { z-index:1; border-radius:0; box-shadow:0 0 12px rgba(0,0,0,.175); border:1px solid #bfbfbf; background:#fff } .c-dropdown:after, .c-dropdown:before { bottom:100%; border:solid transparent; content:" "; height:0; width:0; position:absolute; pointer-events:none } .c-dropdown:after { border-bottom-color:#fff; border-width:8px; margin-left:-8px; right:10px } .c-dropdown:before { border-bottom-color:#bfbfbf; border-width:9px; margin-left:-9px; right:9px } .styled-select { background:#fff url(/static/images/layout/nav-arrow.png) no-repeat 95%!important; border:1px solid #e5e5e5!important; display:block; overflow:hidden; box-shadow:inset 0 1px 1px rgba(0,0,0,.075)!important; transition:border .2s linear,box-shadow .2s linear!important } .validate-tax-exemption { line-height:39px; height:39px; width:39px } .validate-tax-exemption--validated { color:#3c763d } .validate-tax-exemption--validated:before { content:url(/static/images/layout/verified.svg) } .validate-tax-exemption--validating:before { display:inline-block; height:14px; width:14px; background:url(/static/images/layout/spinner-white.gif) no-repeat 0 0; background-size:100%; content:"" } .tax-exemption-upload .btn { width:100% } .tax-exemption-upload { line-height:38px } @media (min-width:768px) { .tax-exemption-info { position:absolute; top:5px } } .amazon-gtin-select input[type=radio] { margin-right:5px } #disclaimer-content p img { max-width:100%; height:auto } .account-users { padding-bottom:40px } .account-users .users-name-and-email { line-height:1 } .account-users .invite-others-button { float:right; margin-top:-82px } .account-users .modal-body { padding:24px 24px 32px } .account-users .modal-title { font-size:24px } .account-users button.close span:first-child { top:8px; position:relative } .account-users .modal-footer, .account-users .modal-header { padding:16px 24px; text-align:left } .account-users .text-cell { padding:0 16px!important; line-height:70px!important } @media (max-width:991.98px) { .account-users .text-cell { padding:12px 0!important; line-height:24px!important } } .account-users .dropdown-cell { padding:20px 0!important; line-height:24px!important } .account-users .col-1-5 { flex:0 0 20%; max-width:20% } .account-users .table-base { -ms-word-break:break-all; word-break:break-word } .account-users .table-base div.text-center { line-height:1 } .account-users .table-base div.text-center ul.pagination { margin-top:32px; margin-bottom:0 } .account-users .table-base div.text-center ul.pagination a { padding-top:7px; padding-bottom:7px; line-height:24px } .account-users .header-text { clear:both; line-height:48px } .account-users .row-text { font-size:16px; clear:both; line-height:46px } .account-users .email { word-break:break-all } .account-users .success { font-weight:700 } .account-users .error { color:#cf1814 } .account-users .table-row { border-bottom:1px solid #e5e5e5 } .account-users .table-row>td.value { text-align:right } .account-users .table-row>td>div.account-users__dropdown-wrapper { line-height:1.5 } @media (min-width:992px) { .account-users .table-row>td>div.account-users__dropdown-wrapper { margin-top:15px!important } } .account-users .users-remove-i-trash { color:#b1b1b1 } .account-users .users-remove-i-trash:hover { color:#555 } .account-users .white-space-nowrap { white-space:nowrap } .account-users a.role-action { text-decoration:none } .account-users a.role-action:active>span, .account-users a.role-action:hover>span { text-decoration:underline } @media (min-width:992px) { .account-users .col-md-1-5 { flex:0 0 20%; max-width:20% } .account-users .pf-md-pl-12 { padding-left:12px!important } } .account-users .modal-content { overflow:visible } @media (min-width:992px) { .account-users .table-base { margin-right:0 } .account-users .table-base .table-row { min-height:45px } .account-users .table-base .table-row>td.value { text-align:left; word-break:normal; word-wrap:break-word } } @media (max-width:991.98px) { .account-users .pending-invitation { line-height:1 } .account-users .invite-others-button { float:none; margin-top:-28px; margin-bottom:40px; display:block } .account-users .invite-others-button a { width:100% } .account-users .row-text { line-height:48px } .account-users .users-resend-remove-row { line-height:1 } .account-users .table-row { border-bottom:none } .account-users .table-row>td>div.dropdown { line-height:1; margin:0 } .account-users .row-text { padding:0 } .account-users .dropdown-label { display:inline-block; float:left } .account-users .settings-dropdown { display:inline-block; float:right; width:100%; margin-top:-52px; padding-right:8px } .account-users .settings-dropdown .user-role-select { margin-top:0 } .account-users .settings-dropdown .dropdown-input { outline:none; float:right; max-width:320px } .account-users .settings-dropdown .dropdown-input__button { width:50%; outline:1px solid #e5e5e5; float:right } .account-users .settings-dropdown .dropdown-input .dropdown-menu { width:100%; margin-top:-1px; margin-left:1px } } .dashboard-home__welcome { text-overflow:ellipsis; overflow:hidden; white-space:nowrap } @media (max-width:991.98px) { .dashboard-home__welcome { background:url(/static/images/landing/holiday-order-deadlines-2018/confetti-bg.svg) no-repeat 50%; background-size:cover } } .dashboard-home__welcome--hidden { background:none } .dashboard-home__resources a { text-decoration:none } .dashboard-home__resources a:hover { background-color:#f8f8f8 } .dashboard-home__resources a:hover p { color:#222 } .dashboard-home__resources a:not(:last-of-type) { border-bottom:1px solid #e5e5e5 } .dashboard-home__resources div { overflow:hidden } .dashboard-home__resources p { text-overflow:ellipsis; overflow:hidden; white-space:nowrap; color:#555 } .dashboard-home__warehousing>div:not(:first-of-type) { border-top:1px solid #e5e5e5 } .dashboard-home__shortcuts-container>div, .dashboard-home__trending-products-item { width:50% } .dashboard-home__trending-products-item .product-item { margin:0!important } .dashboard-home__trending-products-item .product-item__detail { min-height:0 } .dashboard-home__shortcut { position:relative; height:100% } .dashboard-home__shortcut p { width:100% } .dashboard-home__shortcut-img { width:48px } .dashboard-home__shortcut-badge { position:absolute; top:-3px; padding-top:2px; right:-18px; font-size:10px; line-height:15px; text-transform:uppercase; font-weight:700 } .dashboard-home__announcement img { width:96px } .dashboard-home__banner img { max-width:42px } .dashboard-home__banner i { position:absolute; cursor:pointer; top:-5px; right:13px } .dashboard-home__essential-steps img { width:100% } .dashboard-home__essential-steps-list>div a, .dashboard-home__extra-steps-list>div a { text-decoration:none } .dashboard-home__essential-steps-list>div:not(:last-of-type), .dashboard-home__extra-steps-list>div:not(:last-of-type) { border-bottom:1px solid #e5e5e5 } .dashboard-home__onboarding-step--completed { pointer-events:none } .dashboard-home__onboarding-step--completed h4 { text-decoration:line-through } .dashboard-home__onboarding-step--disabled { pointer-events:none; user-select:none; opacity:.3 } .dashboard-home__onboarding-step--extra { pointer-events:auto } .dashboard-home__statistics img { width:100%; max-width:240px } .dashboard-home__issues-filter a, .dashboard-home__orders-filter a { text-decoration:none; color:#555 } .dashboard-home__issues-filter a:hover, .dashboard-home__orders-filter a:hover { background-color:#f8f8f8 } .dashboard-home__issues-filter a:hover p, .dashboard-home__orders-filter a:hover p { color:#222 } .dashboard-home__issues-filter a:not(:last-of-type), .dashboard-home__orders-filter a:not(:last-of-type) { border-bottom:1px solid #e5e5e5 } .dashboard-home__filters select { position:absolute; padding:0!important; top:0; width:90%!important; height:100%!important; color:transparent } .dashboard-home__mobile-filter { position:relative; background:transparent url(/static/images/icons/chevron-down.svg) no-repeat right 16px center; background-size:auto 20px; cursor:pointer } .dashboard-home__rotate { transform:rotate(180deg) } .dashboard-home__pending-reviews .pf-i { cursor:pointer } .dashboard-home__pending-reviews .pf-i:hover { color:#222!important } .dashboard-home__pending-reviews-list { max-height:318px; overflow:scroll } .dashboard-home__pending-reviews p { text-overflow:ellipsis; overflow:hidden; color:#555 } .dashboard-home__pending-reviews .modal-content { margin:250px auto auto } @media screen and (max-width:550px) { .dashboard-home__pending-reviews .modal-content { margin:100px auto auto } } .dashboard-home__pending-reviews .modal-header { padding-left:24px } .dashboard-home__pending-reviews .modal-body { padding:0 20px 0 24px } .dashboard-home__pending-reviews .review__buttons { margin-right:-20px; margin-left:-24px } .dashboard-home__pending-reviews .review__buttons .col-6 { padding-left:24px } .dashboard-home__review-item>div { cursor:pointer } .dashboard-home__review-item .pf-i:hover { color:#222!important } .dashboard-home__review-item:hover { box-shadow:0 0 8px 0 rgba(0,0,0,.06); background-color:#fff } .dashboard-home__review-item:hover p { color:#222 } .dashboard-home__review-item img { width:48px; height:48px; margin-right:12px; display:inline-block } .dashboard-home__tip-item-text { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; text-overflow:ellipsis } .dashboard-home__no-outline, .dashboard-home__no-outline span a { outline:none!important } .dashboard-home__done-btn { height:auto; line-height:normal; white-space:normal } .dashboard-home__tip-done { text-decoration:line-through } .dashboard-home__top-position { position:absolute; left:0; top:0 } h4.small { font-size:20px; font-weight:400 } h4.grey { color:#bbb } span.bold { font-weight:700 } span.block { display:block } .intro-content-row div.col-md-6 { border:30px solid transparent; margin-left:-6px } .intro-content-row ul.list-unstyled li { border-radius:0; background:#f8f8f8 } .intro-content-row a.integration-button { width:115px } .intro-content-row a.integration-button.shopify { background-size:150px 38px } .intro-content-row a.integration-button.tictail { background-size:145px 40px } .intro-content-row a.integration-button.bigcartel { background-size:140px 30px } .intro-content-row a.integration-button.bigcommerce, .intro-content-row a.integration-button.gumroad, .intro-content-row a.integration-button.magento, .intro-content-row a.integration-button.opencart, .intro-content-row a.integration-button.shipstation-intro, .intro-content-row a.integration-button.storenvy, .intro-content-row a.integration-button.woocommerce { background-size:110px 28px!important } .intro-content-row .box-grey { padding-top:5px } .intro-content-row .box-grey .box-inner { background:#f8f8f8; padding:4px; border:1px solid #ddd } .intro-content-row .box-grey .box-inner h3 { font-size:25px } .intro-content-row .box-grey .box-inner .order-asset-image { width:68px; height:70px; margin:0 auto; background:url(/static/images/layout/order-asset.png) no-repeat } @media (-o-min-device-pixel-ratio:2.6/2),(-webkit-min-device-pixel-ratio:1.3),(min--moz-device-pixel-ratio:1.3),(min-device-pixel-ratio:1.3),(min-resolution:1.3dppx) { .intro-content-row .box-grey .box-inner .order-asset-image { background-image:url(/static/images/layout/order-asset@2x.png); background-size:68px 70px } } .intro-content-row .horizontal-divider { width:100% } .intro-content-row .horizontal-divider .divider-line:first-child { height:1px; width:100%; background:#ccc } .intro-content-row .horizontal-divider .divider-line:not(:first-child) { display:none } .intro-content-row .horizontal-divider .divider-text { margin-top:-30px; margin-left:auto; margin-right:auto; background:#fff } .intro-content-row .vertical-divider { position:absolute; left:46%; z-index:1; padding-top:5px; height:440px } .intro-content-row .vertical-divider .divider-line { width:1px; height:140px; margin:0 auto; background:#ccc } .intro-content-row .horizontal-divider .divider-text, .intro-content-row .vertical-divider .divider-text { height:60px; width:60px; padding-top:10px; padding-left:13px; border:5px solid #ccc; border-radius:50%; font-size:22px; font-weight:700; font-style:italic } .youtube-video-box { max-width:720px; width:100%; height:405px; margin:0 auto } .youtube-video-box.small { max-width:213px; height:120px; overflow:hidden; text-align:center } .youtube-video-box.small iframe { max-width:220px; height:120px; margin-left:-3px } .b2c-nav li.sign-out { padding-top:4px!important; border-top:1px solid #e5e5e5!important; background:#f8f8f8!important } .b2c-nav li.sign-out button { width:100%; height:30px; padding-left:20px; background:none; border:none; color:#7c7c7c; text-align:left } .b2c-nav li.sign-out button:hover { color:#000 } @media (min-width:768px) { .youtube-video-box { height:405px } } @media (max-width:767.98px) { .youtube-video-box { height:250px } } @media (min-width:992px) and (max-width:1199.98px) { .intro-content-row a.integration-button { width:107px } } .logo-maker .pf-badge { white-space:nowrap } @media (min-width:768px) { .logo-maker .mobile-filter-selector { display:none } } .logo-maker-filter__search input.search { height:40px } .logo-maker-list table thead { display:none } .logo-maker-list table tbody { display:block } .logo-maker-list .logo-maker-list-item { display:flex; align-items:center; flex-wrap:wrap } .logo-maker-list .logo-maker-list-item:not(:first-child) { border-top:none!important } .logo-maker-list .logo-maker-list-item.logo-maker-item--initializer { display:block } .logo-maker-list .logo-maker-list-item .logo-maker-item--initializer-contents:hover { background-color:#f8f8f8 } .logo-maker-list .logo-maker-list-item__cell { display:block } .logo-maker-list .logo-maker-list-item__cell--checkbox { min-width:30px; flex-basis:10% } .logo-maker-list .logo-maker-list-item__cell--logo { flex-basis:80%; flex-grow:1 } .logo-maker-list .logo-maker-list-item__cell--details { flex-basis:100% } .logo-maker-list .logo-maker-list-item__cell--actions { min-width:180px; text-align:center; flex-basis:100% } .logo-maker-list .logo-maker-list-item__cell--actions .button-list { width:100% } .logo-maker-list .logo-maker-list-item__cell--actions .button-list>* { display:block; float:left } .logo-maker-list .logo-maker-list-item__cell--actions .button-list .last-visible-btn { width:calc(100% - 52px) } @media (min-width:540px) { .logo-maker-list .logo-maker-list-item__cell--details, .logo-maker-list .logo-maker-list-item__cell--logo { flex-basis:45% } } @media (min-width:768px) { .logo-maker-list:not(.logo-maker-list--simple-view) table thead { display:table-header-group } .logo-maker-list:not(.logo-maker-list--simple-view) table tbody { display:table-row-group } .logo-maker-list:not(.logo-maker-list--simple-view) .logo-maker-list-item, .logo-maker-list:not(.logo-maker-list--simple-view) .logo-maker-list-item.logo-maker-item--initializer { display:table-row } .logo-maker-list:not(.logo-maker-list--simple-view) .logo-maker-list-item__cell { display:table-cell } .logo-maker-list:not(.logo-maker-list--simple-view) .logo-maker-list-item__cell--actions { text-align:right } .logo-maker-list:not(.logo-maker-list--simple-view) .logo-maker-list-item__cell--actions .button-list { width:inherit } .logo-maker-list:not(.logo-maker-list--simple-view) .logo-maker-list-item__cell--actions .button-list>* { display:inherit; float:none } .logo-maker-list:not(.logo-maker-list--simple-view) .logo-maker-list-item__cell--actions .button-list .last-visible-btn { width:inherit } } .logo-maker-list .logo-list-enter { background-color:#e5f5e4 } .logo-maker-list .logo-list-enter-active { transition:background-color 2s cubic-bezier(.6,.04,.98,.335) } .logo-maker-list .logo-list-enter-to { background-color:inherit } .logo-maker-grid .logo-maker-grid-item__checkbox { position:absolute } .logo-maker-grid .logo-maker-item { display:flex } .logo-maker-grid .logo-maker-item__initializer-contents { height:100% } .logo-maker-grid .logo-maker-item__initializer-contents:hover { background-color:#f8f8f8 } .logo-maker-grid .logo-maker-item__initializer-contents .logo-maker-initializer__text { text-align:center } .logo-maker-grid .logo-maker-item__inner { cursor:pointer; min-height:361px; width:100%; position:relative } @media (min-width:540px) { .logo-maker-grid .logo-maker-item__inner:hover { box-shadow:0 1px 7px 0 rgba(90,90,90,.5) } .logo-maker-grid .logo-maker-item__inner:hover .thumbnail-node .overlay { display:block } .logo-maker-grid .logo-maker-item__inner:hover .thumbnail-node .overlay .choose { pointer-events:auto } .logo-maker-grid .logo-maker-item__inner:hover .actions { display:block; width:90% } } .logo-maker-grid .logo-maker-item__inner .logo-maker-grid-item__checkbox { z-index:10; display:none } @media (min-width:768px) { .logo-maker-grid .logo-maker-item__inner .logo-maker-grid-item__checkbox { display:block!important } } .logo-maker-grid .logo-maker-item__inner .thumbnail-node { position:relative } .logo-maker-grid .logo-maker-item__inner .thumbnail-node .overlay { position:absolute; display:none; top:0; right:0; bottom:0; left:0; background-color:hsla(0,0%,77.3%,.7); overflow:hidden } .logo-maker-grid .logo-maker-item__inner .thumbnail-node .overlay .choose { position:absolute; top:80px; left:20px; right:20px; display:block; background-color:#e5e5e5; pointer-events:none } .logo-maker-grid .logo-maker-item__inner .actions { position:absolute; top:0; right:0; padding:10px; text-align:right; display:none } .logo-maker-grid .logo-maker-item__inner .actions .pf-i { padding:0 5px } .logo-maker-grid .logo-maker-item__inner .actions .pf-i:hover { color:#555 } .logo-maker-grid .logo-maker-item__inner .actions .dropdown-button .dropdown-menu.dropdown-menu-left { right:auto } @media (max-width:767.98px) { .logo-maker-grid .logo-maker-item__inner .actions { display:block } } @media (max-width:539.98px) { .logo-maker-grid .logo-maker-item__inner .override-right-menu-pos .dropdown .dropdown-menu.dropdown-menu-right { left:0; right:auto } } .logo-maker-picker__items .logo-maker-picker-item__container { cursor:pointer; width:100%; height:100%; word-wrap:break-word; text-decoration:none; max-width:265px; margin:0 auto } .logo-maker-group-grid__item { display:inline-block; margin:12px 15px; padding:12px; width:132px; height:168px; border:1px solid #d8d8d8; cursor:pointer } .logo-maker-group-grid__item:hover { border-color:#555 } .logo-maker-group-grid__item__selected { border-color:#222 } .logo-maker-group-grid__item__image img { max-width:108px; height:108px; width:100% } .logo-maker-item-grid__item { width:213px; height:213px; border-radius:2px; border:1px solid #d8d8d8; display:inline-block; margin:16px } .logo-maker-item-grid__item__image img { max-width:213px; height:213px; width:100% } .pf-hover-shadow:hover { box-shadow:0 1px 5px 0 rgba(90,90,90,.5) } .pf-hover-shadow:hover.pf-border, .pf-hover-shadow:hover.pf-border-light { border-color:#e3e3e3!important } .pf-hover-background-dark:hover { color:#555!important } .product-templates .pf-badge { white-space:nowrap } .product-templates .desktop-filter-selector { display:none } @media (min-width:768px) { .product-templates .desktop-filter-selector { display:block } .product-templates .mobile-filter-selector { display:none } } .product-templates-filter__search input.search { height:40px } .product-templates-filter__sort-by { min-width:0 } .product-templates-bulk-actions .button-list.with-dropdown .last-visible-btn { width:calc(100% - 52px) } @media (min-width:540px) { .product-templates-bulk-actions .button-list.with-dropdown .last-visible-btn { width:auto } } .product-templates-bulk-actions .button-list:not(.with-dropdown) .last-visible-btn { width:100% } @media (min-width:540px) { .product-templates-bulk-actions .button-list:not(.with-dropdown) .last-visible-btn { width:auto } } .product-templates-whats-next__logo img { width:150px; height:140px } @media (min-width:992px) { .product-templates-whats-next__logo img { width:180px; height:168px } } .product-templates-intro__steps-container { overflow-x:hidden } .product-templates-intro__steps { min-width:750px } .product-templates-intro__step-image img { width:165px; height:134px } .product-templates-intro__step-part-container { display:flex; justify-content:space-between } .product-templates-intro__step-part-container .product-templates-intro__step-part { width:276px } .product-templates-intro__closer { top:16px; right:16px } .product-templates-list table thead { display:none } .product-templates-list table tbody { display:block } .product-templates-list .product-templates-item--initializer-contents:hover { background-color:#f8f8f8 } .product-templates-list .product-templates-list-item { display:flex; align-items:center; flex-wrap:wrap } .product-templates-list .product-templates-list-item:not(:first-child) { border-top:none!important } .product-templates-list .product-templates-list-item.product-templates-item--initializer, .product-templates-list .product-templates-list-item__cell { display:block } .product-templates-list .product-templates-list-item__cell--checkbox { min-width:30px; flex-basis:10% } .product-templates-list .product-templates-list-item__cell--template { flex-basis:80%; flex-grow:1 } .product-templates-list .product-templates-list-item__cell--details { flex-basis:100% } .product-templates-list .product-templates-list-item__cell--actions { min-width:180px; text-align:center; flex-basis:100% } .product-templates-list .product-templates-list-item__cell--actions .button-list { width:100% } .product-templates-list .product-templates-list-item__cell--actions .button-list>* { display:block; float:left } .product-templates-list .product-templates-list-item__cell--actions .button-list .last-visible-btn { width:calc(100% - 52px) } @media (min-width:540px) { .product-templates-list .product-templates-list-item__cell--details, .product-templates-list .product-templates-list-item__cell--template { flex-basis:45% } } @media (min-width:768px) { .product-templates-list:not(.product-templates-list--simple-view) table thead { display:table-header-group } .product-templates-list:not(.product-templates-list--simple-view) table tbody { display:table-row-group } .product-templates-list:not(.product-templates-list--simple-view) .product-templates-list-item, .product-templates-list:not(.product-templates-list--simple-view) .product-templates-list-item.product-templates-item--initializer { display:table-row } .product-templates-list:not(.product-templates-list--simple-view) .product-templates-list-item__cell { display:table-cell } .product-templates-list:not(.product-templates-list--simple-view) .product-templates-list-item__cell--actions { text-align:right } .product-templates-list:not(.product-templates-list--simple-view) .product-templates-list-item__cell--actions .button-list { width:inherit } .product-templates-list:not(.product-templates-list--simple-view) .product-templates-list-item__cell--actions .button-list>* { display:inherit; float:none } .product-templates-list:not(.product-templates-list--simple-view) .product-templates-list-item__cell--actions .button-list .last-visible-btn { width:inherit } } .product-templates-list .templates-list-enter { background-color:#e5f5e4 } .product-templates-list .templates-list-enter-active { transition:background-color 2s cubic-bezier(.6,.04,.98,.335) } .product-templates-list .templates-list-enter-to { background-color:inherit } .product-templates-grid .product-templates-grid-item__checkbox { position:absolute; line-height:1 } .product-templates-grid .product-templates-grid-item__pro-badge { position:absolute; bottom:8px; left:8px; cursor:auto } .product-templates-grid .product-templates-item { display:flex } .product-templates-grid .product-templates-item__initializer-contents { height:100% } .product-templates-grid .product-templates-item__initializer-contents:hover { background-color:#f8f8f8 } .product-templates-grid .product-templates-item__initializer-contents .product-templates-initializer__text { text-align:center } .product-templates-grid .product-templates-item__title { word-wrap:break-word } .product-templates-grid .product-templates-item__inner { cursor:pointer; min-height:361px; width:100%; position:relative } @media (min-width:540px) { .product-templates-grid .product-templates-item__inner:hover { box-shadow:0 1px 5px 0 rgba(90,90,90,.5) } .product-templates-grid .product-templates-item__inner:hover.pf-border { border-color:#e3e3e3!important } .product-templates-grid .product-templates-item__inner:hover .thumbnail-node .overlay { display:block } .product-templates-grid .product-templates-item__inner:hover .thumbnail-node .overlay .add-to-store, .product-templates-grid .product-templates-item__inner:hover .thumbnail-node .overlay .choose { pointer-events:auto } .product-templates-grid .product-templates-item__inner:hover .actions { display:block; width:90% } } .product-templates-grid .product-templates-item__inner .product-templates-grid-item__checkbox { z-index:1; display:none } @media (min-width:768px) { .product-templates-grid .product-templates-item__inner .product-templates-grid-item__checkbox { display:block!important } } .product-templates-grid .product-templates-item__inner .thumbnail-node { position:relative } .product-templates-grid .product-templates-item__inner .thumbnail-node .overlay { position:absolute; display:none; top:0; right:0; bottom:0; left:0; background-color:rgba(34,34,34,.7); overflow:hidden } .product-templates-grid .product-templates-item__inner .thumbnail-node .overlay .add-to-store, .product-templates-grid .product-templates-item__inner .thumbnail-node .overlay .choose { position:absolute; left:8px; right:8px; pointer-events:none; padding-left:0; padding-right:0; text-align:center } .product-templates-grid .product-templates-item__inner .thumbnail-node .overlay .choose { top:80px } .product-templates-grid .product-templates-item__inner .thumbnail-node .overlay .add-to-store { display:none } @media (min-width:1200px) { .product-templates-grid .product-templates-item__inner .thumbnail-node .overlay .choose { top:120px } .product-templates-grid .product-templates-item__inner .thumbnail-node .overlay .add-to-store { display:block; top:64px } } .product-templates-grid .product-templates-item__inner .actions { position:absolute; top:0; right:0; padding:8px; text-align:right; display:none } .product-templates-grid .product-templates-item__inner .actions .pf-i { padding:0 5px } .product-templates-grid .product-templates-item__inner .actions .pf-i:hover { color:#686868 } .product-templates-grid .product-templates-item__inner .actions .dropdown-button .dropdown-menu.dropdown-menu-left { right:auto } @media (max-width:1199.98px) { .product-templates-grid .product-templates-item__inner .actions { display:block } } @media (max-width:539.98px) { .product-templates-grid .product-templates-item__inner .override-right-menu-pos .dropdown .dropdown-menu.dropdown-menu-right { left:0; right:auto } } .product-template-picker__items .product-template-picker-item__container { cursor:pointer; width:100%; height:100%; word-wrap:break-word; text-decoration:none; max-width:265px; margin:0 auto } .product-template-details-editor .product-template-details-printfiles__container { margin:0 auto } .product-template-details-editor .product-template-details-printfiles__image { width:100%; height:auto; max-width:450px } .product-template-details-editor .product-template-details-printfiles__fake-image-wrapper { position:relative } .product-template-details-editor .product-template-details-printfiles__fake-image-wrapper .product-template-details-printfiles__image { visibility:hidden } .product-template-details-editor .product-template-details-printfiles__fake-image-wrapper .product-template-details-printfiles__fake-image-background { position:absolute; top:0; left:0; right:0; bottom:0; background-size:32px 32px; background-position:50%; background-repeat:no-repeat } .product-template-details-editor .product-template-details-printfiles__loader { background-image:url(/static/images/layout/spinner-transparent.gif) } .product-template-details-editor .product-template-details-printfiles__broken { background-image:url(/static/images/retina/invalid-file.svg) } .product-template-details-editor .regions-dropdown__region-picker { max-width:500px } .product-templates-review-step__title-input { max-width:556px } .rounded-color-swatch { width:12px; height:12px; border-radius:3px; border:1px solid rgba(0,0,0,.12); overflow:hidden } .item-disabled-overlay { background-color:rgba(34,34,34,.7); position:absolute; top:0; right:0; left:0; bottom:0; overflow:hidden; text-align:center; padding-top:70px; word-break:break-word } @media (max-width:767px) { .item-disabled-overlay { font-size:14px; line-height:22px; padding-top:60px } } .has-error label { color:#222!important } .has-error .help-block { font-weight:700; font-size:14px } .input-group-addon { border-color:#e5e5e5; -webkit-border-radius:0; border-radius:0 } h5 { margin:0 0 10px; font-weight:700; color:#222; line-height:30px; text-transform:none } #stats .border-right { border-right:1px solid #746861 } #stats .row:not(:last-child) { border-bottom:1px solid #fff } #stats h1 { font-family:Open Sans,sans-serif; font-weight:300; font-size:40px; color:#fff; text-transform:uppercase; line-height:55px; margin:0; white-space:nowrap } @media (max-width:991px) { #stats h1 { font-size:24px; line-height:40px } #stats h1 span:first-child { max-width:calc(100% - 25px); overflow:hidden; text-overflow:ellipsis; vertical-align:top } } #stats h2 { font-family:Open Sans,sans-serif; font-weight:300; font-size:35px; color:#fff; text-transform:uppercase; line-height:55px; text-align:left; margin:0 } #stats h2.no-transform { text-transform:none!important } #stats h2.no-transform span.small { font-size:40%; color:inherit!important } #stats h3 { margin:0; font-family:Open Sans,sans-serif; font-weight:700; font-size:14px; color:#f2c994; line-height:30px; text-transform:uppercase } @media (max-width:991px) { #stats h3 { font-size:12px } } #stats h3 strong { font-weight:700; color:#999 } #stats h4 { margin:0; font-family:Open Sans,sans-serif; font-weight:700; font-size:14px; color:#f2c994; line-height:30px; text-transform:uppercase; text-align:left } #stats h1 span, #stats h3 span { background-color:transparent; width:auto; height:auto; margin:0; padding:0; display:inline-block } #stats h3 a { display:none; line-height:26px } #stats h1 span.down, #stats h1 span.up { margin-left:7px; width:16px; height:18px; display:inline-block } @media (max-width:991px) { #stats h1 span.down, #stats h1 span.up { vertical-align:baseline } } #stats h1 span.up { background:url(/static/images/layout/arrow-up.png) no-repeat bottom } #stats h1 span.down { background:url(/static/images/layout/arrow-down.png) no-repeat bottom } @media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-resolution:2dppx) { #stats h1 span.down { background:url(/static/images/layout/arrow-down@2x.png) no-repeat bottom } #stats h1 span.up { background:url(/static/images/layout/arrow-up@2x.png) no-repeat bottom } #stats h1 span.down, #stats h1 span.up { -webkit-background-size:16px 18px; -moz-background-size:16px 18px; -o-background-size:16px 18px; background-size:16px 18px } } h3 { font-size:30px; line-height:39px } h3.small, h4.small { font-size:20px; line-height:21px } h3 a { font-size:13px; font-weight:400; line-height:35px; text-transform:none } #filter { background:#fff; position:relative } .formOverlay { position:fixed; width:100%; height:100%; top:0; background-color:#fff; opacity:.8; z-index:10 } .formOverlay .waiting { position:relative; display:block; margin:auto; font-weight:700; top:45%; width:300px; text-align:center } .spinner { background:url(/static/images/layout/spinner-white.gif) no-repeat 50%; width:32px; height:32px; margin:0; display:none } .spinner.yellow { background-image:url(/static/images/layout/spinner-yellow.gif) } .spinner.small { -webkit-background-size:16px 16px; background-size:16px 16px; display:inline-block; vertical-align:middle } table.orders .icon-alternatives { color:#bcbcbc; font-size:12px; margin-left:8px } table.orders>tbody>tr>td>a.customer, table.table>tbody>tr>td { color:#222 } table.orders>tbody>tr>td>a.customer:hover { text-decoration:none; border-bottom:1px dotted #222 } table.orders>tbody>tr.grayscale, table.orders>tbody>tr.grayscale>td, table.orders>tbody>tr.grayscale>td>a { color:#bcbcbc } table.orders>tbody>tr.not-synced { background-color:#f3f3f3 } div.status-label { white-space:nowrap; min-width:190px; height:30px; margin:0; padding:0 8px; font-weight:400; font-size:15px; line-height:30px; display:inline-block; float:left } div.status-label.canceled { background-color:#f0f0f0 } div.status-label.failed, div.status-label.temporary { background-color:#f2836b; color:#fff } div.status-label.onhold, div.status-label.onhold__second-badge { background-color:#b6dde9; color:#222; float:left } div.status-label.approved, div.status-label.draft, div.status-label.inreview { background-color:#d5eff6; color:#222 } div.status-label.onhold__second-badge { position:relative; width:auto; display:inline-block; margin-right:10px } div.status-label.onhold__second-badge--status { padding:0 8px; display:inline-block; width:auto; float:left } .onhold__update-icon, .report-icon { display:inline-block; width:22px; height:30px; background:url(/static/images/icons/hold/request-icon.svg) no-repeat 50%; margin-left:10px; float:left } div.status-label.fulfilled { float:left } .report-icon { height:28px; background:url(/static/images/layout/icons/problem_report.svg) no-repeat 50% } div.status-label.draft.not-synced { background-color:#f2ded6; color:#222 } div.status-label.inprocess { background-color:#dbe3a2; color:#222 } div.status-label.inreview, div.status-label.pending { background-color:#fee79b; color:#222 } div.status-label.partial { background-color:#1cc98e; color:#fff } div.status-label.fulfilled { background-color:#f8f8f8; color:#b7b7b7 } table.table.summary { width:440px; margin:0 auto 20px } @media screen and (max-width:767px) { table.table.summary { width:100% } } table.table.summary tbody tr { border-bottom:1px solid #e5e5e5; height:53px; line-height:53px } table.table.summary tbody tr:first-child { border-top:0 } table.table.summary tbody tr:last-child { border-bottom:0 } table.table.summary tbody td { font-size:16px; font-weight:700; line-height:53px; white-space:nowrap } table.table.summary tbody td:first-child { font-weight:400; padding:0 0 0 47px!important } @media screen and (max-width:767px) { table.table.summary tbody td:first-child { padding:0!important } } table.table.summary tbody td:last-child { padding:0 47px 0 0 } @media screen and (max-width:767px) { table.table.summary tbody td:last-child { padding:0!important } } table.table.summary.bottom-form input { margin:0; vertical-align:middle; display:inline-block } table.table.summary.bottom-form span { vertical-align:middle } .order-item-table .arrow { display:none; bottom:2% } .order-item-table.no-products { width:100%; text-align:center } .order-item-table.no-products .arrow { display:block } .col-md-4 div.brown.one, .col-md-4 div.brown.three, .col-md-4 div.brown.two { padding:35px 45px } .col-md-4 div.brown.one h3, .col-md-4 div.brown.three h3, .col-md-4 div.brown.two h3 { margin-top:0; font-size:20px; line-height:21px; color:#fff } .col-md-4 div.brown.one p, .col-md-4 div.brown.three p, .col-md-4 div.brown.two p { margin:0 0 20px; font-weight:700; font-size:15px; color:#fff; line-height:23px } .col-md-4 div.brown.one { background:#3d3733 url(/static/images/layout/one.png) no-repeat 0 0 } .col-md-4 div.brown.two { background:#3d3733 url(/static/images/layout/two.png) no-repeat 0 0 } .col-md-4 div.brown.three { background:#3d3733 url(/static/images/layout/three.png) no-repeat 0 0 } .affiliate-settings label { display:none } ul.orderTypeList li>div { background-color:#fff; color:#222; border:1px solid #eee; overflow:hidden; margin:0 20px 20px 0; vertical-align:top } ul.orderTypeList li:last-child { padding-right:0 } ul.orderTypeList li:last-child>div { margin-right:0 } ul.orderTypeList li>div:not(.disabled):hover { cursor:pointer; -webkit-box-shadow:0 2px 3px 0 rgba(91,91,91,.4); -moz-box-shadow:0 2px 3px 0 rgba(91,91,91,.4); box-shadow:0 2px 3px 0 rgba(91,91,91,.4) } ul.orderTypeList li>div:not(.disabled):hover .button.gray { border-color:#bbb } ul.orderTypeList li>div:hover .button.red, ul.orderTypeList li>div:not(.disabled):hover .button.gray { text-decoration:none; box-shadow:0 2px 4px 0 rgba(0,0,0,.25); -webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.25) } ul.orderTypeList li>div:hover .button.red { border-color:#9e231c } ul.orderTypeList li>div.disabled a { cursor:default } ul.orderTypeList li>div .disabled { padding:10px 0 9px; text-align:center; display:block; color:#222; font-weight:600 } ul.orderTypeList .standard-order { background:#f8f8f8 } ul.orderTypeList .box-content>a.box-title, ul.orderTypeList .box-content>span.box-title { color:#222; display:block; text-align:center; font-size:22px; padding:10px 0 } ul.orderTypeList .box-content { padding:25px 15px } ul.orderTypeList .box-content ul li { margin-bottom:15px } ul.orderTypeList .box-content>a, ul.orderTypeList .box-content>span { width:100% } ul.orderTypeList .box-content>a.type-link, ul.orderTypeList .box-content>span.type-link { display:block; padding-top:90px; text-align:center; color:#767676; height:185px } ul.orderTypeList .standard-order .box-content a.type-link { background:url(/static/images/layout/standard-order-icon.png) no-repeat 50% 10px } ul.orderTypeList .sample-order .box-content>span.type-link, ul.orderTypeList .sample-order .box-content a.type-link { background:url(/static/images/layout/sample-order-icon.png) no-repeat 50% 10px } @media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-resolution:2dppx) { ul.orderTypeList .standard-order .box-content a.type-link { background:url(/static/images/retina/standard-order-icon@2x.png) no-repeat 50% 10px; -webkit-background-size:55px 57px; -moz-background-size:55px 57px; -o-background-size:55px 57px; background-size:55px 57px } ul.orderTypeList .sample-order .box-content>span.type-link, ul.orderTypeList .sample-order .box-content a.type-link { background:url(/static/images/retina/sample-order-icon@2x.png) no-repeat 50% 10px; -webkit-background-size:57px 57px; -moz-background-size:57px 57px; -o-background-size:57px 57px; background-size:57px 57px } } .syncList td { vertical-align:middle } .syncList .syncStatus { padding:7px 5px } .syncList .syncStatus.all { background:#f8f8f8; color:#999 } .syncList .syncStatus.partial { background:#fde79b } .syncList .syncStatus.none { background:#f1836a; color:#fff } span.comingSoon { margin:1px; padding:0 20px; font-family:Raleway,sans-serif; font-size:13px; font-weight:700; line-height:37px; text-transform:uppercase; text-align:center; display:inline-block; vertical-align:top; color:#999 } ul.orderProgress { height:50px; margin:0; padding:0; list-style:none; overflow:hidden } ul.orderProgress li { padding:0!important } ul.orderProgress li:nth-child(2) { width:220px; text-align:center } ul.orderProgress li h4 { margin:0; font-weight:700; font-size:16px; color:#8d8d8d; line-height:48px; text-transform:uppercase } ul.orderProgress li.active h4 { color:#222 } ul.orderProgress li div { background-color:#e5e5e5; height:2px; margin:0; padding:0; -webkit-transition:all .1s linear; -moz-transition:all .1s linear; -ms-transition:all .1s linear; -o-transition:all .1s linear; transition:all .1s linear } ul.orderProgress li div.progress50 { background:#74c008; background:-moz-linear-gradient(left,#74c008 0,#74c008 50%,#e5e5e5 50%,#e5e5e5 100%); background:-webkit-gradient(linear,left top,right top,color-stop(0,#74c008),color-stop(50%,#74c008),color-stop(50%,#e5e5e5),color-stop(100%,#e5e5e5)); background:-webkit-linear-gradient(left,#74c008,#74c008 50%,#e5e5e5 0,#e5e5e5); background:-o-linear-gradient(left,#74c008 0,#74c008 50%,#e5e5e5 50%,#e5e5e5 100%); background:-ms-linear-gradient(left,#74c008 0,#74c008 50%,#e5e5e5 50%,#e5e5e5 100%); background:linear-gradient(90deg,#74c008 0,#74c008 50%,#e5e5e5 0,#e5e5e5); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#74c008",endColorstr="#e5e5e5",GradientType=1) } ul.orderProgress li div.progress100 { background-color:#74c008 } input.search { background:url(/static/images/layout/search_magnet.png) no-repeat 9px 10px; padding:5px 10px 5px 35px!important } input.search.with-clear { background-image:none } .search-wrapper { position:relative } .search-wrapper .search-clear { position:absolute; top:9px; right:2% } .search-wrapper .search-clear img { width:14px; height:14px } @media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-resolution:2dppx) { input.search { background:url(/static/images/retina/search_magnet@2x.png) no-repeat 9px 10px; -webkit-background-size:16px 16px; -moz-background-size:16px 16px; -o-background-size:16px 16px; background-size:16px 16px } } .cardlabel { background:#74c008 url(/static/images/layout/icons/cardlabel.png) no-repeat 15px 19px; margin:25px 0 10px; padding:15px 25px 15px 40px } .cardlabel p { font-weight:700; font-size:14px; color:#fff; line-height:20px } div.hosted-container { display:flex; height:38px; background-color:#fff; margin:0; border:1px solid #e5e5e5!important; width:100%; padding:0 10px; font-weight:300; font-size:15px; color:#222!important; line-height:25px; outline:none; box-sizing:border-box!important } div.hosted-container>div, div.hosted-container span { height:inherit; line-height:1; width:100% } #cvv.hosted-container { width:100px!important; margin-right:15px!important } div.hosted-container.date { display:inline-flex; width:50px } div.hosted-container.new div { height:33px } div.hosted-container.new.date:first-of-type { margin-right:10px } .securitylabel { background:#fae067 url(/static/images/layout/icons/securitylabel.png) no-repeat 17px 19px; margin:0 0 10px; padding:15px 25px 15px 40px } .securitylabel p { font-weight:700; font-size:14px; color:#333; line-height:20px } .infolabel { background:#f9f2d2 url(/static/images/layout/icons/infolabel.png) no-repeat 15px 19px; margin:0 0 10px; padding:15px 25px 15px 40px } .infolabel p { font-weight:400; font-size:14px; color:#333; line-height:20px } .legallabel { background:#f9f2d2 url(/static/images/layout/icons/infolabel.png) no-repeat 15px 19px; margin:0 0 10px; padding:15px 25px 15px 40px } .legallabel p { font-weight:400; font-size:14px; color:#333; line-height:20px } .infolabel p strong, .legallabel p strong { margin:0 0 10px; display:block } .creditcard { width:51px; height:32px; margin:0 5px 0 0; padding:0; display:inline-block; vertical-align:middle } .visa { background:url(/static/images/layout/icons/visa.png) no-repeat } .mastercard { background:url(/static/images/layout/icons/mastercard.png) no-repeat } .maestro { background:url(/static/images/layout/icons/maestro.png) no-repeat } .americanexpress { background:url(/static/images/layout/icons/americanexpress.png) no-repeat } .discover { background:url(/static/images/layout/icons/discover.png) no-repeat } .paypal { background:url(/static/images/layout/icons/paypal.png) no-repeat; background-size:contain } a#braintree-paypal-button { background-color:#0079c1!important; background-image:-webkit-linear-gradient(#00a1ff 20%,#0079c1)!important; background-image:linear-gradient(#00a1ff 20%,#0079c1)!important; background-repeat:no-repeat!important; border-color:#0079c1 #00588b #004b77!important; -webkit-box-shadow:inset 0 1px #4dbeff!important; box-shadow:inset 0 1px #4dbeff!important; cursor:pointer!important; display:inline-block!important; box-sizing:border-box!important; border-radius:5px!important; font-size:16px!important; height:2em!important; margin:0!important; overflow:hidden!important; padding:0!important; position:relative!important; text-align:center!important; width:auto!important; white-space:nowrap!important; border-width:1px; border-style:solid } a#braintree-paypal-button:before { content:url(/static/images/layout/icons/paypal-button.svg); height:100%!important; margin:.4em .4em 0 .5em!important; width:1em!important; display:block!important; float:left!important } a#braintree-paypal-button:after { content:"Log In with PayPal"; box-shadow:inset 1px 0 rgba(77,190,255,.5)!important; color:#f9fcff!important; text-shadow:0 -1px 0 #00629c!important; border-left:1px solid #00588b!important; font:normal 700 .6875em/1.5 Helvetica Neue,Arial,sans-serif!important; height:2.75em!important; padding:.625em .66667em!important; vertical-align:baseline!important; cursor:pointer!important; display:inline-block!important } a#braintree-paypal-button:hover { box-shadow:0 2px 4px 0 rgba(0,0,0,.25)!important; border-color:#00588b!important } a#braintree-paypal-button img { display:none!important } div#braintree-paypal-loggedin { padding:6px!important } .creditcard.none, .postpay, .wallet { background:url(/static/images/layout/icons/wallet.png) no-repeat } .card { background:url(/static/images/layout/icons/card.png) no-repeat } @media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-resolution:2dppx) { .visa { background-image:url(/static/images/retina/icons/visa@2x.png) } .mastercard, .visa { -webkit-background-size:51px 32px; -moz-background-size:51px 32px; background-size:51px 32px } .mastercard { background-image:url(/static/images/retina/icons/mastercard@2x.png) } .maestro { background-image:url(/static/images/retina/icons/maestro@2x.png) } .americanexpress, .maestro { -webkit-background-size:51px 32px; -moz-background-size:51px 32px; background-size:51px 32px } .americanexpress { background-image:url(/static/images/retina/icons/americanexpress@2x.png) } .discover { background-image:url(/static/images/retina/icons/discover@2x.png) } .discover, .paypal { -webkit-background-size:51px 32px; -moz-background-size:51px 32px; background-size:51px 32px } .paypal { background-image:url(/static/images/retina/icons/paypal@2x.png) } .postpay, .wallet { background-image:url(/static/images/retina/icons/wallet@2x.png) } .card, .postpay, .wallet { -webkit-background-size:51px 32px; -moz-background-size:51px 32px; background-size:51px 32px } .card { background-image:url(/static/images/retina/icons/card@2x.png) } } p.text-loading { font-size:14px; line-height:16px } @media only screen and (max-width:991px) { .billing-head .col-md-4 { margin-bottom:20px } .billing-head .col-md-4:last-child { margin-bottom:0 } } table.billing div.status-label { width:100px; height:30px; margin:0; padding:0 8px; font-weight:400; font-size:15px; line-height:30px } table.billing div.status-label.refunded, table.billing div.status-label.voided { background-color:#f0f0f0 } table.billing div.status-label.unknown { background-color:#d5eff6; color:#222 } table.billing div.status-label.failed { background-color:#f2836b; color:#fff } table.billing div.status-label.success { background-color:#dbe3a2; color:#222 } @media (min-width:768px) { .notifications-header { padding-left:0 } } .notifications-navi li a { font-size:16px } @media screen and (max-width:991px) { .notification-window-holder { padding:20px 0 } } .notification-warning { background:#fff; border:1px solid #dedede; padding:110px; text-align:center } .notification-warning p { color:#555 } .notifications .notification-group { color:#7c7c7c; padding:15px 0 30px; line-height:36px; font-size:24px } .notifications .notification-item { border:1px solid #e5e5e5; background:#f8f8f8; font-size:15px; padding:20px; margin:0 0 20px } .notifications .notification-item.new { background:#fff } .notifications .notification-circle { width:100%; border-radius:50%; overflow:hidden } .notifications .notification-circle img { width:100%; display:block } .notification-body { padding:20px 0 0 } .notification-footer { border-top:1px solid #e5e5e5; padding:15px 0 0; margin:15px 0 0 } .notification-type { height:30%; overflow:hidden; line-height:14px; text-overflow:ellipsis; float:left } .notification-meta-right, .notification-meta-right a, .notification-type, .notification-type a { color:#7c7c7c; font-size:13px; line-height:14px } .notification-employee, .notification-employee a { color:#7c7c7c; font-size:13px; line-height:16px } .notification-meta-right { position:relative; float:right } .notification-meta-right .date { display:block; min-width:70px; text-align:right } .notification-meta-right a:hover { color:#0a0a0a } .notification-type.warning { color:#f34536 } .notification-type.success { color:#0c8512 } .notification-title { font-size:20px; line-height:30px; padding:0 0 3px } .notification-image { float:left; width:60px } .notification-content { margin:0 0 0 76px; overflow:hidden } .new .notification-title { font-weight:700 } .container-header-holder { padding:20px 0 } .container-header { font-size:40px } .link-left { float:left } .link-right { float:right } .link-readmore .glyphicon { color:silver; font-size:12px } .link-settings { margin:15px 20px 0 0; display:block } .image-icon { position:relative; top:1px; display:inline-block } .image-icon:before { content:""; display:block; margin:0 5px; position:relative } .image-icon-like:before { width:15px; height:15px; background:url(/static/images/layout/notifications/like.svg) no-repeat 50%; background-size:100% } .image-icon-settings:before { width:15px; height:15px; background:url(/static/images/layout/notifications/settings.svg) no-repeat 50%; background-size:100%; top:1px } .headcrumbs .order-info--logo { height:40px } @media (max-width:991.98px) { .headcrumbs .order-info--logo { height:24px } } @media (max-width:991.98px) { .headcrumbs .order-info { border:none!important } } @media only scre0en and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-resolution:2dppx) { .notifications .notification-item .notification-success { background:url(/static/images/retina/info-ikona@2x.png) no-repeat 80% 50%; -webkit-background-size:19px 19px; -moz-background-size:19px 19px; -o-background-size:19px 19px; background-size:19px 19px } .notifications .notification-item .notification-warning { background:url(/static/images/retina/uzmanibu-ikona@2x.png) no-repeat 80% 50%; -webkit-background-size:19px 19px; -moz-background-size:19px 19px; -o-background-size:19px 19px; background-size:19px 19px } } .nav-pills.switch li { border-bottom:3px solid transparent } .nav-pills.switch li.active { border-bottom:3px solid #333 } @media (max-width:767px) { .nav-pills.switch li a { margin:10px 0 } } #statistics h4 { margin:0; line-height:39px } #statistics .period-switch a.btn.btn-default { border-color:#e5e5e5; width:40px; height:39px; font-size:20px; line-height:25px; color:#7c7c7c; -webkit-border-radius:0; border-radius:0 } #statistics .period-switch input[type=text] { border-top:1px solid #e5e5e5; border-right:0!important; border-bottom:1px solid #e5e5e5; border-left:0!important; width:auto; float:left; text-align:center } #alternatives-banner .whitesmoke { border-top-left-radius:35px; border-bottom-left-radius:35px } #alternatives-banner .content { padding-left:60px } #alternatives-banner .image-container { margin-left:-4px } #alternatives-banner .img-rounded { width:125px; position:absolute; top:-30px; left:0 } @media (max-width:991px) { #alternatives-banner .whitesmoke { border-top-left-radius:50px; border-bottom-left-radius:70px } #alternatives-banner .content { padding-left:80px } } @media (max-width:767px) { #alternatives-banner .whitesmoke { position:relative; border-top-left-radius:0; border-bottom-left-radius:0; padding-top:60px!important; margin-top:50px } #alternatives-banner .content { padding-left:15px; text-align:center } #alternatives-banner .image-container { position:absolute; top:-63px; margin-left:0 } #alternatives-banner .img-rounded { display:block; position:relative; margin:auto; top:0 } #alternatives-banner .btn { margin-top:15px } } .form-control::-webkit-input-placeholder, ::-webkit-input-placeholder { color:#a7a7a7 } .form-control:-moz-placeholder, .form-control::-moz-placeholder, :-moz-placeholder, ::-moz-placeholder { color:#a7a7a7; opacity:1 } .form-control:-ms-input-placeholder, :-ms-input-placeholder { color:#a7a7a7 } .integration-logo.small { height:36px; max-width:36px } .modal-on-top { z-index:10000!important } .learn-box { background:#f8f8f8; border:1px solid #e5e5e5 } .learn-box .icon-info { color:#a7a7a7 } .learn-box span { color:#222; font-family:ProximaNova,sans-serif } .main-title { line-height:1.5em } @media screen and (min-width:0px) { .main-title { font-size:calc(16px + 1.33333vw) } } @media screen and (min-width:1200px) { .main-title { font-size:32px } } .delete-account input[type=checkbox] { margin:0; position:relative; top:2px; width:16px!important; height:16px!important } .delete-account .support-info { text-align:center; margin-top:10px; margin-bottom:30px; line-height:2em } .delete-account .support-info .info-title { font-weight:700; font-size:1.2em } .delete-account .support-info>span { display:block } .dom-debugging-container { min-height:20px; border:2px solid red } .dom-debugging-container .dom-log-wrapper { color:#000 } .dom-debugging-container .dom-log-wrapper .dom-log { max-height:200px; overflow-y:scroll } @media only screen and (min-width:0px) and (max-width:767px) { .dom-debugging-container { margin-top:54px } } .hold-request-modal { float:left; left:50%!important; top:50%!important; transform:translate(-50%,-50%)!important } .hold-request-modal__textarea { height:80px; resize:vertical } .billing-email-address { padding-top:5px!important; text-overflow:ellipsis; word-break:break-all; overflow:hidden; white-space:nowrap } .billing-email-address:hover { overflow:visible; white-space:normal; height:auto } .amazon-regions { margin-left:-5px } .shipping-banner { position:relative; background-color:#f8f8f8 } .shipping-banner div a { color:#000!important; background-color:#e5e5e5 } .shipping-banner .title { font-size:18px; font-weight:700; color:#000 } .shipping-banner p { color:#000 } .shipping-banner #banner-close { position:absolute; top:7px; right:7px; background:none; font-weight:700 } .order-customized-label { display:inline-block; height:14px; width:14px; background-color:#40d2d2; color:#fff; font-size:14px; text-align:center; font-weight:700; line-height:16px; margin-left:4px } .embedded .user-settings { margin-top:0 } .embedded--force-scroll { overflow:scroll } .dashboard>.header { display:none } .dashboard__header { position:fixed; height:64px; top:0; right:0; left:0; z-index:100; border-bottom:1px solid #e5e5e5 } .dashboard__header .customer-notifications>li>a span.notification-count { border:2px solid #fff; color:#fff!important } .dashboard__logo { position:absolute; top:0; left:0; bottom:0; width:232px; border-right:1px solid #e5e5e5; box-shadow:8px 0 10px -2px rgba(0,0,0,.05); line-height:1; font-size:16px; z-index:101 } .dashboard__logo img { height:18px; -webkit-flex-shrink:0; -moz-flex-shrink:0; -ms-flex-shrink:0; flex-shrink:0; align-self:center } .dashboard__logo a { white-space:nowrap } .dashboard__logo a>* { vertical-align:middle } .dashboard__logo .divider { display:inline-block; width:0; height:28px } .dashboard__menu { position:absolute; top:0; left:0; padding-left:232px; width:100% } .dashboard__menu .shipping-bar { height:64px; line-height:1 } .dashboard__menu #userbar { list-style:none } .dashboard__menu #userbar a { text-decoration:none } .dashboard__menu #userbar>li { vertical-align:top; display:inline-block!important } .dashboard__menu #userbar #toggle-customer-notifications, .dashboard__menu #userbar .account-menu .dropdown-toggle, .dashboard__menu #userbar .language-menu .dropdown-toggle, .dashboard__menu #userbar .settings-menu .dropdown-toggle:not(.dropdown-input__button) { margin-top:10px!important } .dashboard__menu #userbar .language-menu .dropdown-toggle { padding-top:10px!important } .dashboard__menu #userbar .language-menu>li>ul.dropdown-menu { top:63px } .dashboard__menu #userbar .nav.account-menu>li>a { padding-left:1px } .dashboard__menu #userbar .nav.account-menu>li>ul.dropdown-menu { top:53px } .dashboard__menu #userbar .settings-menu>li>ul.dropdown-menu { margin-top:10px!important } .dashboard__menu #userbar .customer-notifications>li>ul.dropdown-menu, .dashboard__menu #userbar .settings-menu>li>ul.dropdown-menu { top:54px; right:-19px } .dashboard__menu #userbar .customer-notifications>li>ul.dropdown-menu:after, .dashboard__menu #userbar .customer-notifications>li>ul.dropdown-menu:before, .dashboard__menu #userbar .settings-menu>li>ul.dropdown-menu:after, .dashboard__menu #userbar .settings-menu>li>ul.dropdown-menu:before { display:none } .dashboard__sidebar { position:fixed; width:232px; top:64px; bottom:0; left:0; z-index:100; border-right:1px solid #e5e5e5; box-shadow:8px 0 10px -2px rgba(0,0,0,.05); display:flex; flex-direction:column } .dashboard__sidebar>ul { flex:1 1 auto; overflow-y:auto } .dashboard__sidebar>ul+hr { display:block; position:relative; width:100%; height:0; border:0; margin:0; flex:0; z-index:1; overflow:visible; pointer-events:none } .dashboard__sidebar>ul+hr:before { content:" "; display:block; position:absolute; top:-60px; left:0; width:100%; height:60px; background:-moz-linear-gradient(top,hsla(0,0%,100%,0) 10%,#fff 90%); background:-webkit-linear-gradient(top,hsla(0,0%,100%,0) 10%,#fff 90%); background:linear-gradient(180deg,hsla(0,0%,100%,0) 10%,#fff 90%); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff",endColorstr="#ffffff",GradientType=0) } .dashboard__sidebar>ul~ul { overflow:hidden; flex:0 0 auto } .dashboard__sidebar>ul>li>ul>li:first-of-type { display:none } .dashboard__sidebar>ul .collapse, .dashboard__sidebar>ul .collapsing { transition:none!important } .dashboard__sidebar>ul::-webkit-scrollbar { width:5px; height:5px; background:transparent } .dashboard__sidebar>ul::-webkit-scrollbar-track { background:rgba(0,0,0,.01) } .dashboard__sidebar>ul::-webkit-scrollbar-thumb { background:rgba(0,0,0,.08) } .dashboard__sidebar>ul::-webkit-scrollbar-thumb:active, .dashboard__sidebar>ul::-webkit-scrollbar-thumb:hover { background:rgba(0,0,0,.16) } .dashboard__sidebar ul { list-style:none } .dashboard__sidebar ul li a { position:relative; white-space:nowrap; color:#555 } .dashboard__sidebar ul li a:hover { color:#222 } .dashboard__sidebar ul li a:hover>.pf-i:first-of-type { color:#555 } .dashboard__sidebar ul li a:hover [data-toggle=collapse] { color:#b1b1b1 } .dashboard__sidebar ul li a.active { color:#222; font-weight:700; letter-spacing:-.25px } .dashboard__sidebar ul li a.active>.pf-i:first-of-type { color:#ed4642 } .dashboard__sidebar ul li a>.pf-i:first-of-type { color:#b1b1b1 } .dashboard__sidebar ul li a span { white-space:normal; max-width:150px } .dashboard__sidebar ul li a span.collapsed i { transform:rotate(180deg) } .dashboard__sidebar ul li a span:nth-of-type(2) { display:inline-flex } .dashboard__sidebar ul li a [data-toggle=collapse] { position:absolute; right:0; top:0; color:#b1b1b1 } .dashboard__sidebar ul li a [data-toggle=collapse]:hover { color:#555 } .dashboard__sidebar ul li a [data-toggle=collapse]>* { pointer-events:none } .dashboard__sidebar ul li a>.indication { top:6px; margin-left:2px } .dashboard__sidebar ul li a.dashed-separator { margin-top:17px } .dashboard__sidebar ul li a.dashed-separator:before { content:""; display:block; position:relative; top:-16px; height:1px; width:100%; background-image:linear-gradient(90deg,#e5e5e5 60%,transparent 0); background-size:11px 100% } .dashboard__sidebar ul li a.start-selling:after { content:"\F0417"; position:absolute; right:0; font-family:Material Design Icons; padding-right:24px; padding-left:24px; color:#b1b1b1; font-size:20px; font-weight:400 } .dashboard__sidebar ul li a.start-selling.active:after, .dashboard__sidebar ul li a.start-selling:hover:after { color:#0c8512 } .dashboard__sidebar ul ul li a { margin-left:10.5px; border-left:3px solid transparent } .dashboard__sidebar ul ul li a:hover { border-left:3px solid #e5e5e5 } .dashboard__sidebar ul ul li a.active { border-left:3px solid #ed4642 } .dashboard__sidebar ul router-link { margin-left:10.5px; border-left:3px solid transparent; color:#555 } .dashboard__sidebar ul router-link.active { border-left:3px solid #ed4642 } .dashboard__sidebar ul .panel { margin-bottom:0; background:transparent; border:0; box-shadow:none } .dashboard__toggler { position:absolute; top:16px; right:-16px; width:32px; height:32px; box-shadow:0 2px 4px 0 rgba(0,0,0,.07); z-index:101; background:#fff } .dashboard__toggler:hover { background:#f8f8f8 } .dashboard__content { width:100%; padding:64px 16px 0 248px; min-height:100vh; overflow:hidden; display:flex; flex-direction:column; margin-top:53px } @media (min-width:992px) { .dashboard__content { margin-top:0 } } .embedded .dashboard__content { margin-top:0 } .dashboard__content.mobile-payments { padding:16px } .dashboard__container { max-width:1152px; flex:1 1 auto } .dashboard__container+.dashboard__container { flex:0 0 auto } .dashboard__fullwidth { padding-left:999px!important; padding-right:999px!important } .dashboard__blue-banner-fullwidth, .dashboard__fullwidth { width:auto!important; margin-left:-999px!important; margin-right:-999px!important } .dashboard__blue-banner-fullwidth { padding-left:1015px!important; padding-right:1015px!important } .dashboard--embed>.header { display:block } .dashboard--embed .dashboard__header, .dashboard--embed .dashboard__sidebar { display:none } .dashboard--embed .dashboard__content { padding:0 } .dashboard--embed__container { max-width:1152px } @media (min-width:992px) { .dashboard--embed__container #dashboard-new-order { position:absolute; right:0 } } .dashboard--collapsed .dashboard__logo { width:80px; font-size:10px; padding-left:16px!important } .dashboard--collapsed .dashboard__logo a { white-space:normal; display:block!important } .dashboard--collapsed .dashboard__logo a span { margin-right:8px!important } .dashboard--collapsed .dashboard__logo .divider { display:block; height:0 } .dashboard--collapsed .dashboard__menu { padding-left:80px } .dashboard--collapsed .dashboard__sidebar { width:80px; text-align:center } .dashboard--collapsed .dashboard__sidebar>ul>li>ul>li:first-of-type { display:block } .dashboard--collapsed .dashboard__sidebar>ul li { position:relative } .dashboard--collapsed .dashboard__sidebar>ul li a span:nth-of-type(2) { display:none } .dashboard--collapsed .dashboard__sidebar>ul li a [data-toggle=collapse] { padding-left:56px!important; padding-right:8px!important } .dashboard--collapsed .dashboard__sidebar>ul li a [data-toggle=collapse] i { transform:rotate(-90deg) } .dashboard--collapsed .dashboard__sidebar>ul li a [data-toggle=collapse].collapsed i { transform:rotate(90deg) } .dashboard--collapsed .dashboard__sidebar>ul li a.start-selling:after { display:none } .dashboard--collapsed .dashboard__sidebar>ul ul { text-align:left } .dashboard--collapsed .dashboard__sidebar>ul ul.collapse, .dashboard--collapsed .dashboard__sidebar>ul ul.collapsing { position:fixed; border:1px solid #e5e5e5; padding:8px 0 8px 16px!important; white-space:nowrap; min-width:232px; height:auto!important } .dashboard--collapsed .dashboard__toggler i { transform:rotate(180deg) } .dashboard--collapsed .dashboard__content { padding-left:96px } @media (max-width:991.98px) { .dashboard>.header { display:block } .dashboard .dashboard__header, .dashboard .dashboard__sidebar { display:none } .dashboard .dashboard__content { padding:0 } } .dashboard__account-menu-text { text-overflow:ellipsis; overflow:hidden; white-space:nowrap; line-height:1.5 } .pf-dropdown .dropdown-menu { margin-top:-1px; border-radius:0; min-width:250px; border-color:#e5e5e5!important; right:0; left:auto } @media (max-width:767.98px) { .pf-dropdown .dropdown-menu { min-width:160px } } .pf-dropdown .dropdown-menu>li { font-weight:400; letter-spacing:0; font-size:16px; line-height:24px } .pf-dropdown .dropdown-menu>li a { color:#222 } .pf-dropdown .dropdown-menu>li a:focus, .pf-dropdown .dropdown-menu>li a:hover { background-color:#e5e5e5 } .pf-dropdown .dropdown-menu>li>:not(.tooltip) { padding-top:8px; padding-bottom:8px } .my-stores .store-logo { width:48px } @media (min-width:768px) { .my-stores .store-logo { width:64px } } .my-stores .store-status { cursor:default } .my-stores .store--inactive img { opacity:.5 } img.logo-preview { border:1px solid buttonface } img.old { filter:contrast(40%) } i.migration-arrow { color:buttonface; font-size:20px } .store-settings .page-subtitle--underlined, .store-settings .page-title--underlined, .store-settings .underlined { border-bottom:1px solid #e5e5e5; padding-bottom:12px } .store-settings .page-title { line-height:30px; font-size:20px; margin:0 0 10px; font-weight:700 } .store-settings .page-title a { font-weight:400; letter-spacing:normal } .store-settings .page-title a.add-new { margin-top:-10px } @media (max-width:1199.98px) { .store-settings .page-title--warehouse-grid { padding:10px 0 20px } .store-settings .page-title a.add-new { margin-top:-4px } } .store-settings .page-subtitle { line-height:20px; font-size:16px; font-weight:700 } .store-settings .page-subtitle--muted { color:#878787; font-weight:400 } .store-settings .underlined { margin-bottom:30px } .store-settings .small { font-size:14px } .store-settings .text-unmuted { color:#000 } .store-settings ol.counters { counter-reset:list } .store-settings ol.counters>li { list-style:none; position:relative; margin-bottom:25px; padding-top:3px } .store-settings ol.counters>li ul>li { list-style-type:disc } .store-settings ol.counters>li:before { counter-increment:list; content:counter(list); position:absolute; top:-2px; left:-40px; display:block; border:3px solid #e5e5e5; border-radius:100%; font-weight:700; color:#555; width:30px; height:30px; line-height:24px; text-align:center; text-indent:-1px; background-color:#fff } .store-settings ol.counters>li.completed:before { content:""; text-indent:-9999px; background:#fff url(/static/images/retina/done@2x.png) no-repeat 50%; background-size:12px } @keyframes right-left { 50% { transform:translate(5px) } to { transform:translate(0) } } .store-settings .animated-tooltip { transition:transform 2s ease; -webkit-animation:right-left 2s infinite; -o-animation:right-left 2s infinite; animation:right-left 2s infinite } .store-settings .form-group:not(.has-error) .help-block { display:none } .store-settings .settings-section .checkbox-container { line-height:20px; margin:0 } .store-settings .settings-section .checkbox-container .tooltip-container { display:inline; width:13px; height:13px; position:absolute } .store-settings .settings-section .settings-item { overflow:auto } .pf-lang--jp .label-fulfillment-location { width:80px } .label-fulfillment-location { height:22px; border-radius:3px; display:inline-block; line-height:2; padding:0; font-size:11px; color:#fff; margin-right:5px; border:1px solid transparent; text-align:center } .label-fulfillment-location.label-AU { background:#00843d } .label-fulfillment-location.label-JP { background:#950000 } .label-fulfillment-location.label-CA { background:#3d3733 } .label-fulfillment-location.label-USA { background-color:#bd3d44 } .label-fulfillment-location.label-EU { background-color:#0054a3 } .label-fulfillment-location.label-MX { background-color:#006948 } .amazon-gtin .table-header { font-weight:700 } .amazon-gtin .table-header, .amazon-gtin .table-row { border-bottom:1px solid #ddd; margin:0!important } .amazon-gtin .table-header>div, .amazon-gtin .table-row>div { padding:5px 10px 5px 5px!important } .store-settings.store-marketplaces .store-marketplace-block__status { text-align:right; display:inline-block; width:100% } .store-settings.store-marketplaces .store-marketplace-block__status--active { color:#0c8512 } .store-settings.store-marketplaces .store-marketplace-block__status--error { color:#cf1814 } .store-settings.store-marketplaces .store-marketplace-block__status--inactive, .store-settings.store-marketplaces .store-marketplace-block__status--none { color:#555 } .store-settings.store-marketplaces .store-marketplace-block__status--pending-changes { color:#e79b39 } .store-settings.store-marketplaces .store-marketplace-block:last-child { border-bottom:none!important; padding-bottom:0!important } .store-settings.store-marketplaces .loading-overlay { display:none; width:100%; height:100% } .store-settings.store-marketplaces .loading-overlay.loading { display:block } .product-sync .nav>li>a { padding:10px } .product-sync .product-name { font-size:16px; line-height:24px; color:#222; word-wrap:break-word; width:100% } @media (min-width:768px) { .product-sync .product-name { display:table; table-layout:fixed } } .product-sync .product-name .external-id, .product-sync .product-name .product-name { word-break:break-all } .product-sync .product-name .sync-products__name--ignored .external-id, .product-sync .product-name .sync-products__name--ignored .product-name { color:#c5c5c5 } .product-sync .external-id { font-size:14px; line-height:18px; color:#555 } .product-sync .sync-products__convert-cell { width:140px } .variant-name { display:table; table-layout:fixed; width:100%; word-wrap:break-word; font-weight:700; color:#222; white-space:normal } #sync-search { float:right } #sync-search .search-box { height:43px } #sync-search a, #sync-search a:hover { text-decoration:none } @media (max-width:991.98px) { #sync-search { float:none; text-align:right } #sync-search .search-box { height:auto } } @media (max-width:767.98px) { .sync-products__container { margin-bottom:50px } } .sync-top-links>a { white-space:nowrap } .sync-top-links>a:first-child { margin-left:0 } .sync-top-links.sync-top-links--sync-variants>a { margin-left:0; margin-right:24px } #sync-variants-container tr.animate { transition:background .75s linear .2s } #sync-variants-container tr.highlight { background:#fdf7ef } #sync-variants-container tr.is-ignored td:first-child { color:grey } #sync-variants-container tr.is-out-of-stock { background-color:#ffedf0 } #sync-variants-container tr a.bulk-edit { text-transform:none; font-size:14px } #sync-variants-container tr a.bulk-edit.unselect { line-height:40px } #sync-variants-container tr th.bulk-edit-column { white-space:nowrap } #sync-variants-container th .selected-count-text, #sync-variants-container th a { text-transform:none } #sync-variants-container .original-products { display:inline-block } #sync-variants-container .original-products p { display:block } @media (max-width:767.98px) { .sync-products { border-bottom:none; border-collapse:separate } .sync-products tr { border-bottom:1px solid #ddd } .sync-products__button-edit, .sync-products__button-ignore, .sync-products__image, .sync-products__name, .sync-products__stats { display:block; width:100% } .sync-products__action-column { text-align:center!important } } .sync-products__image { width:86px } @media (max-width:767.98px) { .sync-products__image { clear:left; float:left; width:30% } } @media (max-width:767.98px) { .sync-products__info, .sync-products__name { padding-top:10px; clear:right; float:left; width:70% } } @media (max-width:767.98px) { .sync-products__action-column { clear:left; display:block } } .sync-products__stats { width:255px; min-width:225px } @media (max-width:767.98px) { .sync-products__stats { width:100%; clear:both } .sync-products__stats .sync-stats { display:block } } @media (min-width:992px) { .sync-products__stats { width:220px } } .sync-products__button-edit { width:70px; text-align:center } @media (max-width:767.98px) { .sync-products__button-edit { clear:left; float:left; width:50% } } .sync-products__button-edit-wide { width:70px; text-align:center } @media (max-width:767.98px) { .sync-products__button-edit-wide { clear:left; float:left; width:100% } } .sync-products__button-ignore { width:125px } @media (max-width:767.98px) { .sync-products__button-ignore { float:left; width:50% } } @media (max-width:767.98px) { .sync-products__button--add-to-warehouse { font-size:13px!important; padding:0 5px!important } } .sync-products__action-column { white-space:nowrap } .sync-products__action-column .dropdown { display:inline-block } .sync-products__action-column .dropdown .dropdown-menu { min-width:160px } .sync-products thead .fake-th { border-bottom:1px solid #ddd } @media (max-width:1199.98px) { .sync-products__header .btn-default { padding:0 10px!important } } .sync-edit-prices tbody input { padding-left:0; padding-right:0; display:inline-block; width:85px; text-align:center; vertical-align:middle; font-weight:700 } .sync-edit-prices tr.header-row { background:#f8f8f8; border-bottom:1px solid #e5e5e5 } .sync-edit-prices tr.header-row .text-bold { font-weight:700 } .sync-edit-prices td.negative-profit { color:#f0473d } .sync-edit-prices td.price-td { min-width:180px; width:180px } .sync-edit-prices td.price-td .styled-select { width:60px; background-position:75%!important } .sync-edit-prices td.price-td .input__price { width:100px } .variant-prices-edit__table-container table { min-width:720px } .variant-prices-edit__table-container table td, .variant-prices-edit__table-container table th { white-space:normal!important } .variant-prices-edit .variant-edit-price__retail-price .pf-form-group { margin:0; display:inline-block; vertical-align:middle } .variant-prices-edit .variant-edit-price__retail-price .pf-form-group input { padding-left:0; padding-right:0; display:inline-block; width:85px; text-align:center; vertical-align:middle; font-weight:700 } .variant-prices-edit .variant-edit-price__retail-price .pf-form-group .help-block { display:none } .variant-prices-edit .variant-edit-price__retail-price .pf-form-group.has-error input { border-color:#a94442!important; background-color:#f2dede!important } .variant-prices-edit__profit-inputs { min-width:310px } .variant-prices-edit__profit-inputs>* { display:inline-block; vertical-align:middle } .variant-prices-edit__profit-inputs .profit-change-type { width:160px; margin-right:8px; background-position:90%!important } .variant-prices-edit__profit-inputs .profit-type { width:65px; background-position:85%!important } .variant-prices-edit__profit-inputs .profit-amount { width:85px; margin-left:-1px } .variant-prices-edit__footer { padding-bottom:20px } .variant-prices-edit .variant-prices-edit-header { min-height:25px } .variant-prices-edit .variant-prices-edit-header__vd-checker label { font-weight:400 } @media (min-width:768px) and (max-width:1199.98px) { .sync-row-selector { min-width:630px } } .sync-row-selector .row { word-wrap:break-word } .sync-row-selector .product-detail-widget { white-space:normal } .sync-row-selector .checkbox-wrapper { width:60px } .sync-row-selector td.checkbox-wrapper { vertical-align:top; padding-top:25px } .sync-row-selector.sync-row-selector--selected .hidden-selected { display:none } .sync-row-selector.sync-row-selector--selected .hidden-deselected { display:block } .sync-row-selector.sync-row-selector--selected .hidden-deselected-inline { display:inline } .sync-row-selector .hidden-deselected, .sync-row-selector .hidden-deselected-inline { display:none } .sync-row-selector__row--selected { background-color:#fdf7ef } .sync-row-selector__row--selected .hidden-row-selected { display:none } @media (max-width:991.98px) { .sync-row-selector .tooltip.fade { z-index:1 } } @media screen and (max-width:500px) { .sync-row-selector .btn-danger { margin-bottom:10px!important } } .etsy-vacation-mode-cta { text-align:center } .etsy-vacation-mode-cta .btn { display:inline-block } .add-first-product { font-size:40px } .squarespace__number-list { width:40px; height:40px; margin:0 auto; border:5px solid #faebcc; border-radius:20px; color:#8a6d3b; background-color:#fff; text-align:center; font-weight:700; font-size:15px; line-height:31px; float:left } .squarespace__number-list__text { line-height:40px; font-size:15px; color:#8a6d3b } .squarespace__number-list__connect-line { width:1px; height:30px; margin:0 auto; background:#faebcc } .squarespace__step-image { max-width:350px; max-height:150px } .delete-modal-label { font-size:15px } .alternatives-arrows { width:30px; position:absolute; top:0; left:-60px } .integration-product-update__main-container { position:relative } .integration-product-update__main-container .variants-basic-edit table .form-item input { padding-left:0; padding-right:0; display:inline-block; width:85px; text-align:center; vertical-align:middle; font-weight:700 } .integration-product-update__main-container .form-item.has-error input { border-color:#a94442!important; background-color:#f2dede!important } .integration-product-update__main-container .loading-overlay { display:none; width:100%; height:100% } .integration-product-update.loading .loading-overlay { display:block } @media (max-width:767.98px) { .currency-banner-button { margin-right:0!important; margin-top:12px!important } } a.close-button { width:20px; height:20px; display:block; background-image:url(/static/images/layout/close@2x.png); background-size:contain } .billing-method__selector { position:relative } .billing-method__selector__list { list-style-type:none; position:absolute; border:1px solid #e5e5e5; background-color:#fff; width:100%; max-width:270px; z-index:1; cursor:pointer; box-shadow:0 0 12px rgba(0,0,0,.175) } .billing-method__selector__list :before { border-bottom-color:#bfbfbf; border-width:9px; margin-left:-9px; right:9px } .billing-method__selector .billing-method__option { align-items:center; border-bottom:1px solid #e5e5e5 } .billing-method__selector .billing-method__option__data { display:inline-block; overflow:hidden; flex:4 } .billing-method__selector .billing-method__option__mask { overflow:hidden; text-overflow:ellipsis } .billing-method__selector .billing-method__option__icon, .billing-method__selector .billing-method__option__top-icon { display:inline-block; width:52px; min-width:52px; height:32px } .billing-method__selector .billing-method__option__icon { flex:1 } .billing-method__selector .billing-method__option__tick { display:block; width:37px; height:14px; flex:1 } .billing-method__selector .billing-method__option__tick.active { background:url(/static/images/layout/dashboard/green_tick.svg) no-repeat 50% } .billing-method__selector .billing-method__option--expired { background-color:#feedec } .billing-method__selector .billing-method__option--expired:hover { background-color:#feedec!important; cursor:not-allowed } .billing-method__selector .billing-method__option:hover { background-color:#f8f8f8 } .billing-method__option--selected { padding:4px; cursor:pointer } @media (min-width:768px) { .billing-method__option--selected { max-width:270px } } .billing-method--hover:hover { border-color:#bbb; box-shadow:0 2px 4px 0 rgba(0,0,0,.25) } .billing-method__data { min-width:135px } .billing-method--expired { background:#feedec; border-color:#cf1814!important } .billing-method__method-icon { min-width:48px; height:32px; background-size:contain; background:url(/static/images/layout/dashboard/credit_card.svg) no-repeat 50% } .billing-method__method-icon__card-list-icon { margin-right:5px; margin-bottom:6px } .billing-method__info { color:#555; max-width:135px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap } .billing-method__address { overflow:hidden } @media (max-width:991.98px) { .billing-method__address { flex-basis:100% } } .billing-method__address-label { text-overflow:ellipsis; white-space:nowrap; overflow:hidden; max-width:520px } .billing-method__address .tooltip .tooltip-inner { max-width:none; width:96vw; margin-right:2vw } @media (min-width:540px) { .billing-method__address .tooltip .tooltip-inner { max-width:480px; width:auto; margin-right:0 } } .billing-method__buttons { flex:1 } .billing-method__modal { display:inline-flex } .billing-method--disabled { position:absolute; top:0; left:0; right:0; bottom:0; background-color:hsla(0,0%,100%,.5) } .billing-method--disabled-info { font-size:10px; color:#222; text-align:left; line-height:1.5; position:relative } .billing-method--disabled-info-warning { content:""; background-image:url(/static/images/layout/dashboard/alert-icon.svg); display:inline-block; width:13.7px; height:11.7px; margin-right:3px; vertical-align:middle } @media (min-width:992px) { .billing-method--disabled-info { max-width:130px; text-align:right; text-indent:15px } } .billing-method--credit-card { background:url(/static/images/layout/dashboard/credit_card.svg) no-repeat 50% } .billing-method--visa { background:url(/static/images/layout/dashboard/visa.svg) no-repeat 50% } .billing-method--visa-light { background:url(/static/images/layout/dashboard/visa-light.svg) no-repeat 50% } .billing-method--master-card, .billing-method--mastercard { background:url(/static/images/layout/dashboard/mastercard.svg) no-repeat 50% } .billing-method--master-card-light { background:url(/static/images/layout/dashboard/mastercard-light.svg) no-repeat 50% } .billing-method--no-card { background:url(/static/images/layout/dashboard/blank-method.svg) no-repeat 50% } .billing-method--american-express { background:url(/static/images/layout/dashboard/american-express.svg) no-repeat 50% } .billing-method--american-express-light { background:url(/static/images/layout/dashboard/american-express-light.svg) no-repeat 50% } .billing-method--jcb { background:url(/static/images/layout/dashboard/jcb.svg) no-repeat 50% } .billing-method--jcb-light { background:url(/static/images/layout/dashboard/jcb-light.svg) no-repeat 50% } .billing-method--diners { background:url(/static/images/layout/dashboard/diners.svg) no-repeat 50% } .billing-method--diners-light { background:url(/static/images/layout/dashboard/diners-club-light.svg) no-repeat 50% } .billing-method--maestro { background:url(/static/images/layout/dashboard/maestro.svg) no-repeat 50% } .billing-method--maestro-light { background:url(/static/images/layout/dashboard/maestro-light.svg) no-repeat 50% } .billing-method--discover { background:url(/static/images/layout/dashboard/discover.svg) no-repeat 50% } .billing-method--discover-light { background:url(/static/images/layout/dashboard/discover-light.svg) no-repeat 50% } .billing-method--cartes-bancaires-light { background:url(/static/images/layout/dashboard/cartes-bancaires-light.svg) no-repeat 50% } .billing-method--union-pay-light { background:url(/static/images/layout/dashboard/union-pay-light.svg) no-repeat 50% } .billing-method--wallet { background:url(/static/images/layout/dashboard/wallet.svg) no-repeat 50% } .billing-method--postpay { background:url(/static/images/layout/icons/wallet.png) no-repeat 50% } .billing-method--paypal { background:url(/static/images/layout/dashboard/paypal.svg) no-repeat 50% } .billing-method--sofort { background:url(/static/images/layout/dashboard/sofort.svg) no-repeat 50% } .billing-method--klarna, .billing-method--klarna-pay-now, .billing-method--klarna-slice-it { background:url(/static/images/layout/dashboard/klarna.svg) no-repeat 50% } .billing-method--ach { background:url(/static/images/layout/dashboard/ach.svg) no-repeat 50% } .billing-method--can-select { background-color:#fff } .billing-method--can-select input[type=radio] { margin:0 10px 0 0 } .has-transition .billing-method { animation-duration:3s; animation-name:default-method-transition } @keyframes default-method-transition { 0% { opacity:0; border:1px solid #e5e5e5 } 20% { opacity:1; border:2px solid #89b93a } 70% { opacity:1; border:2px solid #89b93a } to { opacity:1; border:1px solid #e5e5e5 } } .c-chips { display:block; padding:0!important; margin:0 } .c-chips__item { list-style:none; display:inline-flex; flex-direction:row; align-items:center; padding:0 10px 0 7px; margin:8px 8px 8px 0!important; font-size:14px; line-height:17px; background-color:#e5e5e5 } .c-chips__remove { margin-left:7px; position:relative; display:inline-block; width:9px; height:9px; padding:0 } .c-chips__remove:after, .c-chips__remove:before { content:""; position:absolute; width:11px; height:2px; background-color:#888; border-radius:1px; top:4px; left:-1px } .c-chips__remove:before { transform:rotate(45deg) } .c-chips__remove:after { transform:rotate(-45deg) } .billing-discounts__board { text-align:center; display:-webkit-box; display:-moz-box; display:-ms-flexbox; display:-webkit-flex; display:flex } @media (max-width:991.98px) { .billing-discounts__board { -webkit-flex-direction:column; -moz-flex-direction:column; -ms-flex-direction:column; flex-direction:column } } .billing-discounts__board .img-wrapper { display:-webkit-box; display:-moz-box; display:-ms-flexbox; display:-webkit-flex; display:flex; -webkit-flex-direction:column; -moz-flex-direction:column; -ms-flex-direction:column; flex-direction:column; -webkit-justify-content:center; -moz-justify-content:center; -ms-justify-content:center; justify-content:center; -ms-flex-pack:center } .billing-discounts__board .img-wrapper>img { width:100%; max-width:54px } @media (max-width:991.98px) { .billing-discounts__board__discount:not(:last-of-type), .billing-discounts__board__turnover:not(:last-of-type) { border-bottom:1px solid #e5e5e5 } } @media (min-width:992px) { .billing-discounts__board__discount:not(:last-of-type), .billing-discounts__board__turnover:not(:last-of-type) { border-right:1px solid #e5e5e5 } } @media (max-width:991.98px) { .billing-discounts__board__link { -webkit-box-ordinal-group:30; -moz-box-ordinal-group:30; -ms-flex-order:30; -webkit-order:30; order:30 } } @media (max-width:991.98px) { .billing-discounts__board__current-discount { -webkit-flex-direction:column; -moz-flex-direction:column; -ms-flex-direction:column; flex-direction:column } } .billing-discounts__boost-sales .img-wrapper { text-align:right; padding:0; -webkit-justify-content:start; -moz-justify-content:start; -ms-justify-content:start; justify-content:start; -ms-flex-pack:start } @media (max-width:991.98px) { .billing-discounts__boost-sales { -webkit-flex-direction:column; -moz-flex-direction:column; -ms-flex-direction:column; flex-direction:column } } .billing-discounts__separator { color:#e5e5e5; margin:8px 0 0 } .billing-discounts__sample-info--hover-down { margin-bottom:-24px } .billing-discounts__sample-info--hover-up { margin-top:-24px } @media only screen and (min-width:992px) { .billing-discounts__sample-progress--hover-up { margin-top:-16px } } .billing-discounts__sample-progress .pb-field { background-color:#d8d8d8; height:8px } @media only screen and (min-width:992px) { .billing-discounts__sample-progress .pb-field__profit { margin-top:-40px; left:0 } } .billing-discounts__sample-progress .img-left { margin-right:-4px; z-index:2 } .billing-discounts__sample-progress .img-right { margin-left:-4px; z-index:2 } .billing-discounts__sample-progress .img-element__pointer { margin-top:-24px } .billing-discounts__sample-progress .img-element__pointer--on-left { right:0 } .custom__dropdown-menu { position:relative } .custom__dropdown-menu .dropdown-menu { color:#222; border-radius:0; padding:0; box-shadow:0 0 12px rgba(0,0,0,.175); border-color:#bfbfbf; right:-15px } .custom__dropdown-menu .dropdown-menu:after, .custom__dropdown-menu .dropdown-menu:before { bottom:100%; border:solid transparent; content:" "; height:0; width:0; position:absolute; pointer-events:none } .custom__dropdown-menu .dropdown-menu:after { border-bottom-color:#fff; border-width:8px } @media (max-width:991.98px) { .custom__dropdown-menu .dropdown-menu:after { margin-right:-8px; left:1px } } @media (min-width:992px) { .custom__dropdown-menu .dropdown-menu:after { margin-left:-8px; right:10px } } .custom__dropdown-menu .dropdown-menu:before { border-bottom-color:#bfbfbf; border-width:9px } @media (max-width:991.98px) { .custom__dropdown-menu .dropdown-menu:before { margin-right:-9px } } @media (min-width:992px) { .custom__dropdown-menu .dropdown-menu:before { margin-left:-9px; right:9px } } .custom__dropdown-menu .dropdown-menu li { cursor:pointer } .custom__dropdown-menu .dropdown-menu__input-with-button .cta-link { position:absolute; right:16px; color:#1164a9; text-align:right } .custom__dropdown-menu .dropdown-menu__input-with-button .input-field { position:relative; width:100%; min-width:0 } .custom__dropdown-menu .dropdown-menu__input-with-button .input-field::-ms-clear { display:none } .custom__dropdown-menu__tick { display:block; width:17px; height:14px; margin-left:20px; margin-right:10px } .custom__dropdown-menu__tick.active { background:url(/static/images/layout/dashboard/green_tick.svg) no-repeat 50% } .custom__dropdown-menu.open .custom__dropdown-menu__toggle { -webkit-transform:rotate(180deg); transform:rotate(180deg) } .custom__dropdown-menu__toggle { background:url(/static/images/layout/nav-arrow.png) no-repeat 95%; width:10px; height:10px; margin-left:5px } @media not all,only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-resolution:2dppx) { .custom__dropdown-menu__toggle { background:url(/static/images/retina/nav-arrow@2x.png) no-repeat 95%; background-size:10px } } .billing-history .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody { overflow-y:visible!important; overflow-x:auto!important; position:inherit!important } .billing-history .DTFC_LeftBodyLiner { overflow-y:hidden!important; width:auto!important } .billing-history .DTFC_RightWrapper { display:none } .billing-history .customerEmail { white-space:nowrap; display:inline-block; vertical-align:middle; width:100% } .billing-history .billing-address-label, .billing-history .customerEmail { overflow:hidden; text-overflow:ellipsis } .billing-history .table-container { min-height:100px } .billing-history .history { border:1px solid #e5e5e5; border-bottom:none } .billing-history .history table.dataTable thead tr th { text-align:left } .billing-history .history table.dataTable td { text-align:left; max-width:120px } .billing-history .history table.dataTable .first-column { width:66%; min-width:240px; white-space:normal; word-wrap:break-word } .billing-history .history .dataTables_empty { padding:48px; color:#555; visibility:visible!important } .billing-history .history .account-image { width:17px; height:17px } .billing-history .billing__method { align-items:center } .billing-history .billing__method--customer { max-width:100%; width:fit-content } .billing-history .billing__method--customer--name { overflow:hidden; text-overflow:ellipsis } .billing-history .billing__method--container { white-space:nowrap; text-overflow:ellipsis; vertical-align:super } .billing-history .billing__method--mask { display:inline-block; max-width:calc(100% - 65px); width:fit-content; overflow:hidden; white-space:nowrap; text-overflow:ellipsis } .billing-history .billing__method--icon { display:inline-block; width:52px; min-width:52px; height:32px; vertical-align:sub } .billing-history .billing__method--store-name { overflow:hidden; white-space:nowrap; text-overflow:ellipsis; display:inline-block; vertical-align:middle; width:100% } .billing-history__toggle { clear:both; padding-bottom:24px; border-top:1px solid #e5e5e5; font-size:20px; font-weight:700 } .billing-history__toggle a { color:#000 } .billing-history__toggle a:hover { color:#555!important; text-decoration:none } .billing-history__toggle a[aria-expanded=true] span.arrow { transform:rotate(-180deg) } .billing-history__toggle a span.arrow { background:url(/static/images/retina/arrow-profile@2x.png) no-repeat 50% 50%; background-size:10px 6px; transition:transform 333ms; width:10px; height:12px; display:inline-block; margin-right:8px } .billing-history .has-fixed-col-shadow .history .dataTables_scroll table.dataTable tbody tr td:first-of-type { visibility:hidden } .billing__intro { font-size:15px; line-height:22px; border:1px solid #e5e5e5; height:250px; display:flex; cursor:pointer } .billing__intro__heading { font-weight:700; display:flex; align-items:center } .billing__intro__heading:before { content:""; min-width:44px; height:44px; display:block; position:relative; margin-right:12px } .billing__intro__heading--account-billing-method:before { background:url(/static/images/layout/dashboard/intro/ill-acc.svg) } .billing__intro__heading--payment-history:before { background:url(/static/images/layout/dashboard/intro/ill-hist.svg) } .billing__intro__heading--volume-discounts:before { background:url(/static/images/layout/dashboard/intro/ill-disc.svg) } .billing__intro__heading--wallet:before { background:url(/static/images/layout/dashboard/intro/ill-wallet.svg) } .billing__intro__heading--currency:before { background:url(/static/images/layout/dashboard/intro/ill-currency.svg) } .billing__intro__heading--legal-info:before { background:url(/static/images/layout/dashboard/intro/ill-legal-info.svg) } .billing__intro__content { flex-grow:1; color:#555 } .billing__intro__faq { color:#555; font-size:15px; line-height:21px } .billing__intro__separator { color:#e5e5e5 } .billing__intro__turnover { color:#222; font-weight:700 } .billing__store-switcher .store-switcher .form-group { margin-bottom:0!important } @media (max-width:991.98px) { .billing__store-switcher .store-switcher .form-group { width:100% } } .billing__store-switcher .store-switcher .form-group .switcher-container { display:block!important } @media (min-width:992px) { .billing__store-switcher .store-switcher { margin-bottom:0!important } } @media (max-width:767.98px) { .billing__store-switcher .store-switcher { margin-bottom:0!important } } @media (max-width:991.98px) { .billing__store-switcher .form-group { width:100% } } .billing__store-switcher select.form-control.styled-select.switcher { margin-top:0 } @media (max-width:991.98px) { .billing__store-switcher select.form-control.styled-select.switcher { display:block; min-width:100% } } .billing__legal-info label { margin-bottom:8px!important } .billing__heading { font-size:20px; font-weight:700; padding-bottom:15px } .billing__description { color:#555; font-size:14px } .billing__default-billing-method { border:1px dashed #e5e5e5; display:flex; justify-content:center } .billing__default-billing-method a { cursor:pointer; padding:0 4px } .billing__default-currency-info { font-weight:700; font-size:14px } .billing__loading-overlay-text { color:#222; font-size:50px; font-weight:700; top:50%; position:absolute; padding-top:30px; left:0; right:0; text-align:center } .billing .loading-overlay__text { top:50%; padding-top:30px } .billing--disabled { position:absolute; top:0; left:0; right:0; bottom:0; background-color:hsla(0,0%,100%,.5) } .pf-medal { background-size:100%; width:54px; height:56px; border-radius:50%; margin:4px; position:relative } .pf-medal--lock { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%) } .pf-medal--small { width:32px; height:32px } .pf-medal--locked { filter:opacity(.5) } .pf-medal--green { background-image:url(/static/images/icons/pf-medal-green.svg) } .pf-medal--bronze { background-image:url(/static/images/icons/pf-medal-bronze.svg) } .pf-medal--silver { background-image:url(/static/images/icons/pf-medal-silver.svg) } .pf-medal--gold { background-image:url(/static/images/icons/pf-medal-gold.svg) } .pf-medal--platinum { background-image:url(/static/images/icons/pf-medal-platinum.svg) } .pf-medal--executive { background-image:url(/static/images/icons/pf-medal-executive.svg) } .billing-resale-certificates .category-label { display:unset; font-weight:unset; margin-bottom:unset } .billing-resale-certificates .add-glyphicon { color:#b1b1b1; -webkit-text-stroke:1.5px #fff } .billing-resale-certificates .pagination { margin:32px 0 0 } .billing-resale-certificates__pagination .pagination { margin-top:32px } .billing-resale-certificates .table-container { min-height:100px } .billing-resale-certificates .certificates { border:1px solid #e5e5e5; border-top:none; border-bottom:none } .billing-resale-certificates .certificates table.dataTable td, .billing-resale-certificates .certificates table.dataTable thead tr th { text-align:left } .billing-resale-certificates .certificates .dataTables_scroll table.dataTable tbody tr td:first-of-type a.merchant { visibility:hidden } .billing-resale-certificates .certificates .dataTables_empty { padding:48px; color:#555; visibility:visible!important } .billing-resale-certificates .button { width:auto } @media (max-width:767.98px) { .billing-resale-certificates .button { width:100%!important } } .billing-resale-certificates .control-label { font-size:16px } .billing-resale-certificates .label-valid { background-color:#bcd694 } .billing-resale-certificates .secondary-row { background-color:#f8f8f8 } @media (max-width:767.98px) { .billing-resale-certificates .certificate-geo-chart { height:240px } } .billing-resale-certificates .secondary-row { line-height:55px } .billing-resale-certificates .parent-accordion-icon { align-self:center!important; margin-top:4px; max-height:24px!important } @media (max-width:991.98px) { .billing-resale-certificates .parent-main-text { font-weight:700 } } .billing-resale-certificates .table .child-table-cell { font-size:16px!important; line-height:24px!important } .billing-resale-certificates .table .table-head { justify-content:space-between } .certificate .details { display:block; text-align:left; cursor:pointer } .certificate .details:before { width:20px; height:20px; display:inline-block; content:""; background:url(/static/images/layout/dashboard/ic_visibility.svg) no-repeat 50%; margin-right:5px; vertical-align:middle } @media (max-width:991.98px) { .review-payment .white-block { margin-left:-15px; margin-right:-15px; border-left-color:#fff; border-right-color:#fff } } .review-payment .breadcrumbs-flow { width:auto } .billing-tax-exemption__preview .row { padding-bottom:10px } .billing-tax-exemption__certificate-label, .billing-tax-exemption__preview .row { overflow:hidden; white-space:nowrap; text-overflow:ellipsis } .billing-tax-exemption__preview-label { text-align:left } @media (min-width:768px) { .billing-tax-exemption__preview-label { text-align:right } } .billing-tax-exemption .vat-prefix-input::placeholder { color:#555!important } .billing-tax-exemption__form-ni-warning-area { width:auto; height:auto; padding:12px 12px 16px 24px; border:1px solid #fce7b8; background-color:#fef8e9 } .billing-tax-exemption .billing-tax-exemption__form_ni_header, .billing-tax-exemption .billing-tax-exemption__form_ni_text { color:#bd7417; display:block } .billing-tax-exemption__form_ni_header { font-weight:700 } .billing-tax-exemption__form_ni_text { font-weight:400; white-space:normal } .billing__sidebar .export { display:flex; flex-direction:row; align-items:center; padding-bottom:24px; position:relative } .billing__sidebar .export__controls { height:37px; display:inline-flex; align-items:center } .billing__sidebar .export__range { display:inline-block; width:100% } @media (min-width:992px) { .billing__sidebar .export__range { width:auto } } .billing__sidebar .export__button { display:flex; flex-direction:row; align-items:center; margin-left:20px; cursor:pointer } .billing__sidebar .export__button:before { display:block; content:""; min-width:12px; height:15px; background-image:url(/static/images/layout/dashboard/ic_download.svg); margin-right:9px } .billing-transactions { margin-bottom:57px } .billing-transactions .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody { overflow-y:visible!important; overflow-x:auto!important; position:inherit!important } .billing-transactions .DTFC_LeftBodyLiner { overflow-y:hidden!important; width:auto!important } .billing-transactions .DTFC_RightWrapper { display:none } .billing-transactions__pagination .pagination { margin-top:32px } .billing-transactions__buttons { border-bottom:1px solid #e5e5e5 } .billing-transactions .table-container { min-height:100px } .billing-transactions .transactions { border:1px solid #e5e5e5; border-bottom:none } .billing-transactions .transactions table.dataTable tbody tr.transaction .status-cell, .billing-transactions .transactions table.dataTable thead tr th { text-align:center } .billing-transactions .transactions table.dataTable tbody tr.transaction--hover { background-color:#f5f5f5 } .billing-transactions .transactions table.dataTable tbody tr.transaction--failed td { background-color:#f9e8e8 } .billing-transactions .transactions table.dataTable tbody tr.transaction--failed.transaction--hover td { background-color:#f5f5f5 } .billing-transactions .transactions table.dataTable tbody tr.transaction td { padding:10px 8px; text-align:center } @media (min-width:768px) { .billing-transactions .transactions table.dataTable tbody tr.transaction td:first-of-type { padding-right:0 } } .billing-transactions .transactions .dataTables_scroll table.dataTable tbody tr td:first-of-type a.merchant { visibility:hidden } @media (min-width:768px) { .billing-transactions .transactions .dataTables_scroll table.dataTable tbody tr td:nth-of-type(2) div.merchant__details--visible { visibility:hidden } } .billing-transactions .switcher-container { margin-top:0!important } .transaction__store-switcher .store-switcher label { display:none } .transaction__order, .transaction__order .merchant:before { cursor:pointer } .transaction .merchant { color:#222; flex-direction:row; align-items:center } .transaction .merchant div { content:""; min-width:48px; height:32px; display:inline-block; position:relative } .transaction .merchant--postpay { background:url(/static/images/layout/icons/wallet.png) no-repeat 50%; background-size:contain } .transaction .merchant--card, .transaction .merchant--maestro { background:url(/static/images/layout/dashboard/credit_card.svg) no-repeat 50% } .transaction .merchant--ach { background:url(/static/images/layout/dashboard/ach.svg) no-repeat 50% } .transaction .merchant--none, .transaction .merchant--wallet { background:url(/static/images/layout/dashboard/wallet.svg) no-repeat 50% } .transaction .merchant--missing { background:url(/static/images/layout/dashboard/blank-method.svg) no-repeat 50% } .transaction .merchant--visa { background:url(/static/images/layout/dashboard/visa.svg) no-repeat 50% } .transaction .merchant--diners { background:url(/static/images/layout/dashboard/diners.svg) no-repeat 50% } .transaction .merchant--master-card, .transaction .merchant--mastercard { background:url(/static/images/layout/dashboard/mastercard.svg) no-repeat 50% } .transaction .merchant--american-express { background:url(/static/images/layout/dashboard/american-express.svg) no-repeat 50% } .transaction .merchant--pay-pal, .transaction .merchant--paypal { background:url(/static/images/layout/dashboard/paypal.svg) no-repeat 50% } .transaction .merchant--sofort { background:url(/static/images/layout/dashboard/sofort.svg) no-repeat 50% } .transaction .merchant--klarna, .transaction .merchant--klarna-pay-now, .transaction .merchant--klarna-slice-it { background:url(/static/images/layout/dashboard/klarna.svg) no-repeat 50% } .transaction .merchant--jcb { background:url(/static/images/layout/dashboard/jcb.svg) no-repeat 50% } .transaction .merchant--discover { background:url(/static/images/layout/dashboard/discover.svg) no-repeat 50% } .transaction .merchant--maestro { background:url(/static/images/layout/dashboard/maestro.svg) no-repeat 50% } .transaction .merchant__details { display:none } @media (min-width:768px) { .transaction .merchant__details { display:block } } .transaction .merchant__details--visible { text-align:left } .transaction .merchant__title { line-height:22px; width:155px; white-space:normal } .transaction .merchant__sub-title { color:#555; font-size:12px; line-height:16px } .transaction .merchant__error { cursor:default; font-size:13px; color:#f34536; white-space:normal } .transaction__error-detail-tooltip { background:url(/static/images/layout/dashboard/failed_tooltip.svg); display:inline-block; background-size:cover } .transaction .status-tooltip, .transaction__error-detail-tooltip { width:22px; height:22px; position:absolute; top:-11.5px; right:-11.5px } .transaction .status-tooltip { background-color:#e5e5e5; font-size:15px; border-radius:50%; display:flex; align-items:center; justify-content:center; border:2px solid #f8f8f8 } .transaction .status-tooltip--completed { background-color:#c9e8c6 } .transaction .status-tooltip--failed { background-color:#f6908f } .transaction .status-tooltip--pending { background-color:#f0ad4e } .transaction .status { border-radius:3px; color:#333; font-size:13px; font-weight:400; line-height:16px; padding:4px 12px; position:relative; background-color:#e5e5e5 } .transaction .status--completed { background-color:#c9e8c6 } .transaction .status--failed { background-color:#f6908f; cursor:pointer } .transaction .status--pending { background-color:#f0ad4e } .transaction .amount { color:#222 } .transaction .amount--negative { color:#f34536 } .transaction .amount--negative:before { content:"-" } .transaction .amount--positive { color:green } .transaction .amount--positive:before { content:"+" } .transaction .download { display:block } .transaction .download:before { width:20px; height:20px; display:inline-block; content:""; background:url(/static/images/layout/dashboard/ic_visibility.svg) no-repeat 50%; margin-right:5px; vertical-align:middle } #dashboard .transaction-order #close-modal { display:none } .unconfirmed-payments__description { min-width:168px } .unconfirmed-payments__status { width:300px } .unconfirmed-payments__totals { width:280px } .billing-wallet__buttons .btn.btn-danger { margin-left:3px } .billing-wallet input[type=radio] { margin:0 10px 0 0 } .billing-wallet--icon { width:48px; height:32px; background:url(/static/images/layout/dashboard/wallet.svg) no-repeat 50% } .billing-wallet--empty { color:#9d4a46!important } .billing-wallet__auto-recharge { cursor:pointer } .billing-wallet__auto-recharge--amount-value.active { color:#3b8d33!important } .billing-wallet__auto-recharge__amount { line-height:20px; padding:5px 0 } .billing-wallet__auto-recharge__amount:hover { background-color:#f8f8f8 } .billing-wallet__auto-recharge .dropdown-menu { width:240px; top:125% } @media (max-width:767.98px) { .billing-wallet__auto-recharge .dropdown-menu { width:120px } } .billing-wallet__auto-recharge .dropdown-menu li:first-of-type { display:flex; align-items:center; border-bottom:1px solid #e5e5e5 } .billing-wallet__auto-recharge .dropdown-menu li:first-of-type span { margin-right:2px; width:25px } .billing-wallet__auto-recharge .dropdown-menu li:first-of-type span:not(.active) { display:none } .billing-wallet__auto-recharge .dropdown-menu li:first-of-type input { display:inline-block; width:100%; box-shadow:inset 0 2px 3px 0 rgba(0,0,0,.05); line-height:18px; padding:10px 12px; margin:8px } .wallet-block .wallet-header { cursor:pointer } .wallet-block:hover { box-shadow:0 4px 8px 0 rgba(0,0,0,.08) } .wallet-block__chevron { flex-grow:1 } .wallet-block__currency { width:40px; height:40px; font-size:15px; line-height:38px; border-radius:50% } .wallet-block__currency .large-symbol { font-size:21px } img.withdraw-img { max-height:400px; max-width:100% } .billing__store__image { height:40px; width:40px; vertical-align:middle } .billing__store__heading { border-top:1px solid #e5e5e5 } .billing__store__currency-switcher { width:100%!important; height:40px!important; vertical-align:middle } .billing__store__save-button-longer { vertical-align:middle; margin-left:8px } @media (max-width:767.98px) { .billing__store__save-button-longer { width:100%; margin-left:0; margin-top:12px } } .billing__store__save-button { vertical-align:middle; margin-left:8px } @media (max-width:1199.98px) { .billing__store__save-button { width:100%; margin-left:0; margin-top:12px } } .billing__store-billing_methods div.row { border:1px solid #e5e5e5; border-bottom:0 } .billing__store-billing_methods div.row:last-of-type { border-bottom:1px solid #e5e5e5 } .billing__store-billing_methods__heading { color:#555; font-size:16px; line-height:24px; font-weight:700 } .billing__store-billing_methods__heading--main { border-top:1px solid #e5e5e5 } .order-intro__arrow { position:absolute; width:110px; right:60px; top:65px } @media (min-width:992px) { .embedded .order-intro__arrow { right:calc(50% - 380px) } } @media (min-width:1200px) { .embedded .order-intro__arrow { right:calc(50% - 290px) } } @media (min-width:1600px) { .embedded .order-intro__arrow { right:calc(50% - 90px) } } .order-intro { position:relative } .order-intro__buttons { display:inline-block } .order-intro__buttons a { margin:10px 0 0; width:150px } @media (min-width:768px) { .order-intro__buttons a { margin:0 10px } } .order-popup>tbody>tr:first-child>td { border-top:none } .order-popup>tbody>tr.item.shipped>td { background-color:#f3f5df } .order-popup>tbody>tr.item.reshipped>td { background-color:#c4e3f3 } .order-popup>tbody>tr.item.returned>td { background-color:#f5dede } .order-popup>tbody>tr.item.onhold>td { background-color:#c4e3f3 } .order-popup>tbody>tr.shipment { border-bottom:1px solid #fff } .order-popup>tbody>tr.shipment>td>strong { font:700 14px ProximaNova,sans-serif } .order-popup>tbody>tr.shipment.onhold>td { background-color:#add8e6 } .order-popup>tbody>tr.shipment.shipped>td { background-color:#dbe3a2 } .order-popup>tbody>tr.shipment.reshipped>td { background-color:#95ccea } .order-popup>tbody>tr.shipment.returned>td { background-color:#e49f9f } .order-popup>tbody>tr.shipment.return-to-warehouse>td { background-color:#fff3f4 } .order-popup>tbody>tr.shipment.return-to-warehouse>td a.linked { color:#1164a9!important } .order-popup>tbody>tr.shipment.packaged>td, .order-popup>tbody>tr.shipment.printed>td, .order-popup>tbody>tr.shipment.started>td { background-color:#dbe3a2 } .order-popup>tbody>tr.shipment.onhold { background-color:#add8e6 } .order-popup>tbody>tr.shipment.pending { background-color:#fee79b } .order-popup>tbody>tr.shipment.canceled>td, .order-popup>tbody>tr.shipment.outstock>td { background-color:#f0f0f0 } .order-popup>tbody>tr.shipment .label-fulfillment-location { width:auto; height:22px; border-radius:3px; display:inline-block; line-height:2; padding:0 4px; font-size:11px; color:#fff; margin-right:5px; border:1px solid transparent; text-align:center } .order-popup>tbody>tr.shipment.label-AU { background:#00843d } .order-popup>tbody>tr.shipment.label-JP { background:#950000 } .order-popup>tbody>tr.shipment.label-CA { background:#3d3733 } .order-popup>tbody>tr.shipment .label-USA { background-color:#bd3d44 } .order-popup>tbody>tr.shipment .label-EU { background-color:#0054a3 } .order-popup>tbody>tr.shipment.label-MX { background-color:#c84e02 } .order-popup>tbody>tr.shipment .pf-badge-location { white-space:nowrap } .order-popup>tbody>tr.shipment .pf-badge-location i { font-size:15px } .order-popup>tbody>tr.shipment .tooltip { left:0!important } .order-popup>tbody>tr.shipment .tooltip .tooltip-arrow { left:20%!important } .order-popup>tbody>tr.shipment .tooltip .tooltip-inner { max-width:none } .order-popup>tbody>tr.shipment a.tracking-number { color:#38557f; font-weight:700; text-decoration:none } .order-popup>tbody>tr.shipment p a:hover { border-bottom:1px dotted #222!important } .order-popup>tbody>tr div.tooltip.top div.tooltip-arrow { top:auto!important } .order-popup>tbody>tr.bordered>td { border-top:1px solid #e5e5e5; border-bottom:1px solid #e5e5e5; padding:10px 7px 6px 11px } .order-popup>tbody>tr.bordered:last-of-type>td { border-bottom:none } .order-popup>tbody>tr.bordered>td>strong { font:700 15px ProximaNova,sans-serif; text-transform:uppercase; line-height:18px } .order-popup>tbody>tr.bordered:hover, .order-popup>tbody>tr.bordered:hover>td { background-color:#fff } .order-popup>tbody>tr>td>small { color:#787878 } .order-popup>tbody .estimated-date { margin:10px 0 0 } .order-popup>tbody .report-icon { float:none; height:14px; margin-left:0 } .order-popup>tbody .thumb-popover { background:transparent; border:none; margin:0; padding:0; max-width:165px; display:none; position:absolute; top:35px; left:0; z-index:100; -webkit-border-radius:0; -moz-border-radius:0; border-radius:0 } .order-popup>tbody .thumb-popover>div.arrow { background:url(/static/images/layout/thumbnail-arrow.png) no-repeat 0 0; width:63px; height:10px; position:absolute; top:-9px; left:0 } .order-popup>tbody .thumb-popover>div.inner { min-width:63px; background-color:#fff; border:1px solid #c8c8c8; margin:0; padding:10px; float:left; overflow:hidden } .order-popup>tbody .thumb-popover>div.inner>h3 { margin-top:0; font-size:20px; line-height:21px } .order-popup>tbody .thumb-popover>div.inner>img { background-color:#f0f0f0 } .order-popup>tbody .thumb-popover>div.inner:nth-child(odd) { margin:0 0 0 -1px } .order-popup>tbody .item-metrics li:first-of-type .tooltip { max-width:220px } .order-popup__display-name { font-size:15px; color:#222 } .order-popup__view-content { white-space:nowrap; color:#38557f; margin-right:5px } .order-popup__view-content--unavailable { cursor:default; color:#555 } .order-popup__view-content--unavailable:focus, .order-popup__view-content--unavailable:hover { color:#555; text-decoration:none } .order-popup__popover-attribute { margin-top:5px } .order-popup__popover-attribute strong { font-size:14px } .order-popup__label { color:#fff; background-color:#629800; position:relative; padding:3px 4px 3px 22px; vertical-align:middle; margin-right:5px; font-size:10px; font-family:ProximaNova,sans-serif!important; font-weight:400 } .order-popup__label:before { position:absolute; left:4px; top:3px; font-family:icomoon!important } .order-popup__hold-message--active { animation:highlight-message 20s } @keyframes highlight-message { 0% { background:#eefaff } to { background:#fff } } .order-popup__hold-message__flag-icon { position:absolute; right:-25px; top:0 } .order-popup__copyright-link { color:#fff; font-weight:700; font-size:16px } .order-popup__copyright-link:hover { color:#fff; text-decoration:underline!important } .order-popup-history { position:relative } .order-popup-history h2.history-title { font-size:23px!important; font-weight:700!important; line-height:28px!important; padding-bottom:7px; border-bottom:1px solid #e5e5e5 } .order-popup-history__list { border-left:1px solid #e5e5e5; margin-left:7px; padding:0 0 0 6px } .order-popup-history__item { list-style:none; padding:26px 16px 10px; position:relative } .order-popup-history__item:first-of-type { padding-top:21px } .order-popup-history__item:first-of-type .timeline-icon { top:25px } .order-popup-history__item span { display:block; color:#222; font-size:15px; line-height:22px } .order-popup-history__item .timeline-icon { position:absolute; left:-15px; top:29px; width:17px; height:17px; border:2px solid #e5e5e5; border-radius:10px; background-color:#fff } .order-popup-history__item .item-date .date-text, .order-popup-history__item .item-date .shipment-number { font-size:12px; line-height:16px; display:inline-block } .order-popup-history__item .item-date .date-text { padding:3px 0 0; color:#555 } .order-popup-history__item .item-date .shipment-number { color:#222; background-color:#f7c657; padding:3px 6px 0; margin-left:5px } @media (max-width:991.98px) { .order-popup-history__item .item-date .date-text { display:block } .order-popup-history__item .item-date .shipment-number { margin-left:0 } } .order-popup-history__item .item-contents { word-wrap:break-word } .order-popup-history__item .item-contents .report-content { color:#555 } .order-popup-history__item .item-contents__approval-sheet-product-image { text-align:center; width:116px } .order-popup-history__item .item-contents__approval-sheet-product-image>img { height:116px } .order-popup-history__item .item-contents__approval-sheet-colors { width:10px; height:10px } .order-popup-history__item .item-contents__approval-sheet-design { max-width:300px } .order-popup-history__item .item-contents__approval-sheet-design>img { max-width:100% } .order-popup-history__item--report-action-required .timeline-icon, .order-popup-history__item--report-related .timeline-icon, .order-popup-history__item--report-submitted .timeline-icon { border:none; border-radius:0; background:url(/static/images/layout/icons/problem_report.svg) no-repeat; width:23px; height:21px; left:-16px } .order-popup-history__item--approval-sheet .hold-message-background, .order-popup-history__item--on-hold .hold-message-background, .order-popup-history__item--report-closed .report-completed-message-background { position:absolute; top:10px; left:-7px; width:calc(100% + 7px); height:100%; background-color:#dbf2fa; z-index:-1 } .order-popup-history__item--approval-sheet.order-popup-history__item--success .hold-message-background { background-color:#e5f5e4 } .order-popup-history__item--report-closed .timeline-icon, .order-popup-history__item--success .timeline-icon { border:none; border-radius:0; background:url(/static/images/layout/icons/problem_report_closed.svg) no-repeat; width:23px; height:21px; left:-14px } .order-popup-history__item--report-closed .report-completed-message-background, .order-popup-history__item--success .report-completed-message-background { background-color:#e5f5e4 } .order-popup-history__item--changes-requested .timeline-icon, .order-popup-history__item--on-hold .timeline-icon { top:30px; left:-14px; width:16px; height:16px; border-radius:8px; border:none; background:url(/static/images/layout/icons/icon_flag_white.svg) #1164a9 no-repeat 50% 50%/70% } .order-popup-history__item:first-of-type .hold-message-background, .order-popup-history__item:first-of-type .report-completed-message-background { top:-1px; height:calc(100% + 10px) } .order-popup-history__item--report-action-required .form-container { padding-top:12px } .order-popup-history__item--report-action-required .form-container label { display:inline-block; width:100% } .order-popup-history__item--report-action-required .form-container label span.radio-container { width:calc(100% - 23px); display:inline-block; float:right } .order-popup-history__item--report-action-required .form-container label span.radio-label { color:#222; font-size:15px; font-weight:400; line-height:22px } .order-popup-history__item--report-action-required .form-container label span.radio-sub-label { font-size:12px; font-weight:400; line-height:14px } .order-popup-history__item--report-action-required .form-container label span.radio-sub-label.info-label { color:#0c8512 } .order-popup-history__item--report-action-required .form-container label span.radio-sub-label.warning-label { color:#cf1814 } .order-popup-history__item--report-action-required .form-container input { margin-right:10px } .order-popup-history__item--report-action-required .form-container button.submit-action { margin-top:12px; width:124px } .order-popup-history__item--report-action-required .form-container span.border-alert { display:block; position:absolute; top:42px; left:-8px; height:calc(100% - 52px); width:3px; background-color:#f7c657 } .order-popup-history__item--report-action-required .form-container .error-message { margin-top:15px; color:#cf1814 } .order-popup-history__item--report-action-required .form-container .report-completed { color:#555 } .order-popup-history__item--report-action-required .form-container .report-completed b { margin-top:8px; display:inline-block } .order-popup-history__item--report-action-required .form-container textarea { margin-top:9px; resize:none; font-size:15px; line-height:22px; height:80px; max-width:420px } .order-popup-history__item .upload-container { margin-bottom:10px } .order-popup-history .alternative__status-message { font-size:15px; padding:8px; position:absolute; display:inline; top:-2px; left:69%; width:320px } @media (max-width:991.98px) { .order-popup-history .alternative__status-message { width:90%; margin-left:0; left:5% } } .order-popup ul.item-metrics { padding:0; list-style:none; overflow:hidden } .order-popup ul.item-metrics li { border-right:1px solid #e5e5e5; min-width:70px; width:auto!important; margin:0; padding:0; float:left } .order-popup ul.item-metrics li:last-child { border-right:0 } .order-popup ul.item-metrics li p { border-top:3px solid #e5e5e5; margin:0; padding:3px 5px 0; font-size:14px } .order-popup ul.item-metrics li.pending p { border-color:#d8d8d8; color:#d8d8d8 } .order-popup ul.item-metrics li.processing p { border-color:#ffa547; color:#ffa547 } .order-popup ul.item-metrics li.completed p { border-color:#56b957; color:#56b957 } .order-popup ul.item-metrics li.failed p { border-color:#f0473d; color:#f0473d } .order-popup ul.item-metrics li p span.clock-icon { background:url(/static/images/layout/icon-clock.png) no-repeat 50%; width:12px; height:12px; display:inline-block; position:relative; top:2px } @media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-resolution:2dppx) { .order-popup ul.item-metrics li p span.clock-icon { background-image:url(/static/images/retina/icon-clock@2x.png)!important; background-size:12px 12px } } .modal-dialog .modal-header-order-view.long-order-number h1 { font-size:24px!important; line-height:34px!important } .modal-dialog .modal-header-order-view h1 { word-break:break-all } .modal-dialog .modal-header-order-view #order-navigation { padding-left:15px!important; padding-right:15px!important } .modal-dialog .modal-header-order-view #order-navigation a { position:relative; font-size:16px; line-height:19px; text-decoration:none; cursor:pointer } .modal-dialog .modal-header-order-view #order-navigation a.disabled { cursor:none; pointer-events:none; opacity:.4 } .modal-dialog .modal-header-order-view #order-navigation a .navigation--text:hover { text-decoration:underline } @media (min-width:992px) { .modal-dialog .modal-header-order-view #order-navigation { text-align:right } .modal-dialog .modal-header-order-view #order-navigation a { top:51px!important } } @media (max-width:991.98px) { .modal-dialog .modal-header-order-view #order-navigation { margin-top:16px; margin-bottom:10px } .modal-dialog .modal-header-order-view #order-navigation a.previous--order { float:left } .modal-dialog .modal-header-order-view #order-navigation a.next--order { float:right } } @media (min-width:768px) { .modal-dialog .modal-header-order-view h1 { line-height:51px!important } .modal-header-order-view { padding:23px 15px 22px 42px } .modal-header-order-view .number-container { display:inline-block } .modal-header-order-view .report-icon { float:right; height:45px; width:33px; margin-left:5px; background-size:contain } } .product-push-customizer-options__label { font-size:14px; cursor:pointer } .product-push-customizer-options__checkbox-wrapper { display:flex } .product-push-customizer-options__title--text-layer { border-top:1px solid #ddd; padding-top:20px } .product-push-add .add-block { margin-bottom:30px; background-color:#f8f8f8; border-top:1px solid #ddd; border-bottom:1px solid #ddd; text-align:center; padding:20px 0; position:relative } .product-push-add .add-block .info-arrow { background:url(/static/images/layout/push-products-arrow.png) 50% no-repeat; width:165px; height:58px; position:absolute; left:100%; top:100%; margin-top:-67px; margin-left:20px; background-size:100% 100% } body.pf-lang--es .product-push-add .add-block .info-arrow { background:url(/static/images/layout/push-products-arrow-es.png) 50% no-repeat; background-size:100% 100% } body.pf-lang--jp .product-push-add .add-block .info-arrow { background:url(/static/images/layout/push-products-arrow-jp.png) 50% no-repeat; background-size:100% 100% } body.pf-lang--fr .product-push-add .add-block .info-arrow { background:url(/static/images/layout/push-products-arrow-fr.png) 50% no-repeat; background-size:100% 100% } body.pf-lang--de .product-push-add .add-block .info-arrow { background:url(/static/images/layout/push-products-arrow-de.png) 50% no-repeat; background-size:100% 100% } body.pf-lang--it .product-push-add .add-block .info-arrow { background:url(/static/images/layout/push-products-arrow-it.png) 50% no-repeat; background-size:100% 100% } .product-push-add .add-block .btn { padding-left:60px; padding-right:60px; position:relative } .product-push-add .product-push-statuses>.product-push-task-status.row { margin:5px 0 } .product-push-add .product-push-statuses>.product-push-task-status.row>.col { padding:0 10px } .product-push-add .product-push-statuses>.product-push-task-status.row>.col-bt { padding:5px 7px 0 0 } .product-push-add .product-push-statuses>.product-push-task-status.row .product-title { font-weight:700 } .product-push-add .product-push-statuses>.product-push-task-status.row .subtitle { font-size:.9em; margin-left:5px } .product-push-add .product-push-statuses table { margin-bottom:0 } .product-push-add .product-push-statuses table td { color:inherit; padding-left:0; padding-right:0 } .product-push-add .product-push-statuses table td.image { width:50px; padding:10px 10px 10px 0; vertical-align:top } .product-push-add .product-push-statuses table td.image img { width:50px!important } .product-push-add .product-push-statuses table td.title { word-break:break-word; font-weight:700; padding-top:10px; padding-bottom:5px } .product-push-add .product-push-statuses table td.title a { color:#37577d; font-size:.9em; margin-left:10px; font-weight:400 } .product-push-add .product-push-statuses table td.title a span { margin-right:5px; font-size:inherit } .product-push-add .product-push-statuses table td.extra { padding-top:0; padding-bottom:5px } .product-push-add .product-push-statuses table td.extra p { margin-bottom:0 } .product-push-add .product-push-statuses .success { background-color:#dff0d8; border:1px solid #d6e7cf; border-radius:2px; color:#048711 } .product-push-add .product-push-statuses .success table td.title { padding-top:8px; padding-bottom:8px } .product-push-add .product-push-statuses .error { background-color:#f6ddde; border:1px solid #f1cbd1; border-radius:2px; color:#b73b3d } .product-push-add .product-push-statuses .progress { margin:0 0 4px } .product-push-add .product-push-statuses .progress .progress-bar { width:100%; color:#000; font-weight:700 } .product-push-add .product-push-statuses a.close-bt { color:inherit } .product-push-add .product-push-statuses .icon-close { font-size:.65em } .product-push-add .product-push-statuses a.extra-links { font-weight:700 } @media (max-width:640px) { .product-push-add .product-push-statuses a.extra-links { display:block; margin-left:0 } } .inline-product-picker--title { line-height:1.44 } @media (min-width:992px) { .inline-product-picker__modal { width:992px } } @media (min-width:1200px) { .inline-product-picker__modal { width:1200px } } @media (min-width:1600px) { .inline-product-picker__modal { width:1600px } } .inline-product-picker__modal .modal-header .search-box { float:right; margin-right:15px } @media (max-width:700px) { .inline-product-picker__modal .modal-header .search-box { float:left; margin-right:0; width:98% } } .layer-picker__type { height:100%; cursor:pointer; border-radius:2px } .layer-picker__type:hover { box-shadow:0 2px 4px 0 rgba(0,0,0,.25) } .layer-picker__type.disabled { opacity:.4; cursor:not-allowed; user-select:none } .layer-picker__type.disabled:hover { box-shadow:none } .layer-picker__item { position:relative; cursor:pointer; background:#fff; user-select:none } .layer-picker__item a { text-decoration:none } .layer-picker__item>div { border-left:3px solid transparent } .layer-picker__item.active>div, .layer-picker__item:active>div, .layer-picker__item:hover>div { border-left-color:#ed4642 } .layer-picker__item.active .layer-picker__item__delete, .layer-picker__item.active .layer-picker__item__handle, .layer-picker__item.active .layer-picker__item__reset, .layer-picker__item:active .layer-picker__item__delete, .layer-picker__item:active .layer-picker__item__handle, .layer-picker__item:active .layer-picker__item__reset, .layer-picker__item:hover .layer-picker__item__delete, .layer-picker__item:hover .layer-picker__item__handle, .layer-picker__item:hover .layer-picker__item__reset { display:block } .layer-picker__item:hover:not(:active):not(.active)>div { border-left-color:#e5e5e5 } .layer-picker__item.active { cursor:default } .layer-picker__item.active .layer-picker__item__controls { display:flex } .layer-picker__item.ui-sortable-helper { background:hsla(0,0%,100%,.75); box-shadow:0 2px 4px 0 rgba(0,0,0,.075); border:1px solid #e5e5e5 } .layer-picker__item--ghost:not(.ui-sortable-helper) { display:block!important; background:#f8f8f8; border-color:transparent!important } .layer-picker__item--ghost:not(.ui-sortable-helper)>* { visibility:hidden; pointer-events:none } .layer-picker__item__thumb { width:50px; height:50px; background:transparent url(/static/images/layout/trasnparent-pattern.png) repeat 50%; background-size:18px } .layer-picker__item__thumb>img { width:100%; height:100%; object-fit:contain } .layer-picker__item__inside { text-align:right; display:none; width:53px; margin:30px 10px 13px 0 } .layer-picker__item__inside>i { -webkit-transform:rotate(90deg); -ms-transform:rotate(90deg); -o-transform:rotate(90deg); transform:rotate(90deg) } .layer-picker__item__title { word-wrap:break-word; word-break:break-word; line-height:1 } .layer-picker__item__title>span { vertical-align:middle } .layer-picker__item__badge { background:#e5e5e5; padding:2px 8px; font-size:12px; border-radius:5px; display:inline-block; margin-right:4px } .layer-picker__item__guideline-info .close { margin-top:-10px; margin-right:-5px; color:#8a6d3b; font-size:20px; font-weight:100; opacity:1 } .layer-picker__item__controls { display:none } .layer-picker__item__handle, .layer-picker__item__handle-wrap { cursor:move; cursor:grab; cursor:-moz-grab; cursor:-webkit-grab } .layer-picker__item__handle-wrap:active, .layer-picker__item__handle:active { cursor:grabbing; cursor:-moz-grabbing; cursor:-webkit-grabbing; cursor:row-resize } .layer-picker__item__handle { display:none; position:absolute; top:31px; left:8px; line-height:1; color:#b1b1b1; cursor:pointer } .layer-picker__item__handle>* { display:block; width:18px; height:18px; color:transparent; background:transparent url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMT<KEY>PSJldmVub2RkIiBvcGFjaXR5PSIuO<KEY>=") 50% no-repeat; background-size:18px; opacity:1 } .layer-picker__item__handle:hover>* { background:transparent url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxkZWZzPjxwYXRoIGlkPSJhIiBkPSJNNC4yNSAwTDYuNSAzSDJsMi4yNS0zem0wIDE1TDIgMTJoNC41bC0yLjI1IDN6bS00LTkuNzVoOHYxLjVoLTh2LTEuNXptMCAzaDh2MS41aC04di0xLjV6Ii8+PC9kZWZzPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuNzUgMS41KSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIuOSI+PG1hc2sgaWQ9ImIiIGZpbGw9IiNmZmYiPjx1c2UgeGxpbms6aHJlZj0iI2EiLz48L21hc2s+PHVzZSBmaWxsPSIjNzc3IiB4bGluazpocmVmPSIjYSIvPjxnIG1hc2s9InVybCgjYikiPjxwYXRoIGQ9Ik0tMzEtMjguNWg3M3Y3M2gtNzN6IiBmaWxsPSIjNzc3Ii8+PC9nPjwvZz48L3N2Zz4=") 50% no-repeat } @media (max-width:1199.98px) { .layer-picker__item__handle { display:block; left:4px } .layer-picker__item__handle>* { font-size:24px; width:24px; height:24px; background-size:24px } } .layer-picker__item__handle-wrap { padding-left:24px } .layer-picker__item__tag { border-radius:2px; background-color:#3d3733; color:#fff } .layer-picker__item__tag--active, .layer-picker__item__tag--active:hover, .layer-picker__item__tag:hover { background-color:rgba(61,55,51,.8) } .layer-picker__item__delete, .layer-picker__item__reset { display:none; position:absolute; right:8px; line-height:1; color:#b1b1b1; cursor:pointer } @media (max-width:1199.98px) { .layer-picker__item__delete .pf-i, .layer-picker__item__reset .pf-i { font-size:24px!important } } .layer-picker__item__delete:hover, .layer-picker__item__reset:hover { color:#555 } .layer-picker__item__delete:hover>*, .layer-picker__item__reset:hover>* { opacity:1 } .layer-picker__item__delete { top:16px } .layer-picker__item__reset { top:42px } @media (max-width:1199.98px) { .layer-picker__item__reset { top:52px } } .layer-picker__item__quality { display:flex; flex-wrap:wrap } .layer-picker__item .dropdown-menu { width:100%; border-radius:0 } .layer-picker__item .remove-background-tooltip .tooltip-inner { width:max-content; max-width:400px } @media (max-width:767.98px) { .layer-picker__item .remove-background-tooltip .tooltip-inner { max-width:300px } } .layer-picker__group { position:relative; cursor:pointer; background:#fff; user-select:none } .layer-picker__group a { text-decoration:none } .layer-picker__group>div:not(.accordion__content) { border-left:3px solid transparent } .layer-picker__group.activated>div { border-left-color:#f8b8b6 } .layer-picker__group.activated>div .layer-picker__item--ghost { border-left:3px solid #f8b8b6!important } .layer-picker__group.activated>div .layer-picker__item>div { border-left-color:#f8b8b6 } .layer-picker__group.activated>div .layer-picker__item.active>div, .layer-picker__group.active>div, .layer-picker__group__details:active>div, .layer-picker__group__details:hover>div { border-left-color:#ed4642 } .layer-picker__group.active .layer-picker__group__delete, .layer-picker__group.active .layer-picker__group__handle, .layer-picker__group.active .layer-picker__group__reset, .layer-picker__group__details:active .layer-picker__group__delete, .layer-picker__group__details:active .layer-picker__group__handle, .layer-picker__group__details:active .layer-picker__group__reset, .layer-picker__group__details:hover .layer-picker__group__delete, .layer-picker__group__details:hover .layer-picker__group__handle, .layer-picker__group__details:hover .layer-picker__group__reset { display:block } .layer-picker__group:hover:not(:active):not(.active):not(.activated)>div, .layer-picker__group:hover:not(:active):not(.active):not(.activated)>div .layer-picker__item>div { border-left-color:#e5e5e5 } .layer-picker__group.active { cursor:default } .layer-picker__group.active .layer-picker__group__controls { display:flex } .layer-picker__group.ui-sortable-helper { background:hsla(0,0%,100%,.75); box-shadow:0 2px 4px 0 rgba(0,0,0,.075); border:1px solid #e5e5e5 } .layer-picker__group--ghost:not(.ui-sortable-helper) { display:block!important; background:#f8f8f8; border-color:transparent!important } .layer-picker__group--ghost:not(.ui-sortable-helper)>* { visibility:hidden; pointer-events:none } .layer-picker__group__thumb { width:50px; height:50px; background:transparent url(/static/images/layout/trasnparent-pattern.png) repeat 50%; background-size:18px } .layer-picker__group__thumb>img { width:100%; height:100%; object-fit:contain } .layer-picker__group__title { word-wrap:break-word; word-break:break-word; line-height:1 } .layer-picker__group__title>span { vertical-align:middle } .layer-picker__group__badge { background:#000; color:#fff; padding:4px 8px; font-size:12px; border-radius:5px; display:inline-block; margin-right:4px } .layer-picker__group__guideline-info .close { margin-top:-10px; margin-right:-5px; color:#8a6d3b; font-size:20px; font-weight:100; opacity:1 } .layer-picker__group__controls { display:none } .layer-picker__group__handle, .layer-picker__group__handle-wrap { cursor:move; cursor:grab; cursor:-moz-grab; cursor:-webkit-grab } .layer-picker__group__handle-wrap:active, .layer-picker__group__handle:active { cursor:grabbing; cursor:-moz-grabbing; cursor:-webkit-grabbing; cursor:row-resize } .layer-picker__group__handle { display:none; position:absolute; top:31px; left:8px; line-height:1; color:#b1b1b1; cursor:pointer } .layer-picker__group__handle>* { display:block; width:18px; height:18px; color:transparent; background:transparent url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxkZWZzPjxwYXRoIGlkPSJhIiBkPSJNNC4yNSAwTDYuNSAzSDJsMi4yNS0zem0wIDE1TDIgMTJoNC41bC0yLjI1IDN6bS00LTkuNzVoOHYxLjVoLTh2LTEuNXptMCAzaDh2MS41aC04di0xLjV6Ii8+PC9kZWZzPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuNzUgMS41KSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIuOSI+PG1hc2sgaWQ9ImIiIGZpbGw9IiNmZmYiPjx1c2UgeGxpbms6aHJlZj0iI2EiLz48L21hc2s+PHVzZSBmaWxsPSIjQjFCMUIxIiB4bGluazpocmVmPSIjYSIvPjxnIG1hc2s9InVybCgjYikiPjxwYXRoIGQ9Ik0tMzEtMjguNWg3M3Y3M2gtNzN6IiBmaWxsPSIjQjFCMUIxIi8+PC9nPjwvZz48L3N2Zz4=") 50% no-repeat; background-size:18px; opacity:1 } .layer-picker__group__handle:hover>* { background:transparent url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxkZWZzPjxwYXRoIGlkPSJhIiBkPSJNNC4yNSAwTDYuNSAzSDJsMi4yNS0zem0wIDE1TDIgMTJoNC41bC0yLjI1IDN6bS00LTkuNzVoOHYxLjVoLTh2LTEuNXptMCAzaDh2MS41aC04di0xLjV6Ii8+PC9kZWZzPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuNzUgMS41KSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIuOSI+PG1hc2sgaWQ9ImIiIGZpbGw9IiNmZmYiPjx1c2UgeGxpbms6aHJlZj0iI2EiLz48L21hc2s+PHVzZSBmaWxsPSIjNzc3IiB4bGluazpocmVmPSIjYSIvPjxnIG1hc2s9InVybCgjYikiPjxwYXRoIGQ9Ik0tMzEtMjguNWg3M3Y3M2gtNzN6IiBmaWxsPSIjNzc3Ii8+PC9nPjwvZz48L3N2Zz4=") 50% no-repeat } @media (max-width:1199.98px) { .layer-picker__group__handle { display:block; left:4px } .layer-picker__group__handle>* { font-size:24px; width:24px; height:24px; background-size:24px } } .layer-picker__group__tag { border-radius:2px; background-color:#3d3733; color:#fff } .layer-picker__group__tag--active, .layer-picker__group__tag--active:hover, .layer-picker__group__tag:hover { background-color:rgba(61,55,51,.8) } .layer-picker__group__delete, .layer-picker__group__reset { display:none; position:absolute; right:8px; line-height:1; color:#b1b1b1; cursor:pointer } .layer-picker__group__delete:hover, .layer-picker__group__reset:hover { color:#555 } .layer-picker__group__delete:hover>*, .layer-picker__group__reset:hover>* { opacity:1 } .layer-picker__group__delete { top:16px } .layer-picker__group__reset { top:42px } .layer-picker__group__quality { display:flex; flex-wrap:wrap } .layer-picker__group .dropdown-menu { width:100%; border-radius:0 } .layer-picker__group .layer-toggle { background-color:#f8f8f8 } .layer-picker__group .layer-toggle__icon { width:60px } .layer-picker__group .layer-picker__item__inside { display:block } .layer-picker__group .layer-picker__item__handle-wrap { padding-left:0 } .layer-picker__group .accordion__icon { pointer-events:none } .layer-picker__placeholder { height:3px; background:#4a90e2 } .product-push-details-mke table.price-list tbody td, .product-push-pricing table.price-list tbody td { color:#222; font-size:16px; font-weight:700 } .product-push-details-mke table.price-list tbody input, .product-push-pricing table.price-list tbody input { padding-left:0; padding-right:0; display:inline-block; width:85px; text-align:center; vertical-align:middle; font-weight:700 } .product-push-details-mke table.price-list .negative-profit, .product-push-pricing table.price-list .negative-profit { color:#f0473d } .product-push-details-mke table.price-list .product-retail-warning, .product-push-pricing table.price-list .product-retail-warning { color:#a94442; font-weight:700; font-size:14px; margin:0 } .product-push-details-mke table.main-picker .small-variant-item, .product-push-pricing table.main-picker .small-variant-item { width:72px; height:72px; display:inline-block; margin-top:-5px; margin-left:5px; margin-bottom:10px; border:1px solid transparent; padding:5px; text-align:center; cursor:pointer } .product-push-details-mke table.main-picker .small-variant-item.active, .product-push-pricing table.main-picker .small-variant-item.active { border-color:#bbb } .product-push-details-mke table.main-picker .small-variant-item:hover, .product-push-pricing table.main-picker .small-variant-item:hover { box-shadow:0 0 5px 0 rgba(50,50,50,.3) } .product-push-details-mke table.main-picker .small-variant-item.active:hover, .product-push-pricing table.main-picker .small-variant-item.active:hover { box-shadow:none; cursor:default } .product-push-details-mke table.main-picker td, .product-push-pricing table.main-picker td { vertical-align:top } .product-push-details-mke label.inline-radio, .product-push-pricing label.inline-radio { display:inline-block; font-weight:400 } .product-push-details-mke label.inline-radio+label.inline-radio, .product-push-pricing label.inline-radio+label.inline-radio { margin-left:20px } .product-push-details-mke thead>tr.header-row, .product-push-pricing thead>tr.header-row { background-color:#f3f3f3; border-bottom:1px solid #e5e5e5 } .product-push-details-mke thead>tr.header-row>th, .product-push-pricing thead>tr.header-row>th { text-transform:none; font-weight:700; color:#222 } .product-push-details-mke .price-range, .product-push-details-mke .profit-margin, .product-push-pricing .price-range, .product-push-pricing .profit-margin { padding-left:34px; white-space:nowrap } .product-push-details-mke .price-range input, .product-push-details-mke .profit-margin input, .product-push-pricing .price-range input, .product-push-pricing .profit-margin input { width:100px; text-align:center; font-weight:700; color:#222; padding-left:20px; margin-left:5px } .product-push-details-mke .price-range input.percent, .product-push-details-mke .profit-margin input.percent, .product-push-pricing .price-range input.percent, .product-push-pricing .profit-margin input.percent { width:75px } .product-push-details-mke__collection-select, .product-push-pricing__collection-select { padding-right:8px!important; border:1px solid #e5e5e5!important; width:100%!important } .product-push-details-mke__select-note, .product-push-pricing__select-note { color:#555 } .product-push-details-mke .chosen-single>span, .product-push-pricing .chosen-single>span { color:#222 } .product-push-details-mke .shipping-cost .cost-item, .product-push-pricing .shipping-cost .cost-item { font-size:1.1em; width:auto } .product-push-details-mke .shipping-cost .cost-item .flag.us-cost, .product-push-pricing .shipping-cost .cost-item .flag.us-cost { background-image:url(/static/images/layout/flags/us.svg) } .product-push-details-mke .shipping-cost .cost-item .flag.eu-cost, .product-push-pricing .shipping-cost .cost-item .flag.eu-cost { background-image:url(/static/images/layout/flags/eu.svg) } .product-push-details-mke .shipping-cost .cost-item .flag.ca-cost, .product-push-pricing .shipping-cost .cost-item .flag.ca-cost { background-image:url(/static/images/layout/flags/ca.svg) } .product-push-details-mke .shipping-cost .cost-item .flag.au-cost, .product-push-pricing .shipping-cost .cost-item .flag.au-cost { background-image:url(/static/images/layout/flags/au.svg) } .product-push-details-mke .shipping-cost .cost-item .flag.nz-cost, .product-push-pricing .shipping-cost .cost-item .flag.nz-cost { background-image:url(/static/images/layout/flags/nz.svg) } .product-push-details-mke .shipping-cost .cost-item .flag.worldwide, .product-push-pricing .shipping-cost .cost-item .flag.worldwide { background-image:url(/static/images/layout/flags/png/worldwide.png); margin-bottom:-4px; margin-left:-2px; width:20px; height:20px } .product-push-details-mke .shipping-cost .cost-item .flag:not(.worldwide), .product-push-pricing .shipping-cost .cost-item .flag:not(.worldwide) { margin-bottom:-1px; width:17px; height:13px } .product-push-details-mke .shipping-cost .cost-item .location-prefix, .product-push-pricing .shipping-cost .cost-item .location-prefix { font-weight:700 } .product-push-details-mke sup, .product-push-pricing sup { top:0 } .product-push-details-mke .dropdown-picker__button, .product-push-details-mke .dropdown-picker__button.selected, .product-push-pricing .dropdown-picker__button, .product-push-pricing .dropdown-picker__button.selected { padding:0 8px } .product-push { min-height:50px } .product-push .product-model { margin:0 } .product-push .file-name { font-weight:700; margin-top:10px; font-size:12px; width:100%; max-width:155px; text-overflow:ellipsis; overflow:hidden } .product-push .picked-graphic { position:relative; width:135px; background-color:#e5e5e5 } .product-push .picked-graphic .btn { position:absolute; display:none; top:50px; left:20px; right:20px } .product-push .picked-graphic:hover .btn { display:block } .product-push .textbox-colors__shadow, .product-push .textbox-colors__stroke, .product-push .textbox-colors__text { align-self:flex-end } .product-push .textbox-colors__shadow .color-dropdown__dropdown, .product-push .textbox-colors__stroke .color-dropdown__dropdown, .product-push .textbox-colors__text .color-dropdown__dropdown { width:300% } @media (max-width:1199.98px) { .product-push .textbox-colors__text .color-dropdown__dropdown--open { left:0 } .product-push .textbox-colors__stroke .color-dropdown__dropdown--open { left:50%; transform:translate(-50%) } .product-push .textbox-colors__shadow .color-dropdown__dropdown--open { right:0; left:auto } } .product-push__design-fill-color-picker .color-dropdown__dropdown--open { position:relative } .product-push__design-fill-color-picker .control-options { padding-left:4px } .product-push__design-fill-color-picker .control-options label { font-size:16px } .product-push__design-fill-color-picker .control-options input[type=checkbox] { margin-top:2px } .product-push__design-fill-color-picker .pf-badge { position:relative; top:-1px } .product-push__transperancy label { font-weight:400 } .product-push__transperancy label input { font-size:16px; margin:2px 0 0 } .product-push__transperancy label span { padding-left:5px } .product-push__transperancy label span b { font-weight:700 } .product-push__transperancy .inline-radio { display:flex } .product-push__droparea { position:absolute; width:100%; height:100%; top:0; left:0; padding-top:29%; z-index:1 } .product-push__droparea--active { z-index:100; top:100px } .product-push__droparea--padding-top-3 { padding-top:3% } .product-push__droparea--padding-top-7 { padding-top:7% } .product-push__droparea--padding-top-45 { padding-top:45% } .product-push__droparea--backpack { padding-top:22% } .product-push__droparea--fannypack { padding-top:37% } .product-push__droparea--fannypack .product-push__droparea__image { width:26% } .product-push__droparea--fannypack-front { padding-top:19% } .product-push__droparea--fannypack-front .product-push__droparea__image { width:30% } .product-push__droparea--fannypack-top { padding-top:15% } .product-push__droparea--fannypack-top .product-push__droparea__image { width:20% } .product-push__droparea--fannypack-back { padding-top:16% } .product-push__droparea--fannypack-back .product-push__droparea__image { width:32% } .product-push__droparea--fannypack-pocket { padding-top:26% } .product-push__droparea--fannypack-pocket .product-push__droparea__image { width:34% } .product-push__droparea--fannypack-label { padding-top:38% } .product-push__droparea--fannypack-label .product-push__droparea__image { width:24% } .product-push__droparea--beanies { padding-top:65% } .product-push__droparea--beanies .product-push__droparea__image { width:27% } .product-push__droparea--mugs { padding-top:35% } .product-push__droparea--mugs .product-push__droparea__image { margin-left:30% } .product-push__droparea--mugs-black .product-push__droparea__image { margin-left:27% } .product-push__droparea--975mpr .product-push__droparea__image { margin-top:5%; margin-right:14%; width:17% } .product-push__droparea--stsu822-sleeve-left .product-push__droparea__image { margin-top:0; margin-right:30% } .product-push__droparea--stsu822-sleeve-right .product-push__droparea__image { margin-top:0; margin-right:33% } .product-push__droparea--embroidery-chest-left .product-push__droparea__image { margin-top:17%; margin-right:22%; width:25% } .product-push__droparea--embroidery-chest-center .product-push__droparea__image { margin-top:17%; margin-right:37%; width:25% } .product-push__droparea--sleeve-left .product-push__droparea__image { margin-left:46%; margin-top:6% } .product-push__droparea--sleeve-right .product-push__droparea__image { margin-left:24%; margin-top:6% } .product-push__droparea--label-outside .product-push__droparea__image { margin-top:11% } .product-push__droparea--label-inside { padding-top:38% } .product-push__droparea--label-inside .product-push__droparea__image { width:24% } .main-mockup-area--with-3dview .product-push__droparea--label-inside { padding-top:28.5% } .product-push__droparea--label-inside-native { padding-top:34% } .product-push__droparea--label-inside-native .product-push__droparea__image { width:18% } .product-push__droparea--label-inside-custom { padding-top:41% } .product-push__droparea--label-inside-custom .product-push__droparea__image { width:28% } .product-push__droparea--label-inside-flip-flops { padding-top:16% } .product-push__droparea--label-inside-flip-flops .product-push__droparea__image { width:25%; margin-left:36.5% } .product-push__droparea--tank-template .product-push__droparea__image { margin-left:34%; margin-top:5% } .product-push__droparea--black-mugs .product-push__droparea__image { margin-left:25%; margin-top:3% } .product-push__droparea--hats-right-side .product-push__droparea__image { margin-left:13% } .product-push__droparea--hats-left-side .product-push__droparea__image { margin-left:50% } .product-push__droparea--hats-back-side .product-push__droparea__image { margin-left:32% } .product-push__droparea__image { margin:0 auto; width:37%; cursor:pointer } .product-push__size-guide .table-responsive { margin-right:20px } .product-push__size-guide .table-responsive table td { padding:10px; border:1px solid #e5e5e5 } .product-push__size-guide .table-responsive table td:first-child { width:130px } @media screen and (max-width:767px) { .product-push__size-guide .table-responsive table tr:first-child td { border-top:0 } .product-push__size-guide .table-responsive table tr:last-child td { border-bottom:0 } .product-push__size-guide .table-responsive table tr td:first-child { border-left:0 } .product-push__size-guide .table-responsive table tr td:last-child { border-right:0 } } .product-push__size-guide .table-responsive:last-child { margin-top:20px } .product-push__recent-tags span { color:#7a7979 } .product-push__recent-tags--inner { display:inline-block; max-width:100%; word-wrap:break-word } .product-push__recent-tags--inner a:after { content:"," } .product-push__recent-tags--inner a:last-of-type:after { display:none } .product-push .blue-box-warning { border:1px solid #b7e5f6; background-color:#dbf1fa; color:#126988; padding:20px } .product-push .orange-box-warning { border:1px solid #fce7b8; background-color:#fef8e8; color:#bd7318; padding:20px; text-align:center } .product-push .variation-warning-block { display:flex } .product-push-video-tutorials-modal .modal-header { padding-left:24px } @media (min-width:992px) { .product-push-video-tutorials-modal .modal-dialog { width:66% } } .product-push .loading-overlay__text { top:50%; padding-top:25px } .mockup-generator-loading-overlay { position:fixed; width:100%; height:100%; z-index:100; background:rgba(34,34,34,.7); pointer-events:none } .generator-size-picker label.one-size { font-weight:400; display:inline-block; margin:0 15px 10px 0; cursor:pointer } .generator-size-picker label.one-size input { margin-right:5px; vertical-align:middle; margin-top:0; cursor:pointer } .generator-size-picker .glyphicon.size-picker-tooltip { top:3px; left:5px } .generator-size-picker .disabled { opacity:.4; pointer-events:none } .product-push-sync-products .styled-select { width:100%!important; background-position:right 15px bottom 50%!important } .synced-product-add-picker__item .pf-custom-checkbox { position:absolute; top:8px; left:8px } .product-push-stock-management table.stock-list tbody td { color:#222; font-size:16px; font-weight:700 } .product-push-stock-management table.stock-list tbody td .pf-form-group input { padding-left:0; padding-right:0; display:inline-block; width:85px; text-align:center; vertical-align:middle; font-weight:700 } .product-push-stock-management table.stock-list tbody td .pf-form-group.pf-custom-control-has-error input { border-color:#a94442!important; background-color:#f2dede!important } .product-push-stock-management table.stock-list tbody td .pf-form-group.pf-custom-control-has-error .pf-custom-control-error-message { display:none } .generator-variant-area { text-align:center } .generator-variant-area .variant-item { cursor:pointer; display:inline-block; width:85px; min-height:85px; text-align:center; border:1px solid transparent; margin:0 4px 8px; font-size:13px; padding-top:5px; vertical-align:top; position:relative } .generator-variant-area .variant-item.quality-bad { border-color:#f0473d } .generator-variant-area .variant-item--has-out-of-bounds-layers, .generator-variant-area .variant-item.quality-medium { border-color:#f8b830 } .generator-variant-area .variant-item--has-out-of-bounds-layers .out-of-bounds-icon { background-color:#f8b830 } .generator-variant-area .variant-item.active, .generator-variant-area .variant-item:hover { border-color:#bbb } .generator-variant-area .variant-item:not(:only-child):hover .variant-item__remove { display:block } .generator-variant-area .variant-item__remove { display:none; width:16px; height:16px; top:-8px; right:-8px; position:absolute; color:#fff; background:url(/static/generator/image-controls.svg) no-repeat 0 0; background-position:-16px 0; background-color:#f0473d; background-size:cover; z-index:100; border-radius:100% } .generator-variant-area .variant-item__overlay { background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAFo9M/3AAAABGdBTUEAALGPC/xhBQAAAY5JREFUOBGVkrGPQUEQxr/HFaLRSMSLP0CjehGl/0BIRNBoKDQaiqdVvUKlUag0Wr1CTSMRhUKtoqDRuv0mt3POXeJM8nZnd+f7zey8dXK5nBePx/GRTCZBc+73u0cnxIEW5s52u3X3+717PB5dOaGIdj6fvzWyYwbV/n8DzFIsFj3O9ms2m+prYWSWSiXM53OLR6vVghAeFc/EH<KEY>"); background-repeat:repeat; background-size:16px; position:absolute; top:0; bottom:0; right:0; left:0; z-index:5 } .generator-variant-area .out-of-bounds-icon, .generator-variant-area .quality-icon { position:absolute; color:#fff; font-weight:700; width:16px; height:16px; border-radius:100%; top:2px; left:2px; line-height:16px; font-size:10px; z-index:6 } .generator-variant-area .quality-bad .quality-icon { background-color:#f0473d } .generator-variant-area .quality-medium .quality-icon { background-color:#f8b830 } .generator-variant-area .overlay-notice__pattern { border:1px solid #222; background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAA<KEY>"); background-repeat:repeat; background-size:16px; height:32px; width:32px; display:inline-block; vertical-align:middle } .generator-variant-area .overlay-notice__text { display:inline-block; text-align:left; vertical-align:middle } .skeleton-loader__container { background:#f6f6f6 } .skeleton-loader__animated-line { animation:backgroundMove 2.5s linear infinite forwards; background:-webkit-linear-gradient(left,#f6f6f6,#eee 60%,#f6f6f6 80%,#f6f6f6) no-repeat } @keyframes backgroundMove { 0% { transform:translateX(-640px) } to { transform:translateX(640px) } } .dashboard-reports__integration-logo { width:36px } .dashboard-reports__content { min-height:400px } .dashboard-reports__content .pf-tabs+.tab-content .tab-pane { padding:0 } .dashboard-reports__content .block-missing-data { width:60%; margin-bottom:30px } .dashboard-reports__container__chart-box { opacity:1; transition:opacity .5s linear } .dashboard-reports__container__chart-box path[stroke-width="3"] { stroke-width:2px } .dashboard-reports__container__chart-box--loading { opacity:.1 } .dashboard-reports__container__chart-box .download-link { display:block } .dashboard-reports__container__chart-box .download-link .download-icon { display:inline-block; height:16px; width:14px; background:50%/cover no-repeat url(/static/images/layout/ic-download.svg); opacity:.8; margin:0 6px -3px 4px } .dashboard-reports__container__chart-box .download-link:hover { cursor:pointer } .dashboard-reports__container__chart-box .download-link:hover .download-icon { opacity:1 } .dashboard-reports__container__chart-box .table-container { padding:16px 0 24px } .dashboard-reports__container__chart-box .table-container .DTFC_ScrollWrapper { border:1px solid #e5e5e5 } .dashboard-reports__container__chart-box .table-container .DTFC_LeftBodyLiner { overflow-y:hidden!important } .dashboard-reports__container__chart-box .table-container .dataTable tr.highlighted { font-weight:700; color:#222; background-color:#f8f8f8 } .dashboard-reports__container__chart-box .table-container .dataTable tr.highlighted td { border-bottom:1px solid #e5e5e5 } .dashboard-reports__container__chart-box .table-container .dataTable .first-column.with-link { display:flex; justify-content:space-between; min-width:200px } .dashboard-reports__container__chart-box .table-container .dataTable .first-column .geo-color-block { border:1px solid rgba(0,0,0,.12); border-radius:2px; margin-top:7px; width:12px; height:12px } .dashboard-reports__container__chart-box .table-container .dataTable .first-column .popularity__first { background-color:#3abcb6 } .dashboard-reports__container__chart-box .table-container .dataTable .first-column .popularity__second { background-color:#88dfdb } .dashboard-reports__container__chart-box .table-container .dataTable .first-column .popularity__third { background-color:#d2f3f0 } .dashboard-reports__container__chart-box .table-container .dataTable .cell-link { float:right; padding-right:8px; height:16px; width:24px; display:block; padding-top:1px } .dashboard-reports__container__chart-box .table-container .dataTable .cell-link a { color:#858585 } .dashboard-reports__container__chart-box .table-container .dataTable .cell-link a:hover { color:#222 } .dashboard-reports__container__chart-box .table-container .dataTables_paginate { width:100%; text-align:center; margin:32px 0 8px } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .ellipsis, .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button { border:1px solid #e3e3e3; color:#909090; margin:0 2px; padding:6px 12px } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .ellipsis { display:inline-block; height:35px; cursor:default } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button.next, .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button.previous { font-weight:700 } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button.next { margin-left:8px } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button.previous { margin-right:8px } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button.current, .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button:hover { color:#000!important; border-color:#aaa; background:#fff; z-index:1 } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button:active { background:#fff; box-shadow:none } .dashboard-reports__container__chart-box .table-container .dataTables_paginate .paginate_button.disabled { display:none } .branding-image-upload__overlay { padding-top:10px; align-items:center; visibility:hidden; position:absolute; bottom:0; left:0; top:0; z-index:4; right:0; text-align:center; background-color:hsla(0,0%,100%,.7) } .branding-image-upload__overlay-button { margin-bottom:10px } .branding-image-upload__custom-overlay { width:100%; height:100%; position:absolute; top:0; left:0; z-index:2; background:hsla(0,0%,100%,.76) } .branding-image-upload__controls .logo-preview { position:relative; z-index:3 } .branding-image-upload__controls:hover .branding-image-upload__overlay { visibility:visible } .input-url { display:flex; align-items:center } .input-url__prefix { color:#a7a7a7; font-family:Proxima Nova,sans-serif; height:39px; padding:0 10px; line-height:2.5; border:1px solid #e5e5e5; background-color:#f6f6f6; box-shadow:inset 0 2px 3px 0 rgba(0,0,0,.05) } .returns-expired { position:relative } .returns-expired-circles { width:40px; min-width:40px; height:40px; border:3px solid #e5e5e5; z-index:1 } .returns-expired-lines { position:absolute; height:100% } .returns-expired .step-container { position:relative } .returns-expired .step-container:after { content:""; height:100%; width:1px; background:#e5e5e5; left:20px; position:absolute; display:flex; align-items:center; justify-content:center } .disabled-overlay { width:100%; height:100%; background-color:hsla(0,0%,100%,.6); position:absolute; z-index:1 } @media only screen and (max-width:767px) { .toggle-returns { margin-top:20px } } .page-preview { position:relative; padding-bottom:65.25%; padding-top:30px; height:0; overflow:auto; -webkit-overflow-scrolling:touch } .page-preview iframe { position:absolute; top:0; left:0; width:100%; height:100% } @media only screen and (max-width:767px) { .pull-sm-left { float:left!important } } .returns-details .modal-lg { width:80%!important; margin:30px auto 0 } @media only screen and (max-width:767px) { .returns-details .modal-lg { width:95%!important } } .withdrawal-modal .modal-header:after { display:inline } .withdrawal-modal .withdraw__accept-terms { display:inline-flex; align-items:flex-start } .add-similar-products__block { position:relative } .add-similar-products__slider-container { overflow-x:hidden } .add-similar-products__item-container { margin-right:18px; display:flex } .add-similar-products__item-container:last-of-type { margin-right:0 } .add-similar-products-item { width:128px; min-width:128px; display:flex; flex-direction:column; flex-grow:1 } .add-similar-products-item, .add-similar-products-item *, .add-similar-products-item:focus, .add-similar-products-item :focus, .add-similar-products-item:hover, .add-similar-products-item :hover { text-decoration:none } .add-similar-products-item__image-block { height:128px; background-size:auto 100% } .add-similar-products-item__info-block { min-height:60px } .add-similar-products-item__printfile-block { height:128px; background-repeat:repeat; background-image:url(/static/images/layout/trasnparent-pattern.png); background-size:20% } .add-similar-products-item__printfile-block img { max-width:100%; max-height:100% } .add-similar-products-item:first-of-type { margin-left:4px } .sync-products-list { position:relative } .sync-products-list .sync-stats { white-space:normal } .sync-products-list .sync-stats .value { display:block } .sync-products-list__header { border-bottom:1px solid #ddd } .sync-products-list__tabs ul { border-bottom:none } .sync-products-list__table { overflow:visible } .sync-products-list a.bulk-edit { text-transform:none; font-size:14px } .sync-products-list .sync-products-list-groups { margin-bottom:-1px } .sync-products-list-item { cursor:pointer; border-bottom:1px solid #e5e5e5!important; position:relative } .sync-products-list-item:last-of-type { border-bottom:none!important } .sync-products-list-item__thumbnail .sync-product-image { margin:0 auto; width:60px; height:60px; background-size:contain; background-position:50%; background-repeat:no-repeat; background-color:transparent } .sync-products-list-item__title .product-name__badges { display:block } .sync-products-list-item__title .product-name__badges .label { display:inline-block } .sync-products-list-item__subtitle, .sync-products-list-item__title .product-name__actual-name { white-space:normal } .sync-products-list-item__action-link { display:inline-block; vertical-align:middle } .sync-products-list-item__action-link a, .sync-products-list-item__action-link a:hover { text-decoration:none } .sync-products-list-item__action-link .small-icon { font-size:.7em } .sync-products.sync-row-selector td.checkbox-wrapper { vertical-align:middle; padding-top:0 } .sync-products>tbody>tr>td { padding-top:9px; padding-bottom:9px } .sync-products>tbody>tr>td:first-of-type { padding-left:9px } .sync-products>tbody>tr>td:last-of-type { padding-right:9px } .sync-products-list-task-item { cursor:default } .sync-products-list-task-item__task-col { position:relative } .sync-products-list-task-item.running-task .sync-products-list-item__thumbnail, .sync-products-list-task-item.running-task .sync-products-list-item__title { opacity:.6 } .sync-products-list-task-item.running-task .sync-products-list-task-item__main-content__progress { color:#0c8512 } .sync-products-list-task-item.failed-task { background-color:#feedec } .sync-products-list-task-item.failed-task:hover { background-color:#fde4e2 } .sync-products-list-task-item.failed-task .sync-products-list-item__thumbnail { vertical-align:top } .sync-products-list-task-item.failed-task .sync-products-list-item__title, .sync-products-list-task-item.failed-task .sync-products-list-task-item__main-content { color:#cf1814!important } .sync-products-list-task-item.failed-task .sync-products-list-item__title .error-message, .sync-products-list-task-item.failed-task .sync-products-list-task-item__main-content .error-message { white-space:normal } .sync-products-list-task-item.failed-task .sync-products-list-task-item__main-content p { margin-bottom:0 } .sync-products-list-task-item .close-task { position:absolute; top:9px; right:9px } .sync-products-list-product-item.new-product:not(.bg-warning) { background-color:#e5f5e4 } .sync-products-list-product-item.new-product:not(.bg-warning):hover { background-color:#def2dd } .sync-products-list-message-container .h6 { color:inherit } .sync-products-list-header .checkbox-wrapper { vertical-align:top; line-height:40px } .sync-products-list-header .checkbox-wrapper input[type=checkbox] { margin:0; padding:0 } .sync-products-list-header .sync-products-list-header-actions { border-collapse:collapse } .sync-products-list-header .sync-products-list-header-actions .actions-container .pf-dropdown { min-width:180px } .sync-products-list-items__header>.row { height:48px }
0.414188
0.215145
body { font-family: sans-serif; margin: 0px; } a { text-decoration: none; } label { display: block; } .nav-container { background-color: rgb(37, 77, 136); } nav { display: flex; justify-content: space-between; align-items: center; } nav hr { margin: 0px; } nav > .navLinkContainer { width: 40%; display: flex; justify-content: space-evenly; } nav #route-me-name { margin-left: 30px; } #route-me-name > h1 { color: #feffe9; } nav a { display: inline-block; margin: 1em; color: #feffe9; } form div { margin: 1em; display: inline-block; } .mapContainer { margin-top: 78px; position: absolute; top: 0; right: 0; left: 0; bottom: 0; } .sidebarStyle { display: inline-block; position: absolute; top: 0; left: 0; margin: 12px; background-color: #404040; color: #ffffff; z-index: 1 !important; padding: 6px; font-weight: bold; } #instructions { position: absolute; margin-top: 78px; width: 25%; height: 300px; top: 0; padding: 20px; background-color: rgba(142, 168, 233, 0.8); overflow-y: scroll; font-family: sans-serif; font-size: 0.8em; line-height: 2em; } /* .location-search-input { width: 80%; padding: 16px; font-size: 16px; border-radius: 2px; outline: none; } */ .location-search-input { border: honeydew; box-shadow: 0 1px 1px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08); display: block; width: 80%; padding: 16px; font-size: 16px; border-radius: 2px; outline: none; } .location-search-input:focus { box-shadow: 0 3px 3px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08); } .autocomplete-dropdown-container { border-bottom: honeydew; border-left: honeydew; border-right: honeydew; border-top: 1px solid #e6e6e6; box-shadow: 0 2px 4px rgba(0,0,0,0.2); position: absolute; width: 80%; z-index: 1000; border-radius: 0 0 2px 2px; } .autocomplete-dropdown-container:focus { height: 30%; } .autocomplete-dropdown-container:active { height: 30%; } .suggestion-item { padding: 5px; } .suggestion-item--active { padding: 5px; } .route-set-container { display: flex; flex-direction: column; justify-content: space-evenly; align-items: center; } .route-set-container-child { margin: 5px; } #search-bar { margin-left: center; } .plus-minus-buttons { height: 100%; font-size: 20px; } .plus-minus { outline: white; border-radius: 50%; margin: 3px 5px; height: 40px; width: 40px; font-size: 30px; } #miles { margin: 0px 10px; } .route-button { border-radius: 20px 10px; font-size: 20px; padding: 10px; } .route-button:focus { outline: none; } .route-button:active { transform: translateY(2px); } .past-routes-container { display: flex; flex-direction: column; align-items: center; } .past-routes { align-self: center; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; border-collapse: collapse; width: 90%; } .past-routes thead { font-style: oblique; font-weight: bold; } .past-routes tbody tr:nth-child(odd) { background-color: antiquewhite } .past-routes tbody tr:hover { background-color: rgb(218, 218, 218); } .past-routes td { border: 1px solid #dddddd; padding: 5px; }
public/style.css
body { font-family: sans-serif; margin: 0px; } a { text-decoration: none; } label { display: block; } .nav-container { background-color: rgb(37, 77, 136); } nav { display: flex; justify-content: space-between; align-items: center; } nav hr { margin: 0px; } nav > .navLinkContainer { width: 40%; display: flex; justify-content: space-evenly; } nav #route-me-name { margin-left: 30px; } #route-me-name > h1 { color: #feffe9; } nav a { display: inline-block; margin: 1em; color: #feffe9; } form div { margin: 1em; display: inline-block; } .mapContainer { margin-top: 78px; position: absolute; top: 0; right: 0; left: 0; bottom: 0; } .sidebarStyle { display: inline-block; position: absolute; top: 0; left: 0; margin: 12px; background-color: #404040; color: #ffffff; z-index: 1 !important; padding: 6px; font-weight: bold; } #instructions { position: absolute; margin-top: 78px; width: 25%; height: 300px; top: 0; padding: 20px; background-color: rgba(142, 168, 233, 0.8); overflow-y: scroll; font-family: sans-serif; font-size: 0.8em; line-height: 2em; } /* .location-search-input { width: 80%; padding: 16px; font-size: 16px; border-radius: 2px; outline: none; } */ .location-search-input { border: honeydew; box-shadow: 0 1px 1px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08); display: block; width: 80%; padding: 16px; font-size: 16px; border-radius: 2px; outline: none; } .location-search-input:focus { box-shadow: 0 3px 3px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08); } .autocomplete-dropdown-container { border-bottom: honeydew; border-left: honeydew; border-right: honeydew; border-top: 1px solid #e6e6e6; box-shadow: 0 2px 4px rgba(0,0,0,0.2); position: absolute; width: 80%; z-index: 1000; border-radius: 0 0 2px 2px; } .autocomplete-dropdown-container:focus { height: 30%; } .autocomplete-dropdown-container:active { height: 30%; } .suggestion-item { padding: 5px; } .suggestion-item--active { padding: 5px; } .route-set-container { display: flex; flex-direction: column; justify-content: space-evenly; align-items: center; } .route-set-container-child { margin: 5px; } #search-bar { margin-left: center; } .plus-minus-buttons { height: 100%; font-size: 20px; } .plus-minus { outline: white; border-radius: 50%; margin: 3px 5px; height: 40px; width: 40px; font-size: 30px; } #miles { margin: 0px 10px; } .route-button { border-radius: 20px 10px; font-size: 20px; padding: 10px; } .route-button:focus { outline: none; } .route-button:active { transform: translateY(2px); } .past-routes-container { display: flex; flex-direction: column; align-items: center; } .past-routes { align-self: center; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; border-collapse: collapse; width: 90%; } .past-routes thead { font-style: oblique; font-weight: bold; } .past-routes tbody tr:nth-child(odd) { background-color: antiquewhite } .past-routes tbody tr:hover { background-color: rgb(218, 218, 218); } .past-routes td { border: 1px solid #dddddd; padding: 5px; }
0.375248
0.075346
.jv-honiara a, .jv-honiara a:active, .jv-honiara a:focus, .jv-honiara .tg-item-title, .jv-honiara .tg-button-holder, .jv-honiara .tg-item-media-holder, .jv-honiara .tg-item-skin-name, .jv-honiara .tg-item-content-holder { text-decoration: none; border: none; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: opacity 0.4s ease, color 0.25s ease, -webkit-transform 0.2s ease-in-out; -moz-transition: opacity 0.4s ease, color 0.25s ease, -moz-transform 0.2s ease-in-out; -ms-transition: opacity 0.4s ease, color 0.25s ease, -ms-transform 0.2s ease-in-out; -o-transition: opacity 0.4s ease, color 0.25s ease, -o-transform 0.2s ease-in-out; transition: opacity 0.4s ease, color 0.25s ease, transform 0.2s ease-in-out; } .tg-grid-holder .jv-honiara { -webkit-transition-property: z-index; -webkit-transition-duration: 0; -webkit-transition-delay:0.2s; -moz-transition-property: z-index; -moz-transition-duration: 0; -moz-transition-delay:0.2s; transition-property: z-index; transition-duration: 0; transition-delay:0.18s; } .tg-grid-holder .jv-honiara:hover { z-index: 2; -webkit-transition-property: z-index; -webkit-transition-duration: 0; -webkit-transition-delay: 0s; -moz-transition-property: z-index; -moz-transition-duration: 0; -moz-transition-delay: 0s; transition-property: z-index; transition-duration: 0; transition-delay: 0s; } .jv-honiara .tg-item-content-holder, .jv-honiara .tg-item-overlay { position: absolute; display: block; bottom: 0; left: 0; width: 100%; height: 100%; } .jv-honiara .tg-item-overlay { border-radius: 50%; } .jv-honiara .tg-item-content-holder { position: absolute; display: block; bottom: 0; left: 0; width: 100%; height: 120px; padding: 0; -webkit-transition: -webkit-transform 0.2s ease-in-out; -moz-transition: -moz-transform 0.2s ease-in-out; -ms-transition: -ms-transform 0.2s ease-in-out; -o-transition: -o-transform 0.2s ease-in-out; transition: transform 0.2s ease-in-out; } .jv-honiara .tg-center-outer { padding: 30px; } .jv-honiara:hover .tg-item-content-holder { -webkit-transform: translateY(60px); -moz-transform: translateY(60px); -ms-transform: translateY(60px); -o-transform: translateY(60px); transform: translateY(60px); -webkit-transition: -webkit-transform 0.2s ease-in-out 0.1s; -moz-transition: -moz-transform 0.2s ease-in-out 0.1s; -ms-transition: -ms-transform 0.2s ease-in-out 0.1s; -o-transition: -o-transform 0.2s ease-in-out 0.1s; transition: transform 0.2s ease-in-out 0.1s; } .jv-honiara:hover .tg-item-skin-name, .jv-honiara:hover .tg-item-media-holder { -webkit-transform: translateY(-60px); -moz-transform: translateY(-60px); -ms-transform: translateY(-60px); -o-transform: translateY(-60px); transform: translateY(-60px); } .jv-honiara .tg-item-title, .jv-honiara .tg-item-title a { position: relative; font-size: 18px !important; line-height: 20px !important; font-weight: 600; margin: 0 !important; padding: 0 !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: center; } .jv-honiara .tg-cats-holder { position: relative; display: block; margin: 4px 0 0 0; padding: 0; font-size: 13px; line-height: 18px; font-style: italic; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: center; } .jv-honiara .tg-button-holder { position: absolute; display: block; overflow: hidden; bottom: -20px; left: 50%; height: 40px; width: 40px; margin: 0 0 0 -20px; border-radius: 50%; opacity: 0; -webkit-transform: translateY(-50px) scale3d(0.7,0.7,0.7); -moz-transform: translateY(-50px) scale3d(0.7,0.7,0.7); -ms-transform: translateY(-50px) scale3d(0.7,0.7,0.7); -o-transform: translateY(-50px) scale3d(0.7,0.7,0.7); transform: translateY(-50px) scale3d(0.7,0.7,0.7); } .jv-honiara:hover .tg-button-holder { opacity: 1; -webkit-transform: translateY(0) scale3d(1,1,1); -moz-transform: translateY(0) scale3d(1,1,1); -ms-transform: translateY(0) scale3d(1,1,1); -o-transform: translateY(0) scale3d(1,1,1); transform: translateY(0) scale3d(1,1,1); } .jv-honiara .tg-link-button, .jv-honiara .tg-media-button { position: absolute; display: block; margin: 0 !important; padding: 0 !important; top: 0; right: 0; width: 40px; height: 40px; cursor: pointer; text-align: center; } .jv-honiara .tg-link-button i, .jv-honiara .tg-media-button i { position: relative; display: block; width: 40px; height: 40px; font-size: 18px; line-height: 40px; cursor: pointer; } .jv-honiara .tg-media-button .tg-icon-add { font-size: 20px; } .jv-honiara .tg-item-title:hover, .jv-honiara .tg-link-button a:hover, .jv-honiara .tg-cats-holder a:hover, .jv-honiara .tg-button-holder:hover { opacity: 0.75; } .jv-honiara .tg-item-link { position: absolute; display: block; top: 0; left: 0; width: 100%; height: 100%; } .jv-honiara .mejs-overlay-play { display: none !important; } /* Javo Taxonomy */ .jv-honiara .tg-jv-category, .jv-honiara .tg-jv-location{ position:relative; top:5px; } /** Javo Rating average **/ .jv-honiara .tg-jv-meta-rating-wrap { position: absolute; top: 0; left: auto; left: 0; margin: 14px 10px; z-index: 1; width: 75px; height: 15px; } .jv-honiara .tg-jv-meta-rating-wrap::before { position: absolute; content: ''; top: -4px; left: -4px; right: 0px; bottom: -4px; border-radius: 0; z-index: 1; } .jv-honiara .tg-jv-meta-rating { position: relative; z-index: 1; background-position: -3px -15px; background-image: url('/wp-content/themes/javo-spot/assets/images/star-all.png'); background-repeat: no-repeat; } .jv-honiara .tg-center-outer{padding-top:15px;} .jv-honiara:hover .tg-jv-meta-rating{ height:100%; } /** Javo category icons **/ .jv-honiara .tg-jv-tax-wrap {padding:15px 0 0 0;} .jv-honiara .tg-jv-category i.glyphicon, .tg-jv-location i.glyphicon {font-size: 0.85em; color:#999; !important; letter-spacing:0.5em;} .jv-honiara .tg-jv-category {margin-right:15px;}
Website/the-grid/grid/old/jv-honiara/jv-honiara.css
.jv-honiara a, .jv-honiara a:active, .jv-honiara a:focus, .jv-honiara .tg-item-title, .jv-honiara .tg-button-holder, .jv-honiara .tg-item-media-holder, .jv-honiara .tg-item-skin-name, .jv-honiara .tg-item-content-holder { text-decoration: none; border: none; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: opacity 0.4s ease, color 0.25s ease, -webkit-transform 0.2s ease-in-out; -moz-transition: opacity 0.4s ease, color 0.25s ease, -moz-transform 0.2s ease-in-out; -ms-transition: opacity 0.4s ease, color 0.25s ease, -ms-transform 0.2s ease-in-out; -o-transition: opacity 0.4s ease, color 0.25s ease, -o-transform 0.2s ease-in-out; transition: opacity 0.4s ease, color 0.25s ease, transform 0.2s ease-in-out; } .tg-grid-holder .jv-honiara { -webkit-transition-property: z-index; -webkit-transition-duration: 0; -webkit-transition-delay:0.2s; -moz-transition-property: z-index; -moz-transition-duration: 0; -moz-transition-delay:0.2s; transition-property: z-index; transition-duration: 0; transition-delay:0.18s; } .tg-grid-holder .jv-honiara:hover { z-index: 2; -webkit-transition-property: z-index; -webkit-transition-duration: 0; -webkit-transition-delay: 0s; -moz-transition-property: z-index; -moz-transition-duration: 0; -moz-transition-delay: 0s; transition-property: z-index; transition-duration: 0; transition-delay: 0s; } .jv-honiara .tg-item-content-holder, .jv-honiara .tg-item-overlay { position: absolute; display: block; bottom: 0; left: 0; width: 100%; height: 100%; } .jv-honiara .tg-item-overlay { border-radius: 50%; } .jv-honiara .tg-item-content-holder { position: absolute; display: block; bottom: 0; left: 0; width: 100%; height: 120px; padding: 0; -webkit-transition: -webkit-transform 0.2s ease-in-out; -moz-transition: -moz-transform 0.2s ease-in-out; -ms-transition: -ms-transform 0.2s ease-in-out; -o-transition: -o-transform 0.2s ease-in-out; transition: transform 0.2s ease-in-out; } .jv-honiara .tg-center-outer { padding: 30px; } .jv-honiara:hover .tg-item-content-holder { -webkit-transform: translateY(60px); -moz-transform: translateY(60px); -ms-transform: translateY(60px); -o-transform: translateY(60px); transform: translateY(60px); -webkit-transition: -webkit-transform 0.2s ease-in-out 0.1s; -moz-transition: -moz-transform 0.2s ease-in-out 0.1s; -ms-transition: -ms-transform 0.2s ease-in-out 0.1s; -o-transition: -o-transform 0.2s ease-in-out 0.1s; transition: transform 0.2s ease-in-out 0.1s; } .jv-honiara:hover .tg-item-skin-name, .jv-honiara:hover .tg-item-media-holder { -webkit-transform: translateY(-60px); -moz-transform: translateY(-60px); -ms-transform: translateY(-60px); -o-transform: translateY(-60px); transform: translateY(-60px); } .jv-honiara .tg-item-title, .jv-honiara .tg-item-title a { position: relative; font-size: 18px !important; line-height: 20px !important; font-weight: 600; margin: 0 !important; padding: 0 !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: center; } .jv-honiara .tg-cats-holder { position: relative; display: block; margin: 4px 0 0 0; padding: 0; font-size: 13px; line-height: 18px; font-style: italic; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: center; } .jv-honiara .tg-button-holder { position: absolute; display: block; overflow: hidden; bottom: -20px; left: 50%; height: 40px; width: 40px; margin: 0 0 0 -20px; border-radius: 50%; opacity: 0; -webkit-transform: translateY(-50px) scale3d(0.7,0.7,0.7); -moz-transform: translateY(-50px) scale3d(0.7,0.7,0.7); -ms-transform: translateY(-50px) scale3d(0.7,0.7,0.7); -o-transform: translateY(-50px) scale3d(0.7,0.7,0.7); transform: translateY(-50px) scale3d(0.7,0.7,0.7); } .jv-honiara:hover .tg-button-holder { opacity: 1; -webkit-transform: translateY(0) scale3d(1,1,1); -moz-transform: translateY(0) scale3d(1,1,1); -ms-transform: translateY(0) scale3d(1,1,1); -o-transform: translateY(0) scale3d(1,1,1); transform: translateY(0) scale3d(1,1,1); } .jv-honiara .tg-link-button, .jv-honiara .tg-media-button { position: absolute; display: block; margin: 0 !important; padding: 0 !important; top: 0; right: 0; width: 40px; height: 40px; cursor: pointer; text-align: center; } .jv-honiara .tg-link-button i, .jv-honiara .tg-media-button i { position: relative; display: block; width: 40px; height: 40px; font-size: 18px; line-height: 40px; cursor: pointer; } .jv-honiara .tg-media-button .tg-icon-add { font-size: 20px; } .jv-honiara .tg-item-title:hover, .jv-honiara .tg-link-button a:hover, .jv-honiara .tg-cats-holder a:hover, .jv-honiara .tg-button-holder:hover { opacity: 0.75; } .jv-honiara .tg-item-link { position: absolute; display: block; top: 0; left: 0; width: 100%; height: 100%; } .jv-honiara .mejs-overlay-play { display: none !important; } /* Javo Taxonomy */ .jv-honiara .tg-jv-category, .jv-honiara .tg-jv-location{ position:relative; top:5px; } /** Javo Rating average **/ .jv-honiara .tg-jv-meta-rating-wrap { position: absolute; top: 0; left: auto; left: 0; margin: 14px 10px; z-index: 1; width: 75px; height: 15px; } .jv-honiara .tg-jv-meta-rating-wrap::before { position: absolute; content: ''; top: -4px; left: -4px; right: 0px; bottom: -4px; border-radius: 0; z-index: 1; } .jv-honiara .tg-jv-meta-rating { position: relative; z-index: 1; background-position: -3px -15px; background-image: url('/wp-content/themes/javo-spot/assets/images/star-all.png'); background-repeat: no-repeat; } .jv-honiara .tg-center-outer{padding-top:15px;} .jv-honiara:hover .tg-jv-meta-rating{ height:100%; } /** Javo category icons **/ .jv-honiara .tg-jv-tax-wrap {padding:15px 0 0 0;} .jv-honiara .tg-jv-category i.glyphicon, .tg-jv-location i.glyphicon {font-size: 0.85em; color:#999; !important; letter-spacing:0.5em;} .jv-honiara .tg-jv-category {margin-right:15px;}
0.310694
0.057256
@charset "utf-8"; /* CSS Document */ body {font-family: 'Roboto', sans-serif; font-size: 16px; font-weight: 400; color: #000;} ul {padding-left: 0;} ul li {list-style: none;} ul li a {color: #fff;} ul li a:hover {color:#fff !important;} h1,h2,h3,h4,h5,h6 {font-weight: 500;} p {font-weight: 400;} .coolmatch-bg {background-image: url(../img/coolmatch_bg.png); background-size: cover; background-repeat: no-repeat; background-position: center; padding: 80px 0;} .coolmatch-bg h2 {font-size: 58px; color: #fff;} .coolmatch-bg p {color: #fff; font-size: 36px;} /*TOUR APP STORY*/ .cool-appstory h2 {color: #db2c57; font-size: 58px;} .cool-appstory p {color: #949494; font-size: 24px;} /*USER EXPERIANCE*/ .user-bg {background-color: #f3f3f3; } .user-bg h2 {color: #db2c57; font-size: 48px; font-weight: 500;} /*STYLE GUIDE*/ .colorpallate-bg h2 {color: #db2c57; font-size: 48px;} .colorpallate-bg h4 {color: #949494; font-size: 22px; font-weight: 400;} .brand-bg {background-color: #7f7f7f;} .brand-bg h2 {font-size: 52px; color: #fff;} .final-bg h2 {color: #db2c57; font-size: 52px;} .coolapp-bg {background-color: #f3f3f3;} .coolapp-bg h2 {color: #db2c57; font-size: 62px;} @media(max-width: 425px){ .coolmatch-bg img {width: 150px; height: auto;} .coolmatch-bg {padding: 40px 0;} .coolmatch-bg h2 {font-size: 36px;} .coolmatch-bg p {font-size: 22px;} .cool-appstory h2 {font-size: 36px;} .cool-appstory p {font-size: 20px;} .user-bg h2 {font-size: 36px;} .colorpallate-bg h2 {font-size: 36px;} .colorpallate-bg h4 {font-size: 16px;} .brand-bg h2 {font-size: 36px;} .final-bg h2 {font-size: 32px;} .coolapp-bg h2 {font-size: 42px;} } @media(min-width:426px) and (max-width:768px){ .coolmatch-bg img {width: 180px; height: auto;} .coolmatch-bg {padding: 60px 0;} .coolmatch-bg h2 {font-size: 42px;} .coolmatch-bg p {font-size: 28px;} .user-bg h2 {font-size: 48px;} .cool-appstory h2 {font-size: 48px;} .cool-appstory p {font-size: 22px;} .colorpallate-bg h2 {font-size: 38px;} .brand-bg h2 {font-size: 42px;} .final-bg h2 {font-size: 42px;} .coolapp-bg h2 {font-size: 52px;} }
public/css/coolmatch.css
@charset "utf-8"; /* CSS Document */ body {font-family: 'Roboto', sans-serif; font-size: 16px; font-weight: 400; color: #000;} ul {padding-left: 0;} ul li {list-style: none;} ul li a {color: #fff;} ul li a:hover {color:#fff !important;} h1,h2,h3,h4,h5,h6 {font-weight: 500;} p {font-weight: 400;} .coolmatch-bg {background-image: url(../img/coolmatch_bg.png); background-size: cover; background-repeat: no-repeat; background-position: center; padding: 80px 0;} .coolmatch-bg h2 {font-size: 58px; color: #fff;} .coolmatch-bg p {color: #fff; font-size: 36px;} /*TOUR APP STORY*/ .cool-appstory h2 {color: #db2c57; font-size: 58px;} .cool-appstory p {color: #949494; font-size: 24px;} /*USER EXPERIANCE*/ .user-bg {background-color: #f3f3f3; } .user-bg h2 {color: #db2c57; font-size: 48px; font-weight: 500;} /*STYLE GUIDE*/ .colorpallate-bg h2 {color: #db2c57; font-size: 48px;} .colorpallate-bg h4 {color: #949494; font-size: 22px; font-weight: 400;} .brand-bg {background-color: #7f7f7f;} .brand-bg h2 {font-size: 52px; color: #fff;} .final-bg h2 {color: #db2c57; font-size: 52px;} .coolapp-bg {background-color: #f3f3f3;} .coolapp-bg h2 {color: #db2c57; font-size: 62px;} @media(max-width: 425px){ .coolmatch-bg img {width: 150px; height: auto;} .coolmatch-bg {padding: 40px 0;} .coolmatch-bg h2 {font-size: 36px;} .coolmatch-bg p {font-size: 22px;} .cool-appstory h2 {font-size: 36px;} .cool-appstory p {font-size: 20px;} .user-bg h2 {font-size: 36px;} .colorpallate-bg h2 {font-size: 36px;} .colorpallate-bg h4 {font-size: 16px;} .brand-bg h2 {font-size: 36px;} .final-bg h2 {font-size: 32px;} .coolapp-bg h2 {font-size: 42px;} } @media(min-width:426px) and (max-width:768px){ .coolmatch-bg img {width: 180px; height: auto;} .coolmatch-bg {padding: 60px 0;} .coolmatch-bg h2 {font-size: 42px;} .coolmatch-bg p {font-size: 28px;} .user-bg h2 {font-size: 48px;} .cool-appstory h2 {font-size: 48px;} .cool-appstory p {font-size: 22px;} .colorpallate-bg h2 {font-size: 38px;} .brand-bg h2 {font-size: 42px;} .final-bg h2 {font-size: 42px;} .coolapp-bg h2 {font-size: 52px;} }
0.135289
0.073231
html, body { height: 100%; font-family: Cambria; } .wrap { min-height: 100%; height: auto; margin: 0 auto -60px; padding: 0 0 60px; } .wrap > .container { padding: 70px 15px 20px; font-size: 1.05em; } .footer { height: 60px; background-color: #f5f5f5; border-top: 1px solid #ddd; padding-top: 20px; } .jumbotron { text-align: center; background-color: transparent; } .jumbotron .btn { font-size: 21px; padding: 14px 24px; } .not-set { color: #c55; font-style: italic; } /* add sorting icons to gridview sort links */ a.asc:after, 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; } a.asc:after { content: /*"\e113"*/ "\e151"; } a.desc:after { content: /*"\e114"*/ "\e152"; } .sort-numerical a.asc:after { content: "\e153"; } .sort-numerical a.desc:after { content: "\e154"; } .sort-ordinal a.asc:after { content: "\e155"; } .sort-ordinal a.desc:after { content: "\e156"; } .grid-view th { white-space: nowrap; } .hint-block { display: block; margin-top: 5px; color: #999; } .error-summary { color: #a94442; background: #fdf7f7; border-left: 3px solid #eed3d7; padding: 10px 20px; margin: 0 0 15px 0; } .collapse.navbar-collapse li.active { border-bottom: 3px solid white; } .collapse.navbar-collapse li:hover { border-bottom: 3px solid #bce8f1; } nav.navbar-inverse { background-color: #003975; } .navbar-inverse .navbar-nav > li { /*border: 0;*/ /*border-color: whitesmoke;*/ /*border-left-width: 1px;*/ /*border-right-width: 1px;*/ /*border-style: solid;*/ } .navbar-inverse .navbar-nav > li > a { color: white; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { background-color: #116bbe; } img { max-width: 100%; } .shadow-box { box-shadow: 0 5px 20px black; padding: 15px; min-height: 600px; width: 48%; margin: 0 5px; font-size: 1.1em; } @media all and (max-width: 1024px) { .shadow-box { min-height: 710px; } } @media all and (max-width: 768px) { .shadow-box { min-height: 600px; width: 100%; font-size: 1em; } } .container { width: 95%; } hr { border-color: #aaaaaa; } textarea, input { padding: 5px; } textarea { resize: vertical; } ul.navbar-nav.navbar-right.nav { font-size: 1.1em; } ul.navbar-nav.navbar-right.nav li > a { padding: 15px 8px; } nav div.container form.navbar-form { padding: 0; } div.navbar-header a.navbar-brand { padding-right: 2px; } div.container > ul.breadcrumb { margin-bottom: 10px; } .green { background-color: green; } .red { background-color: red; }
web/css/site.css
html, body { height: 100%; font-family: Cambria; } .wrap { min-height: 100%; height: auto; margin: 0 auto -60px; padding: 0 0 60px; } .wrap > .container { padding: 70px 15px 20px; font-size: 1.05em; } .footer { height: 60px; background-color: #f5f5f5; border-top: 1px solid #ddd; padding-top: 20px; } .jumbotron { text-align: center; background-color: transparent; } .jumbotron .btn { font-size: 21px; padding: 14px 24px; } .not-set { color: #c55; font-style: italic; } /* add sorting icons to gridview sort links */ a.asc:after, 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; } a.asc:after { content: /*"\e113"*/ "\e151"; } a.desc:after { content: /*"\e114"*/ "\e152"; } .sort-numerical a.asc:after { content: "\e153"; } .sort-numerical a.desc:after { content: "\e154"; } .sort-ordinal a.asc:after { content: "\e155"; } .sort-ordinal a.desc:after { content: "\e156"; } .grid-view th { white-space: nowrap; } .hint-block { display: block; margin-top: 5px; color: #999; } .error-summary { color: #a94442; background: #fdf7f7; border-left: 3px solid #eed3d7; padding: 10px 20px; margin: 0 0 15px 0; } .collapse.navbar-collapse li.active { border-bottom: 3px solid white; } .collapse.navbar-collapse li:hover { border-bottom: 3px solid #bce8f1; } nav.navbar-inverse { background-color: #003975; } .navbar-inverse .navbar-nav > li { /*border: 0;*/ /*border-color: whitesmoke;*/ /*border-left-width: 1px;*/ /*border-right-width: 1px;*/ /*border-style: solid;*/ } .navbar-inverse .navbar-nav > li > a { color: white; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { background-color: #116bbe; } img { max-width: 100%; } .shadow-box { box-shadow: 0 5px 20px black; padding: 15px; min-height: 600px; width: 48%; margin: 0 5px; font-size: 1.1em; } @media all and (max-width: 1024px) { .shadow-box { min-height: 710px; } } @media all and (max-width: 768px) { .shadow-box { min-height: 600px; width: 100%; font-size: 1em; } } .container { width: 95%; } hr { border-color: #aaaaaa; } textarea, input { padding: 5px; } textarea { resize: vertical; } ul.navbar-nav.navbar-right.nav { font-size: 1.1em; } ul.navbar-nav.navbar-right.nav li > a { padding: 15px 8px; } nav div.container form.navbar-form { padding: 0; } div.navbar-header a.navbar-brand { padding-right: 2px; } div.container > ul.breadcrumb { margin-bottom: 10px; } .green { background-color: green; } .red { background-color: red; }
0.612773
0.107063
.color-switcher { width: 223px; position: fixed; right: -223px; top: 195px; z-index: 999; padding: 0px; -webkit-transition: all 500ms ease; -moz-transition: all 500ms ease; -ms-transition: all 500ms ease; -o-transition: all 500ms ease; transition: all 500ms ease; } .color-switcher h5 { font-size: 15px; margin-top: 0; padding: 0 20px 0; } .color-switcher p { font-size: 12px; color: #000; margin-bottom: 0; height: 40px; text-align: left; font-weight: bold; line-height: 42px; text-transform: uppercase; } .color-switcher ul { list-style: none; padding: 0; } .color-switcher ul li { float: left; } .color-switcher ul li a { display: block; width: 35px; height: 35px; outline: none; text-align: center; line-height: 35px; font-size: 14px; color: #333; } .color-switcher ul li a.blue { background: #0b60a9; } .color-switcher ul li a.brown { background: #987654; } .color-switcher ul li a.cyan { background: #1abc9c; } .color-switcher ul li a.dark-blue { background: #1b67cc; } .color-switcher ul li a.dark-green { background: #0fb36c; } .color-switcher ul li a.dark-purple { background: #9261c6; } .color-switcher ul li a.lite-green { background: #6ba518; } .color-switcher ul li a.orange { background: #dfaa0a; } .color-switcher ul li a.purple { background: #c74a73; } .color-switcher ul li a.red { background: #F5595A; } .color-switcher ul li a.sky-blue { background: #30b4da; } .color-switcher ul li a.pink { background: #ff6b98; } .color-switcher .white { background: #fff; } .color-switcher .light { background: #fff; width: 60px; color: #000; text-align: center; float: left; border: 1px solid #666; margin-top: 15px; margin-right: 22px; } .color-switcher .dark { background: #272727; width: 60px; float: right; color: #fff; border: 1px solid #666; margin-top: 15px; } .picker_close { width: 40px; height: 40px; position: absolute; left: -40px; top: 0px; text-align: center; background: #fbfbfb; border-bottom-left-radius: 4px; border-top-left-radius: 4px; /* box-shadow: -3px 3px 0px #ddd; */ } .picker_close i { font-size: 18px; margin-top: 9px; } .position { right: 0; -webkit-transition: all 500ms ease; -moz-transition: all 500ms ease; -ms-transition: all 500ms ease; -o-transition: all 500ms ease; transition: all 500ms ease; } .theme-colours, .layouts, .backgrounds, .choose-header, .choose-footer { display: table; text-align: left; padding-top: 0px; width: 100%; padding: 19px; background: #fbfbfb; padding-top: 0px; } .layouts a, .choose-header a, .choose-footer a { display: inline-block; text-align: center; width: 40%; margin: 0 5px 0 0; color: #5d5d5d; font-size: 15px; border: 1px solid #e7e7e7; padding: 5px 7px 2px; } .layouts a:hover, .choose-header a:hover, .choose-footer a:hover { border: 2px solid #a9a9a9; padding: 4px 5px 1px } .styleswitcher { position: fixed; width: 120px; background: #ffffff; color: #595959; top: 150px; right: -123px; z-index: 999; } .styleswitcher p { color: #000 !important; } .styleswitcher.ackapa { left: 0; } .styleswitcher .switch { padding-left: 15px; padding-bottom: 10px; } .styleswitcher .switch h5 { margin-top: 20px; } .styleswitcher .switch p { margin-top: 10px; } .stylebutton { cursor: pointer; position: absolute; text-align: center; line-height: 40px; background: #fff; font-size: 20px; width: 40px; height: 40px; top: 0px; right: -40px; } .styleswitcher a { width: 24px; height: 24px; float: left; margin-right: 7px; margin-bottom: 10px; position: relative; z-index: 99999999; } .color-switcher ul li { margin: 3px; } a.btn.btn-small.btn-circle.demo-btn { float: right; background: #222; padding: 7PX 37px; margin-top: 5px; } .other-features li:before { content: "\f178"; font-family: FontAwesome; font-size: 14px; margin-right: 10px; } .demo-bar .other-features li { float: left; width: 50%; font-size: 18px; position: relative; color: #656565; margin-bottom: 10px; background-size: 20px; list-style: none; font-weight: 400; padding-right: 30px; } .demo-bar #featured-slider .overlay-enabled article::after { content: ""; display: block; height: 100%; position: absolute; top: 0; width: 100%; z-index: 888; background-color: rgba(0, 0, 0, 0.73); } .demo-bar a.btn.btn-small.btn-circle.demo-btn { float: right; background: #18ba60; padding: 7PX 37px; margin-top: 5px; } .demo-bar #main-slider .slider-buttons .btn { margin-left: 0; border: 2px solid #fff; background: inherit; padding: 10px 45px; } .demo { width: 100%; margin: 0 auto 15px; padding: 10px; background: #fff; position: relative; } .demo h3 { font-size: 16px; margin-bottom: 35px; font-weight: 600; text-transform: uppercase; margin: 10px 0; text-align: center; padding-top: 10px; } .demo a:before { color: #fff; visibility: hidden; height: 40px; width: 40px; content: "\f06e"; display: block; background: #0a60a9; position: absolute; top: 0; left: 0; font-family: 'Font Awesome 5 Free'; z-index: 99; left: 45%; top: 45%; padding: 5px; text-align: center; border-radius: 100%; z-index: 999; } .demo a:after { height: 0; width: 0; content: ""; display: block; background: #fff; position: absolute; top: 50%; left: 50%; opacity: 0.95; visibility: hidden; transition: all 0.3s ease 0s; color: #fff; } .demo a { -webkit-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; position: relative; display: block; } .demo a:hover:after{ height: 100%; width: 100%; visibility: visible; top: 0; left: 0; } .demo a:hover:before { visibility: visible; } .demo-bar #content { background: #fff none repeat scroll 0 0; } .demo-bar aside.section.other-features { background: #fff; } .demo-bar #content .section-subtitle { font-size: 18px; margin: 0 auto 50px; } .demo-bar .main-feature img { width: 90px; margin-bottom: 15px; } .demo-bar .main-feature { text-align: center; background: #fff; padding: 30px 20px; } .demo-bar a.custom-button.buy-now-button { float: right; } .demo-bar .main-feature h3 { font-size: 18px; } .demo-bar #content .no-padding { padding: 0; max-height: 470px; overflow: hidden; } .demo-bar .section-featured-banner .featured-banner > a::after { content: ""; display: block; height: 100%; position: absolute; top: 0; width: 100%; z-index: 9; background-color: #ffffff; opacity: 0.8; } .demo-bar .section-featured-banner h3 a { color: #000; } .demo-bar .section-featured-banner h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 54px; } .demo-bar .section-featured-banner p { color: #222; } .demo-bar #masthead { box-shadow: 0 0 3px #ddd; } .demo-bar aside.section.other-features { background: #0b60a90a; background-size: 100%; background-position: center bottom; } .demo-bar aside.section.other-features ul { margin-top: 15px; } .demo-bar div#sidr-quick { display: none; } /*demo media*/ @media only screen and (max-width:1230px){ .demo-bar .section-featured-banner h3 { font-size: 40px; } } @media only screen and (max-width:1023px){ .demo-bar .section-featured-banner .banner-caption { width: 100%; left: 0; } .demo-bar .section-featured-banner h3 { font-size: 32px; } .demo-bar .other-features li { width: 100%; } .demo-bar #mobile-trigger-quick { float: right; display: none; } } @media only screen and (max-width:768px){ .demo-bar .section-featured-banner p { margin-bottom: 20px; } .demo-bar .section-featured-banner .banner-caption { width: 100%; left: 0; bottom: 36px; } } @media only screen and (max-width:768px){ .demo-bar .section-featured-banner p { display: none; } .demo-bar .section-featured-banner h3 { font-size: 19px; } .demo-bar a.custom-button.button-curved { padding: 5px 20px; font-size: 12px; } .demo-bar a.custom-button.buy-now-button { float: right; margin-top: 10px; } .demo-bar #content .section-title { font-size: 20px; } .demo-bar .other-features li { width: 100%; font-size: 14px; padding: 0; } }
assets/css/custom.css
.color-switcher { width: 223px; position: fixed; right: -223px; top: 195px; z-index: 999; padding: 0px; -webkit-transition: all 500ms ease; -moz-transition: all 500ms ease; -ms-transition: all 500ms ease; -o-transition: all 500ms ease; transition: all 500ms ease; } .color-switcher h5 { font-size: 15px; margin-top: 0; padding: 0 20px 0; } .color-switcher p { font-size: 12px; color: #000; margin-bottom: 0; height: 40px; text-align: left; font-weight: bold; line-height: 42px; text-transform: uppercase; } .color-switcher ul { list-style: none; padding: 0; } .color-switcher ul li { float: left; } .color-switcher ul li a { display: block; width: 35px; height: 35px; outline: none; text-align: center; line-height: 35px; font-size: 14px; color: #333; } .color-switcher ul li a.blue { background: #0b60a9; } .color-switcher ul li a.brown { background: #987654; } .color-switcher ul li a.cyan { background: #1abc9c; } .color-switcher ul li a.dark-blue { background: #1b67cc; } .color-switcher ul li a.dark-green { background: #0fb36c; } .color-switcher ul li a.dark-purple { background: #9261c6; } .color-switcher ul li a.lite-green { background: #6ba518; } .color-switcher ul li a.orange { background: #dfaa0a; } .color-switcher ul li a.purple { background: #c74a73; } .color-switcher ul li a.red { background: #F5595A; } .color-switcher ul li a.sky-blue { background: #30b4da; } .color-switcher ul li a.pink { background: #ff6b98; } .color-switcher .white { background: #fff; } .color-switcher .light { background: #fff; width: 60px; color: #000; text-align: center; float: left; border: 1px solid #666; margin-top: 15px; margin-right: 22px; } .color-switcher .dark { background: #272727; width: 60px; float: right; color: #fff; border: 1px solid #666; margin-top: 15px; } .picker_close { width: 40px; height: 40px; position: absolute; left: -40px; top: 0px; text-align: center; background: #fbfbfb; border-bottom-left-radius: 4px; border-top-left-radius: 4px; /* box-shadow: -3px 3px 0px #ddd; */ } .picker_close i { font-size: 18px; margin-top: 9px; } .position { right: 0; -webkit-transition: all 500ms ease; -moz-transition: all 500ms ease; -ms-transition: all 500ms ease; -o-transition: all 500ms ease; transition: all 500ms ease; } .theme-colours, .layouts, .backgrounds, .choose-header, .choose-footer { display: table; text-align: left; padding-top: 0px; width: 100%; padding: 19px; background: #fbfbfb; padding-top: 0px; } .layouts a, .choose-header a, .choose-footer a { display: inline-block; text-align: center; width: 40%; margin: 0 5px 0 0; color: #5d5d5d; font-size: 15px; border: 1px solid #e7e7e7; padding: 5px 7px 2px; } .layouts a:hover, .choose-header a:hover, .choose-footer a:hover { border: 2px solid #a9a9a9; padding: 4px 5px 1px } .styleswitcher { position: fixed; width: 120px; background: #ffffff; color: #595959; top: 150px; right: -123px; z-index: 999; } .styleswitcher p { color: #000 !important; } .styleswitcher.ackapa { left: 0; } .styleswitcher .switch { padding-left: 15px; padding-bottom: 10px; } .styleswitcher .switch h5 { margin-top: 20px; } .styleswitcher .switch p { margin-top: 10px; } .stylebutton { cursor: pointer; position: absolute; text-align: center; line-height: 40px; background: #fff; font-size: 20px; width: 40px; height: 40px; top: 0px; right: -40px; } .styleswitcher a { width: 24px; height: 24px; float: left; margin-right: 7px; margin-bottom: 10px; position: relative; z-index: 99999999; } .color-switcher ul li { margin: 3px; } a.btn.btn-small.btn-circle.demo-btn { float: right; background: #222; padding: 7PX 37px; margin-top: 5px; } .other-features li:before { content: "\f178"; font-family: FontAwesome; font-size: 14px; margin-right: 10px; } .demo-bar .other-features li { float: left; width: 50%; font-size: 18px; position: relative; color: #656565; margin-bottom: 10px; background-size: 20px; list-style: none; font-weight: 400; padding-right: 30px; } .demo-bar #featured-slider .overlay-enabled article::after { content: ""; display: block; height: 100%; position: absolute; top: 0; width: 100%; z-index: 888; background-color: rgba(0, 0, 0, 0.73); } .demo-bar a.btn.btn-small.btn-circle.demo-btn { float: right; background: #18ba60; padding: 7PX 37px; margin-top: 5px; } .demo-bar #main-slider .slider-buttons .btn { margin-left: 0; border: 2px solid #fff; background: inherit; padding: 10px 45px; } .demo { width: 100%; margin: 0 auto 15px; padding: 10px; background: #fff; position: relative; } .demo h3 { font-size: 16px; margin-bottom: 35px; font-weight: 600; text-transform: uppercase; margin: 10px 0; text-align: center; padding-top: 10px; } .demo a:before { color: #fff; visibility: hidden; height: 40px; width: 40px; content: "\f06e"; display: block; background: #0a60a9; position: absolute; top: 0; left: 0; font-family: 'Font Awesome 5 Free'; z-index: 99; left: 45%; top: 45%; padding: 5px; text-align: center; border-radius: 100%; z-index: 999; } .demo a:after { height: 0; width: 0; content: ""; display: block; background: #fff; position: absolute; top: 50%; left: 50%; opacity: 0.95; visibility: hidden; transition: all 0.3s ease 0s; color: #fff; } .demo a { -webkit-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; position: relative; display: block; } .demo a:hover:after{ height: 100%; width: 100%; visibility: visible; top: 0; left: 0; } .demo a:hover:before { visibility: visible; } .demo-bar #content { background: #fff none repeat scroll 0 0; } .demo-bar aside.section.other-features { background: #fff; } .demo-bar #content .section-subtitle { font-size: 18px; margin: 0 auto 50px; } .demo-bar .main-feature img { width: 90px; margin-bottom: 15px; } .demo-bar .main-feature { text-align: center; background: #fff; padding: 30px 20px; } .demo-bar a.custom-button.buy-now-button { float: right; } .demo-bar .main-feature h3 { font-size: 18px; } .demo-bar #content .no-padding { padding: 0; max-height: 470px; overflow: hidden; } .demo-bar .section-featured-banner .featured-banner > a::after { content: ""; display: block; height: 100%; position: absolute; top: 0; width: 100%; z-index: 9; background-color: #ffffff; opacity: 0.8; } .demo-bar .section-featured-banner h3 a { color: #000; } .demo-bar .section-featured-banner h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 54px; } .demo-bar .section-featured-banner p { color: #222; } .demo-bar #masthead { box-shadow: 0 0 3px #ddd; } .demo-bar aside.section.other-features { background: #0b60a90a; background-size: 100%; background-position: center bottom; } .demo-bar aside.section.other-features ul { margin-top: 15px; } .demo-bar div#sidr-quick { display: none; } /*demo media*/ @media only screen and (max-width:1230px){ .demo-bar .section-featured-banner h3 { font-size: 40px; } } @media only screen and (max-width:1023px){ .demo-bar .section-featured-banner .banner-caption { width: 100%; left: 0; } .demo-bar .section-featured-banner h3 { font-size: 32px; } .demo-bar .other-features li { width: 100%; } .demo-bar #mobile-trigger-quick { float: right; display: none; } } @media only screen and (max-width:768px){ .demo-bar .section-featured-banner p { margin-bottom: 20px; } .demo-bar .section-featured-banner .banner-caption { width: 100%; left: 0; bottom: 36px; } } @media only screen and (max-width:768px){ .demo-bar .section-featured-banner p { display: none; } .demo-bar .section-featured-banner h3 { font-size: 19px; } .demo-bar a.custom-button.button-curved { padding: 5px 20px; font-size: 12px; } .demo-bar a.custom-button.buy-now-button { float: right; margin-top: 10px; } .demo-bar #content .section-title { font-size: 20px; } .demo-bar .other-features li { width: 100%; font-size: 14px; padding: 0; } }
0.299515
0.061143
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap'); @import url('https://fonts.googleapis.com/icon?family=Material+Icons'); * { padding: 0; margin: 0; border: 0; } body { background: #5b5656; color: #FFF; font-family: 'Roboto', sans-serif; text-align: center; } .header { background: #4d4646; width: 100%; } nav{ padding: 30px; } nav.links a { font-size: 30px; font-weight: 700; line-height: 30px; color: #FFF; text-decoration: none; margin-right: 30px; } nav.links a:hover { color: #7fcd91; transition: color ease-in-out 300ms; } #wrapper { padding: 32px; } #wrapper img { width: 50%; border-radius: 4px; box-shadow: 0px 0px 10px 15px #4d4646; } #wrapper h1{ margin:20px; font-size: 40px; font-weight: 900; color:#7fcd91; } #wrapper h2{ color:#d3d3d3; margin-bottom: 10px; } #wrapper p{ max-width: 500px; margin: 0 auto; color:#ddd2d2 } #wrapper a svg{ margin: 20px 20px; height: 30px; } svg:hover g{ fill: #7fcd91; transition: fill 400ms ease-in-out; } footer { color: #d3d3d3; background: #4d4646; padding: 30px; } footer a{ text-decoration: none; color: #867d7d; } footer a:hover{ color:#d3d3d3; transition: color 300ms; } .cards{ max-width: 800px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap:20px; justify-content: center; margin: auto; margin-bottom: 20px; } .card{ width: 400px; background-color:#7fcd91; border-radius: 6px; cursor: pointer; } .img-ctn{ max-width: 100%; } .img-ctn img{ width: 100%; border-radius: 6px 6px 0 0 ; } .title{ color: #000; font-size: 20px; font-weight: 700; padding: 5px; } .info{ padding: 5px; margin-bottom: 5px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; } .time, .vocal{ color: #f5eaea; padding: 5px; border-radius: 15px; background-color: #49644f; margin: auto; } .modal-overlay{ background-color: rgba(0, 0, 0, 0.5); width: 100%; height: 100%; position: fixed; top:0; opacity: 0; visibility: hidden; } .modal{ background-color: #fff; width: 90%; height: 90%; margin: 5vh auto; position: relative; } .modal .close-modal { width: 20px; height: 20px; color:#FFF; position: fixed; top:8px; right: 20px; cursor: pointer; } .modal-overlay.active { opacity: 1; visibility: visible; } iframe { left: 0; width: 100%; height: 100%; position: absolute; } .wrapper-not-found{ width: 80%; height: 100%; display: grid; grid-template-columns: 1fr 1fr; margin: 50px; } .wrapper-not-found img{ width: 100%; } .wrapper-not-found .text { margin: 50px auto; } .text a { text-decoration: none; color: #d3d3d3; }
public/style.css
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap'); @import url('https://fonts.googleapis.com/icon?family=Material+Icons'); * { padding: 0; margin: 0; border: 0; } body { background: #5b5656; color: #FFF; font-family: 'Roboto', sans-serif; text-align: center; } .header { background: #4d4646; width: 100%; } nav{ padding: 30px; } nav.links a { font-size: 30px; font-weight: 700; line-height: 30px; color: #FFF; text-decoration: none; margin-right: 30px; } nav.links a:hover { color: #7fcd91; transition: color ease-in-out 300ms; } #wrapper { padding: 32px; } #wrapper img { width: 50%; border-radius: 4px; box-shadow: 0px 0px 10px 15px #4d4646; } #wrapper h1{ margin:20px; font-size: 40px; font-weight: 900; color:#7fcd91; } #wrapper h2{ color:#d3d3d3; margin-bottom: 10px; } #wrapper p{ max-width: 500px; margin: 0 auto; color:#ddd2d2 } #wrapper a svg{ margin: 20px 20px; height: 30px; } svg:hover g{ fill: #7fcd91; transition: fill 400ms ease-in-out; } footer { color: #d3d3d3; background: #4d4646; padding: 30px; } footer a{ text-decoration: none; color: #867d7d; } footer a:hover{ color:#d3d3d3; transition: color 300ms; } .cards{ max-width: 800px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap:20px; justify-content: center; margin: auto; margin-bottom: 20px; } .card{ width: 400px; background-color:#7fcd91; border-radius: 6px; cursor: pointer; } .img-ctn{ max-width: 100%; } .img-ctn img{ width: 100%; border-radius: 6px 6px 0 0 ; } .title{ color: #000; font-size: 20px; font-weight: 700; padding: 5px; } .info{ padding: 5px; margin-bottom: 5px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; } .time, .vocal{ color: #f5eaea; padding: 5px; border-radius: 15px; background-color: #49644f; margin: auto; } .modal-overlay{ background-color: rgba(0, 0, 0, 0.5); width: 100%; height: 100%; position: fixed; top:0; opacity: 0; visibility: hidden; } .modal{ background-color: #fff; width: 90%; height: 90%; margin: 5vh auto; position: relative; } .modal .close-modal { width: 20px; height: 20px; color:#FFF; position: fixed; top:8px; right: 20px; cursor: pointer; } .modal-overlay.active { opacity: 1; visibility: visible; } iframe { left: 0; width: 100%; height: 100%; position: absolute; } .wrapper-not-found{ width: 80%; height: 100%; display: grid; grid-template-columns: 1fr 1fr; margin: 50px; } .wrapper-not-found img{ width: 100%; } .wrapper-not-found .text { margin: 50px auto; } .text a { text-decoration: none; color: #d3d3d3; }
0.408395
0.079531
body { text-align: center; font-family: arial; font-size: 10pt; } #header_extra, #main_container_extra, #main_extra { display: none } #container { text-align: left; } #header_container { margin: 0 auto; width: 750px; height: 100px; background-color: #EEEEEE; margin-bottom: 20px; border-width: 1px; border-color: #666666; border-style: solid; padding: 3px; -moz-border-radius: 10px; -khtml-border-radius: 10px; border-radius: 10px; } #header { width: 100%; height: 100%; border-width: 0px; border-bottom-width: 1px; border-right-width: 1px; border-color: #CCCCCC; border-style: solid; -moz-border-radius: 10px; -khtml-border-radius: 10px; border-radius: 10px; position: relative; background-image: url(/images/grid.png); } #main_container { margin: 0 auto; width: 750px; min-height: 550px; background-color: #EEEEEE; border-width: 1px; border-color: #666666; border-style: solid; padding: 3px; -moz-border-radius: 10px; -khtml-border-radius: 10px; border-radius: 10px; } #main { border-width: 0px; min-height: 550px; border-bottom-width: 1px; border-right-width: 1px; border-color: #CCCCCC; border-style: solid; -moz-border-radius: 10px; -khtml-border-radius: 10px; border-radius: 10px; background-image: url(/images/smolder_large_bg.png); background-repeat: no-repeat; background-position: top right; margin: 0px; padding: 0px; } #top_nav { margin: 0 auto; width: 750px; height: 15px; position: relative; top: -5px; font-weight: bold; font-size: 10pt; } #message_container { width: 350px; position: fixed; right: 180px; top: 60px; z-index: 1000; } #message_container div.info, #message_container div.warning { border: 1px dotted #E1B856; border-bottom: 1px dotted #555; border-right: 1px dotted #555; padding: 10px; padding-left: 30px; margin-bottom: 10px; font-size: 11pt; } #message_container div.info { background: #ffffff url('/images/info.png') no-repeat left; } #message_container div.warning { background: #ffffff url('/images/warning.png') no-repeat left; } #content { padding: 3px; } #logo { background-image: url(/images/smolder_small_no_text.png); background-repeat: no-repeat; width: 100px; height: 100px; } #version { font-weight: bold; position: absolute; right: 20px; top: 140px; color: #555555; } #title { background-image: url(/images/smolder_text.png); background-repeat: no-repeat; width: 298px; height: 86px; position: absolute; right: 0px; top: 84px; } #ajax_error_container { display:none; } html { font: 11pt helvetica,arial,sans-serif; } p, ol, ul { margin-top: 0px; } ol, ul { margin-bottom: 0px; padding-top: 5px; padding-bottom: 5px; } .small { font-size: 10pt; } .very_small { font-size: 10px; } h1 { color: #555555; padding: 0px; margin: 0px; font-size: 18pt; } h2 { color: #FFFFFF; background-image: url('/images/h2_bg.gif'); background-repeat: repeat-x; background-color: #555555; padding: 0px; margin: 0px; margin-bottom: 6px; padding-left: 5px; border: 1px solid #333333; font-size: 15pt; width: 735px; } h3 { color: #FFFFFF; background-color: #C47147; background-image: url('/images/h3_bg.gif'); background-repeat: repeat-x; padding-left: 5px; margin-top: 0px; margin-bottom: 5px; border-bottom: 1px solid #777777; border-right: 1px solid #777777; } a { color: #C47147; } .tag_cloud a { border: 1px solid transparent; padding: 2px; } .tag_cloud a:hover { background-color: #C47147; border: 1px solid #555; color: #FFF; } a:visited { color: #C47147; } /* Top Navigation */ #top_nav .menu { background: url('/images/arrow-desc.gif') bottom right no-repeat; padding-right: 6px; } #top_nav ul { list-style: none; padding: 0; } #top_nav > ul { display: inline; } #top_nav > ul > li { position: relative; display: inline; border: 0; padding-left: 5px; background: url('/images/nav-left-bg.gif') center left no-repeat; } #top_nav > ul > li.first { background-image: none; padding-left: 0; } #top_nav ul ul { height: auto; width: auto; min-width: 120px; max-width: none; border: 1px solid #BBBBBB; border-right-color: #555555; border-bottom-color: #555555; line-height: 18px; background-color: #DDDDDD; position: absolute; top: 16px; left: 0; z-index: 200; display:none; } #top_nav ul a { text-decoration: none; font-weight: bold; padding: 0; } #top_nav ul a:hover { color: #555555; } #top_nav ul ul a { border-bottom: 1px solid #555555; padding: 1px 5px; display: block; height: 1.3em; } #top_nav ul ul a:hover { background-color: #FFFFFF; color: #333333; } #top_nav ul li:hover ul { display: block; } /* Buttons */ button, input[type="submit"], input[type="button"], input.button.disabled:hover { color: #C47147; background-color: #ffffff; border: 1px solid #555555; } input:hover[type="submit"], input:hover[type="button"] { color: #ffffff; background-color: #C47147; } input.button.disabled { opacity: 0.6; } input.button.disabled:hover { color: #C47147; background-color: #ffffff; } /* "Popup" menu buttons */ .button_menu { position: relative; } .button_menu > ul { position: absolute; width: auto; height: auto; display: none; padding: 0; } .button_menu:hover > ul { display: block; } .button_menu > input.disabled:hover + ul { display: none; } .button_menu > ul > li { list-style: none; } .button_menu li > a { text-decoration: none; display: block; color: #C47147; background-color: #ffffff; border: 1px solid #555555; white-space: nowrap; padding: 2px; } .button_menu li > a:hover { color: #ffffff; background-color: #C47147; } /* Forms */ form { margin: 0px; padding: 0px; } a.sub_menu { color: #C47147; background: #ffffff url('/images/sub_menu_bg.gif') no-repeat bottom right; border-top: 1px solid #555555; border-left: 1px solid #555555; padding: 2px; padding-left: 3px; padding-right: 8px; text-decoration: none; font-size: 9.5pt; } a.sub_menu:hover { color: #ffffff; background: #C47147 url('/images/sub_menu_bg-over.gif') no-repeat bottom right; } div.sub_menu { padding-bottom: 12px; } label { color: #333333; font-weight: bold; padding: 0 12px; } span.required, label.required { background: url('/images/required.png') no-repeat top left; } p.pushdown { clear: both; } .popup_form label { color: #555555; } .boxed { border-left: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; border-right: 1px solid #555555; border-bottom: 1px solid #555555; background: #FFFFFF; padding: 3px; width: 733px; margin-bottom: 0px; } table.boxed { width: 727px; } table.short, div.short { width: 400px; } th, td { vertical-align: top; } th { padding: 0 5px 0 5px; margin: 0; } th.small { text-align: center !important; } thead th { background-color: #c47147; background-image: url(/images/h3_bg.gif); background-repeat: repeat-x; color: #ffffff; font-weight: bold; text-align: center; } tr.header2, td.header2 { background-image: url('/images/header2_bg.gif'); background-repeat: repeat-x; background-color: #C3C3C3; color: #000000; font-weight: bold; } .even { background-color: #E0E0E0; } .warn { color: #C47147; } .pass { color: green; } .todo { color: #9ab00b; } .skip { color: #9ab00b; } .pass_fail_ratio, .pass_fail_ratio:visited { width: 65px; border: 1px solid #555555; vertical-align: middle; text-align: center; vertical-align: center; -moz-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px; font-weight: bold; text-decoration: none; margin: 2px 2px 4px 2px; padding: 13px 2px 13px 2px; color: #222; display: block; } .pass_fail_ratio:hover { color: #ffffff; background-color: #c47147 !important; } div.popup_form { padding-left: 5px; padding-right: 5px; background-color: #EEEEEE; border: 1px solid #555555; border-top: 1px solid #999999; z-index: 100; max-width: 300px; } div.popup_form input[type="submit"], div.popup_form a.button, div.popup_form input[type="button"] { margin-bottom: 5px; } a.button { color: #ffffff; background-color: #C47147; border: 1px solid #555555; padding: 2px; margin-left: 2px; text-decoration: none; font-size: 8pt; font-weight: bold; } a.button:hover, a.button.invert, a.button.dead { color: #C47147; background-color: #ffffff; } a.button.invert:hover { color: #ffffff; background-color: #C47147; } /* Calendar styles */ a.calendar_trigger { text-decoration: none; background: url('/images/calendar.gif'); padding-right: 20px; background-repeat: no-repeat; } a.calendar_trigger:hover { cursor: pointer; } div.calendar_container { position: absolute } div.calendar { position: relative; } .calendar, .calendar table { background: #666; color: #FFF; cursor: default; } /* navigation buttons */ .calendar .button { height: 15px; font-weight: bold; text-align: center; } /* 'Month Year' labeling */ .calendar thead .title { background: #555; color: #FFF; font-size: 11px; font-weight: bold; text-align: center; }/*:FIX(db2)*/ /* TR containing navigation buttons */ .calendar thead .headrow { background: #778; color: #FFF; } /* TR containing day names */ .calendar thead .daynames { background: #FF8080; } /* TDs containing the day names */ .calendar thead .name { background-color: #C47147; color: #FFF; font-size: 12px; font-weight: bold; text-align: center; } /* button :hover state */ .calendar thead .hilite { color: #000; } /* button :active state */ .calendar thead .active { color: #666; } /* TDs containing particular days */ .calendar tbody .day { color: #666; width: 1.5em; padding: 2px 4px 2px 2px; text-align: center; font-size: .8em; } .calendar tbody .day.othermonth { font-weight: normal; } .calendar tbody td { background-color: #FFF; font-weight: bold; } /* TD :hover state */ .calendar tbody td.hilite { background-color: #C47147; color: #EEEEEE; } /* TD :active state */ .calendar tbody td.active { background: #666; } /* selected day */ .calendar tbody td.selected { background-color: #C47147;; color: #EEEEEE; } /* weekends */ .calendar tbody td.weekend, .calendar tbody td.oweekend { background-color: #E1B856; } .calendar tbody td.weekend.hilite, .calendar tbody td.oweekend.hilite { background-color: #C47147; color: #EEEEEE; } .calendar tbody td.weekend.selected, .calendar tbody td.oweekend.selected { background-color: #C47147;; color: #EEEEEE; } /* today, etc. */ .calendar tbody td.today { color: #000; } .calendar tbody .disabled { color: #666; } .calendar tbody .emptycell { visibility: hidden; } /* some months need fewer than six rows */ .calendar tbody .emptyrow { display: none; } .calendar tfoot { display: none; } /* accordion styles */ div.accordion, div.fake_accordion { width: 700px; margin-left: 10px; border: solid 1px #555555; } div.accordion > div.panel, div.fake_accordion > div.panel { border-bottom: 1px solid #000000; background-color: blue; } div.accordion > div.panel > div.header, div.fake_accordion > div.panel > div.header { font-size: 11pt; padding: 2px 6px; border-style: solid none solid none; border-top-color: #CCCCCC; border-bottom-color: #333333; border-width: 1px 0px; background-color: #555555; color: #FFFFFF; } div.accordion form a, div.fake_accordion form a { font-weight: bold; color: #FFFFFF; } div.accordion form a:hover, div.fake_accordion form a:hover { color: #000000; } div.accordion div.panel div.attention, div.fake_accordion div.panel div.attention { background-color: #C47147; } div.accordion div.panel div.content, div.fake_accordion div.panel div.content { background-color: #FFFFFF; } div.fake_accordion div.panel div.invalid.content { background-color: #CCCCCC; } .accordion .header label, .fake_accordion .header label { color: #FFFFFF; } /* Auto-Complete styles */ div.auto_complete { width: 350px; background: #fff; } div.auto_complete ul { border:1px solid #888; margin:0; padding:0; width:100%; list-style-type:none; } div.auto_complete ul li { margin:0; padding:3px; } div.auto_complete ul li.selected { background-color: #C47147; color: #ffffff; } div.auto_complete ul strong.highlight { color: #800; margin:0; padding:0; } /* Indicator styles */ img.indicator { width: 16px; height: 16px; } /* CRUD styles */ table.crud { width: 720px; } div.crud .header { width: 710px; padding-bottom: 3px; text-align: right; vertical-align: middle; } div.crud .header a { background-image: url('/images/new.png'); background-position: right; background-repeat: no-repeat; padding-right: 25px; text-decoration: none; font-weight: bold; } div.crud .list_container { margin-top: 10px; } /* Notify styles */ #NotifyAlertWrap{ margin: 10%; background-color:#eee; padding: 10px; border-bottom: 2px solid #666; border-right: 2px solid #666; width: 70%; height: 165px; margin-top: -4000px; } #NotifyAlertOverlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('/images/error_overlay.png'); z-index:1000; } * html #NotifyAlertOverlay{ background-color: #333; back\ground-color: transparent; background-image: url('/images/blank.gif'); /* filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/images/error_overlay.png", sizingMethod="scale"); */ } /* Graphs */ img.graph { border: 1px solid #BBBBBB; border-right-color: #555555; border-bottom-color: #555555; } /* TAP Matrix formatting */ .tap pre { font-size: 10pt; } .tap table { background-color: #fff; } .tap .properties a:hover, .tap .controls a:hover { text-decoration: underline; } .tap .properties a, .tap .controls a { text-decoration: none; } .tap .properties, .tap .controls, .tap .bulk_actions { margin-bottom: 10px; } .tap .bulk_actions { line-height: 22px; } .tap .matrix th { text-align: left; } .tap .matrix tr.checked { background-color: #e2dd92; } .tap .matrix tfoot { font-weight: bold; } .tap td { padding: 0px; margin: 0px; } .tap .sum { width: 1em; border: 1px solid #505050; text-align: center; font-weight: bold; font-size: 0.85em; } .tap .pass_fail_result { margin: 0px; padding: 0px; } .tap .pass_fail_result.fail { color: #fff; } .tap table.subtests td { vertical-align: middle; text-align: center; } .tap a.details_trigger { text-decoration: none; font-weight: bold; color: #222; } .tap td.fail a.details_trigger { color: #fff; } .tap a.details_trigger:hover { text-decoration: underline; } .tap a.testfile_label { font-size: 0.85em; font-weight: bold; text-decoration: none; color: #000; } .tap a.testfile_label:hover { text-decoration: underline; } .tap .exp { display: block; } .tap .x { color: black; border: 1px solid #505050; text-align: center; } .tap .fail { background-color: #C47147; color: #fff !important; } .tap .ok { background-color: #00ff00; color: #222 !important; } .tap .skip { background-color: #ddffdd; color: #222 !important; } .tap .todo_ok { background-color: #ffdd20; color: #222 !important; } .tap .todo { background-color: #007f00; color: #222 !important; } .tap .nottest { background-color: #7f7f7f; color: #222 !important; } .tap span.fail { background-color: transparent; color: #c47147 !important;} .tap .filename { color: #000; } .tap table.matrix { margin: 0; padding: 0} ul.subtests { margin: 0px 0px 20px 35px; padding: 0px; list-style-type: none; } ul.subtests li { margin: 3px; } ul.subtests li pre { margin: 0px; } .subtests li.fail { background-color: white; color: #cc0033; } .subtests li.ok { background-color: white; color: black; opacity: 0.6; } .subtests li.skip { background-color: white; color: black; opacity: 0.6; font-style: italic; } .subtests li.todo_ok { background-color: white; color: #ffdd20; } .subtests li.todo { background-color: white; color: #007f00; } .subtests li.nottest { background-color: white; color: #7f7f7f; } table.subtests td { vertical-align: middle; text-align: center; } /* TAP Matrix tooltip styling */ .tap .tooltip { min-width: 200px; padding: 5px; background: #ffffff; text-align: left; border: 1px solid #CCCCCC; border-right: 1px solid #555555; border-bottom: 1px solid #555555; font-weight: bold; z-index: 100; color: #000000; } .tap .tooltip > .header { background-color: #C47147; font-weight: bold; font-size: 11pt; color: #FFFFFF; padding-left: 3px; padding-right: 3px; border-bottom: 1px solid #555555; border-right: 1px solid #555555; } .tap .tooltip:hover, .tooltip_trigger:hover { cursor: pointer; } .tap div.tooltip { background-color: #ffffff; border: 1px solid #999999; border-bottom: 1px solid #333333; border-right: 1px solid #333333; padding: 5px; text-align: left; } .tap div.tooltip > pre { margin-top: 0px; margin-bottom: 0px; } .tap div.tooltip > pre.unknown { margin-top: 0px; margin-bottom: 0px; border: 1px solid #cccccc; background: #dddddd; }
htdocs/style/style.css
body { text-align: center; font-family: arial; font-size: 10pt; } #header_extra, #main_container_extra, #main_extra { display: none } #container { text-align: left; } #header_container { margin: 0 auto; width: 750px; height: 100px; background-color: #EEEEEE; margin-bottom: 20px; border-width: 1px; border-color: #666666; border-style: solid; padding: 3px; -moz-border-radius: 10px; -khtml-border-radius: 10px; border-radius: 10px; } #header { width: 100%; height: 100%; border-width: 0px; border-bottom-width: 1px; border-right-width: 1px; border-color: #CCCCCC; border-style: solid; -moz-border-radius: 10px; -khtml-border-radius: 10px; border-radius: 10px; position: relative; background-image: url(/images/grid.png); } #main_container { margin: 0 auto; width: 750px; min-height: 550px; background-color: #EEEEEE; border-width: 1px; border-color: #666666; border-style: solid; padding: 3px; -moz-border-radius: 10px; -khtml-border-radius: 10px; border-radius: 10px; } #main { border-width: 0px; min-height: 550px; border-bottom-width: 1px; border-right-width: 1px; border-color: #CCCCCC; border-style: solid; -moz-border-radius: 10px; -khtml-border-radius: 10px; border-radius: 10px; background-image: url(/images/smolder_large_bg.png); background-repeat: no-repeat; background-position: top right; margin: 0px; padding: 0px; } #top_nav { margin: 0 auto; width: 750px; height: 15px; position: relative; top: -5px; font-weight: bold; font-size: 10pt; } #message_container { width: 350px; position: fixed; right: 180px; top: 60px; z-index: 1000; } #message_container div.info, #message_container div.warning { border: 1px dotted #E1B856; border-bottom: 1px dotted #555; border-right: 1px dotted #555; padding: 10px; padding-left: 30px; margin-bottom: 10px; font-size: 11pt; } #message_container div.info { background: #ffffff url('/images/info.png') no-repeat left; } #message_container div.warning { background: #ffffff url('/images/warning.png') no-repeat left; } #content { padding: 3px; } #logo { background-image: url(/images/smolder_small_no_text.png); background-repeat: no-repeat; width: 100px; height: 100px; } #version { font-weight: bold; position: absolute; right: 20px; top: 140px; color: #555555; } #title { background-image: url(/images/smolder_text.png); background-repeat: no-repeat; width: 298px; height: 86px; position: absolute; right: 0px; top: 84px; } #ajax_error_container { display:none; } html { font: 11pt helvetica,arial,sans-serif; } p, ol, ul { margin-top: 0px; } ol, ul { margin-bottom: 0px; padding-top: 5px; padding-bottom: 5px; } .small { font-size: 10pt; } .very_small { font-size: 10px; } h1 { color: #555555; padding: 0px; margin: 0px; font-size: 18pt; } h2 { color: #FFFFFF; background-image: url('/images/h2_bg.gif'); background-repeat: repeat-x; background-color: #555555; padding: 0px; margin: 0px; margin-bottom: 6px; padding-left: 5px; border: 1px solid #333333; font-size: 15pt; width: 735px; } h3 { color: #FFFFFF; background-color: #C47147; background-image: url('/images/h3_bg.gif'); background-repeat: repeat-x; padding-left: 5px; margin-top: 0px; margin-bottom: 5px; border-bottom: 1px solid #777777; border-right: 1px solid #777777; } a { color: #C47147; } .tag_cloud a { border: 1px solid transparent; padding: 2px; } .tag_cloud a:hover { background-color: #C47147; border: 1px solid #555; color: #FFF; } a:visited { color: #C47147; } /* Top Navigation */ #top_nav .menu { background: url('/images/arrow-desc.gif') bottom right no-repeat; padding-right: 6px; } #top_nav ul { list-style: none; padding: 0; } #top_nav > ul { display: inline; } #top_nav > ul > li { position: relative; display: inline; border: 0; padding-left: 5px; background: url('/images/nav-left-bg.gif') center left no-repeat; } #top_nav > ul > li.first { background-image: none; padding-left: 0; } #top_nav ul ul { height: auto; width: auto; min-width: 120px; max-width: none; border: 1px solid #BBBBBB; border-right-color: #555555; border-bottom-color: #555555; line-height: 18px; background-color: #DDDDDD; position: absolute; top: 16px; left: 0; z-index: 200; display:none; } #top_nav ul a { text-decoration: none; font-weight: bold; padding: 0; } #top_nav ul a:hover { color: #555555; } #top_nav ul ul a { border-bottom: 1px solid #555555; padding: 1px 5px; display: block; height: 1.3em; } #top_nav ul ul a:hover { background-color: #FFFFFF; color: #333333; } #top_nav ul li:hover ul { display: block; } /* Buttons */ button, input[type="submit"], input[type="button"], input.button.disabled:hover { color: #C47147; background-color: #ffffff; border: 1px solid #555555; } input:hover[type="submit"], input:hover[type="button"] { color: #ffffff; background-color: #C47147; } input.button.disabled { opacity: 0.6; } input.button.disabled:hover { color: #C47147; background-color: #ffffff; } /* "Popup" menu buttons */ .button_menu { position: relative; } .button_menu > ul { position: absolute; width: auto; height: auto; display: none; padding: 0; } .button_menu:hover > ul { display: block; } .button_menu > input.disabled:hover + ul { display: none; } .button_menu > ul > li { list-style: none; } .button_menu li > a { text-decoration: none; display: block; color: #C47147; background-color: #ffffff; border: 1px solid #555555; white-space: nowrap; padding: 2px; } .button_menu li > a:hover { color: #ffffff; background-color: #C47147; } /* Forms */ form { margin: 0px; padding: 0px; } a.sub_menu { color: #C47147; background: #ffffff url('/images/sub_menu_bg.gif') no-repeat bottom right; border-top: 1px solid #555555; border-left: 1px solid #555555; padding: 2px; padding-left: 3px; padding-right: 8px; text-decoration: none; font-size: 9.5pt; } a.sub_menu:hover { color: #ffffff; background: #C47147 url('/images/sub_menu_bg-over.gif') no-repeat bottom right; } div.sub_menu { padding-bottom: 12px; } label { color: #333333; font-weight: bold; padding: 0 12px; } span.required, label.required { background: url('/images/required.png') no-repeat top left; } p.pushdown { clear: both; } .popup_form label { color: #555555; } .boxed { border-left: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; border-right: 1px solid #555555; border-bottom: 1px solid #555555; background: #FFFFFF; padding: 3px; width: 733px; margin-bottom: 0px; } table.boxed { width: 727px; } table.short, div.short { width: 400px; } th, td { vertical-align: top; } th { padding: 0 5px 0 5px; margin: 0; } th.small { text-align: center !important; } thead th { background-color: #c47147; background-image: url(/images/h3_bg.gif); background-repeat: repeat-x; color: #ffffff; font-weight: bold; text-align: center; } tr.header2, td.header2 { background-image: url('/images/header2_bg.gif'); background-repeat: repeat-x; background-color: #C3C3C3; color: #000000; font-weight: bold; } .even { background-color: #E0E0E0; } .warn { color: #C47147; } .pass { color: green; } .todo { color: #9ab00b; } .skip { color: #9ab00b; } .pass_fail_ratio, .pass_fail_ratio:visited { width: 65px; border: 1px solid #555555; vertical-align: middle; text-align: center; vertical-align: center; -moz-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px; font-weight: bold; text-decoration: none; margin: 2px 2px 4px 2px; padding: 13px 2px 13px 2px; color: #222; display: block; } .pass_fail_ratio:hover { color: #ffffff; background-color: #c47147 !important; } div.popup_form { padding-left: 5px; padding-right: 5px; background-color: #EEEEEE; border: 1px solid #555555; border-top: 1px solid #999999; z-index: 100; max-width: 300px; } div.popup_form input[type="submit"], div.popup_form a.button, div.popup_form input[type="button"] { margin-bottom: 5px; } a.button { color: #ffffff; background-color: #C47147; border: 1px solid #555555; padding: 2px; margin-left: 2px; text-decoration: none; font-size: 8pt; font-weight: bold; } a.button:hover, a.button.invert, a.button.dead { color: #C47147; background-color: #ffffff; } a.button.invert:hover { color: #ffffff; background-color: #C47147; } /* Calendar styles */ a.calendar_trigger { text-decoration: none; background: url('/images/calendar.gif'); padding-right: 20px; background-repeat: no-repeat; } a.calendar_trigger:hover { cursor: pointer; } div.calendar_container { position: absolute } div.calendar { position: relative; } .calendar, .calendar table { background: #666; color: #FFF; cursor: default; } /* navigation buttons */ .calendar .button { height: 15px; font-weight: bold; text-align: center; } /* 'Month Year' labeling */ .calendar thead .title { background: #555; color: #FFF; font-size: 11px; font-weight: bold; text-align: center; }/*:FIX(db2)*/ /* TR containing navigation buttons */ .calendar thead .headrow { background: #778; color: #FFF; } /* TR containing day names */ .calendar thead .daynames { background: #FF8080; } /* TDs containing the day names */ .calendar thead .name { background-color: #C47147; color: #FFF; font-size: 12px; font-weight: bold; text-align: center; } /* button :hover state */ .calendar thead .hilite { color: #000; } /* button :active state */ .calendar thead .active { color: #666; } /* TDs containing particular days */ .calendar tbody .day { color: #666; width: 1.5em; padding: 2px 4px 2px 2px; text-align: center; font-size: .8em; } .calendar tbody .day.othermonth { font-weight: normal; } .calendar tbody td { background-color: #FFF; font-weight: bold; } /* TD :hover state */ .calendar tbody td.hilite { background-color: #C47147; color: #EEEEEE; } /* TD :active state */ .calendar tbody td.active { background: #666; } /* selected day */ .calendar tbody td.selected { background-color: #C47147;; color: #EEEEEE; } /* weekends */ .calendar tbody td.weekend, .calendar tbody td.oweekend { background-color: #E1B856; } .calendar tbody td.weekend.hilite, .calendar tbody td.oweekend.hilite { background-color: #C47147; color: #EEEEEE; } .calendar tbody td.weekend.selected, .calendar tbody td.oweekend.selected { background-color: #C47147;; color: #EEEEEE; } /* today, etc. */ .calendar tbody td.today { color: #000; } .calendar tbody .disabled { color: #666; } .calendar tbody .emptycell { visibility: hidden; } /* some months need fewer than six rows */ .calendar tbody .emptyrow { display: none; } .calendar tfoot { display: none; } /* accordion styles */ div.accordion, div.fake_accordion { width: 700px; margin-left: 10px; border: solid 1px #555555; } div.accordion > div.panel, div.fake_accordion > div.panel { border-bottom: 1px solid #000000; background-color: blue; } div.accordion > div.panel > div.header, div.fake_accordion > div.panel > div.header { font-size: 11pt; padding: 2px 6px; border-style: solid none solid none; border-top-color: #CCCCCC; border-bottom-color: #333333; border-width: 1px 0px; background-color: #555555; color: #FFFFFF; } div.accordion form a, div.fake_accordion form a { font-weight: bold; color: #FFFFFF; } div.accordion form a:hover, div.fake_accordion form a:hover { color: #000000; } div.accordion div.panel div.attention, div.fake_accordion div.panel div.attention { background-color: #C47147; } div.accordion div.panel div.content, div.fake_accordion div.panel div.content { background-color: #FFFFFF; } div.fake_accordion div.panel div.invalid.content { background-color: #CCCCCC; } .accordion .header label, .fake_accordion .header label { color: #FFFFFF; } /* Auto-Complete styles */ div.auto_complete { width: 350px; background: #fff; } div.auto_complete ul { border:1px solid #888; margin:0; padding:0; width:100%; list-style-type:none; } div.auto_complete ul li { margin:0; padding:3px; } div.auto_complete ul li.selected { background-color: #C47147; color: #ffffff; } div.auto_complete ul strong.highlight { color: #800; margin:0; padding:0; } /* Indicator styles */ img.indicator { width: 16px; height: 16px; } /* CRUD styles */ table.crud { width: 720px; } div.crud .header { width: 710px; padding-bottom: 3px; text-align: right; vertical-align: middle; } div.crud .header a { background-image: url('/images/new.png'); background-position: right; background-repeat: no-repeat; padding-right: 25px; text-decoration: none; font-weight: bold; } div.crud .list_container { margin-top: 10px; } /* Notify styles */ #NotifyAlertWrap{ margin: 10%; background-color:#eee; padding: 10px; border-bottom: 2px solid #666; border-right: 2px solid #666; width: 70%; height: 165px; margin-top: -4000px; } #NotifyAlertOverlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('/images/error_overlay.png'); z-index:1000; } * html #NotifyAlertOverlay{ background-color: #333; back\ground-color: transparent; background-image: url('/images/blank.gif'); /* filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/images/error_overlay.png", sizingMethod="scale"); */ } /* Graphs */ img.graph { border: 1px solid #BBBBBB; border-right-color: #555555; border-bottom-color: #555555; } /* TAP Matrix formatting */ .tap pre { font-size: 10pt; } .tap table { background-color: #fff; } .tap .properties a:hover, .tap .controls a:hover { text-decoration: underline; } .tap .properties a, .tap .controls a { text-decoration: none; } .tap .properties, .tap .controls, .tap .bulk_actions { margin-bottom: 10px; } .tap .bulk_actions { line-height: 22px; } .tap .matrix th { text-align: left; } .tap .matrix tr.checked { background-color: #e2dd92; } .tap .matrix tfoot { font-weight: bold; } .tap td { padding: 0px; margin: 0px; } .tap .sum { width: 1em; border: 1px solid #505050; text-align: center; font-weight: bold; font-size: 0.85em; } .tap .pass_fail_result { margin: 0px; padding: 0px; } .tap .pass_fail_result.fail { color: #fff; } .tap table.subtests td { vertical-align: middle; text-align: center; } .tap a.details_trigger { text-decoration: none; font-weight: bold; color: #222; } .tap td.fail a.details_trigger { color: #fff; } .tap a.details_trigger:hover { text-decoration: underline; } .tap a.testfile_label { font-size: 0.85em; font-weight: bold; text-decoration: none; color: #000; } .tap a.testfile_label:hover { text-decoration: underline; } .tap .exp { display: block; } .tap .x { color: black; border: 1px solid #505050; text-align: center; } .tap .fail { background-color: #C47147; color: #fff !important; } .tap .ok { background-color: #00ff00; color: #222 !important; } .tap .skip { background-color: #ddffdd; color: #222 !important; } .tap .todo_ok { background-color: #ffdd20; color: #222 !important; } .tap .todo { background-color: #007f00; color: #222 !important; } .tap .nottest { background-color: #7f7f7f; color: #222 !important; } .tap span.fail { background-color: transparent; color: #c47147 !important;} .tap .filename { color: #000; } .tap table.matrix { margin: 0; padding: 0} ul.subtests { margin: 0px 0px 20px 35px; padding: 0px; list-style-type: none; } ul.subtests li { margin: 3px; } ul.subtests li pre { margin: 0px; } .subtests li.fail { background-color: white; color: #cc0033; } .subtests li.ok { background-color: white; color: black; opacity: 0.6; } .subtests li.skip { background-color: white; color: black; opacity: 0.6; font-style: italic; } .subtests li.todo_ok { background-color: white; color: #ffdd20; } .subtests li.todo { background-color: white; color: #007f00; } .subtests li.nottest { background-color: white; color: #7f7f7f; } table.subtests td { vertical-align: middle; text-align: center; } /* TAP Matrix tooltip styling */ .tap .tooltip { min-width: 200px; padding: 5px; background: #ffffff; text-align: left; border: 1px solid #CCCCCC; border-right: 1px solid #555555; border-bottom: 1px solid #555555; font-weight: bold; z-index: 100; color: #000000; } .tap .tooltip > .header { background-color: #C47147; font-weight: bold; font-size: 11pt; color: #FFFFFF; padding-left: 3px; padding-right: 3px; border-bottom: 1px solid #555555; border-right: 1px solid #555555; } .tap .tooltip:hover, .tooltip_trigger:hover { cursor: pointer; } .tap div.tooltip { background-color: #ffffff; border: 1px solid #999999; border-bottom: 1px solid #333333; border-right: 1px solid #333333; padding: 5px; text-align: left; } .tap div.tooltip > pre { margin-top: 0px; margin-bottom: 0px; } .tap div.tooltip > pre.unknown { margin-top: 0px; margin-bottom: 0px; border: 1px solid #cccccc; background: #dddddd; }
0.364325
0.097907
textarea{resize: none; height: 100px;} .negro{ background-color: #D2D2D2; color: white; } .verde{ background-color: #404E67; color: white; } .azul{ background-color: #5C8293; color: white; } .texto_a{ color: #5C8293; } .gris{ background-color: #D2D2D2; color: white; } .gris_tabla{ background-color: #D2D2D2; color: #5C8293; } .padding-table td{ padding: 6px; font-size: 11px; } .color{border: 2px solid white; color: gray; text-align: right;} .gris_barra{ background-color: #D2D2D2; color: #D2D2D2; font-size: 14px; } .textos{ color: #D2D2D2; font-size: 14px; } .rojo{ background-color: #ff0010; color: white; } .texto_rojo{ color: #ff0010; } .texto_azul{ color: #5C8293; } .texto_gris{ color: #D2D2D2; } .texto_verde{ color: #404E67; } .texto_negro{ color: #D2D2D2; } .btn_verde{ background-color: #404E67 !important; color: white; } .btn_azul, .badge-primary{ background-color: #5C8293 !important; color: white; } .btn_rojo{ background-color: #ff0010 ; color: white; } .btn_gris{ background-color: #666666; color: white; } .btn_negro{ background-color: #D2D2D2; color: white; } .btn_azul:active{ color: white; background-color: #5C8293 !important; } .btn_negro:active{ color: white; background-color: #D2D2D2 !important; } .btn_azul:focus{ color: white; background-color: #5C8293 !important; } .btn_azul{ color: white; background-color: #5C8293 !important; } .btn_azul:focus{ color: white; background-color: #5C8293 !important; } .btn_verde:hover { color: white; background-color: #404E67} .btn_rojo:hover { color: white; } .btn_gris:hover { color: white; } .btn_azul:hover { color: white; background-color: #5C8293} .btn_negro:hover { color: white; background-color: #D2D2D2} .gris:hover { color: white; } .azul:hover { color: white; } .rojo:hover { color: white; } .btn_gris:hover { color: white; } .texto_rojo:hover { color: white; } .nav-link active{ color: #852fbe; border-color: #852fbe; } .btn_verde2:hover { color: #67a900;} .main-menu.menu-light .navigation > li ul .active > a { color: #A34B0A; font-weight: 500; } .danger{color: #ff0010;} .error{color: #ff0010;} .main-section{ margin:0 auto; padding: 20px; margin-top: 100px; background-color: #fff; box-shadow: 0px 0px 20px #c1c1c1; } .fileinput-remove, .fileinput-upload{ display: none; } .main-menu.menu-dark .navigation > li.open > a{ color: #5C8293 !important } select2-container--classic .select2-results__options .select2-results__option[aria-selected=true], .select2-container--default .select2-results__options .select2-results__option[aria-selected=true] { background-color: #D2D2D2 !important; color: #FFFFFF !important; } .hover:hover{ background-color: #D2D2D2 !important; color: #FFFFFF !important; font-weight: bold; }
public/assets/css/style.css
textarea{resize: none; height: 100px;} .negro{ background-color: #D2D2D2; color: white; } .verde{ background-color: #404E67; color: white; } .azul{ background-color: #5C8293; color: white; } .texto_a{ color: #5C8293; } .gris{ background-color: #D2D2D2; color: white; } .gris_tabla{ background-color: #D2D2D2; color: #5C8293; } .padding-table td{ padding: 6px; font-size: 11px; } .color{border: 2px solid white; color: gray; text-align: right;} .gris_barra{ background-color: #D2D2D2; color: #D2D2D2; font-size: 14px; } .textos{ color: #D2D2D2; font-size: 14px; } .rojo{ background-color: #ff0010; color: white; } .texto_rojo{ color: #ff0010; } .texto_azul{ color: #5C8293; } .texto_gris{ color: #D2D2D2; } .texto_verde{ color: #404E67; } .texto_negro{ color: #D2D2D2; } .btn_verde{ background-color: #404E67 !important; color: white; } .btn_azul, .badge-primary{ background-color: #5C8293 !important; color: white; } .btn_rojo{ background-color: #ff0010 ; color: white; } .btn_gris{ background-color: #666666; color: white; } .btn_negro{ background-color: #D2D2D2; color: white; } .btn_azul:active{ color: white; background-color: #5C8293 !important; } .btn_negro:active{ color: white; background-color: #D2D2D2 !important; } .btn_azul:focus{ color: white; background-color: #5C8293 !important; } .btn_azul{ color: white; background-color: #5C8293 !important; } .btn_azul:focus{ color: white; background-color: #5C8293 !important; } .btn_verde:hover { color: white; background-color: #404E67} .btn_rojo:hover { color: white; } .btn_gris:hover { color: white; } .btn_azul:hover { color: white; background-color: #5C8293} .btn_negro:hover { color: white; background-color: #D2D2D2} .gris:hover { color: white; } .azul:hover { color: white; } .rojo:hover { color: white; } .btn_gris:hover { color: white; } .texto_rojo:hover { color: white; } .nav-link active{ color: #852fbe; border-color: #852fbe; } .btn_verde2:hover { color: #67a900;} .main-menu.menu-light .navigation > li ul .active > a { color: #A34B0A; font-weight: 500; } .danger{color: #ff0010;} .error{color: #ff0010;} .main-section{ margin:0 auto; padding: 20px; margin-top: 100px; background-color: #fff; box-shadow: 0px 0px 20px #c1c1c1; } .fileinput-remove, .fileinput-upload{ display: none; } .main-menu.menu-dark .navigation > li.open > a{ color: #5C8293 !important } select2-container--classic .select2-results__options .select2-results__option[aria-selected=true], .select2-container--default .select2-results__options .select2-results__option[aria-selected=true] { background-color: #D2D2D2 !important; color: #FFFFFF !important; } .hover:hover{ background-color: #D2D2D2 !important; color: #FFFFFF !important; font-weight: bold; }
0.275422
0.192426
@charset "UTF-8"; @import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono|Raleway|Open+Sans:300,400); /*! Unitex/GramLab Theme by martinec https://github.com/UnitexGramLab/unitexgramlab-org Released under the MIT license Fractal by HTML5 UP http://html5up.net Released under the CCA 3.0 license Skel.scss by n33 http://skel.io Released under the MIT license Bourbon by thoughtbot, inc. http://bourbon.io Released under the MIT license Jeet by MojoTech http://jeet.gs Released under the MIT license Slick by <NAME> https://github.com/kenwheeler/slick Released under the MIT license HTML5 Boilerplate https://html5boilerplate.com Released under the MIT License Primer by GitHub, Inc. https://github.com/primer/primer Released under the MIT license kbdfun by kremalicious http://kremalicious.com/using-kbd-for-fun-and-profit/ Released under the MIT license RRSSB by dbox and joshuatuscan http://www.kurtnoble.com/labs/rrssb Released under the MIT license jQuery Accordion CSS http://vctrfrnndz.com Released under the MIT license fancyBox CSS http://fancyapps.com/fancybox Released under the CC BY-NC 3.0 license */ /* Reset */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } body { -webkit-text-size-adjust: none; } /* Box Model */ *, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } /* Containers */ .container { margin-left: auto; margin-right: auto; } .container.\31 25\25 { width: 100%; max-width: 82.5em; min-width: 66em; } .container.\37 5\25 { width: 49.5em; } .container.\35 0\25 { width: 33em; } .container.\32 5\25 { width: 16.5em; } .container { width: 66em; } @media screen and (max-width: 1680px) { .container.\31 25\25 { width: 100%; max-width: 82.5em; min-width: 66em; } .container.\37 5\25 { width: 49.5em; } .container.\35 0\25 { width: 33em; } .container.\32 5\25 { width: 16.5em; } .container { width: 66em; } } @media screen and (max-width: 1280px) { .container.\31 25\25 { width: 100%; max-width: 112.5%; min-width: 90%; } .container.\37 5\25 { width: 67.5%; } .container.\35 0\25 { width: 45%; } .container.\32 5\25 { width: 22.5%; } .container { width: 90%; } } @media screen and (max-width: 980px) { .container.\31 25\25 { width: 100%; max-width: 112.5%; min-width: 90%; } .container.\37 5\25 { width: 67.5%; } .container.\35 0\25 { width: 45%; } .container.\32 5\25 { width: 22.5%; } .container { width: 90%; } } @media screen and (max-width: 736px) { .container.\31 25\25 { width: 100%; max-width: 112.5%; min-width: 90%; } .container.\37 5\25 { width: 67.5%; } .container.\35 0\25 { width: 45%; } .container.\32 5\25 { width: 22.5%; } .container { width: 90% !important; } } @media screen and (max-width: 480px) { .container.\31 25\25 { width: 100%; max-width: 112.5%; min-width: 90%; } .container.\37 5\25 { width: 67.5%; } .container.\35 0\25 { width: 45%; } .container.\32 5\25 { width: 22.5%; } .container { width: 90% !important; } } @media screen and (max-width: 360px) { .container.\31 25\25 { width: 100%; max-width: 112.5%; min-width: 90%; } .container.\37 5\25 { width: 67.5%; } .container.\35 0\25 { width: 45%; } .container.\32 5\25 { width: 22.5%; } .container { width: 90% !important; } } /* Grid */ .row { border-bottom: solid 1px transparent; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .row > * { float: left; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .row:after, .row:before { content: ''; display: block; clear: both; height: 0; } .row.uniform > * > :first-child { margin-top: 0; } .row.uniform > * > :last-child { margin-bottom: 0; } .row.\30 \25 > * { padding: 0 0 0 0em; } .row.\30 \25 { margin: 0 0 -1px 0em; } .row.uniform.\30 \25 > * { padding: 0em 0 0 0em; } .row.uniform.\30 \25 { margin: 0em 0 -1px 0em; } .row > * { padding: 0 0 0 1.5em; } .row { margin: 0 0 -1px -1.5em; } .row.uniform > * { padding: 1.5em 0 0 1.5em; } .row.uniform { margin: -1.5em 0 -1px -1.5em; } .row.\32 00\25 > * { padding: 0 0 0 3em; } .row.\32 00\25 { margin: 0 0 -1px -3em; } .row.uniform.\32 00\25 > * { padding: 3em 0 0 3em; } .row.uniform.\32 00\25 { margin: -3em 0 -1px -3em; } .row.\31 50\25 > * { padding: 0 0 0 2.25em; } .row.\31 50\25 { margin: 0 0 -1px -2.25em; } .row.uniform.\31 50\25 > * { padding: 2.25em 0 0 2.25em; } .row.uniform.\31 50\25 { margin: -2.25em 0 -1px -2.25em; } .row.\35 0\25 > * { padding: 0 0 0 0.75em; } .row.\35 0\25 { margin: 0 0 -1px -0.75em; } .row.uniform.\35 0\25 > * { padding: 0.75em 0 0 0.75em; } .row.uniform.\35 0\25 { margin: -0.75em 0 -1px -0.75em; } .row.\32 5\25 > * { padding: 0 0 0 0.375em; } .row.\32 5\25 { margin: 0 0 -1px -0.375em; } .row.uniform.\32 5\25 > * { padding: 0.375em 0 0 0.375em; } .row.uniform.\32 5\25 { margin: -0.375em 0 -1px -0.375em; } .\31 2u, .\31 2u\24 { width: 100%; clear: none; margin-left: 0; } .\31 1u, .\31 1u\24 { width: 91.6666666667%; clear: none; margin-left: 0; } .\31 0u, .\31 0u\24 { width: 83.3333333333%; clear: none; margin-left: 0; } .\39 u, .\39 u\24 { width: 75%; clear: none; margin-left: 0; } .\38 u, .\38 u\24 { width: 66.6666666667%; clear: none; margin-left: 0; } .\37 u, .\37 u\24 { width: 58.3333333333%; clear: none; margin-left: 0; } .\36 u, .\36 u\24 { width: 50%; clear: none; margin-left: 0; } .\35 u, .\35 u\24 { width: 41.6666666667%; clear: none; margin-left: 0; } .\34 u, .\34 u\24 { width: 33.3333333333%; clear: none; margin-left: 0; } .\33 u, .\33 u\24 { width: 25%; clear: none; margin-left: 0; } .\32 u, .\32 u\24 { width: 16.6666666667%; clear: none; margin-left: 0; } .\31 u, .\31 u\24 { width: 8.3333333333%; clear: none; margin-left: 0; } .\31 2u\24 + *, .\31 1u\24 + *, .\31 0u\24 + *, .\39 u\24 + *, .\38 u\24 + *, .\37 u\24 + *, .\36 u\24 + *, .\35 u\24 + *, .\34 u\24 + *, .\33 u\24 + *, .\32 u\24 + *, .\31 u\24 + * { clear: left; } .\-11u { margin-left: 91.66667%; } .\-10u { margin-left: 83.33333%; } .\-9u { margin-left: 75%; } .\-8u { margin-left: 66.66667%; } .\-7u { margin-left: 58.33333%; } .\-6u { margin-left: 50%; } .\-5u { margin-left: 41.66667%; } .\-4u { margin-left: 33.33333%; } .\-3u { margin-left: 25%; } .\-2u { margin-left: 16.66667%; } .\-1u { margin-left: 8.33333%; } @media screen and (max-width: 1680px) { .row > * { padding: 0 0 0 1.5em; } .row { margin: 0 0 -1px -1.5em; } .row.uniform > * { padding: 1.5em 0 0 1.5em; } .row.uniform { margin: -1.5em 0 -1px -1.5em; } .row.\32 00\25 > * { padding: 0 0 0 3em; } .row.\32 00\25 { margin: 0 0 -1px -3em; } .row.uniform.\32 00\25 > * { padding: 3em 0 0 3em; } .row.uniform.\32 00\25 { margin: -3em 0 -1px -3em; } .row.\31 50\25 > * { padding: 0 0 0 2.25em; } .row.\31 50\25 { margin: 0 0 -1px -2.25em; } .row.uniform.\31 50\25 > * { padding: 2.25em 0 0 2.25em; } .row.uniform.\31 50\25 { margin: -2.25em 0 -1px -2.25em; } .row.\35 0\25 > * { padding: 0 0 0 0.75em; } .row.\35 0\25 { margin: 0 0 -1px -0.75em; } .row.uniform.\35 0\25 > * { padding: 0.75em 0 0 0.75em; } .row.uniform.\35 0\25 { margin: -0.75em 0 -1px -0.75em; } .row.\32 5\25 > * { padding: 0 0 0 0.375em; } .row.\32 5\25 { margin: 0 0 -1px -0.375em; } .row.uniform.\32 5\25 > * { padding: 0.375em 0 0 0.375em; } .row.uniform.\32 5\25 { margin: -0.375em 0 -1px -0.375em; } .\31 2u\28xlarge\29, .\31 2u\24\28xlarge\29 { width: 100%; clear: none; margin-left: 0; } .\31 1u\28xlarge\29, .\31 1u\24\28xlarge\29 { width: 91.6666666667%; clear: none; margin-left: 0; } .\31 0u\28xlarge\29, .\31 0u\24\28xlarge\29 { width: 83.3333333333%; clear: none; margin-left: 0; } .\39 u\28xlarge\29, .\39 u\24\28xlarge\29 { width: 75%; clear: none; margin-left: 0; } .\38 u\28xlarge\29, .\38 u\24\28xlarge\29 { width: 66.6666666667%; clear: none; margin-left: 0; } .\37 u\28xlarge\29, .\37 u\24\28xlarge\29 { width: 58.3333333333%; clear: none; margin-left: 0; } .\36 u\28xlarge\29, .\36 u\24\28xlarge\29 { width: 50%; clear: none; margin-left: 0; } .\35 u\28xlarge\29, .\35 u\24\28xlarge\29 { width: 41.6666666667%; clear: none; margin-left: 0; } .\34 u\28xlarge\29, .\34 u\24\28xlarge\29 { width: 33.3333333333%; clear: none; margin-left: 0; } .\33 u\28xlarge\29, .\33 u\24\28xlarge\29 { width: 25%; clear: none; margin-left: 0; } .\32 u\28xlarge\29, .\32 u\24\28xlarge\29 { width: 16.6666666667%; clear: none; margin-left: 0; } .\31 u\28xlarge\29, .\31 u\24\28xlarge\29 { width: 8.3333333333%; clear: none; margin-left: 0; } .\31 2u\24\28xlarge\29 + *, .\31 1u\24\28xlarge\29 + *, .\31 0u\24\28xlarge\29 + *, .\39 u\24\28xlarge\29 + *, .\38 u\24\28xlarge\29 + *, .\37 u\24\28xlarge\29 + *, .\36 u\24\28xlarge\29 + *, .\35 u\24\28xlarge\29 + *, .\34 u\24\28xlarge\29 + *, .\33 u\24\28xlarge\29 + *, .\32 u\24\28xlarge\29 + *, .\31 u\24\28xlarge\29 + * { clear: left; } .\-11u\28xlarge\29 { margin-left: 91.66667%; } .\-10u\28xlarge\29 { margin-left: 83.33333%; } .\-9u\28xlarge\29 { margin-left: 75%; } .\-8u\28xlarge\29 { margin-left: 66.66667%; } .\-7u\28xlarge\29 { margin-left: 58.33333%; } .\-6u\28xlarge\29 { margin-left: 50%; } .\-5u\28xlarge\29 { margin-left: 41.66667%; } .\-4u\28xlarge\29 { margin-left: 33.33333%; } .\-3u\28xlarge\29 { margin-left: 25%; } .\-2u\28xlarge\29 { margin-left: 16.66667%; } .\-1u\28xlarge\29 { margin-left: 8.33333%; } } @media screen and (max-width: 1280px) { .row > * { padding: 0 0 0 1.5em; } .row { margin: 0 0 -1px -1.5em; } .row.uniform > * { padding: 1.5em 0 0 1.5em; } .row.uniform { margin: -1.5em 0 -1px -1.5em; } .row.\32 00\25 > * { padding: 0 0 0 3em; } .row.\32 00\25 { margin: 0 0 -1px -3em; } .row.uniform.\32 00\25 > * { padding: 3em 0 0 3em; } .row.uniform.\32 00\25 { margin: -3em 0 -1px -3em; } .row.\31 50\25 > * { padding: 0 0 0 2.25em; } .row.\31 50\25 { margin: 0 0 -1px -2.25em; } .row.uniform.\31 50\25 > * { padding: 2.25em 0 0 2.25em; } .row.uniform.\31 50\25 { margin: -2.25em 0 -1px -2.25em; } .row.\35 0\25 > * { padding: 0 0 0 0.75em; } .row.\35 0\25 { margin: 0 0 -1px -0.75em; } .row.uniform.\35 0\25 > * { padding: 0.75em 0 0 0.75em; } .row.uniform.\35 0\25 { margin: -0.75em 0 -1px -0.75em; } .row.\32 5\25 > * { padding: 0 0 0 0.375em; } .row.\32 5\25 { margin: 0 0 -1px -0.375em; } .row.uniform.\32 5\25 > * { padding: 0.375em 0 0 0.375em; } .row.uniform.\32 5\25 { margin: -0.375em 0 -1px -0.375em; } .\31 2u\28large\29, .\31 2u\24\28large\29 { width: 100%; clear: none; margin-left: 0; } .\31 1u\28large\29, .\31 1u\24\28large\29 { width: 91.6666666667%; clear: none; margin-left: 0; } .\31 0u\28large\29, .\31 0u\24\28large\29 { width: 83.3333333333%; clear: none; margin-left: 0; } .\39 u\28large\29, .\39 u\24\28large\29 { width: 75%; clear: none; margin-left: 0; } .\38 u\28large\29, .\38 u\24\28large\29 { width: 66.6666666667%; clear: none; margin-left: 0; } .\37 u\28large\29, .\37 u\24\28large\29 { width: 58.3333333333%; clear: none; margin-left: 0; } .\36 u\28large\29, .\36 u\24\28large\29 { width: 50%; clear: none; margin-left: 0; } .\35 u\28large\29, .\35 u\24\28large\29 { width: 41.6666666667%; clear: none; margin-left: 0; } .\34 u\28large\29, .\34 u\24\28large\29 { width: 33.3333333333%; clear: none; margin-left: 0; } .\33 u\28large\29, .\33 u\24\28large\29 { width: 25%; clear: none; margin-left: 0; } .\32 u\28large\29, .\32 u\24\28large\29 { width: 16.6666666667%; clear: none; margin-left: 0; } .\31 u\28large\29, .\31 u\24\28large\29 { width: 8.3333333333%; clear: none; margin-left: 0; } .\31 2u\24\28large\29 + *, .\31 1u\24\28large\29 + *, .\31 0u\24\28large\29 + *, .\39 u\24\28large\29 + *, .\38 u\24\28large\29 + *, .\37 u\24\28large\29 + *, .\36 u\24\28large\29 + *, .\35 u\24\28large\29 + *, .\34 u\24\28large\29 + *, .\33 u\24\28large\29 + *, .\32 u\24\28large\29 + *, .\31 u\24\28large\29 + * { clear: left; } .\-11u\28large\29 { margin-left: 91.66667%; } .\-10u\28large\29 { margin-left: 83.33333%; } .\-9u\28large\29 { margin-left: 75%; } .\-8u\28large\29 { margin-left: 66.66667%; } .\-7u\28large\29 { margin-left: 58.33333%; } .\-6u\28large\29 { margin-left: 50%; } .\-5u\28large\29 { margin-left: 41.66667%; } .\-4u\28large\29 { margin-left: 33.33333%; } .\-3u\28large\29 { margin-left: 25%; } .\-2u\28large\29 { margin-left: 16.66667%; } .\-1u\28large\29 { margin-left: 8.33333%; } } @media screen and (max-width: 980px) { .row > * { padding: 0 0 0 1.5em; } .row { margin: 0 0 -1px -1.5em; } .row.uniform > * { padding: 1.5em 0 0 1.5em; } .row.uniform { margin: -1.5em 0 -1px -1.5em; } .row.\32 00\25 > * { padding: 0 0 0 3em; } .row.\32 00\25 { margin: 0 0 -1px -3em; } .row.uniform.\32 00\25 > * { padding: 3em 0 0 3em; } .row.uniform.\32 00\25 { margin: -3em 0 -1px -3em; } .row.\31 50\25 > * { padding: 0 0 0 2.25em; } .row.\31 50\25 { margin: 0 0 -1px -2.25em; } .row.uniform.\31 50\25 > * { padding: 2.25em 0 0 2.25em; } .row.uniform.\31 50\25 { margin: -2.25em 0 -1px -2.25em; } .row.\35 0\25 > * { padding: 0 0 0 0.75em; } .row.\35 0\25 { margin: 0 0 -1px -0.75em; } .row.uniform.\35 0\25 > * { padding: 0.75em 0 0 0.75em; } .row.uniform.\35 0\25 { margin: -0.75em 0 -1px -0.75em; } .row.\32 5\25 > * { padding: 0 0 0 0.375em; } .row.\32 5\25 { margin: 0 0 -1px -0.375em; } .row.uniform.\32 5\25 > * { padding: 0.375em 0 0 0.375em; } .row.uniform.\32 5\25 { margin: -0.375em 0 -1px -0.375em; } .\31 2u\28medium\29, .\31 2u\24\28medium\29 { width: 100%; clear: none; margin-left: 0; } .\31 1u\28medium\29, .\31 1u\24\28medium\29 { width: 91.6666666667%; clear: none; margin-left: 0; } .\31 0u\28medium\29, .\31 0u\24\28medium\29 { width: 83.3333333333%; clear: none; margin-left: 0; } .\39 u\28medium\29, .\39 u\24\28medium\29 { width: 75%; clear: none; margin-left: 0; } .\38 u\28medium\29, .\38 u\24\28medium\29 { width: 66.6666666667%; clear: none; margin-left: 0; } .\37 u\28medium\29, .\37 u\24\28medium\29 { width: 58.3333333333%; clear: none; margin-left: 0; } .\36 u\28medium\29, .\36 u\24\28medium\29 { width: 50%; clear: none; margin-left: 0; } .\35 u\28medium\29, .\35 u\24\28medium\29 { width: 41.6666666667%; clear: none; margin-left: 0; } .\34 u\28medium\29, .\34 u\24\28medium\29 { width: 33.3333333333%; clear: none; margin-left: 0; } .\33 u\28medium\29, .\33 u\24\28medium\29 { width: 25%; clear: none; margin-left: 0; } .\32 u\28medium\29, .\32 u\24\28medium\29 { width: 16.6666666667%; clear: none; margin-left: 0; } .\31 u\28medium\29, .\31 u\24\28medium\29 { width: 8.3333333333%; clear: none; margin-left: 0; } .\31 2u\24\28medium\29 + *, .\31 1u\24\28medium\29 + *, .\31 0u\24\28medium\29 + *, .\39 u\24\28medium\29 + *, .\38 u\24\28medium\29 + *, .\37 u\24\28medium\29 + *, .\36 u\24\28medium\29 + *, .\35 u\24\28medium\29 + *, .\34 u\24\28medium\29 + *, .\33 u\24\28medium\29 + *, .\32 u\24\28medium\29 + *, .\31 u\24\28medium\29 + * { clear: left; } .\-11u\28medium\29 { margin-left: 91.66667%; } .\-10u\28medium\29 { margin-left: 83.33333%; } .\-9u\28medium\29 { margin-left: 75%; } .\-8u\28medium\29 { margin-left: 66.66667%; } .\-7u\28medium\29 { margin-left: 58.33333%; } .\-6u\28medium\29 { margin-left: 50%; } .\-5u\28medium\29 { margin-left: 41.66667%; } .\-4u\28medium\29 { margin-left: 33.33333%; } .\-3u\28medium\29 { margin-left: 25%; } .\-2u\28medium\29 { margin-left: 16.66667%; } .\-1u\28medium\29 { margin-left: 8.33333%; } } @media screen and (max-width: 736px) { .row > * { padding: 0 0 0 1.25em; } .row { margin: 0 0 -1px -1.25em; } .row.uniform > * { padding: 1.25em 0 0 1.25em; } .row.uniform { margin: -1.25em 0 -1px -1.25em; } .row.\32 00\25 > * { padding: 0 0 0 2.5em; } .row.\32 00\25 { margin: 0 0 -1px -2.5em; } .row.uniform.\32 00\25 > * { padding: 2.5em 0 0 2.5em; } .row.uniform.\32 00\25 { margin: -2.5em 0 -1px -2.5em; } .row.\31 50\25 > * { padding: 0 0 0 1.875em; } .row.\31 50\25 { margin: 0 0 -1px -1.875em; } .row.uniform.\31 50\25 > * { padding: 1.875em 0 0 1.875em; } .row.uniform.\31 50\25 { margin: -1.875em 0 -1px -1.875em; } .row.\35 0\25 > * { padding: 0 0 0 0.625em; } .row.\35 0\25 { margin: 0 0 -1px -0.625em; } .row.uniform.\35 0\25 > * { padding: 0.625em 0 0 0.625em; } .row.uniform.\35 0\25 { margin: -0.625em 0 -1px -0.625em; } .row.\32 5\25 > * { padding: 0 0 0 0.3125em; } .row.\32 5\25 { margin: 0 0 -1px -0.3125em; } .row.uniform.\32 5\25 > * { padding: 0.3125em 0 0 0.3125em; } .row.uniform.\32 5\25 { margin: -0.3125em 0 -1px -0.3125em; } .\31 2u\28small\29, .\31 2u\24\28small\29 { width: 100%; clear: none; margin-left: 0; } .\31 1u\28small\29, .\31 1u\24\28small\29 { width: 91.6666666667%; clear: none; margin-left: 0; } .\31 0u\28small\29, .\31 0u\24\28small\29 { width: 83.3333333333%; clear: none; margin-left: 0; } .\39 u\28small\29, .\39 u\24\28small\29 { width: 75%; clear: none; margin-left: 0; } .\38 u\28small\29, .\38 u\24\28small\29 { width: 66.6666666667%; clear: none; margin-left: 0; } .\37 u\28small\29, .\37 u\24\28small\29 { width: 58.3333333333%; clear: none; margin-left: 0; } .\36 u\28small\29, .\36 u\24\28small\29 { width: 50%; clear: none; margin-left: 0; } .\35 u\28small\29, .\35 u\24\28small\29 { width: 41.6666666667%; clear: none; margin-left: 0; } .\34 u\28small\29, .\34 u\24\28small\29 { width: 33.3333333333%; clear: none; margin-left: 0; } .\33 u\28small\29, .\33 u\24\28small\29 { width: 25%; clear: none; margin-left: 0; } .\32 u\28small\29, .\32 u\24\28small\29 { width: 16.6666666667%; clear: none; margin-left: 0; } .\31 u\28small\29, .\31 u\24\28small\29 { width: 8.3333333333%; clear: none; margin-left: 0; } .\31 2u\24\28small\29 + *, .\31 1u\24\28small\29 + *, .\31 0u\24\28small\29 + *, .\39 u\24\28small\29 + *, .\38 u\24\28small\29 + *, .\37 u\24\28small\29 + *, .\36 u\24\28small\29 + *, .\35 u\24\28small\29 + *, .\34 u\24\28small\29 + *, .\33 u\24\28small\29 + *, .\32 u\24\28small\29 + *, .\31 u\24\28small\29 + * { clear: left; } .\-11u\28small\29 { margin-left: 91.66667%; } .\-10u\28small\29 { margin-left: 83.33333%; } .\-9u\28small\29 { margin-left: 75%; } .\-8u\28small\29 { margin-left: 66.66667%; } .\-7u\28small\29 { margin-left: 58.33333%; } .\-6u\28small\29 { margin-left: 50%; } .\-5u\28small\29 { margin-left: 41.66667%; } .\-4u\28small\29 { margin-left: 33.33333%; } .\-3u\28small\29 { margin-left: 25%; } .\-2u\28small\29 { margin-left: 16.66667%; } .\-1u\28small\29 { margin-left: 8.33333%; } } @media screen and (max-width: 480px) { .row > * { padding: 0 0 0 1.25em; } .row { margin: 0 0 -1px -1.25em; } .row.uniform > * { padding: 1.25em 0 0 1.25em; } .row.uniform { margin: -1.25em 0 -1px -1.25em; } .row.\32 00\25 > * { padding: 0 0 0 2.5em; } .row.\32 00\25 { margin: 0 0 -1px -2.5em; } .row.uniform.\32 00\25 > * { padding: 2.5em 0 0 2.5em; } .row.uniform.\32 00\25 { margin: -2.5em 0 -1px -2.5em; } .row.\31 50\25 > * { padding: 0 0 0 1.875em; } .row.\31 50\25 { margin: 0 0 -1px -1.875em; } .row.uniform.\31 50\25 > * { padding: 1.875em 0 0 1.875em; } .row.uniform.\31 50\25 { margin: -1.875em 0 -1px -1.875em; } .row.\35 0\25 > * { padding: 0 0 0 0.625em; } .row.\35 0\25 { margin: 0 0 -1px -0.625em; } .row.uniform.\35 0\25 > * { padding: 0.625em 0 0 0.625em; } .row.uniform.\35 0\25 { margin: -0.625em 0 -1px -0.625em; } .row.\32 5\25 > * { padding: 0 0 0 0.3125em; } .row.\32 5\25 { margin: 0 0 -1px -0.3125em; } .row.uniform.\32 5\25 > * { padding: 0.3125em 0 0 0.3125em; } .row.uniform.\32 5\25 { margin: -0.3125em 0 -1px -0.3125em; } .\31 2u\28xsmall\29, .\31 2u\24\28xsmall\29 { width: 100%; clear: none; margin-left: 0; } .\31 1u\28xsmall\29, .\31 1u\24\28xsmall\29 { width: 91.6666666667%; clear: none; margin-left: 0; } .\31 0u\28xsmall\29, .\31 0u\24\28xsmall\29 { width: 83.3333333333%; clear: none; margin-left: 0; } .\39 u\28xsmall\29, .\39 u\24\28xsmall\29 { width: 75%; clear: none; margin-left: 0; } .\38 u\28xsmall\29, .\38 u\24\28xsmall\29 { width: 66.6666666667%; clear: none; margin-left: 0; } .\37 u\28xsmall\29, .\37 u\24\28xsmall\29 { width: 58.3333333333%; clear: none; margin-left: 0; } .\36 u\28xsmall\29, .\36 u\24\28xsmall\29 { width: 50%; clear: none; margin-left: 0; } .\35 u\28xsmall\29, .\35 u\24\28xsmall\29 { width: 41.6666666667%; clear: none; margin-left: 0; } .\34 u\28xsmall\29, .\34 u\24\28xsmall\29 { width: 33.3333333333%; clear: none; margin-left: 0; } .\33 u\28xsmall\29, .\33 u\24\28xsmall\29 { width: 25%; clear: none; margin-left: 0; } .\32 u\28xsmall\29, .\32 u\24\28xsmall\29 { width: 16.6666666667%; clear: none; margin-left: 0; } .\31 u\28xsmall\29, .\31 u\24\28xsmall\29 { width: 8.3333333333%; clear: none; margin-left: 0; } .\31 2u\24\28xsmall\29 + *, .\31 1u\24\28xsmall\29 + *, .\31 0u\24\28xsmall\29 + *, .\39 u\24\28xsmall\29 + *, .\38 u\24\28xsmall\29 + *, .\37 u\24\28xsmall\29 + *, .\36 u\24\28xsmall\29 + *, .\35 u\24\28xsmall\29 + *, .\34 u\24\28xsmall\29 + *, .\33 u\24\28xsmall\29 + *, .\32 u\24\28xsmall\29 + *, .\31 u\24\28xsmall\29 + * { clear: left; } .\-11u\28xsmall\29 { margin-left: 91.66667%; } .\-10u\28xsmall\29 { margin-left: 83.33333%; } .\-9u\28xsmall\29 { margin-left: 75%; } .\-8u\28xsmall\29 { margin-left: 66.66667%; } .\-7u\28xsmall\29 { margin-left: 58.33333%; } .\-6u\28xsmall\29 { margin-left: 50%; } .\-5u\28xsmall\29 { margin-left: 41.66667%; } .\-4u\28xsmall\29 { margin-left: 33.33333%; } .\-3u\28xsmall\29 { margin-left: 25%; } .\-2u\28xsmall\29 { margin-left: 16.66667%; } .\-1u\28xsmall\29 { margin-left: 8.33333%; } } @media screen and (max-width: 360px) { .row > * { padding: 0 0 0 1.25em; } .row { margin: 0 0 -1px -1.25em; } .row.uniform > * { padding: 1.25em 0 0 1.25em; } .row.uniform { margin: -1.25em 0 -1px -1.25em; } .row.\32 00\25 > * { padding: 0 0 0 2.5em; } .row.\32 00\25 { margin: 0 0 -1px -2.5em; } .row.uniform.\32 00\25 > * { padding: 2.5em 0 0 2.5em; } .row.uniform.\32 00\25 { margin: -2.5em 0 -1px -2.5em; } .row.\31 50\25 > * { padding: 0 0 0 1.875em; } .row.\31 50\25 { margin: 0 0 -1px -1.875em; } .row.uniform.\31 50\25 > * { padding: 1.875em 0 0 1.875em; } .row.uniform.\31 50\25 { margin: -1.875em 0 -1px -1.875em; } .row.\35 0\25 > * { padding: 0 0 0 0.625em; } .row.\35 0\25 { margin: 0 0 -1px -0.625em; } .row.uniform.\35 0\25 > * { padding: 0.625em 0 0 0.625em; } .row.uniform.\35 0\25 { margin: -0.625em 0 -1px -0.625em; } .row.\32 5\25 > * { padding: 0 0 0 0.3125em; } .row.\32 5\25 { margin: 0 0 -1px -0.3125em; } .row.uniform.\32 5\25 > * { padding: 0.3125em 0 0 0.3125em; } .row.uniform.\32 5\25 { margin: -0.3125em 0 -1px -0.3125em; } .\31 2u\28xxsmall\29, .\31 2u\24\28xxsmall\29 { width: 100%; clear: none; margin-left: 0; } .\31 1u\28xxsmall\29, .\31 1u\24\28xxsmall\29 { width: 91.6666666667%; clear: none; margin-left: 0; } .\31 0u\28xxsmall\29, .\31 0u\24\28xxsmall\29 { width: 83.3333333333%; clear: none; margin-left: 0; } .\39 u\28xxsmall\29, .\39 u\24\28xxsmall\29 { width: 75%; clear: none; margin-left: 0; } .\38 u\28xxsmall\29, .\38 u\24\28xxsmall\29 { width: 66.6666666667%; clear: none; margin-left: 0; } .\37 u\28xxsmall\29, .\37 u\24\28xxsmall\29 { width: 58.3333333333%; clear: none; margin-left: 0; } .\36 u\28xxsmall\29, .\36 u\24\28xxsmall\29 { width: 50%; clear: none; margin-left: 0; } .\35 u\28xxsmall\29, .\35 u\24\28xxsmall\29 { width: 41.6666666667%; clear: none; margin-left: 0; } .\34 u\28xxsmall\29, .\34 u\24\28xxsmall\29 { width: 33.3333333333%; clear: none; margin-left: 0; } .\33 u\28xxsmall\29, .\33 u\24\28xxsmall\29 { width: 25%; clear: none; margin-left: 0; } .\32 u\28xxsmall\29, .\32 u\24\28xxsmall\29 { width: 16.6666666667%; clear: none; margin-left: 0; } .\31 u\28xxsmall\29, .\31 u\24\28xxsmall\29 { width: 8.3333333333%; clear: none; margin-left: 0; } .\31 2u\24\28xxsmall\29 + *, .\31 1u\24\28xxsmall\29 + *, .\31 0u\24\28xxsmall\29 + *, .\39 u\24\28xxsmall\29 + *, .\38 u\24\28xxsmall\29 + *, .\37 u\24\28xxsmall\29 + *, .\36 u\24\28xxsmall\29 + *, .\35 u\24\28xxsmall\29 + *, .\34 u\24\28xxsmall\29 + *, .\33 u\24\28xxsmall\29 + *, .\32 u\24\28xxsmall\29 + *, .\31 u\24\28xxsmall\29 + * { clear: left; } .\-11u\28xxsmall\29 { margin-left: 91.66667%; } .\-10u\28xxsmall\29 { margin-left: 83.33333%; } .\-9u\28xxsmall\29 { margin-left: 75%; } .\-8u\28xxsmall\29 { margin-left: 66.66667%; } .\-7u\28xxsmall\29 { margin-left: 58.33333%; } .\-6u\28xxsmall\29 { margin-left: 50%; } .\-5u\28xxsmall\29 { margin-left: 41.66667%; } .\-4u\28xxsmall\29 { margin-left: 33.33333%; } .\-3u\28xxsmall\29 { margin-left: 25%; } .\-2u\28xxsmall\29 { margin-left: 16.66667%; } .\-1u\28xxsmall\29 { margin-left: 8.33333%; } } /* Basic */ @-ms-viewport { width: device-width; } body { -ms-overflow-style: scrollbar; } @media screen and (max-width: 360px) { html, body { min-width: 320px; } } body { background: #ffffff; } body.is-loading *, body.is-loading *:before, body.is-loading *:after { -moz-animation: none !important; -webkit-animation: none !important; -ms-animation: none !important; animation: none !important; -moz-transition: none !important; -webkit-transition: none !important; -ms-transition: none !important; transition: none !important; } /* Type */ html, body { background: #fefefe; } body { color: #48494f; overflow-wrap: break-word; word-wrap: break-word; } html, input, select, textarea { font-size: 16pt; } @media screen and (max-width: 1680px) { html, input, select, textarea { font-size: 13pt; } } @media screen and (max-width: 1280px) { html, input, select, textarea { font-size: 12pt; } } @media screen and (max-width: 360px) { html, input, select, textarea { font-size: 11pt; } } body, input, select, textarea { font-family: "Open Sans", Helvetica, sans-serif; font-weight: normal; line-height: 1.5; letter-spacing: -0.015em; } ::-moz-selection { background: #fbb295; text-shadow: none; } ::selection { background: #fbb295; text-shadow: none; } a { -moz-transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out; -webkit-transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out; -ms-transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out; transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out; text-decoration: none; } a:hover { border-bottom-color: transparent; } strong, b { font-weight: bold; } em, i { font-style: italic; } p { margin: 0 0 2em 0; } h1, h2, h3, h4, h5, h6 { font-weight: normal; line-height: 1; margin: 1em 0 0.5em 0; letter-spacing: -0.0125em; } h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: inherit; text-decoration: none; border-bottom: none; } @media screen and (max-width: 980px) { h1 br, h2 br, h3 br, h4 br, h5 br, h6 br { display: none; } } h1 { font-size: 2em; line-height: 1.5; } h2 { font-size: 1.75em; line-height: 1.5; } h3 { font-size: 1.5em; line-height: 1.5; } h4 { font-size: 1.1em; line-height: 1.5; } h5 { font-size: 0.9em; line-height: 1.5; } h6 { font-size: 0.7em; line-height: 1.5; } @media screen and (max-width: 736px) { h1 { font-size: 1.35em; } h2 { font-size: 1.25em; } h3 { font-size: 1.2em; } h4 { font-size: 1em; } } sub { font-size: 0.8em; position: relative; top: 0.5em; } sup { font-size: 0.8em; position: relative; top: -0.5em; } small { font-size: 60%; line-height: inherit; } blockquote { line-height: 1.6; border-left-style: solid; border-left-width: 4px; font-style: italic; margin: 0 0 2em 0; padding: 0 0 0 1em; } blockquote p { line-height: 1.6; color: #48494f; } blockquote cite { display: block; font-size: 0.8125rem; color: #555; } blockquote cite:before { content: "\2014 \0020"; } blockquote *:last-child { margin: 0; } code { border-radius: 6px; border-style: solid; border-width: 1px; font-family: "Ubuntu Mono", monospace; font-size: 0.9em; margin: 0 0.25em; padding: 0.25em 0.65em; white-space: pre-wrap; } code + .copy-to-clipboard { position: absolute; top: 12px; right: 12px; } .copy-to-clipboard { background-image: url(images/clippy.svg); background-size: 16px 16px; background-repeat: no-repeat; width: 16px; height: 16px; cursor: pointer; } .copy-to-clipboard:hover { background-color: #e6e6e6; } pre { -webkit-overflow-scrolling: touch; font-family: "Ubuntu Mono", monospace; font-size: 0.9em; margin: 0 0 0.5em 0; position: relative; } pre code { display: block; line-height: 1.75; padding: 0.5em 1.5em; overflow-x: auto; } kbd { color: #444444; font-family: "Lucida Grande", Lucida, Verdana, sans-serif; font-weight: normal; font-style: normal; font-size: 0.75em; text-align: center; line-height: 1; text-shadow: 0 1px 0 #fff; display: inline; padding: .3em .55em; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #bbb; background-color: #f7f7f7; background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1), transparent); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(0, 0, 0, 0.1)), to(transparent)); background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1), transparent); background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.1), transparent); background-image: linear-gradient(top, rgba(0, 0, 0, 0.1), transparent); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1a000000', endColorstr='#00000000', GradientType=0); box-shadow: 0px 2px 0 #bbbbbb, 0 3px 1px #999999, 0 3px 0 #bbbbbb, inset 0 1px 1px #ffffff, inset 0 -1px 3px #cccccc; } hr { border: 0; border-bottom-style: solid; border-bottom-width: 1px; margin: 2em 0; } hr.major { margin: 3em 0; } .align-left { text-align: left; } .align-center { text-align: center; } .align-right { text-align: right; } input, select, textarea { color: #48494f; } a { color: inherit; border-bottom-color: #d6d6d6; } a:hover { color: #555555; } strong, b { color: #4c4c4c; } h1, h2, h3, h4, h5, h6 { font-family: "Raleway", Helvetica, sans-serif; color: #4c4c4c; } blockquote { border-left-color: #e6e6e6; } code { background: rgba(144, 144, 144, 0.075); border-color: #e6e6e6; } hr { border-bottom-color: #e6e6e6; } /* Utilities */ .selected { font-weight: bold; text-decoration: underline; } .overthrow-enabled .overthrow { overflow: auto; -webkit-overflow-scrolling: touch; } .hidden { display: none !important; } .js-hidden { display: none !important; } html.no-js .js-hidden { display: inline-block !important; } .invisible { visibility: hidden; opacity: 0; -moz-transition: opacity 1s, visibility 1.3s; -webkit-transition: opacity 1s, visibility 1.3s; -ms-transition: opacity 1s, visibility 1.3s; transition: opacity 1s, visibility 1.3s; } .visible { visibility: visible; opacity: 1; -moz-transition: opacity 1s, visibility 1.3s; -webkit-transition: opacity 1s, visibility 1.3s; -ms-transition: opacity 1s, visibility 1.3s; transition: opacity 1s, visibility 1.3s; } .js-invisible { visibility: hidden; } html.no-js .js-invisible { visibility: visible; } html.no-js .js-only { display: none !important; } @media screen and (max-width: 736px) { .hidden-small-down { display: none !important; } } @media screen and (min-width: 737px) and (max-width: 980px) { .hidden-medium { display: none !important; } } .visuallyhidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } .sr-only.focusable:active, .sr-only.focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } .textuallyhidden { overflow: hidden; text-indent: 100%; white-space: nowrap; } .clearfix:before { display: table; content: ""; } .clearfix:after { display: table; clear: both; content: ""; } .clear { clear: both; } .right { float: right; } .left { float: left; } .centered { display: block; float: none; margin-left: auto; margin-right: auto; } .truncate.truncate-target, .truncate .truncate-target { display: inline-block; max-width: 250px; max-width: calc(100% + 0.5em); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: top; } .truncate.expandable:hover .truncate-target, .truncate.expandable:hover.truncate-target { max-width: 10000px !important; } /* Requirements */ [data-fisarmonica] [data-content] { overflow: hidden; max-height: 0; } /* Basic Theme */ [data-control], [data-content] > * { padding: 10px; } [data-content] [data-fisarmonica] { border: 0; padding: 0; } [data-fisarmonica] [data-control] { position: relative; width: 100%; line-height: 1em; font-weight: normal; text-align: left; height: 51px; margin-bottom: 0.25em; overflow: hidden; } [data-fisarmonica] > [data-control]:after { content: ""; position: absolute; right: 10px; top: 18px; font-size: 25px; font-weight: 200; color: #444; height: 15px; width: 24px; background: url("images/down.png") center center no-repeat; background-size: 50%; } [data-fisarmonica].open > [data-control]:after { -webkit-transform: rotate(-180deg); -ms-transform: rotate(-180deg); transform: rotate(-180deg); } .ug-label, .ug-badge { background-color: #babdc0; color: #fff; font-size: inherit; padding: 3px 7px; text-align: center; vertical-align: baseline; white-space: nowrap; margin-left: 2.5px; margin-right: 2.5px; } .ug-label.c1, .ug-badge.c1 { background-color: #264653; } .ug-label.c2, .ug-badge.c2 { background-color: #2a9d8f; } .ug-label.c3, .ug-badge.c3 { background-color: #e9c46a; } .ug-label.c4, .ug-badge.c4 { background-color: #f4a261; } .ug-label.c5, .ug-badge.c5 { background-color: #a5be00; } .ug-label.c6, .ug-badge.c6 { background-color: #8b8291; } .ug-label.c7, .ug-badge.c7 { background-color: #98a5cf; } .ug-label.c8, .ug-badge.c8 { background-color: #ee7f8f; } .ug-label.c9, .ug-badge.c9 { background-color: #ada2b5; } .ug-label.c10, .ug-badge.c10 { background-color: #d3d09a; } .ug-label.c11, .ug-badge.c11 { background-color: #b28e6e; } .ug-label.c12, .ug-badge.c12 { background-color: #a9c7b6; } .ug-label.c13, .ug-badge.c13 { background-color: #ef7063; } .ug-label.c14, .ug-badge.c14 { background-color: #f2d856; } .ug-label { border-radius: 4px; display: inline; } .ug-badge { border-radius: 10px; display: inline-block; padding: 1px 7px; } .ug-label[href]:hover, .ug-label[href]:focus { color: #fff; cursor: pointer; text-decoration: none; } a.ug-badge:hover, a.ug-badge:focus { color: #fff; cursor: pointer; text-decoration: none; } .ug-label a, .ug-badge a { color: #fff; cursor: pointer; text-decoration: none; } .ug-label:empty, .ug-badge:empty { display: none; } /* Box */ .box { border-radius: 6px; border: solid 1px #e6e6e6; margin-bottom: 2em; padding: 1.5em; } .box > :last-child, .box > :last-child > :last-child, .box > :last-child > :last-child > :last-child { margin-bottom: 0; } .box.alt { border: 0; border-radius: 0; padding: 0; } /* Button */ input[type="submit"], input[type="reset"], input[type="button"], button, .button { -moz-appearance: none; -webkit-appearance: none; -ms-appearance: none; appearance: none; -moz-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; -ms-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; border: 0; cursor: pointer; display: inline-block; font-weight: bold; height: 2.85em; line-height: 2.95em; padding: 0 1.75em; text-align: center; text-decoration: none; white-space: nowrap; } input[type="submit"].icon, input[type="reset"].icon, input[type="button"].icon, button.icon, .button.icon { padding-left: 1.35em; } input[type="submit"].icon:before, input[type="reset"].icon:before, input[type="button"].icon:before, button.icon:before, .button.icon:before { margin-right: 0.5em; } input[type="submit"].fit, input[type="reset"].fit, input[type="button"].fit, button.fit, .button.fit { display: block; margin: 0 0 1em 0; width: 100%; } input[type="submit"].small, input[type="reset"].small, input[type="button"].small, button.small, .button.small { font-size: 0.8em; } input[type="submit"].big, input[type="reset"].big, input[type="button"].big, button.big, .button.big { font-size: 1.35em; } input[type="submit"].disabled, input[type="submit"]:disabled, input[type="reset"].disabled, input[type="reset"]:disabled, input[type="button"].disabled, input[type="button"]:disabled, button.disabled, button:disabled, .button.disabled, .button:disabled { -moz-pointer-events: none; -webkit-pointer-events: none; -ms-pointer-events: none; pointer-events: none; cursor: default; opacity: 0.25; } @media screen and (max-width: 480px) and (orientation: portrait) { input[type="submit"], input[type="reset"], input[type="button"], button, .button { padding: 0; } input[type="submit"].fit.icon, input[type="reset"].fit.icon, input[type="button"].fit.icon, button.fit.icon, .button.fit.icon { padding-left: 0px; } } input[type="submit"], input[type="reset"], input[type="button"], button, .button { background-color: transparent; color: #4c4c4c; box-shadow: inset 0 0 0 2px #e6e6e6; } input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, button:hover, .button:hover { background-color: rgba(144, 144, 144, 0.075) !important; } input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active, button:active, .button:active { background-color: rgba(144, 144, 144, 0.15) !important; } input[type="submit"].alt, input[type="reset"].alt, input[type="button"].alt, button.alt, .button.alt { background-color: transparent; color: #4c4c4c !important; box-shadow: inset 0 0 0 2px #e6e6e6; } input[type="submit"].alt:hover, input[type="reset"].alt:hover, input[type="button"].alt:hover, button.alt:hover, .button.alt:hover { background-color: rgba(144, 144, 144, 0.075); } input[type="submit"].alt:active, input[type="reset"].alt:active, input[type="button"].alt:active, button.alt:active, .button.alt:active { background-color: rgba(144, 144, 144, 0.15); } input[type="submit"].alt.icon:before, input[type="reset"].alt.icon:before, input[type="button"].alt.icon:before, button.alt.icon:before, .button.alt.icon:before { color: #e0e0e0; } input[type="submit"].special, input[type="reset"].special, input[type="button"].special, button.special, .button.special { box-shadow: none; background-color: #ffffff; color: #4c4c4c; } input[type="submit"].special:hover, input[type="reset"].special:hover, input[type="button"].special:hover, button.special:hover, .button.special:hover { background-color: white; } input[type="submit"].special:active, input[type="reset"].special:active, input[type="button"].special:active, button.special:active, .button.special:active { background-color: #f2f2f2; } /* Form */ form { margin: 0 0 2em 0; } label { display: block; font-size: 0.9em; font-weight: bold; margin: 0 0 1em 0; } input[type="text"], input[type="password"], input[type="email"], select, textarea { -moz-appearance: none; -webkit-appearance: none; -ms-appearance: none; appearance: none; border-radius: 6px; border: none; border-style: solid; border-width: 1px; color: inherit; display: block; outline: 0; padding: 0 1em; text-decoration: none; width: 100%; } input[type="text"]:invalid, input[type="password"]:invalid, input[type="email"]:invalid, select:invalid, textarea:invalid { box-shadow: none; } .select-wrapper { text-decoration: none; display: block; position: relative; } .select-wrapper:before { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; } .select-wrapper:before { content: '\f078'; display: block; height: 2.75em; line-height: 2.75em; pointer-events: none; position: absolute; right: 0; text-align: center; top: 0; width: 2.75em; } .select-wrapper select::-ms-expand { display: none; } input[type="text"], input[type="password"], input[type="email"], select { height: 2.75em; } textarea { padding: 0.75em 1em; } input[type="checkbox"], input[type="radio"] { -moz-appearance: none; -webkit-appearance: none; -ms-appearance: none; appearance: none; display: block; float: left; margin-right: -2em; opacity: 0; width: 1em; z-index: -1; } input[type="checkbox"] + label, input[type="radio"] + label { text-decoration: none; cursor: pointer; display: inline-block; font-size: 1em; font-weight: normal; padding-left: 2.4em; padding-right: 0.75em; position: relative; } input[type="checkbox"] + label:before, input[type="radio"] + label:before { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; } input[type="checkbox"] + label:before, input[type="radio"] + label:before { border-radius: 6px; border-style: solid; border-width: 1px; content: ''; display: inline-block; height: 1.65em; left: 0; line-height: 1.58125em; position: absolute; text-align: center; top: 0; width: 1.65em; } input[type="checkbox"]:checked + label:before, input[type="radio"]:checked + label:before { content: '\f00c'; } input[type="checkbox"] + label:before { border-radius: 6px; } input[type="radio"] + label:before { border-radius: 100%; } ::-webkit-input-placeholder { opacity: 1.0; } :-moz-placeholder { opacity: 1.0; } ::-moz-placeholder { opacity: 1.0; } :-ms-input-placeholder { opacity: 1.0; } .formerize-placeholder { opacity: 1.0; } label { color: #4c4c4c; } input[type="text"], input[type="password"], input[type="email"], select, textarea { color: inherit; background-color: rgba(144, 144, 144, 0.075); border-color: #e6e6e6; } input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, select:focus, textarea:focus { border-color: #555555; box-shadow: 0 0 0 1px #555555; } .select-wrapper:before { color: #e6e6e6; } input[type="checkbox"] + label, input[type="radio"] + label { color: #48494f; } input[type="checkbox"] + label:before, input[type="radio"] + label:before { background-color: rgba(144, 144, 144, 0.075); border-color: #e6e6e6; } input[type="checkbox"]:checked + label:before, input[type="radio"]:checked + label:before { background-color: #555555; border-color: #555555; color: #ffffff; } input[type="checkbox"]:focus + label:before, input[type="radio"]:focus + label:before { border-color: #555555; box-shadow: 0 0 0 1px #555555; } ::-webkit-input-placeholder { color: #e0e0e0 !important; } :-moz-placeholder { color: #e0e0e0 !important; } ::-moz-placeholder { color: #e0e0e0 !important; } :-ms-input-placeholder { color: #e0e0e0 !important; } .formerize-placeholder { color: #e0e0e0 !important; } /* Grid Demo */ .grid-demo { display: block; margin: 0 0 2em 0; } .grid-demo span { background: #a2a2a2; border-radius: 6px; color: rgba(0, 0, 0, 0.25); display: block; font-weight: bold; height: 2.75em; line-height: 2.75em; text-align: center; } /* Icon */ .icon { text-decoration: none; border-bottom: none; position: relative; outline: none; } .icon:before { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; } .icon > .label { display: none; } .icon.icon-button { width: 7.5em; height: 7.5em; border-radius: 50%; text-align: center; line-height: 7em; vertical-align: middle; text-decoration: none; -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s; -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s; -ms-transition: opacity 0.3s 0s, visibility 0s 0.3s; transition: opacity 0.3s 0s, visibility 0s 0.3s; /* opacity: 0.8; */ overflow: hidden; } .icon.icon-button:before { font-size: 4rem; } .icon.icon-button:hover, .icon.icon-button:focus, .icon.icon-button:active, .icon.icon-button.selected { -moz-transition: opacity 0.3s 0s, visibility 0s; -webkit-transition: opacity 0.3s 0s, visibility 0s; -ms-transition: opacity 0.3s 0s, visibility 0s; transition: opacity 0.3s 0s, visibility 0s; } .icon.icon-button.selected { /* opacity: 0.9; */ } .icon.icon-button:hover, .icon.icon-button:focus, .icon.icon-button:active { /* opacity: 1; */ } .icon.icon-button { cursor: pointer; } .icon { color: #e0e0e0; } .icon.icon-button { color: #cccccc; border: 2x solid #e6e6e6; box-shadow: 0 0 2px #e6e6e6; } .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .icon.icon-button.selected:hover, .icon.icon-button.selected:focus, .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } /* Image */ img { max-width: 100%; height: auto; -ms-interpolation-mode: bicubic; } .image { border-radius: 6px; border: 0; display: inline-block; position: relative; overflow: hidden; } .image img { border-radius: 6px; display: block; } .image.left, .image.right { max-width: 40%; } .image.left img, .image.right img { width: 100%; } .image.left { float: left; margin: 0 1.5em 1em 0; top: 0.25em; } .image.right { float: right; margin: 0 0 1em 1.5em; top: 0.25em; } .image.fit { display: block; margin: 0 0 2em 0; width: 100%; } .image.fit img { width: 100%; } .image.half { margin: 0 0 1em 0; width: 50%; } .image.half img { width: 50%; } .image.main { display: block; margin: 0 0 3em 0; width: 100%; } .image.main img { width: 100%; } .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } /* List */ ol { list-style: decimal; margin: 0 0 2em 0; padding-left: 1.25em; } ol li { padding-left: 0.25em; } ul { list-style: disc; margin: 0 0 2em 0; padding-left: 1em; } ul li { padding-left: 0.5em; padding-top: 0.5em; } ul.alt { list-style: none; padding-left: 0; } ul.alt li { border-top-style: solid; border-top-width: 1px; padding: 0.5em 0; } ul.alt li:first-child { border-top: 0; padding-top: 0; } ul.truncate-items li span { display: inline-block; max-width: 250px; max-width: calc(100% + 0.5em); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: top; } ul.icons { cursor: default; list-style: none; padding-left: 0; } ul.icons li { display: inline-block; padding: 0 1.5em 0 0; } ul.icons li:last-child { padding-right: 0 !important; } ul.icons li .icon:before { font-size: 1.75rem; } ul.icons li .icon-toogle, ul.icons li .icon-rounded { width: 2.3rem; height: 2.3rem; border-radius: 50%; text-align: center; line-height: 2.3rem; vertical-align: middle; text-decoration: none; -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s; -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s; -ms-transition: opacity 0.3s 0s, visibility 0s 0.3s; transition: opacity 0.3s 0s, visibility 0s 0.3s; opacity: 0.8; } ul.icons li .icon-toogle:before, ul.icons li .icon-rounded:before { font-size: 1.3rem; } ul.icons li .icon-toogle:hover, ul.icons li .icon-toogle:focus, ul.icons li .icon-toogle:active, ul.icons li .icon-toogle.selected, ul.icons li .icon-rounded:hover, ul.icons li .icon-rounded:focus, ul.icons li .icon-rounded:active, ul.icons li .icon-rounded.selected { -moz-transition: opacity 0.3s 0s, visibility 0s; -webkit-transition: opacity 0.3s 0s, visibility 0s; -ms-transition: opacity 0.3s 0s, visibility 0s; transition: opacity 0.3s 0s, visibility 0s; } ul.icons li .icon-toogle.selected, ul.icons li .icon-rounded.selected { opacity: 0.9; } ul.icons li .icon-toogle:hover, ul.icons li .icon-toogle:focus, ul.icons li .icon-toogle:active, ul.icons li .icon-rounded:hover, ul.icons li .icon-rounded:focus, ul.icons li .icon-rounded:active { opacity: 1; } ul.icons li .icon-rounded { color: #ffffff; background-color: #555555; } ul.icons li .icon-rounded:hover, ul.icons li .icon-rounded:focus, ul.icons li .icon-rounded:active, ul.icons li .icon-rounded.selected { background-color: #484848; } ul.icons li .icon-toogle { cursor: pointer; } ul.icons.major li { padding: 0 2.5em 0 0; } ul.icons.major li .icon:before { font-size: 2.75rem; } @media screen and (max-width: 736px) { ul.icons.major li { padding: 0 1.25em 0 0; } ul.icons.major li .icon:before { font-size: 1.75rem; } } ul.icons.labeled li { margin: 1em 0; padding: 0 2em 0 0; } ul.icons.labeled li .icon:before { vertical-align: middle; font-size: 2.25rem; margin-right: 0.5em; } ul.icons.labeled li .icon .label { display: inline-block; vertical-align: middle; color: #48494f; } @media screen and (max-width: 736px) and (orientation: portrait) { ul.icons.labeled { text-align: left; margin-right: auto; margin-left: auto; display: inline-block; white-space: nowrap; } ul.icons.labeled li { display: block; padding: 0; margin: 1.5em 0 0 0; } ul.icons.labeled li .icon:before { width: 1.5em; display: block; float: left; margin-right: 0; } ul.icons.labeled li .icon:after { content: ''; display: block; clear: both; } ul.icons.labeled li:first-child { margin-top: 0; } } ul.actions { cursor: default; list-style: none; padding-left: 0; } ul.actions li { display: inline-block; padding: 0 1em 0 0; vertical-align: middle; } ul.actions li:last-child { padding-right: 0; } ul.actions.small li { padding: 0 0.5em 0 0; } ul.actions.piped li { border-right: 1px solid #d6d6d6; line-height: 1em; padding: 0 0.5em 0 0.5em; -moz-transition: 0.3s; -webkit-transition: 0.3s; -ms-transition: 0.3s; transition: 0.3s; } ul.actions.piped li:first-child { padding-left: 0px; } ul.actions.piped li:last-child { border: none; padding-right: 0px; } ul.actions.piped a, ul.actions.piped a:link, ul.actions.piped a:visited, ul.actions.piped a:focus, ul.actions.piped a:active { text-decoration: none; } ul.actions.piped a:hover { text-decoration: underline; } ul.actions.piped:before, ul.actions.piped:after { content: ""; display: table; } ul.actions.piped:after { clear: both; } ul.actions.vertical li { display: block; padding: 1em 0 0 0; } ul.actions.vertical li:first-child { padding-top: 0; } ul.actions.vertical li > * { margin-bottom: 0; } ul.actions.vertical.small li { padding: 0.5em 0 0 0; } ul.actions.vertical.small li:first-child { padding-top: 0; } ul.actions.vertical.piped li { padding: 1em 0 0 0; border-right: 0; line-height: inherit; } ul.actions.vertical.piped li:first-child { padding-top: 0; } ul.actions.vertical.piped li:last-child { border: none; } ul.actions.fit { display: table; margin-left: -1em; padding: 0; table-layout: fixed; width: calc(100% + 1em); } ul.actions.fit li { display: table-cell; padding: 0 0 0 1em; } ul.actions.fit li > * { margin-bottom: 0; } ul.actions.fit.small { margin-left: -0.5em; width: calc(100% + 0.5em); } ul.actions.fit.small li { padding: 0 0 0 0.5em; } @media screen and (max-width: 480px) and (orientation: portrait) { ul.actions { margin: 0 0 2em 0; } ul.actions li { padding: 1em 0 0 0; display: block; text-align: center; width: 100%; } ul.actions li:first-child { padding-top: 0; } ul.actions li > * { width: 100%; margin: 0 !important; } ul.actions li > *.icon:before { margin-left: -2em; } ul.actions.small li { padding: 0.5em 0 0 0; } ul.actions.small li:first-child { padding-top: 0; } ul.actions.piped li { padding: 1em 0 0 0; border-right: 0; } ul.actions.piped li:first-child { padding-top: 0; } ul.actions.piped li:last-child { border: none; } } dl { margin: 0 0 2em 0; } dl dt { display: block; font-weight: bold; margin: 0 0 1em 0; } dl dd { margin-left: 2em; } ul.alt > li { border-top-color: #e6e6e6; } ul.piped > li { border-right-color: #e6e6e6; } ul.icons > li .icon-toogle { color: #48494f; } ul.icons > li .icon-toogle:hover, ul.icons > li .icon-toogle:focus, ul.icons > li .icon-toogle:active, ul.icons > li .icon-toogle.selected { color: #4c4c4c; background-color: #f2f2f2; } /* Section/Article */ section.special, article.special { text-align: center; } header p { position: relative; margin: 0 0 1.5em 0; } @media screen and (max-width: 736px) { header p br { display: none; } } header h2 + p { font-size: 1.25em; margin-top: -0.5em; line-height: 1.5; } header h3 + p { font-size: 1.1em; margin-top: -0.25em; line-height: 1.5; } header h4 + p, header h5 + p, header h6 + p { font-size: 0.9em; margin-top: -0.6em; line-height: 1.5; } header.major { margin: 0 0 2.5em 0; text-align: center; } header.major:after { content: ''; border-bottom: solid 2px #e6e6e6; display: block; width: 4em; margin: 2em auto 0 auto; } @media screen and (max-width: 736px) { header.major { margin: 0 0 2em 0; } header.major p { font-size: 1em; } } /* Search Bar */ .search-bar { padding: 0; margin: 0; box-shadow: none; z-index: 1000000; -moz-transition: color 0.3s ease-in-out; -webkit-transition: color 0.3s ease-in-out; -ms-transition: color 0.3s ease-in-out; transition: color 0.3s ease-in-out; } .search-bar form, .search-bar form input { display: inline-block; margin: 0; border: 0; padding: 0; vertical-align: middle; white-space: normal; line-height: inherit; background: none; font-size: inherit; font-family: inherit; width: 100%; } .search-bar form input { border-bottom: 1px solid rgba(255, 255, 255, 0.2); border-radius: 0; color: #fff; box-sizing: border-box; font-weight: 500; font-size: 1.2em; letter-spacing: 0.02em; height: 2em; } .search-bar form input:focus, .search-bar .form input[type="search"]:focus { border-color: #cccccc; box-shadow: none; outline: none; } @media screen and (max-width: 736px) { .search-bar { padding: 10px 15px; width: 100% !important; } } @media screen and (min-width: 737px) { .search-bar { position: absolute; right: 0; background-color: transparent; } } @media screen and (min-width: 737px) and (max-width: 1680px) { .search-bar { top: 10px; } } @media screen and (min-width: 1681px) { .search-bar { top: 5px; } } .search-button { cursor: pointer; } /* Slider */ .slick-slider { position: relative; display: block; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent; } .slick-list { position: relative; overflow: hidden; display: block; margin: 0; padding: 0; } .slick-list:focus { outline: none; } .slick-list.dragging { cursor: pointer; cursor: hand; } .slick-slider .slick-track, .slick-slider .slick-list { -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); } .slick-track { position: relative; left: 0; top: 0; display: block; } .slick-track:before, .slick-track:after { content: ""; display: table; } .slick-track:after { clear: both; } .slick-loading .slick-track { visibility: hidden; } .slick-slide { float: left; height: 100%; min-height: 1px; display: none; } [dir="rtl"] .slick-slide { float: right; } .slick-slide img { display: block; } .slick-slide.slick-loading img { display: none; } .slick-slide.dragging img { pointer-events: none; } .slick-initialized .slick-slide { display: block; } .slick-loading .slick-slide { visibility: hidden; } .slick-vertical .slick-slide { display: block; height: auto; border: 1px solid transparent; } .slick-arrow.slick-hidden { display: none; } /* Slider Theme */ .slick-loading .slick-list { background: #fff url("images/ajax-loader.gif") center center no-repeat; } /* Slider Theme Arrows */ .slick-prev, .slick-next { position: absolute; display: block; height: 20px; width: 20px; line-height: 0; font-size: 0px; cursor: pointer; background: transparent; color: transparent; top: 50%; margin-top: -10px\9; /*lte IE 8*/ -webkit-transform: translate(0, -50%); -ms-transform: translate(0, -50%); transform: translate(0, -50%); padding: 0; border: none; outline: none; box-shadow: none !important; } .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus { outline: none !important; background: transparent; color: transparent; } .slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before { opacity: 1; } .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before { opacity: 0.25; } .slick-prev::-moz-focus-inner, .slick-next::-moz-focus-inner { border: none; } .slick-prev:before, .slick-next:before { font-family: "FontAwesome"; font-size: 20px; line-height: 1; color: #48494f; opacity: 0.75; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .slick-prev { left: -50px; } [dir="rtl"] .slick-prev { left: auto; right: -50px; } .slick-prev:before { content: ""; } [dir="rtl"] .slick-prev:before { content: ""; } .slick-next { right: -50px; } [dir="rtl"] .slick-next { left: -50px; right: auto; } .slick-next:before { content: ""; } [dir="rtl"] .slick-next:before { content: ""; } /* Slider Theme Dots */ .slick-slider { margin-bottom: 30px; } .slick-dots { position: absolute; bottom: -45px; list-style: none; display: block; text-align: center; padding: 0; width: 100%; } .slick-dots li { position: relative; display: inline-block; height: 20px; width: 20px; margin: 0 5px; padding: 0; cursor: pointer; } .slick-dots li button { border: 0; background: transparent; display: block; height: 20px; width: 20px; outline: none; line-height: 0px; font-size: 0px; color: transparent; padding: 5px; cursor: pointer; box-shadow: none !important; } .slick-dots li button:hover, .slick-dots li button:focus { outline: none; } .slick-dots li button:hover:before, .slick-dots li button:focus:before { opacity: 1; } .slick-dots li button:before { position: absolute; top: 0; left: 0; content: ""; width: 20px; height: 20px; font-family: "FontAwesome"; font-size: 0.7rem; line-height: 20px; text-align: center; color: #48494f; opacity: 0.25; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .slick-dots li button::-moz-focus-inner { border: none; } .slick-dots li.slick-active button:before { color: #48494f; opacity: 0.75; } /* Spotlight */ .spotlight { display: -moz-flex; display: -webkit-flex; display: -ms-flex; display: flex; -moz-align-items: center; -webkit-align-items: center; -ms-align-items: center; align-items: center; margin: 0 0 2em 0; } .spotlight .image { width: 15%; border-radius: 0%; margin: 0 3em 0 0; display: block; } .spotlight .image img { display: block; border-radius: 0%; width: 100%; } .spotlight .content { width: 75%; text-align: justify; } .spotlight .content > :last-child { margin-bottom: 0; } .spotlight .content h3 { font-weight: bold; } .spotlight:nth-child(2n) { -moz-flex-direction: row-reverse; -webkit-flex-direction: row-reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; } .spotlight:nth-child(2n) .image { margin: 0 0 0 3em; } .spotlight:nth-child(2n) .content { direction: rtl; } @media screen and (max-width: 736px) and (orientation: landscape) { .spotlight .image { margin: 0 2em 0 0; } .spotlight:nth-child(2n) .image { margin: 0 0 0 2em; } } @media screen and (max-width: 736px) and (orientation: portrait) { .spotlight { -moz-flex-direction: column !important; -webkit-flex-direction: column !important; -ms-flex-direction: column !important; flex-direction: column !important; } .spotlight .image { width: 100%; max-width: 60%; margin: 0 0 2em 0 !important; } .spotlight .content { width: 100%; text-align: justify; direction: ltr !important; } .spotlight .content h3 { text-align: center; } } /* Table */ .table-wrapper { -webkit-overflow-scrolling: touch; overflow-x: auto; } table { margin: 0 0 2em 0; width: 100%; } table tbody tr { border-style: solid; border-width: 1px; border-left: 0; border-right: 0; } table td { padding: 0.75em 0.75em; } table th { font-size: 0.9em; font-weight: bold; padding: 0 0.75em 0.75em 0.75em; text-align: left; } table thead { border-bottom-style: solid; border-bottom-width: 2px; } table tfoot { border-top-style: solid; border-top-width: 2px; } table.alt { border-collapse: separate; } table.alt tbody tr td { border-style: solid; border-width: 1px; border-left-width: 0; border-top-width: 0; } table.alt tbody tr td:first-child { border-left-width: 1px; } table.alt tbody tr:first-child td { border-top-width: 1px; } table.alt thead { border-bottom: 0; } table.alt tfoot { border-top: 0; } table tbody tr { border-color: #e6e6e6; } table tbody tr:nth-child(2n + 1) { background-color: rgba(144, 144, 144, 0.075); } table th { color: #4c4c4c; } table thead { border-bottom-color: #e6e6e6; } table tfoot { border-top-color: #e6e6e6; } table.alt tbody tr td { border-color: #e6e6e6; } /* Tooltip */ .tooltip { position: relative; } .tooltip:after { position: absolute; z-index: 1000000; display: none; padding: 0.5em 0.5em; font: normal normal 0.75em "Raleway", Helvetica, sans-serif; text-align: center; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-wrap: break-word; white-space: pre; pointer-events: none; content: attr(aria-label); border-radius: 3px; -webkit-font-smoothing: subpixel-antialiased; -moz-osx-font-smoothing: grayscale; } .tooltip:before { position: absolute; z-index: 1000001; display: none; width: 0; height: 0; pointer-events: none; content: ""; border: 5px solid transparent; } .tooltip:hover:before, .tooltip:hover:after, .tooltip:active:before, .tooltip:active:after, .tooltip:focus:before, .tooltip:focus:after { display: inline-block; text-decoration: none; } .tooltip-multiline:hover:after, .tooltip-multiline:active:after, .tooltip-multiline:focus:after { display: table-cell; } .tooltip-s:after, .tooltip-se:after, .tooltip-sw:after { top: 100%; right: 50%; margin-top: 5px; } .tooltip-s:before, .tooltip-se:before, .tooltip-sw:before { top: auto; right: 50%; bottom: -5px; margin-right: -5px; } .tooltip-se:after { right: auto; left: 50%; margin-left: -15px; } .tooltip-sw:after { margin-right: -15px; } .tooltip-n:after, .tooltip-ne:after, .tooltip-nw:after { right: 50%; bottom: 100%; margin-bottom: 5px; } .tooltip-n:before, .tooltip-ne:before, .tooltip-nw:before { top: -5px; right: 50%; bottom: auto; margin-right: -5px; } .tooltip-ne:after { right: auto; left: 50%; margin-left: -15px; } .tooltip-nw:after { margin-right: -15px; } .tooltip-s:after, .tooltip-n:after { transform: translateX(50%); } .tooltip-w:after { right: 100%; bottom: 50%; margin-right: 5px; transform: translateY(50%); } .tooltip-w:before { top: 50%; bottom: 50%; left: -5px; margin-top: -5px; } .tooltip-e:after { bottom: 50%; left: 100%; margin-left: 5px; transform: translateY(50%); } .tooltip-e:before { top: 50%; right: -5px; bottom: 50%; margin-top: -5px; } .tooltip-multiline:after { width: -moz-max-content; width: -o-max-content; width: -webkit-max-content; width: max-content; max-width: 250px; word-break: break-word; word-wrap: normal; white-space: pre-line; border-collapse: separate; } .tooltip-multiline.tooltip-s:after, .tooltip-multiline.tooltip-n:after { right: auto; left: 50%; transform: translateX(-50%); } .tooltip-multiline.tooltip-w:after, .tooltip-multiline.tooltip-e:after { right: 100%; } @media screen and (min-width: 0\0) { .tooltip-multiline:after { width: 250px; } } .tooltip-sticky:before, .tooltip-sticky:after { display: inline-block; } .tooltip-sticky.tooltip-multiline:after { display: table-cell; } .tooltip-hide:before, .tooltip-hide:after { visibility: hidden; } .tooltip:after { color: #ffffff; background: #4c4c4c; } .tooltip:before { color: #4c4c4c; } .tooltip.tooltip-s:before, .tooltip.tooltip-se:before, .tooltip.tooltip-sw:before { border-bottom-color: #4c4c4c; } .tooltip.tooltip-n:before, .tooltip.tooltip-ne:before, .tooltip.tooltip-nw:before { border-top-color: #4c4c4c; } .tooltip.tooltip-w:before { border-left-color: #4c4c4c; } .tooltip.tooltip-e:before { border-right-color: #4c4c4c; } /* Wrapper */ .wrapper { padding: 4.5em 0 2.5em 0 ; background-color: #ffffff; border-bottom: solid 1px #eeeeee; } .wrapper > .inner { margin-left: auto; margin-right: auto; width: 60em; } .wrapper > .inner.alt > * { border-top: solid 2px #eeeeee; margin-bottom: 0; margin-top: 1.5em; padding-top: 1.5em; } .wrapper > .inner.alt > *:first-child { border-top: 0; margin-top: 0; padding-top: 0; } .wrapper.style1 { background-color: #555555; color: #e6e6e6; } .wrapper.style1 input[type="submit"], .wrapper.style1 input[type="reset"], .wrapper.style1 input[type="button"], .wrapper.style1 button, .wrapper.style1 .button { background-color: transparent; color: #ffffff; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style1 input[type="submit"]:hover, .wrapper.style1 input[type="reset"]:hover, .wrapper.style1 input[type="button"]:hover, .wrapper.style1 button:hover, .wrapper.style1 .button:hover { background-color: #f97f4f !important; } .wrapper.style1 input[type="submit"]:active, .wrapper.style1 input[type="reset"]:active, .wrapper.style1 input[type="button"]:active, .wrapper.style1 button:active, .wrapper.style1 .button:active { background-color: rgba(255, 255, 255, 0.4) !important; } .wrapper.style1 input[type="submit"].alt, .wrapper.style1 input[type="reset"].alt, .wrapper.style1 input[type="button"].alt, .wrapper.style1 button.alt, .wrapper.style1 .button.alt { background-color: transparent; color: #ffffff !important; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style1 input[type="submit"].alt:hover, .wrapper.style1 input[type="reset"].alt:hover, .wrapper.style1 input[type="button"].alt:hover, .wrapper.style1 button.alt:hover, .wrapper.style1 .button.alt:hover { background-color: #f97f4f; } .wrapper.style1 input[type="submit"].alt:active, .wrapper.style1 input[type="reset"].alt:active, .wrapper.style1 input[type="button"].alt:active, .wrapper.style1 button.alt:active, .wrapper.style1 .button.alt:active { background-color: rgba(255, 255, 255, 0.4); } .wrapper.style1 input[type="submit"].alt.icon:before, .wrapper.style1 input[type="reset"].alt.icon:before, .wrapper.style1 input[type="button"].alt.icon:before, .wrapper.style1 button.alt.icon:before, .wrapper.style1 .button.alt.icon:before { color: #ffffff; } .wrapper.style1 input[type="submit"].special, .wrapper.style1 input[type="reset"].special, .wrapper.style1 input[type="button"].special, .wrapper.style1 button.special, .wrapper.style1 .button.special { box-shadow: none; background-color: #ffffff; color: #555555; } .wrapper.style1 input[type="submit"].special:hover, .wrapper.style1 input[type="reset"].special:hover, .wrapper.style1 input[type="button"].special:hover, .wrapper.style1 button.special:hover, .wrapper.style1 .button.special:hover { color: white; } .wrapper.style1 input[type="submit"].special:active, .wrapper.style1 input[type="reset"].special:active, .wrapper.style1 input[type="button"].special:active, .wrapper.style1 button.special:active, .wrapper.style1 .button.special:active { color: #f2f2f2; } .wrapper.style1 label { color: #ffffff; } .wrapper.style1 input[type="text"], .wrapper.style1 input[type="password"], .wrapper.style1 input[type="email"], .wrapper.style1 select, .wrapper.style1 textarea { color: inherit; background-color: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 input[type="text"]:focus, .wrapper.style1 input[type="password"]:focus, .wrapper.style1 input[type="email"]:focus, .wrapper.style1 select:focus, .wrapper.style1 textarea:focus { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } .wrapper.style1 .select-wrapper:before { color: rgba(255, 255, 255, 0.5); } .wrapper.style1 input[type="checkbox"] + label, .wrapper.style1 input[type="radio"] + label { color: #e6e6e6; } .wrapper.style1 input[type="checkbox"] + label:before, .wrapper.style1 input[type="radio"] + label:before { background-color: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 input[type="checkbox"]:checked + label:before, .wrapper.style1 input[type="radio"]:checked + label:before { background-color: #ffffff; border-color: #ffffff; color: #555555; } .wrapper.style1 input[type="checkbox"]:focus + label:before, .wrapper.style1 input[type="radio"]:focus + label:before { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } .wrapper.style1 ::-webkit-input-placeholder { color: #ffffff !important; } .wrapper.style1 :-moz-placeholder { color: #ffffff !important; } .wrapper.style1 ::-moz-placeholder { color: #ffffff !important; } .wrapper.style1 :-ms-input-placeholder { color: #ffffff !important; } .wrapper.style1 .formerize-placeholder { color: #ffffff !important; } .wrapper.style1 .icon { color: #ffffff; } .wrapper.style1 .icon.icon-button { color: #222222; border: 2x solid rgba(255, 255, 255, 0.5); box-shadow: 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style1 .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style1 .icon.icon-button.selected:hover, .wrapper.style1 .icon.icon-button.selected:focus, .wrapper.style1 .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style1 .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } .wrapper.style1 ul.alt > li { border-top-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 ul.piped > li { border-right-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 ul.icons > li .icon-toogle { color: #e6e6e6; } .wrapper.style1 ul.icons > li .icon-toogle:hover, .wrapper.style1 ul.icons > li .icon-toogle:focus, .wrapper.style1 ul.icons > li .icon-toogle:active, .wrapper.style1 ul.icons > li .icon-toogle.selected { color: #ffffff; background-color: #484848; } .wrapper.style1 table tbody tr { border-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 table tbody tr:nth-child(2n + 1) { background-color: #f97f4f; } .wrapper.style1 table th { color: #ffffff; } .wrapper.style1 table thead { border-bottom-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 table tfoot { border-top-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 table.alt tbody tr td { border-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 .tooltip:after { color: #555555; background: #ffffff; } .wrapper.style1 .tooltip:before { color: #ffffff; } .wrapper.style1 .tooltip.tooltip-s:before, .wrapper.style1 .tooltip.tooltip-se:before, .wrapper.style1 .tooltip.tooltip-sw:before { border-bottom-color: #ffffff; } .wrapper.style1 .tooltip.tooltip-n:before, .wrapper.style1 .tooltip.tooltip-ne:before, .wrapper.style1 .tooltip.tooltip-nw:before { border-top-color: #ffffff; } .wrapper.style1 .tooltip.tooltip-w:before { border-left-color: #ffffff; } .wrapper.style1 .tooltip.tooltip-e:before { border-right-color: #ffffff; } .wrapper.style1 input, .wrapper.style1 select, .wrapper.style1 textarea { color: #e6e6e6; } .wrapper.style1 a { color: inherit; border-bottom-color: rgba(255, 255, 255, 0.75); color: #ffffff; } .wrapper.style1 strong, .wrapper.style1 b { color: #ffffff; } .wrapper.style1 h1, .wrapper.style1 h2, .wrapper.style1 h3, .wrapper.style1 h4, .wrapper.style1 h5, .wrapper.style1 h6 { font-family: "Raleway", Helvetica, sans-serif; color: #ffffff; } .wrapper.style1 blockquote { border-left-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 code { background: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 hr { border-bottom-color: rgba(255, 255, 255, 0.5); } .wrapper.style2 { padding: 2em 0 2.5em 0; background-color: #fbfbfb; color: #48494f; } .wrapper.style2 input[type="submit"], .wrapper.style2 input[type="reset"], .wrapper.style2 input[type="button"], .wrapper.style2 button, .wrapper.style2 .button { background-color: transparent; color: #4c4c4c; box-shadow: inset 0 0 0 2px #e6e6e6; } .wrapper.style2 input[type="submit"]:hover, .wrapper.style2 input[type="reset"]:hover, .wrapper.style2 input[type="button"]:hover, .wrapper.style2 button:hover, .wrapper.style2 .button:hover { background-color: rgba(144, 144, 144, 0.075) !important; } .wrapper.style2 input[type="submit"]:active, .wrapper.style2 input[type="reset"]:active, .wrapper.style2 input[type="button"]:active, .wrapper.style2 button:active, .wrapper.style2 .button:active { background-color: rgba(144, 144, 144, 0.15) !important; } .wrapper.style2 input[type="submit"].alt, .wrapper.style2 input[type="reset"].alt, .wrapper.style2 input[type="button"].alt, .wrapper.style2 button.alt, .wrapper.style2 .button.alt { background-color: transparent; color: #4c4c4c !important; box-shadow: inset 0 0 0 2px #e6e6e6; } .wrapper.style2 input[type="submit"].alt:hover, .wrapper.style2 input[type="reset"].alt:hover, .wrapper.style2 input[type="button"].alt:hover, .wrapper.style2 button.alt:hover, .wrapper.style2 .button.alt:hover { background-color: rgba(144, 144, 144, 0.075); } .wrapper.style2 input[type="submit"].alt:active, .wrapper.style2 input[type="reset"].alt:active, .wrapper.style2 input[type="button"].alt:active, .wrapper.style2 button.alt:active, .wrapper.style2 .button.alt:active { background-color: rgba(144, 144, 144, 0.15); } .wrapper.style2 input[type="submit"].alt.icon:before, .wrapper.style2 input[type="reset"].alt.icon:before, .wrapper.style2 input[type="button"].alt.icon:before, .wrapper.style2 button.alt.icon:before, .wrapper.style2 .button.alt.icon:before { color: #54555c; } .wrapper.style2 input[type="submit"].special, .wrapper.style2 input[type="reset"].special, .wrapper.style2 input[type="button"].special, .wrapper.style2 button.special, .wrapper.style2 .button.special { box-shadow: none; background-color: #fbfbfb; color: #4c4c4c; } .wrapper.style2 input[type="submit"].special:hover, .wrapper.style2 input[type="reset"].special:hover, .wrapper.style2 input[type="button"].special:hover, .wrapper.style2 button.special:hover, .wrapper.style2 .button.special:hover { background-color: white; } .wrapper.style2 input[type="submit"].special:active, .wrapper.style2 input[type="reset"].special:active, .wrapper.style2 input[type="button"].special:active, .wrapper.style2 button.special:active, .wrapper.style2 .button.special:active { background-color: #eeeeee; } .wrapper.style2 label { color: #4c4c4c; } .wrapper.style2 input[type="text"], .wrapper.style2 input[type="password"], .wrapper.style2 input[type="email"], .wrapper.style2 select, .wrapper.style2 textarea { color: inherit; background-color: rgba(144, 144, 144, 0.075); border-color: #e6e6e6; } .wrapper.style2 input[type="text"]:focus, .wrapper.style2 input[type="password"]:focus, .wrapper.style2 input[type="email"]:focus, .wrapper.style2 select:focus, .wrapper.style2 textarea:focus { border-color: #555555; box-shadow: 0 0 0 1px #555555; } .wrapper.style2 .select-wrapper:before { color: #e6e6e6; } .wrapper.style2 input[type="checkbox"] + label, .wrapper.style2 input[type="radio"] + label { color: #48494f; } .wrapper.style2 input[type="checkbox"] + label:before, .wrapper.style2 input[type="radio"] + label:before { background-color: rgba(144, 144, 144, 0.075); border-color: #e6e6e6; } .wrapper.style2 input[type="checkbox"]:checked + label:before, .wrapper.style2 input[type="radio"]:checked + label:before { background-color: #555555; border-color: #555555; color: #ffffff; } .wrapper.style2 input[type="checkbox"]:focus + label:before, .wrapper.style2 input[type="radio"]:focus + label:before { border-color: #555555; box-shadow: 0 0 0 1px #555555; } .wrapper.style2 ::-webkit-input-placeholder { color: #54555c !important; } .wrapper.style2 :-moz-placeholder { color: #54555c !important; } .wrapper.style2 ::-moz-placeholder { color: #54555c !important; } .wrapper.style2 :-ms-input-placeholder { color: #54555c !important; } .wrapper.style2 .formerize-placeholder { color: #54555c !important; } .wrapper.style2 .icon { color: #54555c; } .wrapper.style2 .icon.icon-button { color: #c8c8c8; border: 2x solid #e6e6e6; box-shadow: 0 0 2px #e6e6e6; } .wrapper.style2 .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style2 .icon.icon-button.selected:hover, .wrapper.style2 .icon.icon-button.selected:focus, .wrapper.style2 .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style2 .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } .wrapper.style2 ul.alt > li { border-top-color: #e6e6e6; } .wrapper.style2 ul.piped > li { border-right-color: #e6e6e6; } .wrapper.style2 ul.icons > li .icon-toogle { color: #48494f; } .wrapper.style2 ul.icons > li .icon-toogle:hover, .wrapper.style2 ul.icons > li .icon-toogle:focus, .wrapper.style2 ul.icons > li .icon-toogle:active, .wrapper.style2 ul.icons > li .icon-toogle.selected { color: #4c4c4c; background-color: #eeeeee; } .wrapper.style2 table tbody tr { border-color: #e6e6e6; } .wrapper.style2 table tbody tr:nth-child(2n + 1) { background-color: rgba(144, 144, 144, 0.075); } .wrapper.style2 table th { color: #4c4c4c; } .wrapper.style2 table thead { border-bottom-color: #e6e6e6; } .wrapper.style2 table tfoot { border-top-color: #e6e6e6; } .wrapper.style2 table.alt tbody tr td { border-color: #e6e6e6; } .wrapper.style2 .tooltip:after { color: #fbfbfb; background: #4c4c4c; } .wrapper.style2 .tooltip:before { color: #4c4c4c; } .wrapper.style2 .tooltip.tooltip-s:before, .wrapper.style2 .tooltip.tooltip-se:before, .wrapper.style2 .tooltip.tooltip-sw:before { border-bottom-color: #4c4c4c; } .wrapper.style2 .tooltip.tooltip-n:before, .wrapper.style2 .tooltip.tooltip-ne:before, .wrapper.style2 .tooltip.tooltip-nw:before { border-top-color: #4c4c4c; } .wrapper.style2 .tooltip.tooltip-w:before { border-left-color: #4c4c4c; } .wrapper.style2 .tooltip.tooltip-e:before { border-right-color: #4c4c4c; } .wrapper.style2 input, .wrapper.style2 select, .wrapper.style2 textarea { color: #48494f; } .wrapper.style2 a { color: inherit; border-bottom-color: #d6d6d6; } .wrapper.style2 a:hover { color: #555555; } .wrapper.style2 strong, .wrapper.style2 b { color: #4c4c4c; } .wrapper.style2 h1, .wrapper.style2 h2, .wrapper.style2 h3, .wrapper.style2 h4, .wrapper.style2 h5, .wrapper.style2 h6 { font-family: "Raleway", Helvetica, sans-serif; color: #4c4c4c; } .wrapper.style2 blockquote { border-left-color: #e6e6e6; } .wrapper.style2 code { background: rgba(144, 144, 144, 0.075); border-color: #e6e6e6; } .wrapper.style2 hr { border-bottom-color: #e6e6e6; } .wrapper.style3 { background-color: #f7f7f7; color: #757574; } .wrapper.style3 input[type="submit"], .wrapper.style3 input[type="reset"], .wrapper.style3 input[type="button"], .wrapper.style3 button, .wrapper.style3 .button { background-color: transparent; color: #4c4c4c; box-shadow: inset 0 0 0 2px #d6d6d6; } .wrapper.style3 input[type="submit"]:hover, .wrapper.style3 input[type="reset"]:hover, .wrapper.style3 input[type="button"]:hover, .wrapper.style3 button:hover, .wrapper.style3 .button:hover { background-color: rgba(144, 144, 144, 0.075) !important; } .wrapper.style3 input[type="submit"]:active, .wrapper.style3 input[type="reset"]:active, .wrapper.style3 input[type="button"]:active, .wrapper.style3 button:active, .wrapper.style3 .button:active { background-color: rgba(144, 144, 144, 0.15) !important; } .wrapper.style3 input[type="submit"].alt, .wrapper.style3 input[type="reset"].alt, .wrapper.style3 input[type="button"].alt, .wrapper.style3 button.alt, .wrapper.style3 .button.alt { background-color: transparent; color: #4c4c4c !important; box-shadow: inset 0 0 0 2px #d6d6d6; } .wrapper.style3 input[type="submit"].alt:hover, .wrapper.style3 input[type="reset"].alt:hover, .wrapper.style3 input[type="button"].alt:hover, .wrapper.style3 button.alt:hover, .wrapper.style3 .button.alt:hover { background-color: rgba(144, 144, 144, 0.075); } .wrapper.style3 input[type="submit"].alt:active, .wrapper.style3 input[type="reset"].alt:active, .wrapper.style3 input[type="button"].alt:active, .wrapper.style3 button.alt:active, .wrapper.style3 .button.alt:active { background-color: rgba(144, 144, 144, 0.15); } .wrapper.style3 input[type="submit"].alt.icon:before, .wrapper.style3 input[type="reset"].alt.icon:before, .wrapper.style3 input[type="button"].alt.icon:before, .wrapper.style3 button.alt.icon:before, .wrapper.style3 .button.alt.icon:before { color: #b0b0b0; } .wrapper.style3 input[type="submit"].special, .wrapper.style3 input[type="reset"].special, .wrapper.style3 input[type="button"].special, .wrapper.style3 button.special, .wrapper.style3 .button.special { box-shadow: none; background-color: #f7f7f7; color: #4c4c4c; } .wrapper.style3 input[type="submit"].special:hover, .wrapper.style3 input[type="reset"].special:hover, .wrapper.style3 input[type="button"].special:hover, .wrapper.style3 button.special:hover, .wrapper.style3 .button.special:hover { background-color: white; } .wrapper.style3 input[type="submit"].special:active, .wrapper.style3 input[type="reset"].special:active, .wrapper.style3 input[type="button"].special:active, .wrapper.style3 button.special:active, .wrapper.style3 .button.special:active { background-color: #eaeaea; } .wrapper.style3 label { color: #4c4c4c; } .wrapper.style3 input[type="text"], .wrapper.style3 input[type="password"], .wrapper.style3 input[type="email"], .wrapper.style3 select, .wrapper.style3 textarea { color: inherit; background-color: rgba(144, 144, 144, 0.075); border-color: #d6d6d6; } .wrapper.style3 input[type="text"]:focus, .wrapper.style3 input[type="password"]:focus, .wrapper.style3 input[type="email"]:focus, .wrapper.style3 select:focus, .wrapper.style3 textarea:focus { border-color: #555555; box-shadow: 0 0 0 1px #555555; } .wrapper.style3 .select-wrapper:before { color: #d6d6d6; } .wrapper.style3 input[type="checkbox"] + label, .wrapper.style3 input[type="radio"] + label { color: #757574; } .wrapper.style3 input[type="checkbox"] + label:before, .wrapper.style3 input[type="radio"] + label:before { background-color: rgba(144, 144, 144, 0.075); border-color: #d6d6d6; } .wrapper.style3 input[type="checkbox"]:checked + label:before, .wrapper.style3 input[type="radio"]:checked + label:before { background-color: #555555; border-color: #555555; color: #ffffff; } .wrapper.style3 input[type="checkbox"]:focus + label:before, .wrapper.style3 input[type="radio"]:focus + label:before { border-color: #555555; box-shadow: 0 0 0 1px #555555; } .wrapper.style3 ::-webkit-input-placeholder { color: #b0b0b0 !important; } .wrapper.style3 :-moz-placeholder { color: #b0b0b0 !important; } .wrapper.style3 ::-moz-placeholder { color: #b0b0b0 !important; } .wrapper.style3 :-ms-input-placeholder { color: #b0b0b0 !important; } .wrapper.style3 .formerize-placeholder { color: #b0b0b0 !important; } .wrapper.style3 .icon { color: #b0b0b0; } .wrapper.style3 .icon.icon-button { color: #c4c4c4; border: 2x solid #d6d6d6; box-shadow: 0 0 2px #d6d6d6; } .wrapper.style3 .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style3 .icon.icon-button.selected:hover, .wrapper.style3 .icon.icon-button.selected:focus, .wrapper.style3 .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style3 .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } .wrapper.style3 ul.alt > li { border-top-color: #d6d6d6; } .wrapper.style3 ul.piped > li { border-right-color: #d6d6d6; } .wrapper.style3 ul.icons > li .icon-toogle { color: #757574; } .wrapper.style3 ul.icons > li .icon-toogle:hover, .wrapper.style3 ul.icons > li .icon-toogle:focus, .wrapper.style3 ul.icons > li .icon-toogle:active, .wrapper.style3 ul.icons > li .icon-toogle.selected { color: #4c4c4c; background-color: #eaeaea; } .wrapper.style3 table tbody tr { border-color: #d6d6d6; } .wrapper.style3 table tbody tr:nth-child(2n + 1) { background-color: rgba(144, 144, 144, 0.075); } .wrapper.style3 table th { color: #4c4c4c; } .wrapper.style3 table thead { border-bottom-color: #d6d6d6; } .wrapper.style3 table tfoot { border-top-color: #d6d6d6; } .wrapper.style3 table.alt tbody tr td { border-color: #d6d6d6; } .wrapper.style3 .tooltip:after { color: #f7f7f7; background: #4c4c4c; } .wrapper.style3 .tooltip:before { color: #4c4c4c; } .wrapper.style3 .tooltip.tooltip-s:before, .wrapper.style3 .tooltip.tooltip-se:before, .wrapper.style3 .tooltip.tooltip-sw:before { border-bottom-color: #4c4c4c; } .wrapper.style3 .tooltip.tooltip-n:before, .wrapper.style3 .tooltip.tooltip-ne:before, .wrapper.style3 .tooltip.tooltip-nw:before { border-top-color: #4c4c4c; } .wrapper.style3 .tooltip.tooltip-w:before { border-left-color: #4c4c4c; } .wrapper.style3 .tooltip.tooltip-e:before { border-right-color: #4c4c4c; } .wrapper.style3 input, .wrapper.style3 select, .wrapper.style3 textarea { color: #757574; } .wrapper.style3 a { color: inherit; border-bottom-color: #c6c6c6; } .wrapper.style3 a:hover { color: #f97f4f; } .wrapper.style3 strong, .wrapper.style3 b { color: #4c4c4c; } .wrapper.style3 h1, .wrapper.style3 h2, .wrapper.style3 h3, .wrapper.style3 h4, .wrapper.style3 h5, .wrapper.style3 h6 { font-family: "Raleway", Helvetica, sans-serif; color: #4c4c4c; } .wrapper.style3 blockquote { border-left-color: #d6d6d6; } .wrapper.style3 code { background: rgba(144, 144, 144, 0.075); border-color: #d6d6d6; } .wrapper.style3 hr { border-bottom-color: #d6d6d6; } .wrapper.style4 { background-color: #f97f4f; color: #feece5; } .wrapper.style4 input[type="submit"], .wrapper.style4 input[type="reset"], .wrapper.style4 input[type="button"], .wrapper.style4 button, .wrapper.style4 .button { background-color: transparent; color: #ffffff; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style4 input[type="submit"]:hover, .wrapper.style4 input[type="reset"]:hover, .wrapper.style4 input[type="button"]:hover, .wrapper.style4 button:hover, .wrapper.style4 .button:hover { background-color: rgba(255, 255, 255, 0.15) !important; } .wrapper.style4 input[type="submit"]:active, .wrapper.style4 input[type="reset"]:active, .wrapper.style4 input[type="button"]:active, .wrapper.style4 button:active, .wrapper.style4 .button:active { background-color: rgba(255, 255, 255, 0.4) !important; } .wrapper.style4 input[type="submit"].alt, .wrapper.style4 input[type="reset"].alt, .wrapper.style4 input[type="button"].alt, .wrapper.style4 button.alt, .wrapper.style4 .button.alt { background-color: transparent; color: #ffffff !important; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style4 input[type="submit"].alt:hover, .wrapper.style4 input[type="reset"].alt:hover, .wrapper.style4 input[type="button"].alt:hover, .wrapper.style4 button.alt:hover, .wrapper.style4 .button.alt:hover { background-color: rgba(255, 255, 255, 0.15); } .wrapper.style4 input[type="submit"].alt:active, .wrapper.style4 input[type="reset"].alt:active, .wrapper.style4 input[type="button"].alt:active, .wrapper.style4 button.alt:active, .wrapper.style4 .button.alt:active { background-color: rgba(255, 255, 255, 0.4); } .wrapper.style4 input[type="submit"].alt.icon:before, .wrapper.style4 input[type="reset"].alt.icon:before, .wrapper.style4 input[type="button"].alt.icon:before, .wrapper.style4 button.alt.icon:before, .wrapper.style4 .button.alt.icon:before { color: #75564f; } .wrapper.style4 input[type="submit"].special, .wrapper.style4 input[type="reset"].special, .wrapper.style4 input[type="button"].special, .wrapper.style4 button.special, .wrapper.style4 .button.special { box-shadow: none; background-color: #ffffff; color: #f97f4f; } .wrapper.style4 input[type="submit"].special:hover, .wrapper.style4 input[type="reset"].special:hover, .wrapper.style4 input[type="button"].special:hover, .wrapper.style4 button.special:hover, .wrapper.style4 .button.special:hover { color: white; } .wrapper.style4 input[type="submit"].special:active, .wrapper.style4 input[type="reset"].special:active, .wrapper.style4 input[type="button"].special:active, .wrapper.style4 button.special:active, .wrapper.style4 .button.special:active { color: #f2f2f2; } .wrapper.style4 label { color: #ffffff; } .wrapper.style4 input[type="text"], .wrapper.style4 input[type="password"], .wrapper.style4 input[type="email"], .wrapper.style4 select, .wrapper.style4 textarea { color: inherit; background-color: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 input[type="text"]:focus, .wrapper.style4 input[type="password"]:focus, .wrapper.style4 input[type="email"]:focus, .wrapper.style4 select:focus, .wrapper.style4 textarea:focus { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } .wrapper.style4 .select-wrapper:before { color: rgba(255, 255, 255, 0.5); } .wrapper.style4 input[type="checkbox"] + label, .wrapper.style4 input[type="radio"] + label { color: #feece5; } .wrapper.style4 input[type="checkbox"] + label:before, .wrapper.style4 input[type="radio"] + label:before { background-color: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 input[type="checkbox"]:checked + label:before, .wrapper.style4 input[type="radio"]:checked + label:before { background-color: #ffffff; border-color: #ffffff; color: #f97f4f; } .wrapper.style4 input[type="checkbox"]:focus + label:before, .wrapper.style4 input[type="radio"]:focus + label:before { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } .wrapper.style4 ::-webkit-input-placeholder { color: #75564f !important; } .wrapper.style4 :-moz-placeholder { color: #75564f !important; } .wrapper.style4 ::-moz-placeholder { color: #75564f !important; } .wrapper.style4 :-ms-input-placeholder { color: #75564f !important; } .wrapper.style4 .formerize-placeholder { color: #75564f !important; } .wrapper.style4 .icon { color: #75564f; } .wrapper.style4 .icon.icon-button { color: #db4307; border: 2x solid rgba(255, 255, 255, 0.5); box-shadow: 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style4 .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style4 .icon.icon-button.selected:hover, .wrapper.style4 .icon.icon-button.selected:focus, .wrapper.style4 .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style4 .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } .wrapper.style4 ul.alt > li { border-top-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 ul.piped > li { border-right-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 ul.icons > li .icon-toogle { color: #feece5; } .wrapper.style4 ul.icons > li .icon-toogle:hover, .wrapper.style4 ul.icons > li .icon-toogle:focus, .wrapper.style4 ul.icons > li .icon-toogle:active, .wrapper.style4 ul.icons > li .icon-toogle.selected { color: #ffffff; background-color: #f86d36; } .wrapper.style4 table tbody tr { border-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 table tbody tr:nth-child(2n + 1) { background-color: rgba(255, 255, 255, 0.15); } .wrapper.style4 table th { color: #ffffff; } .wrapper.style4 table thead { border-bottom-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 table tfoot { border-top-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 table.alt tbody tr td { border-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 .tooltip:after { color: #f97f4f; background: #ffffff; } .wrapper.style4 .tooltip:before { color: #ffffff; } .wrapper.style4 .tooltip.tooltip-s:before, .wrapper.style4 .tooltip.tooltip-se:before, .wrapper.style4 .tooltip.tooltip-sw:before { border-bottom-color: #ffffff; } .wrapper.style4 .tooltip.tooltip-n:before, .wrapper.style4 .tooltip.tooltip-ne:before, .wrapper.style4 .tooltip.tooltip-nw:before { border-top-color: #ffffff; } .wrapper.style4 .tooltip.tooltip-w:before { border-left-color: #ffffff; } .wrapper.style4 .tooltip.tooltip-e:before { border-right-color: #ffffff; } .wrapper.style4 input, .wrapper.style4 select, .wrapper.style4 textarea { color: #feece5; } .wrapper.style4 a { color: inherit; border-bottom-color: rgba(255, 255, 255, 0.75); color: #75564f; } .wrapper.style4 strong, .wrapper.style4 b { color: #ffffff; } .wrapper.style4 h1, .wrapper.style4 h2, .wrapper.style4 h3, .wrapper.style4 h4, .wrapper.style4 h5, .wrapper.style4 h6 { font-family: "Raleway", Helvetica, sans-serif; color: #ffffff; } .wrapper.style4 blockquote { border-left-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 code { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 hr { border-bottom-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 { background-color: #ffffff; color: #5e5e5e; } .wrapper.style5 input[type="submit"], .wrapper.style5 input[type="reset"], .wrapper.style5 input[type="button"], .wrapper.style5 button, .wrapper.style5 .button { background-color: transparent; color: #4c4c4c; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style5 input[type="submit"]:hover, .wrapper.style5 input[type="reset"]:hover, .wrapper.style5 input[type="button"]:hover, .wrapper.style5 button:hover, .wrapper.style5 .button:hover { background-color: rgba(255, 255, 255, 0.15) !important; } .wrapper.style5 input[type="submit"]:active, .wrapper.style5 input[type="reset"]:active, .wrapper.style5 input[type="button"]:active, .wrapper.style5 button:active, .wrapper.style5 .button:active { background-color: rgba(255, 255, 255, 0.4) !important; } .wrapper.style5 input[type="submit"].alt, .wrapper.style5 input[type="reset"].alt, .wrapper.style5 input[type="button"].alt, .wrapper.style5 button.alt, .wrapper.style5 .button.alt { background-color: transparent; color: #4c4c4c !important; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style5 input[type="submit"].alt:hover, .wrapper.style5 input[type="reset"].alt:hover, .wrapper.style5 input[type="button"].alt:hover, .wrapper.style5 button.alt:hover, .wrapper.style5 .button.alt:hover { background-color: rgba(255, 255, 255, 0.15); } .wrapper.style5 input[type="submit"].alt:active, .wrapper.style5 input[type="reset"].alt:active, .wrapper.style5 input[type="button"].alt:active, .wrapper.style5 button.alt:active, .wrapper.style5 .button.alt:active { background-color: rgba(255, 255, 255, 0.4); } .wrapper.style5 input[type="submit"].alt.icon:before, .wrapper.style5 input[type="reset"].alt.icon:before, .wrapper.style5 input[type="button"].alt.icon:before, .wrapper.style5 button.alt.icon:before, .wrapper.style5 .button.alt.icon:before { color: #f97f4f; } .wrapper.style5 input[type="submit"].special, .wrapper.style5 input[type="reset"].special, .wrapper.style5 input[type="button"].special, .wrapper.style5 button.special, .wrapper.style5 .button.special { box-shadow: none; background-color: #4c4c4c; color: #ffffff; } .wrapper.style5 input[type="submit"].special:hover, .wrapper.style5 input[type="reset"].special:hover, .wrapper.style5 input[type="button"].special:hover, .wrapper.style5 button.special:hover, .wrapper.style5 .button.special:hover { color: #595959; } .wrapper.style5 input[type="submit"].special:active, .wrapper.style5 input[type="reset"].special:active, .wrapper.style5 input[type="button"].special:active, .wrapper.style5 button.special:active, .wrapper.style5 .button.special:active { color: #3f3f3f; } .wrapper.style5 label { color: #4c4c4c; } .wrapper.style5 input[type="text"], .wrapper.style5 input[type="password"], .wrapper.style5 input[type="email"], .wrapper.style5 select, .wrapper.style5 textarea { color: inherit; background-color: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 input[type="text"]:focus, .wrapper.style5 input[type="password"]:focus, .wrapper.style5 input[type="email"]:focus, .wrapper.style5 select:focus, .wrapper.style5 textarea:focus { border-color: #4c4c4c; box-shadow: 0 0 0 1px #4c4c4c; } .wrapper.style5 .select-wrapper:before { color: rgba(255, 255, 255, 0.5); } .wrapper.style5 input[type="checkbox"] + label, .wrapper.style5 input[type="radio"] + label { color: #5e5e5e; } .wrapper.style5 input[type="checkbox"] + label:before, .wrapper.style5 input[type="radio"] + label:before { background-color: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 input[type="checkbox"]:checked + label:before, .wrapper.style5 input[type="radio"]:checked + label:before { background-color: #4c4c4c; border-color: #4c4c4c; color: #ffffff; } .wrapper.style5 input[type="checkbox"]:focus + label:before, .wrapper.style5 input[type="radio"]:focus + label:before { border-color: #4c4c4c; box-shadow: 0 0 0 1px #4c4c4c; } .wrapper.style5 ::-webkit-input-placeholder { color: #f97f4f !important; } .wrapper.style5 :-moz-placeholder { color: #f97f4f !important; } .wrapper.style5 ::-moz-placeholder { color: #f97f4f !important; } .wrapper.style5 :-ms-input-placeholder { color: #f97f4f !important; } .wrapper.style5 .formerize-placeholder { color: #f97f4f !important; } .wrapper.style5 .icon { color: #f97f4f; } .wrapper.style5 .icon.icon-button { color: #cccccc; border: 2x solid rgba(255, 255, 255, 0.5); box-shadow: 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style5 .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style5 .icon.icon-button.selected:hover, .wrapper.style5 .icon.icon-button.selected:focus, .wrapper.style5 .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style5 .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } .wrapper.style5 ul.alt > li { border-top-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 ul.piped > li { border-right-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 ul.icons > li .icon-toogle { color: #5e5e5e; } .wrapper.style5 ul.icons > li .icon-toogle:hover, .wrapper.style5 ul.icons > li .icon-toogle:focus, .wrapper.style5 ul.icons > li .icon-toogle:active, .wrapper.style5 ul.icons > li .icon-toogle.selected { color: #4c4c4c; background-color: #f86d36; } .wrapper.style5 table tbody tr { border-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 table tbody tr:nth-child(2n + 1) { background-color: rgba(255, 255, 255, 0.15); } .wrapper.style5 table th { color: #4c4c4c; } .wrapper.style5 table thead { border-bottom-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 table tfoot { border-top-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 table.alt tbody tr td { border-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 .tooltip:after { color: #ffffff; background: #4c4c4c; } .wrapper.style5 .tooltip:before { color: #4c4c4c; } .wrapper.style5 .tooltip.tooltip-s:before, .wrapper.style5 .tooltip.tooltip-se:before, .wrapper.style5 .tooltip.tooltip-sw:before { border-bottom-color: #4c4c4c; } .wrapper.style5 .tooltip.tooltip-n:before, .wrapper.style5 .tooltip.tooltip-ne:before, .wrapper.style5 .tooltip.tooltip-nw:before { border-top-color: #4c4c4c; } .wrapper.style5 .tooltip.tooltip-w:before { border-left-color: #4c4c4c; } .wrapper.style5 .tooltip.tooltip-e:before { border-right-color: #4c4c4c; } .wrapper.style5 input, .wrapper.style5 select, .wrapper.style5 textarea { color: #5e5e5e; } .wrapper.style5 a { color: inherit; border-bottom-color: rgba(255, 255, 255, 0.75); color: #f97f4f; } .wrapper.style5 a:hover { text-decoration: underline; } .wrapper.style5 strong, .wrapper.style5 b { color: #4c4c4c; } .wrapper.style5 h1, .wrapper.style5 h2, .wrapper.style5 h3, .wrapper.style5 h4, .wrapper.style5 h5, .wrapper.style5 h6 { font-family: "Raleway", Helvetica, sans-serif; color: #4c4c4c; } .wrapper.style5 blockquote { border-left-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 code { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 hr { border-bottom-color: rgba(255, 255, 255, 0.5); } @media screen and (max-width: 980px) { .wrapper { padding: 4em 4em 2em 4em ; } .wrapper > .inner { width: 95%; } } @media screen and (max-width: 736px) and (orientation: landscape) { .wrapper { padding: 3em 3em 1em 3em ; } } @media screen and (max-width: 736px) and (orientation: portrait) { .wrapper { padding: 3em 1.5em 1em 1.5em ; } } @media screen and (max-width: 480px) and (orientation: landscape) { .wrapper { padding: 2em 1.5em 0.1em 1.5em ; } } @media screen and (max-width: 480px) and (orientation: portrait) { .wrapper { padding: 2em 1em 0.1em 1em ; } } /* Nav */ #nav { -moz-transform: translateX(20em); -webkit-transform: translateX(20em); -ms-transform: translateX(20em); transform: translateX(20em); -moz-transition: -moz-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s; -webkit-transition: -webkit-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s; -ms-transition: -ms-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s; transition: transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s; -webkit-overflow-scrolling: touch; background: gainsboro; box-shadow: none; color: #4c4c4c; height: 100%; max-width: 80%; overflow-y: auto; padding: 3em 2em; position: fixed; right: 0; top: 0; visibility: hidden; width: 20em; z-index: 1000002; } #nav > ul { margin: 0 0 1em 0; } #nav > ul.links { list-style: none; padding: 0; } #nav > ul.links > li { padding: 0; } #nav > ul.links > li > a:not(.button) { border: 0; border-top: solid 1px #e6e6e6; color: inherit; display: block; line-height: 3.5; text-decoration: none; } #nav > ul.links > li > .button { display: block; margin: 0.5em 0 0 0; } #nav > ul.links > li:first-child > a:not(.button) { border-top: 0 !important; } #nav .close { text-decoration: none; -moz-transition: color 0.3s ease-in-out; -webkit-transition: color 0.3s ease-in-out; -ms-transition: color 0.3s ease-in-out; transition: color 0.3s ease-in-out; -webkit-tap-highlight-color: transparent; border: 0; color: #54555c; cursor: pointer; display: block; height: 3.25em; line-height: 3.25; padding-right: 1.25em; position: absolute; right: 0; text-align: right; top: 0; vertical-align: middle; width: 7em; } #nav .close:before { content: ""; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; } #nav .close:before { font-size: 1.25em; } #nav .close:hover { color: #4c4c4c; } @media screen and (max-width: 736px) { #nav .close { height: 4em; line-height: 4; } } #nav.visible { -moz-transform: translateX(0); -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); box-shadow: 0 0 1.5em 0 rgba(0, 0, 0, 0.2); visibility: visible; } @media screen and (max-width: 736px) { #nav { padding: 2.5em 1.75em; } } /* Banner */ .banner { background-color: #555555; color: #e6e6e6; padding: 6em 0 4em 0 ; -moz-align-items: center; -webkit-align-items: center; -ms-align-items: center; align-items: center; display: -moz-flex; display: -webkit-flex; display: -ms-flex; display: flex; -moz-justify-content: center; -webkit-justify-content: center; -ms-justify-content: center; justify-content: center; background-image: url("images/overlay.png"), url("images/unitex-pattern.png"); background-position: top left, center center; background-attachment: fixed, fixed; background-size: auto, cover; height: 100vh; min-height: 35em; } .banner input[type="submit"], .banner input[type="reset"], .banner input[type="button"], .banner button, .banner .button { background-color: transparent; color: #ffffff; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .banner input[type="submit"]:hover, .banner input[type="reset"]:hover, .banner input[type="button"]:hover, .banner button:hover, .banner .button:hover { background-color: #f97f4f !important; } .banner input[type="submit"]:active, .banner input[type="reset"]:active, .banner input[type="button"]:active, .banner button:active, .banner .button:active { background-color: rgba(255, 255, 255, 0.4) !important; } .banner input[type="submit"].alt, .banner input[type="reset"].alt, .banner input[type="button"].alt, .banner button.alt, .banner .button.alt { background-color: transparent; color: #ffffff !important; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .banner input[type="submit"].alt:hover, .banner input[type="reset"].alt:hover, .banner input[type="button"].alt:hover, .banner button.alt:hover, .banner .button.alt:hover { background-color: #f97f4f; } .banner input[type="submit"].alt:active, .banner input[type="reset"].alt:active, .banner input[type="button"].alt:active, .banner button.alt:active, .banner .button.alt:active { background-color: rgba(255, 255, 255, 0.4); } .banner input[type="submit"].alt.icon:before, .banner input[type="reset"].alt.icon:before, .banner input[type="button"].alt.icon:before, .banner button.alt.icon:before, .banner .button.alt.icon:before { color: #ffffff; } .banner input[type="submit"].special, .banner input[type="reset"].special, .banner input[type="button"].special, .banner button.special, .banner .button.special { box-shadow: none; background-color: #ffffff; color: #555555; } .banner input[type="submit"].special:hover, .banner input[type="reset"].special:hover, .banner input[type="button"].special:hover, .banner button.special:hover, .banner .button.special:hover { color: white; } .banner input[type="submit"].special:active, .banner input[type="reset"].special:active, .banner input[type="button"].special:active, .banner button.special:active, .banner .button.special:active { color: #f2f2f2; } .banner label { color: #ffffff; } .banner input[type="text"], .banner input[type="password"], .banner input[type="email"], .banner select, .banner textarea { color: inherit; background-color: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } .banner input[type="text"]:focus, .banner input[type="password"]:focus, .banner input[type="email"]:focus, .banner select:focus, .banner textarea:focus { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } .banner .select-wrapper:before { color: rgba(255, 255, 255, 0.5); } .banner input[type="checkbox"] + label, .banner input[type="radio"] + label { color: #e6e6e6; } .banner input[type="checkbox"] + label:before, .banner input[type="radio"] + label:before { background-color: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } .banner input[type="checkbox"]:checked + label:before, .banner input[type="radio"]:checked + label:before { background-color: #ffffff; border-color: #ffffff; color: #555555; } .banner input[type="checkbox"]:focus + label:before, .banner input[type="radio"]:focus + label:before { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } .banner ::-webkit-input-placeholder { color: #ffffff !important; } .banner :-moz-placeholder { color: #ffffff !important; } .banner ::-moz-placeholder { color: #ffffff !important; } .banner :-ms-input-placeholder { color: #ffffff !important; } .banner .formerize-placeholder { color: #ffffff !important; } .banner .icon { color: #ffffff; } .banner .icon.icon-button { color: #222222; border: 2x solid rgba(255, 255, 255, 0.5); box-shadow: 0 0 2px rgba(255, 255, 255, 0.5); } .banner .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .banner .icon.icon-button.selected:hover, .banner .icon.icon-button.selected:focus, .banner .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .banner .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } .banner ul.alt > li { border-top-color: rgba(255, 255, 255, 0.5); } .banner ul.piped > li { border-right-color: rgba(255, 255, 255, 0.5); } .banner ul.icons > li .icon-toogle { color: #e6e6e6; } .banner ul.icons > li .icon-toogle:hover, .banner ul.icons > li .icon-toogle:focus, .banner ul.icons > li .icon-toogle:active, .banner ul.icons > li .icon-toogle.selected { color: #ffffff; background-color: #484848; } .banner table tbody tr { border-color: rgba(255, 255, 255, 0.5); } .banner table tbody tr:nth-child(2n + 1) { background-color: #f97f4f; } .banner table th { color: #ffffff; } .banner table thead { border-bottom-color: rgba(255, 255, 255, 0.5); } .banner table tfoot { border-top-color: rgba(255, 255, 255, 0.5); } .banner table.alt tbody tr td { border-color: rgba(255, 255, 255, 0.5); } .banner .tooltip:after { color: #555555; background: #ffffff; } .banner .tooltip:before { color: #ffffff; } .banner .tooltip.tooltip-s:before, .banner .tooltip.tooltip-se:before, .banner .tooltip.tooltip-sw:before { border-bottom-color: #ffffff; } .banner .tooltip.tooltip-n:before, .banner .tooltip.tooltip-ne:before, .banner .tooltip.tooltip-nw:before { border-top-color: #ffffff; } .banner .tooltip.tooltip-w:before { border-left-color: #ffffff; } .banner .tooltip.tooltip-e:before { border-right-color: #ffffff; } .banner input, .banner select, .banner textarea { color: #e6e6e6; } .banner a { color: inherit; border-bottom-color: rgba(255, 255, 255, 0.75); color: #ffffff; } .banner strong, .banner b { color: #ffffff; } .banner h1, .banner h2, .banner h3, .banner h4, .banner h5, .banner h6 { font-family: "Raleway", Helvetica, sans-serif; color: #ffffff; } .banner blockquote { border-left-color: rgba(255, 255, 255, 0.5); } .banner code { background: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } .banner hr { border-bottom-color: rgba(255, 255, 255, 0.5); } .banner.post { height: 15em; min-height: 14em; } .banner.blog, .banner.category { height: 91vh; min-height: 23em; padding: 8em 0 8em 0; } .banner h1 { display: block; color: #fff; line-height: 1.1em; text-shadow: 0px 1px 0px rgba(50, 59, 64, 0.56); font-size: 3em; font-weight: bold; margin-bottom: 0.2em; margin-top: 0.2em; } .banner p { font-size: 1.1em; line-height: 1; margin-bottom: 1em; } .banner p br { display: inline; } .banner .content { -moz-transition: opacity 0.5s ease, -moz-transform 1s ease; -webkit-transition: opacity 0.5s ease, -webkit-transform 1s ease; -ms-transition: opacity 0.5s ease, -ms-transform 1s ease; transition: opacity 0.5s ease, transform 1s ease; -moz-transform: translateX(0); -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); opacity: 1; text-align: center; } .banner .content .banner-heading { display: inline-block; margin-bottom: 0px; padding: 0px; border-radius: 3px; color: rgba(255, 255, 255, 0.58); font-size: 1em; line-height: 0.5em; letter-spacing: 0.5px; text-transform: uppercase; } .banner .content > :last-child { margin-bottom: 0; } .banner .content > .inner { margin-left: auto; margin-right: auto; width: 90%; display: block; color: rgba(255, 255, 255, 0.78); line-height: 1.3em; font-size: 1.2em; font-weight: 300; margin-top: 2em; margin-bottom: 2em; } .banner .image { -moz-transition: opacity 1s ease, -moz-transform 1s ease; -webkit-transition: opacity 1s ease, -webkit-transform 1s ease; -ms-transition: opacity 1s ease, -ms-transform 1s ease; transition: opacity 1s ease, transform 1s ease; -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); opacity: 1; } .banner .image img { -moz-transition: opacity 0.75s ease; -webkit-transition: opacity 0.75s ease; -ms-transition: opacity 0.75s ease; transition: opacity 0.75s ease; -moz-transition-delay: 0.75s; -webkit-transition-delay: 0.75s; -ms-transition-delay: 0.75s; transition-delay: 0.75s; opacity: 1; } @media screen and (max-width: 980px) { .banner { height: auto; min-height: 0; } .banner.summary { height: auto; min-height: 0; } .banner .content { margin: 2em 0em 0 0; } .banner .content > .inner { width: 90%; } } @media screen and (max-width: 980px) and (orientation: portrait) { .banner { padding: 8em 3em 6em 3em ; -moz-flex-direction: column-reverse; -webkit-flex-direction: column-reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; } .banner .content { display: block; width: 100%; text-align: center; margin: 0 0 2em 0; } .banner .image { overflow: hidden; } } @media screen and (max-width: 736px) { .banner .content > .inner { width: 100%; } .banner h1 { font-size: 2em; margin-top: 2.6em; } .banner p { font-size: 1em; line-height: inherit; } } @media screen and (max-width: 736px) and (orientation: landscape) { .banner { padding: 6em 2em 4em 2em ; } .banner .content { margin: 0 0 2em 0; } .banner .image { font-size: 0.8em; width: 15em; max-width: 20vw; } .banner .image .inner, .banner .image:before, .banner .image:after { font-size: 0.8em; } } @media screen and (max-width: 736px) and (orientation: portrait) { .banner { padding: 3em 1.5em 1em 1.5em ; } .banner .image { font-size: 0.6em; max-width: 60vw; } } @media screen and (max-width: 480px) and (orientation: landscape) { .banner { padding: 3em 1.5em 1em 1.5em ; } .banner .image { font-size: 0.7em; } .banner .actions { font-size: 0.8em; } } @media screen and (max-width: 480px) and (orientation: portrait) { .banner { padding: 8em 1em 7em 1em; } } body.is-mobile .banner { background-attachment: scroll, scroll; } body.is-loading .banner .content { -moz-transform: translateX(2em); -webkit-transform: translateX(2em); -ms-transform: translateX(2em); transform: translateX(2em); opacity: 0; } body.is-loading .banner .image { -moz-transform: translateY(4em); -webkit-transform: translateY(4em); -ms-transform: translateY(4em); transform: translateY(4em); opacity: 0; } body.is-loading .banner .image img { opacity: 0; } @media screen and (max-width: 980px) and (orientation: portrait) { body.is-loading .banner .content { -moz-transform: none; -webkit-transform: none; -ms-transform: none; transform: none; opacity: 1; } body.is-loading .banner .image { -moz-transform: translateY(2em); -webkit-transform: translateY(2em); -ms-transform: translateY(2em); transform: translateY(2em); } } /* Header */ #header { background-color: #555555; color: #e6e6e6; padding: 4.5em 0 2.5em 0 ; -moz-align-items: center; -webkit-align-items: center; -ms-align-items: center; align-items: center; display: -moz-flex; display: -webkit-flex; display: -ms-flex; display: flex; -moz-justify-content: center; -webkit-justify-content: center; -ms-justify-content: center; justify-content: center; background-image: url("images/overlay.png"), url("images/unitex-pattern.png"); background-position: top left, center center; background-attachment: fixed, fixed; background-size: auto, cover; height: 100vh; min-height: 35em; } #header input[type="submit"], #header input[type="reset"], #header input[type="button"], #header button, #header .button { background-color: transparent; color: #ffffff; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } #header input[type="submit"]:hover, #header input[type="reset"]:hover, #header input[type="button"]:hover, #header button:hover, #header .button:hover { background-color: #f97f4f !important; } #header input[type="submit"]:active, #header input[type="reset"]:active, #header input[type="button"]:active, #header button:active, #header .button:active { background-color: rgba(255, 255, 255, 0.4) !important; } #header input[type="submit"].alt, #header input[type="reset"].alt, #header input[type="button"].alt, #header button.alt, #header .button.alt { background-color: transparent; color: #ffffff !important; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } #header input[type="submit"].alt:hover, #header input[type="reset"].alt:hover, #header input[type="button"].alt:hover, #header button.alt:hover, #header .button.alt:hover { background-color: #f97f4f; } #header input[type="submit"].alt:active, #header input[type="reset"].alt:active, #header input[type="button"].alt:active, #header button.alt:active, #header .button.alt:active { background-color: rgba(255, 255, 255, 0.4); } #header input[type="submit"].alt.icon:before, #header input[type="reset"].alt.icon:before, #header input[type="button"].alt.icon:before, #header button.alt.icon:before, #header .button.alt.icon:before { color: #ffffff; } #header input[type="submit"].special, #header input[type="reset"].special, #header input[type="button"].special, #header button.special, #header .button.special { box-shadow: none; background-color: #ffffff; color: #555555; } #header input[type="submit"].special:hover, #header input[type="reset"].special:hover, #header input[type="button"].special:hover, #header button.special:hover, #header .button.special:hover { color: white; } #header input[type="submit"].special:active, #header input[type="reset"].special:active, #header input[type="button"].special:active, #header button.special:active, #header .button.special:active { color: #f2f2f2; } #header label { color: #ffffff; } #header input[type="text"], #header input[type="password"], #header input[type="email"], #header select, #header textarea { color: inherit; background-color: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } #header input[type="text"]:focus, #header input[type="password"]:focus, #header input[type="email"]:focus, #header select:focus, #header textarea:focus { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } #header .select-wrapper:before { color: rgba(255, 255, 255, 0.5); } #header input[type="checkbox"] + label, #header input[type="radio"] + label { color: #e6e6e6; } #header input[type="checkbox"] + label:before, #header input[type="radio"] + label:before { background-color: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } #header input[type="checkbox"]:checked + label:before, #header input[type="radio"]:checked + label:before { background-color: #ffffff; border-color: #ffffff; color: #555555; } #header input[type="checkbox"]:focus + label:before, #header input[type="radio"]:focus + label:before { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } #header ::-webkit-input-placeholder { color: #ffffff !important; } #header :-moz-placeholder { color: #ffffff !important; } #header ::-moz-placeholder { color: #ffffff !important; } #header :-ms-input-placeholder { color: #ffffff !important; } #header .formerize-placeholder { color: #ffffff !important; } #header .icon { color: #ffffff; } #header .icon.icon-button { color: #222222; border: 2x solid rgba(255, 255, 255, 0.5); box-shadow: 0 0 2px rgba(255, 255, 255, 0.5); } #header .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } #header .icon.icon-button.selected:hover, #header .icon.icon-button.selected:focus, #header .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } #header .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } #header ul.alt > li { border-top-color: rgba(255, 255, 255, 0.5); } #header ul.piped > li { border-right-color: rgba(255, 255, 255, 0.5); } #header ul.icons > li .icon-toogle { color: #e6e6e6; } #header ul.icons > li .icon-toogle:hover, #header ul.icons > li .icon-toogle:focus, #header ul.icons > li .icon-toogle:active, #header ul.icons > li .icon-toogle.selected { color: #ffffff; background-color: #484848; } #header table tbody tr { border-color: rgba(255, 255, 255, 0.5); } #header table tbody tr:nth-child(2n + 1) { background-color: #f97f4f; } #header table th { color: #ffffff; } #header table thead { border-bottom-color: rgba(255, 255, 255, 0.5); } #header table tfoot { border-top-color: rgba(255, 255, 255, 0.5); } #header table.alt tbody tr td { border-color: rgba(255, 255, 255, 0.5); } #header .tooltip:after { color: #555555; background: #ffffff; } #header .tooltip:before { color: #ffffff; } #header .tooltip.tooltip-s:before, #header .tooltip.tooltip-se:before, #header .tooltip.tooltip-sw:before { border-bottom-color: #ffffff; } #header .tooltip.tooltip-n:before, #header .tooltip.tooltip-ne:before, #header .tooltip.tooltip-nw:before { border-top-color: #ffffff; } #header .tooltip.tooltip-w:before { border-left-color: #ffffff; } #header .tooltip.tooltip-e:before { border-right-color: #ffffff; } #header input, #header select, #header textarea { color: #e6e6e6; } #header a { color: inherit; border-bottom-color: rgba(255, 255, 255, 0.75); color: #ffffff; } #header strong, #header b { color: #ffffff; } #header h1, #header h2, #header h3, #header h4, #header h5, #header h6 { font-family: "Raleway", Helvetica, sans-serif; color: #ffffff; } #header blockquote { border-left-color: rgba(255, 255, 255, 0.5); } #header code { background: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } #header hr { border-bottom-color: rgba(255, 255, 255, 0.5); } #header h1 { font-size: 3.25em; font-weight: bold; margin-bottom: 0.5em; } #header p { font-size: 1.5em; line-height: 1.35; } #header p br { display: inline; } #header .win-color { color: #00aef0; } #header .linux-color { color: #f97f4f; } #header .osx-color { color: #b7b1b1; } #header .other-color { color: #fdbf2e; } #header input[type="submit"].win:hover, #header input[type="reset"].win:hover, #header input[type="button"].win:hover, #header button.win:hover, #header .button.win:hover { background-color: #00aef0 !important; } #header input[type="submit"].linux:hover, #header input[type="reset"].linux:hover, #header input[type="button"].linux:hover, #header button.linux:hover, #header .button.linux:hover { background-color: #f97f4f !important; } #header input[type="submit"].osx:hover, #header input[type="reset"].osx:hover, #header input[type="button"].osx:hover, #header button.osx:hover, #header .button.osx:hover { background-color: #b7b1b1 !important; } #header input[type="submit"].other:hover, #header input[type="reset"].other:hover, #header input[type="button"].other:hover, #header button.other:hover, #header .button.other:hover { background-color: #fdbf2e !important; } #header .content { -moz-transition: opacity 0.5s ease, -moz-transform 1s ease; -webkit-transition: opacity 0.5s ease, -webkit-transform 1s ease; -ms-transition: opacity 0.5s ease, -ms-transform 1s ease; transition: opacity 0.5s ease, transform 1s ease; -moz-transform: translateX(0); -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); opacity: 1; text-align: center; } #header .content > :last-child { margin-bottom: 0; } #header .content > .inner { margin-left: auto; margin-right: auto; width: 35em; } #header .image { -moz-transition: opacity 1s ease, -moz-transform 1s ease; -webkit-transition: opacity 1s ease, -webkit-transform 1s ease; -ms-transition: opacity 1s ease, -ms-transform 1s ease; transition: opacity 1s ease, transform 1s ease; -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); opacity: 1; } #header .image img { -moz-transition: opacity 0.75s ease; -webkit-transition: opacity 0.75s ease; -ms-transition: opacity 0.75s ease; transition: opacity 0.75s ease; -moz-transition-delay: 0.75s; -webkit-transition-delay: 0.75s; -ms-transition-delay: 0.75s; transition-delay: 0.75s; opacity: 1; } @media screen and (max-width: 980px) { #header { height: auto; min-height: 0; } #header .content { margin: 2em 0em 0 0; } #header .content > .inner { width: 90%; } } @media screen and (max-width: 980px) and (orientation: portrait) { #header { padding: 8em 3em 6em 3em ; -moz-flex-direction: column-reverse; -webkit-flex-direction: column-reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; } #header .content { display: block; width: 100%; text-align: center; margin: 0 0 2em 0; } #header .image { overflow: hidden; } } @media screen and (max-width: 736px) { #header .content > .inner { width: 100%; } #header h1 { font-size: 2em; margin-top: 0.5em; } #header p { font-size: 1em; line-height: inherit; } } @media screen and (max-width: 736px) and (orientation: landscape) { #header { padding: 4em 2em 2em 2em ; } #header .content { margin: 0 0 2em 0; } #header .image { font-size: 0.8em; width: 15em; max-width: 20vw; } #header .image .inner, #header .image:before, #header .image:after { font-size: 0.8em; } } @media screen and (max-width: 736px) and (orientation: portrait) { #header { padding: 3em 1.5em 1em 1.5em ; } #header .image { font-size: 0.6em; max-width: 60vw; } } @media screen and (max-width: 480px) and (orientation: landscape) { #header { padding: 3em 1.5em 1em 1.5em ; } #header .image { font-size: 0.7em; } #header .actions { font-size: 0.8em; } } @media screen and (max-width: 480px) and (orientation: portrait) { #header { padding: 4em 1em 2em 1em ; } } body.is-mobile #header { background-attachment: scroll, scroll; } body.is-loading #header .content { -moz-transform: translateX(2em); -webkit-transform: translateX(2em); -ms-transform: translateX(2em); transform: translateX(2em); opacity: 0; } body.is-loading #header .image { -moz-transform: translateY(4em); -webkit-transform: translateY(4em); -ms-transform: translateY(4em); transform: translateY(4em); opacity: 0; } body.is-loading #header .image img { opacity: 0; } @media screen and (max-width: 980px) and (orientation: portrait) { body.is-loading #header .content { -moz-transform: none; -webkit-transform: none; -ms-transform: none; transform: none; opacity: 1; } body.is-loading #header .image { -moz-transform: translateY(2em); -webkit-transform: translateY(2em); -ms-transform: translateY(2em); transform: translateY(2em); } } /* Highlights */ #highlights { padding: 0em 0 1em 0; /* .slick-dots { margin: 0; } */ } #highlights .container { text-align: center; } #highlights .highlights-carousel { margin-bottom: 0; } #highlights a, #highlights a:visited, #highlights a:active { text-decoration: none; border-bottom: 1px dotted; } #highlights p { margin: 0; } #highlights .slick-dots { bottom: -50px; } #highlights .slick-slide { line-height: 1.3; height: 4.6em; } #highlights .slick-slide::before { content: ''; height: 100%; display: inline-block; vertical-align: middle; } #highlights .highlight-text { display: inline-block; vertical-align: middle; } @media screen and (max-width: 736px) { #highlights { padding: 0em 0 1em 0; } #highlights .slick-slide { height: auto; } } /* About */ #about .image { box-shadow: unset; } #about-features #functions-items { margin-bottom: 7px; } #about-features #corpus-processing-suite { padding-top: 0em; } #about-features #corpus-processing-suite ul.actions.piped li { padding: 2px; line-height: 2em; } @media screen and (max-width: 736px) { #about-features #corpus-processing-suite ul.actions.piped li { display: block; text-align: center; width: 100%; } #about-features #corpus-processing-suite ul.actions.piped li > * { width: 100%; margin: 0 !important; } } #about-features .ug-label, #about-features .ug-badge { padding: 5px 7px; font-size: 110%; margin-bottom: 7px; } /* Screenshots */ #screenshots { padding: 2em 0 2em 0; } #screenshots .slick-slider { margin-bottom: 0px; } #screenshots .slick-initialized .slick-slide { float: none; display: inline-block; vertical-align: middle; } #screenshots h3 { text-align: center; } @media screen and (max-width: 736px) { #screenshots { padding: 1em 0 1.5em 0; } #screenshots .slick-prev { left: 0; } #screenshots .slick-next { right: 0; } } /* Downloads */ #downloads { padding: 3em 0 1em 0 ; background-image: url("images/overlay.png"), url("images/unitex-pattern.png"); background-position: top left, center center; background-attachment: fixed, fixed; background-size: auto, cover; } #downloads .slick-slider { margin-bottom: 0px; } #downloads .download-minimal-os, #downloads .download-filetype, #downloads .download-arch { vertical-align: super; font-size: 0.5em; margin-left: 3px; } #downloads .win-color { color: #00aef0; } #downloads .linux-color { color: #f97f4f; } #downloads .osx-color { color: #b7b1b1; } #downloads .other-color { color: #fdbf2e; } #downloads input[type="submit"].win:hover, #downloads input[type="reset"].win:hover, #downloads input[type="button"].win:hover, #downloads button.win:hover, #downloads .button.win:hover { background-color: #00aef0 !important; } #downloads input[type="submit"].linux:hover, #downloads input[type="reset"].linux:hover, #downloads input[type="button"].linux:hover, #downloads button.linux:hover, #downloads .button.linux:hover { background-color: #f97f4f !important; } #downloads input[type="submit"].osx:hover, #downloads input[type="reset"].osx:hover, #downloads input[type="button"].osx:hover, #downloads button.osx:hover, #downloads .button.osx:hover { background-color: #b7b1b1 !important; } #downloads input[type="submit"].other:hover, #downloads input[type="reset"].other:hover, #downloads input[type="button"].other:hover, #downloads button.other:hover, #downloads .button.other:hover { background-color: #fdbf2e !important; } #downloads .download-description a, #downloads .download-description a:visited, #downloads .download-description a:active { text-decoration: none; border-bottom: 1px dotted; } #downloads .tooltip:after { font-size: 0.8em; } #downloads .actions-release { margin-top: 1em; } @media screen and (max-width: 736px) { #downloads { padding: 3em 0 1em 0 ; } #downloads .slick-prev { left: 0; } #downloads .slick-next { right: 0; } #downloads .actions-release { margin-top: 2em; } } /* More */ #more { padding: 3em 0 2em 0 ; } #more ul { margin: 0; } #more .row.uniform { margin-bottom: 1em; } #more i:hover { -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); } #more h3 { line-height: 1; margin-top: 1em; } @media screen and (max-width: 736px) { #more { padding: 3em 0 1em 0 ; } #more h2, #more h3, #more h4, #more h5, #more h6 { text-align: center; } } /* Footer */ #footer { background-color: #f7f7f7; color: #757574; padding: 1em 0 1em 0; display: block; float: left; width: 100%; height: auto; line-height: 1.2; position: relative; } #footer input, #footer select, #footer textarea { color: #757574; } #footer a { color: inherit; border-bottom-color: #c6c6c6; } #footer a:hover { color: #f97f4f; } #footer strong, #footer b { color: #4c4c4c; } #footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 { font-family: "Raleway", Helvetica, sans-serif; color: #4c4c4c; } #footer blockquote { border-left-color: #d6d6d6; } #footer code { background: rgba(144, 144, 144, 0.075); border-color: #d6d6d6; } #footer hr { border-bottom-color: #d6d6d6; } #footer a { color: inherit; } #footer #quick-button { text-decoration: none; overflow: hidden; text-indent: 100%; white-space: nowrap; text-decoration: none; position: absolute; top: -1.45rem; left: 50%; margin-left: -0.5rem; text-align: center; border-radius: 15%; outline: none; width: 2rem; height: 2rem; line-height: 2; vertical-align: middle; color: #e6e6e6; background-color: transparent; -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s; -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s; -ms-transition: opacity 0.3s 0s, visibility 0s 0.3s; transition: opacity 0.3s 0s, visibility 0s 0.3s; opacity: 0.8; } #footer #quick-button:before { content: ""; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; } #footer #quick-button:before { font-size: 1.5rem; margin-left: -2rem; } #footer #quick-button:hover { color: #555555; opacity: 1; -moz-transition: opacity 0.3s 0s, visibility 0s; -webkit-transition: opacity 0.3s 0s, visibility 0s; -ms-transition: opacity 0.3s 0s, visibility 0s; transition: opacity 0.3s 0s, visibility 0s; } #footer .icons, #footer .actions { width: auto; text-align: center; } #footer .icons { float: right; margin-top: 0.6em; margin-bottom: 0.5em; } #footer .actions { float: left; font-size: 0.8em; margin: 0px 0px 0.5em; } #footer .credits, #footer .copyright { float: left; width: auto; text-align: center; color: #898b8c; line-height: 1.1; clear: both; font-size: 0.8em; } #footer .credits { margin: 0px 0px 0.5em; } #footer .copyright { margin: 0px 0px 0.2em; } @media screen and (max-width: 1280px) and (orientation: landscape) { #footer .icons { margin-right: 3em; } } @media screen and (max-width: 980px) { #footer { padding: 1em 4em 2em 4em; } #footer .actions, #footer .credits, #footer .copyright, #footer .icons { width: 100%; } #footer .credits { padding-top: 1.5em; } } @media screen and (max-width: 980px) and (orientation: landscape) { #footer .icons { margin-right: 0; } } @media screen and (max-width: 736px) { #footer .credits, #footer .copyright { width: 100%; margin-bottom: 1em; } #footer .actions { padding-top: 2em; } #footer .actions, #footer .icons { width: 100%; margin-bottom: 1em; } } @media screen and (max-width: 736px) and (orientation: landscape) { #footer { padding: 1em 6em 1em 6em; } } @media screen and (max-width: 736px) and (orientation: portrait) { #footer { padding: 1em 1em 1em 2em; } } /* Back to top */ #backtotop { display: none; } #backtotop a { text-decoration: none; overflow: hidden; text-indent: 100%; white-space: nowrap; position: fixed; right: 2em; bottom: 1.55rem; text-decoration: none; text-indent: 2.3em; outline: none; width: 2.3rem; height: 2.3rem; border-radius: 50%; text-align: center; line-height: 2.3rem; vertical-align: middle; color: #ffffff !important; background-color: #555555; -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s; -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s; -ms-transition: opacity 0.3s 0s, visibility 0s 0.3s; transition: opacity 0.3s 0s, visibility 0s 0.3s; opacity: 0.8; z-index: 1; } #backtotop a:before { content: ""; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; } #backtotop a:before { font-size: 1.8rem; margin-left: -1.25em; } #backtotop a:hover { background-color: #555555; opacity: 1; -moz-transition: opacity 0.3s 0s, visibility 0s; -webkit-transition: opacity 0.3s 0s, visibility 0s; -ms-transition: opacity 0.3s 0s, visibility 0s; transition: opacity 0.3s 0s, visibility 0s; } @media screen and (max-width: 736px) { #backtotop a { right: 1em; bottom: 2em; } } /* Javascript disabled */ html.no-js .navbar { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } html.no-js .download-description { height: 9em; overflow: hidden; } @media screen and (max-width: 980px) { html.no-js .download-description { height: 7em; } } @media screen and (max-width: 736px) { html.no-js .download-description { height: 6em; } } /* Autumn Content */ .autumn-content .autumn-index-post { visibility: hidden; } .autumn-content .autumn-index-post .autumn-post-meta { display: block; text-align: center; margin-top: 1.8em; } @media screen and (max-width: 736px) { .autumn-content .autumn-index-post .autumn-post-meta { margin-top: 3em; } } .autumn-content .autumn-index-post .autumn-post-meta .month-year { text-transform: uppercase; } .autumn-content .autumn-index-post .autumn-post-thumbnail { text-align: center; margin-top: 10px; } .autumn-content .autumn-index-post .autumn-post-thumbnail-tag { display: inherit; height: 100px; left: 200px; margin: 0 auto; text-align: center; width: 100px; } .autumn-content .autumn-index-post .autumn-post-thumbnail-tag-letters { color: #fff; font-family: "Ubuntu Mono"; font-size: 50px; font-weight: bold; line-height: 50px; position: relative; top: 25px; } @media screen and (max-width: 736px) { .autumn-content .autumn-index-post .autumn-post-header .autumn-post-title { font-weight: 600; text-align: center; } } @media screen and (max-width: 736px) { .autumn-content .autumn-index-post .autumn-post-excerpt { text-align: center; } } .autumn-content .autumn-index-post .autumn-post-excerpt p { margin: 0 0 0.7em 0; } .autumn-content .autumn-index-post .autumn-index-post-tags { font-size: 0.8125em; } @media screen and (max-width: 736px) { .autumn-content .autumn-index-post .autumn-index-post-tags { text-align: center; } } .autumn-content .fadeInDown { -moz-animation-duration: 1s; -webkit-animation-duration: 1s; -ms-animation-duration: 1s; animation-duration: 1s; -moz-animation-fill-mode: both; -webkit-animation-fill-mode: both; -ms-animation-fill-mode: both; animation-fill-mode: both; -moz-animation-name: fadeInDown; -webkit-animation-name: fadeInDown; -ms-animation-name: fadeInDown; animation-name: fadeInDown; visibility: visible !important; } @-moz-keyframes fadeInDown { 0% { opacity: 0; -moz-transform: translateY(-20px); -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); } 100% { opacity: 1; -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } } @-webkit-keyframes fadeInDown { 0% { opacity: 0; -moz-transform: translateY(-20px); -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); } 100% { opacity: 1; -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } } @-ms-keyframes fadeInDown { 0% { opacity: 0; -moz-transform: translateY(-20px); -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); } 100% { opacity: 1; -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } } @keyframes fadeInDown { 0% { opacity: 0; -moz-transform: translateY(-20px); -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); } 100% { opacity: 1; -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } } .autumn-content .pagination { padding: 1px; color: #4C4C4C; } @media screen and (max-width: 736px) { .autumn-content .pagination { margin-top: 5em; } } html.no-js .autumn-content .autumn-index-post { visibility: visible; } /* Autumn Post Content */ .autumn-post-content p { margin: 0 0 1em 0; } .autumn-post-content ul li { padding-top: 0.2em; } .autumn-post-content blockquote { margin: 1em 0 1em 0; } .autumn-post-content > div:not(.autumn-post-title) p.with-image { text-align: center; padding-top: 1.125rem; padding-bottom: 1.125rem; } .autumn-post-content > div:not(.autumn-post-title) a { color: #f97f4f; } .autumn-post-content > div:not(.autumn-post-title) h1, .autumn-post-content > div:not(.autumn-post-title) h2 { font-weight: bold; } #autumn-post footer hr { margin: 0px; }
themes/unitexgramlab/css/unitexgramlab.css
@charset "UTF-8"; @import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono|Raleway|Open+Sans:300,400); /*! Unitex/GramLab Theme by martinec https://github.com/UnitexGramLab/unitexgramlab-org Released under the MIT license Fractal by HTML5 UP http://html5up.net Released under the CCA 3.0 license Skel.scss by n33 http://skel.io Released under the MIT license Bourbon by thoughtbot, inc. http://bourbon.io Released under the MIT license Jeet by MojoTech http://jeet.gs Released under the MIT license Slick by <NAME> https://github.com/kenwheeler/slick Released under the MIT license HTML5 Boilerplate https://html5boilerplate.com Released under the MIT License Primer by GitHub, Inc. https://github.com/primer/primer Released under the MIT license kbdfun by kremalicious http://kremalicious.com/using-kbd-for-fun-and-profit/ Released under the MIT license RRSSB by dbox and joshuatuscan http://www.kurtnoble.com/labs/rrssb Released under the MIT license jQuery Accordion CSS http://vctrfrnndz.com Released under the MIT license fancyBox CSS http://fancyapps.com/fancybox Released under the CC BY-NC 3.0 license */ /* Reset */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } body { -webkit-text-size-adjust: none; } /* Box Model */ *, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } /* Containers */ .container { margin-left: auto; margin-right: auto; } .container.\31 25\25 { width: 100%; max-width: 82.5em; min-width: 66em; } .container.\37 5\25 { width: 49.5em; } .container.\35 0\25 { width: 33em; } .container.\32 5\25 { width: 16.5em; } .container { width: 66em; } @media screen and (max-width: 1680px) { .container.\31 25\25 { width: 100%; max-width: 82.5em; min-width: 66em; } .container.\37 5\25 { width: 49.5em; } .container.\35 0\25 { width: 33em; } .container.\32 5\25 { width: 16.5em; } .container { width: 66em; } } @media screen and (max-width: 1280px) { .container.\31 25\25 { width: 100%; max-width: 112.5%; min-width: 90%; } .container.\37 5\25 { width: 67.5%; } .container.\35 0\25 { width: 45%; } .container.\32 5\25 { width: 22.5%; } .container { width: 90%; } } @media screen and (max-width: 980px) { .container.\31 25\25 { width: 100%; max-width: 112.5%; min-width: 90%; } .container.\37 5\25 { width: 67.5%; } .container.\35 0\25 { width: 45%; } .container.\32 5\25 { width: 22.5%; } .container { width: 90%; } } @media screen and (max-width: 736px) { .container.\31 25\25 { width: 100%; max-width: 112.5%; min-width: 90%; } .container.\37 5\25 { width: 67.5%; } .container.\35 0\25 { width: 45%; } .container.\32 5\25 { width: 22.5%; } .container { width: 90% !important; } } @media screen and (max-width: 480px) { .container.\31 25\25 { width: 100%; max-width: 112.5%; min-width: 90%; } .container.\37 5\25 { width: 67.5%; } .container.\35 0\25 { width: 45%; } .container.\32 5\25 { width: 22.5%; } .container { width: 90% !important; } } @media screen and (max-width: 360px) { .container.\31 25\25 { width: 100%; max-width: 112.5%; min-width: 90%; } .container.\37 5\25 { width: 67.5%; } .container.\35 0\25 { width: 45%; } .container.\32 5\25 { width: 22.5%; } .container { width: 90% !important; } } /* Grid */ .row { border-bottom: solid 1px transparent; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .row > * { float: left; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .row:after, .row:before { content: ''; display: block; clear: both; height: 0; } .row.uniform > * > :first-child { margin-top: 0; } .row.uniform > * > :last-child { margin-bottom: 0; } .row.\30 \25 > * { padding: 0 0 0 0em; } .row.\30 \25 { margin: 0 0 -1px 0em; } .row.uniform.\30 \25 > * { padding: 0em 0 0 0em; } .row.uniform.\30 \25 { margin: 0em 0 -1px 0em; } .row > * { padding: 0 0 0 1.5em; } .row { margin: 0 0 -1px -1.5em; } .row.uniform > * { padding: 1.5em 0 0 1.5em; } .row.uniform { margin: -1.5em 0 -1px -1.5em; } .row.\32 00\25 > * { padding: 0 0 0 3em; } .row.\32 00\25 { margin: 0 0 -1px -3em; } .row.uniform.\32 00\25 > * { padding: 3em 0 0 3em; } .row.uniform.\32 00\25 { margin: -3em 0 -1px -3em; } .row.\31 50\25 > * { padding: 0 0 0 2.25em; } .row.\31 50\25 { margin: 0 0 -1px -2.25em; } .row.uniform.\31 50\25 > * { padding: 2.25em 0 0 2.25em; } .row.uniform.\31 50\25 { margin: -2.25em 0 -1px -2.25em; } .row.\35 0\25 > * { padding: 0 0 0 0.75em; } .row.\35 0\25 { margin: 0 0 -1px -0.75em; } .row.uniform.\35 0\25 > * { padding: 0.75em 0 0 0.75em; } .row.uniform.\35 0\25 { margin: -0.75em 0 -1px -0.75em; } .row.\32 5\25 > * { padding: 0 0 0 0.375em; } .row.\32 5\25 { margin: 0 0 -1px -0.375em; } .row.uniform.\32 5\25 > * { padding: 0.375em 0 0 0.375em; } .row.uniform.\32 5\25 { margin: -0.375em 0 -1px -0.375em; } .\31 2u, .\31 2u\24 { width: 100%; clear: none; margin-left: 0; } .\31 1u, .\31 1u\24 { width: 91.6666666667%; clear: none; margin-left: 0; } .\31 0u, .\31 0u\24 { width: 83.3333333333%; clear: none; margin-left: 0; } .\39 u, .\39 u\24 { width: 75%; clear: none; margin-left: 0; } .\38 u, .\38 u\24 { width: 66.6666666667%; clear: none; margin-left: 0; } .\37 u, .\37 u\24 { width: 58.3333333333%; clear: none; margin-left: 0; } .\36 u, .\36 u\24 { width: 50%; clear: none; margin-left: 0; } .\35 u, .\35 u\24 { width: 41.6666666667%; clear: none; margin-left: 0; } .\34 u, .\34 u\24 { width: 33.3333333333%; clear: none; margin-left: 0; } .\33 u, .\33 u\24 { width: 25%; clear: none; margin-left: 0; } .\32 u, .\32 u\24 { width: 16.6666666667%; clear: none; margin-left: 0; } .\31 u, .\31 u\24 { width: 8.3333333333%; clear: none; margin-left: 0; } .\31 2u\24 + *, .\31 1u\24 + *, .\31 0u\24 + *, .\39 u\24 + *, .\38 u\24 + *, .\37 u\24 + *, .\36 u\24 + *, .\35 u\24 + *, .\34 u\24 + *, .\33 u\24 + *, .\32 u\24 + *, .\31 u\24 + * { clear: left; } .\-11u { margin-left: 91.66667%; } .\-10u { margin-left: 83.33333%; } .\-9u { margin-left: 75%; } .\-8u { margin-left: 66.66667%; } .\-7u { margin-left: 58.33333%; } .\-6u { margin-left: 50%; } .\-5u { margin-left: 41.66667%; } .\-4u { margin-left: 33.33333%; } .\-3u { margin-left: 25%; } .\-2u { margin-left: 16.66667%; } .\-1u { margin-left: 8.33333%; } @media screen and (max-width: 1680px) { .row > * { padding: 0 0 0 1.5em; } .row { margin: 0 0 -1px -1.5em; } .row.uniform > * { padding: 1.5em 0 0 1.5em; } .row.uniform { margin: -1.5em 0 -1px -1.5em; } .row.\32 00\25 > * { padding: 0 0 0 3em; } .row.\32 00\25 { margin: 0 0 -1px -3em; } .row.uniform.\32 00\25 > * { padding: 3em 0 0 3em; } .row.uniform.\32 00\25 { margin: -3em 0 -1px -3em; } .row.\31 50\25 > * { padding: 0 0 0 2.25em; } .row.\31 50\25 { margin: 0 0 -1px -2.25em; } .row.uniform.\31 50\25 > * { padding: 2.25em 0 0 2.25em; } .row.uniform.\31 50\25 { margin: -2.25em 0 -1px -2.25em; } .row.\35 0\25 > * { padding: 0 0 0 0.75em; } .row.\35 0\25 { margin: 0 0 -1px -0.75em; } .row.uniform.\35 0\25 > * { padding: 0.75em 0 0 0.75em; } .row.uniform.\35 0\25 { margin: -0.75em 0 -1px -0.75em; } .row.\32 5\25 > * { padding: 0 0 0 0.375em; } .row.\32 5\25 { margin: 0 0 -1px -0.375em; } .row.uniform.\32 5\25 > * { padding: 0.375em 0 0 0.375em; } .row.uniform.\32 5\25 { margin: -0.375em 0 -1px -0.375em; } .\31 2u\28xlarge\29, .\31 2u\24\28xlarge\29 { width: 100%; clear: none; margin-left: 0; } .\31 1u\28xlarge\29, .\31 1u\24\28xlarge\29 { width: 91.6666666667%; clear: none; margin-left: 0; } .\31 0u\28xlarge\29, .\31 0u\24\28xlarge\29 { width: 83.3333333333%; clear: none; margin-left: 0; } .\39 u\28xlarge\29, .\39 u\24\28xlarge\29 { width: 75%; clear: none; margin-left: 0; } .\38 u\28xlarge\29, .\38 u\24\28xlarge\29 { width: 66.6666666667%; clear: none; margin-left: 0; } .\37 u\28xlarge\29, .\37 u\24\28xlarge\29 { width: 58.3333333333%; clear: none; margin-left: 0; } .\36 u\28xlarge\29, .\36 u\24\28xlarge\29 { width: 50%; clear: none; margin-left: 0; } .\35 u\28xlarge\29, .\35 u\24\28xlarge\29 { width: 41.6666666667%; clear: none; margin-left: 0; } .\34 u\28xlarge\29, .\34 u\24\28xlarge\29 { width: 33.3333333333%; clear: none; margin-left: 0; } .\33 u\28xlarge\29, .\33 u\24\28xlarge\29 { width: 25%; clear: none; margin-left: 0; } .\32 u\28xlarge\29, .\32 u\24\28xlarge\29 { width: 16.6666666667%; clear: none; margin-left: 0; } .\31 u\28xlarge\29, .\31 u\24\28xlarge\29 { width: 8.3333333333%; clear: none; margin-left: 0; } .\31 2u\24\28xlarge\29 + *, .\31 1u\24\28xlarge\29 + *, .\31 0u\24\28xlarge\29 + *, .\39 u\24\28xlarge\29 + *, .\38 u\24\28xlarge\29 + *, .\37 u\24\28xlarge\29 + *, .\36 u\24\28xlarge\29 + *, .\35 u\24\28xlarge\29 + *, .\34 u\24\28xlarge\29 + *, .\33 u\24\28xlarge\29 + *, .\32 u\24\28xlarge\29 + *, .\31 u\24\28xlarge\29 + * { clear: left; } .\-11u\28xlarge\29 { margin-left: 91.66667%; } .\-10u\28xlarge\29 { margin-left: 83.33333%; } .\-9u\28xlarge\29 { margin-left: 75%; } .\-8u\28xlarge\29 { margin-left: 66.66667%; } .\-7u\28xlarge\29 { margin-left: 58.33333%; } .\-6u\28xlarge\29 { margin-left: 50%; } .\-5u\28xlarge\29 { margin-left: 41.66667%; } .\-4u\28xlarge\29 { margin-left: 33.33333%; } .\-3u\28xlarge\29 { margin-left: 25%; } .\-2u\28xlarge\29 { margin-left: 16.66667%; } .\-1u\28xlarge\29 { margin-left: 8.33333%; } } @media screen and (max-width: 1280px) { .row > * { padding: 0 0 0 1.5em; } .row { margin: 0 0 -1px -1.5em; } .row.uniform > * { padding: 1.5em 0 0 1.5em; } .row.uniform { margin: -1.5em 0 -1px -1.5em; } .row.\32 00\25 > * { padding: 0 0 0 3em; } .row.\32 00\25 { margin: 0 0 -1px -3em; } .row.uniform.\32 00\25 > * { padding: 3em 0 0 3em; } .row.uniform.\32 00\25 { margin: -3em 0 -1px -3em; } .row.\31 50\25 > * { padding: 0 0 0 2.25em; } .row.\31 50\25 { margin: 0 0 -1px -2.25em; } .row.uniform.\31 50\25 > * { padding: 2.25em 0 0 2.25em; } .row.uniform.\31 50\25 { margin: -2.25em 0 -1px -2.25em; } .row.\35 0\25 > * { padding: 0 0 0 0.75em; } .row.\35 0\25 { margin: 0 0 -1px -0.75em; } .row.uniform.\35 0\25 > * { padding: 0.75em 0 0 0.75em; } .row.uniform.\35 0\25 { margin: -0.75em 0 -1px -0.75em; } .row.\32 5\25 > * { padding: 0 0 0 0.375em; } .row.\32 5\25 { margin: 0 0 -1px -0.375em; } .row.uniform.\32 5\25 > * { padding: 0.375em 0 0 0.375em; } .row.uniform.\32 5\25 { margin: -0.375em 0 -1px -0.375em; } .\31 2u\28large\29, .\31 2u\24\28large\29 { width: 100%; clear: none; margin-left: 0; } .\31 1u\28large\29, .\31 1u\24\28large\29 { width: 91.6666666667%; clear: none; margin-left: 0; } .\31 0u\28large\29, .\31 0u\24\28large\29 { width: 83.3333333333%; clear: none; margin-left: 0; } .\39 u\28large\29, .\39 u\24\28large\29 { width: 75%; clear: none; margin-left: 0; } .\38 u\28large\29, .\38 u\24\28large\29 { width: 66.6666666667%; clear: none; margin-left: 0; } .\37 u\28large\29, .\37 u\24\28large\29 { width: 58.3333333333%; clear: none; margin-left: 0; } .\36 u\28large\29, .\36 u\24\28large\29 { width: 50%; clear: none; margin-left: 0; } .\35 u\28large\29, .\35 u\24\28large\29 { width: 41.6666666667%; clear: none; margin-left: 0; } .\34 u\28large\29, .\34 u\24\28large\29 { width: 33.3333333333%; clear: none; margin-left: 0; } .\33 u\28large\29, .\33 u\24\28large\29 { width: 25%; clear: none; margin-left: 0; } .\32 u\28large\29, .\32 u\24\28large\29 { width: 16.6666666667%; clear: none; margin-left: 0; } .\31 u\28large\29, .\31 u\24\28large\29 { width: 8.3333333333%; clear: none; margin-left: 0; } .\31 2u\24\28large\29 + *, .\31 1u\24\28large\29 + *, .\31 0u\24\28large\29 + *, .\39 u\24\28large\29 + *, .\38 u\24\28large\29 + *, .\37 u\24\28large\29 + *, .\36 u\24\28large\29 + *, .\35 u\24\28large\29 + *, .\34 u\24\28large\29 + *, .\33 u\24\28large\29 + *, .\32 u\24\28large\29 + *, .\31 u\24\28large\29 + * { clear: left; } .\-11u\28large\29 { margin-left: 91.66667%; } .\-10u\28large\29 { margin-left: 83.33333%; } .\-9u\28large\29 { margin-left: 75%; } .\-8u\28large\29 { margin-left: 66.66667%; } .\-7u\28large\29 { margin-left: 58.33333%; } .\-6u\28large\29 { margin-left: 50%; } .\-5u\28large\29 { margin-left: 41.66667%; } .\-4u\28large\29 { margin-left: 33.33333%; } .\-3u\28large\29 { margin-left: 25%; } .\-2u\28large\29 { margin-left: 16.66667%; } .\-1u\28large\29 { margin-left: 8.33333%; } } @media screen and (max-width: 980px) { .row > * { padding: 0 0 0 1.5em; } .row { margin: 0 0 -1px -1.5em; } .row.uniform > * { padding: 1.5em 0 0 1.5em; } .row.uniform { margin: -1.5em 0 -1px -1.5em; } .row.\32 00\25 > * { padding: 0 0 0 3em; } .row.\32 00\25 { margin: 0 0 -1px -3em; } .row.uniform.\32 00\25 > * { padding: 3em 0 0 3em; } .row.uniform.\32 00\25 { margin: -3em 0 -1px -3em; } .row.\31 50\25 > * { padding: 0 0 0 2.25em; } .row.\31 50\25 { margin: 0 0 -1px -2.25em; } .row.uniform.\31 50\25 > * { padding: 2.25em 0 0 2.25em; } .row.uniform.\31 50\25 { margin: -2.25em 0 -1px -2.25em; } .row.\35 0\25 > * { padding: 0 0 0 0.75em; } .row.\35 0\25 { margin: 0 0 -1px -0.75em; } .row.uniform.\35 0\25 > * { padding: 0.75em 0 0 0.75em; } .row.uniform.\35 0\25 { margin: -0.75em 0 -1px -0.75em; } .row.\32 5\25 > * { padding: 0 0 0 0.375em; } .row.\32 5\25 { margin: 0 0 -1px -0.375em; } .row.uniform.\32 5\25 > * { padding: 0.375em 0 0 0.375em; } .row.uniform.\32 5\25 { margin: -0.375em 0 -1px -0.375em; } .\31 2u\28medium\29, .\31 2u\24\28medium\29 { width: 100%; clear: none; margin-left: 0; } .\31 1u\28medium\29, .\31 1u\24\28medium\29 { width: 91.6666666667%; clear: none; margin-left: 0; } .\31 0u\28medium\29, .\31 0u\24\28medium\29 { width: 83.3333333333%; clear: none; margin-left: 0; } .\39 u\28medium\29, .\39 u\24\28medium\29 { width: 75%; clear: none; margin-left: 0; } .\38 u\28medium\29, .\38 u\24\28medium\29 { width: 66.6666666667%; clear: none; margin-left: 0; } .\37 u\28medium\29, .\37 u\24\28medium\29 { width: 58.3333333333%; clear: none; margin-left: 0; } .\36 u\28medium\29, .\36 u\24\28medium\29 { width: 50%; clear: none; margin-left: 0; } .\35 u\28medium\29, .\35 u\24\28medium\29 { width: 41.6666666667%; clear: none; margin-left: 0; } .\34 u\28medium\29, .\34 u\24\28medium\29 { width: 33.3333333333%; clear: none; margin-left: 0; } .\33 u\28medium\29, .\33 u\24\28medium\29 { width: 25%; clear: none; margin-left: 0; } .\32 u\28medium\29, .\32 u\24\28medium\29 { width: 16.6666666667%; clear: none; margin-left: 0; } .\31 u\28medium\29, .\31 u\24\28medium\29 { width: 8.3333333333%; clear: none; margin-left: 0; } .\31 2u\24\28medium\29 + *, .\31 1u\24\28medium\29 + *, .\31 0u\24\28medium\29 + *, .\39 u\24\28medium\29 + *, .\38 u\24\28medium\29 + *, .\37 u\24\28medium\29 + *, .\36 u\24\28medium\29 + *, .\35 u\24\28medium\29 + *, .\34 u\24\28medium\29 + *, .\33 u\24\28medium\29 + *, .\32 u\24\28medium\29 + *, .\31 u\24\28medium\29 + * { clear: left; } .\-11u\28medium\29 { margin-left: 91.66667%; } .\-10u\28medium\29 { margin-left: 83.33333%; } .\-9u\28medium\29 { margin-left: 75%; } .\-8u\28medium\29 { margin-left: 66.66667%; } .\-7u\28medium\29 { margin-left: 58.33333%; } .\-6u\28medium\29 { margin-left: 50%; } .\-5u\28medium\29 { margin-left: 41.66667%; } .\-4u\28medium\29 { margin-left: 33.33333%; } .\-3u\28medium\29 { margin-left: 25%; } .\-2u\28medium\29 { margin-left: 16.66667%; } .\-1u\28medium\29 { margin-left: 8.33333%; } } @media screen and (max-width: 736px) { .row > * { padding: 0 0 0 1.25em; } .row { margin: 0 0 -1px -1.25em; } .row.uniform > * { padding: 1.25em 0 0 1.25em; } .row.uniform { margin: -1.25em 0 -1px -1.25em; } .row.\32 00\25 > * { padding: 0 0 0 2.5em; } .row.\32 00\25 { margin: 0 0 -1px -2.5em; } .row.uniform.\32 00\25 > * { padding: 2.5em 0 0 2.5em; } .row.uniform.\32 00\25 { margin: -2.5em 0 -1px -2.5em; } .row.\31 50\25 > * { padding: 0 0 0 1.875em; } .row.\31 50\25 { margin: 0 0 -1px -1.875em; } .row.uniform.\31 50\25 > * { padding: 1.875em 0 0 1.875em; } .row.uniform.\31 50\25 { margin: -1.875em 0 -1px -1.875em; } .row.\35 0\25 > * { padding: 0 0 0 0.625em; } .row.\35 0\25 { margin: 0 0 -1px -0.625em; } .row.uniform.\35 0\25 > * { padding: 0.625em 0 0 0.625em; } .row.uniform.\35 0\25 { margin: -0.625em 0 -1px -0.625em; } .row.\32 5\25 > * { padding: 0 0 0 0.3125em; } .row.\32 5\25 { margin: 0 0 -1px -0.3125em; } .row.uniform.\32 5\25 > * { padding: 0.3125em 0 0 0.3125em; } .row.uniform.\32 5\25 { margin: -0.3125em 0 -1px -0.3125em; } .\31 2u\28small\29, .\31 2u\24\28small\29 { width: 100%; clear: none; margin-left: 0; } .\31 1u\28small\29, .\31 1u\24\28small\29 { width: 91.6666666667%; clear: none; margin-left: 0; } .\31 0u\28small\29, .\31 0u\24\28small\29 { width: 83.3333333333%; clear: none; margin-left: 0; } .\39 u\28small\29, .\39 u\24\28small\29 { width: 75%; clear: none; margin-left: 0; } .\38 u\28small\29, .\38 u\24\28small\29 { width: 66.6666666667%; clear: none; margin-left: 0; } .\37 u\28small\29, .\37 u\24\28small\29 { width: 58.3333333333%; clear: none; margin-left: 0; } .\36 u\28small\29, .\36 u\24\28small\29 { width: 50%; clear: none; margin-left: 0; } .\35 u\28small\29, .\35 u\24\28small\29 { width: 41.6666666667%; clear: none; margin-left: 0; } .\34 u\28small\29, .\34 u\24\28small\29 { width: 33.3333333333%; clear: none; margin-left: 0; } .\33 u\28small\29, .\33 u\24\28small\29 { width: 25%; clear: none; margin-left: 0; } .\32 u\28small\29, .\32 u\24\28small\29 { width: 16.6666666667%; clear: none; margin-left: 0; } .\31 u\28small\29, .\31 u\24\28small\29 { width: 8.3333333333%; clear: none; margin-left: 0; } .\31 2u\24\28small\29 + *, .\31 1u\24\28small\29 + *, .\31 0u\24\28small\29 + *, .\39 u\24\28small\29 + *, .\38 u\24\28small\29 + *, .\37 u\24\28small\29 + *, .\36 u\24\28small\29 + *, .\35 u\24\28small\29 + *, .\34 u\24\28small\29 + *, .\33 u\24\28small\29 + *, .\32 u\24\28small\29 + *, .\31 u\24\28small\29 + * { clear: left; } .\-11u\28small\29 { margin-left: 91.66667%; } .\-10u\28small\29 { margin-left: 83.33333%; } .\-9u\28small\29 { margin-left: 75%; } .\-8u\28small\29 { margin-left: 66.66667%; } .\-7u\28small\29 { margin-left: 58.33333%; } .\-6u\28small\29 { margin-left: 50%; } .\-5u\28small\29 { margin-left: 41.66667%; } .\-4u\28small\29 { margin-left: 33.33333%; } .\-3u\28small\29 { margin-left: 25%; } .\-2u\28small\29 { margin-left: 16.66667%; } .\-1u\28small\29 { margin-left: 8.33333%; } } @media screen and (max-width: 480px) { .row > * { padding: 0 0 0 1.25em; } .row { margin: 0 0 -1px -1.25em; } .row.uniform > * { padding: 1.25em 0 0 1.25em; } .row.uniform { margin: -1.25em 0 -1px -1.25em; } .row.\32 00\25 > * { padding: 0 0 0 2.5em; } .row.\32 00\25 { margin: 0 0 -1px -2.5em; } .row.uniform.\32 00\25 > * { padding: 2.5em 0 0 2.5em; } .row.uniform.\32 00\25 { margin: -2.5em 0 -1px -2.5em; } .row.\31 50\25 > * { padding: 0 0 0 1.875em; } .row.\31 50\25 { margin: 0 0 -1px -1.875em; } .row.uniform.\31 50\25 > * { padding: 1.875em 0 0 1.875em; } .row.uniform.\31 50\25 { margin: -1.875em 0 -1px -1.875em; } .row.\35 0\25 > * { padding: 0 0 0 0.625em; } .row.\35 0\25 { margin: 0 0 -1px -0.625em; } .row.uniform.\35 0\25 > * { padding: 0.625em 0 0 0.625em; } .row.uniform.\35 0\25 { margin: -0.625em 0 -1px -0.625em; } .row.\32 5\25 > * { padding: 0 0 0 0.3125em; } .row.\32 5\25 { margin: 0 0 -1px -0.3125em; } .row.uniform.\32 5\25 > * { padding: 0.3125em 0 0 0.3125em; } .row.uniform.\32 5\25 { margin: -0.3125em 0 -1px -0.3125em; } .\31 2u\28xsmall\29, .\31 2u\24\28xsmall\29 { width: 100%; clear: none; margin-left: 0; } .\31 1u\28xsmall\29, .\31 1u\24\28xsmall\29 { width: 91.6666666667%; clear: none; margin-left: 0; } .\31 0u\28xsmall\29, .\31 0u\24\28xsmall\29 { width: 83.3333333333%; clear: none; margin-left: 0; } .\39 u\28xsmall\29, .\39 u\24\28xsmall\29 { width: 75%; clear: none; margin-left: 0; } .\38 u\28xsmall\29, .\38 u\24\28xsmall\29 { width: 66.6666666667%; clear: none; margin-left: 0; } .\37 u\28xsmall\29, .\37 u\24\28xsmall\29 { width: 58.3333333333%; clear: none; margin-left: 0; } .\36 u\28xsmall\29, .\36 u\24\28xsmall\29 { width: 50%; clear: none; margin-left: 0; } .\35 u\28xsmall\29, .\35 u\24\28xsmall\29 { width: 41.6666666667%; clear: none; margin-left: 0; } .\34 u\28xsmall\29, .\34 u\24\28xsmall\29 { width: 33.3333333333%; clear: none; margin-left: 0; } .\33 u\28xsmall\29, .\33 u\24\28xsmall\29 { width: 25%; clear: none; margin-left: 0; } .\32 u\28xsmall\29, .\32 u\24\28xsmall\29 { width: 16.6666666667%; clear: none; margin-left: 0; } .\31 u\28xsmall\29, .\31 u\24\28xsmall\29 { width: 8.3333333333%; clear: none; margin-left: 0; } .\31 2u\24\28xsmall\29 + *, .\31 1u\24\28xsmall\29 + *, .\31 0u\24\28xsmall\29 + *, .\39 u\24\28xsmall\29 + *, .\38 u\24\28xsmall\29 + *, .\37 u\24\28xsmall\29 + *, .\36 u\24\28xsmall\29 + *, .\35 u\24\28xsmall\29 + *, .\34 u\24\28xsmall\29 + *, .\33 u\24\28xsmall\29 + *, .\32 u\24\28xsmall\29 + *, .\31 u\24\28xsmall\29 + * { clear: left; } .\-11u\28xsmall\29 { margin-left: 91.66667%; } .\-10u\28xsmall\29 { margin-left: 83.33333%; } .\-9u\28xsmall\29 { margin-left: 75%; } .\-8u\28xsmall\29 { margin-left: 66.66667%; } .\-7u\28xsmall\29 { margin-left: 58.33333%; } .\-6u\28xsmall\29 { margin-left: 50%; } .\-5u\28xsmall\29 { margin-left: 41.66667%; } .\-4u\28xsmall\29 { margin-left: 33.33333%; } .\-3u\28xsmall\29 { margin-left: 25%; } .\-2u\28xsmall\29 { margin-left: 16.66667%; } .\-1u\28xsmall\29 { margin-left: 8.33333%; } } @media screen and (max-width: 360px) { .row > * { padding: 0 0 0 1.25em; } .row { margin: 0 0 -1px -1.25em; } .row.uniform > * { padding: 1.25em 0 0 1.25em; } .row.uniform { margin: -1.25em 0 -1px -1.25em; } .row.\32 00\25 > * { padding: 0 0 0 2.5em; } .row.\32 00\25 { margin: 0 0 -1px -2.5em; } .row.uniform.\32 00\25 > * { padding: 2.5em 0 0 2.5em; } .row.uniform.\32 00\25 { margin: -2.5em 0 -1px -2.5em; } .row.\31 50\25 > * { padding: 0 0 0 1.875em; } .row.\31 50\25 { margin: 0 0 -1px -1.875em; } .row.uniform.\31 50\25 > * { padding: 1.875em 0 0 1.875em; } .row.uniform.\31 50\25 { margin: -1.875em 0 -1px -1.875em; } .row.\35 0\25 > * { padding: 0 0 0 0.625em; } .row.\35 0\25 { margin: 0 0 -1px -0.625em; } .row.uniform.\35 0\25 > * { padding: 0.625em 0 0 0.625em; } .row.uniform.\35 0\25 { margin: -0.625em 0 -1px -0.625em; } .row.\32 5\25 > * { padding: 0 0 0 0.3125em; } .row.\32 5\25 { margin: 0 0 -1px -0.3125em; } .row.uniform.\32 5\25 > * { padding: 0.3125em 0 0 0.3125em; } .row.uniform.\32 5\25 { margin: -0.3125em 0 -1px -0.3125em; } .\31 2u\28xxsmall\29, .\31 2u\24\28xxsmall\29 { width: 100%; clear: none; margin-left: 0; } .\31 1u\28xxsmall\29, .\31 1u\24\28xxsmall\29 { width: 91.6666666667%; clear: none; margin-left: 0; } .\31 0u\28xxsmall\29, .\31 0u\24\28xxsmall\29 { width: 83.3333333333%; clear: none; margin-left: 0; } .\39 u\28xxsmall\29, .\39 u\24\28xxsmall\29 { width: 75%; clear: none; margin-left: 0; } .\38 u\28xxsmall\29, .\38 u\24\28xxsmall\29 { width: 66.6666666667%; clear: none; margin-left: 0; } .\37 u\28xxsmall\29, .\37 u\24\28xxsmall\29 { width: 58.3333333333%; clear: none; margin-left: 0; } .\36 u\28xxsmall\29, .\36 u\24\28xxsmall\29 { width: 50%; clear: none; margin-left: 0; } .\35 u\28xxsmall\29, .\35 u\24\28xxsmall\29 { width: 41.6666666667%; clear: none; margin-left: 0; } .\34 u\28xxsmall\29, .\34 u\24\28xxsmall\29 { width: 33.3333333333%; clear: none; margin-left: 0; } .\33 u\28xxsmall\29, .\33 u\24\28xxsmall\29 { width: 25%; clear: none; margin-left: 0; } .\32 u\28xxsmall\29, .\32 u\24\28xxsmall\29 { width: 16.6666666667%; clear: none; margin-left: 0; } .\31 u\28xxsmall\29, .\31 u\24\28xxsmall\29 { width: 8.3333333333%; clear: none; margin-left: 0; } .\31 2u\24\28xxsmall\29 + *, .\31 1u\24\28xxsmall\29 + *, .\31 0u\24\28xxsmall\29 + *, .\39 u\24\28xxsmall\29 + *, .\38 u\24\28xxsmall\29 + *, .\37 u\24\28xxsmall\29 + *, .\36 u\24\28xxsmall\29 + *, .\35 u\24\28xxsmall\29 + *, .\34 u\24\28xxsmall\29 + *, .\33 u\24\28xxsmall\29 + *, .\32 u\24\28xxsmall\29 + *, .\31 u\24\28xxsmall\29 + * { clear: left; } .\-11u\28xxsmall\29 { margin-left: 91.66667%; } .\-10u\28xxsmall\29 { margin-left: 83.33333%; } .\-9u\28xxsmall\29 { margin-left: 75%; } .\-8u\28xxsmall\29 { margin-left: 66.66667%; } .\-7u\28xxsmall\29 { margin-left: 58.33333%; } .\-6u\28xxsmall\29 { margin-left: 50%; } .\-5u\28xxsmall\29 { margin-left: 41.66667%; } .\-4u\28xxsmall\29 { margin-left: 33.33333%; } .\-3u\28xxsmall\29 { margin-left: 25%; } .\-2u\28xxsmall\29 { margin-left: 16.66667%; } .\-1u\28xxsmall\29 { margin-left: 8.33333%; } } /* Basic */ @-ms-viewport { width: device-width; } body { -ms-overflow-style: scrollbar; } @media screen and (max-width: 360px) { html, body { min-width: 320px; } } body { background: #ffffff; } body.is-loading *, body.is-loading *:before, body.is-loading *:after { -moz-animation: none !important; -webkit-animation: none !important; -ms-animation: none !important; animation: none !important; -moz-transition: none !important; -webkit-transition: none !important; -ms-transition: none !important; transition: none !important; } /* Type */ html, body { background: #fefefe; } body { color: #48494f; overflow-wrap: break-word; word-wrap: break-word; } html, input, select, textarea { font-size: 16pt; } @media screen and (max-width: 1680px) { html, input, select, textarea { font-size: 13pt; } } @media screen and (max-width: 1280px) { html, input, select, textarea { font-size: 12pt; } } @media screen and (max-width: 360px) { html, input, select, textarea { font-size: 11pt; } } body, input, select, textarea { font-family: "Open Sans", Helvetica, sans-serif; font-weight: normal; line-height: 1.5; letter-spacing: -0.015em; } ::-moz-selection { background: #fbb295; text-shadow: none; } ::selection { background: #fbb295; text-shadow: none; } a { -moz-transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out; -webkit-transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out; -ms-transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out; transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out; text-decoration: none; } a:hover { border-bottom-color: transparent; } strong, b { font-weight: bold; } em, i { font-style: italic; } p { margin: 0 0 2em 0; } h1, h2, h3, h4, h5, h6 { font-weight: normal; line-height: 1; margin: 1em 0 0.5em 0; letter-spacing: -0.0125em; } h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: inherit; text-decoration: none; border-bottom: none; } @media screen and (max-width: 980px) { h1 br, h2 br, h3 br, h4 br, h5 br, h6 br { display: none; } } h1 { font-size: 2em; line-height: 1.5; } h2 { font-size: 1.75em; line-height: 1.5; } h3 { font-size: 1.5em; line-height: 1.5; } h4 { font-size: 1.1em; line-height: 1.5; } h5 { font-size: 0.9em; line-height: 1.5; } h6 { font-size: 0.7em; line-height: 1.5; } @media screen and (max-width: 736px) { h1 { font-size: 1.35em; } h2 { font-size: 1.25em; } h3 { font-size: 1.2em; } h4 { font-size: 1em; } } sub { font-size: 0.8em; position: relative; top: 0.5em; } sup { font-size: 0.8em; position: relative; top: -0.5em; } small { font-size: 60%; line-height: inherit; } blockquote { line-height: 1.6; border-left-style: solid; border-left-width: 4px; font-style: italic; margin: 0 0 2em 0; padding: 0 0 0 1em; } blockquote p { line-height: 1.6; color: #48494f; } blockquote cite { display: block; font-size: 0.8125rem; color: #555; } blockquote cite:before { content: "\2014 \0020"; } blockquote *:last-child { margin: 0; } code { border-radius: 6px; border-style: solid; border-width: 1px; font-family: "Ubuntu Mono", monospace; font-size: 0.9em; margin: 0 0.25em; padding: 0.25em 0.65em; white-space: pre-wrap; } code + .copy-to-clipboard { position: absolute; top: 12px; right: 12px; } .copy-to-clipboard { background-image: url(images/clippy.svg); background-size: 16px 16px; background-repeat: no-repeat; width: 16px; height: 16px; cursor: pointer; } .copy-to-clipboard:hover { background-color: #e6e6e6; } pre { -webkit-overflow-scrolling: touch; font-family: "Ubuntu Mono", monospace; font-size: 0.9em; margin: 0 0 0.5em 0; position: relative; } pre code { display: block; line-height: 1.75; padding: 0.5em 1.5em; overflow-x: auto; } kbd { color: #444444; font-family: "Lucida Grande", Lucida, Verdana, sans-serif; font-weight: normal; font-style: normal; font-size: 0.75em; text-align: center; line-height: 1; text-shadow: 0 1px 0 #fff; display: inline; padding: .3em .55em; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #bbb; background-color: #f7f7f7; background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1), transparent); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(0, 0, 0, 0.1)), to(transparent)); background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1), transparent); background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.1), transparent); background-image: linear-gradient(top, rgba(0, 0, 0, 0.1), transparent); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1a000000', endColorstr='#00000000', GradientType=0); box-shadow: 0px 2px 0 #bbbbbb, 0 3px 1px #999999, 0 3px 0 #bbbbbb, inset 0 1px 1px #ffffff, inset 0 -1px 3px #cccccc; } hr { border: 0; border-bottom-style: solid; border-bottom-width: 1px; margin: 2em 0; } hr.major { margin: 3em 0; } .align-left { text-align: left; } .align-center { text-align: center; } .align-right { text-align: right; } input, select, textarea { color: #48494f; } a { color: inherit; border-bottom-color: #d6d6d6; } a:hover { color: #555555; } strong, b { color: #4c4c4c; } h1, h2, h3, h4, h5, h6 { font-family: "Raleway", Helvetica, sans-serif; color: #4c4c4c; } blockquote { border-left-color: #e6e6e6; } code { background: rgba(144, 144, 144, 0.075); border-color: #e6e6e6; } hr { border-bottom-color: #e6e6e6; } /* Utilities */ .selected { font-weight: bold; text-decoration: underline; } .overthrow-enabled .overthrow { overflow: auto; -webkit-overflow-scrolling: touch; } .hidden { display: none !important; } .js-hidden { display: none !important; } html.no-js .js-hidden { display: inline-block !important; } .invisible { visibility: hidden; opacity: 0; -moz-transition: opacity 1s, visibility 1.3s; -webkit-transition: opacity 1s, visibility 1.3s; -ms-transition: opacity 1s, visibility 1.3s; transition: opacity 1s, visibility 1.3s; } .visible { visibility: visible; opacity: 1; -moz-transition: opacity 1s, visibility 1.3s; -webkit-transition: opacity 1s, visibility 1.3s; -ms-transition: opacity 1s, visibility 1.3s; transition: opacity 1s, visibility 1.3s; } .js-invisible { visibility: hidden; } html.no-js .js-invisible { visibility: visible; } html.no-js .js-only { display: none !important; } @media screen and (max-width: 736px) { .hidden-small-down { display: none !important; } } @media screen and (min-width: 737px) and (max-width: 980px) { .hidden-medium { display: none !important; } } .visuallyhidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } .sr-only.focusable:active, .sr-only.focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } .textuallyhidden { overflow: hidden; text-indent: 100%; white-space: nowrap; } .clearfix:before { display: table; content: ""; } .clearfix:after { display: table; clear: both; content: ""; } .clear { clear: both; } .right { float: right; } .left { float: left; } .centered { display: block; float: none; margin-left: auto; margin-right: auto; } .truncate.truncate-target, .truncate .truncate-target { display: inline-block; max-width: 250px; max-width: calc(100% + 0.5em); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: top; } .truncate.expandable:hover .truncate-target, .truncate.expandable:hover.truncate-target { max-width: 10000px !important; } /* Requirements */ [data-fisarmonica] [data-content] { overflow: hidden; max-height: 0; } /* Basic Theme */ [data-control], [data-content] > * { padding: 10px; } [data-content] [data-fisarmonica] { border: 0; padding: 0; } [data-fisarmonica] [data-control] { position: relative; width: 100%; line-height: 1em; font-weight: normal; text-align: left; height: 51px; margin-bottom: 0.25em; overflow: hidden; } [data-fisarmonica] > [data-control]:after { content: ""; position: absolute; right: 10px; top: 18px; font-size: 25px; font-weight: 200; color: #444; height: 15px; width: 24px; background: url("images/down.png") center center no-repeat; background-size: 50%; } [data-fisarmonica].open > [data-control]:after { -webkit-transform: rotate(-180deg); -ms-transform: rotate(-180deg); transform: rotate(-180deg); } .ug-label, .ug-badge { background-color: #babdc0; color: #fff; font-size: inherit; padding: 3px 7px; text-align: center; vertical-align: baseline; white-space: nowrap; margin-left: 2.5px; margin-right: 2.5px; } .ug-label.c1, .ug-badge.c1 { background-color: #264653; } .ug-label.c2, .ug-badge.c2 { background-color: #2a9d8f; } .ug-label.c3, .ug-badge.c3 { background-color: #e9c46a; } .ug-label.c4, .ug-badge.c4 { background-color: #f4a261; } .ug-label.c5, .ug-badge.c5 { background-color: #a5be00; } .ug-label.c6, .ug-badge.c6 { background-color: #8b8291; } .ug-label.c7, .ug-badge.c7 { background-color: #98a5cf; } .ug-label.c8, .ug-badge.c8 { background-color: #ee7f8f; } .ug-label.c9, .ug-badge.c9 { background-color: #ada2b5; } .ug-label.c10, .ug-badge.c10 { background-color: #d3d09a; } .ug-label.c11, .ug-badge.c11 { background-color: #b28e6e; } .ug-label.c12, .ug-badge.c12 { background-color: #a9c7b6; } .ug-label.c13, .ug-badge.c13 { background-color: #ef7063; } .ug-label.c14, .ug-badge.c14 { background-color: #f2d856; } .ug-label { border-radius: 4px; display: inline; } .ug-badge { border-radius: 10px; display: inline-block; padding: 1px 7px; } .ug-label[href]:hover, .ug-label[href]:focus { color: #fff; cursor: pointer; text-decoration: none; } a.ug-badge:hover, a.ug-badge:focus { color: #fff; cursor: pointer; text-decoration: none; } .ug-label a, .ug-badge a { color: #fff; cursor: pointer; text-decoration: none; } .ug-label:empty, .ug-badge:empty { display: none; } /* Box */ .box { border-radius: 6px; border: solid 1px #e6e6e6; margin-bottom: 2em; padding: 1.5em; } .box > :last-child, .box > :last-child > :last-child, .box > :last-child > :last-child > :last-child { margin-bottom: 0; } .box.alt { border: 0; border-radius: 0; padding: 0; } /* Button */ input[type="submit"], input[type="reset"], input[type="button"], button, .button { -moz-appearance: none; -webkit-appearance: none; -ms-appearance: none; appearance: none; -moz-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; -ms-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; border: 0; cursor: pointer; display: inline-block; font-weight: bold; height: 2.85em; line-height: 2.95em; padding: 0 1.75em; text-align: center; text-decoration: none; white-space: nowrap; } input[type="submit"].icon, input[type="reset"].icon, input[type="button"].icon, button.icon, .button.icon { padding-left: 1.35em; } input[type="submit"].icon:before, input[type="reset"].icon:before, input[type="button"].icon:before, button.icon:before, .button.icon:before { margin-right: 0.5em; } input[type="submit"].fit, input[type="reset"].fit, input[type="button"].fit, button.fit, .button.fit { display: block; margin: 0 0 1em 0; width: 100%; } input[type="submit"].small, input[type="reset"].small, input[type="button"].small, button.small, .button.small { font-size: 0.8em; } input[type="submit"].big, input[type="reset"].big, input[type="button"].big, button.big, .button.big { font-size: 1.35em; } input[type="submit"].disabled, input[type="submit"]:disabled, input[type="reset"].disabled, input[type="reset"]:disabled, input[type="button"].disabled, input[type="button"]:disabled, button.disabled, button:disabled, .button.disabled, .button:disabled { -moz-pointer-events: none; -webkit-pointer-events: none; -ms-pointer-events: none; pointer-events: none; cursor: default; opacity: 0.25; } @media screen and (max-width: 480px) and (orientation: portrait) { input[type="submit"], input[type="reset"], input[type="button"], button, .button { padding: 0; } input[type="submit"].fit.icon, input[type="reset"].fit.icon, input[type="button"].fit.icon, button.fit.icon, .button.fit.icon { padding-left: 0px; } } input[type="submit"], input[type="reset"], input[type="button"], button, .button { background-color: transparent; color: #4c4c4c; box-shadow: inset 0 0 0 2px #e6e6e6; } input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, button:hover, .button:hover { background-color: rgba(144, 144, 144, 0.075) !important; } input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active, button:active, .button:active { background-color: rgba(144, 144, 144, 0.15) !important; } input[type="submit"].alt, input[type="reset"].alt, input[type="button"].alt, button.alt, .button.alt { background-color: transparent; color: #4c4c4c !important; box-shadow: inset 0 0 0 2px #e6e6e6; } input[type="submit"].alt:hover, input[type="reset"].alt:hover, input[type="button"].alt:hover, button.alt:hover, .button.alt:hover { background-color: rgba(144, 144, 144, 0.075); } input[type="submit"].alt:active, input[type="reset"].alt:active, input[type="button"].alt:active, button.alt:active, .button.alt:active { background-color: rgba(144, 144, 144, 0.15); } input[type="submit"].alt.icon:before, input[type="reset"].alt.icon:before, input[type="button"].alt.icon:before, button.alt.icon:before, .button.alt.icon:before { color: #e0e0e0; } input[type="submit"].special, input[type="reset"].special, input[type="button"].special, button.special, .button.special { box-shadow: none; background-color: #ffffff; color: #4c4c4c; } input[type="submit"].special:hover, input[type="reset"].special:hover, input[type="button"].special:hover, button.special:hover, .button.special:hover { background-color: white; } input[type="submit"].special:active, input[type="reset"].special:active, input[type="button"].special:active, button.special:active, .button.special:active { background-color: #f2f2f2; } /* Form */ form { margin: 0 0 2em 0; } label { display: block; font-size: 0.9em; font-weight: bold; margin: 0 0 1em 0; } input[type="text"], input[type="password"], input[type="email"], select, textarea { -moz-appearance: none; -webkit-appearance: none; -ms-appearance: none; appearance: none; border-radius: 6px; border: none; border-style: solid; border-width: 1px; color: inherit; display: block; outline: 0; padding: 0 1em; text-decoration: none; width: 100%; } input[type="text"]:invalid, input[type="password"]:invalid, input[type="email"]:invalid, select:invalid, textarea:invalid { box-shadow: none; } .select-wrapper { text-decoration: none; display: block; position: relative; } .select-wrapper:before { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; } .select-wrapper:before { content: '\f078'; display: block; height: 2.75em; line-height: 2.75em; pointer-events: none; position: absolute; right: 0; text-align: center; top: 0; width: 2.75em; } .select-wrapper select::-ms-expand { display: none; } input[type="text"], input[type="password"], input[type="email"], select { height: 2.75em; } textarea { padding: 0.75em 1em; } input[type="checkbox"], input[type="radio"] { -moz-appearance: none; -webkit-appearance: none; -ms-appearance: none; appearance: none; display: block; float: left; margin-right: -2em; opacity: 0; width: 1em; z-index: -1; } input[type="checkbox"] + label, input[type="radio"] + label { text-decoration: none; cursor: pointer; display: inline-block; font-size: 1em; font-weight: normal; padding-left: 2.4em; padding-right: 0.75em; position: relative; } input[type="checkbox"] + label:before, input[type="radio"] + label:before { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; } input[type="checkbox"] + label:before, input[type="radio"] + label:before { border-radius: 6px; border-style: solid; border-width: 1px; content: ''; display: inline-block; height: 1.65em; left: 0; line-height: 1.58125em; position: absolute; text-align: center; top: 0; width: 1.65em; } input[type="checkbox"]:checked + label:before, input[type="radio"]:checked + label:before { content: '\f00c'; } input[type="checkbox"] + label:before { border-radius: 6px; } input[type="radio"] + label:before { border-radius: 100%; } ::-webkit-input-placeholder { opacity: 1.0; } :-moz-placeholder { opacity: 1.0; } ::-moz-placeholder { opacity: 1.0; } :-ms-input-placeholder { opacity: 1.0; } .formerize-placeholder { opacity: 1.0; } label { color: #4c4c4c; } input[type="text"], input[type="password"], input[type="email"], select, textarea { color: inherit; background-color: rgba(144, 144, 144, 0.075); border-color: #e6e6e6; } input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, select:focus, textarea:focus { border-color: #555555; box-shadow: 0 0 0 1px #555555; } .select-wrapper:before { color: #e6e6e6; } input[type="checkbox"] + label, input[type="radio"] + label { color: #48494f; } input[type="checkbox"] + label:before, input[type="radio"] + label:before { background-color: rgba(144, 144, 144, 0.075); border-color: #e6e6e6; } input[type="checkbox"]:checked + label:before, input[type="radio"]:checked + label:before { background-color: #555555; border-color: #555555; color: #ffffff; } input[type="checkbox"]:focus + label:before, input[type="radio"]:focus + label:before { border-color: #555555; box-shadow: 0 0 0 1px #555555; } ::-webkit-input-placeholder { color: #e0e0e0 !important; } :-moz-placeholder { color: #e0e0e0 !important; } ::-moz-placeholder { color: #e0e0e0 !important; } :-ms-input-placeholder { color: #e0e0e0 !important; } .formerize-placeholder { color: #e0e0e0 !important; } /* Grid Demo */ .grid-demo { display: block; margin: 0 0 2em 0; } .grid-demo span { background: #a2a2a2; border-radius: 6px; color: rgba(0, 0, 0, 0.25); display: block; font-weight: bold; height: 2.75em; line-height: 2.75em; text-align: center; } /* Icon */ .icon { text-decoration: none; border-bottom: none; position: relative; outline: none; } .icon:before { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; } .icon > .label { display: none; } .icon.icon-button { width: 7.5em; height: 7.5em; border-radius: 50%; text-align: center; line-height: 7em; vertical-align: middle; text-decoration: none; -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s; -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s; -ms-transition: opacity 0.3s 0s, visibility 0s 0.3s; transition: opacity 0.3s 0s, visibility 0s 0.3s; /* opacity: 0.8; */ overflow: hidden; } .icon.icon-button:before { font-size: 4rem; } .icon.icon-button:hover, .icon.icon-button:focus, .icon.icon-button:active, .icon.icon-button.selected { -moz-transition: opacity 0.3s 0s, visibility 0s; -webkit-transition: opacity 0.3s 0s, visibility 0s; -ms-transition: opacity 0.3s 0s, visibility 0s; transition: opacity 0.3s 0s, visibility 0s; } .icon.icon-button.selected { /* opacity: 0.9; */ } .icon.icon-button:hover, .icon.icon-button:focus, .icon.icon-button:active { /* opacity: 1; */ } .icon.icon-button { cursor: pointer; } .icon { color: #e0e0e0; } .icon.icon-button { color: #cccccc; border: 2x solid #e6e6e6; box-shadow: 0 0 2px #e6e6e6; } .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .icon.icon-button.selected:hover, .icon.icon-button.selected:focus, .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } /* Image */ img { max-width: 100%; height: auto; -ms-interpolation-mode: bicubic; } .image { border-radius: 6px; border: 0; display: inline-block; position: relative; overflow: hidden; } .image img { border-radius: 6px; display: block; } .image.left, .image.right { max-width: 40%; } .image.left img, .image.right img { width: 100%; } .image.left { float: left; margin: 0 1.5em 1em 0; top: 0.25em; } .image.right { float: right; margin: 0 0 1em 1.5em; top: 0.25em; } .image.fit { display: block; margin: 0 0 2em 0; width: 100%; } .image.fit img { width: 100%; } .image.half { margin: 0 0 1em 0; width: 50%; } .image.half img { width: 50%; } .image.main { display: block; margin: 0 0 3em 0; width: 100%; } .image.main img { width: 100%; } .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } /* List */ ol { list-style: decimal; margin: 0 0 2em 0; padding-left: 1.25em; } ol li { padding-left: 0.25em; } ul { list-style: disc; margin: 0 0 2em 0; padding-left: 1em; } ul li { padding-left: 0.5em; padding-top: 0.5em; } ul.alt { list-style: none; padding-left: 0; } ul.alt li { border-top-style: solid; border-top-width: 1px; padding: 0.5em 0; } ul.alt li:first-child { border-top: 0; padding-top: 0; } ul.truncate-items li span { display: inline-block; max-width: 250px; max-width: calc(100% + 0.5em); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: top; } ul.icons { cursor: default; list-style: none; padding-left: 0; } ul.icons li { display: inline-block; padding: 0 1.5em 0 0; } ul.icons li:last-child { padding-right: 0 !important; } ul.icons li .icon:before { font-size: 1.75rem; } ul.icons li .icon-toogle, ul.icons li .icon-rounded { width: 2.3rem; height: 2.3rem; border-radius: 50%; text-align: center; line-height: 2.3rem; vertical-align: middle; text-decoration: none; -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s; -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s; -ms-transition: opacity 0.3s 0s, visibility 0s 0.3s; transition: opacity 0.3s 0s, visibility 0s 0.3s; opacity: 0.8; } ul.icons li .icon-toogle:before, ul.icons li .icon-rounded:before { font-size: 1.3rem; } ul.icons li .icon-toogle:hover, ul.icons li .icon-toogle:focus, ul.icons li .icon-toogle:active, ul.icons li .icon-toogle.selected, ul.icons li .icon-rounded:hover, ul.icons li .icon-rounded:focus, ul.icons li .icon-rounded:active, ul.icons li .icon-rounded.selected { -moz-transition: opacity 0.3s 0s, visibility 0s; -webkit-transition: opacity 0.3s 0s, visibility 0s; -ms-transition: opacity 0.3s 0s, visibility 0s; transition: opacity 0.3s 0s, visibility 0s; } ul.icons li .icon-toogle.selected, ul.icons li .icon-rounded.selected { opacity: 0.9; } ul.icons li .icon-toogle:hover, ul.icons li .icon-toogle:focus, ul.icons li .icon-toogle:active, ul.icons li .icon-rounded:hover, ul.icons li .icon-rounded:focus, ul.icons li .icon-rounded:active { opacity: 1; } ul.icons li .icon-rounded { color: #ffffff; background-color: #555555; } ul.icons li .icon-rounded:hover, ul.icons li .icon-rounded:focus, ul.icons li .icon-rounded:active, ul.icons li .icon-rounded.selected { background-color: #484848; } ul.icons li .icon-toogle { cursor: pointer; } ul.icons.major li { padding: 0 2.5em 0 0; } ul.icons.major li .icon:before { font-size: 2.75rem; } @media screen and (max-width: 736px) { ul.icons.major li { padding: 0 1.25em 0 0; } ul.icons.major li .icon:before { font-size: 1.75rem; } } ul.icons.labeled li { margin: 1em 0; padding: 0 2em 0 0; } ul.icons.labeled li .icon:before { vertical-align: middle; font-size: 2.25rem; margin-right: 0.5em; } ul.icons.labeled li .icon .label { display: inline-block; vertical-align: middle; color: #48494f; } @media screen and (max-width: 736px) and (orientation: portrait) { ul.icons.labeled { text-align: left; margin-right: auto; margin-left: auto; display: inline-block; white-space: nowrap; } ul.icons.labeled li { display: block; padding: 0; margin: 1.5em 0 0 0; } ul.icons.labeled li .icon:before { width: 1.5em; display: block; float: left; margin-right: 0; } ul.icons.labeled li .icon:after { content: ''; display: block; clear: both; } ul.icons.labeled li:first-child { margin-top: 0; } } ul.actions { cursor: default; list-style: none; padding-left: 0; } ul.actions li { display: inline-block; padding: 0 1em 0 0; vertical-align: middle; } ul.actions li:last-child { padding-right: 0; } ul.actions.small li { padding: 0 0.5em 0 0; } ul.actions.piped li { border-right: 1px solid #d6d6d6; line-height: 1em; padding: 0 0.5em 0 0.5em; -moz-transition: 0.3s; -webkit-transition: 0.3s; -ms-transition: 0.3s; transition: 0.3s; } ul.actions.piped li:first-child { padding-left: 0px; } ul.actions.piped li:last-child { border: none; padding-right: 0px; } ul.actions.piped a, ul.actions.piped a:link, ul.actions.piped a:visited, ul.actions.piped a:focus, ul.actions.piped a:active { text-decoration: none; } ul.actions.piped a:hover { text-decoration: underline; } ul.actions.piped:before, ul.actions.piped:after { content: ""; display: table; } ul.actions.piped:after { clear: both; } ul.actions.vertical li { display: block; padding: 1em 0 0 0; } ul.actions.vertical li:first-child { padding-top: 0; } ul.actions.vertical li > * { margin-bottom: 0; } ul.actions.vertical.small li { padding: 0.5em 0 0 0; } ul.actions.vertical.small li:first-child { padding-top: 0; } ul.actions.vertical.piped li { padding: 1em 0 0 0; border-right: 0; line-height: inherit; } ul.actions.vertical.piped li:first-child { padding-top: 0; } ul.actions.vertical.piped li:last-child { border: none; } ul.actions.fit { display: table; margin-left: -1em; padding: 0; table-layout: fixed; width: calc(100% + 1em); } ul.actions.fit li { display: table-cell; padding: 0 0 0 1em; } ul.actions.fit li > * { margin-bottom: 0; } ul.actions.fit.small { margin-left: -0.5em; width: calc(100% + 0.5em); } ul.actions.fit.small li { padding: 0 0 0 0.5em; } @media screen and (max-width: 480px) and (orientation: portrait) { ul.actions { margin: 0 0 2em 0; } ul.actions li { padding: 1em 0 0 0; display: block; text-align: center; width: 100%; } ul.actions li:first-child { padding-top: 0; } ul.actions li > * { width: 100%; margin: 0 !important; } ul.actions li > *.icon:before { margin-left: -2em; } ul.actions.small li { padding: 0.5em 0 0 0; } ul.actions.small li:first-child { padding-top: 0; } ul.actions.piped li { padding: 1em 0 0 0; border-right: 0; } ul.actions.piped li:first-child { padding-top: 0; } ul.actions.piped li:last-child { border: none; } } dl { margin: 0 0 2em 0; } dl dt { display: block; font-weight: bold; margin: 0 0 1em 0; } dl dd { margin-left: 2em; } ul.alt > li { border-top-color: #e6e6e6; } ul.piped > li { border-right-color: #e6e6e6; } ul.icons > li .icon-toogle { color: #48494f; } ul.icons > li .icon-toogle:hover, ul.icons > li .icon-toogle:focus, ul.icons > li .icon-toogle:active, ul.icons > li .icon-toogle.selected { color: #4c4c4c; background-color: #f2f2f2; } /* Section/Article */ section.special, article.special { text-align: center; } header p { position: relative; margin: 0 0 1.5em 0; } @media screen and (max-width: 736px) { header p br { display: none; } } header h2 + p { font-size: 1.25em; margin-top: -0.5em; line-height: 1.5; } header h3 + p { font-size: 1.1em; margin-top: -0.25em; line-height: 1.5; } header h4 + p, header h5 + p, header h6 + p { font-size: 0.9em; margin-top: -0.6em; line-height: 1.5; } header.major { margin: 0 0 2.5em 0; text-align: center; } header.major:after { content: ''; border-bottom: solid 2px #e6e6e6; display: block; width: 4em; margin: 2em auto 0 auto; } @media screen and (max-width: 736px) { header.major { margin: 0 0 2em 0; } header.major p { font-size: 1em; } } /* Search Bar */ .search-bar { padding: 0; margin: 0; box-shadow: none; z-index: 1000000; -moz-transition: color 0.3s ease-in-out; -webkit-transition: color 0.3s ease-in-out; -ms-transition: color 0.3s ease-in-out; transition: color 0.3s ease-in-out; } .search-bar form, .search-bar form input { display: inline-block; margin: 0; border: 0; padding: 0; vertical-align: middle; white-space: normal; line-height: inherit; background: none; font-size: inherit; font-family: inherit; width: 100%; } .search-bar form input { border-bottom: 1px solid rgba(255, 255, 255, 0.2); border-radius: 0; color: #fff; box-sizing: border-box; font-weight: 500; font-size: 1.2em; letter-spacing: 0.02em; height: 2em; } .search-bar form input:focus, .search-bar .form input[type="search"]:focus { border-color: #cccccc; box-shadow: none; outline: none; } @media screen and (max-width: 736px) { .search-bar { padding: 10px 15px; width: 100% !important; } } @media screen and (min-width: 737px) { .search-bar { position: absolute; right: 0; background-color: transparent; } } @media screen and (min-width: 737px) and (max-width: 1680px) { .search-bar { top: 10px; } } @media screen and (min-width: 1681px) { .search-bar { top: 5px; } } .search-button { cursor: pointer; } /* Slider */ .slick-slider { position: relative; display: block; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent; } .slick-list { position: relative; overflow: hidden; display: block; margin: 0; padding: 0; } .slick-list:focus { outline: none; } .slick-list.dragging { cursor: pointer; cursor: hand; } .slick-slider .slick-track, .slick-slider .slick-list { -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); } .slick-track { position: relative; left: 0; top: 0; display: block; } .slick-track:before, .slick-track:after { content: ""; display: table; } .slick-track:after { clear: both; } .slick-loading .slick-track { visibility: hidden; } .slick-slide { float: left; height: 100%; min-height: 1px; display: none; } [dir="rtl"] .slick-slide { float: right; } .slick-slide img { display: block; } .slick-slide.slick-loading img { display: none; } .slick-slide.dragging img { pointer-events: none; } .slick-initialized .slick-slide { display: block; } .slick-loading .slick-slide { visibility: hidden; } .slick-vertical .slick-slide { display: block; height: auto; border: 1px solid transparent; } .slick-arrow.slick-hidden { display: none; } /* Slider Theme */ .slick-loading .slick-list { background: #fff url("images/ajax-loader.gif") center center no-repeat; } /* Slider Theme Arrows */ .slick-prev, .slick-next { position: absolute; display: block; height: 20px; width: 20px; line-height: 0; font-size: 0px; cursor: pointer; background: transparent; color: transparent; top: 50%; margin-top: -10px\9; /*lte IE 8*/ -webkit-transform: translate(0, -50%); -ms-transform: translate(0, -50%); transform: translate(0, -50%); padding: 0; border: none; outline: none; box-shadow: none !important; } .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus { outline: none !important; background: transparent; color: transparent; } .slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before { opacity: 1; } .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before { opacity: 0.25; } .slick-prev::-moz-focus-inner, .slick-next::-moz-focus-inner { border: none; } .slick-prev:before, .slick-next:before { font-family: "FontAwesome"; font-size: 20px; line-height: 1; color: #48494f; opacity: 0.75; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .slick-prev { left: -50px; } [dir="rtl"] .slick-prev { left: auto; right: -50px; } .slick-prev:before { content: ""; } [dir="rtl"] .slick-prev:before { content: ""; } .slick-next { right: -50px; } [dir="rtl"] .slick-next { left: -50px; right: auto; } .slick-next:before { content: ""; } [dir="rtl"] .slick-next:before { content: ""; } /* Slider Theme Dots */ .slick-slider { margin-bottom: 30px; } .slick-dots { position: absolute; bottom: -45px; list-style: none; display: block; text-align: center; padding: 0; width: 100%; } .slick-dots li { position: relative; display: inline-block; height: 20px; width: 20px; margin: 0 5px; padding: 0; cursor: pointer; } .slick-dots li button { border: 0; background: transparent; display: block; height: 20px; width: 20px; outline: none; line-height: 0px; font-size: 0px; color: transparent; padding: 5px; cursor: pointer; box-shadow: none !important; } .slick-dots li button:hover, .slick-dots li button:focus { outline: none; } .slick-dots li button:hover:before, .slick-dots li button:focus:before { opacity: 1; } .slick-dots li button:before { position: absolute; top: 0; left: 0; content: ""; width: 20px; height: 20px; font-family: "FontAwesome"; font-size: 0.7rem; line-height: 20px; text-align: center; color: #48494f; opacity: 0.25; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .slick-dots li button::-moz-focus-inner { border: none; } .slick-dots li.slick-active button:before { color: #48494f; opacity: 0.75; } /* Spotlight */ .spotlight { display: -moz-flex; display: -webkit-flex; display: -ms-flex; display: flex; -moz-align-items: center; -webkit-align-items: center; -ms-align-items: center; align-items: center; margin: 0 0 2em 0; } .spotlight .image { width: 15%; border-radius: 0%; margin: 0 3em 0 0; display: block; } .spotlight .image img { display: block; border-radius: 0%; width: 100%; } .spotlight .content { width: 75%; text-align: justify; } .spotlight .content > :last-child { margin-bottom: 0; } .spotlight .content h3 { font-weight: bold; } .spotlight:nth-child(2n) { -moz-flex-direction: row-reverse; -webkit-flex-direction: row-reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; } .spotlight:nth-child(2n) .image { margin: 0 0 0 3em; } .spotlight:nth-child(2n) .content { direction: rtl; } @media screen and (max-width: 736px) and (orientation: landscape) { .spotlight .image { margin: 0 2em 0 0; } .spotlight:nth-child(2n) .image { margin: 0 0 0 2em; } } @media screen and (max-width: 736px) and (orientation: portrait) { .spotlight { -moz-flex-direction: column !important; -webkit-flex-direction: column !important; -ms-flex-direction: column !important; flex-direction: column !important; } .spotlight .image { width: 100%; max-width: 60%; margin: 0 0 2em 0 !important; } .spotlight .content { width: 100%; text-align: justify; direction: ltr !important; } .spotlight .content h3 { text-align: center; } } /* Table */ .table-wrapper { -webkit-overflow-scrolling: touch; overflow-x: auto; } table { margin: 0 0 2em 0; width: 100%; } table tbody tr { border-style: solid; border-width: 1px; border-left: 0; border-right: 0; } table td { padding: 0.75em 0.75em; } table th { font-size: 0.9em; font-weight: bold; padding: 0 0.75em 0.75em 0.75em; text-align: left; } table thead { border-bottom-style: solid; border-bottom-width: 2px; } table tfoot { border-top-style: solid; border-top-width: 2px; } table.alt { border-collapse: separate; } table.alt tbody tr td { border-style: solid; border-width: 1px; border-left-width: 0; border-top-width: 0; } table.alt tbody tr td:first-child { border-left-width: 1px; } table.alt tbody tr:first-child td { border-top-width: 1px; } table.alt thead { border-bottom: 0; } table.alt tfoot { border-top: 0; } table tbody tr { border-color: #e6e6e6; } table tbody tr:nth-child(2n + 1) { background-color: rgba(144, 144, 144, 0.075); } table th { color: #4c4c4c; } table thead { border-bottom-color: #e6e6e6; } table tfoot { border-top-color: #e6e6e6; } table.alt tbody tr td { border-color: #e6e6e6; } /* Tooltip */ .tooltip { position: relative; } .tooltip:after { position: absolute; z-index: 1000000; display: none; padding: 0.5em 0.5em; font: normal normal 0.75em "Raleway", Helvetica, sans-serif; text-align: center; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-wrap: break-word; white-space: pre; pointer-events: none; content: attr(aria-label); border-radius: 3px; -webkit-font-smoothing: subpixel-antialiased; -moz-osx-font-smoothing: grayscale; } .tooltip:before { position: absolute; z-index: 1000001; display: none; width: 0; height: 0; pointer-events: none; content: ""; border: 5px solid transparent; } .tooltip:hover:before, .tooltip:hover:after, .tooltip:active:before, .tooltip:active:after, .tooltip:focus:before, .tooltip:focus:after { display: inline-block; text-decoration: none; } .tooltip-multiline:hover:after, .tooltip-multiline:active:after, .tooltip-multiline:focus:after { display: table-cell; } .tooltip-s:after, .tooltip-se:after, .tooltip-sw:after { top: 100%; right: 50%; margin-top: 5px; } .tooltip-s:before, .tooltip-se:before, .tooltip-sw:before { top: auto; right: 50%; bottom: -5px; margin-right: -5px; } .tooltip-se:after { right: auto; left: 50%; margin-left: -15px; } .tooltip-sw:after { margin-right: -15px; } .tooltip-n:after, .tooltip-ne:after, .tooltip-nw:after { right: 50%; bottom: 100%; margin-bottom: 5px; } .tooltip-n:before, .tooltip-ne:before, .tooltip-nw:before { top: -5px; right: 50%; bottom: auto; margin-right: -5px; } .tooltip-ne:after { right: auto; left: 50%; margin-left: -15px; } .tooltip-nw:after { margin-right: -15px; } .tooltip-s:after, .tooltip-n:after { transform: translateX(50%); } .tooltip-w:after { right: 100%; bottom: 50%; margin-right: 5px; transform: translateY(50%); } .tooltip-w:before { top: 50%; bottom: 50%; left: -5px; margin-top: -5px; } .tooltip-e:after { bottom: 50%; left: 100%; margin-left: 5px; transform: translateY(50%); } .tooltip-e:before { top: 50%; right: -5px; bottom: 50%; margin-top: -5px; } .tooltip-multiline:after { width: -moz-max-content; width: -o-max-content; width: -webkit-max-content; width: max-content; max-width: 250px; word-break: break-word; word-wrap: normal; white-space: pre-line; border-collapse: separate; } .tooltip-multiline.tooltip-s:after, .tooltip-multiline.tooltip-n:after { right: auto; left: 50%; transform: translateX(-50%); } .tooltip-multiline.tooltip-w:after, .tooltip-multiline.tooltip-e:after { right: 100%; } @media screen and (min-width: 0\0) { .tooltip-multiline:after { width: 250px; } } .tooltip-sticky:before, .tooltip-sticky:after { display: inline-block; } .tooltip-sticky.tooltip-multiline:after { display: table-cell; } .tooltip-hide:before, .tooltip-hide:after { visibility: hidden; } .tooltip:after { color: #ffffff; background: #4c4c4c; } .tooltip:before { color: #4c4c4c; } .tooltip.tooltip-s:before, .tooltip.tooltip-se:before, .tooltip.tooltip-sw:before { border-bottom-color: #4c4c4c; } .tooltip.tooltip-n:before, .tooltip.tooltip-ne:before, .tooltip.tooltip-nw:before { border-top-color: #4c4c4c; } .tooltip.tooltip-w:before { border-left-color: #4c4c4c; } .tooltip.tooltip-e:before { border-right-color: #4c4c4c; } /* Wrapper */ .wrapper { padding: 4.5em 0 2.5em 0 ; background-color: #ffffff; border-bottom: solid 1px #eeeeee; } .wrapper > .inner { margin-left: auto; margin-right: auto; width: 60em; } .wrapper > .inner.alt > * { border-top: solid 2px #eeeeee; margin-bottom: 0; margin-top: 1.5em; padding-top: 1.5em; } .wrapper > .inner.alt > *:first-child { border-top: 0; margin-top: 0; padding-top: 0; } .wrapper.style1 { background-color: #555555; color: #e6e6e6; } .wrapper.style1 input[type="submit"], .wrapper.style1 input[type="reset"], .wrapper.style1 input[type="button"], .wrapper.style1 button, .wrapper.style1 .button { background-color: transparent; color: #ffffff; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style1 input[type="submit"]:hover, .wrapper.style1 input[type="reset"]:hover, .wrapper.style1 input[type="button"]:hover, .wrapper.style1 button:hover, .wrapper.style1 .button:hover { background-color: #f97f4f !important; } .wrapper.style1 input[type="submit"]:active, .wrapper.style1 input[type="reset"]:active, .wrapper.style1 input[type="button"]:active, .wrapper.style1 button:active, .wrapper.style1 .button:active { background-color: rgba(255, 255, 255, 0.4) !important; } .wrapper.style1 input[type="submit"].alt, .wrapper.style1 input[type="reset"].alt, .wrapper.style1 input[type="button"].alt, .wrapper.style1 button.alt, .wrapper.style1 .button.alt { background-color: transparent; color: #ffffff !important; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style1 input[type="submit"].alt:hover, .wrapper.style1 input[type="reset"].alt:hover, .wrapper.style1 input[type="button"].alt:hover, .wrapper.style1 button.alt:hover, .wrapper.style1 .button.alt:hover { background-color: #f97f4f; } .wrapper.style1 input[type="submit"].alt:active, .wrapper.style1 input[type="reset"].alt:active, .wrapper.style1 input[type="button"].alt:active, .wrapper.style1 button.alt:active, .wrapper.style1 .button.alt:active { background-color: rgba(255, 255, 255, 0.4); } .wrapper.style1 input[type="submit"].alt.icon:before, .wrapper.style1 input[type="reset"].alt.icon:before, .wrapper.style1 input[type="button"].alt.icon:before, .wrapper.style1 button.alt.icon:before, .wrapper.style1 .button.alt.icon:before { color: #ffffff; } .wrapper.style1 input[type="submit"].special, .wrapper.style1 input[type="reset"].special, .wrapper.style1 input[type="button"].special, .wrapper.style1 button.special, .wrapper.style1 .button.special { box-shadow: none; background-color: #ffffff; color: #555555; } .wrapper.style1 input[type="submit"].special:hover, .wrapper.style1 input[type="reset"].special:hover, .wrapper.style1 input[type="button"].special:hover, .wrapper.style1 button.special:hover, .wrapper.style1 .button.special:hover { color: white; } .wrapper.style1 input[type="submit"].special:active, .wrapper.style1 input[type="reset"].special:active, .wrapper.style1 input[type="button"].special:active, .wrapper.style1 button.special:active, .wrapper.style1 .button.special:active { color: #f2f2f2; } .wrapper.style1 label { color: #ffffff; } .wrapper.style1 input[type="text"], .wrapper.style1 input[type="password"], .wrapper.style1 input[type="email"], .wrapper.style1 select, .wrapper.style1 textarea { color: inherit; background-color: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 input[type="text"]:focus, .wrapper.style1 input[type="password"]:focus, .wrapper.style1 input[type="email"]:focus, .wrapper.style1 select:focus, .wrapper.style1 textarea:focus { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } .wrapper.style1 .select-wrapper:before { color: rgba(255, 255, 255, 0.5); } .wrapper.style1 input[type="checkbox"] + label, .wrapper.style1 input[type="radio"] + label { color: #e6e6e6; } .wrapper.style1 input[type="checkbox"] + label:before, .wrapper.style1 input[type="radio"] + label:before { background-color: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 input[type="checkbox"]:checked + label:before, .wrapper.style1 input[type="radio"]:checked + label:before { background-color: #ffffff; border-color: #ffffff; color: #555555; } .wrapper.style1 input[type="checkbox"]:focus + label:before, .wrapper.style1 input[type="radio"]:focus + label:before { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } .wrapper.style1 ::-webkit-input-placeholder { color: #ffffff !important; } .wrapper.style1 :-moz-placeholder { color: #ffffff !important; } .wrapper.style1 ::-moz-placeholder { color: #ffffff !important; } .wrapper.style1 :-ms-input-placeholder { color: #ffffff !important; } .wrapper.style1 .formerize-placeholder { color: #ffffff !important; } .wrapper.style1 .icon { color: #ffffff; } .wrapper.style1 .icon.icon-button { color: #222222; border: 2x solid rgba(255, 255, 255, 0.5); box-shadow: 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style1 .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style1 .icon.icon-button.selected:hover, .wrapper.style1 .icon.icon-button.selected:focus, .wrapper.style1 .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style1 .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } .wrapper.style1 ul.alt > li { border-top-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 ul.piped > li { border-right-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 ul.icons > li .icon-toogle { color: #e6e6e6; } .wrapper.style1 ul.icons > li .icon-toogle:hover, .wrapper.style1 ul.icons > li .icon-toogle:focus, .wrapper.style1 ul.icons > li .icon-toogle:active, .wrapper.style1 ul.icons > li .icon-toogle.selected { color: #ffffff; background-color: #484848; } .wrapper.style1 table tbody tr { border-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 table tbody tr:nth-child(2n + 1) { background-color: #f97f4f; } .wrapper.style1 table th { color: #ffffff; } .wrapper.style1 table thead { border-bottom-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 table tfoot { border-top-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 table.alt tbody tr td { border-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 .tooltip:after { color: #555555; background: #ffffff; } .wrapper.style1 .tooltip:before { color: #ffffff; } .wrapper.style1 .tooltip.tooltip-s:before, .wrapper.style1 .tooltip.tooltip-se:before, .wrapper.style1 .tooltip.tooltip-sw:before { border-bottom-color: #ffffff; } .wrapper.style1 .tooltip.tooltip-n:before, .wrapper.style1 .tooltip.tooltip-ne:before, .wrapper.style1 .tooltip.tooltip-nw:before { border-top-color: #ffffff; } .wrapper.style1 .tooltip.tooltip-w:before { border-left-color: #ffffff; } .wrapper.style1 .tooltip.tooltip-e:before { border-right-color: #ffffff; } .wrapper.style1 input, .wrapper.style1 select, .wrapper.style1 textarea { color: #e6e6e6; } .wrapper.style1 a { color: inherit; border-bottom-color: rgba(255, 255, 255, 0.75); color: #ffffff; } .wrapper.style1 strong, .wrapper.style1 b { color: #ffffff; } .wrapper.style1 h1, .wrapper.style1 h2, .wrapper.style1 h3, .wrapper.style1 h4, .wrapper.style1 h5, .wrapper.style1 h6 { font-family: "Raleway", Helvetica, sans-serif; color: #ffffff; } .wrapper.style1 blockquote { border-left-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 code { background: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } .wrapper.style1 hr { border-bottom-color: rgba(255, 255, 255, 0.5); } .wrapper.style2 { padding: 2em 0 2.5em 0; background-color: #fbfbfb; color: #48494f; } .wrapper.style2 input[type="submit"], .wrapper.style2 input[type="reset"], .wrapper.style2 input[type="button"], .wrapper.style2 button, .wrapper.style2 .button { background-color: transparent; color: #4c4c4c; box-shadow: inset 0 0 0 2px #e6e6e6; } .wrapper.style2 input[type="submit"]:hover, .wrapper.style2 input[type="reset"]:hover, .wrapper.style2 input[type="button"]:hover, .wrapper.style2 button:hover, .wrapper.style2 .button:hover { background-color: rgba(144, 144, 144, 0.075) !important; } .wrapper.style2 input[type="submit"]:active, .wrapper.style2 input[type="reset"]:active, .wrapper.style2 input[type="button"]:active, .wrapper.style2 button:active, .wrapper.style2 .button:active { background-color: rgba(144, 144, 144, 0.15) !important; } .wrapper.style2 input[type="submit"].alt, .wrapper.style2 input[type="reset"].alt, .wrapper.style2 input[type="button"].alt, .wrapper.style2 button.alt, .wrapper.style2 .button.alt { background-color: transparent; color: #4c4c4c !important; box-shadow: inset 0 0 0 2px #e6e6e6; } .wrapper.style2 input[type="submit"].alt:hover, .wrapper.style2 input[type="reset"].alt:hover, .wrapper.style2 input[type="button"].alt:hover, .wrapper.style2 button.alt:hover, .wrapper.style2 .button.alt:hover { background-color: rgba(144, 144, 144, 0.075); } .wrapper.style2 input[type="submit"].alt:active, .wrapper.style2 input[type="reset"].alt:active, .wrapper.style2 input[type="button"].alt:active, .wrapper.style2 button.alt:active, .wrapper.style2 .button.alt:active { background-color: rgba(144, 144, 144, 0.15); } .wrapper.style2 input[type="submit"].alt.icon:before, .wrapper.style2 input[type="reset"].alt.icon:before, .wrapper.style2 input[type="button"].alt.icon:before, .wrapper.style2 button.alt.icon:before, .wrapper.style2 .button.alt.icon:before { color: #54555c; } .wrapper.style2 input[type="submit"].special, .wrapper.style2 input[type="reset"].special, .wrapper.style2 input[type="button"].special, .wrapper.style2 button.special, .wrapper.style2 .button.special { box-shadow: none; background-color: #fbfbfb; color: #4c4c4c; } .wrapper.style2 input[type="submit"].special:hover, .wrapper.style2 input[type="reset"].special:hover, .wrapper.style2 input[type="button"].special:hover, .wrapper.style2 button.special:hover, .wrapper.style2 .button.special:hover { background-color: white; } .wrapper.style2 input[type="submit"].special:active, .wrapper.style2 input[type="reset"].special:active, .wrapper.style2 input[type="button"].special:active, .wrapper.style2 button.special:active, .wrapper.style2 .button.special:active { background-color: #eeeeee; } .wrapper.style2 label { color: #4c4c4c; } .wrapper.style2 input[type="text"], .wrapper.style2 input[type="password"], .wrapper.style2 input[type="email"], .wrapper.style2 select, .wrapper.style2 textarea { color: inherit; background-color: rgba(144, 144, 144, 0.075); border-color: #e6e6e6; } .wrapper.style2 input[type="text"]:focus, .wrapper.style2 input[type="password"]:focus, .wrapper.style2 input[type="email"]:focus, .wrapper.style2 select:focus, .wrapper.style2 textarea:focus { border-color: #555555; box-shadow: 0 0 0 1px #555555; } .wrapper.style2 .select-wrapper:before { color: #e6e6e6; } .wrapper.style2 input[type="checkbox"] + label, .wrapper.style2 input[type="radio"] + label { color: #48494f; } .wrapper.style2 input[type="checkbox"] + label:before, .wrapper.style2 input[type="radio"] + label:before { background-color: rgba(144, 144, 144, 0.075); border-color: #e6e6e6; } .wrapper.style2 input[type="checkbox"]:checked + label:before, .wrapper.style2 input[type="radio"]:checked + label:before { background-color: #555555; border-color: #555555; color: #ffffff; } .wrapper.style2 input[type="checkbox"]:focus + label:before, .wrapper.style2 input[type="radio"]:focus + label:before { border-color: #555555; box-shadow: 0 0 0 1px #555555; } .wrapper.style2 ::-webkit-input-placeholder { color: #54555c !important; } .wrapper.style2 :-moz-placeholder { color: #54555c !important; } .wrapper.style2 ::-moz-placeholder { color: #54555c !important; } .wrapper.style2 :-ms-input-placeholder { color: #54555c !important; } .wrapper.style2 .formerize-placeholder { color: #54555c !important; } .wrapper.style2 .icon { color: #54555c; } .wrapper.style2 .icon.icon-button { color: #c8c8c8; border: 2x solid #e6e6e6; box-shadow: 0 0 2px #e6e6e6; } .wrapper.style2 .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style2 .icon.icon-button.selected:hover, .wrapper.style2 .icon.icon-button.selected:focus, .wrapper.style2 .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style2 .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } .wrapper.style2 ul.alt > li { border-top-color: #e6e6e6; } .wrapper.style2 ul.piped > li { border-right-color: #e6e6e6; } .wrapper.style2 ul.icons > li .icon-toogle { color: #48494f; } .wrapper.style2 ul.icons > li .icon-toogle:hover, .wrapper.style2 ul.icons > li .icon-toogle:focus, .wrapper.style2 ul.icons > li .icon-toogle:active, .wrapper.style2 ul.icons > li .icon-toogle.selected { color: #4c4c4c; background-color: #eeeeee; } .wrapper.style2 table tbody tr { border-color: #e6e6e6; } .wrapper.style2 table tbody tr:nth-child(2n + 1) { background-color: rgba(144, 144, 144, 0.075); } .wrapper.style2 table th { color: #4c4c4c; } .wrapper.style2 table thead { border-bottom-color: #e6e6e6; } .wrapper.style2 table tfoot { border-top-color: #e6e6e6; } .wrapper.style2 table.alt tbody tr td { border-color: #e6e6e6; } .wrapper.style2 .tooltip:after { color: #fbfbfb; background: #4c4c4c; } .wrapper.style2 .tooltip:before { color: #4c4c4c; } .wrapper.style2 .tooltip.tooltip-s:before, .wrapper.style2 .tooltip.tooltip-se:before, .wrapper.style2 .tooltip.tooltip-sw:before { border-bottom-color: #4c4c4c; } .wrapper.style2 .tooltip.tooltip-n:before, .wrapper.style2 .tooltip.tooltip-ne:before, .wrapper.style2 .tooltip.tooltip-nw:before { border-top-color: #4c4c4c; } .wrapper.style2 .tooltip.tooltip-w:before { border-left-color: #4c4c4c; } .wrapper.style2 .tooltip.tooltip-e:before { border-right-color: #4c4c4c; } .wrapper.style2 input, .wrapper.style2 select, .wrapper.style2 textarea { color: #48494f; } .wrapper.style2 a { color: inherit; border-bottom-color: #d6d6d6; } .wrapper.style2 a:hover { color: #555555; } .wrapper.style2 strong, .wrapper.style2 b { color: #4c4c4c; } .wrapper.style2 h1, .wrapper.style2 h2, .wrapper.style2 h3, .wrapper.style2 h4, .wrapper.style2 h5, .wrapper.style2 h6 { font-family: "Raleway", Helvetica, sans-serif; color: #4c4c4c; } .wrapper.style2 blockquote { border-left-color: #e6e6e6; } .wrapper.style2 code { background: rgba(144, 144, 144, 0.075); border-color: #e6e6e6; } .wrapper.style2 hr { border-bottom-color: #e6e6e6; } .wrapper.style3 { background-color: #f7f7f7; color: #757574; } .wrapper.style3 input[type="submit"], .wrapper.style3 input[type="reset"], .wrapper.style3 input[type="button"], .wrapper.style3 button, .wrapper.style3 .button { background-color: transparent; color: #4c4c4c; box-shadow: inset 0 0 0 2px #d6d6d6; } .wrapper.style3 input[type="submit"]:hover, .wrapper.style3 input[type="reset"]:hover, .wrapper.style3 input[type="button"]:hover, .wrapper.style3 button:hover, .wrapper.style3 .button:hover { background-color: rgba(144, 144, 144, 0.075) !important; } .wrapper.style3 input[type="submit"]:active, .wrapper.style3 input[type="reset"]:active, .wrapper.style3 input[type="button"]:active, .wrapper.style3 button:active, .wrapper.style3 .button:active { background-color: rgba(144, 144, 144, 0.15) !important; } .wrapper.style3 input[type="submit"].alt, .wrapper.style3 input[type="reset"].alt, .wrapper.style3 input[type="button"].alt, .wrapper.style3 button.alt, .wrapper.style3 .button.alt { background-color: transparent; color: #4c4c4c !important; box-shadow: inset 0 0 0 2px #d6d6d6; } .wrapper.style3 input[type="submit"].alt:hover, .wrapper.style3 input[type="reset"].alt:hover, .wrapper.style3 input[type="button"].alt:hover, .wrapper.style3 button.alt:hover, .wrapper.style3 .button.alt:hover { background-color: rgba(144, 144, 144, 0.075); } .wrapper.style3 input[type="submit"].alt:active, .wrapper.style3 input[type="reset"].alt:active, .wrapper.style3 input[type="button"].alt:active, .wrapper.style3 button.alt:active, .wrapper.style3 .button.alt:active { background-color: rgba(144, 144, 144, 0.15); } .wrapper.style3 input[type="submit"].alt.icon:before, .wrapper.style3 input[type="reset"].alt.icon:before, .wrapper.style3 input[type="button"].alt.icon:before, .wrapper.style3 button.alt.icon:before, .wrapper.style3 .button.alt.icon:before { color: #b0b0b0; } .wrapper.style3 input[type="submit"].special, .wrapper.style3 input[type="reset"].special, .wrapper.style3 input[type="button"].special, .wrapper.style3 button.special, .wrapper.style3 .button.special { box-shadow: none; background-color: #f7f7f7; color: #4c4c4c; } .wrapper.style3 input[type="submit"].special:hover, .wrapper.style3 input[type="reset"].special:hover, .wrapper.style3 input[type="button"].special:hover, .wrapper.style3 button.special:hover, .wrapper.style3 .button.special:hover { background-color: white; } .wrapper.style3 input[type="submit"].special:active, .wrapper.style3 input[type="reset"].special:active, .wrapper.style3 input[type="button"].special:active, .wrapper.style3 button.special:active, .wrapper.style3 .button.special:active { background-color: #eaeaea; } .wrapper.style3 label { color: #4c4c4c; } .wrapper.style3 input[type="text"], .wrapper.style3 input[type="password"], .wrapper.style3 input[type="email"], .wrapper.style3 select, .wrapper.style3 textarea { color: inherit; background-color: rgba(144, 144, 144, 0.075); border-color: #d6d6d6; } .wrapper.style3 input[type="text"]:focus, .wrapper.style3 input[type="password"]:focus, .wrapper.style3 input[type="email"]:focus, .wrapper.style3 select:focus, .wrapper.style3 textarea:focus { border-color: #555555; box-shadow: 0 0 0 1px #555555; } .wrapper.style3 .select-wrapper:before { color: #d6d6d6; } .wrapper.style3 input[type="checkbox"] + label, .wrapper.style3 input[type="radio"] + label { color: #757574; } .wrapper.style3 input[type="checkbox"] + label:before, .wrapper.style3 input[type="radio"] + label:before { background-color: rgba(144, 144, 144, 0.075); border-color: #d6d6d6; } .wrapper.style3 input[type="checkbox"]:checked + label:before, .wrapper.style3 input[type="radio"]:checked + label:before { background-color: #555555; border-color: #555555; color: #ffffff; } .wrapper.style3 input[type="checkbox"]:focus + label:before, .wrapper.style3 input[type="radio"]:focus + label:before { border-color: #555555; box-shadow: 0 0 0 1px #555555; } .wrapper.style3 ::-webkit-input-placeholder { color: #b0b0b0 !important; } .wrapper.style3 :-moz-placeholder { color: #b0b0b0 !important; } .wrapper.style3 ::-moz-placeholder { color: #b0b0b0 !important; } .wrapper.style3 :-ms-input-placeholder { color: #b0b0b0 !important; } .wrapper.style3 .formerize-placeholder { color: #b0b0b0 !important; } .wrapper.style3 .icon { color: #b0b0b0; } .wrapper.style3 .icon.icon-button { color: #c4c4c4; border: 2x solid #d6d6d6; box-shadow: 0 0 2px #d6d6d6; } .wrapper.style3 .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style3 .icon.icon-button.selected:hover, .wrapper.style3 .icon.icon-button.selected:focus, .wrapper.style3 .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style3 .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } .wrapper.style3 ul.alt > li { border-top-color: #d6d6d6; } .wrapper.style3 ul.piped > li { border-right-color: #d6d6d6; } .wrapper.style3 ul.icons > li .icon-toogle { color: #757574; } .wrapper.style3 ul.icons > li .icon-toogle:hover, .wrapper.style3 ul.icons > li .icon-toogle:focus, .wrapper.style3 ul.icons > li .icon-toogle:active, .wrapper.style3 ul.icons > li .icon-toogle.selected { color: #4c4c4c; background-color: #eaeaea; } .wrapper.style3 table tbody tr { border-color: #d6d6d6; } .wrapper.style3 table tbody tr:nth-child(2n + 1) { background-color: rgba(144, 144, 144, 0.075); } .wrapper.style3 table th { color: #4c4c4c; } .wrapper.style3 table thead { border-bottom-color: #d6d6d6; } .wrapper.style3 table tfoot { border-top-color: #d6d6d6; } .wrapper.style3 table.alt tbody tr td { border-color: #d6d6d6; } .wrapper.style3 .tooltip:after { color: #f7f7f7; background: #4c4c4c; } .wrapper.style3 .tooltip:before { color: #4c4c4c; } .wrapper.style3 .tooltip.tooltip-s:before, .wrapper.style3 .tooltip.tooltip-se:before, .wrapper.style3 .tooltip.tooltip-sw:before { border-bottom-color: #4c4c4c; } .wrapper.style3 .tooltip.tooltip-n:before, .wrapper.style3 .tooltip.tooltip-ne:before, .wrapper.style3 .tooltip.tooltip-nw:before { border-top-color: #4c4c4c; } .wrapper.style3 .tooltip.tooltip-w:before { border-left-color: #4c4c4c; } .wrapper.style3 .tooltip.tooltip-e:before { border-right-color: #4c4c4c; } .wrapper.style3 input, .wrapper.style3 select, .wrapper.style3 textarea { color: #757574; } .wrapper.style3 a { color: inherit; border-bottom-color: #c6c6c6; } .wrapper.style3 a:hover { color: #f97f4f; } .wrapper.style3 strong, .wrapper.style3 b { color: #4c4c4c; } .wrapper.style3 h1, .wrapper.style3 h2, .wrapper.style3 h3, .wrapper.style3 h4, .wrapper.style3 h5, .wrapper.style3 h6 { font-family: "Raleway", Helvetica, sans-serif; color: #4c4c4c; } .wrapper.style3 blockquote { border-left-color: #d6d6d6; } .wrapper.style3 code { background: rgba(144, 144, 144, 0.075); border-color: #d6d6d6; } .wrapper.style3 hr { border-bottom-color: #d6d6d6; } .wrapper.style4 { background-color: #f97f4f; color: #feece5; } .wrapper.style4 input[type="submit"], .wrapper.style4 input[type="reset"], .wrapper.style4 input[type="button"], .wrapper.style4 button, .wrapper.style4 .button { background-color: transparent; color: #ffffff; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style4 input[type="submit"]:hover, .wrapper.style4 input[type="reset"]:hover, .wrapper.style4 input[type="button"]:hover, .wrapper.style4 button:hover, .wrapper.style4 .button:hover { background-color: rgba(255, 255, 255, 0.15) !important; } .wrapper.style4 input[type="submit"]:active, .wrapper.style4 input[type="reset"]:active, .wrapper.style4 input[type="button"]:active, .wrapper.style4 button:active, .wrapper.style4 .button:active { background-color: rgba(255, 255, 255, 0.4) !important; } .wrapper.style4 input[type="submit"].alt, .wrapper.style4 input[type="reset"].alt, .wrapper.style4 input[type="button"].alt, .wrapper.style4 button.alt, .wrapper.style4 .button.alt { background-color: transparent; color: #ffffff !important; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style4 input[type="submit"].alt:hover, .wrapper.style4 input[type="reset"].alt:hover, .wrapper.style4 input[type="button"].alt:hover, .wrapper.style4 button.alt:hover, .wrapper.style4 .button.alt:hover { background-color: rgba(255, 255, 255, 0.15); } .wrapper.style4 input[type="submit"].alt:active, .wrapper.style4 input[type="reset"].alt:active, .wrapper.style4 input[type="button"].alt:active, .wrapper.style4 button.alt:active, .wrapper.style4 .button.alt:active { background-color: rgba(255, 255, 255, 0.4); } .wrapper.style4 input[type="submit"].alt.icon:before, .wrapper.style4 input[type="reset"].alt.icon:before, .wrapper.style4 input[type="button"].alt.icon:before, .wrapper.style4 button.alt.icon:before, .wrapper.style4 .button.alt.icon:before { color: #75564f; } .wrapper.style4 input[type="submit"].special, .wrapper.style4 input[type="reset"].special, .wrapper.style4 input[type="button"].special, .wrapper.style4 button.special, .wrapper.style4 .button.special { box-shadow: none; background-color: #ffffff; color: #f97f4f; } .wrapper.style4 input[type="submit"].special:hover, .wrapper.style4 input[type="reset"].special:hover, .wrapper.style4 input[type="button"].special:hover, .wrapper.style4 button.special:hover, .wrapper.style4 .button.special:hover { color: white; } .wrapper.style4 input[type="submit"].special:active, .wrapper.style4 input[type="reset"].special:active, .wrapper.style4 input[type="button"].special:active, .wrapper.style4 button.special:active, .wrapper.style4 .button.special:active { color: #f2f2f2; } .wrapper.style4 label { color: #ffffff; } .wrapper.style4 input[type="text"], .wrapper.style4 input[type="password"], .wrapper.style4 input[type="email"], .wrapper.style4 select, .wrapper.style4 textarea { color: inherit; background-color: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 input[type="text"]:focus, .wrapper.style4 input[type="password"]:focus, .wrapper.style4 input[type="email"]:focus, .wrapper.style4 select:focus, .wrapper.style4 textarea:focus { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } .wrapper.style4 .select-wrapper:before { color: rgba(255, 255, 255, 0.5); } .wrapper.style4 input[type="checkbox"] + label, .wrapper.style4 input[type="radio"] + label { color: #feece5; } .wrapper.style4 input[type="checkbox"] + label:before, .wrapper.style4 input[type="radio"] + label:before { background-color: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 input[type="checkbox"]:checked + label:before, .wrapper.style4 input[type="radio"]:checked + label:before { background-color: #ffffff; border-color: #ffffff; color: #f97f4f; } .wrapper.style4 input[type="checkbox"]:focus + label:before, .wrapper.style4 input[type="radio"]:focus + label:before { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } .wrapper.style4 ::-webkit-input-placeholder { color: #75564f !important; } .wrapper.style4 :-moz-placeholder { color: #75564f !important; } .wrapper.style4 ::-moz-placeholder { color: #75564f !important; } .wrapper.style4 :-ms-input-placeholder { color: #75564f !important; } .wrapper.style4 .formerize-placeholder { color: #75564f !important; } .wrapper.style4 .icon { color: #75564f; } .wrapper.style4 .icon.icon-button { color: #db4307; border: 2x solid rgba(255, 255, 255, 0.5); box-shadow: 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style4 .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style4 .icon.icon-button.selected:hover, .wrapper.style4 .icon.icon-button.selected:focus, .wrapper.style4 .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style4 .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } .wrapper.style4 ul.alt > li { border-top-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 ul.piped > li { border-right-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 ul.icons > li .icon-toogle { color: #feece5; } .wrapper.style4 ul.icons > li .icon-toogle:hover, .wrapper.style4 ul.icons > li .icon-toogle:focus, .wrapper.style4 ul.icons > li .icon-toogle:active, .wrapper.style4 ul.icons > li .icon-toogle.selected { color: #ffffff; background-color: #f86d36; } .wrapper.style4 table tbody tr { border-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 table tbody tr:nth-child(2n + 1) { background-color: rgba(255, 255, 255, 0.15); } .wrapper.style4 table th { color: #ffffff; } .wrapper.style4 table thead { border-bottom-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 table tfoot { border-top-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 table.alt tbody tr td { border-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 .tooltip:after { color: #f97f4f; background: #ffffff; } .wrapper.style4 .tooltip:before { color: #ffffff; } .wrapper.style4 .tooltip.tooltip-s:before, .wrapper.style4 .tooltip.tooltip-se:before, .wrapper.style4 .tooltip.tooltip-sw:before { border-bottom-color: #ffffff; } .wrapper.style4 .tooltip.tooltip-n:before, .wrapper.style4 .tooltip.tooltip-ne:before, .wrapper.style4 .tooltip.tooltip-nw:before { border-top-color: #ffffff; } .wrapper.style4 .tooltip.tooltip-w:before { border-left-color: #ffffff; } .wrapper.style4 .tooltip.tooltip-e:before { border-right-color: #ffffff; } .wrapper.style4 input, .wrapper.style4 select, .wrapper.style4 textarea { color: #feece5; } .wrapper.style4 a { color: inherit; border-bottom-color: rgba(255, 255, 255, 0.75); color: #75564f; } .wrapper.style4 strong, .wrapper.style4 b { color: #ffffff; } .wrapper.style4 h1, .wrapper.style4 h2, .wrapper.style4 h3, .wrapper.style4 h4, .wrapper.style4 h5, .wrapper.style4 h6 { font-family: "Raleway", Helvetica, sans-serif; color: #ffffff; } .wrapper.style4 blockquote { border-left-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 code { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.5); } .wrapper.style4 hr { border-bottom-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 { background-color: #ffffff; color: #5e5e5e; } .wrapper.style5 input[type="submit"], .wrapper.style5 input[type="reset"], .wrapper.style5 input[type="button"], .wrapper.style5 button, .wrapper.style5 .button { background-color: transparent; color: #4c4c4c; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style5 input[type="submit"]:hover, .wrapper.style5 input[type="reset"]:hover, .wrapper.style5 input[type="button"]:hover, .wrapper.style5 button:hover, .wrapper.style5 .button:hover { background-color: rgba(255, 255, 255, 0.15) !important; } .wrapper.style5 input[type="submit"]:active, .wrapper.style5 input[type="reset"]:active, .wrapper.style5 input[type="button"]:active, .wrapper.style5 button:active, .wrapper.style5 .button:active { background-color: rgba(255, 255, 255, 0.4) !important; } .wrapper.style5 input[type="submit"].alt, .wrapper.style5 input[type="reset"].alt, .wrapper.style5 input[type="button"].alt, .wrapper.style5 button.alt, .wrapper.style5 .button.alt { background-color: transparent; color: #4c4c4c !important; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style5 input[type="submit"].alt:hover, .wrapper.style5 input[type="reset"].alt:hover, .wrapper.style5 input[type="button"].alt:hover, .wrapper.style5 button.alt:hover, .wrapper.style5 .button.alt:hover { background-color: rgba(255, 255, 255, 0.15); } .wrapper.style5 input[type="submit"].alt:active, .wrapper.style5 input[type="reset"].alt:active, .wrapper.style5 input[type="button"].alt:active, .wrapper.style5 button.alt:active, .wrapper.style5 .button.alt:active { background-color: rgba(255, 255, 255, 0.4); } .wrapper.style5 input[type="submit"].alt.icon:before, .wrapper.style5 input[type="reset"].alt.icon:before, .wrapper.style5 input[type="button"].alt.icon:before, .wrapper.style5 button.alt.icon:before, .wrapper.style5 .button.alt.icon:before { color: #f97f4f; } .wrapper.style5 input[type="submit"].special, .wrapper.style5 input[type="reset"].special, .wrapper.style5 input[type="button"].special, .wrapper.style5 button.special, .wrapper.style5 .button.special { box-shadow: none; background-color: #4c4c4c; color: #ffffff; } .wrapper.style5 input[type="submit"].special:hover, .wrapper.style5 input[type="reset"].special:hover, .wrapper.style5 input[type="button"].special:hover, .wrapper.style5 button.special:hover, .wrapper.style5 .button.special:hover { color: #595959; } .wrapper.style5 input[type="submit"].special:active, .wrapper.style5 input[type="reset"].special:active, .wrapper.style5 input[type="button"].special:active, .wrapper.style5 button.special:active, .wrapper.style5 .button.special:active { color: #3f3f3f; } .wrapper.style5 label { color: #4c4c4c; } .wrapper.style5 input[type="text"], .wrapper.style5 input[type="password"], .wrapper.style5 input[type="email"], .wrapper.style5 select, .wrapper.style5 textarea { color: inherit; background-color: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 input[type="text"]:focus, .wrapper.style5 input[type="password"]:focus, .wrapper.style5 input[type="email"]:focus, .wrapper.style5 select:focus, .wrapper.style5 textarea:focus { border-color: #4c4c4c; box-shadow: 0 0 0 1px #4c4c4c; } .wrapper.style5 .select-wrapper:before { color: rgba(255, 255, 255, 0.5); } .wrapper.style5 input[type="checkbox"] + label, .wrapper.style5 input[type="radio"] + label { color: #5e5e5e; } .wrapper.style5 input[type="checkbox"] + label:before, .wrapper.style5 input[type="radio"] + label:before { background-color: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 input[type="checkbox"]:checked + label:before, .wrapper.style5 input[type="radio"]:checked + label:before { background-color: #4c4c4c; border-color: #4c4c4c; color: #ffffff; } .wrapper.style5 input[type="checkbox"]:focus + label:before, .wrapper.style5 input[type="radio"]:focus + label:before { border-color: #4c4c4c; box-shadow: 0 0 0 1px #4c4c4c; } .wrapper.style5 ::-webkit-input-placeholder { color: #f97f4f !important; } .wrapper.style5 :-moz-placeholder { color: #f97f4f !important; } .wrapper.style5 ::-moz-placeholder { color: #f97f4f !important; } .wrapper.style5 :-ms-input-placeholder { color: #f97f4f !important; } .wrapper.style5 .formerize-placeholder { color: #f97f4f !important; } .wrapper.style5 .icon { color: #f97f4f; } .wrapper.style5 .icon.icon-button { color: #cccccc; border: 2x solid rgba(255, 255, 255, 0.5); box-shadow: 0 0 2px rgba(255, 255, 255, 0.5); } .wrapper.style5 .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style5 .icon.icon-button.selected:hover, .wrapper.style5 .icon.icon-button.selected:focus, .wrapper.style5 .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .wrapper.style5 .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } .wrapper.style5 ul.alt > li { border-top-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 ul.piped > li { border-right-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 ul.icons > li .icon-toogle { color: #5e5e5e; } .wrapper.style5 ul.icons > li .icon-toogle:hover, .wrapper.style5 ul.icons > li .icon-toogle:focus, .wrapper.style5 ul.icons > li .icon-toogle:active, .wrapper.style5 ul.icons > li .icon-toogle.selected { color: #4c4c4c; background-color: #f86d36; } .wrapper.style5 table tbody tr { border-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 table tbody tr:nth-child(2n + 1) { background-color: rgba(255, 255, 255, 0.15); } .wrapper.style5 table th { color: #4c4c4c; } .wrapper.style5 table thead { border-bottom-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 table tfoot { border-top-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 table.alt tbody tr td { border-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 .tooltip:after { color: #ffffff; background: #4c4c4c; } .wrapper.style5 .tooltip:before { color: #4c4c4c; } .wrapper.style5 .tooltip.tooltip-s:before, .wrapper.style5 .tooltip.tooltip-se:before, .wrapper.style5 .tooltip.tooltip-sw:before { border-bottom-color: #4c4c4c; } .wrapper.style5 .tooltip.tooltip-n:before, .wrapper.style5 .tooltip.tooltip-ne:before, .wrapper.style5 .tooltip.tooltip-nw:before { border-top-color: #4c4c4c; } .wrapper.style5 .tooltip.tooltip-w:before { border-left-color: #4c4c4c; } .wrapper.style5 .tooltip.tooltip-e:before { border-right-color: #4c4c4c; } .wrapper.style5 input, .wrapper.style5 select, .wrapper.style5 textarea { color: #5e5e5e; } .wrapper.style5 a { color: inherit; border-bottom-color: rgba(255, 255, 255, 0.75); color: #f97f4f; } .wrapper.style5 a:hover { text-decoration: underline; } .wrapper.style5 strong, .wrapper.style5 b { color: #4c4c4c; } .wrapper.style5 h1, .wrapper.style5 h2, .wrapper.style5 h3, .wrapper.style5 h4, .wrapper.style5 h5, .wrapper.style5 h6 { font-family: "Raleway", Helvetica, sans-serif; color: #4c4c4c; } .wrapper.style5 blockquote { border-left-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 code { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.5); } .wrapper.style5 hr { border-bottom-color: rgba(255, 255, 255, 0.5); } @media screen and (max-width: 980px) { .wrapper { padding: 4em 4em 2em 4em ; } .wrapper > .inner { width: 95%; } } @media screen and (max-width: 736px) and (orientation: landscape) { .wrapper { padding: 3em 3em 1em 3em ; } } @media screen and (max-width: 736px) and (orientation: portrait) { .wrapper { padding: 3em 1.5em 1em 1.5em ; } } @media screen and (max-width: 480px) and (orientation: landscape) { .wrapper { padding: 2em 1.5em 0.1em 1.5em ; } } @media screen and (max-width: 480px) and (orientation: portrait) { .wrapper { padding: 2em 1em 0.1em 1em ; } } /* Nav */ #nav { -moz-transform: translateX(20em); -webkit-transform: translateX(20em); -ms-transform: translateX(20em); transform: translateX(20em); -moz-transition: -moz-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s; -webkit-transition: -webkit-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s; -ms-transition: -ms-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s; transition: transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s; -webkit-overflow-scrolling: touch; background: gainsboro; box-shadow: none; color: #4c4c4c; height: 100%; max-width: 80%; overflow-y: auto; padding: 3em 2em; position: fixed; right: 0; top: 0; visibility: hidden; width: 20em; z-index: 1000002; } #nav > ul { margin: 0 0 1em 0; } #nav > ul.links { list-style: none; padding: 0; } #nav > ul.links > li { padding: 0; } #nav > ul.links > li > a:not(.button) { border: 0; border-top: solid 1px #e6e6e6; color: inherit; display: block; line-height: 3.5; text-decoration: none; } #nav > ul.links > li > .button { display: block; margin: 0.5em 0 0 0; } #nav > ul.links > li:first-child > a:not(.button) { border-top: 0 !important; } #nav .close { text-decoration: none; -moz-transition: color 0.3s ease-in-out; -webkit-transition: color 0.3s ease-in-out; -ms-transition: color 0.3s ease-in-out; transition: color 0.3s ease-in-out; -webkit-tap-highlight-color: transparent; border: 0; color: #54555c; cursor: pointer; display: block; height: 3.25em; line-height: 3.25; padding-right: 1.25em; position: absolute; right: 0; text-align: right; top: 0; vertical-align: middle; width: 7em; } #nav .close:before { content: ""; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; } #nav .close:before { font-size: 1.25em; } #nav .close:hover { color: #4c4c4c; } @media screen and (max-width: 736px) { #nav .close { height: 4em; line-height: 4; } } #nav.visible { -moz-transform: translateX(0); -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); box-shadow: 0 0 1.5em 0 rgba(0, 0, 0, 0.2); visibility: visible; } @media screen and (max-width: 736px) { #nav { padding: 2.5em 1.75em; } } /* Banner */ .banner { background-color: #555555; color: #e6e6e6; padding: 6em 0 4em 0 ; -moz-align-items: center; -webkit-align-items: center; -ms-align-items: center; align-items: center; display: -moz-flex; display: -webkit-flex; display: -ms-flex; display: flex; -moz-justify-content: center; -webkit-justify-content: center; -ms-justify-content: center; justify-content: center; background-image: url("images/overlay.png"), url("images/unitex-pattern.png"); background-position: top left, center center; background-attachment: fixed, fixed; background-size: auto, cover; height: 100vh; min-height: 35em; } .banner input[type="submit"], .banner input[type="reset"], .banner input[type="button"], .banner button, .banner .button { background-color: transparent; color: #ffffff; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .banner input[type="submit"]:hover, .banner input[type="reset"]:hover, .banner input[type="button"]:hover, .banner button:hover, .banner .button:hover { background-color: #f97f4f !important; } .banner input[type="submit"]:active, .banner input[type="reset"]:active, .banner input[type="button"]:active, .banner button:active, .banner .button:active { background-color: rgba(255, 255, 255, 0.4) !important; } .banner input[type="submit"].alt, .banner input[type="reset"].alt, .banner input[type="button"].alt, .banner button.alt, .banner .button.alt { background-color: transparent; color: #ffffff !important; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } .banner input[type="submit"].alt:hover, .banner input[type="reset"].alt:hover, .banner input[type="button"].alt:hover, .banner button.alt:hover, .banner .button.alt:hover { background-color: #f97f4f; } .banner input[type="submit"].alt:active, .banner input[type="reset"].alt:active, .banner input[type="button"].alt:active, .banner button.alt:active, .banner .button.alt:active { background-color: rgba(255, 255, 255, 0.4); } .banner input[type="submit"].alt.icon:before, .banner input[type="reset"].alt.icon:before, .banner input[type="button"].alt.icon:before, .banner button.alt.icon:before, .banner .button.alt.icon:before { color: #ffffff; } .banner input[type="submit"].special, .banner input[type="reset"].special, .banner input[type="button"].special, .banner button.special, .banner .button.special { box-shadow: none; background-color: #ffffff; color: #555555; } .banner input[type="submit"].special:hover, .banner input[type="reset"].special:hover, .banner input[type="button"].special:hover, .banner button.special:hover, .banner .button.special:hover { color: white; } .banner input[type="submit"].special:active, .banner input[type="reset"].special:active, .banner input[type="button"].special:active, .banner button.special:active, .banner .button.special:active { color: #f2f2f2; } .banner label { color: #ffffff; } .banner input[type="text"], .banner input[type="password"], .banner input[type="email"], .banner select, .banner textarea { color: inherit; background-color: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } .banner input[type="text"]:focus, .banner input[type="password"]:focus, .banner input[type="email"]:focus, .banner select:focus, .banner textarea:focus { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } .banner .select-wrapper:before { color: rgba(255, 255, 255, 0.5); } .banner input[type="checkbox"] + label, .banner input[type="radio"] + label { color: #e6e6e6; } .banner input[type="checkbox"] + label:before, .banner input[type="radio"] + label:before { background-color: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } .banner input[type="checkbox"]:checked + label:before, .banner input[type="radio"]:checked + label:before { background-color: #ffffff; border-color: #ffffff; color: #555555; } .banner input[type="checkbox"]:focus + label:before, .banner input[type="radio"]:focus + label:before { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } .banner ::-webkit-input-placeholder { color: #ffffff !important; } .banner :-moz-placeholder { color: #ffffff !important; } .banner ::-moz-placeholder { color: #ffffff !important; } .banner :-ms-input-placeholder { color: #ffffff !important; } .banner .formerize-placeholder { color: #ffffff !important; } .banner .icon { color: #ffffff; } .banner .icon.icon-button { color: #222222; border: 2x solid rgba(255, 255, 255, 0.5); box-shadow: 0 0 2px rgba(255, 255, 255, 0.5); } .banner .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .banner .icon.icon-button.selected:hover, .banner .icon.icon-button.selected:focus, .banner .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } .banner .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } .banner ul.alt > li { border-top-color: rgba(255, 255, 255, 0.5); } .banner ul.piped > li { border-right-color: rgba(255, 255, 255, 0.5); } .banner ul.icons > li .icon-toogle { color: #e6e6e6; } .banner ul.icons > li .icon-toogle:hover, .banner ul.icons > li .icon-toogle:focus, .banner ul.icons > li .icon-toogle:active, .banner ul.icons > li .icon-toogle.selected { color: #ffffff; background-color: #484848; } .banner table tbody tr { border-color: rgba(255, 255, 255, 0.5); } .banner table tbody tr:nth-child(2n + 1) { background-color: #f97f4f; } .banner table th { color: #ffffff; } .banner table thead { border-bottom-color: rgba(255, 255, 255, 0.5); } .banner table tfoot { border-top-color: rgba(255, 255, 255, 0.5); } .banner table.alt tbody tr td { border-color: rgba(255, 255, 255, 0.5); } .banner .tooltip:after { color: #555555; background: #ffffff; } .banner .tooltip:before { color: #ffffff; } .banner .tooltip.tooltip-s:before, .banner .tooltip.tooltip-se:before, .banner .tooltip.tooltip-sw:before { border-bottom-color: #ffffff; } .banner .tooltip.tooltip-n:before, .banner .tooltip.tooltip-ne:before, .banner .tooltip.tooltip-nw:before { border-top-color: #ffffff; } .banner .tooltip.tooltip-w:before { border-left-color: #ffffff; } .banner .tooltip.tooltip-e:before { border-right-color: #ffffff; } .banner input, .banner select, .banner textarea { color: #e6e6e6; } .banner a { color: inherit; border-bottom-color: rgba(255, 255, 255, 0.75); color: #ffffff; } .banner strong, .banner b { color: #ffffff; } .banner h1, .banner h2, .banner h3, .banner h4, .banner h5, .banner h6 { font-family: "Raleway", Helvetica, sans-serif; color: #ffffff; } .banner blockquote { border-left-color: rgba(255, 255, 255, 0.5); } .banner code { background: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } .banner hr { border-bottom-color: rgba(255, 255, 255, 0.5); } .banner.post { height: 15em; min-height: 14em; } .banner.blog, .banner.category { height: 91vh; min-height: 23em; padding: 8em 0 8em 0; } .banner h1 { display: block; color: #fff; line-height: 1.1em; text-shadow: 0px 1px 0px rgba(50, 59, 64, 0.56); font-size: 3em; font-weight: bold; margin-bottom: 0.2em; margin-top: 0.2em; } .banner p { font-size: 1.1em; line-height: 1; margin-bottom: 1em; } .banner p br { display: inline; } .banner .content { -moz-transition: opacity 0.5s ease, -moz-transform 1s ease; -webkit-transition: opacity 0.5s ease, -webkit-transform 1s ease; -ms-transition: opacity 0.5s ease, -ms-transform 1s ease; transition: opacity 0.5s ease, transform 1s ease; -moz-transform: translateX(0); -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); opacity: 1; text-align: center; } .banner .content .banner-heading { display: inline-block; margin-bottom: 0px; padding: 0px; border-radius: 3px; color: rgba(255, 255, 255, 0.58); font-size: 1em; line-height: 0.5em; letter-spacing: 0.5px; text-transform: uppercase; } .banner .content > :last-child { margin-bottom: 0; } .banner .content > .inner { margin-left: auto; margin-right: auto; width: 90%; display: block; color: rgba(255, 255, 255, 0.78); line-height: 1.3em; font-size: 1.2em; font-weight: 300; margin-top: 2em; margin-bottom: 2em; } .banner .image { -moz-transition: opacity 1s ease, -moz-transform 1s ease; -webkit-transition: opacity 1s ease, -webkit-transform 1s ease; -ms-transition: opacity 1s ease, -ms-transform 1s ease; transition: opacity 1s ease, transform 1s ease; -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); opacity: 1; } .banner .image img { -moz-transition: opacity 0.75s ease; -webkit-transition: opacity 0.75s ease; -ms-transition: opacity 0.75s ease; transition: opacity 0.75s ease; -moz-transition-delay: 0.75s; -webkit-transition-delay: 0.75s; -ms-transition-delay: 0.75s; transition-delay: 0.75s; opacity: 1; } @media screen and (max-width: 980px) { .banner { height: auto; min-height: 0; } .banner.summary { height: auto; min-height: 0; } .banner .content { margin: 2em 0em 0 0; } .banner .content > .inner { width: 90%; } } @media screen and (max-width: 980px) and (orientation: portrait) { .banner { padding: 8em 3em 6em 3em ; -moz-flex-direction: column-reverse; -webkit-flex-direction: column-reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; } .banner .content { display: block; width: 100%; text-align: center; margin: 0 0 2em 0; } .banner .image { overflow: hidden; } } @media screen and (max-width: 736px) { .banner .content > .inner { width: 100%; } .banner h1 { font-size: 2em; margin-top: 2.6em; } .banner p { font-size: 1em; line-height: inherit; } } @media screen and (max-width: 736px) and (orientation: landscape) { .banner { padding: 6em 2em 4em 2em ; } .banner .content { margin: 0 0 2em 0; } .banner .image { font-size: 0.8em; width: 15em; max-width: 20vw; } .banner .image .inner, .banner .image:before, .banner .image:after { font-size: 0.8em; } } @media screen and (max-width: 736px) and (orientation: portrait) { .banner { padding: 3em 1.5em 1em 1.5em ; } .banner .image { font-size: 0.6em; max-width: 60vw; } } @media screen and (max-width: 480px) and (orientation: landscape) { .banner { padding: 3em 1.5em 1em 1.5em ; } .banner .image { font-size: 0.7em; } .banner .actions { font-size: 0.8em; } } @media screen and (max-width: 480px) and (orientation: portrait) { .banner { padding: 8em 1em 7em 1em; } } body.is-mobile .banner { background-attachment: scroll, scroll; } body.is-loading .banner .content { -moz-transform: translateX(2em); -webkit-transform: translateX(2em); -ms-transform: translateX(2em); transform: translateX(2em); opacity: 0; } body.is-loading .banner .image { -moz-transform: translateY(4em); -webkit-transform: translateY(4em); -ms-transform: translateY(4em); transform: translateY(4em); opacity: 0; } body.is-loading .banner .image img { opacity: 0; } @media screen and (max-width: 980px) and (orientation: portrait) { body.is-loading .banner .content { -moz-transform: none; -webkit-transform: none; -ms-transform: none; transform: none; opacity: 1; } body.is-loading .banner .image { -moz-transform: translateY(2em); -webkit-transform: translateY(2em); -ms-transform: translateY(2em); transform: translateY(2em); } } /* Header */ #header { background-color: #555555; color: #e6e6e6; padding: 4.5em 0 2.5em 0 ; -moz-align-items: center; -webkit-align-items: center; -ms-align-items: center; align-items: center; display: -moz-flex; display: -webkit-flex; display: -ms-flex; display: flex; -moz-justify-content: center; -webkit-justify-content: center; -ms-justify-content: center; justify-content: center; background-image: url("images/overlay.png"), url("images/unitex-pattern.png"); background-position: top left, center center; background-attachment: fixed, fixed; background-size: auto, cover; height: 100vh; min-height: 35em; } #header input[type="submit"], #header input[type="reset"], #header input[type="button"], #header button, #header .button { background-color: transparent; color: #ffffff; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } #header input[type="submit"]:hover, #header input[type="reset"]:hover, #header input[type="button"]:hover, #header button:hover, #header .button:hover { background-color: #f97f4f !important; } #header input[type="submit"]:active, #header input[type="reset"]:active, #header input[type="button"]:active, #header button:active, #header .button:active { background-color: rgba(255, 255, 255, 0.4) !important; } #header input[type="submit"].alt, #header input[type="reset"].alt, #header input[type="button"].alt, #header button.alt, #header .button.alt { background-color: transparent; color: #ffffff !important; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); } #header input[type="submit"].alt:hover, #header input[type="reset"].alt:hover, #header input[type="button"].alt:hover, #header button.alt:hover, #header .button.alt:hover { background-color: #f97f4f; } #header input[type="submit"].alt:active, #header input[type="reset"].alt:active, #header input[type="button"].alt:active, #header button.alt:active, #header .button.alt:active { background-color: rgba(255, 255, 255, 0.4); } #header input[type="submit"].alt.icon:before, #header input[type="reset"].alt.icon:before, #header input[type="button"].alt.icon:before, #header button.alt.icon:before, #header .button.alt.icon:before { color: #ffffff; } #header input[type="submit"].special, #header input[type="reset"].special, #header input[type="button"].special, #header button.special, #header .button.special { box-shadow: none; background-color: #ffffff; color: #555555; } #header input[type="submit"].special:hover, #header input[type="reset"].special:hover, #header input[type="button"].special:hover, #header button.special:hover, #header .button.special:hover { color: white; } #header input[type="submit"].special:active, #header input[type="reset"].special:active, #header input[type="button"].special:active, #header button.special:active, #header .button.special:active { color: #f2f2f2; } #header label { color: #ffffff; } #header input[type="text"], #header input[type="password"], #header input[type="email"], #header select, #header textarea { color: inherit; background-color: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } #header input[type="text"]:focus, #header input[type="password"]:focus, #header input[type="email"]:focus, #header select:focus, #header textarea:focus { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } #header .select-wrapper:before { color: rgba(255, 255, 255, 0.5); } #header input[type="checkbox"] + label, #header input[type="radio"] + label { color: #e6e6e6; } #header input[type="checkbox"] + label:before, #header input[type="radio"] + label:before { background-color: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } #header input[type="checkbox"]:checked + label:before, #header input[type="radio"]:checked + label:before { background-color: #ffffff; border-color: #ffffff; color: #555555; } #header input[type="checkbox"]:focus + label:before, #header input[type="radio"]:focus + label:before { border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; } #header ::-webkit-input-placeholder { color: #ffffff !important; } #header :-moz-placeholder { color: #ffffff !important; } #header ::-moz-placeholder { color: #ffffff !important; } #header :-ms-input-placeholder { color: #ffffff !important; } #header .formerize-placeholder { color: #ffffff !important; } #header .icon { color: #ffffff; } #header .icon.icon-button { color: #222222; border: 2x solid rgba(255, 255, 255, 0.5); box-shadow: 0 0 2px rgba(255, 255, 255, 0.5); } #header .icon.icon-button.selected { color: #434D60; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } #header .icon.icon-button.selected:hover, #header .icon.icon-button.selected:focus, #header .icon.icon-button.selected:active { color: #2e3542; background: transparent linear-gradient(#fefefe, #cfdcec) repeat scroll 0% 0%; } #header .image { box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); } #header ul.alt > li { border-top-color: rgba(255, 255, 255, 0.5); } #header ul.piped > li { border-right-color: rgba(255, 255, 255, 0.5); } #header ul.icons > li .icon-toogle { color: #e6e6e6; } #header ul.icons > li .icon-toogle:hover, #header ul.icons > li .icon-toogle:focus, #header ul.icons > li .icon-toogle:active, #header ul.icons > li .icon-toogle.selected { color: #ffffff; background-color: #484848; } #header table tbody tr { border-color: rgba(255, 255, 255, 0.5); } #header table tbody tr:nth-child(2n + 1) { background-color: #f97f4f; } #header table th { color: #ffffff; } #header table thead { border-bottom-color: rgba(255, 255, 255, 0.5); } #header table tfoot { border-top-color: rgba(255, 255, 255, 0.5); } #header table.alt tbody tr td { border-color: rgba(255, 255, 255, 0.5); } #header .tooltip:after { color: #555555; background: #ffffff; } #header .tooltip:before { color: #ffffff; } #header .tooltip.tooltip-s:before, #header .tooltip.tooltip-se:before, #header .tooltip.tooltip-sw:before { border-bottom-color: #ffffff; } #header .tooltip.tooltip-n:before, #header .tooltip.tooltip-ne:before, #header .tooltip.tooltip-nw:before { border-top-color: #ffffff; } #header .tooltip.tooltip-w:before { border-left-color: #ffffff; } #header .tooltip.tooltip-e:before { border-right-color: #ffffff; } #header input, #header select, #header textarea { color: #e6e6e6; } #header a { color: inherit; border-bottom-color: rgba(255, 255, 255, 0.75); color: #ffffff; } #header strong, #header b { color: #ffffff; } #header h1, #header h2, #header h3, #header h4, #header h5, #header h6 { font-family: "Raleway", Helvetica, sans-serif; color: #ffffff; } #header blockquote { border-left-color: rgba(255, 255, 255, 0.5); } #header code { background: #f97f4f; border-color: rgba(255, 255, 255, 0.5); } #header hr { border-bottom-color: rgba(255, 255, 255, 0.5); } #header h1 { font-size: 3.25em; font-weight: bold; margin-bottom: 0.5em; } #header p { font-size: 1.5em; line-height: 1.35; } #header p br { display: inline; } #header .win-color { color: #00aef0; } #header .linux-color { color: #f97f4f; } #header .osx-color { color: #b7b1b1; } #header .other-color { color: #fdbf2e; } #header input[type="submit"].win:hover, #header input[type="reset"].win:hover, #header input[type="button"].win:hover, #header button.win:hover, #header .button.win:hover { background-color: #00aef0 !important; } #header input[type="submit"].linux:hover, #header input[type="reset"].linux:hover, #header input[type="button"].linux:hover, #header button.linux:hover, #header .button.linux:hover { background-color: #f97f4f !important; } #header input[type="submit"].osx:hover, #header input[type="reset"].osx:hover, #header input[type="button"].osx:hover, #header button.osx:hover, #header .button.osx:hover { background-color: #b7b1b1 !important; } #header input[type="submit"].other:hover, #header input[type="reset"].other:hover, #header input[type="button"].other:hover, #header button.other:hover, #header .button.other:hover { background-color: #fdbf2e !important; } #header .content { -moz-transition: opacity 0.5s ease, -moz-transform 1s ease; -webkit-transition: opacity 0.5s ease, -webkit-transform 1s ease; -ms-transition: opacity 0.5s ease, -ms-transform 1s ease; transition: opacity 0.5s ease, transform 1s ease; -moz-transform: translateX(0); -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); opacity: 1; text-align: center; } #header .content > :last-child { margin-bottom: 0; } #header .content > .inner { margin-left: auto; margin-right: auto; width: 35em; } #header .image { -moz-transition: opacity 1s ease, -moz-transform 1s ease; -webkit-transition: opacity 1s ease, -webkit-transform 1s ease; -ms-transition: opacity 1s ease, -ms-transform 1s ease; transition: opacity 1s ease, transform 1s ease; -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); opacity: 1; } #header .image img { -moz-transition: opacity 0.75s ease; -webkit-transition: opacity 0.75s ease; -ms-transition: opacity 0.75s ease; transition: opacity 0.75s ease; -moz-transition-delay: 0.75s; -webkit-transition-delay: 0.75s; -ms-transition-delay: 0.75s; transition-delay: 0.75s; opacity: 1; } @media screen and (max-width: 980px) { #header { height: auto; min-height: 0; } #header .content { margin: 2em 0em 0 0; } #header .content > .inner { width: 90%; } } @media screen and (max-width: 980px) and (orientation: portrait) { #header { padding: 8em 3em 6em 3em ; -moz-flex-direction: column-reverse; -webkit-flex-direction: column-reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; } #header .content { display: block; width: 100%; text-align: center; margin: 0 0 2em 0; } #header .image { overflow: hidden; } } @media screen and (max-width: 736px) { #header .content > .inner { width: 100%; } #header h1 { font-size: 2em; margin-top: 0.5em; } #header p { font-size: 1em; line-height: inherit; } } @media screen and (max-width: 736px) and (orientation: landscape) { #header { padding: 4em 2em 2em 2em ; } #header .content { margin: 0 0 2em 0; } #header .image { font-size: 0.8em; width: 15em; max-width: 20vw; } #header .image .inner, #header .image:before, #header .image:after { font-size: 0.8em; } } @media screen and (max-width: 736px) and (orientation: portrait) { #header { padding: 3em 1.5em 1em 1.5em ; } #header .image { font-size: 0.6em; max-width: 60vw; } } @media screen and (max-width: 480px) and (orientation: landscape) { #header { padding: 3em 1.5em 1em 1.5em ; } #header .image { font-size: 0.7em; } #header .actions { font-size: 0.8em; } } @media screen and (max-width: 480px) and (orientation: portrait) { #header { padding: 4em 1em 2em 1em ; } } body.is-mobile #header { background-attachment: scroll, scroll; } body.is-loading #header .content { -moz-transform: translateX(2em); -webkit-transform: translateX(2em); -ms-transform: translateX(2em); transform: translateX(2em); opacity: 0; } body.is-loading #header .image { -moz-transform: translateY(4em); -webkit-transform: translateY(4em); -ms-transform: translateY(4em); transform: translateY(4em); opacity: 0; } body.is-loading #header .image img { opacity: 0; } @media screen and (max-width: 980px) and (orientation: portrait) { body.is-loading #header .content { -moz-transform: none; -webkit-transform: none; -ms-transform: none; transform: none; opacity: 1; } body.is-loading #header .image { -moz-transform: translateY(2em); -webkit-transform: translateY(2em); -ms-transform: translateY(2em); transform: translateY(2em); } } /* Highlights */ #highlights { padding: 0em 0 1em 0; /* .slick-dots { margin: 0; } */ } #highlights .container { text-align: center; } #highlights .highlights-carousel { margin-bottom: 0; } #highlights a, #highlights a:visited, #highlights a:active { text-decoration: none; border-bottom: 1px dotted; } #highlights p { margin: 0; } #highlights .slick-dots { bottom: -50px; } #highlights .slick-slide { line-height: 1.3; height: 4.6em; } #highlights .slick-slide::before { content: ''; height: 100%; display: inline-block; vertical-align: middle; } #highlights .highlight-text { display: inline-block; vertical-align: middle; } @media screen and (max-width: 736px) { #highlights { padding: 0em 0 1em 0; } #highlights .slick-slide { height: auto; } } /* About */ #about .image { box-shadow: unset; } #about-features #functions-items { margin-bottom: 7px; } #about-features #corpus-processing-suite { padding-top: 0em; } #about-features #corpus-processing-suite ul.actions.piped li { padding: 2px; line-height: 2em; } @media screen and (max-width: 736px) { #about-features #corpus-processing-suite ul.actions.piped li { display: block; text-align: center; width: 100%; } #about-features #corpus-processing-suite ul.actions.piped li > * { width: 100%; margin: 0 !important; } } #about-features .ug-label, #about-features .ug-badge { padding: 5px 7px; font-size: 110%; margin-bottom: 7px; } /* Screenshots */ #screenshots { padding: 2em 0 2em 0; } #screenshots .slick-slider { margin-bottom: 0px; } #screenshots .slick-initialized .slick-slide { float: none; display: inline-block; vertical-align: middle; } #screenshots h3 { text-align: center; } @media screen and (max-width: 736px) { #screenshots { padding: 1em 0 1.5em 0; } #screenshots .slick-prev { left: 0; } #screenshots .slick-next { right: 0; } } /* Downloads */ #downloads { padding: 3em 0 1em 0 ; background-image: url("images/overlay.png"), url("images/unitex-pattern.png"); background-position: top left, center center; background-attachment: fixed, fixed; background-size: auto, cover; } #downloads .slick-slider { margin-bottom: 0px; } #downloads .download-minimal-os, #downloads .download-filetype, #downloads .download-arch { vertical-align: super; font-size: 0.5em; margin-left: 3px; } #downloads .win-color { color: #00aef0; } #downloads .linux-color { color: #f97f4f; } #downloads .osx-color { color: #b7b1b1; } #downloads .other-color { color: #fdbf2e; } #downloads input[type="submit"].win:hover, #downloads input[type="reset"].win:hover, #downloads input[type="button"].win:hover, #downloads button.win:hover, #downloads .button.win:hover { background-color: #00aef0 !important; } #downloads input[type="submit"].linux:hover, #downloads input[type="reset"].linux:hover, #downloads input[type="button"].linux:hover, #downloads button.linux:hover, #downloads .button.linux:hover { background-color: #f97f4f !important; } #downloads input[type="submit"].osx:hover, #downloads input[type="reset"].osx:hover, #downloads input[type="button"].osx:hover, #downloads button.osx:hover, #downloads .button.osx:hover { background-color: #b7b1b1 !important; } #downloads input[type="submit"].other:hover, #downloads input[type="reset"].other:hover, #downloads input[type="button"].other:hover, #downloads button.other:hover, #downloads .button.other:hover { background-color: #fdbf2e !important; } #downloads .download-description a, #downloads .download-description a:visited, #downloads .download-description a:active { text-decoration: none; border-bottom: 1px dotted; } #downloads .tooltip:after { font-size: 0.8em; } #downloads .actions-release { margin-top: 1em; } @media screen and (max-width: 736px) { #downloads { padding: 3em 0 1em 0 ; } #downloads .slick-prev { left: 0; } #downloads .slick-next { right: 0; } #downloads .actions-release { margin-top: 2em; } } /* More */ #more { padding: 3em 0 2em 0 ; } #more ul { margin: 0; } #more .row.uniform { margin-bottom: 1em; } #more i:hover { -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); } #more h3 { line-height: 1; margin-top: 1em; } @media screen and (max-width: 736px) { #more { padding: 3em 0 1em 0 ; } #more h2, #more h3, #more h4, #more h5, #more h6 { text-align: center; } } /* Footer */ #footer { background-color: #f7f7f7; color: #757574; padding: 1em 0 1em 0; display: block; float: left; width: 100%; height: auto; line-height: 1.2; position: relative; } #footer input, #footer select, #footer textarea { color: #757574; } #footer a { color: inherit; border-bottom-color: #c6c6c6; } #footer a:hover { color: #f97f4f; } #footer strong, #footer b { color: #4c4c4c; } #footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 { font-family: "Raleway", Helvetica, sans-serif; color: #4c4c4c; } #footer blockquote { border-left-color: #d6d6d6; } #footer code { background: rgba(144, 144, 144, 0.075); border-color: #d6d6d6; } #footer hr { border-bottom-color: #d6d6d6; } #footer a { color: inherit; } #footer #quick-button { text-decoration: none; overflow: hidden; text-indent: 100%; white-space: nowrap; text-decoration: none; position: absolute; top: -1.45rem; left: 50%; margin-left: -0.5rem; text-align: center; border-radius: 15%; outline: none; width: 2rem; height: 2rem; line-height: 2; vertical-align: middle; color: #e6e6e6; background-color: transparent; -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s; -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s; -ms-transition: opacity 0.3s 0s, visibility 0s 0.3s; transition: opacity 0.3s 0s, visibility 0s 0.3s; opacity: 0.8; } #footer #quick-button:before { content: ""; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; } #footer #quick-button:before { font-size: 1.5rem; margin-left: -2rem; } #footer #quick-button:hover { color: #555555; opacity: 1; -moz-transition: opacity 0.3s 0s, visibility 0s; -webkit-transition: opacity 0.3s 0s, visibility 0s; -ms-transition: opacity 0.3s 0s, visibility 0s; transition: opacity 0.3s 0s, visibility 0s; } #footer .icons, #footer .actions { width: auto; text-align: center; } #footer .icons { float: right; margin-top: 0.6em; margin-bottom: 0.5em; } #footer .actions { float: left; font-size: 0.8em; margin: 0px 0px 0.5em; } #footer .credits, #footer .copyright { float: left; width: auto; text-align: center; color: #898b8c; line-height: 1.1; clear: both; font-size: 0.8em; } #footer .credits { margin: 0px 0px 0.5em; } #footer .copyright { margin: 0px 0px 0.2em; } @media screen and (max-width: 1280px) and (orientation: landscape) { #footer .icons { margin-right: 3em; } } @media screen and (max-width: 980px) { #footer { padding: 1em 4em 2em 4em; } #footer .actions, #footer .credits, #footer .copyright, #footer .icons { width: 100%; } #footer .credits { padding-top: 1.5em; } } @media screen and (max-width: 980px) and (orientation: landscape) { #footer .icons { margin-right: 0; } } @media screen and (max-width: 736px) { #footer .credits, #footer .copyright { width: 100%; margin-bottom: 1em; } #footer .actions { padding-top: 2em; } #footer .actions, #footer .icons { width: 100%; margin-bottom: 1em; } } @media screen and (max-width: 736px) and (orientation: landscape) { #footer { padding: 1em 6em 1em 6em; } } @media screen and (max-width: 736px) and (orientation: portrait) { #footer { padding: 1em 1em 1em 2em; } } /* Back to top */ #backtotop { display: none; } #backtotop a { text-decoration: none; overflow: hidden; text-indent: 100%; white-space: nowrap; position: fixed; right: 2em; bottom: 1.55rem; text-decoration: none; text-indent: 2.3em; outline: none; width: 2.3rem; height: 2.3rem; border-radius: 50%; text-align: center; line-height: 2.3rem; vertical-align: middle; color: #ffffff !important; background-color: #555555; -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s; -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s; -ms-transition: opacity 0.3s 0s, visibility 0s 0.3s; transition: opacity 0.3s 0s, visibility 0s 0.3s; opacity: 0.8; z-index: 1; } #backtotop a:before { content: ""; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; } #backtotop a:before { font-size: 1.8rem; margin-left: -1.25em; } #backtotop a:hover { background-color: #555555; opacity: 1; -moz-transition: opacity 0.3s 0s, visibility 0s; -webkit-transition: opacity 0.3s 0s, visibility 0s; -ms-transition: opacity 0.3s 0s, visibility 0s; transition: opacity 0.3s 0s, visibility 0s; } @media screen and (max-width: 736px) { #backtotop a { right: 1em; bottom: 2em; } } /* Javascript disabled */ html.no-js .navbar { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } html.no-js .download-description { height: 9em; overflow: hidden; } @media screen and (max-width: 980px) { html.no-js .download-description { height: 7em; } } @media screen and (max-width: 736px) { html.no-js .download-description { height: 6em; } } /* Autumn Content */ .autumn-content .autumn-index-post { visibility: hidden; } .autumn-content .autumn-index-post .autumn-post-meta { display: block; text-align: center; margin-top: 1.8em; } @media screen and (max-width: 736px) { .autumn-content .autumn-index-post .autumn-post-meta { margin-top: 3em; } } .autumn-content .autumn-index-post .autumn-post-meta .month-year { text-transform: uppercase; } .autumn-content .autumn-index-post .autumn-post-thumbnail { text-align: center; margin-top: 10px; } .autumn-content .autumn-index-post .autumn-post-thumbnail-tag { display: inherit; height: 100px; left: 200px; margin: 0 auto; text-align: center; width: 100px; } .autumn-content .autumn-index-post .autumn-post-thumbnail-tag-letters { color: #fff; font-family: "Ubuntu Mono"; font-size: 50px; font-weight: bold; line-height: 50px; position: relative; top: 25px; } @media screen and (max-width: 736px) { .autumn-content .autumn-index-post .autumn-post-header .autumn-post-title { font-weight: 600; text-align: center; } } @media screen and (max-width: 736px) { .autumn-content .autumn-index-post .autumn-post-excerpt { text-align: center; } } .autumn-content .autumn-index-post .autumn-post-excerpt p { margin: 0 0 0.7em 0; } .autumn-content .autumn-index-post .autumn-index-post-tags { font-size: 0.8125em; } @media screen and (max-width: 736px) { .autumn-content .autumn-index-post .autumn-index-post-tags { text-align: center; } } .autumn-content .fadeInDown { -moz-animation-duration: 1s; -webkit-animation-duration: 1s; -ms-animation-duration: 1s; animation-duration: 1s; -moz-animation-fill-mode: both; -webkit-animation-fill-mode: both; -ms-animation-fill-mode: both; animation-fill-mode: both; -moz-animation-name: fadeInDown; -webkit-animation-name: fadeInDown; -ms-animation-name: fadeInDown; animation-name: fadeInDown; visibility: visible !important; } @-moz-keyframes fadeInDown { 0% { opacity: 0; -moz-transform: translateY(-20px); -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); } 100% { opacity: 1; -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } } @-webkit-keyframes fadeInDown { 0% { opacity: 0; -moz-transform: translateY(-20px); -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); } 100% { opacity: 1; -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } } @-ms-keyframes fadeInDown { 0% { opacity: 0; -moz-transform: translateY(-20px); -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); } 100% { opacity: 1; -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } } @keyframes fadeInDown { 0% { opacity: 0; -moz-transform: translateY(-20px); -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); } 100% { opacity: 1; -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } } .autumn-content .pagination { padding: 1px; color: #4C4C4C; } @media screen and (max-width: 736px) { .autumn-content .pagination { margin-top: 5em; } } html.no-js .autumn-content .autumn-index-post { visibility: visible; } /* Autumn Post Content */ .autumn-post-content p { margin: 0 0 1em 0; } .autumn-post-content ul li { padding-top: 0.2em; } .autumn-post-content blockquote { margin: 1em 0 1em 0; } .autumn-post-content > div:not(.autumn-post-title) p.with-image { text-align: center; padding-top: 1.125rem; padding-bottom: 1.125rem; } .autumn-post-content > div:not(.autumn-post-title) a { color: #f97f4f; } .autumn-post-content > div:not(.autumn-post-title) h1, .autumn-post-content > div:not(.autumn-post-title) h2 { font-weight: bold; } #autumn-post footer hr { margin: 0px; }
0.507812
0.231538
@-moz-document domain("gazelleclub.ru") { #copyright { font-size: 16px !important; } #copyright noindex a { font-size: 16px !important; } #mark_all_read { font-size: 16px !important; } #story { font-size: 16px !important; } a { font-size: 16px !important; } a.active b { font-size: 16px !important; } a.topic_title span { font-size: 16px !important; } blockquote { font-size: 16px !important; } blockquote.ipsBlockquote.built { font-size: 16px !important; } div { font-size: 16px !important; } div.conttext p { font-size: 16px !important; } div.conttitle a { font-size: 16px !important; } div.dright a b { font-size: 16px !important; } div.ipsType_pagedesc.forum_rules { font-size: 16px !important; } div.post.entry-content p span { font-size: 18px !important; } li { font-size: 16px !important; } li a b { font-size: 16px !important; } li a span { font-size: 16px !important; } li.disabled span { font-size: 16px !important; } li.views.desc { font-size: 16px !important; } ol.breadcrumb.bottom.ipsList_inline.left.clearfix.clear li a { font-size: 16px !important; } p { font-size: 16px !important; } p.desc.__forum_desc.ipsType_small { font-size: 16px !important; } p.pagination.no_pages.left.ipsType_small span { font-size: 16px !important; } p.statistics_brief.desc { font-size: 16px !important; } span { font-size: 16px !important; } span.desc.lighter.blend_links { font-size: 16px !important; } span.desc.lighter.blend_links span { font-size: 16px !important; } span.right.desc.ipsType_smaller.ipsPad_top { font-size: 16px !important; } tbody tr td { font-size: 16px !important; } td.col_f_views.desc.blend_links ul li { font-size: 16px !important; } ul { font-size: 16px !important; } ul.ipsList_inline.ipsType_small li a { font-size: 16px !important; } ul.ipsList_inline.left li a { font-size: 16px !important; } ul.last_post.ipsType_small li { font-size: 16px !important; } ul.last_post.ipsType_small li a { font-size: 16px !important; } }
data/usercss/105033.user.css
@-moz-document domain("gazelleclub.ru") { #copyright { font-size: 16px !important; } #copyright noindex a { font-size: 16px !important; } #mark_all_read { font-size: 16px !important; } #story { font-size: 16px !important; } a { font-size: 16px !important; } a.active b { font-size: 16px !important; } a.topic_title span { font-size: 16px !important; } blockquote { font-size: 16px !important; } blockquote.ipsBlockquote.built { font-size: 16px !important; } div { font-size: 16px !important; } div.conttext p { font-size: 16px !important; } div.conttitle a { font-size: 16px !important; } div.dright a b { font-size: 16px !important; } div.ipsType_pagedesc.forum_rules { font-size: 16px !important; } div.post.entry-content p span { font-size: 18px !important; } li { font-size: 16px !important; } li a b { font-size: 16px !important; } li a span { font-size: 16px !important; } li.disabled span { font-size: 16px !important; } li.views.desc { font-size: 16px !important; } ol.breadcrumb.bottom.ipsList_inline.left.clearfix.clear li a { font-size: 16px !important; } p { font-size: 16px !important; } p.desc.__forum_desc.ipsType_small { font-size: 16px !important; } p.pagination.no_pages.left.ipsType_small span { font-size: 16px !important; } p.statistics_brief.desc { font-size: 16px !important; } span { font-size: 16px !important; } span.desc.lighter.blend_links { font-size: 16px !important; } span.desc.lighter.blend_links span { font-size: 16px !important; } span.right.desc.ipsType_smaller.ipsPad_top { font-size: 16px !important; } tbody tr td { font-size: 16px !important; } td.col_f_views.desc.blend_links ul li { font-size: 16px !important; } ul { font-size: 16px !important; } ul.ipsList_inline.ipsType_small li a { font-size: 16px !important; } ul.ipsList_inline.left li a { font-size: 16px !important; } ul.last_post.ipsType_small li { font-size: 16px !important; } ul.last_post.ipsType_small li a { font-size: 16px !important; } }
0.182498
0.101768
.boxer-open { } .boxer-lock { overflow: hidden !important; } #boxer-overlay { -webkit-transition: opacity 0.25s linear; transition: opacity 0.25s linear; } #boxer * { -webkit-transition: none; transition: none; } #boxer.animating { -webkit-transition: left 0.25s ease, opacity 0.25s linear, top 0.25s ease; transition: left 0.25s ease, opacity 0.25s linear, top 0.25s ease; } #boxer.animating .boxer-container { -webkit-transition: height 0.25s ease, width 0.25s ease; transition: height 0.25s ease, width 0.25s ease; } #boxer.animating .boxer-content { -webkit-transition: opacity 0.25s linear; transition: opacity 0.25s linear; } #boxer-overlay { background: #000; height: 100%; left: 0; opacity: 0; position: fixed; top: 0; width: 100%; z-index: 105; } #boxer { background: #fff; border-radius: 3px; box-shadow: 0 0 25px #000; opacity: 0; padding: 10px; position: absolute; z-index: 105; } #boxer.inline { padding: 30px; } .boxer-open #boxer-overlay { opacity: 0.75; } .boxer-open #boxer, .boxer-open #boxer .boxer-content { opacity: 1; } .boxer-open #boxer.loading .boxer-content { opacity: 0; } #boxer .boxer-close { background: #fff url(../images/jquery.fs.boxer-icons.png) no-repeat -70px 10px; border-radius: 100%; cursor: pointer; display: block; height: 30px; position: absolute; padding: 0; right: -8px; top: -8px; width: 30px; text-indent: -99999px; z-index: 106; } #boxer .boxer-container { background: #fff; height: 100%; overflow: hidden; position: relative; width: 100%; z-index: 105; zoom: 1; } #boxer .boxer-content { background: #fff; opacity: 0; overflow: hidden; padding: 0; width: 10000px; } #boxer .boxer-image { float: left; } #boxer .boxer-video { height: 100%; width: 100%; } #boxer .boxer-iframe { border: none; float: left; height: 100%; overflow: auto; width: 100%; } #boxer .boxer-meta { clear: both; } #boxer .boxer-control { background: #fff url(../images/jquery.fs.boxer-icons.png) no-repeat 0 0; border-radius: 100%; box-shadow: 0 0 6px rgba(0, 0, 0, 0.4); cursor: pointer; display: block; height: 40px; margin-right: auto; margin-left: auto; position: absolute; text-indent: -99999px; top: 0; width: 40px; -webkit-transition: opacity 0.25s linear; transition: opacity 0.25s linear; } #boxer .boxer-control.previous { left: 20px; } #boxer .boxer-control.next { background-position: -40px 0; right: 20px; } #boxer .boxer-control.disabled { opacity: 0.3; } #boxer .boxer-position { color: #999; font-size: 11px; margin: 0; padding: 15px 10px 5px; } #boxer .boxer-caption p { margin: 0; padding: 15px 10px 10px 10px; } #boxer .boxer-caption.gallery p { padding-top: 0; } #boxer.loading .boxer-container { background: #fff url(../images/jquery.fs.boxer-loading.gif) no-repeat center; } /* Mobile */ #boxer.mobile { background: #000; border-radius: 0; height: 100%; left: 0; padding: 30px 0 0; position: fixed; top: 0; width: 100%; } #boxer.mobile .boxer-close { background-color: #000; background-position: -70px -60px; border-radius: 0; right: 0; top: 0; } #boxer.mobile .boxer-container { background: #000; position: relative; } #boxer.mobile .boxer-content { background-color: #000; } #boxer.mobile .boxer-control { background-color: transparent; border-radius: 0; box-shadow: none; margin: -20px 0 0; top: 50%; } #boxer.mobile .boxer-control.previous { background-position: 0 -40px; float: left; left: 0; } #boxer.mobile .boxer-control.next { background-position: -40px -40px; float: right; right: 0; } #boxer.mobile .boxer-control.disabled { opacity: 0.3; } #boxer.mobile .boxer-meta { bottom: 0; background-color: rgba(0, 0, 0, 0.75); left: 0; padding: 15px 50px 10px; position: absolute; width: 100%; } #boxer.mobile .boxer-position { padding: 0; } #boxer.mobile .boxer-caption p { color: #eee; padding: 10px 0 0; } #boxer.mobile .boxer-image { -webkit-transition: none !important; transition: none !important; -webkit-transform: translate(0px, 0px); -ms-transform: translate(0px, 0px); transform: translate(0px, 0px); } #boxer.mobile.animated .boxer-image { -webkit-transition: -webkit-transform 0.25s ease-out !important; transition: transform 0.25s ease-out !important; } #boxer.mobile.loading .boxer-container { background: #000 url(../images/jquery.fs.boxer-loading-dark.gif) no-repeat center; } #boxer.mobile.inline .boxer-content, #boxer.mobile.iframe .boxer-content { overflow-x: hidden; overflow-y: scroll; -webkit-overflow-scrolling: touch; } @media screen and (min-width: 980px) { #boxer .boxer-close:hover { background-position: -70px -20px; } #boxer .boxer-control, #boxer .boxer-control.disabled { opacity: 0; } #boxer .boxer-content:hover .boxer-control { opacity: 0.75; } #boxer .boxer-content:hover .boxer-control:hover { opacity: 1; } #boxer .boxer-content:hover .boxer-control.disabled { opacity: 0.3; cursor: default !important; } #boxer.mobile .boxer-control { opacity: 1 !important; } #boxer.mobile .boxer-control.disabled { opacity: 0.3 !important; } } @media screen and (max-width: 980px) { #boxer.mobile { position: fixed; } }
assets/css/jquery.fs.boxer.css
.boxer-open { } .boxer-lock { overflow: hidden !important; } #boxer-overlay { -webkit-transition: opacity 0.25s linear; transition: opacity 0.25s linear; } #boxer * { -webkit-transition: none; transition: none; } #boxer.animating { -webkit-transition: left 0.25s ease, opacity 0.25s linear, top 0.25s ease; transition: left 0.25s ease, opacity 0.25s linear, top 0.25s ease; } #boxer.animating .boxer-container { -webkit-transition: height 0.25s ease, width 0.25s ease; transition: height 0.25s ease, width 0.25s ease; } #boxer.animating .boxer-content { -webkit-transition: opacity 0.25s linear; transition: opacity 0.25s linear; } #boxer-overlay { background: #000; height: 100%; left: 0; opacity: 0; position: fixed; top: 0; width: 100%; z-index: 105; } #boxer { background: #fff; border-radius: 3px; box-shadow: 0 0 25px #000; opacity: 0; padding: 10px; position: absolute; z-index: 105; } #boxer.inline { padding: 30px; } .boxer-open #boxer-overlay { opacity: 0.75; } .boxer-open #boxer, .boxer-open #boxer .boxer-content { opacity: 1; } .boxer-open #boxer.loading .boxer-content { opacity: 0; } #boxer .boxer-close { background: #fff url(../images/jquery.fs.boxer-icons.png) no-repeat -70px 10px; border-radius: 100%; cursor: pointer; display: block; height: 30px; position: absolute; padding: 0; right: -8px; top: -8px; width: 30px; text-indent: -99999px; z-index: 106; } #boxer .boxer-container { background: #fff; height: 100%; overflow: hidden; position: relative; width: 100%; z-index: 105; zoom: 1; } #boxer .boxer-content { background: #fff; opacity: 0; overflow: hidden; padding: 0; width: 10000px; } #boxer .boxer-image { float: left; } #boxer .boxer-video { height: 100%; width: 100%; } #boxer .boxer-iframe { border: none; float: left; height: 100%; overflow: auto; width: 100%; } #boxer .boxer-meta { clear: both; } #boxer .boxer-control { background: #fff url(../images/jquery.fs.boxer-icons.png) no-repeat 0 0; border-radius: 100%; box-shadow: 0 0 6px rgba(0, 0, 0, 0.4); cursor: pointer; display: block; height: 40px; margin-right: auto; margin-left: auto; position: absolute; text-indent: -99999px; top: 0; width: 40px; -webkit-transition: opacity 0.25s linear; transition: opacity 0.25s linear; } #boxer .boxer-control.previous { left: 20px; } #boxer .boxer-control.next { background-position: -40px 0; right: 20px; } #boxer .boxer-control.disabled { opacity: 0.3; } #boxer .boxer-position { color: #999; font-size: 11px; margin: 0; padding: 15px 10px 5px; } #boxer .boxer-caption p { margin: 0; padding: 15px 10px 10px 10px; } #boxer .boxer-caption.gallery p { padding-top: 0; } #boxer.loading .boxer-container { background: #fff url(../images/jquery.fs.boxer-loading.gif) no-repeat center; } /* Mobile */ #boxer.mobile { background: #000; border-radius: 0; height: 100%; left: 0; padding: 30px 0 0; position: fixed; top: 0; width: 100%; } #boxer.mobile .boxer-close { background-color: #000; background-position: -70px -60px; border-radius: 0; right: 0; top: 0; } #boxer.mobile .boxer-container { background: #000; position: relative; } #boxer.mobile .boxer-content { background-color: #000; } #boxer.mobile .boxer-control { background-color: transparent; border-radius: 0; box-shadow: none; margin: -20px 0 0; top: 50%; } #boxer.mobile .boxer-control.previous { background-position: 0 -40px; float: left; left: 0; } #boxer.mobile .boxer-control.next { background-position: -40px -40px; float: right; right: 0; } #boxer.mobile .boxer-control.disabled { opacity: 0.3; } #boxer.mobile .boxer-meta { bottom: 0; background-color: rgba(0, 0, 0, 0.75); left: 0; padding: 15px 50px 10px; position: absolute; width: 100%; } #boxer.mobile .boxer-position { padding: 0; } #boxer.mobile .boxer-caption p { color: #eee; padding: 10px 0 0; } #boxer.mobile .boxer-image { -webkit-transition: none !important; transition: none !important; -webkit-transform: translate(0px, 0px); -ms-transform: translate(0px, 0px); transform: translate(0px, 0px); } #boxer.mobile.animated .boxer-image { -webkit-transition: -webkit-transform 0.25s ease-out !important; transition: transform 0.25s ease-out !important; } #boxer.mobile.loading .boxer-container { background: #000 url(../images/jquery.fs.boxer-loading-dark.gif) no-repeat center; } #boxer.mobile.inline .boxer-content, #boxer.mobile.iframe .boxer-content { overflow-x: hidden; overflow-y: scroll; -webkit-overflow-scrolling: touch; } @media screen and (min-width: 980px) { #boxer .boxer-close:hover { background-position: -70px -20px; } #boxer .boxer-control, #boxer .boxer-control.disabled { opacity: 0; } #boxer .boxer-content:hover .boxer-control { opacity: 0.75; } #boxer .boxer-content:hover .boxer-control:hover { opacity: 1; } #boxer .boxer-content:hover .boxer-control.disabled { opacity: 0.3; cursor: default !important; } #boxer.mobile .boxer-control { opacity: 1 !important; } #boxer.mobile .boxer-control.disabled { opacity: 0.3 !important; } } @media screen and (max-width: 980px) { #boxer.mobile { position: fixed; } }
0.29088
0.093017
body { width: 100%; height: 100%; } .slideout-menu { position: fixed; left: 0; top: 0; bottom: 0; right: 0; z-index: 0; width: 256px; overflow-y: auto; -webkit-overflow-scrolling: touch; display: none; } .slideout-panel { position:relative; z-index: 1; /**will-change: transform;**/ } .slideout-open, .slideout-open body, .slideout-open .slideout-panel { overflow: hidden; } .slideout-open .slideout-menu { display: block; } /** Mobile Slide Menu Code from: https://github.com/mango/slideout - End **/ #menu { background-color: #fff; } #menu a { color: #000; } .menu-header { border-bottom: 1px solid #2a2d2f; padding: 10px 0 10px 43px; background: url('../img/favicons/apple-touch-icon-57x57.png') no-repeat 10px 10px; background-size: 20px; } .menu-header-title { font-weight: bold; } .menu-section { } .menu-section-title { font-size: 10px; font-family: helvetica, arial, sans-serif; font-weight: bold; color: #4b4f56; padding: 5px 0px 5px 10px; background-color: #f6f7f9; border-bottom: 1px solid rgb(221, 223, 226); margin: 0; } .menu-section-list { padding: 0; margin: 0; list-style: none; } .menu-section-list li { padding: 10px 0; border-bottom: 1px solid rgb(221, 223, 226); } .menu-section-list-item i { padding-left: 10px; padding-right: 15px; font-size: 14px; color: #ccc; } /** Menu Padding Begin **/ .menu-padding-18 i { padding-right: 18px; } .menu-padding-19 i { padding-right: 19px; } .menu-padding-20 i { padding-right: 20px; } .menu-padding-21 i { padding-right: 21px; } .menu-padding-22 i { padding-right: 22px; } .menu-padding-23 i { padding-right: 23px; } .menu-padding-24 i { padding-right: 24px; } .menu-padding-25 i { padding-right: 25px; } /** Menu Padding End **/ #panel { box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.75); } .panel-header { height: 40px; background-color: #fff; box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.75); background-image: url(backgrounds/maze-pattern-white.png); background-repeat: repeat; border-top: 1px solid #ed1c24; } .mobile-header-button { float: right; margin-top: 6px; margin-right: 10px; } .mobile-header-button a { font-size: 14px; color: #fff; background-color: #ed1c24; padding-left: 15px; padding-right: 15px; padding-top: 4px; padding-bottom: 4px; font-family: 'Oswald'; display: inline-block; border-radius: 4px; } .toggle-button { margin-left: 0px; margin-top: 1px; background-color: transparent; border: none; color: #000; font-size: 25px; font-weight: bold; text-transform: none; } .fixed { position: fixed; z-index: 100; width: 100%; }
src/images/eenash/css/menu.css
body { width: 100%; height: 100%; } .slideout-menu { position: fixed; left: 0; top: 0; bottom: 0; right: 0; z-index: 0; width: 256px; overflow-y: auto; -webkit-overflow-scrolling: touch; display: none; } .slideout-panel { position:relative; z-index: 1; /**will-change: transform;**/ } .slideout-open, .slideout-open body, .slideout-open .slideout-panel { overflow: hidden; } .slideout-open .slideout-menu { display: block; } /** Mobile Slide Menu Code from: https://github.com/mango/slideout - End **/ #menu { background-color: #fff; } #menu a { color: #000; } .menu-header { border-bottom: 1px solid #2a2d2f; padding: 10px 0 10px 43px; background: url('../img/favicons/apple-touch-icon-57x57.png') no-repeat 10px 10px; background-size: 20px; } .menu-header-title { font-weight: bold; } .menu-section { } .menu-section-title { font-size: 10px; font-family: helvetica, arial, sans-serif; font-weight: bold; color: #4b4f56; padding: 5px 0px 5px 10px; background-color: #f6f7f9; border-bottom: 1px solid rgb(221, 223, 226); margin: 0; } .menu-section-list { padding: 0; margin: 0; list-style: none; } .menu-section-list li { padding: 10px 0; border-bottom: 1px solid rgb(221, 223, 226); } .menu-section-list-item i { padding-left: 10px; padding-right: 15px; font-size: 14px; color: #ccc; } /** Menu Padding Begin **/ .menu-padding-18 i { padding-right: 18px; } .menu-padding-19 i { padding-right: 19px; } .menu-padding-20 i { padding-right: 20px; } .menu-padding-21 i { padding-right: 21px; } .menu-padding-22 i { padding-right: 22px; } .menu-padding-23 i { padding-right: 23px; } .menu-padding-24 i { padding-right: 24px; } .menu-padding-25 i { padding-right: 25px; } /** Menu Padding End **/ #panel { box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.75); } .panel-header { height: 40px; background-color: #fff; box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.75); background-image: url(backgrounds/maze-pattern-white.png); background-repeat: repeat; border-top: 1px solid #ed1c24; } .mobile-header-button { float: right; margin-top: 6px; margin-right: 10px; } .mobile-header-button a { font-size: 14px; color: #fff; background-color: #ed1c24; padding-left: 15px; padding-right: 15px; padding-top: 4px; padding-bottom: 4px; font-family: 'Oswald'; display: inline-block; border-radius: 4px; } .toggle-button { margin-left: 0px; margin-top: 1px; background-color: transparent; border: none; color: #000; font-size: 25px; font-weight: bold; text-transform: none; } .fixed { position: fixed; z-index: 100; width: 100%; }
0.441673
0.099996
.font-size-14 { font-size: 14px; } .font-size-16 { font-size: 16px; } .font-size-18 { font-size: 18px; } .font-size-22 { font-size: 22px; } .font-size-24 { font-size: 24px; } .font-size-28 { font-size: 0.8rem; } .m-sm { margin: 5px!important; } .ml-sm { margin-left: 5px!important; } .mr-sm { margin-right: 5px!important; } .mt-sm { margin-top: 5px!important; } .mb-sm { margin-bottom: 5px!important; } .m-md { margin: 10px!important; } .ml-md { margin-left: 10px!important; } .mr-md { margin-right: 10px!important; } .mt-md { margin-top: 10px!important; } .mb-md { margin-bottom: 10px!important; } .m-lg { margin: 20px!important; } .ml-lg { margin-left: 20px!important; } .mr-lg { margin-right: 20px!important; } .mt-lg { margin-top: 20px!important; } .mb-lg { margin-bottom: 20px!important; } .p-sm { padding: 5px!important; } .pl-sm { padding-left: 5px!important; } .pr-sm { padding-right: 5px!important; } .pt-sm { padding-top: 5px!important; } .pb-sm { padding-bottom: 5px!important; } .p-md { padding: 10px!important; } .pl-md { padding-left: 10px!important; } .pr-md { padding-right: 10px!important; } .pt-md { padding-top: 10px!important; } .pb-md { padding-bottom: 10px!important; } .p-lg { padding: 20px!important; } .pl-lg { padding-left: 20px!important; } .pr-lg { padding-right: 20px!important; } .pt-lg { padding-top: 20px!important; } .pb-lg { padding-bottom: 20px!important; } .text-right { text-align: right!important; } .text-left { text-align: left!important; } .text-center { text-align: center!important; } html, body { padding: 0; margin: 0; } p { margin: 5px 0px; } .van-tabs__wrap { top: 45px; width: 100%; z-index: 999; position: fixed !important; } .van-tabs__line { background-color: #1B91FE !important; } .van-tab--active { color: #1B91FE !important; } .info-wrapper { width: 94%; margin: 50px auto; background: #fff; border-radius: 10px; } .van-cell-detail { padding: 10px 5px !important; border-radius: 10px; box-shadow: 1px 2px 5px #d2d2d2; } .van-cell-detail h2 { color: #2D83FF; margin: 5px 0; font-size: 15px; letter-spacing: 0.5px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .van-cell-detail h2 span { float: right; color: #333; font-weight: 500; } .van-cell-detail h3 { font-size: 17px; letter-spacing: 0.5px; padding-bottom: 10px; border-bottom: 1px solid #eee; margin: 5px 0; } .van-cell-detail h3 i { color: #0371f6; font-size: 20px; vertical-align: middle; margin-right: 5px; } .van-cell-detail .van-row p { width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin: 5px 0px; } .van-cell-detail .van-row p:nth-child(1) { color: #666; } .van-cell-detail .van-row p:nth-child(2) { color: #999; margin-bottom: 10px; } .van-cell-detail .van-row p.color { color: #1B90FE; } .van-cell-detail .van-row .van-col { padding-left: 20px; } .van-cell-list { padding: 10px 5px !important; } .van-cell-list h3 { font-size: 17px; letter-spacing: 0.5px; padding-bottom: 10px; border-bottom: 1px solid #eee; margin: 5px 0; } .van-cell-list h3 i { color: #0371f6; font-size: 20px; vertical-align: middle; margin-right: 5px; } .van-cell-list .van-row p:nth-child(1) { color: #666; } .van-cell-list .van-row p:nth-child(2) { flex: 1; color: #999; margin-bottom: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin: 5px 0px; } .van-cell-list .van-row .van-col { padding-left: 20px; display: flex; } .van-cell-list .btn_wrapper /deep/ .van-col { text-align: center; font-size: 13px; color: #666; } .van-cell-list .btn_wrapper /deep/ .van-col span { width: 100%; } .van-cell-info { padding: 10px 15px !important; border-radius: 10px; } .van-cell-info.van-cell { box-shadow: 1px 2px 5px #d2d2d2; } .van-cell-info h2 { color: #2D83FF; margin: 5px 0; font-size: 15px; letter-spacing: 0.5px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .van-cell-info h2 span { float: right; color: #333; font-weight: 500; } .van-cell-info /deep/ .van-row .van-col { display: flex; } .van-cell-info /deep/ .van-row span { font-size: 14px; margin: 5px 0px; } .van-cell-info /deep/ .van-row span:nth-child(1) { color: #656565; } .van-cell-info /deep/ .van-row span:nth-child(2) { flex: 1; color: #323232; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .list-search { background: #fff; padding: 10px 12px; top: 46px; width: 100%; z-index: 999; position: fixed !important; box-sizing: border-box; } .list-search /deep/ .van-search { background: #F2F2F2 !important; padding: 0; border-radius: 20px; } .list-search /deep/ .van-search .van-search__content { background-color: transparent; } .list-search /deep/ .van-search .van-cell { margin-bottom: 0px; } .list-search .search-left { font-size: 14px; padding-left: 10px; color: #333; } .list-search .search-left i { color: #333333; display: inline-block; vertical-align: middle; margin-left: 2px; } .list-title { margin: 8px 0px; margin-left: 5px; } .list-title::before { content: ''; width: 4px; height: 17px; background: #29A8F5; position: absolute; left: 6px; top: 3px; border-radius: 3px; } .van-tabbar { border-top: 1px solid #eee; height: 50px !important; /*no*/ /*icon样式*/ /*文字样式*/ } @media screen and (max-width: 320px) { .van-tabbar { height: 45px !important; /*no*/ } } @media screen and (min-width: 768px) { .van-tabbar { height: 109px !important; /*no*/ } } .van-tabbar .van-tabbar-item__icon { font-size: 24px; } .van-tabbar .van-tabbar-item__text { font-size: 12px; } .van-tabbar .van-tabbar-item:not(:last-child) { border-right: 1px solid #eee; } .list-title { font-size: 16px; color: #000; box-sizing: border-box; padding-left: 10px; position: relative; } .list-title span { color: red; display: inline-block; margin-left: 5px; } .list-title::before { content: ''; width: 3px; height: 17px; background: #29A8F5; position: absolute; left: 0px; top: 3px; } .com_wrapper { background: #fff; padding: 5px 10px; box-sizing: border-box; width: 92%; border-radius: 5px; margin-left: 4%; } .com_wrapper /deep/ .van-row { color: #000; } .van-list__error-text, .van-list__finished-text, .van-list__loading, .van-empty { background: #fff; } /*表单 公用样式*/ .van-form { margin-top: 10px; } .van-form .van-field__error-message { text-align: right; } .van-form .field-margin { margin: 8px 0; } .van-form .field-display { display: block; } .van-form .field-display .van-field__error-message { text-align: left; } .van-form .van-button { font-size: 14px; letter-spacing: 2px; } .van-form .van-cell__right-icon { color: #ccc; }
template/src/components/global.css
.font-size-14 { font-size: 14px; } .font-size-16 { font-size: 16px; } .font-size-18 { font-size: 18px; } .font-size-22 { font-size: 22px; } .font-size-24 { font-size: 24px; } .font-size-28 { font-size: 0.8rem; } .m-sm { margin: 5px!important; } .ml-sm { margin-left: 5px!important; } .mr-sm { margin-right: 5px!important; } .mt-sm { margin-top: 5px!important; } .mb-sm { margin-bottom: 5px!important; } .m-md { margin: 10px!important; } .ml-md { margin-left: 10px!important; } .mr-md { margin-right: 10px!important; } .mt-md { margin-top: 10px!important; } .mb-md { margin-bottom: 10px!important; } .m-lg { margin: 20px!important; } .ml-lg { margin-left: 20px!important; } .mr-lg { margin-right: 20px!important; } .mt-lg { margin-top: 20px!important; } .mb-lg { margin-bottom: 20px!important; } .p-sm { padding: 5px!important; } .pl-sm { padding-left: 5px!important; } .pr-sm { padding-right: 5px!important; } .pt-sm { padding-top: 5px!important; } .pb-sm { padding-bottom: 5px!important; } .p-md { padding: 10px!important; } .pl-md { padding-left: 10px!important; } .pr-md { padding-right: 10px!important; } .pt-md { padding-top: 10px!important; } .pb-md { padding-bottom: 10px!important; } .p-lg { padding: 20px!important; } .pl-lg { padding-left: 20px!important; } .pr-lg { padding-right: 20px!important; } .pt-lg { padding-top: 20px!important; } .pb-lg { padding-bottom: 20px!important; } .text-right { text-align: right!important; } .text-left { text-align: left!important; } .text-center { text-align: center!important; } html, body { padding: 0; margin: 0; } p { margin: 5px 0px; } .van-tabs__wrap { top: 45px; width: 100%; z-index: 999; position: fixed !important; } .van-tabs__line { background-color: #1B91FE !important; } .van-tab--active { color: #1B91FE !important; } .info-wrapper { width: 94%; margin: 50px auto; background: #fff; border-radius: 10px; } .van-cell-detail { padding: 10px 5px !important; border-radius: 10px; box-shadow: 1px 2px 5px #d2d2d2; } .van-cell-detail h2 { color: #2D83FF; margin: 5px 0; font-size: 15px; letter-spacing: 0.5px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .van-cell-detail h2 span { float: right; color: #333; font-weight: 500; } .van-cell-detail h3 { font-size: 17px; letter-spacing: 0.5px; padding-bottom: 10px; border-bottom: 1px solid #eee; margin: 5px 0; } .van-cell-detail h3 i { color: #0371f6; font-size: 20px; vertical-align: middle; margin-right: 5px; } .van-cell-detail .van-row p { width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin: 5px 0px; } .van-cell-detail .van-row p:nth-child(1) { color: #666; } .van-cell-detail .van-row p:nth-child(2) { color: #999; margin-bottom: 10px; } .van-cell-detail .van-row p.color { color: #1B90FE; } .van-cell-detail .van-row .van-col { padding-left: 20px; } .van-cell-list { padding: 10px 5px !important; } .van-cell-list h3 { font-size: 17px; letter-spacing: 0.5px; padding-bottom: 10px; border-bottom: 1px solid #eee; margin: 5px 0; } .van-cell-list h3 i { color: #0371f6; font-size: 20px; vertical-align: middle; margin-right: 5px; } .van-cell-list .van-row p:nth-child(1) { color: #666; } .van-cell-list .van-row p:nth-child(2) { flex: 1; color: #999; margin-bottom: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin: 5px 0px; } .van-cell-list .van-row .van-col { padding-left: 20px; display: flex; } .van-cell-list .btn_wrapper /deep/ .van-col { text-align: center; font-size: 13px; color: #666; } .van-cell-list .btn_wrapper /deep/ .van-col span { width: 100%; } .van-cell-info { padding: 10px 15px !important; border-radius: 10px; } .van-cell-info.van-cell { box-shadow: 1px 2px 5px #d2d2d2; } .van-cell-info h2 { color: #2D83FF; margin: 5px 0; font-size: 15px; letter-spacing: 0.5px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .van-cell-info h2 span { float: right; color: #333; font-weight: 500; } .van-cell-info /deep/ .van-row .van-col { display: flex; } .van-cell-info /deep/ .van-row span { font-size: 14px; margin: 5px 0px; } .van-cell-info /deep/ .van-row span:nth-child(1) { color: #656565; } .van-cell-info /deep/ .van-row span:nth-child(2) { flex: 1; color: #323232; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .list-search { background: #fff; padding: 10px 12px; top: 46px; width: 100%; z-index: 999; position: fixed !important; box-sizing: border-box; } .list-search /deep/ .van-search { background: #F2F2F2 !important; padding: 0; border-radius: 20px; } .list-search /deep/ .van-search .van-search__content { background-color: transparent; } .list-search /deep/ .van-search .van-cell { margin-bottom: 0px; } .list-search .search-left { font-size: 14px; padding-left: 10px; color: #333; } .list-search .search-left i { color: #333333; display: inline-block; vertical-align: middle; margin-left: 2px; } .list-title { margin: 8px 0px; margin-left: 5px; } .list-title::before { content: ''; width: 4px; height: 17px; background: #29A8F5; position: absolute; left: 6px; top: 3px; border-radius: 3px; } .van-tabbar { border-top: 1px solid #eee; height: 50px !important; /*no*/ /*icon样式*/ /*文字样式*/ } @media screen and (max-width: 320px) { .van-tabbar { height: 45px !important; /*no*/ } } @media screen and (min-width: 768px) { .van-tabbar { height: 109px !important; /*no*/ } } .van-tabbar .van-tabbar-item__icon { font-size: 24px; } .van-tabbar .van-tabbar-item__text { font-size: 12px; } .van-tabbar .van-tabbar-item:not(:last-child) { border-right: 1px solid #eee; } .list-title { font-size: 16px; color: #000; box-sizing: border-box; padding-left: 10px; position: relative; } .list-title span { color: red; display: inline-block; margin-left: 5px; } .list-title::before { content: ''; width: 3px; height: 17px; background: #29A8F5; position: absolute; left: 0px; top: 3px; } .com_wrapper { background: #fff; padding: 5px 10px; box-sizing: border-box; width: 92%; border-radius: 5px; margin-left: 4%; } .com_wrapper /deep/ .van-row { color: #000; } .van-list__error-text, .van-list__finished-text, .van-list__loading, .van-empty { background: #fff; } /*表单 公用样式*/ .van-form { margin-top: 10px; } .van-form .van-field__error-message { text-align: right; } .van-form .field-margin { margin: 8px 0; } .van-form .field-display { display: block; } .van-form .field-display .van-field__error-message { text-align: left; } .van-form .van-button { font-size: 14px; letter-spacing: 2px; } .van-form .van-cell__right-icon { color: #ccc; }
0.338077
0.092811
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"); @import url("https://fonts.googleapis.com/css?family=Montserrat:700"); * { box-sizing: border-box; } .border-class-1 { border: 1px solid rgba(255, 255, 255, 1); } .landing-page-orange { align-items: flex-start; display: flex; width: 100vw; height: 100vh; } .landing-page-orange .explore { letter-spacing: 0px; width: 98px; } .landing-page-orange .group-7 { align-items: flex-end; display: flex; flex-direction: column; left: 390px; min-height: 2389px; padding: 409.5px 494.1px; position: absolute; top: 397px; transform: rotate(-24.81deg); width: 2417px; } .landing-page-orange .group-8 { align-items: flex-start; display: flex; height: 55px; left: 1357px; min-width: 131px; position: absolute; top: 31px; padding: 0; border: none; background: none; } .landing-page-orange .group-9 { align-items: flex-start; display: flex; height: 68px; left: 1835px; min-width: 201px; position: absolute; top: 1400px; } .landing-page-orange .image-3 { height: 434px; left: 2589px; object-fit: cover; position: absolute; top: 1016px; width: 616px; } .landing-page-orange .landing-page-orange { background-color: var(--blaze-orange); height: 1024px; overflow: hidden; position: relative; width: 100vw; height: 100vh; } .landing-page-orange .overlap-group { height: 3183px; left: -1785px; position: absolute; top: -821px; width: 3205px; } .landing-page-orange .overlap-group1 { height: 1347px; margin-top: 127px; position: relative; width: 1352px; } .landing-page-orange .overlap-group2 { align-items: center; background-color: var(--crusta); border-radius: 39.5px; display: flex; height: 68px; justify-content: flex-end; min-width: 199px; padding: 0 49.8px; } .landing-page-orange .overlap-group3 { border-radius: 15px; height: 55px; position: relative; width: 129px; } .landing-page-orange .place { left: 2533px; letter-spacing: 0px; position: absolute; top: 865px; } .landing-page-orange .rectangle-33 { border-radius: 15px; height: 55px; left: -108px; position: absolute; top: 0px; width: 110px; } .landing-page-orange .sign-in { left: 1141px; letter-spacing: 0px; position: absolute; top: 44px; padding: 0; border: none; background: none; } .landing-page-orange .sign-up { left: -87px; letter-spacing: 0px; position: absolute; top: 15px; width: 100px; margin-left: -14px; } .landing-page-orange .text-1 { left: 1834px; letter-spacing: 0px; position: absolute; top: 1181px; width: 642px; } .landing-page-orange .vector { align-self: center; height: 1px; margin-right: 118.24px; transform: rotate(24.81deg); width: 1px; } .landing-page-orange .vector-1 { height: 1065px; left: 887px; position: absolute; top: 162px; transform: rotate(24.81deg); width: 996px; } .landing-page-orange .vector-2 { height: 1052px; left: 870px; position: absolute; top: 161px; transform: rotate(24.81deg); width: 967px; } .landing-page-orange .vector-3 { height: 56px; left: 1835px; position: absolute; top: 848px; width: 269px; } .landing-page-orange .vector-4 { height: 21px; left: 2501px; position: absolute; top: 866px; width: 23px; } .montserrat-bold-black-24px { color: var(--black); font-family: "Montserrat", Helvetica; font-size: 24px; font-style: normal; font-weight: 700; } .montserrat-bold-white-24px { color: white; font-family: "Montserrat", Helvetica; font-size: 24px; font-style: normal; font-weight: 700; } :root { --black: rgba(0, 0, 0, 0.54); --blaze-orange: rgba(255, 111, 0, 0.78); --crusta: rgba(249, 137, 50, 1); }
client/src/Component/homepage/homepage.css
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"); @import url("https://fonts.googleapis.com/css?family=Montserrat:700"); * { box-sizing: border-box; } .border-class-1 { border: 1px solid rgba(255, 255, 255, 1); } .landing-page-orange { align-items: flex-start; display: flex; width: 100vw; height: 100vh; } .landing-page-orange .explore { letter-spacing: 0px; width: 98px; } .landing-page-orange .group-7 { align-items: flex-end; display: flex; flex-direction: column; left: 390px; min-height: 2389px; padding: 409.5px 494.1px; position: absolute; top: 397px; transform: rotate(-24.81deg); width: 2417px; } .landing-page-orange .group-8 { align-items: flex-start; display: flex; height: 55px; left: 1357px; min-width: 131px; position: absolute; top: 31px; padding: 0; border: none; background: none; } .landing-page-orange .group-9 { align-items: flex-start; display: flex; height: 68px; left: 1835px; min-width: 201px; position: absolute; top: 1400px; } .landing-page-orange .image-3 { height: 434px; left: 2589px; object-fit: cover; position: absolute; top: 1016px; width: 616px; } .landing-page-orange .landing-page-orange { background-color: var(--blaze-orange); height: 1024px; overflow: hidden; position: relative; width: 100vw; height: 100vh; } .landing-page-orange .overlap-group { height: 3183px; left: -1785px; position: absolute; top: -821px; width: 3205px; } .landing-page-orange .overlap-group1 { height: 1347px; margin-top: 127px; position: relative; width: 1352px; } .landing-page-orange .overlap-group2 { align-items: center; background-color: var(--crusta); border-radius: 39.5px; display: flex; height: 68px; justify-content: flex-end; min-width: 199px; padding: 0 49.8px; } .landing-page-orange .overlap-group3 { border-radius: 15px; height: 55px; position: relative; width: 129px; } .landing-page-orange .place { left: 2533px; letter-spacing: 0px; position: absolute; top: 865px; } .landing-page-orange .rectangle-33 { border-radius: 15px; height: 55px; left: -108px; position: absolute; top: 0px; width: 110px; } .landing-page-orange .sign-in { left: 1141px; letter-spacing: 0px; position: absolute; top: 44px; padding: 0; border: none; background: none; } .landing-page-orange .sign-up { left: -87px; letter-spacing: 0px; position: absolute; top: 15px; width: 100px; margin-left: -14px; } .landing-page-orange .text-1 { left: 1834px; letter-spacing: 0px; position: absolute; top: 1181px; width: 642px; } .landing-page-orange .vector { align-self: center; height: 1px; margin-right: 118.24px; transform: rotate(24.81deg); width: 1px; } .landing-page-orange .vector-1 { height: 1065px; left: 887px; position: absolute; top: 162px; transform: rotate(24.81deg); width: 996px; } .landing-page-orange .vector-2 { height: 1052px; left: 870px; position: absolute; top: 161px; transform: rotate(24.81deg); width: 967px; } .landing-page-orange .vector-3 { height: 56px; left: 1835px; position: absolute; top: 848px; width: 269px; } .landing-page-orange .vector-4 { height: 21px; left: 2501px; position: absolute; top: 866px; width: 23px; } .montserrat-bold-black-24px { color: var(--black); font-family: "Montserrat", Helvetica; font-size: 24px; font-style: normal; font-weight: 700; } .montserrat-bold-white-24px { color: white; font-family: "Montserrat", Helvetica; font-size: 24px; font-style: normal; font-weight: 700; } :root { --black: rgba(0, 0, 0, 0.54); --blaze-orange: rgba(255, 111, 0, 0.78); --crusta: rgba(249, 137, 50, 1); }
0.474875
0.076477
@-moz-document regexp("http://127.0.0.1/phpmyadmin/.*"), regexp("http://localhost/phpmyadmin/.*") { /* FILE: codemirror.css */ /******************************************************************************/ /* BASICS */ img#imgpmalogo { -webkit-filter: invert(1); filter: invert(1); } .CodeMirror { /* Set height, width, borders, and global font properties here */ font-family: monospace; height: 300px; color: #ffffff; border: 1px solid #ddd; } /* PADDING */ .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { background-color: #000000; /* the little square between h and v scrollbars */ } /* GUTTER */ .CodeMirror-gutters { border-right: 1px solid #222222; background-color: #080808; white-space: nowrap; } .CodeMirror-linenumber { padding: 0 3px 0 5px; min-width: 20px; text-align: right; color: #666666; white-space: nowrap; } .CodeMirror-guttermarker { color: #ffffff; } .CodeMirror-guttermarker-subtle { color: #666666; } /* CURSOR */ .CodeMirror div.CodeMirror-cursor { border-left: 1px solid #fff; } /* Shown when moving in bi-directional text */ .CodeMirror div.CodeMirror-secondarycursor { border-left: 1px solid #000; } .CodeMirror.cm-fat-cursor div.CodeMirror-cursor { width: auto; border: 0; background: #881188; } @-moz-keyframes blink { 0% { background: #881188; } 50% { background: none; } 100% { background: #881188; } } @-webkit-keyframes blink { 0% { background: #881188; } 50% { background: none; } 100% { background: #881188; } } @keyframes blink { 0% { background: #881188; } 50% { background: none; } 100% { background: #881188; } } .CodeMirror-ruler { border-left: 1px solid #333333; position: absolute; } /* DEFAULT THEME */ .cm-s-default .cm-header { color: #ffff00; } .cm-s-default .cm-quote { color: #ff66ff; } .cm-negative { color: #22bbbb; } .cm-positive { color: #dd66dd; } .cm-header, .cm-strong { font-weight: bold; } .cm-em { font-style: italic; } .cm-link { text-decoration: underline; } .cm-strikethrough { text-decoration: line-through; } .cm-s-default .cm-keyword { color: #88ff77; } .cm-s-default .cm-atom { color: #ddee66; } .cm-s-default .cm-number { color: #ee99bb; } .cm-s-default .cm-def { color: #ffff00; } .cm-s-default .cm-variable-2 { color: #ffaa55; } .cm-s-default .cm-variable-3 { color: #ff77aa; } .cm-s-default .cm-comment { color: #55aaff; } .cm-s-default .cm-string { color: #55eeee; } .cm-s-default .cm-string-2 { color: #00aaff; } .cm-s-default .cm-meta { color: #aaaaaa; } .cm-s-default .cm-qualifier { color: #aaaaaa; } .cm-s-default .cm-builtin { color: #ccff55; } .cm-s-default .cm-bracket { color: #666688; } .cm-s-default .cm-tag { color: #ee88ff; } .cm-s-default .cm-attribute { color: #ffff33; } .cm-s-default .cm-hr { color: #666666; } .cm-s-default .cm-link { color: #ffff33; } .cm-s-default .cm-error { color: #00ffff; } .cm-invalidchar { color: #00ffff; } .CodeMirror-composing { border-bottom: 2px solid; } /* Default styles for common addons */ div.CodeMirror span.CodeMirror-matchingbracket { color: #ff00ff; } div.CodeMirror span.CodeMirror-nonmatchingbracket { color: #00dddd; } .CodeMirror-matchingtag { background: rgba(0, 105, 255, .3); } .CodeMirror-activeline-background { background: #170d00; } /* STOP */ /* The rest of this file contains styles related to the mechanics of the editor. You probably shouldn't touch them. */ .CodeMirror { position: relative; overflow: hidden; background: #000000; } .CodeMirror-scroll { overflow: scroll !important; /* Things will break if this is overridden */ /* 30px is the magic margin used to hide the element's real scrollbars */ /* See overflow: hidden in .CodeMirror */ margin-bottom: -30px; margin-right: -30px; padding-bottom: 30px; height: 100%; outline: none; /* Prevent dragging from highlighting the element */ position: relative; } .CodeMirror-sizer { position: relative; border-right: 30px solid transparent; } /* The fake, visible scrollbars. Used to force redraw during scrolling before actuall scrolling happens, thus preventing shaking and flickering artifacts. */ .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { position: absolute; z-index: 6; display: none; } .CodeMirror-vscrollbar { right: 0; top: 0; overflow-x: hidden; overflow-y: scroll; } .CodeMirror-hscrollbar { bottom: 0; left: 0; overflow-y: hidden; overflow-x: scroll; } .CodeMirror-scrollbar-filler { right: 0; bottom: 0; } .CodeMirror-gutter-filler { left: 0; bottom: 0; } .CodeMirror-gutters { position: absolute; left: 0; top: 0; z-index: 3; } .CodeMirror-gutter-wrapper { position: absolute; z-index: 4; height: 100%; } .CodeMirror-gutter-elt { position: absolute; cursor: default; z-index: 4; } .CodeMirror-gutter-wrapper { -webkit-user-select: none; -moz-user-select: none; user-select: none; } .CodeMirror-lines { cursor: text; min-height: 1px; /* prevents collapsing before first draw */ } .CodeMirror pre { /* Reset some styles that the rest of the page might have set */ -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; border-width: 0; background: transparent; font-family: inherit; font-size: inherit; margin: 0; white-space: pre; word-wrap: normal; line-height: inherit; color: inherit; z-index: 2; position: relative; overflow: visible; -webkit-tap-highlight-color: transparent; } .CodeMirror-wrap pre { word-wrap: break-word; white-space: pre-wrap; word-break: normal; } .CodeMirror-linebackground { position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 0; } .CodeMirror-linewidget { position: relative; z-index: 2; overflow: auto; } .CodeMirror-code { outline: none; } /* Force content-box sizing for the elements where we expect it */ .CodeMirror-scroll, .CodeMirror-sizer, .CodeMirror-gutter, .CodeMirror-gutters, .CodeMirror-linenumber { -moz-box-sizing: content-box; box-sizing: content-box; } .CodeMirror-measure { position: absolute; width: 100%; height: 0; overflow: hidden; visibility: hidden; } .CodeMirror-measure pre { position: static; } .CodeMirror div.CodeMirror-cursor { position: absolute; border-right: none; width: 0; } div.CodeMirror-cursors { visibility: hidden; position: relative; z-index: 3; } .CodeMirror-focused div.CodeMirror-cursors { visibility: visible; } .CodeMirror-selected { background: #262626; } .CodeMirror-focused .CodeMirror-selected { background: #282b0f; } .CodeMirror-crosshair { cursor: crosshair; } .CodeMirror::selection { background: #282b0f; } .CodeMirror::-moz-selection { background: #282b0f; } .cm-searching { background: #000055; background: rgba(0, 0, 255, .4); } /* IE7 hack to prevent it from returning funny offsetTops on the spans */ .CodeMirror span { *vertical-align: text-bottom; } /* Used to force a border model for a node */ .cm-force-border { padding-right: .1px; } @media print { /* Hide the cursor when printing */ .CodeMirror div.CodeMirror-cursors { visibility: hidden; } } /* See issue #dd66ff1 */ .cm-tab-wrap-hack:after { content: ''; } /* Help users use markselection to safely style text background */ span.CodeMirror-selectedtext { background: none; } /* FILE: common.css.php */ /******************************************************************************/ /* general tags */ body { font-family: sans-serif; padding: 0; margin: 0; margin-left: 240px; color: #bbbbbb; background: #000000; } select, textarea, input { color: #bbbbbb; background: #000000; } h2 { font-size: 2em; font-weight: normal; text-shadow: 0 1px 0 #000000; padding: 10px 0 10px; padding-left: 3px; color: #888888; } /* Hiding icons in the page titles */ a, a:link, a:visited, a:active, button.mult_submit, .checkall_box+label { text-decoration: none; color: #dca57e; cursor: pointer; outline: none; } a:hover, button.mult_submit:hover, button.mult_submit:focus, .checkall_box+label:hover { text-decoration: underline; color: #dca57e; } #initials_table { background: #0c0c0c; border: 1px solid #555555; margin-bottom: 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; } #initials_table a { border: 1px solid #555555; background: #000000; padding: 4px 8px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#1f1f1f)); background: -webkit-linear-gradient(top, #000000, #1f1f1f); background: -moz-linear-gradient(top, #000000, #1f1f1f); background: -ms-linear-gradient(top, #000000, #1f1f1f); background: -o-linear-gradient(top, #000000, #1f1f1f); } #initials_table a.active { border: 1px solid #999999; box-shadow: 0 0 2px #666666; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#000000)); background: -webkit-linear-gradient(top, #444444, #000000); background: -moz-linear-gradient(top, #444444, #000000); background: -ms-linear-gradient(top, #444444, #000000); background: -o-linear-gradient(top, #444444, #000000); } th { font-weight: bold; color: #ffffff; background: #0c0c0c; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#333333)); background: -webkit-linear-gradient(top, #000000, #333333); background: -moz-linear-gradient(top, #000000, #333333); background: -ms-linear-gradient(top, #000000, #333333); background: -o-linear-gradient(top, #000000, #333333); } hr { color: #bbbbbb; background-color: #bbbbbb; border: 0; height: 1px; } input[type=text], input[type=password], input[type=number], input[type=date] { border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; background: #000; border: 1px solid #555555; color: #fff; padding: 4px; } input[type=text][disabled], input[type=text][disabled]:hover, input[type=password][disabled], input[type=password][disabled]:hover, input[type=number][disabled], input[type=number][disabled]:hover, input[type=date][disabled], input[type=date][disabled]:hover, select[disabled], select[disabled]:hover { background: #171717; box-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none; } input[type=text]:hover, input[type=text]:focus, input[type=password]:hover, input[type=password]:focus, input[type=number]:hover, input[type=number]:focus, input[type=date]:hover, input[type=date]:focus, select:focus { border: 1px solid #838383; background: #000000; } input[type=text]:hover, input[type=password]:hover, input[type=number]:hover, input[type=date]:hover { box-shadow: 0 1px 3px #555555; -webkit-box-shadow: 0 1px 3px #555555; -moz-box-shadow: 0 1px 3px #555555; } input[type=submit], input[type=button], button[type=submit]:not(.mult_submit), input[type=reset], input[name=submit_reset], input.button { margin: 6px 14px; border: 1px solid #555555; padding: 3px 7px; color: #eeeeee; text-decoration: none; background: #222222; border-radius: 12px; -webkit-border-radius: 12px; -moz-border-radius: 12px; text-shadow: 0 1px 0 #000000; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#070707), to(#272727)); background: -webkit-linear-gradient(top, #070707, #272727); background: -moz-linear-gradient(top, #070707, #272727); background: -ms-linear-gradient(top, #070707, #272727); background: -o-linear-gradient(top, #070707, #272727); } input[type=submit]:hover, input[type=button]:hover, button[type=submit]:not(.mult_submit):hover, input[type=reset]:hover, input[name=submit_reset]:hover, input.button:hover { position: relative; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#222222)); background: -webkit-linear-gradient(top, #000000, #222222); background: -moz-linear-gradient(top, #000000, #222222); background: -ms-linear-gradient(top, #000000, #222222); background: -o-linear-gradient(top, #000000, #222222); cursor: pointer; } input[type=submit]:active, input[type=button]:active, button[type=submit]:not(.mult_submit):active, input[type=reset]:active, input[name=submit_reset]:active, input.button:active { position: relative; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#111111), to(#222222)); background: -webkit-linear-gradient(top, #111111, #222222); background: -moz-linear-gradient(top, #111111, #222222); background: -ms-linear-gradient(top, #111111, #222222); background: -o-linear-gradient(top, #111111, #222222); box-shadow: 0 1px 6px -2px #cccccc inset; text-shadow: none; } input[type=submit]:disabled, input[type=button]:disabled, button[type=submit]:not(.mult_submit):disabled, input[type=reset]:disabled, input[name=submit_reset]:disabled, input.button:disabled { background: #333333; color: #999999; text-shadow: none; } fieldset, .preview_sql { margin-top: 1em; border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0; border: #555555 solid 1px; padding: 1.5em; background: #111111; text-shadow: 1px 1px 2px #000000 inset; -moz-box-shadow: 1px 1px 2px #000000 inset; -webkit-box-shadow: 1px 1px 2px #000000 inset; box-shadow: 1px 1px 2px #000000 inset; } fieldset fieldset { margin: .8em; border: 1px solid #555555; background: #171717; } fieldset legend { font-weight: bold; color: #bbbbbb; padding: 5px 10px; border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; border: 1px solid #555555; background-color: #000000; -moz-box-shadow: 3px 3px 15px #444444; -webkit-box-shadow: 3px 3px 15px #444444; box-shadow: 3px 3px 15px #444444; max-width: 100%; } table caption, table th, table td { padding: .3em; margin: .1em; vertical-align: top; text-shadow: 0 1px 0 #000000; } /* 3.4 */ thead th { border-right: 1px solid #000000; } select { -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; border: 1px solid #444444; color: #fff; padding: 3px; background: #000; margin: 6px; } select[multiple] { background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#0d0d0d)); background: -webkit-linear-gradient(top, #000000, #0d0d0d); background: -moz-linear-gradient(top, #000000, #0d0d0d); background: -ms-linear-gradient(top, #000000, #0d0d0d); background: -o-linear-gradient(top, #000000, #0d0d0d); } /******************************************************************************/ /* classes */ .separator { color: #000000; text-shadow: 0 1px 0 #ffffff; } div.tools a { color: #c58152 !important; } /* odd items 1,3,5,7,... */ table tr.odd th, .odd { background: #000000; } /* even items 2,4,6,8,... */ /* (tested on CRTs and ACLs) */ table tr.even th, .even { background: #202020; } /* marked table rows */ td.marked:not(.nomarker), table tr.marked:not(.nomarker) td, table tr.marked:not(.nomarker) th, table tr.marked:not(.nomarker) { background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#312920), to(#493928)); background: -webkit-linear-gradient(top, #312920, #493928); background: -moz-linear-gradient(top, #312920, #493928); background: -ms-linear-gradient(top, #312920, #493928); background: -o-linear-gradient(top, #312920, #493928); color: #ffffff; } /* hovered items */ .odd:not(.nopointer):hover, .even:not(.nopointer):hover, .hover:not(.nopointer) { background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#312920), to(#493928)); background: -webkit-linear-gradient(top, #312920, #493928); background: -moz-linear-gradient(top, #312920, #493928); background: -ms-linear-gradient(top, #312920, #493928); background: -o-linear-gradient(top, #312920, #493928); color: #ffffff; } /* hovered table rows */ table tr.odd:not(.nopointer):hover th, table tr.even:not(.nopointer):hover th, table tr.hover:not(.nopointer) th { background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#312920), to(#493928)); background: -webkit-linear-gradient(top, #312920, #493928); background: -moz-linear-gradient(top, #312920, #493928); background: -ms-linear-gradient(top, #312920, #493928); background: -o-linear-gradient(top, #312920, #493928); color: #ffffff; } /** * marks table rows/cells if the db field is in a where condition */ .condition { border-color: #003366 !important; } /* for first th which must have right border set (ltr only) */ .before-condition { border-right: 1px solid #003366; } /** * cells with the value NULL */ .attention { color: #ff0000; font-weight: bold; } .allfine { color: #008000; } .pdflayout { overflow: hidden; clip: inherit; background-color: #000000; display: none; border: 1px solid #ffffff; position: relative; } .pdflayout_table { background: #2c231c; color: #ffffff; overflow: hidden; clip: inherit; z-index: 2; display: inline; visibility: inherit; cursor: move; position: absolute; font-size: 80%; border: 1px dashed #ffffff; } /* Doc links in SQL */ .cm-sql-doc { text-decoration: none; border-bottom: 1px dotted #ffffff; color: inherit !important; } /* message boxes: error, confirmation */ div.success, div.notice, div.error { margin: .5em 0 0.5em; border: 1px solid; background-repeat: no-repeat; background-position: 10px 50%; padding: 10px 10px 10px 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; -moz-box-shadow: 0 1px 1px #000000 inset; -webkit-box-shadow: 0 1px 1px #000000 inset; box-shadow: 0 1px 1px #000000 inset; } .success { color: #ffffff; background-color: #14075b; } h1.success, div.success { border-color: #5d2db9; } .success h1 { border-color: #ff00ff; } .notice { color: #ffffff; background-color: #17110e; } h1.notice, div.notice { border-color: #c59381; } .notice h1 { border-color: #004ef5; } .error { border: 1px solid #800000 !important; color: #ffffff; background: #ffc0cb; } h1.error, div.error { border-color: #cccccc; } div.error h1 { border-color: #00ffff; } .confirmation { color: #ffffff; background-color: #ffc0cb; } /* end messageboxes */ .tblcomment { font-size: 70%; font-weight: normal; color: #ffff66; } .tblHeaders { font-weight: bold; color: #ffffff; background: #2c231c; } div.tools, .tblFooters { font-weight: normal; color: #ffffff; background: #2c231c; } .tblHeaders a:link, .tblHeaders a:active, .tblHeaders a:visited, div.tools a:link, div.tools a:visited, div.tools a:active, .tblFooters a:link, .tblFooters a:active, .tblFooters a:visited { color: #ffff00; } .tblHeaders a:hover, div.tools a:hover, .tblFooters a:hover { color: #00ffff; } /* forbidden, no privileges */ .noPrivileges { color: #00ffff; font-weight: bold; } /* disabled text */ .disabled, .disabled a:link, .disabled a:active, .disabled a:visited { color: #999999; } .disabled a:hover { color: #999999; text-decoration: none; } tr.disabled td, td.disabled { background-color: #0c0c0c; color: #555555; } /** * login form */ .commented_column { border-bottom: 1px dashed #ffffff; } /******************************************************************************/ /* specific elements */ /* topmenu */ #topmenu a { text-shadow: 0 1px 0 #000000; } #topmenu .error { background: #111111; border: 0 !important; color: #555555; } .menucontainer { background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#232323)); background: -webkit-linear-gradient(top, #000000, #232323); background: -moz-linear-gradient(top, #000000, #232323); background: -ms-linear-gradient(top, #000000, #232323); background: -o-linear-gradient(top, #000000, #232323); border-top: 1px solid #555555; } /* default tab styles */ .tabactive { background: #000000 !important; } ul#topmenu2 a { display: block; margin: 7px 6px 7px; margin-left: 0; padding: 4px 10px; white-space: nowrap; border: 1px solid #222222; border-radius: 20px; -moz-border-radius: 20px; -webkit-border-radius: 20px; background: #0d0d0d; } fieldset.caution a { color: #00ffff; } fieldset.caution a:hover { color: #000000; background-color: #00ffff; } ul#topmenu ul { -moz-box-shadow: 1px 1px 6px #222222; -webkit-box-shadow: 2px 2px 3px #999999; box-shadow: 2px 2px 3px #999999; } ul#topmenu > li { border-right: 1px solid #000000; border-left: 1px solid #333333; border-bottom: 1px solid #333333; } /* default tab styles */ /* enabled hover/active tabs */ ul#topmenu2 a.tab:hover, ul#topmenu2 a.tabactive { background-color: #1a1a1a; border-radius: .3em; -moz-border-radius: .3em; -webkit-border-radius: .3em; text-decoration: none; } /* to be able to cancel the bottom border, use <li class="active"> */ ul#topmenu > li.active { /* border-bottom: 0pt solid #000000; */ border-right: 0; border-bottom-color: #000000; } /* end topmenu */ /* zoom search */ /* Calendar */ table.calendar td a:hover { background-color: #330033; } table.calendar th { background-color: #2c231c; } table.calendar td.selected { background-color: #003366; } /* end Calendar */ /* Heading */ #serverinfo { background: #777777; padding: .3em .9em; padding-left: 2.2em; text-shadow: 0 1px 0 #ffffff; width: 10000px; overflow: hidden; } #serverinfo .item { white-space: nowrap; color: #000000; } #goto_pagetop, #lock_page_icon, #page_settings_icon { padding: .25em; background: #777777; } #span_table_comment { font-weight: bold; font-style: italic; white-space: nowrap; margin-left: 10px; color: #292929; text-shadow: none; } #TooltipContainer { position: absolute; z-index: 99; width: 20em; height: auto; overflow: visible; visibility: hidden; background-color: #000033; color: #ff99ff; border: .1em solid #ffffff; padding: .5em; } /* user privileges */ #fieldset_add_user_login div.item { border-bottom: 1px solid silver; padding-bottom: .3em; margin-bottom: .3em; } /* end user privileges */ /* serverstatus */ .linkElem:hover { text-decoration: underline; color: #dca57e; cursor: pointer; } div#chartVariableSettings { border: 1px solid #222222; background-color: #191919; margin-left: 10px; } table#chartGrid div.monitorChart { background: #141414; overflow: hidden; border: none; } .popupContent { display: none; position: absolute; border: 1px solid #333333; margin: 0; padding: 3px; -moz-box-shadow: 2px 2px 3px #999999; -webkit-box-shadow: 2px 2px 3px #999999; box-shadow: 2px 2px 3px #999999; background-color: #000000; z-index: 2; } /* end serverstatus */ /* server variables */ #serverVariables .var-header { color: #ffffff; background: #0c0c0c; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#333333)); background: -webkit-linear-gradient(top, #000000, #333333); background: -moz-linear-gradient(top, #000000, #333333); background: -ms-linear-gradient(top, #000000, #333333); background: -o-linear-gradient(top, #000000, #333333); font-weight: bold; } /* end server variables */ p.notice { margin: 1.5em 0; border: 1px solid #ffffff; background-repeat: no-repeat; background-position: 10px 50%; padding: 10px 10px 10px 25px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; -moz-box-shadow: 0 1px 2px #000000 inset; -webkit-box-shadow: 0 1px 2px #000000 inset; box-shadow: 0 1px 2px #000000 inset; background: #aaaaaa; color: #2b0495; } p.notice a { color: #000000; text-decoration: underline; } /* table charting */ #resizer { border: 1px solid #c0c0c0; } /* end table charting */ /* querybox */ #serverstatus h3 { margin: 15px 0; font-weight: normal; color: #666666; font-size: 1.7em; } #sectionlinks { padding: 16px; background: #0c0c0c; border: 1px solid #555555; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; box-shadow: 0 1px 1px #000000 inset; -webkit-box-shadow: 0 1px 1px #000000 inset; -moz-box-shadow: 0 1px 1px #000000 inset; } #sectionlinks a, .buttonlinks a, a.button { font-weight: bold; text-shadow: 0 1px 0 #000000; line-height: 35px; margin-left: 7px; border: 1px solid #555555; padding: 3px 7px; color: #eeeeee !important; text-decoration: none; background: #222222; white-space: nowrap; border-radius: 20px; -webkit-border-radius: 20px; -moz-border-radius: 20px; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#070707), to(#272727)); background: -webkit-linear-gradient(top, #070707, #272727); background: -moz-linear-gradient(top, #070707, #272727); background: -ms-linear-gradient(top, #070707, #272727); background: -o-linear-gradient(top, #070707, #272727); } #sectionlinks a:hover, .buttonlinks a:hover, a.button:hover { background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#222222)); background: -webkit-linear-gradient(top, #000000, #222222); background: -moz-linear-gradient(top, #000000, #222222); background: -ms-linear-gradient(top, #000000, #222222); background: -o-linear-gradient(top, #000000, #222222); } div#tablefieldscontainer select { width: 100%; background: #000000; /* height: 12em; */ } textarea#sqlquery { width: 100%; /* height: 100%; */ -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; border: 1px solid #555555; padding: 5px; font-family: inherit; } /* end querybox */ /* main page */ #full_name_layer { position: absolute; padding: 2px; margin-top: -3px; z-index: 801; border-radius: 3px; border: solid 1px #777777; background: #000000; } /* end main page */ /* iconic view for ul items */ /* end iconic view for ul items */ #body_browse_foreigners { background: #0c0c0c; margin: .5em .5em 0 .5em; } #bodythemes img { border: .1em solid #ffffff; } .result_query div.sqlOuter { background: #1a1a1a; } #PMA_slidingMessage code.sql, div.sqlvalidate { background: #1a1a1a; } .group { border: 1px solid #666666; background: #0c0c0c; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-box-shadow: 2px 2px 5px #333333; -webkit-box-shadow: 2px 2px 5px #333333; box-shadow: 2px 2px 5px #333333; margin-bottom: 1em; padding-bottom: 1em; } .group h2 { background-color: #444444; padding: .1em .3em; margin-top: 0; color: #000000; font-size: 1.6em; font-weight: normal; text-shadow: 0 1px 0 #888888; -moz-box-shadow: 1px 1px 15px #666666 inset; -webkit-box-shadow: 1px 1px 15px #666666 inset; box-shadow: 1px 1px 15px #666666 inset; } div.upload_progress_bar_outer { border: 1px solid #ffffff; width: 202px; position: relative; margin: 0 auto 1em; color: #bbbbbb; } div.upload_progress_bar_inner { background-color: #222222; width: 0; height: 12px; margin: 1px; overflow: hidden; color: #ffffff; position: relative; } /** * Validation error message styles */ input[type=text].invalid_value, input[type=password].invalid_value, input[type=number].invalid_value, input[type=date].invalid_value, select.invalid_value, .invalid_value { background: #003333; } /** * Ajax notification styling */ .ajax_notification { top: 0; /** The notification needs to be shown on the top of the page */ position: fixed; margin-top: 0; margin-right: auto; margin-bottom: 0; margin-left: auto; padding: 5px; /** Keep a little space on the sides of the text */ width: 350px; z-index: 1100; /** If this is not kept at a high z-index, the jQueryUI modal dialogs (z-index: 1000) might hide this */ text-align: center; display: inline; left: 0; right: 0; background-repeat: no-repeat; background-position: 2%; border: 1px solid #1d48f6; } /* additional styles */ .ajax_notification { margin-top: 200px; background: #001a81; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; box-shadow: 0 5px 90px #777777; -moz-box-shadow: 0 5px 90px #777777; -webkit-box-shadow: 0 5px 90px #777777; } .exportoptions h3, .importoptions h3 { border-bottom: 1px #666666 solid; font-size: 110%; } .exportoptions #buttonGo, .importoptions #buttonGo { font-weight: bold; margin-left: 14px; border: 1px solid #555555; padding: 5px 12px; color: #eeeeee; text-decoration: none; border-radius: 12px; -webkit-border-radius: 12px; -moz-border-radius: 12px; text-shadow: 0 1px 0 #000000; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#333333)); background: -webkit-linear-gradient(top, #000000, #333333); background: -moz-linear-gradient(top, #000000, #333333); background: -ms-linear-gradient(top, #000000, #333333); background: -o-linear-gradient(top, #000000, #333333); cursor: pointer; } .format_specific_options { border: 1px solid #666666; margin: 7px 0; padding: 3px; } .export_sub_options h4 { border-bottom: 1px #666666 solid; } /** * Import styles only */ #popup_background { display: none; position: fixed; _position: absolute; /* hack for IE6 */ width: 100%; height: 100%; top: 0; left: 0; background: #ffffff; z-index: 1000; overflow: hidden; } /** * Table structure styles */ #move_columns_dialog li { background: #2c231c; border: 1px solid #555555; color: #ffffff; font-weight: bold; margin: .4em; padding: .2em; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } .config-form ul.tabs li { float: left; margin-bottom: -1px; } .config-form ul.tabs li a { display: block; margin: .1em .2em 0; white-space: nowrap; text-decoration: none; border: 1px solid #2a2a2a; border-bottom: 1px solid #555555; } .config-form ul.tabs li a { padding: 7px 10px; -webkit-border-radius: 5px 5px 0 0; -moz-border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0; background: #0d0d0d; color: #aaaaaa; text-shadow: 0 1px 0 #000000; } .config-form ul.tabs li a:hover, .config-form ul.tabs li a:active { background: #1a1a1a; } .config-form ul.tabs li.active a { background-color: #000000; margin-top: 1px; color: #ffffff; text-shadow: none; border-color: #555555; border-bottom: 1px solid #000000; } .config-form fieldset p { margin: 0; padding: .5em; background: #000000; border-top: 0; } .config-form fieldset .errors { /* form error list */ margin: 0 -2px 1em; padding: .5em 1.5em; background: #041526; border: 0 #37c7c7 solid; border-width: 1px 0; list-style: none; font-family: sans-serif; font-size: small; } .config-form fieldset .inline_errors { /* field error list */ margin: .3em .3em .3em; margin-left: 0; padding: 0; list-style: none; color: #65ffff; font-size: small; } .config-form fieldset .disabled-notice { font-size: 80%; text-transform: uppercase; color: #11ffff; cursor: help; } .config-form fieldset th small { display: block; font-weight: normal; font-family: sans-serif; font-size: x-small; color: #bbbbbb; } .config-form fieldset th, .config-form fieldset td { border-top: 1px #2a2a2a solid; border-right: none; } fieldset .group-header th { background: #2a2a2a; } fieldset .disabled-field th, fieldset .disabled-field th small, fieldset .disabled-field td { color: #999999; background-color: #222222; } .config-form .lastrow { border-top: 1px #ffffff solid; } .config-form .lastrow { background: #2c231c; padding: .5em; text-align: center; } /* form elements */ .config-form .custom { /* customized field */ background: #000033; } .config-form span.checkbox.custom { padding: 1px; border: 1px #12136f solid; background: #000033; } .config-form .field-error { border-color: #55eeee !important; } .config-form input[type="text"], .config-form input[type="password"], .config-form input[type="number"], .config-form select, .config-form textarea { border: 1px #585955 solid; height: auto; } .config-form input[type="text"]:focus, .config-form input[type="password"]:focus, .config-form input[type="number"]:focus, .config-form select:focus, .config-form textarea:focus { border: 1px #998900 solid; background: #080400; } .config-form .field-comment-mark { font-family: serif; color: #ffff88; cursor: help; padding: 0 .2em; font-weight: bold; font-style: italic; } .config-form .field-comment-warning { color: #55ffff; } #placeholder div.button { font-size: smaller; color: #666666; background-color: #111111; padding: 2px; } .toggleButton { position: relative; cursor: pointer; font-size: .8em; text-align: center; line-height: 1.4em; height: 1.55em; overflow: hidden; border-right: .1em solid #777777; border-left: .1em solid #777777; -webkit-border-radius: .3em; -moz-border-radius: .3em; border-radius: .3em; } .toggleButton .toggleOn { color: #000000; padding: 0 1em; text-shadow: 0 0 .2em #ffffff; } #table_name_col_no { position: fixed; top: 55px; width: 100%; background: #000000; } #placeholder { position: relative; border: 1px solid #555555; float: right; overflow: hidden; } .colborder_active { border-right: 2px solid #55bbbb; } .modal-copy input { display: block; width: 100%; margin-top: 1.5em; padding: .3em 0; } .cCpy { background: #cccccc; color: #000000; font-weight: bold; margin: .1em; padding: .3em; position: absolute; text-shadow: -1px -1px #ffffff; -moz-box-shadow: 0 0 .7em #ffffff; -webkit-box-shadow: 0 0 .7em #ffffff; box-shadow: 0 0 .7em #ffffff; -moz-border-radius: .3em; -webkit-border-radius: .3em; border-radius: .3em; } .cPointer { height: 20px; margin-left: -5px; /* must be minus half of its width */ margin-top: -10px; position: absolute; width: 10px; } .tooltip { background: #cccccc !important; opacity: .8 !important; border: 1px solid #ffffff !important; -moz-border-radius: .3em !important; -webkit-border-radius: .3em !important; border-radius: .3em !important; text-shadow: -1px -1px #ffffff !important; font-size: .8em !important; font-weight: bold !important; padding: 1px 3px !important; } .tooltip * { background: none !important; color: #000000 !important; } .coldrop { cursor: pointer; height: 16px; margin-left: .3em; margin-top: .3em; position: absolute; width: 16px; } .coldrop:hover, .coldrop-hover { background-color: #666666; } .cList { background: #111111; border: solid 1px #666666; position: absolute; -moz-box-shadow: 0 .2em .5em #cccccc; -webkit-box-shadow: 0 .2em .5em #cccccc; box-shadow: 0 .2em .5em #cccccc; } .cList .lDiv div:hover { background: #222222; cursor: pointer; } .showAllColBtn { border-bottom: solid 1px #666666; border-top: solid 1px #666666; cursor: pointer; font-size: .9em; font-weight: bold; padding: .35em 1em; text-align: center; } .showAllColBtn:hover { background: #222222; } .navigation { margin: .8em 0; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#111111), to(#333333)); background: -webkit-linear-gradient(top, #111111, #333333); background: -moz-linear-gradient(top, #111111, #333333); background: -ms-linear-gradient(top, #111111, #333333); background: -o-linear-gradient(top, #111111, #333333); } .navigation_separator { color: #666666; display: inline-block; font-size: 1.5em; text-align: center; height: 1.4em; width: 1.2em; text-shadow: 1px 0 #000000; } .navigation input[type=submit]:hover, .navigation input.edit_mode_active { color: #000000; cursor: pointer; text-shadow: none; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#aaaaaa)); background: -webkit-linear-gradient(top, #cccccc, #aaaaaa); background: -moz-linear-gradient(top, #cccccc, #aaaaaa); background: -ms-linear-gradient(top, #cccccc, #aaaaaa); background: -o-linear-gradient(top, #cccccc, #aaaaaa); } .cEdit input[type=text] { background: #000000; height: 100%; margin: 0; padding: 0; } .cEdit .edit_area { background: #000000; border: 1px solid #666666; min-width: 10em; padding: .3em .5em; } .cEdit .cell_edit_hint { color: #aaaaaa; font-size: .8em; margin: .3em .2em; } .cEdit .edit_box_posting { padding-right: 1.5em; } .cEdit .edit_area_loading { height: 10em; } .cEdit .goto_link { background: #111111; color: #aaaaaa; padding: .2em .3em; } .saving_edited_data { padding-left: 20px; } /* css for timepicker */ input.btn { color: #cccccc; background-color: #2f231f; } .ui-dialog fieldset legend a { color: #dca57e; } .report-data { height: 13em; overflow: scroll; width: 570px; border: solid 1px; background: #ffffff; padding: 2px; } div#page_content div#tableslistcontainer table.data { border-top: 0.1px solid #111111; } table.show_create td { border-right: 1px solid #444444; } /* Console styles */ #pma_console .toolbar { position: relative; background: #333333; border-top: solid 1px #555555; cursor: n-resize; } #pma_console .toolbar.collapsed:not(:hover) { display: inline-block; border-top-right-radius: 3px; border-right: solid 1px #555555; } #pma_console .message span.action:hover, #pma_console .toolbar .button:hover, #pma_console .switch_button:hover, #pma_console .toolbar .button.active { background: #222222; } #pma_console .content { overflow-x: hidden; overflow-y: auto; margin-bottom: -65px; border-top: solid 1px #555555; background: #000000; padding-top: .4em; } #pma_console .content.console_dark_theme { background: #ffffff; color: #000000; } #pma_console .content.console_dark_theme .CodeMirror-wrap { background: #ffffff; color: #000000; } #pma_console .content.console_dark_theme .action_content { color: #ffffff; } #pma_console .content.console_dark_theme .message { border-color: #c8c4be; } #pma_console .content.console_dark_theme .CodeMirror-cursor { border-color: #000000; } #pma_console .content.console_dark_theme .cm-keyword { color: #216ca0; } #pma_console .message { border-bottom: solid 1px #333333; padding-bottom: .2em; } #pma_console .message:hover:before { color: #883300; font-weight: bold; } #pma_console .message.failed:before, #pma_console .message.failed.expanded:before, #pma_console .message.failed:hover:before { content: "="; color: #66bbbb; } #pma_console .message .action_content { position: absolute; bottom: 100%; background: #333333; border: solid 1px #555555; border-top-left-radius: 3px; } #pma_console .message .text { background: #000000; } #pma_console .message .bookmark_label { padding: 0 4px; top: 0; background: #cc9966; color: #000000; border-radius: 3px; } #pma_console .message .bookmark_label.shared { background: #cc6699; } #pma_console .mid_layer { height: 100%; width: 100%; position: absolute; top: 0; /* For support IE8, this layer doesn't use filter:opacity or opacity, js code will fade this layer opacity to 0.18(using animation) */ background: #999999; display: none; cursor: pointer; z-index: 200; } #pma_console .card { position: absolute; width: 94%; height: 100%; min-height: 48px; left: 100%; top: 0; border-left: solid 1px #666666; z-index: 300; transition: left 0.2s; -ms-transition: left 0.2s; -webkit-transition: left 0.2s; -moz-transition: left 0.2s; } #pma_console .card.show { left: 6%; box-shadow: -2px 1px 4px -1px #666666; } #pma_bookmarks .content.add_bookmark .options { margin-left: 1.4em; padding-bottom: .4em; margin-bottom: .4em; border-bottom: solid 1px #333333; } /* PMA drop-improt style */ .pma_drop_handler { display: none; position: fixed; top: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.6); height: 100%; z-index: 999; color: #ffffff; font-size: 30pt; text-align: center; padding-top: 20%; } .pma_sql_import_status { display: none; position: fixed; bottom: 0; right: 25px; width: 400px; border: 1px solid #666666; background: #0c0c0c; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-box-shadow: 2px 2px 5px #333333; -webkit-box-shadow: 2px 2px 5px #333333; box-shadow: 2px 2px 5px #333333; } .pma_sql_import_status h2, .pma_drop_result h2 { background-color: #444444; padding: .1em .3em; margin-top: 0; margin-bottom: 0; color: #000000; font-size: 1.6em; font-weight: normal; text-shadow: 0 1px 0 #888888; -moz-box-shadow: 1px 1px 15px #666666 inset; -webkit-box-shadow: 1px 1px 15px #666666 inset; box-shadow: 1px 1px 15px #666666 inset; } .pma_sql_import_status div li { padding: 8px 10px; border-bottom: 1px solid #444444; color: rgb(107, 241, 241); background: #ffffff; } .pma_sql_import_status div li .filesize { float: right; } .pma_sql_import_status h2 .minimize { float: right; margin-right: 5px; padding: 0 10px; } .pma_sql_import_status h2 .minimize:hover, .pma_sql_import_status h2 .close:hover, .pma_drop_result h2 .close:hover { background: rgba(100, 106, 106, 0.78); cursor: pointer; } .pma_drop_file_status { color: #dca57e; } .pma_drop_result { position: fixed; top: 10%; left: 20%; width: 60%; background: #ffffff; min-height: 300px; z-index: 800; -webkit-box-shadow: 0 0 15px #666666; border-radius: 10px; cursor: move; } .dependencies_box { background-color: #ffffff; border: 3px ridge #000000; } span.drag_icon { display: inline-block; background-position: center center; background-repeat: no-repeat; width: 1em; height: 3em; cursor: move; } /* styles for sortable tables created with tablesorter jquery plugin */ th.header { cursor: pointer; color: #dca57e; } #gis_data_editor { background: #2f231f; padding: 15px; min-height: 500px; } /* FILE: navigation.css.php */ /******************************************************************************/ /* Navigation */ #pma_navigation { width: 240px; position: fixed; top: 0; left: 0; height: 100%; color: #ffffff; z-index: 800; } /******************************************************************************/ /* specific elements */ #pma_navigation div.pageselector { text-align: center; margin: 0; margin-left: 0.75em; border-left: 1px solid #999999; } /* Navigation tree*/ #pma_navigation_content, #pma_navigation_header { background-color: #000; } #pma_navigation_tree { margin: 0; margin-left: 5px; overflow: hidden; color: #bbbbbb; background-color: #000; height: 74%; position: relative; } #pma_navigation_db_select select { -webkit-border-radius: 2px; border-radius: 2px; border: 1px solid #444444; border-top: 1px solid #444444; color: #cccccc; padding: 4px 6px; margin: 0 0 0; width: 92%; font-size: 1.11em; } #pma_navigation_tree a { color: #ffffff; } #pma_navigation_tree li.activePointer { color: #ffffff; background-color: #222222; } #pma_navigation_tree li.selected { color: #ffffff; background-color: #222222; } #pma_navigation_tree div.block i { /* Top and right segments for the tree element connections */ display: block; border-left: 1px solid #999999; border-bottom: 1px solid #999999; position: relative; z-index: 0; } #pma_navigation_tree div.block b { /* Bottom segment for the tree element connections */ display: block; height: 0.75em; bottom: 0; left: 0.75em; border-left: 1px solid #999999; } #pma_navigation_tree .list_container { border-left: 1px solid #999999; margin-left: 0.75em; padding-left: 0.75em; } #pma_navigation_tree .last > .list_container { border-left: 0 solid #999999; } /* Fast filter */ li.fast_filter { padding-left: 0.75em; margin-left: 0.75em; padding-right: 35px; border-left: 1px solid #999999; list-style: none; } li.fast_filter span { position: relative; right: 1.5em; padding: 0.2em; cursor: pointer; font-weight: bold; color: #77ffff; font-size: 0.7em; } /* Resize handler */ #pma_navigation_resizer { width: 3px; height: 100%; background-color: #555555; cursor: col-resize; position: fixed; top: 0; left: 240px; z-index: 801; } #pma_navigation_collapser { width: 20px; height: 22px; line-height: 22px; background: #111111; color: #aaaaaa; font-weight: bold; position: fixed; top: 0; left: 240px; text-align: center; cursor: pointer; z-index: 800; text-shadow: 0 1px 0 #000000; filter: dropshadow(color=#000000, offx=0, offy=1); border: 1px solid #777777; } .pma_quick_warp .drop_button { padding: 0 .3em; border: 1px solid #222222; border-radius: .3em; background: #0d0d0d; cursor: pointer; } .pma_quick_warp .drop_list:hover .drop_button { background: #000000; } .pma_quick_warp .drop_list ul { position: absolute; margin: 0; padding: 0; overflow: hidden; overflow-y: auto; list-style: none; background: #000000; border: 1px solid #222222; border-radius: .3em; border-top-right-radius: 0; border-bottom-right-radius: 0; box-shadow: 0 0 5px #333333; top: 100%; left: 3px; right: 0; display: none; z-index: 802; } .pma_quick_warp .drop_list li:hover { background: #0d0d0d; } /* FILE: pmd.css.php */ /* Designer */ .input_tab { background-color: #59381e; color: #ffffff; } #canvas { background-color: #000000; color: #ffffff; } .pmd_tab { background-color: #000000; color: #ffffff; border-collapse: collapse; border: 1px solid #555555; z-index: 1; -moz-user-select: none; } .pmd_tab .header { background-repeat: repeat-x; } .tab_zag_2 { background-repeat: repeat-x; text-align: center; cursor: move; padding: 1px; font-weight: bold; } .tab_field { background: #000000; color: #ffffff; cursor: default; } .tab_field_2 { background-color: #330033; color: #ffffff; background-repeat: repeat-x; cursor: default; } .tab_field_3 { background-color: #001919; /*#221100*/ color: #ffffff; cursor: default; } #pmd_hint { white-space: nowrap; position: absolute; background-color: #660066; color: #ffffff; z-index: 3; border: #ff3399 solid 1px; display: none; } .pmd_Tabs { cursor: default; color: #ffaa44; white-space: nowrap; text-decoration: none; text-indent: 3px; font-weight: bold; margin-left: 2px; text-align: left; background-color: #000000; border: #333333 solid 1px; } .pmd_Tabs2 { cursor: default; color: #ffaa44; background: #001166; text-indent: 3px; font-weight: bold; white-space: nowrap; text-decoration: none; border: #666600 solid 1px; text-align: left; } .owner { font-weight: normal; color: #777777; } .select_all { vertical-align: top; padding-left: 2px; padding-right: 2px; cursor: default; width: 1px; color: #ffffff; background-repeat: repeat-x; } .small_tab { vertical-align: top; background-color: #ff9b15; color: #000000; cursor: default; text-align: center; font-weight: bold; padding-left: 2px; padding-right: 2px; width: 1px; text-decoration: none; } .small_tab2 { vertical-align: top; color: #000000; background-color: #006699; cursor: default; padding-left: 2px; padding-right: 2px; text-align: center; font-weight: bold; width: 1px; text-decoration: none; } .small_tab_pref { background-repeat: repeat-x; text-align: center; width: 1px; } .small_tab_pref2 { vertical-align: top; color: #000000; background-color: #006699; cursor: default; text-align: center; font-weight: bold; width: 1px; text-decoration: none; } .butt { border: #bb8855 solid 1px; font-weight: bold; height: 19px; width: 70px; background-color: #000000; color: #ffffff; vertical-align: baseline; } .L_butt2_2 { padding: 0; border: #ff6633 solid 1px; background: #001166; color: #ffffff; text-decoration: none; vertical-align: middle; cursor: default; } /* ---------------------------------------------------------------------------*/ #osn_tab { position: absolute; background-color: #000000; color: #ffffff; } .pmd_header { background-color: #15110f; color: #ffffff; text-align: center; font-weight: bold; margin: 0; padding: 0; background-position: top; background-repeat: repeat-x; border-right: #666666 solid 1px; border-left: #666666 solid 1px; height: 28px; z-index: 101; width: 100%; position: fixed; } .pmd_header a, .pmd_header span { display: block; float: left; margin: 3px 1px 4px; height: 20px; border: 1px dotted #000000; } a.M_butt_Selected_down_IE, a.M_butt_Selected_down { border: 1px solid #3f3f44; background-color: #660066; color: #ffffff; } a.M_butt_Selected_down_IE:hover, a.M_butt_Selected_down:hover, a.M_butt:hover { border: 1px solid #ff6633; background-color: #001166; color: #ffffff; } #layer_menu { z-index: 98; position: relative; float: right; background-color: #15110f; border: #666666 solid 1px; } #layer_menu_sizer { cursor: ew-resize; } a.trigger { position: fixed; text-decoration: none; top: 60px; right: 0; color: #000000; padding: 10px 40px 10px 15px; border: 1px solid #bbbbbb; display: block; z-index: 102; } a.trigger:hover { color: #f7f7f7; border: 1px solid #666666; } a.active.trigger { z-index: 999; } .toggle_container .block { background-color: #241b17; border-top: 1px solid #666666; } .history_table { text-align: center; background-color: #666633; cursor: pointer; } .history_table2 { text-align: center; background-color: #241b17; } .side-menu { float: left; position: fixed; width: auto; height: auto; background: #101010; border: 1px solid grey; overflow: hidden; z-index: 50; padding: 2px; } #name-panel { border-bottom: 1px solid grey; text-align: center; background: #101010; width: 100%; font-size: 1.2em; padding: 10px; font-weight: bold; } .insertRowTable .CodeMirror { height: 9em; width: 24em; border: 1px solid #565656; } span.cm-keyword, span.cm-statement-verb { color: #66ff66; } span.cm-variable { color: #000000; } span.cm-comment { color: #7f7fff; } span.cm-mysql-string { color: #ff7fff; } span.cm-operator { color: #ff00ff; } span.cm-mysql-word { color: #000000; } span.cm-builtin { color: #00ffff; } span.cm-variable-2 { color: #0066ff; } span.cm-variable-3 { color: #ffff00; } span.cm-separator { color: #ff00ff; } span.cm-number { color: #008080; } .autocomplete-column-hint { display: inline-block; float: right; color: #999999; margin-left: 1em; } /* FILE: jqplot.css.php */ /* jqPlot */ /*rules for the plot target div. These will be cascaded down to all plot elements according to css rules*/ .jqplot-target { position: relative; color: #dddddd; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 1em; /* height: 300px; width: 590px;*/ } .jqplot-meterGauge-tick { font-size: 0.75em; color: #666666; } .jqplot-meterGauge-label { font-size: 1em; color: #666666; } table.jqplot-table-legend, table.jqplot-cursor-legend { background-color: rgba(0, 0, 0, 0.6); border: 1px solid #333333; position: absolute; font-size: 0.75em; } div.jqplot-table-legend-swatch-outline { border: 1px solid #333333; padding: 1px; } table.jqplot-cursor-tooltip { border: 1px solid #333333; font-size: 0.75em; } .jqplot-cursor-tooltip { border: 1px solid #333333; font-size: 0.75em; white-space: nowrap; background: rgba(47, 47, 47, 0.5); padding: 1px; } .jqplot-highlighter-tooltip, .jqplot-canvasOverlay-tooltip { border: 1px solid #333333; font-size: 0.75em; white-space: nowrap; background: rgba(47, 47, 47, 0.5); padding: 1px; } div.jqplot-bubble-label { font-size: 0.8em; /* background: rgba(90%, 90%, 90%, 0.15);*/ padding-left: 2px; padding-right: 2px; color: rgb(20%, 20%, 20%); } div.jqplot-bubble-label.jqplot-bubble-label-highlight { background: rgba(90%, 90%, 90%, 0.7); } div.jqplot-noData-container { text-align: center; background-color: rgba(96%, 96%, 96%, 0.3); } ul.resizable-menu li:hover { background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#1a1a1a)); background: -webkit-linear-gradient(top, #000000, #1a1a1a); background: -moz-linear-gradient(top, #000000, #1a1a1a); background: -ms-linear-gradient(top, #000000, #1a1a1a); background: -o-linear-gradient(top, #000000, #1a1a1a); } ul.resizable-menu li:hover ul, ul.resizable-menu .submenuhover ul { display: block; background: #000000; } ul.resizable-menu ul li { width: 100%; } /* Icon sprites */ .icon { margin: 0; margin-left: .3em; padding: 0 !important; width: 16px; height: 16px; background-repeat: no-repeat !important; background-position: top left !important; } /* ***********END MOZ DOCUMENT STYLES***********/ }
data/usercss/142468.user.css
@-moz-document regexp("http://127.0.0.1/phpmyadmin/.*"), regexp("http://localhost/phpmyadmin/.*") { /* FILE: codemirror.css */ /******************************************************************************/ /* BASICS */ img#imgpmalogo { -webkit-filter: invert(1); filter: invert(1); } .CodeMirror { /* Set height, width, borders, and global font properties here */ font-family: monospace; height: 300px; color: #ffffff; border: 1px solid #ddd; } /* PADDING */ .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { background-color: #000000; /* the little square between h and v scrollbars */ } /* GUTTER */ .CodeMirror-gutters { border-right: 1px solid #222222; background-color: #080808; white-space: nowrap; } .CodeMirror-linenumber { padding: 0 3px 0 5px; min-width: 20px; text-align: right; color: #666666; white-space: nowrap; } .CodeMirror-guttermarker { color: #ffffff; } .CodeMirror-guttermarker-subtle { color: #666666; } /* CURSOR */ .CodeMirror div.CodeMirror-cursor { border-left: 1px solid #fff; } /* Shown when moving in bi-directional text */ .CodeMirror div.CodeMirror-secondarycursor { border-left: 1px solid #000; } .CodeMirror.cm-fat-cursor div.CodeMirror-cursor { width: auto; border: 0; background: #881188; } @-moz-keyframes blink { 0% { background: #881188; } 50% { background: none; } 100% { background: #881188; } } @-webkit-keyframes blink { 0% { background: #881188; } 50% { background: none; } 100% { background: #881188; } } @keyframes blink { 0% { background: #881188; } 50% { background: none; } 100% { background: #881188; } } .CodeMirror-ruler { border-left: 1px solid #333333; position: absolute; } /* DEFAULT THEME */ .cm-s-default .cm-header { color: #ffff00; } .cm-s-default .cm-quote { color: #ff66ff; } .cm-negative { color: #22bbbb; } .cm-positive { color: #dd66dd; } .cm-header, .cm-strong { font-weight: bold; } .cm-em { font-style: italic; } .cm-link { text-decoration: underline; } .cm-strikethrough { text-decoration: line-through; } .cm-s-default .cm-keyword { color: #88ff77; } .cm-s-default .cm-atom { color: #ddee66; } .cm-s-default .cm-number { color: #ee99bb; } .cm-s-default .cm-def { color: #ffff00; } .cm-s-default .cm-variable-2 { color: #ffaa55; } .cm-s-default .cm-variable-3 { color: #ff77aa; } .cm-s-default .cm-comment { color: #55aaff; } .cm-s-default .cm-string { color: #55eeee; } .cm-s-default .cm-string-2 { color: #00aaff; } .cm-s-default .cm-meta { color: #aaaaaa; } .cm-s-default .cm-qualifier { color: #aaaaaa; } .cm-s-default .cm-builtin { color: #ccff55; } .cm-s-default .cm-bracket { color: #666688; } .cm-s-default .cm-tag { color: #ee88ff; } .cm-s-default .cm-attribute { color: #ffff33; } .cm-s-default .cm-hr { color: #666666; } .cm-s-default .cm-link { color: #ffff33; } .cm-s-default .cm-error { color: #00ffff; } .cm-invalidchar { color: #00ffff; } .CodeMirror-composing { border-bottom: 2px solid; } /* Default styles for common addons */ div.CodeMirror span.CodeMirror-matchingbracket { color: #ff00ff; } div.CodeMirror span.CodeMirror-nonmatchingbracket { color: #00dddd; } .CodeMirror-matchingtag { background: rgba(0, 105, 255, .3); } .CodeMirror-activeline-background { background: #170d00; } /* STOP */ /* The rest of this file contains styles related to the mechanics of the editor. You probably shouldn't touch them. */ .CodeMirror { position: relative; overflow: hidden; background: #000000; } .CodeMirror-scroll { overflow: scroll !important; /* Things will break if this is overridden */ /* 30px is the magic margin used to hide the element's real scrollbars */ /* See overflow: hidden in .CodeMirror */ margin-bottom: -30px; margin-right: -30px; padding-bottom: 30px; height: 100%; outline: none; /* Prevent dragging from highlighting the element */ position: relative; } .CodeMirror-sizer { position: relative; border-right: 30px solid transparent; } /* The fake, visible scrollbars. Used to force redraw during scrolling before actuall scrolling happens, thus preventing shaking and flickering artifacts. */ .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { position: absolute; z-index: 6; display: none; } .CodeMirror-vscrollbar { right: 0; top: 0; overflow-x: hidden; overflow-y: scroll; } .CodeMirror-hscrollbar { bottom: 0; left: 0; overflow-y: hidden; overflow-x: scroll; } .CodeMirror-scrollbar-filler { right: 0; bottom: 0; } .CodeMirror-gutter-filler { left: 0; bottom: 0; } .CodeMirror-gutters { position: absolute; left: 0; top: 0; z-index: 3; } .CodeMirror-gutter-wrapper { position: absolute; z-index: 4; height: 100%; } .CodeMirror-gutter-elt { position: absolute; cursor: default; z-index: 4; } .CodeMirror-gutter-wrapper { -webkit-user-select: none; -moz-user-select: none; user-select: none; } .CodeMirror-lines { cursor: text; min-height: 1px; /* prevents collapsing before first draw */ } .CodeMirror pre { /* Reset some styles that the rest of the page might have set */ -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; border-width: 0; background: transparent; font-family: inherit; font-size: inherit; margin: 0; white-space: pre; word-wrap: normal; line-height: inherit; color: inherit; z-index: 2; position: relative; overflow: visible; -webkit-tap-highlight-color: transparent; } .CodeMirror-wrap pre { word-wrap: break-word; white-space: pre-wrap; word-break: normal; } .CodeMirror-linebackground { position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 0; } .CodeMirror-linewidget { position: relative; z-index: 2; overflow: auto; } .CodeMirror-code { outline: none; } /* Force content-box sizing for the elements where we expect it */ .CodeMirror-scroll, .CodeMirror-sizer, .CodeMirror-gutter, .CodeMirror-gutters, .CodeMirror-linenumber { -moz-box-sizing: content-box; box-sizing: content-box; } .CodeMirror-measure { position: absolute; width: 100%; height: 0; overflow: hidden; visibility: hidden; } .CodeMirror-measure pre { position: static; } .CodeMirror div.CodeMirror-cursor { position: absolute; border-right: none; width: 0; } div.CodeMirror-cursors { visibility: hidden; position: relative; z-index: 3; } .CodeMirror-focused div.CodeMirror-cursors { visibility: visible; } .CodeMirror-selected { background: #262626; } .CodeMirror-focused .CodeMirror-selected { background: #282b0f; } .CodeMirror-crosshair { cursor: crosshair; } .CodeMirror::selection { background: #282b0f; } .CodeMirror::-moz-selection { background: #282b0f; } .cm-searching { background: #000055; background: rgba(0, 0, 255, .4); } /* IE7 hack to prevent it from returning funny offsetTops on the spans */ .CodeMirror span { *vertical-align: text-bottom; } /* Used to force a border model for a node */ .cm-force-border { padding-right: .1px; } @media print { /* Hide the cursor when printing */ .CodeMirror div.CodeMirror-cursors { visibility: hidden; } } /* See issue #dd66ff1 */ .cm-tab-wrap-hack:after { content: ''; } /* Help users use markselection to safely style text background */ span.CodeMirror-selectedtext { background: none; } /* FILE: common.css.php */ /******************************************************************************/ /* general tags */ body { font-family: sans-serif; padding: 0; margin: 0; margin-left: 240px; color: #bbbbbb; background: #000000; } select, textarea, input { color: #bbbbbb; background: #000000; } h2 { font-size: 2em; font-weight: normal; text-shadow: 0 1px 0 #000000; padding: 10px 0 10px; padding-left: 3px; color: #888888; } /* Hiding icons in the page titles */ a, a:link, a:visited, a:active, button.mult_submit, .checkall_box+label { text-decoration: none; color: #dca57e; cursor: pointer; outline: none; } a:hover, button.mult_submit:hover, button.mult_submit:focus, .checkall_box+label:hover { text-decoration: underline; color: #dca57e; } #initials_table { background: #0c0c0c; border: 1px solid #555555; margin-bottom: 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; } #initials_table a { border: 1px solid #555555; background: #000000; padding: 4px 8px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#1f1f1f)); background: -webkit-linear-gradient(top, #000000, #1f1f1f); background: -moz-linear-gradient(top, #000000, #1f1f1f); background: -ms-linear-gradient(top, #000000, #1f1f1f); background: -o-linear-gradient(top, #000000, #1f1f1f); } #initials_table a.active { border: 1px solid #999999; box-shadow: 0 0 2px #666666; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#000000)); background: -webkit-linear-gradient(top, #444444, #000000); background: -moz-linear-gradient(top, #444444, #000000); background: -ms-linear-gradient(top, #444444, #000000); background: -o-linear-gradient(top, #444444, #000000); } th { font-weight: bold; color: #ffffff; background: #0c0c0c; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#333333)); background: -webkit-linear-gradient(top, #000000, #333333); background: -moz-linear-gradient(top, #000000, #333333); background: -ms-linear-gradient(top, #000000, #333333); background: -o-linear-gradient(top, #000000, #333333); } hr { color: #bbbbbb; background-color: #bbbbbb; border: 0; height: 1px; } input[type=text], input[type=password], input[type=number], input[type=date] { border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; background: #000; border: 1px solid #555555; color: #fff; padding: 4px; } input[type=text][disabled], input[type=text][disabled]:hover, input[type=password][disabled], input[type=password][disabled]:hover, input[type=number][disabled], input[type=number][disabled]:hover, input[type=date][disabled], input[type=date][disabled]:hover, select[disabled], select[disabled]:hover { background: #171717; box-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none; } input[type=text]:hover, input[type=text]:focus, input[type=password]:hover, input[type=password]:focus, input[type=number]:hover, input[type=number]:focus, input[type=date]:hover, input[type=date]:focus, select:focus { border: 1px solid #838383; background: #000000; } input[type=text]:hover, input[type=password]:hover, input[type=number]:hover, input[type=date]:hover { box-shadow: 0 1px 3px #555555; -webkit-box-shadow: 0 1px 3px #555555; -moz-box-shadow: 0 1px 3px #555555; } input[type=submit], input[type=button], button[type=submit]:not(.mult_submit), input[type=reset], input[name=submit_reset], input.button { margin: 6px 14px; border: 1px solid #555555; padding: 3px 7px; color: #eeeeee; text-decoration: none; background: #222222; border-radius: 12px; -webkit-border-radius: 12px; -moz-border-radius: 12px; text-shadow: 0 1px 0 #000000; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#070707), to(#272727)); background: -webkit-linear-gradient(top, #070707, #272727); background: -moz-linear-gradient(top, #070707, #272727); background: -ms-linear-gradient(top, #070707, #272727); background: -o-linear-gradient(top, #070707, #272727); } input[type=submit]:hover, input[type=button]:hover, button[type=submit]:not(.mult_submit):hover, input[type=reset]:hover, input[name=submit_reset]:hover, input.button:hover { position: relative; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#222222)); background: -webkit-linear-gradient(top, #000000, #222222); background: -moz-linear-gradient(top, #000000, #222222); background: -ms-linear-gradient(top, #000000, #222222); background: -o-linear-gradient(top, #000000, #222222); cursor: pointer; } input[type=submit]:active, input[type=button]:active, button[type=submit]:not(.mult_submit):active, input[type=reset]:active, input[name=submit_reset]:active, input.button:active { position: relative; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#111111), to(#222222)); background: -webkit-linear-gradient(top, #111111, #222222); background: -moz-linear-gradient(top, #111111, #222222); background: -ms-linear-gradient(top, #111111, #222222); background: -o-linear-gradient(top, #111111, #222222); box-shadow: 0 1px 6px -2px #cccccc inset; text-shadow: none; } input[type=submit]:disabled, input[type=button]:disabled, button[type=submit]:not(.mult_submit):disabled, input[type=reset]:disabled, input[name=submit_reset]:disabled, input.button:disabled { background: #333333; color: #999999; text-shadow: none; } fieldset, .preview_sql { margin-top: 1em; border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0; border: #555555 solid 1px; padding: 1.5em; background: #111111; text-shadow: 1px 1px 2px #000000 inset; -moz-box-shadow: 1px 1px 2px #000000 inset; -webkit-box-shadow: 1px 1px 2px #000000 inset; box-shadow: 1px 1px 2px #000000 inset; } fieldset fieldset { margin: .8em; border: 1px solid #555555; background: #171717; } fieldset legend { font-weight: bold; color: #bbbbbb; padding: 5px 10px; border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; border: 1px solid #555555; background-color: #000000; -moz-box-shadow: 3px 3px 15px #444444; -webkit-box-shadow: 3px 3px 15px #444444; box-shadow: 3px 3px 15px #444444; max-width: 100%; } table caption, table th, table td { padding: .3em; margin: .1em; vertical-align: top; text-shadow: 0 1px 0 #000000; } /* 3.4 */ thead th { border-right: 1px solid #000000; } select { -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; border: 1px solid #444444; color: #fff; padding: 3px; background: #000; margin: 6px; } select[multiple] { background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#0d0d0d)); background: -webkit-linear-gradient(top, #000000, #0d0d0d); background: -moz-linear-gradient(top, #000000, #0d0d0d); background: -ms-linear-gradient(top, #000000, #0d0d0d); background: -o-linear-gradient(top, #000000, #0d0d0d); } /******************************************************************************/ /* classes */ .separator { color: #000000; text-shadow: 0 1px 0 #ffffff; } div.tools a { color: #c58152 !important; } /* odd items 1,3,5,7,... */ table tr.odd th, .odd { background: #000000; } /* even items 2,4,6,8,... */ /* (tested on CRTs and ACLs) */ table tr.even th, .even { background: #202020; } /* marked table rows */ td.marked:not(.nomarker), table tr.marked:not(.nomarker) td, table tr.marked:not(.nomarker) th, table tr.marked:not(.nomarker) { background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#312920), to(#493928)); background: -webkit-linear-gradient(top, #312920, #493928); background: -moz-linear-gradient(top, #312920, #493928); background: -ms-linear-gradient(top, #312920, #493928); background: -o-linear-gradient(top, #312920, #493928); color: #ffffff; } /* hovered items */ .odd:not(.nopointer):hover, .even:not(.nopointer):hover, .hover:not(.nopointer) { background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#312920), to(#493928)); background: -webkit-linear-gradient(top, #312920, #493928); background: -moz-linear-gradient(top, #312920, #493928); background: -ms-linear-gradient(top, #312920, #493928); background: -o-linear-gradient(top, #312920, #493928); color: #ffffff; } /* hovered table rows */ table tr.odd:not(.nopointer):hover th, table tr.even:not(.nopointer):hover th, table tr.hover:not(.nopointer) th { background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#312920), to(#493928)); background: -webkit-linear-gradient(top, #312920, #493928); background: -moz-linear-gradient(top, #312920, #493928); background: -ms-linear-gradient(top, #312920, #493928); background: -o-linear-gradient(top, #312920, #493928); color: #ffffff; } /** * marks table rows/cells if the db field is in a where condition */ .condition { border-color: #003366 !important; } /* for first th which must have right border set (ltr only) */ .before-condition { border-right: 1px solid #003366; } /** * cells with the value NULL */ .attention { color: #ff0000; font-weight: bold; } .allfine { color: #008000; } .pdflayout { overflow: hidden; clip: inherit; background-color: #000000; display: none; border: 1px solid #ffffff; position: relative; } .pdflayout_table { background: #2c231c; color: #ffffff; overflow: hidden; clip: inherit; z-index: 2; display: inline; visibility: inherit; cursor: move; position: absolute; font-size: 80%; border: 1px dashed #ffffff; } /* Doc links in SQL */ .cm-sql-doc { text-decoration: none; border-bottom: 1px dotted #ffffff; color: inherit !important; } /* message boxes: error, confirmation */ div.success, div.notice, div.error { margin: .5em 0 0.5em; border: 1px solid; background-repeat: no-repeat; background-position: 10px 50%; padding: 10px 10px 10px 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; -moz-box-shadow: 0 1px 1px #000000 inset; -webkit-box-shadow: 0 1px 1px #000000 inset; box-shadow: 0 1px 1px #000000 inset; } .success { color: #ffffff; background-color: #14075b; } h1.success, div.success { border-color: #5d2db9; } .success h1 { border-color: #ff00ff; } .notice { color: #ffffff; background-color: #17110e; } h1.notice, div.notice { border-color: #c59381; } .notice h1 { border-color: #004ef5; } .error { border: 1px solid #800000 !important; color: #ffffff; background: #ffc0cb; } h1.error, div.error { border-color: #cccccc; } div.error h1 { border-color: #00ffff; } .confirmation { color: #ffffff; background-color: #ffc0cb; } /* end messageboxes */ .tblcomment { font-size: 70%; font-weight: normal; color: #ffff66; } .tblHeaders { font-weight: bold; color: #ffffff; background: #2c231c; } div.tools, .tblFooters { font-weight: normal; color: #ffffff; background: #2c231c; } .tblHeaders a:link, .tblHeaders a:active, .tblHeaders a:visited, div.tools a:link, div.tools a:visited, div.tools a:active, .tblFooters a:link, .tblFooters a:active, .tblFooters a:visited { color: #ffff00; } .tblHeaders a:hover, div.tools a:hover, .tblFooters a:hover { color: #00ffff; } /* forbidden, no privileges */ .noPrivileges { color: #00ffff; font-weight: bold; } /* disabled text */ .disabled, .disabled a:link, .disabled a:active, .disabled a:visited { color: #999999; } .disabled a:hover { color: #999999; text-decoration: none; } tr.disabled td, td.disabled { background-color: #0c0c0c; color: #555555; } /** * login form */ .commented_column { border-bottom: 1px dashed #ffffff; } /******************************************************************************/ /* specific elements */ /* topmenu */ #topmenu a { text-shadow: 0 1px 0 #000000; } #topmenu .error { background: #111111; border: 0 !important; color: #555555; } .menucontainer { background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#232323)); background: -webkit-linear-gradient(top, #000000, #232323); background: -moz-linear-gradient(top, #000000, #232323); background: -ms-linear-gradient(top, #000000, #232323); background: -o-linear-gradient(top, #000000, #232323); border-top: 1px solid #555555; } /* default tab styles */ .tabactive { background: #000000 !important; } ul#topmenu2 a { display: block; margin: 7px 6px 7px; margin-left: 0; padding: 4px 10px; white-space: nowrap; border: 1px solid #222222; border-radius: 20px; -moz-border-radius: 20px; -webkit-border-radius: 20px; background: #0d0d0d; } fieldset.caution a { color: #00ffff; } fieldset.caution a:hover { color: #000000; background-color: #00ffff; } ul#topmenu ul { -moz-box-shadow: 1px 1px 6px #222222; -webkit-box-shadow: 2px 2px 3px #999999; box-shadow: 2px 2px 3px #999999; } ul#topmenu > li { border-right: 1px solid #000000; border-left: 1px solid #333333; border-bottom: 1px solid #333333; } /* default tab styles */ /* enabled hover/active tabs */ ul#topmenu2 a.tab:hover, ul#topmenu2 a.tabactive { background-color: #1a1a1a; border-radius: .3em; -moz-border-radius: .3em; -webkit-border-radius: .3em; text-decoration: none; } /* to be able to cancel the bottom border, use <li class="active"> */ ul#topmenu > li.active { /* border-bottom: 0pt solid #000000; */ border-right: 0; border-bottom-color: #000000; } /* end topmenu */ /* zoom search */ /* Calendar */ table.calendar td a:hover { background-color: #330033; } table.calendar th { background-color: #2c231c; } table.calendar td.selected { background-color: #003366; } /* end Calendar */ /* Heading */ #serverinfo { background: #777777; padding: .3em .9em; padding-left: 2.2em; text-shadow: 0 1px 0 #ffffff; width: 10000px; overflow: hidden; } #serverinfo .item { white-space: nowrap; color: #000000; } #goto_pagetop, #lock_page_icon, #page_settings_icon { padding: .25em; background: #777777; } #span_table_comment { font-weight: bold; font-style: italic; white-space: nowrap; margin-left: 10px; color: #292929; text-shadow: none; } #TooltipContainer { position: absolute; z-index: 99; width: 20em; height: auto; overflow: visible; visibility: hidden; background-color: #000033; color: #ff99ff; border: .1em solid #ffffff; padding: .5em; } /* user privileges */ #fieldset_add_user_login div.item { border-bottom: 1px solid silver; padding-bottom: .3em; margin-bottom: .3em; } /* end user privileges */ /* serverstatus */ .linkElem:hover { text-decoration: underline; color: #dca57e; cursor: pointer; } div#chartVariableSettings { border: 1px solid #222222; background-color: #191919; margin-left: 10px; } table#chartGrid div.monitorChart { background: #141414; overflow: hidden; border: none; } .popupContent { display: none; position: absolute; border: 1px solid #333333; margin: 0; padding: 3px; -moz-box-shadow: 2px 2px 3px #999999; -webkit-box-shadow: 2px 2px 3px #999999; box-shadow: 2px 2px 3px #999999; background-color: #000000; z-index: 2; } /* end serverstatus */ /* server variables */ #serverVariables .var-header { color: #ffffff; background: #0c0c0c; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#333333)); background: -webkit-linear-gradient(top, #000000, #333333); background: -moz-linear-gradient(top, #000000, #333333); background: -ms-linear-gradient(top, #000000, #333333); background: -o-linear-gradient(top, #000000, #333333); font-weight: bold; } /* end server variables */ p.notice { margin: 1.5em 0; border: 1px solid #ffffff; background-repeat: no-repeat; background-position: 10px 50%; padding: 10px 10px 10px 25px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; -moz-box-shadow: 0 1px 2px #000000 inset; -webkit-box-shadow: 0 1px 2px #000000 inset; box-shadow: 0 1px 2px #000000 inset; background: #aaaaaa; color: #2b0495; } p.notice a { color: #000000; text-decoration: underline; } /* table charting */ #resizer { border: 1px solid #c0c0c0; } /* end table charting */ /* querybox */ #serverstatus h3 { margin: 15px 0; font-weight: normal; color: #666666; font-size: 1.7em; } #sectionlinks { padding: 16px; background: #0c0c0c; border: 1px solid #555555; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; box-shadow: 0 1px 1px #000000 inset; -webkit-box-shadow: 0 1px 1px #000000 inset; -moz-box-shadow: 0 1px 1px #000000 inset; } #sectionlinks a, .buttonlinks a, a.button { font-weight: bold; text-shadow: 0 1px 0 #000000; line-height: 35px; margin-left: 7px; border: 1px solid #555555; padding: 3px 7px; color: #eeeeee !important; text-decoration: none; background: #222222; white-space: nowrap; border-radius: 20px; -webkit-border-radius: 20px; -moz-border-radius: 20px; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#070707), to(#272727)); background: -webkit-linear-gradient(top, #070707, #272727); background: -moz-linear-gradient(top, #070707, #272727); background: -ms-linear-gradient(top, #070707, #272727); background: -o-linear-gradient(top, #070707, #272727); } #sectionlinks a:hover, .buttonlinks a:hover, a.button:hover { background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#222222)); background: -webkit-linear-gradient(top, #000000, #222222); background: -moz-linear-gradient(top, #000000, #222222); background: -ms-linear-gradient(top, #000000, #222222); background: -o-linear-gradient(top, #000000, #222222); } div#tablefieldscontainer select { width: 100%; background: #000000; /* height: 12em; */ } textarea#sqlquery { width: 100%; /* height: 100%; */ -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; border: 1px solid #555555; padding: 5px; font-family: inherit; } /* end querybox */ /* main page */ #full_name_layer { position: absolute; padding: 2px; margin-top: -3px; z-index: 801; border-radius: 3px; border: solid 1px #777777; background: #000000; } /* end main page */ /* iconic view for ul items */ /* end iconic view for ul items */ #body_browse_foreigners { background: #0c0c0c; margin: .5em .5em 0 .5em; } #bodythemes img { border: .1em solid #ffffff; } .result_query div.sqlOuter { background: #1a1a1a; } #PMA_slidingMessage code.sql, div.sqlvalidate { background: #1a1a1a; } .group { border: 1px solid #666666; background: #0c0c0c; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-box-shadow: 2px 2px 5px #333333; -webkit-box-shadow: 2px 2px 5px #333333; box-shadow: 2px 2px 5px #333333; margin-bottom: 1em; padding-bottom: 1em; } .group h2 { background-color: #444444; padding: .1em .3em; margin-top: 0; color: #000000; font-size: 1.6em; font-weight: normal; text-shadow: 0 1px 0 #888888; -moz-box-shadow: 1px 1px 15px #666666 inset; -webkit-box-shadow: 1px 1px 15px #666666 inset; box-shadow: 1px 1px 15px #666666 inset; } div.upload_progress_bar_outer { border: 1px solid #ffffff; width: 202px; position: relative; margin: 0 auto 1em; color: #bbbbbb; } div.upload_progress_bar_inner { background-color: #222222; width: 0; height: 12px; margin: 1px; overflow: hidden; color: #ffffff; position: relative; } /** * Validation error message styles */ input[type=text].invalid_value, input[type=password].invalid_value, input[type=number].invalid_value, input[type=date].invalid_value, select.invalid_value, .invalid_value { background: #003333; } /** * Ajax notification styling */ .ajax_notification { top: 0; /** The notification needs to be shown on the top of the page */ position: fixed; margin-top: 0; margin-right: auto; margin-bottom: 0; margin-left: auto; padding: 5px; /** Keep a little space on the sides of the text */ width: 350px; z-index: 1100; /** If this is not kept at a high z-index, the jQueryUI modal dialogs (z-index: 1000) might hide this */ text-align: center; display: inline; left: 0; right: 0; background-repeat: no-repeat; background-position: 2%; border: 1px solid #1d48f6; } /* additional styles */ .ajax_notification { margin-top: 200px; background: #001a81; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; box-shadow: 0 5px 90px #777777; -moz-box-shadow: 0 5px 90px #777777; -webkit-box-shadow: 0 5px 90px #777777; } .exportoptions h3, .importoptions h3 { border-bottom: 1px #666666 solid; font-size: 110%; } .exportoptions #buttonGo, .importoptions #buttonGo { font-weight: bold; margin-left: 14px; border: 1px solid #555555; padding: 5px 12px; color: #eeeeee; text-decoration: none; border-radius: 12px; -webkit-border-radius: 12px; -moz-border-radius: 12px; text-shadow: 0 1px 0 #000000; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#333333)); background: -webkit-linear-gradient(top, #000000, #333333); background: -moz-linear-gradient(top, #000000, #333333); background: -ms-linear-gradient(top, #000000, #333333); background: -o-linear-gradient(top, #000000, #333333); cursor: pointer; } .format_specific_options { border: 1px solid #666666; margin: 7px 0; padding: 3px; } .export_sub_options h4 { border-bottom: 1px #666666 solid; } /** * Import styles only */ #popup_background { display: none; position: fixed; _position: absolute; /* hack for IE6 */ width: 100%; height: 100%; top: 0; left: 0; background: #ffffff; z-index: 1000; overflow: hidden; } /** * Table structure styles */ #move_columns_dialog li { background: #2c231c; border: 1px solid #555555; color: #ffffff; font-weight: bold; margin: .4em; padding: .2em; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } .config-form ul.tabs li { float: left; margin-bottom: -1px; } .config-form ul.tabs li a { display: block; margin: .1em .2em 0; white-space: nowrap; text-decoration: none; border: 1px solid #2a2a2a; border-bottom: 1px solid #555555; } .config-form ul.tabs li a { padding: 7px 10px; -webkit-border-radius: 5px 5px 0 0; -moz-border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0; background: #0d0d0d; color: #aaaaaa; text-shadow: 0 1px 0 #000000; } .config-form ul.tabs li a:hover, .config-form ul.tabs li a:active { background: #1a1a1a; } .config-form ul.tabs li.active a { background-color: #000000; margin-top: 1px; color: #ffffff; text-shadow: none; border-color: #555555; border-bottom: 1px solid #000000; } .config-form fieldset p { margin: 0; padding: .5em; background: #000000; border-top: 0; } .config-form fieldset .errors { /* form error list */ margin: 0 -2px 1em; padding: .5em 1.5em; background: #041526; border: 0 #37c7c7 solid; border-width: 1px 0; list-style: none; font-family: sans-serif; font-size: small; } .config-form fieldset .inline_errors { /* field error list */ margin: .3em .3em .3em; margin-left: 0; padding: 0; list-style: none; color: #65ffff; font-size: small; } .config-form fieldset .disabled-notice { font-size: 80%; text-transform: uppercase; color: #11ffff; cursor: help; } .config-form fieldset th small { display: block; font-weight: normal; font-family: sans-serif; font-size: x-small; color: #bbbbbb; } .config-form fieldset th, .config-form fieldset td { border-top: 1px #2a2a2a solid; border-right: none; } fieldset .group-header th { background: #2a2a2a; } fieldset .disabled-field th, fieldset .disabled-field th small, fieldset .disabled-field td { color: #999999; background-color: #222222; } .config-form .lastrow { border-top: 1px #ffffff solid; } .config-form .lastrow { background: #2c231c; padding: .5em; text-align: center; } /* form elements */ .config-form .custom { /* customized field */ background: #000033; } .config-form span.checkbox.custom { padding: 1px; border: 1px #12136f solid; background: #000033; } .config-form .field-error { border-color: #55eeee !important; } .config-form input[type="text"], .config-form input[type="password"], .config-form input[type="number"], .config-form select, .config-form textarea { border: 1px #585955 solid; height: auto; } .config-form input[type="text"]:focus, .config-form input[type="password"]:focus, .config-form input[type="number"]:focus, .config-form select:focus, .config-form textarea:focus { border: 1px #998900 solid; background: #080400; } .config-form .field-comment-mark { font-family: serif; color: #ffff88; cursor: help; padding: 0 .2em; font-weight: bold; font-style: italic; } .config-form .field-comment-warning { color: #55ffff; } #placeholder div.button { font-size: smaller; color: #666666; background-color: #111111; padding: 2px; } .toggleButton { position: relative; cursor: pointer; font-size: .8em; text-align: center; line-height: 1.4em; height: 1.55em; overflow: hidden; border-right: .1em solid #777777; border-left: .1em solid #777777; -webkit-border-radius: .3em; -moz-border-radius: .3em; border-radius: .3em; } .toggleButton .toggleOn { color: #000000; padding: 0 1em; text-shadow: 0 0 .2em #ffffff; } #table_name_col_no { position: fixed; top: 55px; width: 100%; background: #000000; } #placeholder { position: relative; border: 1px solid #555555; float: right; overflow: hidden; } .colborder_active { border-right: 2px solid #55bbbb; } .modal-copy input { display: block; width: 100%; margin-top: 1.5em; padding: .3em 0; } .cCpy { background: #cccccc; color: #000000; font-weight: bold; margin: .1em; padding: .3em; position: absolute; text-shadow: -1px -1px #ffffff; -moz-box-shadow: 0 0 .7em #ffffff; -webkit-box-shadow: 0 0 .7em #ffffff; box-shadow: 0 0 .7em #ffffff; -moz-border-radius: .3em; -webkit-border-radius: .3em; border-radius: .3em; } .cPointer { height: 20px; margin-left: -5px; /* must be minus half of its width */ margin-top: -10px; position: absolute; width: 10px; } .tooltip { background: #cccccc !important; opacity: .8 !important; border: 1px solid #ffffff !important; -moz-border-radius: .3em !important; -webkit-border-radius: .3em !important; border-radius: .3em !important; text-shadow: -1px -1px #ffffff !important; font-size: .8em !important; font-weight: bold !important; padding: 1px 3px !important; } .tooltip * { background: none !important; color: #000000 !important; } .coldrop { cursor: pointer; height: 16px; margin-left: .3em; margin-top: .3em; position: absolute; width: 16px; } .coldrop:hover, .coldrop-hover { background-color: #666666; } .cList { background: #111111; border: solid 1px #666666; position: absolute; -moz-box-shadow: 0 .2em .5em #cccccc; -webkit-box-shadow: 0 .2em .5em #cccccc; box-shadow: 0 .2em .5em #cccccc; } .cList .lDiv div:hover { background: #222222; cursor: pointer; } .showAllColBtn { border-bottom: solid 1px #666666; border-top: solid 1px #666666; cursor: pointer; font-size: .9em; font-weight: bold; padding: .35em 1em; text-align: center; } .showAllColBtn:hover { background: #222222; } .navigation { margin: .8em 0; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#111111), to(#333333)); background: -webkit-linear-gradient(top, #111111, #333333); background: -moz-linear-gradient(top, #111111, #333333); background: -ms-linear-gradient(top, #111111, #333333); background: -o-linear-gradient(top, #111111, #333333); } .navigation_separator { color: #666666; display: inline-block; font-size: 1.5em; text-align: center; height: 1.4em; width: 1.2em; text-shadow: 1px 0 #000000; } .navigation input[type=submit]:hover, .navigation input.edit_mode_active { color: #000000; cursor: pointer; text-shadow: none; background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#aaaaaa)); background: -webkit-linear-gradient(top, #cccccc, #aaaaaa); background: -moz-linear-gradient(top, #cccccc, #aaaaaa); background: -ms-linear-gradient(top, #cccccc, #aaaaaa); background: -o-linear-gradient(top, #cccccc, #aaaaaa); } .cEdit input[type=text] { background: #000000; height: 100%; margin: 0; padding: 0; } .cEdit .edit_area { background: #000000; border: 1px solid #666666; min-width: 10em; padding: .3em .5em; } .cEdit .cell_edit_hint { color: #aaaaaa; font-size: .8em; margin: .3em .2em; } .cEdit .edit_box_posting { padding-right: 1.5em; } .cEdit .edit_area_loading { height: 10em; } .cEdit .goto_link { background: #111111; color: #aaaaaa; padding: .2em .3em; } .saving_edited_data { padding-left: 20px; } /* css for timepicker */ input.btn { color: #cccccc; background-color: #2f231f; } .ui-dialog fieldset legend a { color: #dca57e; } .report-data { height: 13em; overflow: scroll; width: 570px; border: solid 1px; background: #ffffff; padding: 2px; } div#page_content div#tableslistcontainer table.data { border-top: 0.1px solid #111111; } table.show_create td { border-right: 1px solid #444444; } /* Console styles */ #pma_console .toolbar { position: relative; background: #333333; border-top: solid 1px #555555; cursor: n-resize; } #pma_console .toolbar.collapsed:not(:hover) { display: inline-block; border-top-right-radius: 3px; border-right: solid 1px #555555; } #pma_console .message span.action:hover, #pma_console .toolbar .button:hover, #pma_console .switch_button:hover, #pma_console .toolbar .button.active { background: #222222; } #pma_console .content { overflow-x: hidden; overflow-y: auto; margin-bottom: -65px; border-top: solid 1px #555555; background: #000000; padding-top: .4em; } #pma_console .content.console_dark_theme { background: #ffffff; color: #000000; } #pma_console .content.console_dark_theme .CodeMirror-wrap { background: #ffffff; color: #000000; } #pma_console .content.console_dark_theme .action_content { color: #ffffff; } #pma_console .content.console_dark_theme .message { border-color: #c8c4be; } #pma_console .content.console_dark_theme .CodeMirror-cursor { border-color: #000000; } #pma_console .content.console_dark_theme .cm-keyword { color: #216ca0; } #pma_console .message { border-bottom: solid 1px #333333; padding-bottom: .2em; } #pma_console .message:hover:before { color: #883300; font-weight: bold; } #pma_console .message.failed:before, #pma_console .message.failed.expanded:before, #pma_console .message.failed:hover:before { content: "="; color: #66bbbb; } #pma_console .message .action_content { position: absolute; bottom: 100%; background: #333333; border: solid 1px #555555; border-top-left-radius: 3px; } #pma_console .message .text { background: #000000; } #pma_console .message .bookmark_label { padding: 0 4px; top: 0; background: #cc9966; color: #000000; border-radius: 3px; } #pma_console .message .bookmark_label.shared { background: #cc6699; } #pma_console .mid_layer { height: 100%; width: 100%; position: absolute; top: 0; /* For support IE8, this layer doesn't use filter:opacity or opacity, js code will fade this layer opacity to 0.18(using animation) */ background: #999999; display: none; cursor: pointer; z-index: 200; } #pma_console .card { position: absolute; width: 94%; height: 100%; min-height: 48px; left: 100%; top: 0; border-left: solid 1px #666666; z-index: 300; transition: left 0.2s; -ms-transition: left 0.2s; -webkit-transition: left 0.2s; -moz-transition: left 0.2s; } #pma_console .card.show { left: 6%; box-shadow: -2px 1px 4px -1px #666666; } #pma_bookmarks .content.add_bookmark .options { margin-left: 1.4em; padding-bottom: .4em; margin-bottom: .4em; border-bottom: solid 1px #333333; } /* PMA drop-improt style */ .pma_drop_handler { display: none; position: fixed; top: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.6); height: 100%; z-index: 999; color: #ffffff; font-size: 30pt; text-align: center; padding-top: 20%; } .pma_sql_import_status { display: none; position: fixed; bottom: 0; right: 25px; width: 400px; border: 1px solid #666666; background: #0c0c0c; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-box-shadow: 2px 2px 5px #333333; -webkit-box-shadow: 2px 2px 5px #333333; box-shadow: 2px 2px 5px #333333; } .pma_sql_import_status h2, .pma_drop_result h2 { background-color: #444444; padding: .1em .3em; margin-top: 0; margin-bottom: 0; color: #000000; font-size: 1.6em; font-weight: normal; text-shadow: 0 1px 0 #888888; -moz-box-shadow: 1px 1px 15px #666666 inset; -webkit-box-shadow: 1px 1px 15px #666666 inset; box-shadow: 1px 1px 15px #666666 inset; } .pma_sql_import_status div li { padding: 8px 10px; border-bottom: 1px solid #444444; color: rgb(107, 241, 241); background: #ffffff; } .pma_sql_import_status div li .filesize { float: right; } .pma_sql_import_status h2 .minimize { float: right; margin-right: 5px; padding: 0 10px; } .pma_sql_import_status h2 .minimize:hover, .pma_sql_import_status h2 .close:hover, .pma_drop_result h2 .close:hover { background: rgba(100, 106, 106, 0.78); cursor: pointer; } .pma_drop_file_status { color: #dca57e; } .pma_drop_result { position: fixed; top: 10%; left: 20%; width: 60%; background: #ffffff; min-height: 300px; z-index: 800; -webkit-box-shadow: 0 0 15px #666666; border-radius: 10px; cursor: move; } .dependencies_box { background-color: #ffffff; border: 3px ridge #000000; } span.drag_icon { display: inline-block; background-position: center center; background-repeat: no-repeat; width: 1em; height: 3em; cursor: move; } /* styles for sortable tables created with tablesorter jquery plugin */ th.header { cursor: pointer; color: #dca57e; } #gis_data_editor { background: #2f231f; padding: 15px; min-height: 500px; } /* FILE: navigation.css.php */ /******************************************************************************/ /* Navigation */ #pma_navigation { width: 240px; position: fixed; top: 0; left: 0; height: 100%; color: #ffffff; z-index: 800; } /******************************************************************************/ /* specific elements */ #pma_navigation div.pageselector { text-align: center; margin: 0; margin-left: 0.75em; border-left: 1px solid #999999; } /* Navigation tree*/ #pma_navigation_content, #pma_navigation_header { background-color: #000; } #pma_navigation_tree { margin: 0; margin-left: 5px; overflow: hidden; color: #bbbbbb; background-color: #000; height: 74%; position: relative; } #pma_navigation_db_select select { -webkit-border-radius: 2px; border-radius: 2px; border: 1px solid #444444; border-top: 1px solid #444444; color: #cccccc; padding: 4px 6px; margin: 0 0 0; width: 92%; font-size: 1.11em; } #pma_navigation_tree a { color: #ffffff; } #pma_navigation_tree li.activePointer { color: #ffffff; background-color: #222222; } #pma_navigation_tree li.selected { color: #ffffff; background-color: #222222; } #pma_navigation_tree div.block i { /* Top and right segments for the tree element connections */ display: block; border-left: 1px solid #999999; border-bottom: 1px solid #999999; position: relative; z-index: 0; } #pma_navigation_tree div.block b { /* Bottom segment for the tree element connections */ display: block; height: 0.75em; bottom: 0; left: 0.75em; border-left: 1px solid #999999; } #pma_navigation_tree .list_container { border-left: 1px solid #999999; margin-left: 0.75em; padding-left: 0.75em; } #pma_navigation_tree .last > .list_container { border-left: 0 solid #999999; } /* Fast filter */ li.fast_filter { padding-left: 0.75em; margin-left: 0.75em; padding-right: 35px; border-left: 1px solid #999999; list-style: none; } li.fast_filter span { position: relative; right: 1.5em; padding: 0.2em; cursor: pointer; font-weight: bold; color: #77ffff; font-size: 0.7em; } /* Resize handler */ #pma_navigation_resizer { width: 3px; height: 100%; background-color: #555555; cursor: col-resize; position: fixed; top: 0; left: 240px; z-index: 801; } #pma_navigation_collapser { width: 20px; height: 22px; line-height: 22px; background: #111111; color: #aaaaaa; font-weight: bold; position: fixed; top: 0; left: 240px; text-align: center; cursor: pointer; z-index: 800; text-shadow: 0 1px 0 #000000; filter: dropshadow(color=#000000, offx=0, offy=1); border: 1px solid #777777; } .pma_quick_warp .drop_button { padding: 0 .3em; border: 1px solid #222222; border-radius: .3em; background: #0d0d0d; cursor: pointer; } .pma_quick_warp .drop_list:hover .drop_button { background: #000000; } .pma_quick_warp .drop_list ul { position: absolute; margin: 0; padding: 0; overflow: hidden; overflow-y: auto; list-style: none; background: #000000; border: 1px solid #222222; border-radius: .3em; border-top-right-radius: 0; border-bottom-right-radius: 0; box-shadow: 0 0 5px #333333; top: 100%; left: 3px; right: 0; display: none; z-index: 802; } .pma_quick_warp .drop_list li:hover { background: #0d0d0d; } /* FILE: pmd.css.php */ /* Designer */ .input_tab { background-color: #59381e; color: #ffffff; } #canvas { background-color: #000000; color: #ffffff; } .pmd_tab { background-color: #000000; color: #ffffff; border-collapse: collapse; border: 1px solid #555555; z-index: 1; -moz-user-select: none; } .pmd_tab .header { background-repeat: repeat-x; } .tab_zag_2 { background-repeat: repeat-x; text-align: center; cursor: move; padding: 1px; font-weight: bold; } .tab_field { background: #000000; color: #ffffff; cursor: default; } .tab_field_2 { background-color: #330033; color: #ffffff; background-repeat: repeat-x; cursor: default; } .tab_field_3 { background-color: #001919; /*#221100*/ color: #ffffff; cursor: default; } #pmd_hint { white-space: nowrap; position: absolute; background-color: #660066; color: #ffffff; z-index: 3; border: #ff3399 solid 1px; display: none; } .pmd_Tabs { cursor: default; color: #ffaa44; white-space: nowrap; text-decoration: none; text-indent: 3px; font-weight: bold; margin-left: 2px; text-align: left; background-color: #000000; border: #333333 solid 1px; } .pmd_Tabs2 { cursor: default; color: #ffaa44; background: #001166; text-indent: 3px; font-weight: bold; white-space: nowrap; text-decoration: none; border: #666600 solid 1px; text-align: left; } .owner { font-weight: normal; color: #777777; } .select_all { vertical-align: top; padding-left: 2px; padding-right: 2px; cursor: default; width: 1px; color: #ffffff; background-repeat: repeat-x; } .small_tab { vertical-align: top; background-color: #ff9b15; color: #000000; cursor: default; text-align: center; font-weight: bold; padding-left: 2px; padding-right: 2px; width: 1px; text-decoration: none; } .small_tab2 { vertical-align: top; color: #000000; background-color: #006699; cursor: default; padding-left: 2px; padding-right: 2px; text-align: center; font-weight: bold; width: 1px; text-decoration: none; } .small_tab_pref { background-repeat: repeat-x; text-align: center; width: 1px; } .small_tab_pref2 { vertical-align: top; color: #000000; background-color: #006699; cursor: default; text-align: center; font-weight: bold; width: 1px; text-decoration: none; } .butt { border: #bb8855 solid 1px; font-weight: bold; height: 19px; width: 70px; background-color: #000000; color: #ffffff; vertical-align: baseline; } .L_butt2_2 { padding: 0; border: #ff6633 solid 1px; background: #001166; color: #ffffff; text-decoration: none; vertical-align: middle; cursor: default; } /* ---------------------------------------------------------------------------*/ #osn_tab { position: absolute; background-color: #000000; color: #ffffff; } .pmd_header { background-color: #15110f; color: #ffffff; text-align: center; font-weight: bold; margin: 0; padding: 0; background-position: top; background-repeat: repeat-x; border-right: #666666 solid 1px; border-left: #666666 solid 1px; height: 28px; z-index: 101; width: 100%; position: fixed; } .pmd_header a, .pmd_header span { display: block; float: left; margin: 3px 1px 4px; height: 20px; border: 1px dotted #000000; } a.M_butt_Selected_down_IE, a.M_butt_Selected_down { border: 1px solid #3f3f44; background-color: #660066; color: #ffffff; } a.M_butt_Selected_down_IE:hover, a.M_butt_Selected_down:hover, a.M_butt:hover { border: 1px solid #ff6633; background-color: #001166; color: #ffffff; } #layer_menu { z-index: 98; position: relative; float: right; background-color: #15110f; border: #666666 solid 1px; } #layer_menu_sizer { cursor: ew-resize; } a.trigger { position: fixed; text-decoration: none; top: 60px; right: 0; color: #000000; padding: 10px 40px 10px 15px; border: 1px solid #bbbbbb; display: block; z-index: 102; } a.trigger:hover { color: #f7f7f7; border: 1px solid #666666; } a.active.trigger { z-index: 999; } .toggle_container .block { background-color: #241b17; border-top: 1px solid #666666; } .history_table { text-align: center; background-color: #666633; cursor: pointer; } .history_table2 { text-align: center; background-color: #241b17; } .side-menu { float: left; position: fixed; width: auto; height: auto; background: #101010; border: 1px solid grey; overflow: hidden; z-index: 50; padding: 2px; } #name-panel { border-bottom: 1px solid grey; text-align: center; background: #101010; width: 100%; font-size: 1.2em; padding: 10px; font-weight: bold; } .insertRowTable .CodeMirror { height: 9em; width: 24em; border: 1px solid #565656; } span.cm-keyword, span.cm-statement-verb { color: #66ff66; } span.cm-variable { color: #000000; } span.cm-comment { color: #7f7fff; } span.cm-mysql-string { color: #ff7fff; } span.cm-operator { color: #ff00ff; } span.cm-mysql-word { color: #000000; } span.cm-builtin { color: #00ffff; } span.cm-variable-2 { color: #0066ff; } span.cm-variable-3 { color: #ffff00; } span.cm-separator { color: #ff00ff; } span.cm-number { color: #008080; } .autocomplete-column-hint { display: inline-block; float: right; color: #999999; margin-left: 1em; } /* FILE: jqplot.css.php */ /* jqPlot */ /*rules for the plot target div. These will be cascaded down to all plot elements according to css rules*/ .jqplot-target { position: relative; color: #dddddd; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 1em; /* height: 300px; width: 590px;*/ } .jqplot-meterGauge-tick { font-size: 0.75em; color: #666666; } .jqplot-meterGauge-label { font-size: 1em; color: #666666; } table.jqplot-table-legend, table.jqplot-cursor-legend { background-color: rgba(0, 0, 0, 0.6); border: 1px solid #333333; position: absolute; font-size: 0.75em; } div.jqplot-table-legend-swatch-outline { border: 1px solid #333333; padding: 1px; } table.jqplot-cursor-tooltip { border: 1px solid #333333; font-size: 0.75em; } .jqplot-cursor-tooltip { border: 1px solid #333333; font-size: 0.75em; white-space: nowrap; background: rgba(47, 47, 47, 0.5); padding: 1px; } .jqplot-highlighter-tooltip, .jqplot-canvasOverlay-tooltip { border: 1px solid #333333; font-size: 0.75em; white-space: nowrap; background: rgba(47, 47, 47, 0.5); padding: 1px; } div.jqplot-bubble-label { font-size: 0.8em; /* background: rgba(90%, 90%, 90%, 0.15);*/ padding-left: 2px; padding-right: 2px; color: rgb(20%, 20%, 20%); } div.jqplot-bubble-label.jqplot-bubble-label-highlight { background: rgba(90%, 90%, 90%, 0.7); } div.jqplot-noData-container { text-align: center; background-color: rgba(96%, 96%, 96%, 0.3); } ul.resizable-menu li:hover { background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#1a1a1a)); background: -webkit-linear-gradient(top, #000000, #1a1a1a); background: -moz-linear-gradient(top, #000000, #1a1a1a); background: -ms-linear-gradient(top, #000000, #1a1a1a); background: -o-linear-gradient(top, #000000, #1a1a1a); } ul.resizable-menu li:hover ul, ul.resizable-menu .submenuhover ul { display: block; background: #000000; } ul.resizable-menu ul li { width: 100%; } /* Icon sprites */ .icon { margin: 0; margin-left: .3em; padding: 0 !important; width: 16px; height: 16px; background-repeat: no-repeat !important; background-position: top left !important; } /* ***********END MOZ DOCUMENT STYLES***********/ }
0.386879
0.038538
* { box-sizing: border-box; font-family: 'Raleway', sans-serif; } html { background-image: linear-gradient(#00c6ff, #0072ff); min-height: 800px; } .head { display: flex; color: white; padding: 30px; width: 90%; text-align: center; margin-left: auto; margin-right: auto; justify-content: center; text-shadow: 2px 2px 2px gray; } #brand { font-size: 12vw; margin: none; display: inline; color: #ffa939; } .numInput { color: white; text-shadow: 2px 2px 2px gray; } #warning { color: red; text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; } #warningMsg { grid-column: 2/3; grid-row: 1/2; } .alldivs { display: flex; width: 80px; height: 80px; justify-content: center; align-items: center; border-radius: 35px; margin: 5px; padding: 5px; text-align: center; box-shadow: 3px 3px 5px gray; } .range { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; } .fizz { background-image: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(241,232,217,1) 56%, rgba(255,140,0,1) 100%); border: 2px solid gray; } .buzz { background-image: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(212,226,216,1) 56%, rgba(100,145,99,1) 100%); border: 2px solid gray; } .fizzbuzz { background-image: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(232,212,209,1) 56%, rgba(255,55,0,1) 100%); border: 2px solid gray; } .number { background-image: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(228,228,228,1) 100%); border: 2px solid gray; } /* #rangeBtn { display: block; /* flex-wrap: wrap; justify-content: space-between; */ input { width: 100px; height: 30px; border: 2px solid black; border-radius: 10px; font-size: 16px; padding: 10px; text-align: center; } .range1, .range2, .values1, .values2 { margin: 5px 10px 5px 10px; } .values { display: flex; flex-wrap: wrap; justify-content: center; } .buttons { display: flex; flex-direction: column; grid-column: 1/2; grid-row: 2/3; justify-content: flex-start; align-items: center; } #btn1, #btn2, #btn3, #btn4, #btn5 { width: 110px; background-color: white; border-radius: 35px; color: rgba(255,140,0,1); font-size: 14px; font-family: Helvetica Neue; font-weight: 900; padding: 5px; border: 4px solid rgba(255,140,0,1); box-shadow: 3px 3px 3px black; } #btn1:hover, #btn2:hover, #btn3:hover, #btn4:hover, #btn5:hover { background-color: rgba(255,140,0,1); color: white; border: 4px solid white; cursor: pointer; box-shadow: 4px 4px 10px 3px rgba(0,0,0,0.71); } #generate { background-color: rgba(255,140,0,1); border-radius: 35px; color: white; font-size: 16px; font-family: Helvetica Neue; font-weight: 900; padding: 10px; border: 4px solid white; justify-items: center; box-shadow: 3px 3px 3px black; } #generate:hover { background-color: white; color: rgba(255,140,0,1); border: 4px solid rgba(255,140,0,1); cursor: pointer; box-shadow: 4px 4px 10px 3px rgba(0,0,0,0.71); } .generateBtn { display: flex; justify-content: center; margin: 20px; } #filter-text { margin: 10px 0px 0px 0px; color: white; text-shadow: 2px 2px 2px gray; } #fizzbuzz-cont { display: flex; flex-wrap: wrap; margin-right: auto; margin-left: auto; justify-content: center; align-content: flex-start; grid-column: 2/3; grid-row: 1/3; } .main-cont { display: grid; grid-template-columns: 2fr 5fr; grid-template-rows: auto 1fr; grid-gap: 10px; } footer { color: white; grid-column: 1/3; text-align: center; text-shadow: 2px 2px 2px gray; } @media screen and (max-width: 576px) { .main-cont { display: block; } .values { display: flex; flex-wrap: wrap; align-items: center; justify-content: left; } #rangeBtn { display: flex; flex-wrap: wrap; justify-content: left; } .buttons { flex-direction: row; flex-wrap: wrap; justify-content: center; } .generateBtn { margin-top: 20px; } }
styles/fizzbuzz.css
* { box-sizing: border-box; font-family: 'Raleway', sans-serif; } html { background-image: linear-gradient(#00c6ff, #0072ff); min-height: 800px; } .head { display: flex; color: white; padding: 30px; width: 90%; text-align: center; margin-left: auto; margin-right: auto; justify-content: center; text-shadow: 2px 2px 2px gray; } #brand { font-size: 12vw; margin: none; display: inline; color: #ffa939; } .numInput { color: white; text-shadow: 2px 2px 2px gray; } #warning { color: red; text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; } #warningMsg { grid-column: 2/3; grid-row: 1/2; } .alldivs { display: flex; width: 80px; height: 80px; justify-content: center; align-items: center; border-radius: 35px; margin: 5px; padding: 5px; text-align: center; box-shadow: 3px 3px 5px gray; } .range { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; } .fizz { background-image: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(241,232,217,1) 56%, rgba(255,140,0,1) 100%); border: 2px solid gray; } .buzz { background-image: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(212,226,216,1) 56%, rgba(100,145,99,1) 100%); border: 2px solid gray; } .fizzbuzz { background-image: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(232,212,209,1) 56%, rgba(255,55,0,1) 100%); border: 2px solid gray; } .number { background-image: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(228,228,228,1) 100%); border: 2px solid gray; } /* #rangeBtn { display: block; /* flex-wrap: wrap; justify-content: space-between; */ input { width: 100px; height: 30px; border: 2px solid black; border-radius: 10px; font-size: 16px; padding: 10px; text-align: center; } .range1, .range2, .values1, .values2 { margin: 5px 10px 5px 10px; } .values { display: flex; flex-wrap: wrap; justify-content: center; } .buttons { display: flex; flex-direction: column; grid-column: 1/2; grid-row: 2/3; justify-content: flex-start; align-items: center; } #btn1, #btn2, #btn3, #btn4, #btn5 { width: 110px; background-color: white; border-radius: 35px; color: rgba(255,140,0,1); font-size: 14px; font-family: Helvetica Neue; font-weight: 900; padding: 5px; border: 4px solid rgba(255,140,0,1); box-shadow: 3px 3px 3px black; } #btn1:hover, #btn2:hover, #btn3:hover, #btn4:hover, #btn5:hover { background-color: rgba(255,140,0,1); color: white; border: 4px solid white; cursor: pointer; box-shadow: 4px 4px 10px 3px rgba(0,0,0,0.71); } #generate { background-color: rgba(255,140,0,1); border-radius: 35px; color: white; font-size: 16px; font-family: Helvetica Neue; font-weight: 900; padding: 10px; border: 4px solid white; justify-items: center; box-shadow: 3px 3px 3px black; } #generate:hover { background-color: white; color: rgba(255,140,0,1); border: 4px solid rgba(255,140,0,1); cursor: pointer; box-shadow: 4px 4px 10px 3px rgba(0,0,0,0.71); } .generateBtn { display: flex; justify-content: center; margin: 20px; } #filter-text { margin: 10px 0px 0px 0px; color: white; text-shadow: 2px 2px 2px gray; } #fizzbuzz-cont { display: flex; flex-wrap: wrap; margin-right: auto; margin-left: auto; justify-content: center; align-content: flex-start; grid-column: 2/3; grid-row: 1/3; } .main-cont { display: grid; grid-template-columns: 2fr 5fr; grid-template-rows: auto 1fr; grid-gap: 10px; } footer { color: white; grid-column: 1/3; text-align: center; text-shadow: 2px 2px 2px gray; } @media screen and (max-width: 576px) { .main-cont { display: block; } .values { display: flex; flex-wrap: wrap; align-items: center; justify-content: left; } #rangeBtn { display: flex; flex-wrap: wrap; justify-content: left; } .buttons { flex-direction: row; flex-wrap: wrap; justify-content: center; } .generateBtn { margin-top: 20px; } }
0.359364
0.159348
body { background: linear-gradient(#005082, #00a8cc); background-repeat: no-repeat; background-attachment: fixed; color: white; } .header { display: flex; justify-content: center; } .header__tittle { font-size: larger; } .main_container { display: flex; flex-direction: column; align-items: center; } .main_container__card { display: flex; width: 70%; justify-content: space-around; align-items: center; background-color: rgba(0, 0, 0, .2); border: solid 1px white; border-radius: 15px; padding: 15px; padding-top: 25px; } .main_container__img { margin-top: -30px; } .main_container__card--title { display: flex; flex-direction: column; align-items: center; } .main_container__card img { width: 50px; } .main_container__img img { width: 80px; } .container_options { margin-top: 15px; display: flex; flex-direction: column; justify-content: center; width: 70%; padding: 15px; border: solid 1px white; border-radius: 15px; background-color: rgba(0, 0, 0, .2); } .container_options_img { display: flex; justify-content: space-around; } .container_options__option img { transition: transform .5s; /* Animation */ width: 60px; } .container_options__option :hover { transform: scale(1.5); } .instructions { display: flex; justify-content: center; height: 35px; } button { margin: 10px; width: 150px; background-color: #47c721; outline: none; border: solid 1px transparent; border-radius: 15px; color: white; transition: transform .5s; height: 28px; } button:hover { transform: scale(1.2); color: black; } .container_options__button { background-color: transparent; background-size: cover; height: 50px; width: 50px; } #puntos_usuario { margin-top: 2px; font-size: 25px; font-weight: bolder; } #puntos_cpu { margin-top: 2px; font-size: 25px; font-weight: bolder; }
index.css
body { background: linear-gradient(#005082, #00a8cc); background-repeat: no-repeat; background-attachment: fixed; color: white; } .header { display: flex; justify-content: center; } .header__tittle { font-size: larger; } .main_container { display: flex; flex-direction: column; align-items: center; } .main_container__card { display: flex; width: 70%; justify-content: space-around; align-items: center; background-color: rgba(0, 0, 0, .2); border: solid 1px white; border-radius: 15px; padding: 15px; padding-top: 25px; } .main_container__img { margin-top: -30px; } .main_container__card--title { display: flex; flex-direction: column; align-items: center; } .main_container__card img { width: 50px; } .main_container__img img { width: 80px; } .container_options { margin-top: 15px; display: flex; flex-direction: column; justify-content: center; width: 70%; padding: 15px; border: solid 1px white; border-radius: 15px; background-color: rgba(0, 0, 0, .2); } .container_options_img { display: flex; justify-content: space-around; } .container_options__option img { transition: transform .5s; /* Animation */ width: 60px; } .container_options__option :hover { transform: scale(1.5); } .instructions { display: flex; justify-content: center; height: 35px; } button { margin: 10px; width: 150px; background-color: #47c721; outline: none; border: solid 1px transparent; border-radius: 15px; color: white; transition: transform .5s; height: 28px; } button:hover { transform: scale(1.2); color: black; } .container_options__button { background-color: transparent; background-size: cover; height: 50px; width: 50px; } #puntos_usuario { margin-top: 2px; font-size: 25px; font-weight: bolder; } #puntos_cpu { margin-top: 2px; font-size: 25px; font-weight: bolder; }
0.414662
0.083479
div.sidearrows{ display:none; } img { image-orientation: from-image; } /* boardlist gets all scrunched on small screens */ @media screen and (max-width: 600px) { header, img.board_image { margin-top: 5em; } } @media screen and (min-width: 700px) { header, img.board_image { margin-top: 3em; } } html, body { max-width: 100%!important; overflow-x: hidden!important; } .post-image{ max-width: 94%!important; } select{ float:right; } div.pages{ margin:0!important; padding: 0!important; } div.boardlist.bottom { text-align: center!important; display: none!important; } img.banner, img.board_image { max-width: 100vw; } .pintro{ width: 98%!important; } .bar { display: table!important; position: fixed; width: 100%; left: 0px; z-index: 3; background-color: #D6DAF0; border-color: #B7C5D9; } .bar > :not(script) { display: table-cell; vertical-align: middle; } .bar.top { text-align: center; top: 0px; border-bottom: 1px solid #B7C5D9; } .bar.bottom { bottom: 0px; border-top: 1px solid #333333; /*background-color: #333333 ;*/ } /*homepage banner*/ div.lain_banner{ margin:auto; position: absolute; } /* === GENERAL TAG SETTINGS === */ /* Page Layouts */ body { background: #EEF2FF url('img/fade-blue.png') repeat-x 50% 0%; color: black; font-family: arial,helvetica,sans-serif; font-size: 12px; margin: 0 4px; padding-left: 4px; padding-right: 4px; } main, aside, section { display: block; margin: 0 auto; width: 100%; } main { max-width: 1110px; } /* Tables */ table { margin: auto; } table.board-list-table { width: 100%; } table tbody td { margin: 0; padding: 4px 15px 4px 4px; text-align: left; } table thead th { border: 1px solid #000333; padding: 4px 15px 5px 5px; background: #98E; color: #000333; text-align: left; white-space: nowrap; } table tbody tr:nth-of-type( even ) { background-color: transparent!important; } tr{ } td.minimal,th.minimal { width: 1%; white-space: nowrap; } table.mod.config-editor { font-size: 9pt; width: 100%; } table.mod.config-editor td { text-align: left; padding: 5px; border-bottom: 1px solid #98e; } table.mod.config-editor input[type="text"] { width: 98%; } .longtable p { margin: 0; } /* Uncategorized */ #post-form-outer { text-align: center; } #post-form-inner { display: inline-block; } .post-table, .post-table-options, textarea { width: 100%; } #post-form-inner .post-table tr { background-color: transparent; } .post-table th, .post-table-options th { width: 85px; } .post-table-options { display: none; } .required-field-cell { vertical-align: top; } .show-options-cell { text-align: right; } .hidden { display:none; } a,a:visited { text-decoration: underline; color: #34345C; } a:hover,.intro a.post_no:hover { color: #ff0000; } a.post_no { text-decoration: none; margin: 0; padding: 0; } .intro a.post_no { color: inherit; } .intro a.post_no,p.intro a.email,p.intro a.post_anchor { margin: 0; } .intro a.email span.name { color: #34345C; } .intro a.email:hover span.name { color: #ff0000; } .intro label { display: inline; } .intro time,p.intro a.ip-link,p.intro a.capcode { direction: ltr; unicode-bidi: embed; } h2 { color: #AF0A0F; font-size: 11pt; margin: 0; padding: 0; } header { margin: 3em 0; } h1 { font-family: tahoma; letter-spacing: -2px; font-size: 20pt; margin: 0; } header div.subtitle,h1 { color: #AF0A0F; text-align: center; } header div.subtitle { font-size: 8pt; } form table { margin: auto; } form table input { height: auto; } input[type="text"],input[type="password"],textarea { border: 1px solid #a9a9a9; text-indent: 0; text-shadow: none; text-transform: none; word-spacing: normal; font-size: 14px; font-family: sans-serif; float: none!important; padding:0px!important; } #upload input[type="file"] { max-width: 270px; } form table tr td { text-align: left; margin: 0; padding: 0; } form table.mod tr td { padding: 2px; } form table tr th { text-align: left; padding: 4px; } form table tr th { background: #98E; } form table tr td div.center { text-align: center; float: left; padding: 3px; padding-top: 0px; border: 1px dashed black; margin: 2px } /*form table tr td div input { display: block; margin: 2px auto 0 auto; } form table tr td div label { font-size: 10px; }*/ .unimportant,.unimportant * { font-size: 10px; } .file { float: left; margin-right: 2px; } .file:not(.multifile) .post-image { float: left; } .file:not(.multifile) { float: none; } p.fileinfo { display: block; margin: 0 0 0 20px; } div.post p.fileinfo { padding-left: 5px; } div.banner { background-color: #E04000; font-size: 12pt; font-weight: bold; text-align: center; margin: 1em 0; } div.banner,div.banner a { color: white; } div.banner a:hover { color: #EEF2FF; text-decoration: none; } img.banner,img.board_image { display: block; border: 1px solid #a9a9a9; margin: 3em auto 0 auto; } .post-image { display: block; float: left; margin: 5px 20px 10px 20px; border: none; } .full-image { float: left; padding: 5px; margin: 0 20px 0 0; max-width: 98%; } div.post .post-image { padding: 5px; margin: 0 20px 0 0; } div.post img.icon { display: inline; margin: 0 5px; padding: 0; } div.post i.fa, div.thread i.fa { margin: 0 4px; font-size: 16px; } div.post.op { margin-right: 20px; margin-bottom: 5px; } div.post.op hr { border-color: #D9BFB7; } .intro { margin: 0.5em 0; padding: 0; padding-bottom: 0.2em; } input.delete { float: left; margin: 1px 6px 0 0; } .intro span.subject { color: #0F0C5D; font-weight: bold; } .intro span.name { color: #117743; font-weight: bold; } .intro span.capcode,p.intro a.capcode,p.intro a.nametag { color: #F00000; margin-left: 0; } .intro a { margin-left: 5px; } .sage { color: red; font-weight: bold; } .required-star { color: maroon; } div.post p { display: block; margin: 0; line-height: 1.16em; font-size: 13px; min-height: 1.16em; } div.post div.body { margin-top: 0.8em; padding-right: 3em; padding-bottom: 0.3em; } div.post.reply div.body { margin-left: 1.8em; } div.post.reply.highlighted { background: #D6BAD0; } div.post.reply div.body a { color: #D00; } div.post div.body { word-wrap: normal; white-space: pre-wrap; } div.post.reply { background: #D6DAF0; margin: 0.2em 4px; padding: 0.5em 0.3em 0.5em 0.6em; border-width: 1px; border-style: none solid solid none; border-color: #B7C5D9; display: inline-block; max-width: 94%!important; } div.post.reply.has-file.body-not-empty { min-width: 33%; } div.post_modified { margin-left: 1.8em; } div.post_modified div.content-status { margin-top: 0.5em; padding-bottom: 0em; font-size: 72%; } div.post_modified div.content-status:first-child { margin-top: 1.3em; } div.post_modified div.content-status:first-child { margin-top: 1.3em; } a.dashed-underline { text-decoration: none; border-bottom: 1px dashed; } span.trip { color: #228854; } .quote { color: #789922; } span.omitted { display: block; margin-top: 1em; } br.clear { clear: left; display: block; } span.controls { float: right; margin: 0; padding: 0; font-size: 80%; } span.controls.op { float: none; margin-left: 10px; } span.controls a { margin: 0; } div#wrap { width: 900px; margin: 0 auto; } div.module, div.ban { background: white; border: 1px solid #98E; max-width: 700px; margin: 30px auto; } div.ban p, div.ban h2 { padding: 3px 7px; } div.ban h2 { background: #98E; color: black; font-size: 12pt; } div.ban p { font-size: 12px; margin-bottom: 12px; } div.ban p.reason { font-weight: bold; } span.heading { color: #AF0A0F; font-size: 11pt; font-weight: bold; } span.spoiler { background: black; color: black; padding: 0 1px; } div.post.reply div.body span.spoiler a { color: black; } span.spoiler:hover,div.post.reply div.body span.spoiler:hover a { color: white; } div.styles { float: right; padding-bottom: 20px; } div.styles a { margin: 0 10px; } div.styles a.selected { text-decoration: none; } table.test { width: 100%; } table.test td,table.test th { text-align: left; padding: 5px; } table.test tr.h th { background: #98E; } table.test td img { margin: 0; } fieldset label { display: block; } div.pages { /*! color: #89A; */ /*! background: #D6DAF0; */ display: inline-block; padding: 8px; /*! margin: 8px 0 4px 0; */ /*! border-right: 1px solid #B7C5D9; */ /*! border-bottom: 1px solid #B7C5D9; */ } div.pages.top { display: block; padding: 5px 8px; margin-bottom: 5px; position: fixed; top: 0; right: 0; opacity: 0.9; } @media screen and (max-width: 800px) { div.pages.top { display: none!important; } } div.pages a.selected { color: black; font-weight: bolder; } div.pages a { text-decoration: none; } div.pages form { margin: 0; padding: 0; display: inline; } div.pages form input { margin: 0 5px; display: inline; } hr { border: none; border-top: 1px solid #B7C5D9; height: 0; clear: left; } div.report { color: #333; } div.top_notice { text-align: center; margin: 5px auto; } span.public_ban { display: block; color: red; font-weight: bold; margin-top: 15px; } span.public_warning { display: block; color: steelblue; font-weight: bold; margin-top: 15px; } span.toolong { display: block; margin-top: 15px; } div.blotter { color: red; font-weight: bold; text-align: center; } .desktop-style div.boardlist:not(.bottom) { position: fixed; top: 0; left: 0; right: 0; margin-top: 0; z-index: 30; box-shadow: 0 1px 2px rgba(0, 0, 0, .15); border-bottom: 1px solid; background-color: #D6DAF0; } /*.desktop-style body { padding-top: 20px; }*/ .desktop-style .sub { background: inherit; } .desktop-style .sub .sub { display: inline-block; text-indent: -9000px; width: 7px; background: url('img/arrow.png') right center no-repeat; } .desktop-style .sub .sub:hover,.desktop-style .sub .sub.hover { display: inline; text-indent: 0; background: inherit; } #attention_bar { height: 1.5em; max-height: 1.5em; width: 100%; max-width: 100%; text-align: center; overflow: hidden; } #attention_bar_form { display: none; padding: 0; margin: 0; } #attention_bar_input { width: 100%; padding: 0; margin: 0; text-align: center; } #attention_bar:hover { background-color: rgba(100%,100%,100%,0.2); } .intro.thread-hidden { margin: 0; padding: 0; } form.ban-appeal { margin: 9px 20px; } form.ban-appeal textarea { display: block; } .MathJax_Display { display:inline!important; } pre { margin:0 display: inline!important; } .theme-catalog div.thread img { float: none!important; margin: auto; max-height: 150px; max-width: 200px; box-shadow: 0 0 4px rgba(0,0,0,0.55); border: 2px solid rgba(153,153,153,0); } .theme-catalog div.thread { display: inline-block; vertical-align: top; text-align: center; font-weight: normal; margin-top: 2px; margin-bottom: 2px; padding: 2px; height: 300px; width: 205px; overflow: hidden; position: relative; font-size: 11px; max-height: 300px; background: rgba(182, 182, 182, 0.12); border: 2px solid rgba(111, 111, 111, 0.34); max-height:300px; } .theme-catalog div.thread strong { display: block; } .theme-catalog div.threads { text-align: center; margin-left: -20px; } .theme-catalog div.thread:hover { background: #D6DAF0; border-color: #B7C5D9; } .theme-catalog div.grid-size-vsmall img { max-height: 33%; max-width: 95% } .theme-catalog div.grid-size-vsmall { min-width:90px; max-width: 90px; max-height: 148px; } .theme-catalog div.grid-size-small img { max-height: 33%; max-width: 95% } .theme-catalog div.grid-size-small { min-width:140px; max-width: 140px; max-height: 192px; } .theme-catalog div.grid-size-medium img { max-height: 33%; max-width: 95% } .theme-catalog div.grid-size-medium { min-width:200px; max-width: 200px; max-height: 274px; } .theme-catalog div.grid-size-large img { max-height: 40%; max-width: 95% } .theme-catalog div.grid-size-large { min-width: 256px; max-width: 256px; max-height: 384px; } .theme-catalog img.thread-image { height: auto; max-width: 100%; } @media (max-width: 420px) { header, img.board_image { margin-top: 5em; } div.boardlist { word-spacing:-3px; } .theme-catalog ul#Grid { padding-left: 18px; } .theme-catalog div.thread { width: auto; margin-left: 0; margin-right: 0; } .theme-catalog div.threads { overflow: hidden; } div.post .body { clear: both; } } .compact-boardlist { /*padding: 3px;*/ padding-bottom: 0; } .compact-boardlist .cb-item { display: inline-block; vertical-align: middle; } .compact-boardlist .cb-icon { padding-bottom: 1px; } .compact-boardlist .cb-fa { font-size: 16px; } .compact-boardlist .cb-cat { padding: 0px 6px 0px 6px; } .cb-menuitem { display: table-row; } .cb-menuitem span { padding: 5px; display: table-cell; text-align: left; border-top: 1px solid rgba(0,0,0,0.5); } .cb-menuitem span.cb-uri { text-align: right; } .boardlist:not(.compact-boardlist) #watch-pinned::before { content: " [ "; } .boardlist:not(.compact-boardlist) #watch-pinned::after { content: " ] "; } .boardlist:not(.compact-boardlist) #watch-pinned { display: inline; } .boardlist:not(.compact-boardlist) #watch-pinned a { margin-left: 3pt; } .boardlist:not(.compact-boardlist) #watch-pinned a:first-child { margin-left: 0pt; } .compact-boardlist #watch-pinned { display: inline-block; vertical-align: middle; } .new-posts { opacity: 0.6; margin-top: 1em; } .new-threads, .board-settings { text-align: center; } #options_handler, #alert_handler { position: fixed; top: 0px; left: 0px; right: 0px; bottom: 0px; width: 100%; height: 100%; text-align: center; z-index: 9900; } #options_background, #alert_background { background: black; opacity: 0.5; position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; width: 100%; height: 100%; z-index: -1; } #options_div, #alert_div { background-color: #d6daf0; border: 1px solid black; display: inline-block; position: relative; margin-top: 20px; } #options_div { width: 600px; height: 360px; /* width: 620px; height: 400px; resize: both; overflow: auto;*/ } #alert_div { width: 500px; } #alert_message { text-align: center; margin: 13px; font-size: 110%; } .alert_button { margin-bottom: 13px; } #options_div textarea { max-width: 100%; } #options_close, #alert_close { top: 0px; right: 0px; position: absolute; margin-right: 3px; font-size: 20px; z-index: 100; } #options_tablist { padding: 0px 5px; left: 0px; width: 90px; top: 0px; bottom: 0px; height: 100%; border-right: 1px solid black; } .options_tab_icon { padding: 5px; color: black; cursor: pointer; } .options_tab_icon.active { color: red; } .options_tab_icon i { font-size: 20px; } .options_tab_icon div { font-size: 11px; } .options_tab { padding: 10px; position: absolute; top: 0px; bottom: 10px; left: 101px; right: 0px; text-align: left; font-size: 12px; overflow-y: auto; } .options_tab h2 { text-align: center; margin-bottom: 5px; } .mobile-style #options_div, .mobile-style #alert_div { display: block; width: 100%; height: 100%; margin-top: 0px; } .mentioned { word-wrap: break-word; } .poster_id { cursor: pointer; white-space:nowrap; display: inline-block; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none; } .poster_id:hover { color: #800000!important; } .poster_id::before { content: " ID: "; } pre { /* Better code tags */ max-width:inherit; word-wrap:normal; overflow:auto; display: block!important; font-size:9pt; font-family:monospace; } span.pln { color:grey; } @media screen and (min-width: 768px) { .intro { clear: none; } div.post div.body { clear: none; } } /* === SITE-WIDE ASSETS === */ #logo { display: block; width: 100%; padding: 0; margin: 0 0 0 0; text-align: center; } #logo-link { display: inline; } #logo-img { display: inline-block; height: 128px; width: auto; } /* === GENERAL CLASSES === */ .loading { background: none; background-color: none; background-image: url('/static/infinity.gif'); background-position: center center; background-repeat: no-repeat; min-height: 76px; min-width: 128px; } .loading-small { background: none; background-color: none; background-image: url('/static/infinity-small.gif'); background-position: center center; background-repeat: no-repeat; min-height: 24px; min-width: 48px; } /* Text and accessibility */ .ltr { direction: ltr; } .rtl { direction: rtl; font-family: Tahoma; } /* Responsive helpers */ .col { box-sizing: border-box; float: left; } .col-12 { width: 100%; } .col-11 { width: 91.66666667%; } .col-10 { width: 83.33333333%; } .col-9 { width: 75%; } .col-8 { width: 66.66666667%; } .col-7 { width: 58.33333333%; } .col-6 { width: 50%; } .col-5 { width: 41.66666667%; } .col-4 { width: 33.33333333%; } .col-3 { width: 25%; } .col-2 { width: 16.66666667%; } .col-1 { width: 8.33333333%; } .left-push { float: left; } .right-push { float: right; } /* Layout design */ .box { background: #D6DAF0; border: 1px solid #000333; color: #000333; margin: 0 0 12px 0; } .box-title { background: #98E; color: #000333; font-size: 120%; font-weight: bold; padding: 4px 8px; } .box-content { padding: 0 8px; margin: 4px 0; } .clearfix { display: block; clear: both; visibility: hidden; overflow: hidden; font-size: 0px; line-height: 0px; box-sizing: border-box; border: none; height: 0; margin: 0; padding: 0; width: 100%; zoom: 1; } /* === SPECIFIC PAGES & FEATURES === */ /* Board List */ div.boardlist { margin-top: 3px; color: #89A; font-size: 9pt; word-spacing:-3px; } div.boardlist.bottom { margin-top: 12px; clear: both; } div.boardlist a { text-decoration: none; } @-moz-document url-prefix() { div.boardlist { word-spacing:-3px; } } /* Threads */ /* Thread Footer */ #thread-interactions { margin: 8px 0; clear: both; } #thread-links { float: left; } #thread-links > a { padding-left: none; padding-right: 10px; } #thread-quick-reply { display: none; position: absolute; left: 50%; right: 50%; text-align: center; width: 100px; margin-left: -50px; } #thread_stats { float: right; } #post-moderation-fields { float: right; text-align: right; } #delete-fields { } #report-fields { } /* threadwatcher */ #watchlist { display: none; max-height: 250px; overflow: auto; border: 1px solid; border-style: none solid solid none; width: 50%; margin: 0 auto; margin-bottom: 10px; } #watchlist { font-size: 8pt; width: 15%; position: fixed; right: 0pt; top: 20pt; margin: 0pt; padding: 0pt; } .watchlist-inner, .watchlist-controls { margin: 0pt; text-align: center; } #watchlist-toggle, .watchThread, .watchlist-remove, #clearList, #clearGhosts { cursor: pointer; } .own_post { font-style: italic; font-weight: normal; opacity: .666; } li.mix { display: inline-block; } /* Mona Font */ .aa { font-family: Mona, "MS PGothic", "MS Pゴシック", sans-serif; display: block!important; font-size: 12pt; line-height: 1.1; } .dx, .dy, .dz { width: 30px; text-align: right; display: inline-block; } /* Dice */ .dice-option table { border: 1px dotted black; margin: 0; border-collapse: collapse; } .dice-option table td { text-align: center; border-left: 1px dotted black; padding-left: 2px; padding-right: 2px; padding-bottom: 2px; } /* Quick reply (why was most of this ever in the script?) */ #quick-reply { position: fixed; right: 5%; top: 5%; float: right; display: block; padding: 0 0 0 0; width: 300px; z-index: 100; } #quick-reply #post-form-inner { min-width: 300px; } #quick-reply .post-table tr td:nth-child(2) { width: 33%; text-align: right; padding-right: 4px; } #quick-reply tr td:nth-child(2) input[type="submit"] { width: 99%; } #quick-reply th, #quick-reply td { margin: 0; padding: 0; } #quick-reply th { text-align: center; padding: 2px 0; border: 1px solid #222; } #quick-reply th .handle { float: left; width: 100%; display: inline-block; } #quick-reply th .close-btn { float: right; padding: 0 5px; } #quick-reply input[type="text"], #quick-reply select { width: 100%; padding: 2px; font-size: 10pt; box-sizing: border-box; -webkit-box-sizing:border-box; -moz-box-sizing: border-box; } #quick-reply textarea { min-width: 100%; box-sizing: border-box; -webkit-box-sizing:border-box; -moz-box-sizing: border-box; font-size: 10pt; resize: both; } #quick-reply input, #quick-reply select, #quick-reply textarea { margin: 0 0 1px 0; } #quick-reply input[type="file"] { padding: 5px 2px; } #quick-reply .nonsense { display: none; } #quick-reply td.recaptcha { text-align: center; padding: 0 0 1px 0; } #quick-reply td.recaptcha span { display: inline-block; width: 100%; background: white; border: 1px solid #ccc; cursor: pointer; } #quick-reply td.recaptcha-response { padding: 0 0 1px 0; } @media screen and (max-width: 600px) { #quick-reply { display: none !important; } } #youtube-size input { width: 50px; } /* File selector */ .dropzone { color: #000; cursor: default; margin: auto; padding: 0px 4px; text-align: center; min-height: 50px; max-height: 140px; transition: 0.2s; background-color: rgba(200, 200, 200, 0.5); overflow-y: auto; } .dropzone-wrap { width: 100%; } .dropzone .file-hint { color: rgba(0, 0, 0, 0.5); cursor: pointer; position: relative; margin-bottom: 5px; padding: 10px 0px; top: 5px; transition: 0.2s; border: 2px dashed rgba(125, 125, 125, 0.4); } .file-hint:hover, .dropzone.dragover .file-hint { color: rgba(0, 0, 0, 1); border-color: rgba(125, 125, 125, 0.8); } .dropzone.dragover { background-color: rgba(200, 200, 200, 1); } .dropzone .file-thumbs { text-align: left; width: 100%; } .dropzone .tmb-container { padding: 3px; overflow-x: hidden; white-space: nowrap; } .dropzone .file-tmb { height: 40px; width: 70px; cursor: pointer; display: inline-block; text-align: center; background-color: rgba(187, 187, 187, 0.5); background-size: cover; background-position: center; } .dropzone .file-tmb span { font-weight: 600; position: relative; top: 13px; } .dropzone .tmb-filename { display: inline-block; vertical-align: bottom; bottom: 12px; position: relative; margin-left: 5px; } .dropzone .remove-btn { cursor: pointer; color: rgba(10, 43, 175, 0.89); display: inline-block; vertical-align: bottom; bottom: 10px; position: relative; margin-right: 5px; font-size: 20px } .dropzone .remove-btn:hover { color: rgba(125, 125, 125, 1); } table.board-list-table { display: table; margin: -2px; margin-bottom: 10px; overflow: hidden; table-layout: fixed; } table.board-list-table .board-cell { position: static; margin: 0; padding: 0; box-sizing: border-box; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } table.board-list-table .board-cell::after { content: ' '; clear: both; } table.board-list-table .board-meta { padding-right: 4px; width: 70px; } table.board-list-table .board-uri { max-width: 196px; } table.board-list-table .board-title { width: auto; } table.board-list-table .board-pph { width: 55px; padding: 4px; } table.board-list-table .board-max { width: 90px; padding: 4px; } table.board-list-table .board-unique { width: 100px; padding: 4px; } table.board-list-table .board-tags { position: relative; height: 15px; width: auto; padding: 0 15px 0 4px; } table.board-list-table .board-tags .tag-link { display: inline; } table.board-list-table .board-tags .board-cell:hover { position: absolute; background: #EEF2FF; line-height: 23px; top: 0; bottom: 0; width: 310px; } table.board-list-table tr:nth-of-type( even ) .board-tags .board-cell { background: #D6DAF0; } table.board-list-table .board-uri a { display: inline-block; float: left; } table.board-list-table .board-uri .board-nsfw { color: rgb(230,0,0); margin: 0 0 0 0.6em; float: right; } table.board-list-table .board-uri .board-sfw { color: #34345C; margin: 0 0 0 0.6em; float: right; } table.board-list-table div.board-cell { max-width: 100%; overflow: hidden; } tbody.board-list-loading { display: none; } tbody.board-list-loading .loading { height: 80px; } tbody.board-list-omitted td { background: #98E; border-top: 1px solid #000333; padding: 8px; font-size: 125%; text-align: center; } tbody.board-list-omitted #board-list-more { cursor: default; } tbody.board-list-omitted #board-list-more.board-list-hasmore { cursor: pointer; } tbody.board-list-omitted .board-page-loadmore { display: none; } tbody.board-list-omitted .board-list-hasmore .board-page-loadmore { display: inline; } aside.search-container { margin-bottom: 12px; } aside.search-container .box { margin-right: 12px; } .board-search { margin: 8px 0; } .search-item { margin: 8px 0; } .search-sfw { display: block; cursor: pointer; font-size: 110%; line-height: 120%; } #search-sfw-input { margin: 0; padding: 0; transform: scale(1.20); } #search-lang-input, #search-title-input, #search-tag-input { box-sizing: border-box; font-size: 110%; line-height: 120%; vertical-align: top; padding: 2px 0 2px 4px; max-width: 100%; min-width: 100%; width: 100%: } #search-loading { display: inline-block; vertical-align: bottom; } ul.tag-list { display: block; list-style: none; margin: 8px 8px -9px 8px; padding: 8px 0 0 0; border-top: 1px solid #000333; } ul.tag-list::after { content: ' '; display: block; clear: both; } li.tag-item { display: inline-block; float: left; font-size: 100%; list-style: none; margin: 0; padding: 0 4px 0 0; } li.tag-item:last-child { padding-bottom: 17px; } a.tag-link { overflow: hidden; white-space: nowrap; } li.tag-item a.tag-link { } td.board-tags a.tag-link { display: inline-block; margin: 0 0.4em 0 0; } @media screen and (max-width: 1100px) { aside.search-container { width: 100%; margin-bottom: 12px; } aside.search-container .box { margin-right: 0; } section.board-list { margin-top: 12px; width: 100%; } table.board-list-table .board-meta, table.board-list-table .board-pph, table.board-list-table .board-tags { padding: 0; margin: 0; font-size: 0; width: 0; } } #post-moderation-fields { display: block; } .announcement { font-size: 75%; padding-bottom: 1%; margin-left: 5%; margin-right: 5%; } /* Gallery view */ #gallery_images { position: absolute; right: 0px; bottom: 0px; top: 0px; width: 12%; background-color: rgba(0, 0, 0, 0.4); overflow: auto; } #gallery_toolbar { position: absolute; right: 12%; left: 0px; bottom: 0px; height: 32px; background-color: rgba(0, 0, 0, 0.4); text-align: right; } #gallery_images img { width: 100%; } #gallery_toolbar a { font-size: 28px; padding-right: 5px; } #gallery_main { position: absolute; left: 0px; right: 12%; bottom: 32px; top: 0px; padding: 10px; } #gallery_images img { opacity: 0.6; -webkit-transition: all 0.5s; transition: all 0.5s; } #gallery_images img:hover, #gallery_images img.active { opacity: 1; } #gallery_images img.active { -webkit-box-shadow: 0px 0px 29px 2px rgba(255,255,255,1); -moz-box-shadow: 0px 0px 29px 2px rgba(255,255,255,1); box-shadow: 0px 0px 29px 2px rgba(255,255,255,1); z-index: 1; } #gallery_main img, #gallery_main video { max-width: 100%; max-height: 100%; position: absolute; } /* Fileboard */ table.fileboard th, table.fileboard td { padding: 2px; text-align: center; } table.fileboard .intro a { margin-left: 0px; } /* Rules Popup */ #rules-popup { width: 80%; height: 80%; position: fixed; z-index: 9999; left: 50%; margin-left: -40%; top: 50%; margin-top: -40vh; background: #000000; text-align: center; font-family: sans-serif; font-size: 14px; color: #FFFFFF; } #rules-popup .rules-popup-top { font-size: 40px; line-height: 60px; position: absolute; top: 0px; height: 60px; width: 100%; } #rules-popup .rules-popup-content-wrapper { text-align: left; position: absolute; bottom: 80px; top: 60px; width: 100%; overflow: auto; } #rules-popup #rules-popup-content { padding: 10px; font-size: 12px; } #rules-popup .rules-popup-bottom { bottom: 0px; height: 80px; width: 100%; position: absolute; } #rules-popup .rules-popup-bottom-instructions { line-height: 40px; } #rules-popup .rules-popup-captcha-wrapper { height: 40px; } #rules-popup .rules-popup-captcha { display: inline-block; border: 1px solid white; font-family: serif; padding: 3px; } #rules-popup .rules-popup-form { display: inline-block; } #rules-popup .rules-popup-form-input { width: 100px; } /* dropdown for boardlist. */ .dropdown { position: relative; display: inline-block; } /* Alter details as needed, I'm not a designer. */ .dropdown-content { display: none; position: absolute; background-color: #666666; min-width: 130px; padding: 2px 6px; color: #DCA1F5; } .dropdown:hover .dropdown-content { display: block; } .own_post { font-style: italic; font-weight: normal; opacity: .666; } div.mix { display: inline-block; } footer { margin-bottom: 50px; } input[type="submit"] { border: 1px solid; background: #D6DAF0; font-size: 13px; font-family: arial,helvetica,sans-serif; } input[type="submit"]:hover { background: #E6E8F6; }
stylesheets/style.css
div.sidearrows{ display:none; } img { image-orientation: from-image; } /* boardlist gets all scrunched on small screens */ @media screen and (max-width: 600px) { header, img.board_image { margin-top: 5em; } } @media screen and (min-width: 700px) { header, img.board_image { margin-top: 3em; } } html, body { max-width: 100%!important; overflow-x: hidden!important; } .post-image{ max-width: 94%!important; } select{ float:right; } div.pages{ margin:0!important; padding: 0!important; } div.boardlist.bottom { text-align: center!important; display: none!important; } img.banner, img.board_image { max-width: 100vw; } .pintro{ width: 98%!important; } .bar { display: table!important; position: fixed; width: 100%; left: 0px; z-index: 3; background-color: #D6DAF0; border-color: #B7C5D9; } .bar > :not(script) { display: table-cell; vertical-align: middle; } .bar.top { text-align: center; top: 0px; border-bottom: 1px solid #B7C5D9; } .bar.bottom { bottom: 0px; border-top: 1px solid #333333; /*background-color: #333333 ;*/ } /*homepage banner*/ div.lain_banner{ margin:auto; position: absolute; } /* === GENERAL TAG SETTINGS === */ /* Page Layouts */ body { background: #EEF2FF url('img/fade-blue.png') repeat-x 50% 0%; color: black; font-family: arial,helvetica,sans-serif; font-size: 12px; margin: 0 4px; padding-left: 4px; padding-right: 4px; } main, aside, section { display: block; margin: 0 auto; width: 100%; } main { max-width: 1110px; } /* Tables */ table { margin: auto; } table.board-list-table { width: 100%; } table tbody td { margin: 0; padding: 4px 15px 4px 4px; text-align: left; } table thead th { border: 1px solid #000333; padding: 4px 15px 5px 5px; background: #98E; color: #000333; text-align: left; white-space: nowrap; } table tbody tr:nth-of-type( even ) { background-color: transparent!important; } tr{ } td.minimal,th.minimal { width: 1%; white-space: nowrap; } table.mod.config-editor { font-size: 9pt; width: 100%; } table.mod.config-editor td { text-align: left; padding: 5px; border-bottom: 1px solid #98e; } table.mod.config-editor input[type="text"] { width: 98%; } .longtable p { margin: 0; } /* Uncategorized */ #post-form-outer { text-align: center; } #post-form-inner { display: inline-block; } .post-table, .post-table-options, textarea { width: 100%; } #post-form-inner .post-table tr { background-color: transparent; } .post-table th, .post-table-options th { width: 85px; } .post-table-options { display: none; } .required-field-cell { vertical-align: top; } .show-options-cell { text-align: right; } .hidden { display:none; } a,a:visited { text-decoration: underline; color: #34345C; } a:hover,.intro a.post_no:hover { color: #ff0000; } a.post_no { text-decoration: none; margin: 0; padding: 0; } .intro a.post_no { color: inherit; } .intro a.post_no,p.intro a.email,p.intro a.post_anchor { margin: 0; } .intro a.email span.name { color: #34345C; } .intro a.email:hover span.name { color: #ff0000; } .intro label { display: inline; } .intro time,p.intro a.ip-link,p.intro a.capcode { direction: ltr; unicode-bidi: embed; } h2 { color: #AF0A0F; font-size: 11pt; margin: 0; padding: 0; } header { margin: 3em 0; } h1 { font-family: tahoma; letter-spacing: -2px; font-size: 20pt; margin: 0; } header div.subtitle,h1 { color: #AF0A0F; text-align: center; } header div.subtitle { font-size: 8pt; } form table { margin: auto; } form table input { height: auto; } input[type="text"],input[type="password"],textarea { border: 1px solid #a9a9a9; text-indent: 0; text-shadow: none; text-transform: none; word-spacing: normal; font-size: 14px; font-family: sans-serif; float: none!important; padding:0px!important; } #upload input[type="file"] { max-width: 270px; } form table tr td { text-align: left; margin: 0; padding: 0; } form table.mod tr td { padding: 2px; } form table tr th { text-align: left; padding: 4px; } form table tr th { background: #98E; } form table tr td div.center { text-align: center; float: left; padding: 3px; padding-top: 0px; border: 1px dashed black; margin: 2px } /*form table tr td div input { display: block; margin: 2px auto 0 auto; } form table tr td div label { font-size: 10px; }*/ .unimportant,.unimportant * { font-size: 10px; } .file { float: left; margin-right: 2px; } .file:not(.multifile) .post-image { float: left; } .file:not(.multifile) { float: none; } p.fileinfo { display: block; margin: 0 0 0 20px; } div.post p.fileinfo { padding-left: 5px; } div.banner { background-color: #E04000; font-size: 12pt; font-weight: bold; text-align: center; margin: 1em 0; } div.banner,div.banner a { color: white; } div.banner a:hover { color: #EEF2FF; text-decoration: none; } img.banner,img.board_image { display: block; border: 1px solid #a9a9a9; margin: 3em auto 0 auto; } .post-image { display: block; float: left; margin: 5px 20px 10px 20px; border: none; } .full-image { float: left; padding: 5px; margin: 0 20px 0 0; max-width: 98%; } div.post .post-image { padding: 5px; margin: 0 20px 0 0; } div.post img.icon { display: inline; margin: 0 5px; padding: 0; } div.post i.fa, div.thread i.fa { margin: 0 4px; font-size: 16px; } div.post.op { margin-right: 20px; margin-bottom: 5px; } div.post.op hr { border-color: #D9BFB7; } .intro { margin: 0.5em 0; padding: 0; padding-bottom: 0.2em; } input.delete { float: left; margin: 1px 6px 0 0; } .intro span.subject { color: #0F0C5D; font-weight: bold; } .intro span.name { color: #117743; font-weight: bold; } .intro span.capcode,p.intro a.capcode,p.intro a.nametag { color: #F00000; margin-left: 0; } .intro a { margin-left: 5px; } .sage { color: red; font-weight: bold; } .required-star { color: maroon; } div.post p { display: block; margin: 0; line-height: 1.16em; font-size: 13px; min-height: 1.16em; } div.post div.body { margin-top: 0.8em; padding-right: 3em; padding-bottom: 0.3em; } div.post.reply div.body { margin-left: 1.8em; } div.post.reply.highlighted { background: #D6BAD0; } div.post.reply div.body a { color: #D00; } div.post div.body { word-wrap: normal; white-space: pre-wrap; } div.post.reply { background: #D6DAF0; margin: 0.2em 4px; padding: 0.5em 0.3em 0.5em 0.6em; border-width: 1px; border-style: none solid solid none; border-color: #B7C5D9; display: inline-block; max-width: 94%!important; } div.post.reply.has-file.body-not-empty { min-width: 33%; } div.post_modified { margin-left: 1.8em; } div.post_modified div.content-status { margin-top: 0.5em; padding-bottom: 0em; font-size: 72%; } div.post_modified div.content-status:first-child { margin-top: 1.3em; } div.post_modified div.content-status:first-child { margin-top: 1.3em; } a.dashed-underline { text-decoration: none; border-bottom: 1px dashed; } span.trip { color: #228854; } .quote { color: #789922; } span.omitted { display: block; margin-top: 1em; } br.clear { clear: left; display: block; } span.controls { float: right; margin: 0; padding: 0; font-size: 80%; } span.controls.op { float: none; margin-left: 10px; } span.controls a { margin: 0; } div#wrap { width: 900px; margin: 0 auto; } div.module, div.ban { background: white; border: 1px solid #98E; max-width: 700px; margin: 30px auto; } div.ban p, div.ban h2 { padding: 3px 7px; } div.ban h2 { background: #98E; color: black; font-size: 12pt; } div.ban p { font-size: 12px; margin-bottom: 12px; } div.ban p.reason { font-weight: bold; } span.heading { color: #AF0A0F; font-size: 11pt; font-weight: bold; } span.spoiler { background: black; color: black; padding: 0 1px; } div.post.reply div.body span.spoiler a { color: black; } span.spoiler:hover,div.post.reply div.body span.spoiler:hover a { color: white; } div.styles { float: right; padding-bottom: 20px; } div.styles a { margin: 0 10px; } div.styles a.selected { text-decoration: none; } table.test { width: 100%; } table.test td,table.test th { text-align: left; padding: 5px; } table.test tr.h th { background: #98E; } table.test td img { margin: 0; } fieldset label { display: block; } div.pages { /*! color: #89A; */ /*! background: #D6DAF0; */ display: inline-block; padding: 8px; /*! margin: 8px 0 4px 0; */ /*! border-right: 1px solid #B7C5D9; */ /*! border-bottom: 1px solid #B7C5D9; */ } div.pages.top { display: block; padding: 5px 8px; margin-bottom: 5px; position: fixed; top: 0; right: 0; opacity: 0.9; } @media screen and (max-width: 800px) { div.pages.top { display: none!important; } } div.pages a.selected { color: black; font-weight: bolder; } div.pages a { text-decoration: none; } div.pages form { margin: 0; padding: 0; display: inline; } div.pages form input { margin: 0 5px; display: inline; } hr { border: none; border-top: 1px solid #B7C5D9; height: 0; clear: left; } div.report { color: #333; } div.top_notice { text-align: center; margin: 5px auto; } span.public_ban { display: block; color: red; font-weight: bold; margin-top: 15px; } span.public_warning { display: block; color: steelblue; font-weight: bold; margin-top: 15px; } span.toolong { display: block; margin-top: 15px; } div.blotter { color: red; font-weight: bold; text-align: center; } .desktop-style div.boardlist:not(.bottom) { position: fixed; top: 0; left: 0; right: 0; margin-top: 0; z-index: 30; box-shadow: 0 1px 2px rgba(0, 0, 0, .15); border-bottom: 1px solid; background-color: #D6DAF0; } /*.desktop-style body { padding-top: 20px; }*/ .desktop-style .sub { background: inherit; } .desktop-style .sub .sub { display: inline-block; text-indent: -9000px; width: 7px; background: url('img/arrow.png') right center no-repeat; } .desktop-style .sub .sub:hover,.desktop-style .sub .sub.hover { display: inline; text-indent: 0; background: inherit; } #attention_bar { height: 1.5em; max-height: 1.5em; width: 100%; max-width: 100%; text-align: center; overflow: hidden; } #attention_bar_form { display: none; padding: 0; margin: 0; } #attention_bar_input { width: 100%; padding: 0; margin: 0; text-align: center; } #attention_bar:hover { background-color: rgba(100%,100%,100%,0.2); } .intro.thread-hidden { margin: 0; padding: 0; } form.ban-appeal { margin: 9px 20px; } form.ban-appeal textarea { display: block; } .MathJax_Display { display:inline!important; } pre { margin:0 display: inline!important; } .theme-catalog div.thread img { float: none!important; margin: auto; max-height: 150px; max-width: 200px; box-shadow: 0 0 4px rgba(0,0,0,0.55); border: 2px solid rgba(153,153,153,0); } .theme-catalog div.thread { display: inline-block; vertical-align: top; text-align: center; font-weight: normal; margin-top: 2px; margin-bottom: 2px; padding: 2px; height: 300px; width: 205px; overflow: hidden; position: relative; font-size: 11px; max-height: 300px; background: rgba(182, 182, 182, 0.12); border: 2px solid rgba(111, 111, 111, 0.34); max-height:300px; } .theme-catalog div.thread strong { display: block; } .theme-catalog div.threads { text-align: center; margin-left: -20px; } .theme-catalog div.thread:hover { background: #D6DAF0; border-color: #B7C5D9; } .theme-catalog div.grid-size-vsmall img { max-height: 33%; max-width: 95% } .theme-catalog div.grid-size-vsmall { min-width:90px; max-width: 90px; max-height: 148px; } .theme-catalog div.grid-size-small img { max-height: 33%; max-width: 95% } .theme-catalog div.grid-size-small { min-width:140px; max-width: 140px; max-height: 192px; } .theme-catalog div.grid-size-medium img { max-height: 33%; max-width: 95% } .theme-catalog div.grid-size-medium { min-width:200px; max-width: 200px; max-height: 274px; } .theme-catalog div.grid-size-large img { max-height: 40%; max-width: 95% } .theme-catalog div.grid-size-large { min-width: 256px; max-width: 256px; max-height: 384px; } .theme-catalog img.thread-image { height: auto; max-width: 100%; } @media (max-width: 420px) { header, img.board_image { margin-top: 5em; } div.boardlist { word-spacing:-3px; } .theme-catalog ul#Grid { padding-left: 18px; } .theme-catalog div.thread { width: auto; margin-left: 0; margin-right: 0; } .theme-catalog div.threads { overflow: hidden; } div.post .body { clear: both; } } .compact-boardlist { /*padding: 3px;*/ padding-bottom: 0; } .compact-boardlist .cb-item { display: inline-block; vertical-align: middle; } .compact-boardlist .cb-icon { padding-bottom: 1px; } .compact-boardlist .cb-fa { font-size: 16px; } .compact-boardlist .cb-cat { padding: 0px 6px 0px 6px; } .cb-menuitem { display: table-row; } .cb-menuitem span { padding: 5px; display: table-cell; text-align: left; border-top: 1px solid rgba(0,0,0,0.5); } .cb-menuitem span.cb-uri { text-align: right; } .boardlist:not(.compact-boardlist) #watch-pinned::before { content: " [ "; } .boardlist:not(.compact-boardlist) #watch-pinned::after { content: " ] "; } .boardlist:not(.compact-boardlist) #watch-pinned { display: inline; } .boardlist:not(.compact-boardlist) #watch-pinned a { margin-left: 3pt; } .boardlist:not(.compact-boardlist) #watch-pinned a:first-child { margin-left: 0pt; } .compact-boardlist #watch-pinned { display: inline-block; vertical-align: middle; } .new-posts { opacity: 0.6; margin-top: 1em; } .new-threads, .board-settings { text-align: center; } #options_handler, #alert_handler { position: fixed; top: 0px; left: 0px; right: 0px; bottom: 0px; width: 100%; height: 100%; text-align: center; z-index: 9900; } #options_background, #alert_background { background: black; opacity: 0.5; position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; width: 100%; height: 100%; z-index: -1; } #options_div, #alert_div { background-color: #d6daf0; border: 1px solid black; display: inline-block; position: relative; margin-top: 20px; } #options_div { width: 600px; height: 360px; /* width: 620px; height: 400px; resize: both; overflow: auto;*/ } #alert_div { width: 500px; } #alert_message { text-align: center; margin: 13px; font-size: 110%; } .alert_button { margin-bottom: 13px; } #options_div textarea { max-width: 100%; } #options_close, #alert_close { top: 0px; right: 0px; position: absolute; margin-right: 3px; font-size: 20px; z-index: 100; } #options_tablist { padding: 0px 5px; left: 0px; width: 90px; top: 0px; bottom: 0px; height: 100%; border-right: 1px solid black; } .options_tab_icon { padding: 5px; color: black; cursor: pointer; } .options_tab_icon.active { color: red; } .options_tab_icon i { font-size: 20px; } .options_tab_icon div { font-size: 11px; } .options_tab { padding: 10px; position: absolute; top: 0px; bottom: 10px; left: 101px; right: 0px; text-align: left; font-size: 12px; overflow-y: auto; } .options_tab h2 { text-align: center; margin-bottom: 5px; } .mobile-style #options_div, .mobile-style #alert_div { display: block; width: 100%; height: 100%; margin-top: 0px; } .mentioned { word-wrap: break-word; } .poster_id { cursor: pointer; white-space:nowrap; display: inline-block; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none; } .poster_id:hover { color: #800000!important; } .poster_id::before { content: " ID: "; } pre { /* Better code tags */ max-width:inherit; word-wrap:normal; overflow:auto; display: block!important; font-size:9pt; font-family:monospace; } span.pln { color:grey; } @media screen and (min-width: 768px) { .intro { clear: none; } div.post div.body { clear: none; } } /* === SITE-WIDE ASSETS === */ #logo { display: block; width: 100%; padding: 0; margin: 0 0 0 0; text-align: center; } #logo-link { display: inline; } #logo-img { display: inline-block; height: 128px; width: auto; } /* === GENERAL CLASSES === */ .loading { background: none; background-color: none; background-image: url('/static/infinity.gif'); background-position: center center; background-repeat: no-repeat; min-height: 76px; min-width: 128px; } .loading-small { background: none; background-color: none; background-image: url('/static/infinity-small.gif'); background-position: center center; background-repeat: no-repeat; min-height: 24px; min-width: 48px; } /* Text and accessibility */ .ltr { direction: ltr; } .rtl { direction: rtl; font-family: Tahoma; } /* Responsive helpers */ .col { box-sizing: border-box; float: left; } .col-12 { width: 100%; } .col-11 { width: 91.66666667%; } .col-10 { width: 83.33333333%; } .col-9 { width: 75%; } .col-8 { width: 66.66666667%; } .col-7 { width: 58.33333333%; } .col-6 { width: 50%; } .col-5 { width: 41.66666667%; } .col-4 { width: 33.33333333%; } .col-3 { width: 25%; } .col-2 { width: 16.66666667%; } .col-1 { width: 8.33333333%; } .left-push { float: left; } .right-push { float: right; } /* Layout design */ .box { background: #D6DAF0; border: 1px solid #000333; color: #000333; margin: 0 0 12px 0; } .box-title { background: #98E; color: #000333; font-size: 120%; font-weight: bold; padding: 4px 8px; } .box-content { padding: 0 8px; margin: 4px 0; } .clearfix { display: block; clear: both; visibility: hidden; overflow: hidden; font-size: 0px; line-height: 0px; box-sizing: border-box; border: none; height: 0; margin: 0; padding: 0; width: 100%; zoom: 1; } /* === SPECIFIC PAGES & FEATURES === */ /* Board List */ div.boardlist { margin-top: 3px; color: #89A; font-size: 9pt; word-spacing:-3px; } div.boardlist.bottom { margin-top: 12px; clear: both; } div.boardlist a { text-decoration: none; } @-moz-document url-prefix() { div.boardlist { word-spacing:-3px; } } /* Threads */ /* Thread Footer */ #thread-interactions { margin: 8px 0; clear: both; } #thread-links { float: left; } #thread-links > a { padding-left: none; padding-right: 10px; } #thread-quick-reply { display: none; position: absolute; left: 50%; right: 50%; text-align: center; width: 100px; margin-left: -50px; } #thread_stats { float: right; } #post-moderation-fields { float: right; text-align: right; } #delete-fields { } #report-fields { } /* threadwatcher */ #watchlist { display: none; max-height: 250px; overflow: auto; border: 1px solid; border-style: none solid solid none; width: 50%; margin: 0 auto; margin-bottom: 10px; } #watchlist { font-size: 8pt; width: 15%; position: fixed; right: 0pt; top: 20pt; margin: 0pt; padding: 0pt; } .watchlist-inner, .watchlist-controls { margin: 0pt; text-align: center; } #watchlist-toggle, .watchThread, .watchlist-remove, #clearList, #clearGhosts { cursor: pointer; } .own_post { font-style: italic; font-weight: normal; opacity: .666; } li.mix { display: inline-block; } /* Mona Font */ .aa { font-family: Mona, "MS PGothic", "MS Pゴシック", sans-serif; display: block!important; font-size: 12pt; line-height: 1.1; } .dx, .dy, .dz { width: 30px; text-align: right; display: inline-block; } /* Dice */ .dice-option table { border: 1px dotted black; margin: 0; border-collapse: collapse; } .dice-option table td { text-align: center; border-left: 1px dotted black; padding-left: 2px; padding-right: 2px; padding-bottom: 2px; } /* Quick reply (why was most of this ever in the script?) */ #quick-reply { position: fixed; right: 5%; top: 5%; float: right; display: block; padding: 0 0 0 0; width: 300px; z-index: 100; } #quick-reply #post-form-inner { min-width: 300px; } #quick-reply .post-table tr td:nth-child(2) { width: 33%; text-align: right; padding-right: 4px; } #quick-reply tr td:nth-child(2) input[type="submit"] { width: 99%; } #quick-reply th, #quick-reply td { margin: 0; padding: 0; } #quick-reply th { text-align: center; padding: 2px 0; border: 1px solid #222; } #quick-reply th .handle { float: left; width: 100%; display: inline-block; } #quick-reply th .close-btn { float: right; padding: 0 5px; } #quick-reply input[type="text"], #quick-reply select { width: 100%; padding: 2px; font-size: 10pt; box-sizing: border-box; -webkit-box-sizing:border-box; -moz-box-sizing: border-box; } #quick-reply textarea { min-width: 100%; box-sizing: border-box; -webkit-box-sizing:border-box; -moz-box-sizing: border-box; font-size: 10pt; resize: both; } #quick-reply input, #quick-reply select, #quick-reply textarea { margin: 0 0 1px 0; } #quick-reply input[type="file"] { padding: 5px 2px; } #quick-reply .nonsense { display: none; } #quick-reply td.recaptcha { text-align: center; padding: 0 0 1px 0; } #quick-reply td.recaptcha span { display: inline-block; width: 100%; background: white; border: 1px solid #ccc; cursor: pointer; } #quick-reply td.recaptcha-response { padding: 0 0 1px 0; } @media screen and (max-width: 600px) { #quick-reply { display: none !important; } } #youtube-size input { width: 50px; } /* File selector */ .dropzone { color: #000; cursor: default; margin: auto; padding: 0px 4px; text-align: center; min-height: 50px; max-height: 140px; transition: 0.2s; background-color: rgba(200, 200, 200, 0.5); overflow-y: auto; } .dropzone-wrap { width: 100%; } .dropzone .file-hint { color: rgba(0, 0, 0, 0.5); cursor: pointer; position: relative; margin-bottom: 5px; padding: 10px 0px; top: 5px; transition: 0.2s; border: 2px dashed rgba(125, 125, 125, 0.4); } .file-hint:hover, .dropzone.dragover .file-hint { color: rgba(0, 0, 0, 1); border-color: rgba(125, 125, 125, 0.8); } .dropzone.dragover { background-color: rgba(200, 200, 200, 1); } .dropzone .file-thumbs { text-align: left; width: 100%; } .dropzone .tmb-container { padding: 3px; overflow-x: hidden; white-space: nowrap; } .dropzone .file-tmb { height: 40px; width: 70px; cursor: pointer; display: inline-block; text-align: center; background-color: rgba(187, 187, 187, 0.5); background-size: cover; background-position: center; } .dropzone .file-tmb span { font-weight: 600; position: relative; top: 13px; } .dropzone .tmb-filename { display: inline-block; vertical-align: bottom; bottom: 12px; position: relative; margin-left: 5px; } .dropzone .remove-btn { cursor: pointer; color: rgba(10, 43, 175, 0.89); display: inline-block; vertical-align: bottom; bottom: 10px; position: relative; margin-right: 5px; font-size: 20px } .dropzone .remove-btn:hover { color: rgba(125, 125, 125, 1); } table.board-list-table { display: table; margin: -2px; margin-bottom: 10px; overflow: hidden; table-layout: fixed; } table.board-list-table .board-cell { position: static; margin: 0; padding: 0; box-sizing: border-box; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } table.board-list-table .board-cell::after { content: ' '; clear: both; } table.board-list-table .board-meta { padding-right: 4px; width: 70px; } table.board-list-table .board-uri { max-width: 196px; } table.board-list-table .board-title { width: auto; } table.board-list-table .board-pph { width: 55px; padding: 4px; } table.board-list-table .board-max { width: 90px; padding: 4px; } table.board-list-table .board-unique { width: 100px; padding: 4px; } table.board-list-table .board-tags { position: relative; height: 15px; width: auto; padding: 0 15px 0 4px; } table.board-list-table .board-tags .tag-link { display: inline; } table.board-list-table .board-tags .board-cell:hover { position: absolute; background: #EEF2FF; line-height: 23px; top: 0; bottom: 0; width: 310px; } table.board-list-table tr:nth-of-type( even ) .board-tags .board-cell { background: #D6DAF0; } table.board-list-table .board-uri a { display: inline-block; float: left; } table.board-list-table .board-uri .board-nsfw { color: rgb(230,0,0); margin: 0 0 0 0.6em; float: right; } table.board-list-table .board-uri .board-sfw { color: #34345C; margin: 0 0 0 0.6em; float: right; } table.board-list-table div.board-cell { max-width: 100%; overflow: hidden; } tbody.board-list-loading { display: none; } tbody.board-list-loading .loading { height: 80px; } tbody.board-list-omitted td { background: #98E; border-top: 1px solid #000333; padding: 8px; font-size: 125%; text-align: center; } tbody.board-list-omitted #board-list-more { cursor: default; } tbody.board-list-omitted #board-list-more.board-list-hasmore { cursor: pointer; } tbody.board-list-omitted .board-page-loadmore { display: none; } tbody.board-list-omitted .board-list-hasmore .board-page-loadmore { display: inline; } aside.search-container { margin-bottom: 12px; } aside.search-container .box { margin-right: 12px; } .board-search { margin: 8px 0; } .search-item { margin: 8px 0; } .search-sfw { display: block; cursor: pointer; font-size: 110%; line-height: 120%; } #search-sfw-input { margin: 0; padding: 0; transform: scale(1.20); } #search-lang-input, #search-title-input, #search-tag-input { box-sizing: border-box; font-size: 110%; line-height: 120%; vertical-align: top; padding: 2px 0 2px 4px; max-width: 100%; min-width: 100%; width: 100%: } #search-loading { display: inline-block; vertical-align: bottom; } ul.tag-list { display: block; list-style: none; margin: 8px 8px -9px 8px; padding: 8px 0 0 0; border-top: 1px solid #000333; } ul.tag-list::after { content: ' '; display: block; clear: both; } li.tag-item { display: inline-block; float: left; font-size: 100%; list-style: none; margin: 0; padding: 0 4px 0 0; } li.tag-item:last-child { padding-bottom: 17px; } a.tag-link { overflow: hidden; white-space: nowrap; } li.tag-item a.tag-link { } td.board-tags a.tag-link { display: inline-block; margin: 0 0.4em 0 0; } @media screen and (max-width: 1100px) { aside.search-container { width: 100%; margin-bottom: 12px; } aside.search-container .box { margin-right: 0; } section.board-list { margin-top: 12px; width: 100%; } table.board-list-table .board-meta, table.board-list-table .board-pph, table.board-list-table .board-tags { padding: 0; margin: 0; font-size: 0; width: 0; } } #post-moderation-fields { display: block; } .announcement { font-size: 75%; padding-bottom: 1%; margin-left: 5%; margin-right: 5%; } /* Gallery view */ #gallery_images { position: absolute; right: 0px; bottom: 0px; top: 0px; width: 12%; background-color: rgba(0, 0, 0, 0.4); overflow: auto; } #gallery_toolbar { position: absolute; right: 12%; left: 0px; bottom: 0px; height: 32px; background-color: rgba(0, 0, 0, 0.4); text-align: right; } #gallery_images img { width: 100%; } #gallery_toolbar a { font-size: 28px; padding-right: 5px; } #gallery_main { position: absolute; left: 0px; right: 12%; bottom: 32px; top: 0px; padding: 10px; } #gallery_images img { opacity: 0.6; -webkit-transition: all 0.5s; transition: all 0.5s; } #gallery_images img:hover, #gallery_images img.active { opacity: 1; } #gallery_images img.active { -webkit-box-shadow: 0px 0px 29px 2px rgba(255,255,255,1); -moz-box-shadow: 0px 0px 29px 2px rgba(255,255,255,1); box-shadow: 0px 0px 29px 2px rgba(255,255,255,1); z-index: 1; } #gallery_main img, #gallery_main video { max-width: 100%; max-height: 100%; position: absolute; } /* Fileboard */ table.fileboard th, table.fileboard td { padding: 2px; text-align: center; } table.fileboard .intro a { margin-left: 0px; } /* Rules Popup */ #rules-popup { width: 80%; height: 80%; position: fixed; z-index: 9999; left: 50%; margin-left: -40%; top: 50%; margin-top: -40vh; background: #000000; text-align: center; font-family: sans-serif; font-size: 14px; color: #FFFFFF; } #rules-popup .rules-popup-top { font-size: 40px; line-height: 60px; position: absolute; top: 0px; height: 60px; width: 100%; } #rules-popup .rules-popup-content-wrapper { text-align: left; position: absolute; bottom: 80px; top: 60px; width: 100%; overflow: auto; } #rules-popup #rules-popup-content { padding: 10px; font-size: 12px; } #rules-popup .rules-popup-bottom { bottom: 0px; height: 80px; width: 100%; position: absolute; } #rules-popup .rules-popup-bottom-instructions { line-height: 40px; } #rules-popup .rules-popup-captcha-wrapper { height: 40px; } #rules-popup .rules-popup-captcha { display: inline-block; border: 1px solid white; font-family: serif; padding: 3px; } #rules-popup .rules-popup-form { display: inline-block; } #rules-popup .rules-popup-form-input { width: 100px; } /* dropdown for boardlist. */ .dropdown { position: relative; display: inline-block; } /* Alter details as needed, I'm not a designer. */ .dropdown-content { display: none; position: absolute; background-color: #666666; min-width: 130px; padding: 2px 6px; color: #DCA1F5; } .dropdown:hover .dropdown-content { display: block; } .own_post { font-style: italic; font-weight: normal; opacity: .666; } div.mix { display: inline-block; } footer { margin-bottom: 50px; } input[type="submit"] { border: 1px solid; background: #D6DAF0; font-size: 13px; font-family: arial,helvetica,sans-serif; } input[type="submit"]:hover { background: #E6E8F6; }
0.293506
0.089296
html { height: 100%; /* minimum spacing around "window" */ /* Feel free to use relative units, for larger gap on larger screens */ padding: 15px; box-sizing: border-box; /* position the "window" */ display: flex; flex-direction: column; align-items: center; justify-content: flex-start; /* Use this instead if you want to center the window vertically */ /*justify-content: center;*/ /* We need to explicitly set an overflow value (other than auto?) so that overflow on body is not treated as applied to this element That's just a weird quirk of the CSS spec */ overflow: hidden; /* We MUST set a background (color or image) other than transparent, or body background-color will be treated as if applied to this element That's just a weird quirk of the CSS spec Minimum possible opacity: #00000001 But that format isn't supported by IE, so use: rgba(0,0,0,0.04) */ /*background-color: rgba(0,0,0,0.04);*/ /* Note - even better - use a completely transparent 1x1 GIF, encoded as data uri */ background: url("data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); } body { margin: 0 !important; /* Feel free to override any of these */ border: 1px solid #555; border-radius: 5px; box-shadow: 0 0 10px 5px #555; background-color: white; /* You need to set an "initial" width. Can use absolute or relative units. This is more like a max width - the width will shrink as necessary on small screens. */ width: 700px; max-width: 100%; height: auto; box-sizing: border-box; overflow: auto; /* You could add top/bottom padding, too, but we prefer to set top/bottom margin on child elements Be sure to update AlertModalBreakOut when updating horizontal padding */ padding: 0 1rem; } /* Utility class that you can set on a direct child of body, so that it renders "right to the edges" of the alert window */ .AlertModalBreakOut { margin-left: -1rem; margin-right: -1rem; } /* Animation styles Note - keyframes at 100% _shouldn't_ be needed if they're the same as the "default" values, but we've run into weird browser behaviour where animations sometimes break if they aren't set. Best to always set them explicitly. */ @keyframes SimpleModal-explode { 0% {transform: scale(0);} 100% {transform: none;} } @keyframes SimpleModal-slide-down { 0% {transform: translateY(-100%);} 100% {transform: none;} } html, body { animation-duration: 0.3s; animation-timing-function: ease-in; } .SimpleModal-animating body { animation-name: SimpleModal-explode; } .SimpleModal-closing body { animation-direction: reverse; /* make sure the offscreen state persists while window is closed */ animation-fill-mode: forwards; } /* mobile style Turn off border radius, and top/left/right "gaps" between body and viewport. You might also want to force body height to 100%, but we've left it dynamic. You can change this behaviour, change the breakpoint, or drop this entirely. */ @media (max-width: 900px) { html { padding: 0; } body { width: 100%; border-radius: 0; border: none; outline: 5px solid #555; } .SimpleModal-animating body { animation-name: SimpleModal-slide-down; } }
extras/AlertModal.css
html { height: 100%; /* minimum spacing around "window" */ /* Feel free to use relative units, for larger gap on larger screens */ padding: 15px; box-sizing: border-box; /* position the "window" */ display: flex; flex-direction: column; align-items: center; justify-content: flex-start; /* Use this instead if you want to center the window vertically */ /*justify-content: center;*/ /* We need to explicitly set an overflow value (other than auto?) so that overflow on body is not treated as applied to this element That's just a weird quirk of the CSS spec */ overflow: hidden; /* We MUST set a background (color or image) other than transparent, or body background-color will be treated as if applied to this element That's just a weird quirk of the CSS spec Minimum possible opacity: #00000001 But that format isn't supported by IE, so use: rgba(0,0,0,0.04) */ /*background-color: rgba(0,0,0,0.04);*/ /* Note - even better - use a completely transparent 1x1 GIF, encoded as data uri */ background: url("data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); } body { margin: 0 !important; /* Feel free to override any of these */ border: 1px solid #555; border-radius: 5px; box-shadow: 0 0 10px 5px #555; background-color: white; /* You need to set an "initial" width. Can use absolute or relative units. This is more like a max width - the width will shrink as necessary on small screens. */ width: 700px; max-width: 100%; height: auto; box-sizing: border-box; overflow: auto; /* You could add top/bottom padding, too, but we prefer to set top/bottom margin on child elements Be sure to update AlertModalBreakOut when updating horizontal padding */ padding: 0 1rem; } /* Utility class that you can set on a direct child of body, so that it renders "right to the edges" of the alert window */ .AlertModalBreakOut { margin-left: -1rem; margin-right: -1rem; } /* Animation styles Note - keyframes at 100% _shouldn't_ be needed if they're the same as the "default" values, but we've run into weird browser behaviour where animations sometimes break if they aren't set. Best to always set them explicitly. */ @keyframes SimpleModal-explode { 0% {transform: scale(0);} 100% {transform: none;} } @keyframes SimpleModal-slide-down { 0% {transform: translateY(-100%);} 100% {transform: none;} } html, body { animation-duration: 0.3s; animation-timing-function: ease-in; } .SimpleModal-animating body { animation-name: SimpleModal-explode; } .SimpleModal-closing body { animation-direction: reverse; /* make sure the offscreen state persists while window is closed */ animation-fill-mode: forwards; } /* mobile style Turn off border radius, and top/left/right "gaps" between body and viewport. You might also want to force body height to 100%, but we've left it dynamic. You can change this behaviour, change the breakpoint, or drop this entirely. */ @media (max-width: 900px) { html { padding: 0; } body { width: 100%; border-radius: 0; border: none; outline: 5px solid #555; } .SimpleModal-animating body { animation-name: SimpleModal-slide-down; } }
0.684475
0.123498
@-moz-document url-prefix("http://theoldreader.com") { .navbar.navbar-fixed-top{ position: absolute; top: -50px; -webkit-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); -moz-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); -ms-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); -o-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */ -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); -ms-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */ } .navbar.navbar-fixed-top:hover{ top:0; -webkit-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); -moz-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); -ms-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); -o-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */ -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); -ms-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */ } .reader .container-fluid{ top:20px; } .body-fixed-top>.static{ border-bottom: 1px solid #ccc; float: left; width: 100%; } .body-fixed-top > .static .page-header{ float:left; border:0 none; margin:0; padding:0; } .body-fixed-top > .static .floating{ float:right; margin:0; padding:0; } .body-fixed-top > .static .floating .pull-left{ margin-right:5px } .reader .body-fixed-top .slide{ top:33px !important } .clr{display:none; position:absolute; top:25px; z-index:9999; background:#fff; border:1px solid #ccc; padding:5px; border-radius:4px; box-shadow:2px 2px 10px -2px #666; -webkit-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); -moz-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); -ms-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); -o-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */ -webkit-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); -moz-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); -ms-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); -o-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */ } .reader .body-fixed-top .page-header:hover .clr{ display:block; -webkit-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); -moz-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); -ms-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); -o-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */ -webkit-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); -moz-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); -ms-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); -o-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */ } }
data/usercss/88869.user.css
@-moz-document url-prefix("http://theoldreader.com") { .navbar.navbar-fixed-top{ position: absolute; top: -50px; -webkit-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); -moz-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); -ms-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); -o-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */ -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); -ms-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */ } .navbar.navbar-fixed-top:hover{ top:0; -webkit-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); -moz-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); -ms-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); -o-transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */ -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); -ms-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */ } .reader .container-fluid{ top:20px; } .body-fixed-top>.static{ border-bottom: 1px solid #ccc; float: left; width: 100%; } .body-fixed-top > .static .page-header{ float:left; border:0 none; margin:0; padding:0; } .body-fixed-top > .static .floating{ float:right; margin:0; padding:0; } .body-fixed-top > .static .floating .pull-left{ margin-right:5px } .reader .body-fixed-top .slide{ top:33px !important } .clr{display:none; position:absolute; top:25px; z-index:9999; background:#fff; border:1px solid #ccc; padding:5px; border-radius:4px; box-shadow:2px 2px 10px -2px #666; -webkit-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); -moz-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); -ms-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); -o-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */ -webkit-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); -moz-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); -ms-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); -o-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */ } .reader .body-fixed-top .page-header:hover .clr{ display:block; -webkit-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); -moz-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); -ms-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); -o-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */ -webkit-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); -moz-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); -ms-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); -o-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */ } }
0.316369
0.093058
.margin-top-20 { margin-top: 20px; } .mg-top-none { margin-top: 0; } .mg-t-3em { margin-top: 3em; } .mg-bottom-none { margin-bottom: 0; } .mg-bottom-7em { margin-bottom: 7em; } .marg-t-3em { margin-top: 3.5em; } .mg-r-2em { margin-right: 2em; } .marg-btm-9em { margin-bottom: 9em; } .marg-left-6 { margin-left: 6.3em; } .inline-block { display: inline-block; } .horizontally-center { text-align: center; } /*.vertically-center { position: relative; top: 50%; transform: translateY(-50%); } */ /* ========================================================================= Random =======================================================================*/ body { background-color: #f2f2f2; font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300; font-size: 16px; color: #555; -webkit-font-smoothing: antialiased; -webkit-overflow-scrolling: touch; width: 100%; /*background-image: url('assets/img/prism.jpg');*/ } .contents { margin: 210px 10% 0px; color: #fff } h1 { font-size: 60px; margin: 0px; text-align: center; } h1.subtitle { font-size: 36px; } h1.ugly-line { font-size: 18px; } p { font-size: 18px; } li { font-size: 18px; } /* ========================================================================= Imported Fonts =======================================================================*/ @import url(http://fonts.googleapis.com/css?family=Lato); /*@font-face { font-family: 'GeosansLight'; src: url('/assets/fonts/GeosansLight.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/GeosansLight.woff') format('woff'), url('/assets/fonts/GeosansLight.ttf') format('truetype'), url('/assets/fonts/GeosansLight.svg#GeosansLight') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'geosanslightregular'; src: url('/assets/fonts/19521.ttf') format('truetype'); font-weight: normal; font-style: normal; }*/ /* ========================================================================= PDF Modal =======================================================================*/ .iframe-container { padding-bottom: 60%; padding-top: 30px; height: 0; overflow: hidden; } .iframe-container iframe, .iframe-container object, .iframe-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* ========================================================================= Main Page Signup Buttons =======================================================================*/ .volunteer-btn { padding: 15px 51px; } .sponsor-btn-pad { padding: 15px 59px; } .main-btn { margin-top: 1em; margin-right: .5em; font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: bold; background: rgba(0, 0, 0, 0.247059); color: #fff; border-radius: 10px; /*-moz-border-radius: 10px;*/ /*-webkit-border-radius: 10px;*/ /* border: none; */ -webkit-appearance: none; -moz-appearance: none; /* text-decoration: none; */ border: 2px solid #fff; text-transform: uppercase; /* max-width: 236px; */ /* cursor: pointer; */ transition-duration: .4s; } .apply-btn { padding: 15px; } .main-btn:hover { background: rgba(255, 255, 255, 0.6); color: black; border: 2px solid #fff; } /* - dark transparent background on sponsorship buttons - potential background for typeform: https://500px.com/photo/82708617/math-blackboard-by-mr-doomits - add LinkedIn + Instagram to Team Signup Form & Training Day Signup Form - Sponsorship Form: - which sponsorship "package" are you interested in - Training Day Form: - gender (choose only 1) - are you interested in a job in edTech? - like/follow: add LinkedIn + Instagram - any dietary restrictions - will you need transportation to PayPal? - Join The Team: - What is your github (N/A if none) - LinkedIn URL (N/A if none) - school = remove picture - Shirt Size - position apply for - remove technical coordinator - maybe just put teams here - remove would you consider a job in edtech - maybe add roles we're looking for button to the right of join the team */ /* ========================================================================= Logo =======================================================================*/ .logo-container { text-align: center; } h1.training-day.marg-t-4em { font-size: 61pt; } .pp-l { color: #253B80; } .pp-r { color: #179BD7; } /* ========================================================================= Social Links =======================================================================*/ #social:hover { -webkit-transform:scale(1.1); -moz-transform:scale(1.1); -o-transform:scale(1.1); } #social { -webkit-transform:scale(0.8); /* Browser Variations: */ -moz-transform:scale(0.8); -o-transform:scale(0.8); -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; } .social-fb:hover { color: #3B5998; } .social-tw:hover { color: #4099FF; } .social-ig:hover { color: #3C4F56; } .social-em:hover { color: #f39c12; } .social-block { position: absolute; right: 1em; top: 1em; z-index: 1; } a { /* BOOTSTRAP OVERWRITE */ color: white; text-decoration: none; } /* ========================================================================= Fade Carousel =======================================================================*/ /* Fade content bs-carousel with hero headers Code snippet by maridlcrmn (Follow me on Twitter @maridlcrmn) for Bootsnipp.com Image credits: unsplash.com */ /********************************/ /* Fade Bs-carousel */ /********************************/ .fade-carousel { position: relative; height: 100vh; } .fade-carousel .carousel-inner .item { height: 100vh; } .fade-carousel .carousel-indicators > li { margin: 0 2px; /*background-color: #f39c12;*/ /*border-color: #f39c12;*/ opacity: .7; } .fade-carousel .carousel-indicators > li.active { width: 10px; height: 10px; opacity: 1; } /********************************/ /* Hero Headers */ /********************************/ .hero { position: absolute; top: 50%; left: 50%; z-index: 3; color: #fff; text-align: center; text-transform: uppercase; /*text-shadow: 1px 1px 0 rgba(0,0,0,.75);*/ -webkit-transform: translate3d(-50%,-50%,0); -moz-transform: translate3d(-50%,-50%,0); -ms-transform: translate3d(-50%,-50%,0); -o-transform: translate3d(-50%,-50%,0); transform: translate3d(-50%,-50%,0); } .hero h1 { font-size: 6em; /*font-weight: bold;*/ /*margin: 0;*/ padding: 0; } .fade-carousel .carousel-inner .item .hero { opacity: 0; -webkit-transition: 2s all ease-in-out .1s; -moz-transition: 2s all ease-in-out .1s; -ms-transition: 2s all ease-in-out .1s; -o-transition: 2s all ease-in-out .1s; transition: 2s all ease-in-out .1s; } .fade-carousel .carousel-inner .item.active .hero { opacity: 1; -webkit-transition: 2s all ease-in-out .1s; -moz-transition: 2s all ease-in-out .1s; -ms-transition: 2s all ease-in-out .1s; -o-transition: 2s all ease-in-out .1s; transition: 2s all ease-in-out .1s; } /********************************/ /* Overlay */ /********************************/ .overlay { position: absolute; width: 100%; height: 100%; z-index: 2; background-color: #080d15; opacity: .7; } /********************************/ /* Custom Buttons */ /********************************/ /*.btn.btn-lg {padding: 10px 40px;} .btn.btn-hero, .btn.btn-hero:hover, .btn.btn-hero:focus { color: #f5f5f5; background-color: #1abc9c; border-color: #1abc9c; outline: none; margin: 20px auto; }*/ /********************************/ /* Slides backgrounds */ /********************************/ .fade-carousel .slides .slide-1, .fade-carousel .slides .slide-2, .fade-carousel .slides .slide-3 { height: 100vh; background-size: cover; background-position: center center; background-repeat: no-repeat; } .fade-carousel .slides .slide-1 { background-image: url(../img/prism.jpg); } .fade-carousel .slides .slide-2 { background-image: url(../img/Paypal%20Hq.jpg); } .fade-carousel .slides .slide-3 { background-image: url(../img/Education%20Wall%20paper.jpg); } /********************************/ /* Media Queries */ /********************************/ @media screen and (min-width: 980px){ .hero { width: 980px; } } @media screen and (max-width: 640px){ .hero h1 { font-size: 3em; } }
assets/css/new-main.css
.margin-top-20 { margin-top: 20px; } .mg-top-none { margin-top: 0; } .mg-t-3em { margin-top: 3em; } .mg-bottom-none { margin-bottom: 0; } .mg-bottom-7em { margin-bottom: 7em; } .marg-t-3em { margin-top: 3.5em; } .mg-r-2em { margin-right: 2em; } .marg-btm-9em { margin-bottom: 9em; } .marg-left-6 { margin-left: 6.3em; } .inline-block { display: inline-block; } .horizontally-center { text-align: center; } /*.vertically-center { position: relative; top: 50%; transform: translateY(-50%); } */ /* ========================================================================= Random =======================================================================*/ body { background-color: #f2f2f2; font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300; font-size: 16px; color: #555; -webkit-font-smoothing: antialiased; -webkit-overflow-scrolling: touch; width: 100%; /*background-image: url('assets/img/prism.jpg');*/ } .contents { margin: 210px 10% 0px; color: #fff } h1 { font-size: 60px; margin: 0px; text-align: center; } h1.subtitle { font-size: 36px; } h1.ugly-line { font-size: 18px; } p { font-size: 18px; } li { font-size: 18px; } /* ========================================================================= Imported Fonts =======================================================================*/ @import url(http://fonts.googleapis.com/css?family=Lato); /*@font-face { font-family: 'GeosansLight'; src: url('/assets/fonts/GeosansLight.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/GeosansLight.woff') format('woff'), url('/assets/fonts/GeosansLight.ttf') format('truetype'), url('/assets/fonts/GeosansLight.svg#GeosansLight') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'geosanslightregular'; src: url('/assets/fonts/19521.ttf') format('truetype'); font-weight: normal; font-style: normal; }*/ /* ========================================================================= PDF Modal =======================================================================*/ .iframe-container { padding-bottom: 60%; padding-top: 30px; height: 0; overflow: hidden; } .iframe-container iframe, .iframe-container object, .iframe-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* ========================================================================= Main Page Signup Buttons =======================================================================*/ .volunteer-btn { padding: 15px 51px; } .sponsor-btn-pad { padding: 15px 59px; } .main-btn { margin-top: 1em; margin-right: .5em; font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: bold; background: rgba(0, 0, 0, 0.247059); color: #fff; border-radius: 10px; /*-moz-border-radius: 10px;*/ /*-webkit-border-radius: 10px;*/ /* border: none; */ -webkit-appearance: none; -moz-appearance: none; /* text-decoration: none; */ border: 2px solid #fff; text-transform: uppercase; /* max-width: 236px; */ /* cursor: pointer; */ transition-duration: .4s; } .apply-btn { padding: 15px; } .main-btn:hover { background: rgba(255, 255, 255, 0.6); color: black; border: 2px solid #fff; } /* - dark transparent background on sponsorship buttons - potential background for typeform: https://500px.com/photo/82708617/math-blackboard-by-mr-doomits - add LinkedIn + Instagram to Team Signup Form & Training Day Signup Form - Sponsorship Form: - which sponsorship "package" are you interested in - Training Day Form: - gender (choose only 1) - are you interested in a job in edTech? - like/follow: add LinkedIn + Instagram - any dietary restrictions - will you need transportation to PayPal? - Join The Team: - What is your github (N/A if none) - LinkedIn URL (N/A if none) - school = remove picture - Shirt Size - position apply for - remove technical coordinator - maybe just put teams here - remove would you consider a job in edtech - maybe add roles we're looking for button to the right of join the team */ /* ========================================================================= Logo =======================================================================*/ .logo-container { text-align: center; } h1.training-day.marg-t-4em { font-size: 61pt; } .pp-l { color: #253B80; } .pp-r { color: #179BD7; } /* ========================================================================= Social Links =======================================================================*/ #social:hover { -webkit-transform:scale(1.1); -moz-transform:scale(1.1); -o-transform:scale(1.1); } #social { -webkit-transform:scale(0.8); /* Browser Variations: */ -moz-transform:scale(0.8); -o-transform:scale(0.8); -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; } .social-fb:hover { color: #3B5998; } .social-tw:hover { color: #4099FF; } .social-ig:hover { color: #3C4F56; } .social-em:hover { color: #f39c12; } .social-block { position: absolute; right: 1em; top: 1em; z-index: 1; } a { /* BOOTSTRAP OVERWRITE */ color: white; text-decoration: none; } /* ========================================================================= Fade Carousel =======================================================================*/ /* Fade content bs-carousel with hero headers Code snippet by maridlcrmn (Follow me on Twitter @maridlcrmn) for Bootsnipp.com Image credits: unsplash.com */ /********************************/ /* Fade Bs-carousel */ /********************************/ .fade-carousel { position: relative; height: 100vh; } .fade-carousel .carousel-inner .item { height: 100vh; } .fade-carousel .carousel-indicators > li { margin: 0 2px; /*background-color: #f39c12;*/ /*border-color: #f39c12;*/ opacity: .7; } .fade-carousel .carousel-indicators > li.active { width: 10px; height: 10px; opacity: 1; } /********************************/ /* Hero Headers */ /********************************/ .hero { position: absolute; top: 50%; left: 50%; z-index: 3; color: #fff; text-align: center; text-transform: uppercase; /*text-shadow: 1px 1px 0 rgba(0,0,0,.75);*/ -webkit-transform: translate3d(-50%,-50%,0); -moz-transform: translate3d(-50%,-50%,0); -ms-transform: translate3d(-50%,-50%,0); -o-transform: translate3d(-50%,-50%,0); transform: translate3d(-50%,-50%,0); } .hero h1 { font-size: 6em; /*font-weight: bold;*/ /*margin: 0;*/ padding: 0; } .fade-carousel .carousel-inner .item .hero { opacity: 0; -webkit-transition: 2s all ease-in-out .1s; -moz-transition: 2s all ease-in-out .1s; -ms-transition: 2s all ease-in-out .1s; -o-transition: 2s all ease-in-out .1s; transition: 2s all ease-in-out .1s; } .fade-carousel .carousel-inner .item.active .hero { opacity: 1; -webkit-transition: 2s all ease-in-out .1s; -moz-transition: 2s all ease-in-out .1s; -ms-transition: 2s all ease-in-out .1s; -o-transition: 2s all ease-in-out .1s; transition: 2s all ease-in-out .1s; } /********************************/ /* Overlay */ /********************************/ .overlay { position: absolute; width: 100%; height: 100%; z-index: 2; background-color: #080d15; opacity: .7; } /********************************/ /* Custom Buttons */ /********************************/ /*.btn.btn-lg {padding: 10px 40px;} .btn.btn-hero, .btn.btn-hero:hover, .btn.btn-hero:focus { color: #f5f5f5; background-color: #1abc9c; border-color: #1abc9c; outline: none; margin: 20px auto; }*/ /********************************/ /* Slides backgrounds */ /********************************/ .fade-carousel .slides .slide-1, .fade-carousel .slides .slide-2, .fade-carousel .slides .slide-3 { height: 100vh; background-size: cover; background-position: center center; background-repeat: no-repeat; } .fade-carousel .slides .slide-1 { background-image: url(../img/prism.jpg); } .fade-carousel .slides .slide-2 { background-image: url(../img/Paypal%20Hq.jpg); } .fade-carousel .slides .slide-3 { background-image: url(../img/Education%20Wall%20paper.jpg); } /********************************/ /* Media Queries */ /********************************/ @media screen and (min-width: 980px){ .hero { width: 980px; } } @media screen and (max-width: 640px){ .hero h1 { font-size: 3em; } }
0.250363
0.056004
:root { --primaryLight: #e6f3ff; --primaryDark: #42a5f5; --secondaryDark: #181818; --secondaryLight: #ffffff; --alternativeLight: #e31566; } body { font-family: 'PT Sans', sans-serif; color: var(--secondaryDark); margin: 0px; padding: 0px; } .outer { display: table; position: absolute; height: 100%; width: 100%; } .inner { margin-left: auto; margin-right: auto; width: 500px; } .innerDashboard { margin-left: auto; margin-right: auto; width: 1000px; } .header { background-color: var(--primaryLight); text-transform: uppercase; margin-bottom: 100px; } .header ul { list-style-type: none; overflow: hidden; display: flex; float: right; } .header li a { display: block; color: var(--secondaryDark); text-align: center; padding: 14px 16px; } .header li a:hover { background-color: var(--alternativeLight); border-radius: 12px; } .pinkButton { color: var(--secondaryLight); background-color: var(--alternativeLight); font-weight: bold; border-radius: 12px; border: none; padding: 15px 128px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; -ms-transform: translateX(32%); transform: translateX(32%); margin-top: 25px; } .blueButton { color: var(--secondaryLight); background-color: var(--primaryDark); font-weight: bold; border-radius: 12px; border: none; padding: 15px 128px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; -ms-transform: translateX(32%); transform: translateX(32%); margin-top: 25px; } .title { color: var(--primaryDark); } h1 { font-weight: bold; font-size: 32px; } p { font-weight: normal; font-size: 20px; } input[type=text], select { width: 100%; padding: 12px 10px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } input[type=password] { width: 100%; padding: 12px 10px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } input[type=number]{ width: 100%; padding: 12px 10px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } #blueButtonAlternative{ color: var(--secondaryLight); background-color: var(--primaryDark); font-weight: bold; border-radius: 12px; border: none; padding: 10px 50px; text-align: center; text-decoration: none; font-size: 16px; } #view { color: var(--secondaryLight); background-color: var(--primaryDark); font-weight: bold; border-radius: 12px; font-size: 16px; } #pinkButtonAlternative{ color: var(--secondaryLight); background-color: var(--alternativeLight); font-weight: bold; border-radius: 12px; border: none; padding: 15px 50px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; } input[type=submit] { width: 100%; color: white; padding: 14px 20px; margin: 8px 0; border: none; border-radius: 4px; cursor: pointer; } img { display: block; margin-left: auto; margin-right: auto; margin-top: 80px; width: 60%; } #link { text-align: center; display: block; color: var(--primaryDark); } #header-logo { float: left; width: 150px; display: inline; margin-top: 25px; } .highlight-span { color: var(--primaryDark); } #appointments { font-family: Arial, Helvetica, sans-serif; border-collapse: collapse; width: 100%; } #appointments td, #appointments th { border: 1px solid #ddd; padding: 8px; text-align: center; } #appointments th { padding-top: 12px; padding-bottom: 12px; text-align: left; background-color: #e6f3ff; color: black; text-align: center; position: sticky; top: 0; z-index: 2 } #slots { text-align: center; width: 50%; padding: 10px; font-size: 20px; border-radius: 2px; } #options { border-radius: 45%; width: 110px; height: 100px; outline: 0; font-size: 15px; background-color: #e6f3ff; } #update button { border-radius: 45%; width: 110px; height: 100px; outline: 0; font-size: 35px; } #table { width: 100%; height: 300px; overflow: auto; } #table table { width: 100%; } summary { outline: 0; font-size: 20px; } details summary::-webkit-details-marker { display: none; } details summary { width: 100%; padding: 0.5rem 0; border-top: 1px solid black; position: relative; cursor: pointer; font-size: 1.45rem; font-weight: 300; list-style: none; } details summary:after { content: "+"; color: black; position: absolute; font-size: 1.75rem; line-height: 0; margin-top: 0.75rem; right: 0; font-weight: 200; transform-origin: center; transition: 200ms linear; } details[open] summary:after { transform: rotate(45deg); font-size: 2rem; } details summary { outline: 0; } details p { font-size: 0.95rem; margin: 0 0 1rem; padding-top: 1rem; } details[open] summary ~ * { animation: open 0.3s ease-in-out; } #addbooking { display: block; } #addbooking select { width:20%; } input[type=date] { width:42.39%; height:40px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } #parent{ display:flex; }
src/main/webapp/styles/main.css
:root { --primaryLight: #e6f3ff; --primaryDark: #42a5f5; --secondaryDark: #181818; --secondaryLight: #ffffff; --alternativeLight: #e31566; } body { font-family: 'PT Sans', sans-serif; color: var(--secondaryDark); margin: 0px; padding: 0px; } .outer { display: table; position: absolute; height: 100%; width: 100%; } .inner { margin-left: auto; margin-right: auto; width: 500px; } .innerDashboard { margin-left: auto; margin-right: auto; width: 1000px; } .header { background-color: var(--primaryLight); text-transform: uppercase; margin-bottom: 100px; } .header ul { list-style-type: none; overflow: hidden; display: flex; float: right; } .header li a { display: block; color: var(--secondaryDark); text-align: center; padding: 14px 16px; } .header li a:hover { background-color: var(--alternativeLight); border-radius: 12px; } .pinkButton { color: var(--secondaryLight); background-color: var(--alternativeLight); font-weight: bold; border-radius: 12px; border: none; padding: 15px 128px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; -ms-transform: translateX(32%); transform: translateX(32%); margin-top: 25px; } .blueButton { color: var(--secondaryLight); background-color: var(--primaryDark); font-weight: bold; border-radius: 12px; border: none; padding: 15px 128px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; -ms-transform: translateX(32%); transform: translateX(32%); margin-top: 25px; } .title { color: var(--primaryDark); } h1 { font-weight: bold; font-size: 32px; } p { font-weight: normal; font-size: 20px; } input[type=text], select { width: 100%; padding: 12px 10px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } input[type=password] { width: 100%; padding: 12px 10px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } input[type=number]{ width: 100%; padding: 12px 10px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } #blueButtonAlternative{ color: var(--secondaryLight); background-color: var(--primaryDark); font-weight: bold; border-radius: 12px; border: none; padding: 10px 50px; text-align: center; text-decoration: none; font-size: 16px; } #view { color: var(--secondaryLight); background-color: var(--primaryDark); font-weight: bold; border-radius: 12px; font-size: 16px; } #pinkButtonAlternative{ color: var(--secondaryLight); background-color: var(--alternativeLight); font-weight: bold; border-radius: 12px; border: none; padding: 15px 50px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; } input[type=submit] { width: 100%; color: white; padding: 14px 20px; margin: 8px 0; border: none; border-radius: 4px; cursor: pointer; } img { display: block; margin-left: auto; margin-right: auto; margin-top: 80px; width: 60%; } #link { text-align: center; display: block; color: var(--primaryDark); } #header-logo { float: left; width: 150px; display: inline; margin-top: 25px; } .highlight-span { color: var(--primaryDark); } #appointments { font-family: Arial, Helvetica, sans-serif; border-collapse: collapse; width: 100%; } #appointments td, #appointments th { border: 1px solid #ddd; padding: 8px; text-align: center; } #appointments th { padding-top: 12px; padding-bottom: 12px; text-align: left; background-color: #e6f3ff; color: black; text-align: center; position: sticky; top: 0; z-index: 2 } #slots { text-align: center; width: 50%; padding: 10px; font-size: 20px; border-radius: 2px; } #options { border-radius: 45%; width: 110px; height: 100px; outline: 0; font-size: 15px; background-color: #e6f3ff; } #update button { border-radius: 45%; width: 110px; height: 100px; outline: 0; font-size: 35px; } #table { width: 100%; height: 300px; overflow: auto; } #table table { width: 100%; } summary { outline: 0; font-size: 20px; } details summary::-webkit-details-marker { display: none; } details summary { width: 100%; padding: 0.5rem 0; border-top: 1px solid black; position: relative; cursor: pointer; font-size: 1.45rem; font-weight: 300; list-style: none; } details summary:after { content: "+"; color: black; position: absolute; font-size: 1.75rem; line-height: 0; margin-top: 0.75rem; right: 0; font-weight: 200; transform-origin: center; transition: 200ms linear; } details[open] summary:after { transform: rotate(45deg); font-size: 2rem; } details summary { outline: 0; } details p { font-size: 0.95rem; margin: 0 0 1rem; padding-top: 1rem; } details[open] summary ~ * { animation: open 0.3s ease-in-out; } #addbooking { display: block; } #addbooking select { width:20%; } input[type=date] { width:42.39%; height:40px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } #parent{ display:flex; }
0.506347
0.164684
@import url(../../lib/font/source-sans-pro/source-sans-pro.css); section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 { color: #222; } .reveal p { font-size: 2em; } /********************************************* * GLOBAL STYLES *********************************************/ body { background: white; background-color: white; } .reveal { font-family: "Source Sans Pro", Helvetica, sans-serif; font-size: 38px; font-weight: normal; color: #333; } ::selection { color: #fff; background: #bee4fd; text-shadow: none; } .reveal .slides > section, .reveal .slides > section > section { line-height: 1.3; font-weight: inherit; } /********************************************* * HEADERS *********************************************/ .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 { margin: 0 0 20px 0; color: #775020; font-family: "Source Sans Pro", Helvetica, sans-serif; font-weight: 600; line-height: 1.2; letter-spacing: normal; text-transform: none; text-shadow: none; word-wrap: break-word; } .reveal h1 { font-size: 4.5em; } .reveal h2 { font-size: 3.6em; } .reveal h3 { font-size: 2.9em; } .reveal h4 { font-size: 2.4em; } .reveal h1 { text-shadow: none; } /********************************************* * OTHER *********************************************/ .reveal p { margin: 20px 0; line-height: 1.3; } /* Ensure certain elements are never larger than the slide itself */ .reveal img, .reveal video, .reveal iframe { max-width: 95%; max-height: 95%; } .reveal strong, .reveal b { font-weight: bold; } .reveal em { font-style: italic; } .reveal ol, .reveal dl, .reveal ul { display: inline-block; text-align: left; margin: 0 0 0 1em; } .reveal ol { list-style-type: decimal; } .reveal ul { list-style-type: disc; } .reveal ul ul { list-style-type: square; } .reveal ul ul ul { list-style-type: circle; } .reveal ul ul, .reveal ul ol, .reveal ol ol, .reveal ol ul { display: block; margin-left: 40px; } .reveal dt { font-weight: bold; } .reveal dd { margin-left: 40px; } .reveal q, .reveal blockquote { quotes: none; } .reveal blockquote { display: block; position: relative; width: 70%; margin: 20px auto; padding: 5px; font-style: italic; background: rgba(255, 255, 255, 0.05); box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } .reveal blockquote p:first-child, .reveal blockquote p:last-child { display: inline-block; } .reveal q { font-style: italic; } .reveal pre { display: block; position: relative; width: 90%; margin: 20px auto; text-align: left; font-size: 0.55em; font-family: monospace; line-height: 1.2em; word-wrap: break-word; box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } .reveal code { font-family: monospace; } .reveal pre code { display: block; padding: 5px; overflow: auto; max-height: 400px; word-wrap: normal; } .reveal table { margin: auto; border-collapse: collapse; border-spacing: 0; } .reveal table th { font-weight: bold; } .reveal table th, .reveal table td { text-align: left; padding: 0.2em 0.5em 0.2em 0.5em; border-bottom: 1px solid; } .reveal table th[align="center"], .reveal table td[align="center"] { text-align: center; } .reveal table th[align="right"], .reveal table td[align="right"] { text-align: right; } .reveal table tr:last-child td { border-bottom: none; } .reveal sup { vertical-align: super; } .reveal sub { vertical-align: sub; } .reveal small { display: inline-block; font-size: 0.6em; line-height: 1.2em; vertical-align: top; } .reveal small * { vertical-align: top; } /********************************************* * LINKS *********************************************/ .reveal a { color: #42affa; text-decoration: none; -webkit-transition: color .15s ease; -moz-transition: color .15s ease; transition: color .15s ease; } .reveal a:hover { color: #8dcffc; text-shadow: none; border: none; } .reveal .roll span:after { color: #fff; background: #068de9; } /********************************************* * IMAGES *********************************************/ .reveal section img { margin: 15px 0px; background: rgba(255, 255, 255, 0.12); border: 4px solid #333; box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } .reveal section img.plain { border: 0; box-shadow: none; } .reveal a img { -webkit-transition: all .15s linear; -moz-transition: all .15s linear; transition: all .15s linear; } .reveal a:hover img { background: rgba(255, 255, 255, 0.2); border-color: #42affa; box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } /********************************************* * NAVIGATION CONTROLS *********************************************/ .reveal .controls .navigate-left, .reveal .controls .navigate-left.enabled { border-right-color: #42affa; } .reveal .controls .navigate-right, .reveal .controls .navigate-right.enabled { border-left-color: #42affa; } .reveal .controls .navigate-up, .reveal .controls .navigate-up.enabled { border-bottom-color: #42affa; } .reveal .controls .navigate-down, .reveal .controls .navigate-down.enabled { border-top-color: #42affa; } .reveal .controls .navigate-left.enabled:hover { border-right-color: #8dcffc; } .reveal .controls .navigate-right.enabled:hover { border-left-color: #8dcffc; } .reveal .controls .navigate-up.enabled:hover { border-bottom-color: #8dcffc; } .reveal .controls .navigate-down.enabled:hover { border-top-color: #8dcffc; } /********************************************* * PROGRESS BAR *********************************************/ .reveal .progress { background: rgba(0, 0, 0, 0.2); } .reveal .progress span { background: #42affa; -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } .pbwebmedia-logo { width: 15%; position: absolute; top: 10px; left: 10px; } .reveal section img { border: none; box-shadow: none; } .column-1 { float: left; width: 100%; } .column-2 { float: left; width: 50%; } .column-3 { float: left; width: 33%; } ul.tokens { margin: 0; padding: 0; } ul.tokens.horizontal li { display: inline-block; } ul.tokens li { padding: 10px; } img.we-are-pbwebmedia { width: 1400px; height: auto; } span.token, span.token-match { text-align: center; background: #000; display: block; padding: 0 10px; color: white; font-size: 1.5em; } span.token.inline, span.token-match.inline { display: inline-block; } span.token-match { background: #EEAB37; } .visible-paragraph { background: rgba(255, 255, 255, 0.8); color: black; display: inline-block; padding: 0 10px !important; } .reveal h1.visible-header { color: white; background: rgba(0, 0, 0, 0.8); display: inline-block; } .reveal ul { list-style-type: none; } .reveal .notes ul { list-style-type: circle; } .reveal table.no-borders td { border: 0; } .reveal h1.main-title { color: #EEAB37 !important; font-size: 4.5em; background: rgba(255, 255, 255, 0.8); display: inline-block; padding: 5px 10px; margin: 0; line-height: 1; } .reveal h2.sub-title { color: white !important; font-size: 2.5em; background: rgba(238, 171, 55, 0.8); display: inline-block; padding: 5px 10px; margin: 0; line-height: 1; } .reveal p.speakers { -webkit-text-stroke-width: 0; -webkit-text-stroke-color: black; color: white !important; font-size: 1em; display: inline-block; background: black; padding: 5px 10px; margin: 0; margin-top: 30%; line-height: 1; } .reveal p.speakers .ampersand { color: #EEAB37; } .reveal .margin-bottom { margin-bottom: 20px; } .reveal small { vertical-align: baseline; } h3.clicks, h3.pageviews, h3.visitors { font-size: 1.8em; } h3.clicks { color: #EEAB37; } h3.pageviews { color: #B6802C; } h3.visitors { color: #966627; } .reveal section img { border: none; background: none; } .reveal:before { content: "\A"; border-style: solid; border-width: 0 550px 150px 150px; border-color: transparent rgba(238, 171, 55, 0.5) transparent transparent; position: absolute; right: 0; top: 0; } .reveal:after { content: "\A"; border-style: solid; border-width: 150px 550px 150px 0; border-color: transparent transparent rgba(119, 80, 32, 0.5) transparent; position: absolute; left: 0; bottom: 0; z-index: -1; } .reveal .progress { height: 10px; } .reveal .progress span { background: #EEAB37; } .reveal .stretch { max-width: 1280px; } .reveal pre { max-width: 1280px; } .reveal pre.stretch code { box-sizing: content-box; } .reveal pre code { border: 10px solid #EEAB37; padding: 10px; font-size: 1.5em; line-height: 1em; } span.dummy { margin: 0 auto; } .reveal .progress span { position: relative; } .reveal .progress span strong { position: absolute; right: 0px; top: -36px; max-height: none; max-width: none; width: 42px; height: 36px; background-image: url("/img/owl.png"); } .reveal .progress span strong.odd { background-position: -42px; } .reveal div.node { position: relative; border-radius: 12px; border: 5px solid #000; border-top: 50px solid #000; width: 400px; } .reveal div.node span.title { position: absolute; top: -50px; left: 0px; width: 100%; text-align: center; color: #fff; } .reveal div.node ul { padding: 10px 65px; margin: 0; } .reveal div.node ul li { border-radius: 12px; height: 150px; width: 250px; margin: 25px 0; padding: 5px; text-align: center; border: 10px solid #EEAB37; font-size: 2.5em; } .reveal div.node ul li.primary { border-color: #775020; } .reveal img.fly-owl-fly { animation: owl-rotate 3s infinite; position: absolute; left: 0; top: 0; height: 200px; } @keyframes owl-rotate { 0% { transform: rotate(20deg); } 50% { transform: rotate(-20deg); } 100% { transform: rotate(20deg); } } .reveal img.reading-owl { height: 1300px; } span.speaker { background-color: red; position: absolute; top: 0; left: 0; } span.speaker :after { content: '<NAME>'; }
css/theme/pbweb.css
@import url(../../lib/font/source-sans-pro/source-sans-pro.css); section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 { color: #222; } .reveal p { font-size: 2em; } /********************************************* * GLOBAL STYLES *********************************************/ body { background: white; background-color: white; } .reveal { font-family: "Source Sans Pro", Helvetica, sans-serif; font-size: 38px; font-weight: normal; color: #333; } ::selection { color: #fff; background: #bee4fd; text-shadow: none; } .reveal .slides > section, .reveal .slides > section > section { line-height: 1.3; font-weight: inherit; } /********************************************* * HEADERS *********************************************/ .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 { margin: 0 0 20px 0; color: #775020; font-family: "Source Sans Pro", Helvetica, sans-serif; font-weight: 600; line-height: 1.2; letter-spacing: normal; text-transform: none; text-shadow: none; word-wrap: break-word; } .reveal h1 { font-size: 4.5em; } .reveal h2 { font-size: 3.6em; } .reveal h3 { font-size: 2.9em; } .reveal h4 { font-size: 2.4em; } .reveal h1 { text-shadow: none; } /********************************************* * OTHER *********************************************/ .reveal p { margin: 20px 0; line-height: 1.3; } /* Ensure certain elements are never larger than the slide itself */ .reveal img, .reveal video, .reveal iframe { max-width: 95%; max-height: 95%; } .reveal strong, .reveal b { font-weight: bold; } .reveal em { font-style: italic; } .reveal ol, .reveal dl, .reveal ul { display: inline-block; text-align: left; margin: 0 0 0 1em; } .reveal ol { list-style-type: decimal; } .reveal ul { list-style-type: disc; } .reveal ul ul { list-style-type: square; } .reveal ul ul ul { list-style-type: circle; } .reveal ul ul, .reveal ul ol, .reveal ol ol, .reveal ol ul { display: block; margin-left: 40px; } .reveal dt { font-weight: bold; } .reveal dd { margin-left: 40px; } .reveal q, .reveal blockquote { quotes: none; } .reveal blockquote { display: block; position: relative; width: 70%; margin: 20px auto; padding: 5px; font-style: italic; background: rgba(255, 255, 255, 0.05); box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } .reveal blockquote p:first-child, .reveal blockquote p:last-child { display: inline-block; } .reveal q { font-style: italic; } .reveal pre { display: block; position: relative; width: 90%; margin: 20px auto; text-align: left; font-size: 0.55em; font-family: monospace; line-height: 1.2em; word-wrap: break-word; box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } .reveal code { font-family: monospace; } .reveal pre code { display: block; padding: 5px; overflow: auto; max-height: 400px; word-wrap: normal; } .reveal table { margin: auto; border-collapse: collapse; border-spacing: 0; } .reveal table th { font-weight: bold; } .reveal table th, .reveal table td { text-align: left; padding: 0.2em 0.5em 0.2em 0.5em; border-bottom: 1px solid; } .reveal table th[align="center"], .reveal table td[align="center"] { text-align: center; } .reveal table th[align="right"], .reveal table td[align="right"] { text-align: right; } .reveal table tr:last-child td { border-bottom: none; } .reveal sup { vertical-align: super; } .reveal sub { vertical-align: sub; } .reveal small { display: inline-block; font-size: 0.6em; line-height: 1.2em; vertical-align: top; } .reveal small * { vertical-align: top; } /********************************************* * LINKS *********************************************/ .reveal a { color: #42affa; text-decoration: none; -webkit-transition: color .15s ease; -moz-transition: color .15s ease; transition: color .15s ease; } .reveal a:hover { color: #8dcffc; text-shadow: none; border: none; } .reveal .roll span:after { color: #fff; background: #068de9; } /********************************************* * IMAGES *********************************************/ .reveal section img { margin: 15px 0px; background: rgba(255, 255, 255, 0.12); border: 4px solid #333; box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } .reveal section img.plain { border: 0; box-shadow: none; } .reveal a img { -webkit-transition: all .15s linear; -moz-transition: all .15s linear; transition: all .15s linear; } .reveal a:hover img { background: rgba(255, 255, 255, 0.2); border-color: #42affa; box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } /********************************************* * NAVIGATION CONTROLS *********************************************/ .reveal .controls .navigate-left, .reveal .controls .navigate-left.enabled { border-right-color: #42affa; } .reveal .controls .navigate-right, .reveal .controls .navigate-right.enabled { border-left-color: #42affa; } .reveal .controls .navigate-up, .reveal .controls .navigate-up.enabled { border-bottom-color: #42affa; } .reveal .controls .navigate-down, .reveal .controls .navigate-down.enabled { border-top-color: #42affa; } .reveal .controls .navigate-left.enabled:hover { border-right-color: #8dcffc; } .reveal .controls .navigate-right.enabled:hover { border-left-color: #8dcffc; } .reveal .controls .navigate-up.enabled:hover { border-bottom-color: #8dcffc; } .reveal .controls .navigate-down.enabled:hover { border-top-color: #8dcffc; } /********************************************* * PROGRESS BAR *********************************************/ .reveal .progress { background: rgba(0, 0, 0, 0.2); } .reveal .progress span { background: #42affa; -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } .pbwebmedia-logo { width: 15%; position: absolute; top: 10px; left: 10px; } .reveal section img { border: none; box-shadow: none; } .column-1 { float: left; width: 100%; } .column-2 { float: left; width: 50%; } .column-3 { float: left; width: 33%; } ul.tokens { margin: 0; padding: 0; } ul.tokens.horizontal li { display: inline-block; } ul.tokens li { padding: 10px; } img.we-are-pbwebmedia { width: 1400px; height: auto; } span.token, span.token-match { text-align: center; background: #000; display: block; padding: 0 10px; color: white; font-size: 1.5em; } span.token.inline, span.token-match.inline { display: inline-block; } span.token-match { background: #EEAB37; } .visible-paragraph { background: rgba(255, 255, 255, 0.8); color: black; display: inline-block; padding: 0 10px !important; } .reveal h1.visible-header { color: white; background: rgba(0, 0, 0, 0.8); display: inline-block; } .reveal ul { list-style-type: none; } .reveal .notes ul { list-style-type: circle; } .reveal table.no-borders td { border: 0; } .reveal h1.main-title { color: #EEAB37 !important; font-size: 4.5em; background: rgba(255, 255, 255, 0.8); display: inline-block; padding: 5px 10px; margin: 0; line-height: 1; } .reveal h2.sub-title { color: white !important; font-size: 2.5em; background: rgba(238, 171, 55, 0.8); display: inline-block; padding: 5px 10px; margin: 0; line-height: 1; } .reveal p.speakers { -webkit-text-stroke-width: 0; -webkit-text-stroke-color: black; color: white !important; font-size: 1em; display: inline-block; background: black; padding: 5px 10px; margin: 0; margin-top: 30%; line-height: 1; } .reveal p.speakers .ampersand { color: #EEAB37; } .reveal .margin-bottom { margin-bottom: 20px; } .reveal small { vertical-align: baseline; } h3.clicks, h3.pageviews, h3.visitors { font-size: 1.8em; } h3.clicks { color: #EEAB37; } h3.pageviews { color: #B6802C; } h3.visitors { color: #966627; } .reveal section img { border: none; background: none; } .reveal:before { content: "\A"; border-style: solid; border-width: 0 550px 150px 150px; border-color: transparent rgba(238, 171, 55, 0.5) transparent transparent; position: absolute; right: 0; top: 0; } .reveal:after { content: "\A"; border-style: solid; border-width: 150px 550px 150px 0; border-color: transparent transparent rgba(119, 80, 32, 0.5) transparent; position: absolute; left: 0; bottom: 0; z-index: -1; } .reveal .progress { height: 10px; } .reveal .progress span { background: #EEAB37; } .reveal .stretch { max-width: 1280px; } .reveal pre { max-width: 1280px; } .reveal pre.stretch code { box-sizing: content-box; } .reveal pre code { border: 10px solid #EEAB37; padding: 10px; font-size: 1.5em; line-height: 1em; } span.dummy { margin: 0 auto; } .reveal .progress span { position: relative; } .reveal .progress span strong { position: absolute; right: 0px; top: -36px; max-height: none; max-width: none; width: 42px; height: 36px; background-image: url("/img/owl.png"); } .reveal .progress span strong.odd { background-position: -42px; } .reveal div.node { position: relative; border-radius: 12px; border: 5px solid #000; border-top: 50px solid #000; width: 400px; } .reveal div.node span.title { position: absolute; top: -50px; left: 0px; width: 100%; text-align: center; color: #fff; } .reveal div.node ul { padding: 10px 65px; margin: 0; } .reveal div.node ul li { border-radius: 12px; height: 150px; width: 250px; margin: 25px 0; padding: 5px; text-align: center; border: 10px solid #EEAB37; font-size: 2.5em; } .reveal div.node ul li.primary { border-color: #775020; } .reveal img.fly-owl-fly { animation: owl-rotate 3s infinite; position: absolute; left: 0; top: 0; height: 200px; } @keyframes owl-rotate { 0% { transform: rotate(20deg); } 50% { transform: rotate(-20deg); } 100% { transform: rotate(20deg); } } .reveal img.reading-owl { height: 1300px; } span.speaker { background-color: red; position: absolute; top: 0; left: 0; } span.speaker :after { content: '<NAME>'; }
0.416797
0.065366
.commentPreviewWrapper{ background-color: #e6ffed; margin-right: 10px; } .commentTextarea { padding: 5px 8px; border-radius: 6px; border-top: 1px solid #aaa; border-left: 1px solid #aaa; border-right: 2px solid #aaa; border-bottom: 2px solid #aaa; background-image: none; background-color: white; width: auto; height: 200px; white-space: wrap; resize: vertical; } .submitButton { display: inline-block; padding: 0.3em 1em; text-decoration: none; background-color: white; color: #61ff4d; border: solid 2px #61ff4d; border-radius: 3px; transition: .4s; } .submitButton:hover { background: #61ff4d; color: white; } .cancelButton { display: inline-block; padding: 0.3em 1em; text-decoration: none; background-color: white; color: #ff4242; border: solid 2px #ff4242; border-radius: 3px; transition: .4s; } .cancelButton:hover { background: #ff4242; color: white; } .previewButton { display: inline-block; padding: 0.3em 1em; text-decoration: none; background-color: white; color: #b4b4b4; border: solid 2px #b4b4b4; border-radius: 3px; transition: .4s; } .editButton { background-color: #e6ffed; color: #b4b4b4; border: none; text-align: center; } .popover { max-width: 700px; } [name] { scroll-margin-top: 64px; } div#article div{ padding: 0 0 0 0; margin: 0 0 0 0; } div#article div.add { padding-left: 3mm; padding-bottom: 0mm; margin: 0 0 0 0; } div#article div.box { border-width:thin; border-color:blue; border-style:solid; } div#article p{ margin: 0 0 0 0; } div#article a{text-decoration:none} a:hover { color: red; } div#article a.ref { font-size:x-small; } div#article a.ref:link { color:green; } div#article a.ref:hover { color: red; } div#article a.txt:link { color:black; } div#article a.txt:hover { color: red; } div#article .wikiactions ul { background-color: DarkSeaGreen ; color:blue; margin: 0; padding: 6px; list-style-type: none; border-bottom: 1px solid #000; } div#article .wikiactions li { display: inline; padding: .2em .4em; } div#article .wikiactions a {text-decoration:underline;} div#article span.kw {font-weight: bold; } div#article span.lab {font-style: italic; } div#article span.comment {font-style: italic; } div#article span.hide { display: none; } div#article span.p1:hover { color : inherit; background-color : #BAFFFF; } div#article span.p2:hover { color : inherit; background-color : #FFCACA; } div#article span.p3:hover { color : inherit; background-color : #FFFFBA; } div#article span.p4:hover { color : inherit; background-color : #CACAFF; } div#article span.p5:hover { color : inherit; background-color : #CAFFCA; } div#article span.p0:hover { color : inherit; background-color : #FFBAFF; } div#article .default { background-color: white; color: black; } div#article .default:hover { background-color: white; color: black; } #tt { position:fixed; display:block; font-size: small; background: LightYellow; padding:2px 12px 3px 7px; margin-left:5px;} div#article :target { background: #5D9BF7; border: solid 1px #aaa;} div#article .selected {background-color : #b0c8f5;}
emwiki/article/static/article/css/index.css
.commentPreviewWrapper{ background-color: #e6ffed; margin-right: 10px; } .commentTextarea { padding: 5px 8px; border-radius: 6px; border-top: 1px solid #aaa; border-left: 1px solid #aaa; border-right: 2px solid #aaa; border-bottom: 2px solid #aaa; background-image: none; background-color: white; width: auto; height: 200px; white-space: wrap; resize: vertical; } .submitButton { display: inline-block; padding: 0.3em 1em; text-decoration: none; background-color: white; color: #61ff4d; border: solid 2px #61ff4d; border-radius: 3px; transition: .4s; } .submitButton:hover { background: #61ff4d; color: white; } .cancelButton { display: inline-block; padding: 0.3em 1em; text-decoration: none; background-color: white; color: #ff4242; border: solid 2px #ff4242; border-radius: 3px; transition: .4s; } .cancelButton:hover { background: #ff4242; color: white; } .previewButton { display: inline-block; padding: 0.3em 1em; text-decoration: none; background-color: white; color: #b4b4b4; border: solid 2px #b4b4b4; border-radius: 3px; transition: .4s; } .editButton { background-color: #e6ffed; color: #b4b4b4; border: none; text-align: center; } .popover { max-width: 700px; } [name] { scroll-margin-top: 64px; } div#article div{ padding: 0 0 0 0; margin: 0 0 0 0; } div#article div.add { padding-left: 3mm; padding-bottom: 0mm; margin: 0 0 0 0; } div#article div.box { border-width:thin; border-color:blue; border-style:solid; } div#article p{ margin: 0 0 0 0; } div#article a{text-decoration:none} a:hover { color: red; } div#article a.ref { font-size:x-small; } div#article a.ref:link { color:green; } div#article a.ref:hover { color: red; } div#article a.txt:link { color:black; } div#article a.txt:hover { color: red; } div#article .wikiactions ul { background-color: DarkSeaGreen ; color:blue; margin: 0; padding: 6px; list-style-type: none; border-bottom: 1px solid #000; } div#article .wikiactions li { display: inline; padding: .2em .4em; } div#article .wikiactions a {text-decoration:underline;} div#article span.kw {font-weight: bold; } div#article span.lab {font-style: italic; } div#article span.comment {font-style: italic; } div#article span.hide { display: none; } div#article span.p1:hover { color : inherit; background-color : #BAFFFF; } div#article span.p2:hover { color : inherit; background-color : #FFCACA; } div#article span.p3:hover { color : inherit; background-color : #FFFFBA; } div#article span.p4:hover { color : inherit; background-color : #CACAFF; } div#article span.p5:hover { color : inherit; background-color : #CAFFCA; } div#article span.p0:hover { color : inherit; background-color : #FFBAFF; } div#article .default { background-color: white; color: black; } div#article .default:hover { background-color: white; color: black; } #tt { position:fixed; display:block; font-size: small; background: LightYellow; padding:2px 12px 3px 7px; margin-left:5px;} div#article :target { background: #5D9BF7; border: solid 1px #aaa;} div#article .selected {background-color : #b0c8f5;}
0.377655
0.153264
body { background: #fff; } @font-face { font-family: "NunitoSans"; src: url('../font/NunitoSans-Regular.ttf'); font-style: normal; font-weight: normal; } @font-face { font-family: "NunitoSans"; src: url('../font/NunitoSans-LightItalic.ttf'); font-style: italic; font-weight: 300; } @font-face { font-family: "NunitoSans"; src: url('../font/NunitoSans-Bold.ttf'); font-style: normal; font-weight: 700; } .menu-btn { display: none; } .search-btn, .search-ip { border-radius: 0; } .search-ip { border: 1px solid #348dcc; background: #348dcc; font-family: "NunitoSans"; font-weight: 300; font-style: italic; } .search-ip:focus { } .search-frm { color: #fff; padding-bottom: 10px; margin-top: 5px; } .search-ip::-webkit-input-placeholder { /* Chrome/Opera/Safari */ color: #fff; } .search-ip::-moz-placeholder { /* Firefox 19+ */ color: #fff; } .search-ip:-ms-input-placeholder { /* IE 10+ */ color: #fff; } .search-ip:-moz-placeholder { /* Firefox 18- */ color: #fff; } .top { padding-bottom: 0; } .logo { width: 60%; } .quan { position: absolute; top: -4px; left: 58%; background: red; padding: 3px 6px; border-radius: 50%; } .order12 { border-top: 1px solid #ccc; margin-top: 20px; } .carousel_top .owl-dots { bottom: -9px; } .carousel-index .owl-nav.disabled { position: static; } .new-book { border-top: 10px solid #ececec; } .new-book .tit { font-family: "NunitoSans"; font-size: 36px; font-weight: 700; } .index-list-wrap, .nbook-wrap { width: 100%; overflow-x: auto; } .index-list-wrap ul, .nbook-list { display: flex; width: max-content; } .index-list-wrap ul li { padding: 35px 20px; } .index-list-wrap ul li, .nbook-list li { display: inline-block; } .index-list-wrap ul li a { display: flex; flex-direction: column; align-items: center; font-family: "NunitoSans"; font-weight: 700; font-size: 24px; } .index-list-wrap ul li:nth-child(3n-2) a { color: #348dcc; } .index-list-wrap ul li:nth-child(3n-1) a { color: #7cb544; } .index-list-wrap ul li:nth-child(3n) a { color: #e83434; } .carousel_detail { border: 0; } .nbook-wrap { border-bottom: 1px solid #ccc; border-top: 1px solid #ccc; font-family: "NunitoSans"; } .nbook-list { display: flex; width: max-content; padding-bottom: 20px; padding-top: 20px; margin-left: auto; margin-right: auto; } .nbook-list li a { padding-left: 22px; padding-right: 22px; border-left: 1px solid #444; color: #444; } .nbook-list li:first-child a { border-left: 0; } .pro-name a { font-size: 13px; } .pro-price { font-size: 15px; margin-top: 5px; margin-bottom: 10px; } .carousel-index .carousel_detail-item { border: 1px solid #ccc; margin-bottom: 15px; padding: 15px 0 0 0; } .carousel-index .carousel_detail-item a img { height: 210px; object-fit: cover; object-position: center; } .carousel-index .btn-buy { width: 100%; padding-top: 15px; padding-bottom: 15px; position: static; top: 50%; left: 50%; transform: translate(0); opacity: 1; border-radius: 0; background: #ccc; color: #444; margin-top: 15px; } .carousel-index .carousel_detail-item > img { width: auto; position: absolute; right: 10px; top: 10px; } #mm-1 > .mm-navbar > .mm-title { display: none; } .owl-theme.carousel-index .owl-dots .owl-dot, .owl-theme.carousel-re-pro .owl-dots .owl-dot { border: 1px solid #ccc; } .owl-theme.carousel-index .owl-dots .owl-dot.active span, .owl-theme.carousel-re-pro .owl-dots .owl-dot.active span { background: #ccc; } .owl-theme.carousel-index .owl-dots .owl-dot, .owl-theme.carousel-re-pro .owl-dots .owl-dot { border-radius: 100%; padding: 2px 0px; margin: 2px; } .owl-theme.carousel-index .owl-dots .owl-dot span, .owl-theme.carousel-re-pro .owl-dots .owl-dot span { margin: 2px 4px; } .owl-theme.carousel-index .owl-nav.disabled+.owl-dots { margin-bottom: 25px; margin-top: 0; } .brand { padding-top: 20px; padding-bottom: 20px; background: #ececec; } .khach { background: url(../images/khachbg.jpg) no-repeat center center; background-size: cover; padding-top: 70px; padding-bottom: 30px; border-top: 0; } .khach-con { position: static; transform: translate(0); } .carousel_khach blockquote { margin-left: 0; margin-right: 0; } .carousel_khach blockquote:before { content: url(../images/quote.png); display: block; } .khach-img { margin-top: 50px; margin-bottom: 50px; } .khach-img img { max-width: 25%; } .owl-theme.carousel_khach .owl-nav.disabled+.owl-dots { bottom: -20px; width: 100%; } .owl-theme.carousel_khach .owl-dots .owl-dot { width: 30%; height: 16px; border-radius: 0; margin-right: 2px; background: #fff; } .owl-theme.carousel_khach .owl-dots .owl-dot span { display: none; } .owl-theme.carousel_khach .owl-dots .owl-dot.active { background: rgba(255,255,255,.5); } .ft-ori img { max-width: 75%; } .ft-ori-p { font-size: 16px; margin-top: 15px; } .ft-ori a { color: #444; } .ft-ori > p { font-size: 16px; margin-bottom: 10px; } .ft-card { border-top: 15px solid #ececec; border-bottom: 15px solid #ececec; } .ft-last { background: #fff; } .ft-last h2 { font-weight: 400; } .pdetail-intro-tit { color: #444; } .seemore { padding-top: 25px; border-top: 1px solid #ccc; } .info-tab-btn { border: 0; color: #348dcc; background: transparent; } .pdetail-content-wrap { height: 50px; overflow: hidden; } .th { height: auto; } /* .mm-panels { background: url(../mimages/logo.png) no-repeat bottom 15px center; } */ @media (max-width: 767px) { .popup { display: none; } .menu-btn { display: inline-block; } .menu { display: none; } .khach-wrap blockquote { height: auto; } #gal1 { margin-top: 115px; } .list-pro { padding-bottom: 10px; } } @media (max-width: 375px) { .curent-book .carousel_detail-item, .pdetail-re .carousel_detail-item, .carousel-re-pro .carousel_detail-item { border-width: 1px 1px 1px 1px; } }
public/css/mstyle.css
body { background: #fff; } @font-face { font-family: "NunitoSans"; src: url('../font/NunitoSans-Regular.ttf'); font-style: normal; font-weight: normal; } @font-face { font-family: "NunitoSans"; src: url('../font/NunitoSans-LightItalic.ttf'); font-style: italic; font-weight: 300; } @font-face { font-family: "NunitoSans"; src: url('../font/NunitoSans-Bold.ttf'); font-style: normal; font-weight: 700; } .menu-btn { display: none; } .search-btn, .search-ip { border-radius: 0; } .search-ip { border: 1px solid #348dcc; background: #348dcc; font-family: "NunitoSans"; font-weight: 300; font-style: italic; } .search-ip:focus { } .search-frm { color: #fff; padding-bottom: 10px; margin-top: 5px; } .search-ip::-webkit-input-placeholder { /* Chrome/Opera/Safari */ color: #fff; } .search-ip::-moz-placeholder { /* Firefox 19+ */ color: #fff; } .search-ip:-ms-input-placeholder { /* IE 10+ */ color: #fff; } .search-ip:-moz-placeholder { /* Firefox 18- */ color: #fff; } .top { padding-bottom: 0; } .logo { width: 60%; } .quan { position: absolute; top: -4px; left: 58%; background: red; padding: 3px 6px; border-radius: 50%; } .order12 { border-top: 1px solid #ccc; margin-top: 20px; } .carousel_top .owl-dots { bottom: -9px; } .carousel-index .owl-nav.disabled { position: static; } .new-book { border-top: 10px solid #ececec; } .new-book .tit { font-family: "NunitoSans"; font-size: 36px; font-weight: 700; } .index-list-wrap, .nbook-wrap { width: 100%; overflow-x: auto; } .index-list-wrap ul, .nbook-list { display: flex; width: max-content; } .index-list-wrap ul li { padding: 35px 20px; } .index-list-wrap ul li, .nbook-list li { display: inline-block; } .index-list-wrap ul li a { display: flex; flex-direction: column; align-items: center; font-family: "NunitoSans"; font-weight: 700; font-size: 24px; } .index-list-wrap ul li:nth-child(3n-2) a { color: #348dcc; } .index-list-wrap ul li:nth-child(3n-1) a { color: #7cb544; } .index-list-wrap ul li:nth-child(3n) a { color: #e83434; } .carousel_detail { border: 0; } .nbook-wrap { border-bottom: 1px solid #ccc; border-top: 1px solid #ccc; font-family: "NunitoSans"; } .nbook-list { display: flex; width: max-content; padding-bottom: 20px; padding-top: 20px; margin-left: auto; margin-right: auto; } .nbook-list li a { padding-left: 22px; padding-right: 22px; border-left: 1px solid #444; color: #444; } .nbook-list li:first-child a { border-left: 0; } .pro-name a { font-size: 13px; } .pro-price { font-size: 15px; margin-top: 5px; margin-bottom: 10px; } .carousel-index .carousel_detail-item { border: 1px solid #ccc; margin-bottom: 15px; padding: 15px 0 0 0; } .carousel-index .carousel_detail-item a img { height: 210px; object-fit: cover; object-position: center; } .carousel-index .btn-buy { width: 100%; padding-top: 15px; padding-bottom: 15px; position: static; top: 50%; left: 50%; transform: translate(0); opacity: 1; border-radius: 0; background: #ccc; color: #444; margin-top: 15px; } .carousel-index .carousel_detail-item > img { width: auto; position: absolute; right: 10px; top: 10px; } #mm-1 > .mm-navbar > .mm-title { display: none; } .owl-theme.carousel-index .owl-dots .owl-dot, .owl-theme.carousel-re-pro .owl-dots .owl-dot { border: 1px solid #ccc; } .owl-theme.carousel-index .owl-dots .owl-dot.active span, .owl-theme.carousel-re-pro .owl-dots .owl-dot.active span { background: #ccc; } .owl-theme.carousel-index .owl-dots .owl-dot, .owl-theme.carousel-re-pro .owl-dots .owl-dot { border-radius: 100%; padding: 2px 0px; margin: 2px; } .owl-theme.carousel-index .owl-dots .owl-dot span, .owl-theme.carousel-re-pro .owl-dots .owl-dot span { margin: 2px 4px; } .owl-theme.carousel-index .owl-nav.disabled+.owl-dots { margin-bottom: 25px; margin-top: 0; } .brand { padding-top: 20px; padding-bottom: 20px; background: #ececec; } .khach { background: url(../images/khachbg.jpg) no-repeat center center; background-size: cover; padding-top: 70px; padding-bottom: 30px; border-top: 0; } .khach-con { position: static; transform: translate(0); } .carousel_khach blockquote { margin-left: 0; margin-right: 0; } .carousel_khach blockquote:before { content: url(../images/quote.png); display: block; } .khach-img { margin-top: 50px; margin-bottom: 50px; } .khach-img img { max-width: 25%; } .owl-theme.carousel_khach .owl-nav.disabled+.owl-dots { bottom: -20px; width: 100%; } .owl-theme.carousel_khach .owl-dots .owl-dot { width: 30%; height: 16px; border-radius: 0; margin-right: 2px; background: #fff; } .owl-theme.carousel_khach .owl-dots .owl-dot span { display: none; } .owl-theme.carousel_khach .owl-dots .owl-dot.active { background: rgba(255,255,255,.5); } .ft-ori img { max-width: 75%; } .ft-ori-p { font-size: 16px; margin-top: 15px; } .ft-ori a { color: #444; } .ft-ori > p { font-size: 16px; margin-bottom: 10px; } .ft-card { border-top: 15px solid #ececec; border-bottom: 15px solid #ececec; } .ft-last { background: #fff; } .ft-last h2 { font-weight: 400; } .pdetail-intro-tit { color: #444; } .seemore { padding-top: 25px; border-top: 1px solid #ccc; } .info-tab-btn { border: 0; color: #348dcc; background: transparent; } .pdetail-content-wrap { height: 50px; overflow: hidden; } .th { height: auto; } /* .mm-panels { background: url(../mimages/logo.png) no-repeat bottom 15px center; } */ @media (max-width: 767px) { .popup { display: none; } .menu-btn { display: inline-block; } .menu { display: none; } .khach-wrap blockquote { height: auto; } #gal1 { margin-top: 115px; } .list-pro { padding-bottom: 10px; } } @media (max-width: 375px) { .curent-book .carousel_detail-item, .pdetail-re .carousel_detail-item, .carousel-re-pro .carousel_detail-item { border-width: 1px 1px 1px 1px; } }
0.322099
0.071526
@responsive { .rotate-0 { transform: rotate(0deg); } .rotate-45 { transform: rotate(45deg); } .rotate--45 { transform: rotate(-45deg); } } /* -------------------------- Navigation -------------------------- */ .navigation-wrapper { @apply bg-white fixed top-0 left-0 p-6 z-10 w-full h-screen; transform: translateX(-200%); @screen md { @apply bg-transparent h-auto left-auto block static top-auto p-0 w-full top-auto; transform: translateX(0); } } .navigation-wrapper--is-active { @apply block bg-black; transform: translateX(0); @screen md { @apply block bg-white; transform: translateX(0); } } .navigation-button { padding: 15px; @apply bg-black fixed top-0 right-0 w-12 h-12 block z-10 cursor-pointer; @screen md { @apply hidden; } } .navigation-button__inside { @apply relative w-full h-full z-50; } .navigation-button__lines { @apply bg-white block absolute top-0 w-full opacity-100 h-px } .navigation-button.is-active { @apply bg-black; } .navigation-button.is-active .navigation-button__line-1 { @apply hidden left-0; margin-top: 2px; } .navigation-button.is-active .navigation-button__line-2 { @apply left-0; margin-top: 10px; transform: rotate(45deg); } .navigation-button.is-active .navigation-button__line-3 { @apply left-0; top: -6px; transform: rotate(-45deg); } .navigation-button.is-active .navigation-button__line-4 { @apply hidden right-0; } .navigation-button.is-active .navigation-button__line-5 { @apply hidden right-0; margin-top: 2px; } .navigation-button.is-active .navigation-button__line-6 { @apply hidden right-0; margin-top: 10px; } .navigation-wrapper__list-item { margin: 3px 0; @screen md { @apply mx-1 inline-block; } } .navigation-wrapper__link.is-active { @apply text-white underline block py-1 px-4; @screen md { @apply text-black underline block py-1 px-4; } } .navigation-wrapper__link { @apply text-gray-800 block py-1 px-4; }
src/styles/partials/_navigation.css
@responsive { .rotate-0 { transform: rotate(0deg); } .rotate-45 { transform: rotate(45deg); } .rotate--45 { transform: rotate(-45deg); } } /* -------------------------- Navigation -------------------------- */ .navigation-wrapper { @apply bg-white fixed top-0 left-0 p-6 z-10 w-full h-screen; transform: translateX(-200%); @screen md { @apply bg-transparent h-auto left-auto block static top-auto p-0 w-full top-auto; transform: translateX(0); } } .navigation-wrapper--is-active { @apply block bg-black; transform: translateX(0); @screen md { @apply block bg-white; transform: translateX(0); } } .navigation-button { padding: 15px; @apply bg-black fixed top-0 right-0 w-12 h-12 block z-10 cursor-pointer; @screen md { @apply hidden; } } .navigation-button__inside { @apply relative w-full h-full z-50; } .navigation-button__lines { @apply bg-white block absolute top-0 w-full opacity-100 h-px } .navigation-button.is-active { @apply bg-black; } .navigation-button.is-active .navigation-button__line-1 { @apply hidden left-0; margin-top: 2px; } .navigation-button.is-active .navigation-button__line-2 { @apply left-0; margin-top: 10px; transform: rotate(45deg); } .navigation-button.is-active .navigation-button__line-3 { @apply left-0; top: -6px; transform: rotate(-45deg); } .navigation-button.is-active .navigation-button__line-4 { @apply hidden right-0; } .navigation-button.is-active .navigation-button__line-5 { @apply hidden right-0; margin-top: 2px; } .navigation-button.is-active .navigation-button__line-6 { @apply hidden right-0; margin-top: 10px; } .navigation-wrapper__list-item { margin: 3px 0; @screen md { @apply mx-1 inline-block; } } .navigation-wrapper__link.is-active { @apply text-white underline block py-1 px-4; @screen md { @apply text-black underline block py-1 px-4; } } .navigation-wrapper__link { @apply text-gray-800 block py-1 px-4; }
0.338514
0.147678
*{ margin: 0; padding: 0; } header{ display: block; width: 100%; height: 80px; border-bottom: 3px solid darkgrey; } #logo{ display: inline-block; float: left; margin-left: 120px; padding-top: 5px; } .header-elements{ display: inline-block; float: right; margin: 20px; vertical-align: center; color: black; text-decoration: none; padding-top: 10px; } #last-element{ margin-right: 150px; } .header-elements:hover{ color: lightgrey; } .container{ width: 100%; height: 1000px; background-color: white; margin: 0; display: block; margin-left: auto; margin-right: auto; } .content{ background-color: darkblue; display: flex; margin: 15px; width: 98%; height: 525px; } .sec{ height: 100%; float: left; width: 50%; padding: 10px; } .h-position{ position: absolute; top: 35%; bottom: 25%; left: 15%; } .sec-p{ color: white; text-align: left; font-size: 40px; } #sec-p1{ font-size: 32px; } .content-2{ display: block; background-color: rgb(67, 146, 113); margin: 15px; height: 400px; padding: 0 50px; margin-top: 20px; } .content-2-1{ height: 175px; padding: 10px 0; } .img-elements{ border-radius: 20px; width: 300px; height: 150px; } #text-right{ margin: 20px 0px 20px 325px; } #text-left{ margin: 20px 325px 25px 0px; } footer{ display: block; width: 100%; height: 80px; border-top: 3px solid darkgrey; } .text-footer{ display: inline-block; float: left; padding-top: 10px; margin: 20px 20px 20px 120px; } .menu{ height: 80px; background-color: rgb(141, 238, 141); margin: 15px; } .menu-p1{ float: left; font-size: 36px; color: white; margin: 20px 0px 10px 105px; } .menu-p2{ float: right; color: white; font-size: 20px; margin: 34px 105px 10px 0px; } /* */ .cards{ display: flex; width: 98%; margin: 15px; height: 800px; background-color: rgb(207, 207, 207); } .cards h1{ height: 50px; width: 85%; padding: 12px; border-top: 2px inset white; border-bottom: 2px outset white; display: flex; justify-content: center; margin-left: auto; margin-right: auto; margin-bottom: 50px; color: white; } .cards-wrap{ width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; margin-top: 25px; background-color: rgb(207, 207, 207); } .card{ list-style: none; } .card li{ width: 36.5vh; height: auto; margin: 10px; display: inline-block; background-color: white; margin-top: 0; border-radius: 15px; } .card li img{ margin-top: 10px; } .card li p{ text-align: justify; font-size: 18px; color: black; margin: 25px; } .card hr{ margin: 25px; border: 1px solid rgb(46, 46, 46); } .card li h2{ text-align: center; font-size: 32px; color: black; margin: 10px; padding: 10px; } /* */ .contact-content{ display: flex; width: 98%; margin: 15px; height: 500px; background-color: rgb(207, 207, 207); } .contact-wrap{ margin: 20px 150px 0px 150px; } .contact-left{ width: 50%; float: left; } .contact-left h2{ color: white; font-size: 32px; } .contact-right{ width: 49%; float: right; } .contact-right p{ float: right; margin-top: 40px; margin-right: 58px; }
Introduction to Web Design/OWD_lab4/style.css
*{ margin: 0; padding: 0; } header{ display: block; width: 100%; height: 80px; border-bottom: 3px solid darkgrey; } #logo{ display: inline-block; float: left; margin-left: 120px; padding-top: 5px; } .header-elements{ display: inline-block; float: right; margin: 20px; vertical-align: center; color: black; text-decoration: none; padding-top: 10px; } #last-element{ margin-right: 150px; } .header-elements:hover{ color: lightgrey; } .container{ width: 100%; height: 1000px; background-color: white; margin: 0; display: block; margin-left: auto; margin-right: auto; } .content{ background-color: darkblue; display: flex; margin: 15px; width: 98%; height: 525px; } .sec{ height: 100%; float: left; width: 50%; padding: 10px; } .h-position{ position: absolute; top: 35%; bottom: 25%; left: 15%; } .sec-p{ color: white; text-align: left; font-size: 40px; } #sec-p1{ font-size: 32px; } .content-2{ display: block; background-color: rgb(67, 146, 113); margin: 15px; height: 400px; padding: 0 50px; margin-top: 20px; } .content-2-1{ height: 175px; padding: 10px 0; } .img-elements{ border-radius: 20px; width: 300px; height: 150px; } #text-right{ margin: 20px 0px 20px 325px; } #text-left{ margin: 20px 325px 25px 0px; } footer{ display: block; width: 100%; height: 80px; border-top: 3px solid darkgrey; } .text-footer{ display: inline-block; float: left; padding-top: 10px; margin: 20px 20px 20px 120px; } .menu{ height: 80px; background-color: rgb(141, 238, 141); margin: 15px; } .menu-p1{ float: left; font-size: 36px; color: white; margin: 20px 0px 10px 105px; } .menu-p2{ float: right; color: white; font-size: 20px; margin: 34px 105px 10px 0px; } /* */ .cards{ display: flex; width: 98%; margin: 15px; height: 800px; background-color: rgb(207, 207, 207); } .cards h1{ height: 50px; width: 85%; padding: 12px; border-top: 2px inset white; border-bottom: 2px outset white; display: flex; justify-content: center; margin-left: auto; margin-right: auto; margin-bottom: 50px; color: white; } .cards-wrap{ width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; margin-top: 25px; background-color: rgb(207, 207, 207); } .card{ list-style: none; } .card li{ width: 36.5vh; height: auto; margin: 10px; display: inline-block; background-color: white; margin-top: 0; border-radius: 15px; } .card li img{ margin-top: 10px; } .card li p{ text-align: justify; font-size: 18px; color: black; margin: 25px; } .card hr{ margin: 25px; border: 1px solid rgb(46, 46, 46); } .card li h2{ text-align: center; font-size: 32px; color: black; margin: 10px; padding: 10px; } /* */ .contact-content{ display: flex; width: 98%; margin: 15px; height: 500px; background-color: rgb(207, 207, 207); } .contact-wrap{ margin: 20px 150px 0px 150px; } .contact-left{ width: 50%; float: left; } .contact-left h2{ color: white; font-size: 32px; } .contact-right{ width: 49%; float: right; } .contact-right p{ float: right; margin-top: 40px; margin-right: 58px; }
0.359027
0.060197
.content { width: 1200px; min-width: 1200px; margin: 10px auto 0; } .content .content_l { width: 230px; } .content .content_l .down { border: 1px solid rgb(228, 228, 228); } .content .content_l .down>h3 { font-size: 14px; color: #333; padding: 8px 10px; font-weight: 900; cursor: pointer; border-bottom: 1px solid rgb(228, 228, 228); background: rgb(239, 239, 239); } .content .content_l .down>h3>span { display: inline-block; width: 16px; height: 16px; border-radius: 50%; font-size: 12px; text-align: center; line-height: 16px; background: rgb(168, 167, 167); color: white; margin-right: 7px; } .content .content_l .down>ul { display: none; } .content .content_l .down>ul>li { cursor: pointer; font-size: 12px; color: rgb(51, 51, 51); margin: 10px 0 10px 38px; } .content .content_l .down>ul>li:hover { color: red; } .content .content_l .rank { border: 1px solid rgb(228, 228, 228); border-bottom: 0 none; margin-top: 10px; } .content .content_l .rank>h3 { padding: 8px 0; text-align: center; font-size: 14px; color: rgb(51, 51, 90); font-weight: 900; background: rgb(246, 246, 246); } .content .content_l .rank>div { padding-bottom: 10px; border-bottom: 1px solid rgb(228, 228, 228); } .content .content_l .rank>div>a:nth-of-type(1) { display: block; width: 120px; height: 120px; margin: 10px auto 10px; } .content .content_l .rank>div>a:nth-of-type(1)>img { display: block; width: 100%; height: 100%; } .content .content_l .rank>div>a:nth-of-type(2) { display: block; height: 18px; font-size: 12px; padding: 0 7px; color: rgb(102, 102, 102); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .content .content_l .rank>div>div { color: red; font-weight: 900; text-align: center; } .content .content_r { width: 960px; } .content .content_r .sort { padding: 6px; border-top: 2px solid rgb(22, 173, 224); background: rgb(249, 249, 249); } .content .content_r .sort>span.fl { font-size: 12px; color: #666; margin-top: 4px; } .content .content_r .sort>button { height: 26px; font-size: 12px; color: rgb(102, 102, 102); border: 1px solid #cecbce; padding: 0 10px; margin-left: 8px; cursor: pointer; } .content .content_r .sort>button.color { color: white; font-weight: 900; border: 0 none; background: rgb(252, 28, 90); } .content .content_r .sort>span.fr { font-size: 12px; color: rgb(252, 29, 90); margin-top: 4px; } .content .content_r .spRender { margin-top: 10px; } .content .content_r .spRender>li { float: left; width: 25%; padding: 13px; } .content .content_r .spRender>li:hover { background: rgb(244, 244, 244); } .content .content_r .spRender>li>a:nth-of-type(1) { display: block; width: 200px; height: 200px; margin: 0 auto; } .content .content_r .spRender>li>a:nth-of-type(1)>img { display: block; width: 100%; height: 100%; } .content .content_r .spRender>li>div { height: 36px; overflow: hidden; } .content .content_r .spRender>li>div>a { font-size: 12px; color: rgb(102, 102, 102); } .content .content_r .spRender>li>div>a:hover { text-decoration: underline; color: rgb(255, 26, 58); } .content .content_r .spRender>li>p { color: #ff1a3a; font-weight: 900; font-family: verdana; margin-top: 10px; margin-bottom: 3px; } .content .content_r .spRender>li>p>span { font-size: 12px; font-weight: 300; } .content .content_r .spRender>li>button { height: 24px; margin-right: 7px; background: rgb(239, 239, 239); border: 1px solid rgb(223, 223, 223); font-size: 12px; color: rgb(102, 102, 102); width: 56px; border-radius: 3px; } .content .content_r .spRender>li>button.btnBuy { border: 0 none; background: rgb(252, 28, 90); color: rgb(255, 255, 255); width: 90px; } .content .content_r .page { margin-top: 20px; padding-left: 30px; } .content .content_r .page>button { width: 29px; height: 26px; border: 1px solid rgb(204, 204, 204); background: white; line-height: 26px; color: #005aa0; font-size: 12px; cursor: pointer; margin-right: 5px; } .content .content_r .page>button.color { color: white; font-weight: 900; border: 0 none; background: rgb(2, 163, 240); } .foot1 { margin-top: 20px; border-top: 1px solid rgb(225, 225, 225); border-bottom: 1px solid rgb(225, 225, 225); background: linear-gradient(to bottom, rgb(255, 255, 255), rgb(248, 248, 248)); } .foot1 .foot1_c { width: 1200px; min-width: 1200px; margin: 0 auto; } .foot1 .foot1_c>img { display: block; width: 100%; } .foot2 .foot2_c { width: 1200px; min-width: 1200px; margin: 0 auto; } .foot2 .foot2_c>img { display: block; width: 100%; }
css/list.css
.content { width: 1200px; min-width: 1200px; margin: 10px auto 0; } .content .content_l { width: 230px; } .content .content_l .down { border: 1px solid rgb(228, 228, 228); } .content .content_l .down>h3 { font-size: 14px; color: #333; padding: 8px 10px; font-weight: 900; cursor: pointer; border-bottom: 1px solid rgb(228, 228, 228); background: rgb(239, 239, 239); } .content .content_l .down>h3>span { display: inline-block; width: 16px; height: 16px; border-radius: 50%; font-size: 12px; text-align: center; line-height: 16px; background: rgb(168, 167, 167); color: white; margin-right: 7px; } .content .content_l .down>ul { display: none; } .content .content_l .down>ul>li { cursor: pointer; font-size: 12px; color: rgb(51, 51, 51); margin: 10px 0 10px 38px; } .content .content_l .down>ul>li:hover { color: red; } .content .content_l .rank { border: 1px solid rgb(228, 228, 228); border-bottom: 0 none; margin-top: 10px; } .content .content_l .rank>h3 { padding: 8px 0; text-align: center; font-size: 14px; color: rgb(51, 51, 90); font-weight: 900; background: rgb(246, 246, 246); } .content .content_l .rank>div { padding-bottom: 10px; border-bottom: 1px solid rgb(228, 228, 228); } .content .content_l .rank>div>a:nth-of-type(1) { display: block; width: 120px; height: 120px; margin: 10px auto 10px; } .content .content_l .rank>div>a:nth-of-type(1)>img { display: block; width: 100%; height: 100%; } .content .content_l .rank>div>a:nth-of-type(2) { display: block; height: 18px; font-size: 12px; padding: 0 7px; color: rgb(102, 102, 102); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .content .content_l .rank>div>div { color: red; font-weight: 900; text-align: center; } .content .content_r { width: 960px; } .content .content_r .sort { padding: 6px; border-top: 2px solid rgb(22, 173, 224); background: rgb(249, 249, 249); } .content .content_r .sort>span.fl { font-size: 12px; color: #666; margin-top: 4px; } .content .content_r .sort>button { height: 26px; font-size: 12px; color: rgb(102, 102, 102); border: 1px solid #cecbce; padding: 0 10px; margin-left: 8px; cursor: pointer; } .content .content_r .sort>button.color { color: white; font-weight: 900; border: 0 none; background: rgb(252, 28, 90); } .content .content_r .sort>span.fr { font-size: 12px; color: rgb(252, 29, 90); margin-top: 4px; } .content .content_r .spRender { margin-top: 10px; } .content .content_r .spRender>li { float: left; width: 25%; padding: 13px; } .content .content_r .spRender>li:hover { background: rgb(244, 244, 244); } .content .content_r .spRender>li>a:nth-of-type(1) { display: block; width: 200px; height: 200px; margin: 0 auto; } .content .content_r .spRender>li>a:nth-of-type(1)>img { display: block; width: 100%; height: 100%; } .content .content_r .spRender>li>div { height: 36px; overflow: hidden; } .content .content_r .spRender>li>div>a { font-size: 12px; color: rgb(102, 102, 102); } .content .content_r .spRender>li>div>a:hover { text-decoration: underline; color: rgb(255, 26, 58); } .content .content_r .spRender>li>p { color: #ff1a3a; font-weight: 900; font-family: verdana; margin-top: 10px; margin-bottom: 3px; } .content .content_r .spRender>li>p>span { font-size: 12px; font-weight: 300; } .content .content_r .spRender>li>button { height: 24px; margin-right: 7px; background: rgb(239, 239, 239); border: 1px solid rgb(223, 223, 223); font-size: 12px; color: rgb(102, 102, 102); width: 56px; border-radius: 3px; } .content .content_r .spRender>li>button.btnBuy { border: 0 none; background: rgb(252, 28, 90); color: rgb(255, 255, 255); width: 90px; } .content .content_r .page { margin-top: 20px; padding-left: 30px; } .content .content_r .page>button { width: 29px; height: 26px; border: 1px solid rgb(204, 204, 204); background: white; line-height: 26px; color: #005aa0; font-size: 12px; cursor: pointer; margin-right: 5px; } .content .content_r .page>button.color { color: white; font-weight: 900; border: 0 none; background: rgb(2, 163, 240); } .foot1 { margin-top: 20px; border-top: 1px solid rgb(225, 225, 225); border-bottom: 1px solid rgb(225, 225, 225); background: linear-gradient(to bottom, rgb(255, 255, 255), rgb(248, 248, 248)); } .foot1 .foot1_c { width: 1200px; min-width: 1200px; margin: 0 auto; } .foot1 .foot1_c>img { display: block; width: 100%; } .foot2 .foot2_c { width: 1200px; min-width: 1200px; margin: 0 auto; } .foot2 .foot2_c>img { display: block; width: 100%; }
0.479747
0.083591
html, body { height: 100%; width: 100%; margin: 0; padding: 0; } /*Video Header*/ .video-container { height: 100%; width: 100%; overflow: hidden; position: absolute; } .video-container video { height: auto; width: auto; min-width: 100%; min-height: 100%; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } #home { height: 100vh !important; } /*End Video Header*/ /* Menu */ /*Nav Menu*/ .navigation li { padding: 5px 10px; -webkit-transition: all 0.6s; -o-transition: all 0.6s; transition: all 0.6s; } .navigation li:hover { background-color: rgba(0, 0, 0, 0.8); } .navigation li a { color: white; cursor: pointer; } .navigation li a:hover { text-decoration: none; } #description.absolute { bottom: 0; } #description ul { margin: 0; } #description.fixed { top: 0; } /*End Nav Menu*/ .newblack{ background: #0f0f0f; } /*Services Styles*/ .services { position: relative; height: 300px; background-size: 90% 100%; background-position: center; padding: 0; overflow: hidden; } .services:hover .screen { top: 0; } .services .screen { top: -100%; position: relative; background-color: rgba(0, 0, 0, 0.8); height: 100%; width: 100%; -webkit-transition: top 0.5s; -o-transition: top 0.5s; transition: top 0.5s; } #menu-title { width: 300px; z-index: 5; top: 50%; left: calc(50% - 150px); top: calc(50% - 2.5em); } /*End Services Styles*/ /* End Menu */ /*Gallery*/ #gallery { width: 100%; overflow-x: hidden; } #gallery .inner { white-space: nowrap; position: relative; left: 0; -webkit-transition: left 0.8s; -o-transition: left 0.8s; transition: left 0.8s; } #gallery .image { background-size: cover; background-position: center; display: inline-block; margin-right: -4px; height: 100vh; width: 100%; } /*End Gallery*/ /* Cards */ .container .card { margin-top: -200px; padding: 2em; } /*End Cards*/ /* Contact form */ #contact-form { margin-top: -4em; height: 40em; background-color: #000000; } .contact-wrap { width: 100%; display: flex; flex-direction: column; margin-top: 6em; background-color: #000000; } .form-wrapper { padding: 0; font-size: 1rem; box-sizing: border-box; display: flex; flex-direction: column; align-items: center; justify-content: center; } .form-div { box-sizing: border-box; background-color: white; width: 100%; padding: 2em; max-width: 50em; min-height: 25em; } .input-wrap { box-sizing: border-box; width: 100%; display: flex; flex-direction: row; align-items: center; justify-content: space-around; } .feedback-input { box-shadow: none; border-radius: 0; background-clip: padding-box; box-sizing: border-box; border: 2px solid #fff; border-bottom: 2px solid #000000; color: #000000; text-align: left; font-size: 1rem; font-weight: 600; font-family: 'Roboto', sans-serif; background-color: transparent; padding: 1em; margin: 0 0 2em 0; width: 100%; } .input-wrap .feedback-input:last-child { margin-left: 2em; } .feedback-input:focus { border: 2px solid #000000; background-color: transparent; outline: none; } textarea { font-size: 1rem; height: 10em; overflow: hidden; resize: none; } .message { text-align: left; margin: 0; } .send-button { font-size: 1rem; border: 2px solid #333; cursor: pointer; min-width: 11.5em; letter-spacing: 1px; background-color: transparent; font-family: 'Roboto', sans-serif; padding: 0.75em 0.3em; margin: 0 auto; color: #333; font-weight: 600; outline: none; display: flex; justify-content: center; } .send-button:hover { background-color: #333; color: #fff; } ::-webkit-input-placeholder { color: #333; font-family: 'Roboto', sans-serif; text-align: left; } :-ms-input-placeholder { color: #333; font-family: 'Roboto', sans-serif; text-align: left; } ::placeholder { color: #333; font-family: 'Roboto', sans-serif; text-align: left; } #menu-icon { display: none; } /*End Contact Form*/ /* Location of company */ /*End Location of Company*/ /*Helper classes to reduce CL*/ .top-space { margin-top: 2em; } .title { font-size: 4em; } .subtitle { font-size: 2.5em; } .medium, .navigation li { font-size: 1.5em; } .large-padding { padding: 10px 15px; } .black { background-color: black; } .white { background-color: white; } .black-text { color: #000000; } .card { -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); } .slim { font-weight: 200; } .top { top: 3em; } .full-height { height: 100%; } .full-width { width: 100%; } .relative { position: relative; } .white-text { color: #ffffff; } .absolute { position: absolute; } .fixed { position: fixed; } .no-margin { margin: 0; } .no-padding { padding: 0; } .up { z-index: 10; } .row { margin: 0; } .hidden { display: none; } #parent { display: table; } #child { display: table-cell; vertical-align: middle; } .t-div { display: table; width: 100%; } .t-child { display: table-cell; vertical-align: middle; } /*End Helper Classes*/ /*Map Styles*/ #location { height: 600px; width: 100%; overflow: hidden; background: #212121; } #map-container { height: 100%; } /*End Map Styles*/ /* Footer Styles */ #footer { background-color: #000; } /* Footer Styles End */ /* Media Queries */ /* ##Device = Desktops ##Screen = 1281px to higher resolution desktops */ @media (min-width: 1281px) and (max-width: 1439px) { /* Estilos de navegacion */ .nav-icon { display: none; } } @media (min-width: 1440px) { /* Estilos de navegacion */ .nav-icon { display: none; } .navigation li a { color: white; cursor: pointer; font-size:16px; font-weight: 700; } #description-text { font-size:16px; } /* Estilos de localizacion */ #map-column { padding: 2em; } #location-info { padding-top: 9em !important; } } /* ##Device = Laptops, Desktops ##Screen = B/w 1025px to 1280px */ @media (min-width: 1024px) and (max-width: 1280px) { /* Estilos de navegacion */ .nav-icon { display: none; } .navigation li a { color: white; cursor: pointer; font-size:17px; } #description-text { font-size:17px; } /* Estilos de localizacion */ #location-info { padding-top: 7.5em !important; } } /* ##Device = Tablets, Ipads (portrait) ##Screen = B/w 768px to 1024px */ @media (min-width: 768px) and (max-width: 1023px) { /* Estilos de navegacion */ .nav-icon { display: none; } .navigation li a { color: white; cursor: pointer; font-size:16px; } /* Estilos de localizacion */ #map-column { padding-top: 3em; padding-bottom: 3em; } } /* ##Device = Tablets, Ipads (landscape) ##Screen = B/w 768px to 1024px */ @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) { } /* ##Device = Low Resolution Tablets, Mobiles (Landscape) ##Screen = B/w 481px to 767px */ @media (min-width: 481px) and (max-width: 767px) { } /* ##Device = Most of the Smartphones Mobiles (Portrait) ##Screen = B/w 320px to 479px */ @media (min-width: 320px) and (max-width: 480px) { #navigation.responsive {position: relative;} #navigation.responsive #menu-icon { position: absolute; right: 0; top: 0; } #navigation.responsive div ul li a { float: none; display: block; text-align: left; } /* Estilos para seccion del mapa en dispositivos pequenhos */ #location-row div{ height: 14em; padding-left: 3em; padding-right: 3em; } #location-row .white-text, #location-row .white-text p { padding-top: 0 !important; } /* Estilos de navegacion en dispositivos moviles */ #navigation div ul li a:not(:first-child) {display: none;} #navigation div ul li a#menu-icon { float: right; display: block; } #menu-icon { display: inline-block !important; } #navigation .list-inline-item:not(:first-child) { display: none; } #sticky-navigation .list-inline-item:not(:first-child) { display: none; } #sticky-navigation .list-inline-item:first-child { padding-top: 0.5em; padding-left: 3em; } .nav-icon { top: 13px; height: 2.3em !important; margin-bottom: 15px; } .icon { color: white; background-color: transparent; border: 2px solid white; border-radius: 50%; padding: 10px; margin: 5px; } } /* Media Queries End */ /*Menu Media Queries*/
resources/assets/js/components/mainindex/mainindex.css
html, body { height: 100%; width: 100%; margin: 0; padding: 0; } /*Video Header*/ .video-container { height: 100%; width: 100%; overflow: hidden; position: absolute; } .video-container video { height: auto; width: auto; min-width: 100%; min-height: 100%; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } #home { height: 100vh !important; } /*End Video Header*/ /* Menu */ /*Nav Menu*/ .navigation li { padding: 5px 10px; -webkit-transition: all 0.6s; -o-transition: all 0.6s; transition: all 0.6s; } .navigation li:hover { background-color: rgba(0, 0, 0, 0.8); } .navigation li a { color: white; cursor: pointer; } .navigation li a:hover { text-decoration: none; } #description.absolute { bottom: 0; } #description ul { margin: 0; } #description.fixed { top: 0; } /*End Nav Menu*/ .newblack{ background: #0f0f0f; } /*Services Styles*/ .services { position: relative; height: 300px; background-size: 90% 100%; background-position: center; padding: 0; overflow: hidden; } .services:hover .screen { top: 0; } .services .screen { top: -100%; position: relative; background-color: rgba(0, 0, 0, 0.8); height: 100%; width: 100%; -webkit-transition: top 0.5s; -o-transition: top 0.5s; transition: top 0.5s; } #menu-title { width: 300px; z-index: 5; top: 50%; left: calc(50% - 150px); top: calc(50% - 2.5em); } /*End Services Styles*/ /* End Menu */ /*Gallery*/ #gallery { width: 100%; overflow-x: hidden; } #gallery .inner { white-space: nowrap; position: relative; left: 0; -webkit-transition: left 0.8s; -o-transition: left 0.8s; transition: left 0.8s; } #gallery .image { background-size: cover; background-position: center; display: inline-block; margin-right: -4px; height: 100vh; width: 100%; } /*End Gallery*/ /* Cards */ .container .card { margin-top: -200px; padding: 2em; } /*End Cards*/ /* Contact form */ #contact-form { margin-top: -4em; height: 40em; background-color: #000000; } .contact-wrap { width: 100%; display: flex; flex-direction: column; margin-top: 6em; background-color: #000000; } .form-wrapper { padding: 0; font-size: 1rem; box-sizing: border-box; display: flex; flex-direction: column; align-items: center; justify-content: center; } .form-div { box-sizing: border-box; background-color: white; width: 100%; padding: 2em; max-width: 50em; min-height: 25em; } .input-wrap { box-sizing: border-box; width: 100%; display: flex; flex-direction: row; align-items: center; justify-content: space-around; } .feedback-input { box-shadow: none; border-radius: 0; background-clip: padding-box; box-sizing: border-box; border: 2px solid #fff; border-bottom: 2px solid #000000; color: #000000; text-align: left; font-size: 1rem; font-weight: 600; font-family: 'Roboto', sans-serif; background-color: transparent; padding: 1em; margin: 0 0 2em 0; width: 100%; } .input-wrap .feedback-input:last-child { margin-left: 2em; } .feedback-input:focus { border: 2px solid #000000; background-color: transparent; outline: none; } textarea { font-size: 1rem; height: 10em; overflow: hidden; resize: none; } .message { text-align: left; margin: 0; } .send-button { font-size: 1rem; border: 2px solid #333; cursor: pointer; min-width: 11.5em; letter-spacing: 1px; background-color: transparent; font-family: 'Roboto', sans-serif; padding: 0.75em 0.3em; margin: 0 auto; color: #333; font-weight: 600; outline: none; display: flex; justify-content: center; } .send-button:hover { background-color: #333; color: #fff; } ::-webkit-input-placeholder { color: #333; font-family: 'Roboto', sans-serif; text-align: left; } :-ms-input-placeholder { color: #333; font-family: 'Roboto', sans-serif; text-align: left; } ::placeholder { color: #333; font-family: 'Roboto', sans-serif; text-align: left; } #menu-icon { display: none; } /*End Contact Form*/ /* Location of company */ /*End Location of Company*/ /*Helper classes to reduce CL*/ .top-space { margin-top: 2em; } .title { font-size: 4em; } .subtitle { font-size: 2.5em; } .medium, .navigation li { font-size: 1.5em; } .large-padding { padding: 10px 15px; } .black { background-color: black; } .white { background-color: white; } .black-text { color: #000000; } .card { -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); } .slim { font-weight: 200; } .top { top: 3em; } .full-height { height: 100%; } .full-width { width: 100%; } .relative { position: relative; } .white-text { color: #ffffff; } .absolute { position: absolute; } .fixed { position: fixed; } .no-margin { margin: 0; } .no-padding { padding: 0; } .up { z-index: 10; } .row { margin: 0; } .hidden { display: none; } #parent { display: table; } #child { display: table-cell; vertical-align: middle; } .t-div { display: table; width: 100%; } .t-child { display: table-cell; vertical-align: middle; } /*End Helper Classes*/ /*Map Styles*/ #location { height: 600px; width: 100%; overflow: hidden; background: #212121; } #map-container { height: 100%; } /*End Map Styles*/ /* Footer Styles */ #footer { background-color: #000; } /* Footer Styles End */ /* Media Queries */ /* ##Device = Desktops ##Screen = 1281px to higher resolution desktops */ @media (min-width: 1281px) and (max-width: 1439px) { /* Estilos de navegacion */ .nav-icon { display: none; } } @media (min-width: 1440px) { /* Estilos de navegacion */ .nav-icon { display: none; } .navigation li a { color: white; cursor: pointer; font-size:16px; font-weight: 700; } #description-text { font-size:16px; } /* Estilos de localizacion */ #map-column { padding: 2em; } #location-info { padding-top: 9em !important; } } /* ##Device = Laptops, Desktops ##Screen = B/w 1025px to 1280px */ @media (min-width: 1024px) and (max-width: 1280px) { /* Estilos de navegacion */ .nav-icon { display: none; } .navigation li a { color: white; cursor: pointer; font-size:17px; } #description-text { font-size:17px; } /* Estilos de localizacion */ #location-info { padding-top: 7.5em !important; } } /* ##Device = Tablets, Ipads (portrait) ##Screen = B/w 768px to 1024px */ @media (min-width: 768px) and (max-width: 1023px) { /* Estilos de navegacion */ .nav-icon { display: none; } .navigation li a { color: white; cursor: pointer; font-size:16px; } /* Estilos de localizacion */ #map-column { padding-top: 3em; padding-bottom: 3em; } } /* ##Device = Tablets, Ipads (landscape) ##Screen = B/w 768px to 1024px */ @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) { } /* ##Device = Low Resolution Tablets, Mobiles (Landscape) ##Screen = B/w 481px to 767px */ @media (min-width: 481px) and (max-width: 767px) { } /* ##Device = Most of the Smartphones Mobiles (Portrait) ##Screen = B/w 320px to 479px */ @media (min-width: 320px) and (max-width: 480px) { #navigation.responsive {position: relative;} #navigation.responsive #menu-icon { position: absolute; right: 0; top: 0; } #navigation.responsive div ul li a { float: none; display: block; text-align: left; } /* Estilos para seccion del mapa en dispositivos pequenhos */ #location-row div{ height: 14em; padding-left: 3em; padding-right: 3em; } #location-row .white-text, #location-row .white-text p { padding-top: 0 !important; } /* Estilos de navegacion en dispositivos moviles */ #navigation div ul li a:not(:first-child) {display: none;} #navigation div ul li a#menu-icon { float: right; display: block; } #menu-icon { display: inline-block !important; } #navigation .list-inline-item:not(:first-child) { display: none; } #sticky-navigation .list-inline-item:not(:first-child) { display: none; } #sticky-navigation .list-inline-item:first-child { padding-top: 0.5em; padding-left: 3em; } .nav-icon { top: 13px; height: 2.3em !important; margin-bottom: 15px; } .icon { color: white; background-color: transparent; border: 2px solid white; border-radius: 50%; padding: 10px; margin: 5px; } } /* Media Queries End */ /*Menu Media Queries*/
0.367497
0.051534
body { background-color: rgb(26, 26, 26); color: white; } nav#navbar-topo { background-color: rgb(5, 5, 5); color: white; } a#navbar-topo-title { color: white; padding: 10px; text-decoration: none; font-size: 20px; } a#navbar-topo-title:hover { color: rgb(189, 189, 189); } div#container { background-color: white; color: black; margin: auto; padding: 20px; width: 1200px; border-radius: 10px; margin-top: 50px; box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.507); } .imagens { width: 80%; justify-content: center; border-radius: 10px; margin: auto; } .imagens:hover { box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.507); } .carousel-item { height: 32rem; background-color: rgb(10, 10, 10); color: white; position: relative; } .container { position: absolute; bottom: 0; left: 0; right: 0; padding-bottom: 100px; } #myCarousel { box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.507); } div#container-content { max-width: 1000px; margin: auto; } .pt-10 { padding-top: 140px; } .custom-1 img { float: right; width: 400px; border-radius: 10px; box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.507); } .custom-1 p { width: 40%; } .text-block { color: rgb(163, 163, 163); } .custom2 { padding-top: 150px; } .custom-2 img { float: left; width: 400px; border-radius: 10px; box-shadow: 4px 8px 0px 0px rgba(0, 0, 0, 0.507); } .custom-2 h3 { text-align: left; float: right; width: 40%; } .custom-2 p { text-align: left; float: right; width: 40%; } .transition, form button, form .question label, form .question input[type="number"] { -moz-transition: all 0.25s cubic-bezier(0.53, 0.01, 0.35, 1.5); -o-transition: all 0.25s cubic-bezier(0.53, 0.01, 0.35, 1.5); -webkit-transition: all 0.25s cubic-bezier(0.53, 0.01, 0.35, 1.5); transition: all 0.25s cubic-bezier(0.53, 0.01, 0.35, 1.5); } * { font-family: Helvetica, sans-serif; font-weight: light; -webkit-font-smoothing: antialiased; } html { background-color: #0d6efd; } form { position: relative; display: inline-block; max-width: 700px; min-width: 500px; box-sizing: border-box; padding: 30px 25px; background-color: white; border-radius: 40px; margin: 40px 0; left: 50%; -moz-transform: translate(-50%, 0); -ms-transform: translate(-50%, 0); -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0); } form h1 { color: #0d6efd; font-weight: 100; letter-spacing: 0.01em; margin-left: 15px; margin-bottom: 35px; text-transform: uppercase; } form button { margin-top: 35px; background-color: white; border: 1px solid #0d6efd; line-height: 0; font-size: 17px; display: inline-block; box-sizing: border-box; padding: 20px 15px; border-radius: 60px; color: #0d6efd; font-weight: 100; letter-spacing: 0.01em; position: relative; z-index: 1; } form button:hover, form button:focus { color: white; background-color: #0d6efd; } form .question { position: relative; padding: 10px 0; } form .question:first-of-type { padding-top: 0; } form .question:last-of-type { padding-bottom: 0; } form .question label { transform-origin: left center; color: #0d6efd; font-weight: 100; letter-spacing: 0.01em; font-size: 17px; box-sizing: border-box; padding: 10px 15px; display: block; position: absolute; margin-top: -40px; z-index: 2; pointer-events: none; } form .question input[type="number"] { appearance: none; background-color: none; border: 1px solid #0d6efd; line-height: 0; font-size: 17px; width: 100%; display: block; box-sizing: border-box; padding: 10px 15px; border-radius: 60px; color: #0d6efd; font-weight: 100; letter-spacing: 0.01em; position: relative; z-index: 1; } form .question input[type="number"]:focus { outline: none; background: #0d6efd; color: white; margin-top: 30px; } form .question input[type="number"]:valid { margin-top: 30px; } form .question input[type="number"]:focus ~ label { -moz-transform: translate(0, -35px); -ms-transform: translate(0, -35px); -webkit-transform: translate(0, -35px); transform: translate(0, -35px); } form .question input[type="number"]:valid ~ label { text-transform: uppercase; font-style: italic; -moz-transform: translate(5px, -35px) scale(0.6); -ms-transform: translate(5px, -35px) scale(0.6); -webkit-transform: translate(5px, -35px) scale(0.6); transform: translate(5px, -35px) scale(0.6); }
styles/calculadoraIMC.css
body { background-color: rgb(26, 26, 26); color: white; } nav#navbar-topo { background-color: rgb(5, 5, 5); color: white; } a#navbar-topo-title { color: white; padding: 10px; text-decoration: none; font-size: 20px; } a#navbar-topo-title:hover { color: rgb(189, 189, 189); } div#container { background-color: white; color: black; margin: auto; padding: 20px; width: 1200px; border-radius: 10px; margin-top: 50px; box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.507); } .imagens { width: 80%; justify-content: center; border-radius: 10px; margin: auto; } .imagens:hover { box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.507); } .carousel-item { height: 32rem; background-color: rgb(10, 10, 10); color: white; position: relative; } .container { position: absolute; bottom: 0; left: 0; right: 0; padding-bottom: 100px; } #myCarousel { box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.507); } div#container-content { max-width: 1000px; margin: auto; } .pt-10 { padding-top: 140px; } .custom-1 img { float: right; width: 400px; border-radius: 10px; box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.507); } .custom-1 p { width: 40%; } .text-block { color: rgb(163, 163, 163); } .custom2 { padding-top: 150px; } .custom-2 img { float: left; width: 400px; border-radius: 10px; box-shadow: 4px 8px 0px 0px rgba(0, 0, 0, 0.507); } .custom-2 h3 { text-align: left; float: right; width: 40%; } .custom-2 p { text-align: left; float: right; width: 40%; } .transition, form button, form .question label, form .question input[type="number"] { -moz-transition: all 0.25s cubic-bezier(0.53, 0.01, 0.35, 1.5); -o-transition: all 0.25s cubic-bezier(0.53, 0.01, 0.35, 1.5); -webkit-transition: all 0.25s cubic-bezier(0.53, 0.01, 0.35, 1.5); transition: all 0.25s cubic-bezier(0.53, 0.01, 0.35, 1.5); } * { font-family: Helvetica, sans-serif; font-weight: light; -webkit-font-smoothing: antialiased; } html { background-color: #0d6efd; } form { position: relative; display: inline-block; max-width: 700px; min-width: 500px; box-sizing: border-box; padding: 30px 25px; background-color: white; border-radius: 40px; margin: 40px 0; left: 50%; -moz-transform: translate(-50%, 0); -ms-transform: translate(-50%, 0); -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0); } form h1 { color: #0d6efd; font-weight: 100; letter-spacing: 0.01em; margin-left: 15px; margin-bottom: 35px; text-transform: uppercase; } form button { margin-top: 35px; background-color: white; border: 1px solid #0d6efd; line-height: 0; font-size: 17px; display: inline-block; box-sizing: border-box; padding: 20px 15px; border-radius: 60px; color: #0d6efd; font-weight: 100; letter-spacing: 0.01em; position: relative; z-index: 1; } form button:hover, form button:focus { color: white; background-color: #0d6efd; } form .question { position: relative; padding: 10px 0; } form .question:first-of-type { padding-top: 0; } form .question:last-of-type { padding-bottom: 0; } form .question label { transform-origin: left center; color: #0d6efd; font-weight: 100; letter-spacing: 0.01em; font-size: 17px; box-sizing: border-box; padding: 10px 15px; display: block; position: absolute; margin-top: -40px; z-index: 2; pointer-events: none; } form .question input[type="number"] { appearance: none; background-color: none; border: 1px solid #0d6efd; line-height: 0; font-size: 17px; width: 100%; display: block; box-sizing: border-box; padding: 10px 15px; border-radius: 60px; color: #0d6efd; font-weight: 100; letter-spacing: 0.01em; position: relative; z-index: 1; } form .question input[type="number"]:focus { outline: none; background: #0d6efd; color: white; margin-top: 30px; } form .question input[type="number"]:valid { margin-top: 30px; } form .question input[type="number"]:focus ~ label { -moz-transform: translate(0, -35px); -ms-transform: translate(0, -35px); -webkit-transform: translate(0, -35px); transform: translate(0, -35px); } form .question input[type="number"]:valid ~ label { text-transform: uppercase; font-style: italic; -moz-transform: translate(5px, -35px) scale(0.6); -ms-transform: translate(5px, -35px) scale(0.6); -webkit-transform: translate(5px, -35px) scale(0.6); transform: translate(5px, -35px) scale(0.6); }
0.368974
0.087252
#thumbnail-slider { margin:0 auto; /*center-aligned*/ width:100%;/*width:400px;*/ max-width:600px; /*padding:20px;*/ background-color:#f2f1ea; box-shadow: 0 2px 6px rgba(0,0,0,0.3); box-sizing:border-box; position:relative; overflow: hidden; -webkit-user-select: none; user-select:none; } #thumbnail-slider div.inner { /*the followings should not be changed */ position:relative; overflow:hidden; padding:2px 0; margin:0; } #thumbnail-slider div.inner ul { /*the followings should not be changed */ white-space:nowrap; position:relative; left:0; top:0; list-style:none; font-size:0; padding:0; margin:0; float:left!important; width:auto!important; height:auto!important; } #thumbnail-slider ul li { display:inline-block; *display:inline!important; /*IE7 hack*/ border:3px solid black; margin:0; margin-right:10px; /* Spacing between thumbs*/ transition:border-color 0.3s; box-sizing:content-box; text-align:center; vertical-align:middle; padding:0; position:relative; list-style:none; backface-visibility:hidden; } #thumbnail-slider ul li.active { border-color:white; } #thumbnail-slider .thumb { opacity:1; width:100%; height: 100%; background-size:contain; background-repeat:no-repeat; background-position:center center; display:block; position:absolute; font-size:0; } /* --------- navigation controls ------- */ /* The nav id should be: slider id + ("-prev", "-next", and "-pause-play") */ #thumbnail-slider-pause-play {display:none;} /*.pause*/ #thumbnail-slider-prev, #thumbnail-slider-next { opacity:1; position: absolute; /*background-color:#0346a3;*/ *background-color:#ccc;/*IE7 hack*/ backface-visibility:hidden; width:32px; height:60px; line-height:60px; top: 50%; margin:0; margin-top:-30px; color:white; z-index:10; cursor:pointer; } #thumbnail-slider-prev { left:-30px; right:auto; } #thumbnail-slider-next { left:auto; right:-30px; } #thumbnail-slider-next.disabled, #thumbnail-slider-prev.disabled { opacity:0.3; cursor:default; } /* arrows */ #thumbnail-slider-prev::before, #thumbnail-slider-next::before { position: absolute; top: 19px; content: ""; display: block; width: 12px; height: 12px; border-left: 6px solid black; border-top: 6px solid black; } #thumbnail-slider-prev::before { left:7px; -ms-transform:rotate(-45deg);/*IE9*/ -webkit-transform:rotate(-45deg); transform: rotate(-45deg); } #thumbnail-slider-next::before { right:7px; -ms-transform:rotate(135deg);/*IE9*/ -webkit-transform:rotate(135deg); transform: rotate(135deg); } /*Responsive settings*/ @media only screen and (max-width:736px){ #thumbnail-slider {padding:10px 26px;} #thumbnail-slider-prev {left:0px;} #thumbnail-slider-next {right:0px;} } #thumbnail-slider ul li { border:none; {{{ $logUser->profile_pic_url}}} } #thumbnail-slider { max-width: 100% !important; background-color: #EDEDED; box-shadow: none; left:-1px; height:100px; background: #EEEEEE; padding-top: 20px; overflow: hidden; } #thumbnail-slider div.inner { position: relative; overflow: hidden; margin: 0; width: 100%; margin-left: 100px; top:-67px; } #thumbnail-slider-prev { display:none; } #thumbnail-slider-next { right:13px; top:54px; } #thumbnail-slider > a:hover { text-decoration: none; } .add-to-spot { border-radius: 45px; margin-left:20px; } @media only screen and (min-width: 0px) and (max-width: 414px) { #thumbnail-slider { padding: 10px 0px; height: 85px; } #thumbnail-slider-next { right: 10px; top: 45px; } #thumbnail-slider { left: -10px; } } @media only screen and (min-width: 415px) and (max-width: 776px) { #thumbnail-slider div.inner{ width: 88%; } } @media only screen and (min-width: 777px) and (max-width: 991px) { #thumbnail-slider-prev::before, #thumbnail-slider-next::before { top:17px; width:17px; height:18px; } }
resources/views/themes/DefaultTheme/assets/css/thumbnail-slider copy.css
#thumbnail-slider { margin:0 auto; /*center-aligned*/ width:100%;/*width:400px;*/ max-width:600px; /*padding:20px;*/ background-color:#f2f1ea; box-shadow: 0 2px 6px rgba(0,0,0,0.3); box-sizing:border-box; position:relative; overflow: hidden; -webkit-user-select: none; user-select:none; } #thumbnail-slider div.inner { /*the followings should not be changed */ position:relative; overflow:hidden; padding:2px 0; margin:0; } #thumbnail-slider div.inner ul { /*the followings should not be changed */ white-space:nowrap; position:relative; left:0; top:0; list-style:none; font-size:0; padding:0; margin:0; float:left!important; width:auto!important; height:auto!important; } #thumbnail-slider ul li { display:inline-block; *display:inline!important; /*IE7 hack*/ border:3px solid black; margin:0; margin-right:10px; /* Spacing between thumbs*/ transition:border-color 0.3s; box-sizing:content-box; text-align:center; vertical-align:middle; padding:0; position:relative; list-style:none; backface-visibility:hidden; } #thumbnail-slider ul li.active { border-color:white; } #thumbnail-slider .thumb { opacity:1; width:100%; height: 100%; background-size:contain; background-repeat:no-repeat; background-position:center center; display:block; position:absolute; font-size:0; } /* --------- navigation controls ------- */ /* The nav id should be: slider id + ("-prev", "-next", and "-pause-play") */ #thumbnail-slider-pause-play {display:none;} /*.pause*/ #thumbnail-slider-prev, #thumbnail-slider-next { opacity:1; position: absolute; /*background-color:#0346a3;*/ *background-color:#ccc;/*IE7 hack*/ backface-visibility:hidden; width:32px; height:60px; line-height:60px; top: 50%; margin:0; margin-top:-30px; color:white; z-index:10; cursor:pointer; } #thumbnail-slider-prev { left:-30px; right:auto; } #thumbnail-slider-next { left:auto; right:-30px; } #thumbnail-slider-next.disabled, #thumbnail-slider-prev.disabled { opacity:0.3; cursor:default; } /* arrows */ #thumbnail-slider-prev::before, #thumbnail-slider-next::before { position: absolute; top: 19px; content: ""; display: block; width: 12px; height: 12px; border-left: 6px solid black; border-top: 6px solid black; } #thumbnail-slider-prev::before { left:7px; -ms-transform:rotate(-45deg);/*IE9*/ -webkit-transform:rotate(-45deg); transform: rotate(-45deg); } #thumbnail-slider-next::before { right:7px; -ms-transform:rotate(135deg);/*IE9*/ -webkit-transform:rotate(135deg); transform: rotate(135deg); } /*Responsive settings*/ @media only screen and (max-width:736px){ #thumbnail-slider {padding:10px 26px;} #thumbnail-slider-prev {left:0px;} #thumbnail-slider-next {right:0px;} } #thumbnail-slider ul li { border:none; {{{ $logUser->profile_pic_url}}} } #thumbnail-slider { max-width: 100% !important; background-color: #EDEDED; box-shadow: none; left:-1px; height:100px; background: #EEEEEE; padding-top: 20px; overflow: hidden; } #thumbnail-slider div.inner { position: relative; overflow: hidden; margin: 0; width: 100%; margin-left: 100px; top:-67px; } #thumbnail-slider-prev { display:none; } #thumbnail-slider-next { right:13px; top:54px; } #thumbnail-slider > a:hover { text-decoration: none; } .add-to-spot { border-radius: 45px; margin-left:20px; } @media only screen and (min-width: 0px) and (max-width: 414px) { #thumbnail-slider { padding: 10px 0px; height: 85px; } #thumbnail-slider-next { right: 10px; top: 45px; } #thumbnail-slider { left: -10px; } } @media only screen and (min-width: 415px) and (max-width: 776px) { #thumbnail-slider div.inner{ width: 88%; } } @media only screen and (min-width: 777px) and (max-width: 991px) { #thumbnail-slider-prev::before, #thumbnail-slider-next::before { top:17px; width:17px; height:18px; } }
0.282592
0.049589
.jcarousel-skin-tango .jcarousel-container { -moz-border-radius: 10px; border-radius: 0px; background: #444; } .jcarousel-skin-tango .jcarousel-direction-rtl { direction: rtl; } .jcarousel-skin-tango .jcarousel-container-horizontal { width: 560px; padding: 8px 40px 0 40px; } .jcarousel-skin-tango .jcarousel-container-vertical { width: 75px; height: 245px; padding: 40px 20px; } .jcarousel-skin-tango .jcarousel-clip { overflow: hidden; } .jcarousel-skin-tango .jcarousel-clip-horizontal { width: 245px; height: 75px; left: 11px; } .jcarousel-skin-tango .jcarousel-clip-vertical { width: 75px; height: 245px; } .jcarousel-skin-tango .jcarousel-item { width: 75px; height: 75px; } .jcarousel-skin-tango .jcarousel-item-horizontal { margin-left: 0; margin-right: 10px; } .jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-item-horizontal { margin-left: 10px; margin-right: 0; } .jcarousel-skin-tango .jcarousel-item-vertical { margin-bottom: 10px; } .jcarousel-skin-tango .jcarousel-item-placeholder { background: #fff; color: #000; } /** * Horizontal Buttons */ .jcarousel-skin-tango .jcarousel-next-horizontal { position: absolute; top: 26px; right: 20px; width: 32px; height: 32px; cursor: pointer; background: transparent url(next-horizontal.png) no-repeat 0 0; } .jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-next-horizontal { left: 5px; right: auto; background-image: url(prev-horizontal.png); } .jcarousel-skin-tango .jcarousel-next-horizontal:hover, .jcarousel-skin-tango .jcarousel-next-horizontal:focus { background-position: -32px 0; } .jcarousel-skin-tango .jcarousel-next-horizontal:active { background-position: -64px 0; } .jcarousel-skin-tango .jcarousel-next-disabled-horizontal, .jcarousel-skin-tango .jcarousel-next-disabled-horizontal:hover, .jcarousel-skin-tango .jcarousel-next-disabled-horizontal:focus, .jcarousel-skin-tango .jcarousel-next-disabled-horizontal:active { cursor: default; background-position: -96px 0; } .jcarousel-skin-tango .jcarousel-prev-horizontal { position: absolute; top: 26px; left: 20px; width: 32px; height: 32px; cursor: pointer; background: transparent url(prev-horizontal.png) no-repeat 0 0; } .jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-prev-horizontal { left: auto; right: 5px; background-image: url(next-horizontal.png); } .jcarousel-skin-tango .jcarousel-prev-horizontal:hover, .jcarousel-skin-tango .jcarousel-prev-horizontal:focus { background-position: -32px 0; } .jcarousel-skin-tango .jcarousel-prev-horizontal:active { background-position: -64px 0; } .jcarousel-skin-tango .jcarousel-prev-disabled-horizontal, .jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:hover, .jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:focus, .jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:active { cursor: default; background-position: -96px 0; } /** * Vertical Buttons */ .jcarousel-skin-tango .jcarousel-next-vertical { position: absolute; bottom: 5px; left: 43px; width: 32px; height: 32px; cursor: pointer; background: transparent url(next-vertical.png) no-repeat 0 0; } .jcarousel-skin-tango .jcarousel-next-vertical:hover, .jcarousel-skin-tango .jcarousel-next-vertical:focus { background-position: 0 -32px; } .jcarousel-skin-tango .jcarousel-next-vertical:active { background-position: 0 -64px; } .jcarousel-skin-tango .jcarousel-next-disabled-vertical, .jcarousel-skin-tango .jcarousel-next-disabled-vertical:hover, .jcarousel-skin-tango .jcarousel-next-disabled-vertical:focus, .jcarousel-skin-tango .jcarousel-next-disabled-vertical:active { cursor: default; background-position: 0 -96px; } .jcarousel-skin-tango .jcarousel-prev-vertical { position: absolute; top: 5px; left: 43px; width: 32px; height: 32px; cursor: pointer; background: transparent url(prev-vertical.png) no-repeat 0 0; } .jcarousel-skin-tango .jcarousel-prev-vertical:hover, .jcarousel-skin-tango .jcarousel-prev-vertical:focus { background-position: 0 -32px; } .jcarousel-skin-tango .jcarousel-prev-vertical:active { background-position: 0 -64px; } .jcarousel-skin-tango .jcarousel-prev-disabled-vertical, .jcarousel-skin-tango .jcarousel-prev-disabled-vertical:hover, .jcarousel-skin-tango .jcarousel-prev-disabled-vertical:focus, .jcarousel-skin-tango .jcarousel-prev-disabled-vertical:active { cursor: default; background-position: 0 -96px; } /* added by <NAME>! */ div.jcarousel-skin-tango { margin: 0 0 20px 0; } .jcarousel-skin-tango .jcarousel-container { -moz-border-radius: 0px; background: #272928; border: none; } .jcarousel-skin-tango .jcarousel-container-horizontal { height: 70px; padding: 6px 0px 6px 55px; width: 585px; } .jcarousel-skin-tango .jcarousel-clip-horizontal { width: 514px; height: 70px; } /* .jcarousel-skin-tango .jcarousel-prev-horizontal { background-image: url(../images/prev-horizontal.png); top: 24px; left: -7px; } */ /* .jcarousel-skin-tango .jcarousel-next-horizontal { background-image: url(../images/next-horizontal.png); top: 24px; right: -7px; } */ .jcarousel-skin-tango .jcarousel-item { border: none; position: relative; width: 117px; } .jcarousel-skin-tango .jcarousel-item.active-cueitem { border-color: white; } .jcarousel-skin-tango .jcarousel-item img { border-color: #272928; border-style: solid; border-width: 2px; cursor: pointer; } .jcarousel-skin-tango .jcarousel-item:hover div.thumbnailOverlay, .jcarousel-skin-tango .jcarousel-item.active-cueitem div.thumbnailOverlay { visibility: visible; } .jcarousel-skin-tango .jcarousel-item-horizontal { margin-right: 12px; } .jcarousel-skin-tango .jcarousel-item div.thumbnailOverlay { background: black; bottom: 7px; color: #00EEFF; visibility: hidden; font-size: 75%; font-family: Arial, sans-serif; left: 2px; line-height: 0.9em; opacity: 0.7; padding: 5px 2px 4px 4px; position: absolute; text-align: center; z-index: 0; width: 111px; font-weight: bold; }
demos/demos/mediaelement/assets/skin.css
.jcarousel-skin-tango .jcarousel-container { -moz-border-radius: 10px; border-radius: 0px; background: #444; } .jcarousel-skin-tango .jcarousel-direction-rtl { direction: rtl; } .jcarousel-skin-tango .jcarousel-container-horizontal { width: 560px; padding: 8px 40px 0 40px; } .jcarousel-skin-tango .jcarousel-container-vertical { width: 75px; height: 245px; padding: 40px 20px; } .jcarousel-skin-tango .jcarousel-clip { overflow: hidden; } .jcarousel-skin-tango .jcarousel-clip-horizontal { width: 245px; height: 75px; left: 11px; } .jcarousel-skin-tango .jcarousel-clip-vertical { width: 75px; height: 245px; } .jcarousel-skin-tango .jcarousel-item { width: 75px; height: 75px; } .jcarousel-skin-tango .jcarousel-item-horizontal { margin-left: 0; margin-right: 10px; } .jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-item-horizontal { margin-left: 10px; margin-right: 0; } .jcarousel-skin-tango .jcarousel-item-vertical { margin-bottom: 10px; } .jcarousel-skin-tango .jcarousel-item-placeholder { background: #fff; color: #000; } /** * Horizontal Buttons */ .jcarousel-skin-tango .jcarousel-next-horizontal { position: absolute; top: 26px; right: 20px; width: 32px; height: 32px; cursor: pointer; background: transparent url(next-horizontal.png) no-repeat 0 0; } .jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-next-horizontal { left: 5px; right: auto; background-image: url(prev-horizontal.png); } .jcarousel-skin-tango .jcarousel-next-horizontal:hover, .jcarousel-skin-tango .jcarousel-next-horizontal:focus { background-position: -32px 0; } .jcarousel-skin-tango .jcarousel-next-horizontal:active { background-position: -64px 0; } .jcarousel-skin-tango .jcarousel-next-disabled-horizontal, .jcarousel-skin-tango .jcarousel-next-disabled-horizontal:hover, .jcarousel-skin-tango .jcarousel-next-disabled-horizontal:focus, .jcarousel-skin-tango .jcarousel-next-disabled-horizontal:active { cursor: default; background-position: -96px 0; } .jcarousel-skin-tango .jcarousel-prev-horizontal { position: absolute; top: 26px; left: 20px; width: 32px; height: 32px; cursor: pointer; background: transparent url(prev-horizontal.png) no-repeat 0 0; } .jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-prev-horizontal { left: auto; right: 5px; background-image: url(next-horizontal.png); } .jcarousel-skin-tango .jcarousel-prev-horizontal:hover, .jcarousel-skin-tango .jcarousel-prev-horizontal:focus { background-position: -32px 0; } .jcarousel-skin-tango .jcarousel-prev-horizontal:active { background-position: -64px 0; } .jcarousel-skin-tango .jcarousel-prev-disabled-horizontal, .jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:hover, .jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:focus, .jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:active { cursor: default; background-position: -96px 0; } /** * Vertical Buttons */ .jcarousel-skin-tango .jcarousel-next-vertical { position: absolute; bottom: 5px; left: 43px; width: 32px; height: 32px; cursor: pointer; background: transparent url(next-vertical.png) no-repeat 0 0; } .jcarousel-skin-tango .jcarousel-next-vertical:hover, .jcarousel-skin-tango .jcarousel-next-vertical:focus { background-position: 0 -32px; } .jcarousel-skin-tango .jcarousel-next-vertical:active { background-position: 0 -64px; } .jcarousel-skin-tango .jcarousel-next-disabled-vertical, .jcarousel-skin-tango .jcarousel-next-disabled-vertical:hover, .jcarousel-skin-tango .jcarousel-next-disabled-vertical:focus, .jcarousel-skin-tango .jcarousel-next-disabled-vertical:active { cursor: default; background-position: 0 -96px; } .jcarousel-skin-tango .jcarousel-prev-vertical { position: absolute; top: 5px; left: 43px; width: 32px; height: 32px; cursor: pointer; background: transparent url(prev-vertical.png) no-repeat 0 0; } .jcarousel-skin-tango .jcarousel-prev-vertical:hover, .jcarousel-skin-tango .jcarousel-prev-vertical:focus { background-position: 0 -32px; } .jcarousel-skin-tango .jcarousel-prev-vertical:active { background-position: 0 -64px; } .jcarousel-skin-tango .jcarousel-prev-disabled-vertical, .jcarousel-skin-tango .jcarousel-prev-disabled-vertical:hover, .jcarousel-skin-tango .jcarousel-prev-disabled-vertical:focus, .jcarousel-skin-tango .jcarousel-prev-disabled-vertical:active { cursor: default; background-position: 0 -96px; } /* added by <NAME>! */ div.jcarousel-skin-tango { margin: 0 0 20px 0; } .jcarousel-skin-tango .jcarousel-container { -moz-border-radius: 0px; background: #272928; border: none; } .jcarousel-skin-tango .jcarousel-container-horizontal { height: 70px; padding: 6px 0px 6px 55px; width: 585px; } .jcarousel-skin-tango .jcarousel-clip-horizontal { width: 514px; height: 70px; } /* .jcarousel-skin-tango .jcarousel-prev-horizontal { background-image: url(../images/prev-horizontal.png); top: 24px; left: -7px; } */ /* .jcarousel-skin-tango .jcarousel-next-horizontal { background-image: url(../images/next-horizontal.png); top: 24px; right: -7px; } */ .jcarousel-skin-tango .jcarousel-item { border: none; position: relative; width: 117px; } .jcarousel-skin-tango .jcarousel-item.active-cueitem { border-color: white; } .jcarousel-skin-tango .jcarousel-item img { border-color: #272928; border-style: solid; border-width: 2px; cursor: pointer; } .jcarousel-skin-tango .jcarousel-item:hover div.thumbnailOverlay, .jcarousel-skin-tango .jcarousel-item.active-cueitem div.thumbnailOverlay { visibility: visible; } .jcarousel-skin-tango .jcarousel-item-horizontal { margin-right: 12px; } .jcarousel-skin-tango .jcarousel-item div.thumbnailOverlay { background: black; bottom: 7px; color: #00EEFF; visibility: hidden; font-size: 75%; font-family: Arial, sans-serif; left: 2px; line-height: 0.9em; opacity: 0.7; padding: 5px 2px 4px 4px; position: absolute; text-align: center; z-index: 0; width: 111px; font-weight: bold; }
0.408159
0.068226
.Wind_inf_32 { stroke:none; fill: rgb(107,27,227) } .Wind_32_30 { stroke:none; fill: rgb(117,72,250) } .Wind_30_28 { stroke:none; fill: rgb(138,121,247) } .Wind_28_26 { stroke:none; fill: rgb(4,18,179) } .Wind_26_24 { stroke:none; fill: rgb(24,49,214) } .Wind_24_22 { stroke:none; fill: rgb(56,104,235) } .Wind_22_20 { stroke:none; fill: rgb(111,154,247) } .Wind_20_18 { stroke:none; fill: rgb(148,178,242) } .Wind_18_16 { stroke:none; fill: rgb(0,80,171) } .Wind_16_14 { stroke:none; fill: rgb(6,98,196) } .Wind_14_12 { stroke:none; fill: rgb(24,122,219) } .Wind_12_10 { stroke:none; fill: rgb(17,141,250) } .Wind_10_8 { stroke:none; fill: rgb(64,169,255) } .Wind_8_7 { stroke:none; fill: rgb(101,189,247) } .Wind_7_6 { stroke:none; fill: rgb(0,103,140) } .Wind_6_5 { stroke:none; fill: rgb(2,123,163) } .Wind_5_4 { stroke:none; fill: rgb(0,155,186) } .Wind_4_3 { stroke:none; fill: rgb(34,188,212) } .Wind_3_2 { stroke:none; fill: rgb(103,219,230) } .Wind_2_1 { stroke:none; fill: rgb(163,243,247) } .Wind_1_0 { stroke:none; fill: rgb(212,255,255) } .Wind_0_1 { stroke:none; fill: rgb(5,179,138) } .Wind_1_2 { stroke:none; fill: rgb(2,212,149) } .Wind_2_3 { stroke:none; fill: rgb(138,237,187) } .Wind_3_4 { stroke:none; fill: rgb(204,255,208) } .Wind_4_5 { stroke:none; fill: rgb(235,252,207) } .Wind_5_6 { stroke:none; fill: rgb(235,255,122) } .Wind_6_7 { stroke:none; fill: rgb(255,234,128) } .Wind_7_8 { stroke:none; fill: rgb(247,212,35) } .Wind_8_10 { stroke:none; fill: rgb(245,180,0) } .Wind_10_12 { stroke:none; fill: rgb(242,149,0) } .Wind_12_14 { stroke:none; fill: rgb(240,116,0) } .Wind_14_16 { stroke:none; fill: rgb(255,83,36) } .Wind_16_18 { stroke:none; fill: rgb(247,23,7) } .Wind_18_20 { stroke:none; fill: rgb(219,10,7) } .Wind_20_22 { stroke:none; fill: rgb(189,4,4) } .Wind_22_24 { stroke:none; fill: rgb(156,2,20) } .Wind_24_26 { stroke:none; fill: rgb(196,24,98) } .Wind_26_28 { stroke:none; fill: rgb(232,39,120) } .Wind_28_30 { stroke:none; fill: rgb(245,88,174) } .Wind_30_32 { stroke:none; fill: rgb(240,144,216) } .Wind_32_inf { stroke:none; fill: rgb(247,59,213) }
smartmet-server/share/wms/customers/gui/layers/isobands/uv_wind.css
.Wind_inf_32 { stroke:none; fill: rgb(107,27,227) } .Wind_32_30 { stroke:none; fill: rgb(117,72,250) } .Wind_30_28 { stroke:none; fill: rgb(138,121,247) } .Wind_28_26 { stroke:none; fill: rgb(4,18,179) } .Wind_26_24 { stroke:none; fill: rgb(24,49,214) } .Wind_24_22 { stroke:none; fill: rgb(56,104,235) } .Wind_22_20 { stroke:none; fill: rgb(111,154,247) } .Wind_20_18 { stroke:none; fill: rgb(148,178,242) } .Wind_18_16 { stroke:none; fill: rgb(0,80,171) } .Wind_16_14 { stroke:none; fill: rgb(6,98,196) } .Wind_14_12 { stroke:none; fill: rgb(24,122,219) } .Wind_12_10 { stroke:none; fill: rgb(17,141,250) } .Wind_10_8 { stroke:none; fill: rgb(64,169,255) } .Wind_8_7 { stroke:none; fill: rgb(101,189,247) } .Wind_7_6 { stroke:none; fill: rgb(0,103,140) } .Wind_6_5 { stroke:none; fill: rgb(2,123,163) } .Wind_5_4 { stroke:none; fill: rgb(0,155,186) } .Wind_4_3 { stroke:none; fill: rgb(34,188,212) } .Wind_3_2 { stroke:none; fill: rgb(103,219,230) } .Wind_2_1 { stroke:none; fill: rgb(163,243,247) } .Wind_1_0 { stroke:none; fill: rgb(212,255,255) } .Wind_0_1 { stroke:none; fill: rgb(5,179,138) } .Wind_1_2 { stroke:none; fill: rgb(2,212,149) } .Wind_2_3 { stroke:none; fill: rgb(138,237,187) } .Wind_3_4 { stroke:none; fill: rgb(204,255,208) } .Wind_4_5 { stroke:none; fill: rgb(235,252,207) } .Wind_5_6 { stroke:none; fill: rgb(235,255,122) } .Wind_6_7 { stroke:none; fill: rgb(255,234,128) } .Wind_7_8 { stroke:none; fill: rgb(247,212,35) } .Wind_8_10 { stroke:none; fill: rgb(245,180,0) } .Wind_10_12 { stroke:none; fill: rgb(242,149,0) } .Wind_12_14 { stroke:none; fill: rgb(240,116,0) } .Wind_14_16 { stroke:none; fill: rgb(255,83,36) } .Wind_16_18 { stroke:none; fill: rgb(247,23,7) } .Wind_18_20 { stroke:none; fill: rgb(219,10,7) } .Wind_20_22 { stroke:none; fill: rgb(189,4,4) } .Wind_22_24 { stroke:none; fill: rgb(156,2,20) } .Wind_24_26 { stroke:none; fill: rgb(196,24,98) } .Wind_26_28 { stroke:none; fill: rgb(232,39,120) } .Wind_28_30 { stroke:none; fill: rgb(245,88,174) } .Wind_30_32 { stroke:none; fill: rgb(240,144,216) } .Wind_32_inf { stroke:none; fill: rgb(247,59,213) }
0.620966
0.113678
.ilike .bx-ilike-button {color:#50688e; line-height: 14px; display:inline-block; cursor:pointer; font-size:9px; font-family: Verdana, Tahoma, sans-serif; height:20px; position:relative;-moz-user-select: none; -khtml-user-select: none; user-select: none;} .ilike .bx-ilike-left {background:url("images/i-like-sprite.png") no-repeat -15px 0; display:inline-block; height:20px; vertical-align:top; width:14px;} .ilike .bx-ilike-text {background:url("images/i-like-sprite.png") repeat-x 0 -21px; display:inline-block; height:17px; padding:3px 5px 0;} * html .ilike .bx-ilike-text{height:20px;} .ilike .bx-ilike-right-wrap {background:url("images/i-like-sprite.png") no-repeat 0 -105px; display:inline-block; height:20px; text-align:center; cursor:default} .ilike .bx-ilike-right {background:url("images/i-like-sprite.png") no-repeat right -105px; display:inline-block; min-width:14px; margin-left:2px; height:17px; padding:3px 4px 0 3px;} * html .ilike .bx-ilike-right {width:16px;} .ilike .bx-you-like .bx-ilike-left {background-position:-30px 0;} .ilike .bx-you-like .bx-ilike-text {background-position:0 -63px;} .ilike .bx-you-like .bx-ilike-right-wrap {background-position:0 -105px; } .ilike .bx-you-like .bx-ilike-right {background-position:right -105px;} .ilike .bx-ilike-button-hover .bx-you-like .bx-ilike-left {background-position:-45px 0;} .ilike .bx-ilike-button-hover .bx-you-like .bx-ilike-text {background-position:0 -126px;} .ilike .bx-ilike-button-disable { cursor:default;} .ilike .bx-ilike-button-disable .bx-ilike-left {background-position:-60px 0 !important;} .ilike .bx-ilike-button-disable .bx-ilike-text {background-position:0 -63px !important; color:#a4b2c6;} .ilike .bx-ilike-button-disable .bx-ilike-right-wrap {background-position:0 -105px !important; } .ilike .bx-ilike-button-disable .bx-ilike-right {background-position:right -105px !important;} .ilike .bx-ilike-button-hover .bx-ilike-left {background-position:0 0;} .ilike .bx-ilike-button-hover .bx-ilike-text {background-position:0 -42px;} .ilike .bx-ilike-button-hover .bx-ilike-right-wrap {background-position:0 -84px;} .ilike .bx-ilike-button-hover .bx-ilike-right {background-position:right -84px;} .rating_vote_graphic { display: inline-block!important; } .rating_vote_text { display: none!important;} .ilike .bx-ilike-plus-one { display: inline-block; position: absolute; padding: 4px; background-color: #687e96;color: #fff;-webkit-animation: likePlusOne 1.5s 1;-moz-animation: likePlusOne 1.5s 1;font-size: 9px;opacity: 0; margin-left: 2px; border-radius: 0px 2px 2px 0} @-webkit-keyframes likePlusOne { 0% { opacity: 0;} 40% { opacity: 1; } 60% { opacity: 1; } 100% { opacity: 0; }} @-moz-keyframes likePlusOne { 0% { opacity: 0;} 40% { opacity: 1; } 60% { opacity: 1; } 100% { opacity: 0; }}
www/html/bitrix/modules/main/install/components/bitrix/rating.vote/templates/like_graphic/style.css
.ilike .bx-ilike-button {color:#50688e; line-height: 14px; display:inline-block; cursor:pointer; font-size:9px; font-family: Verdana, Tahoma, sans-serif; height:20px; position:relative;-moz-user-select: none; -khtml-user-select: none; user-select: none;} .ilike .bx-ilike-left {background:url("images/i-like-sprite.png") no-repeat -15px 0; display:inline-block; height:20px; vertical-align:top; width:14px;} .ilike .bx-ilike-text {background:url("images/i-like-sprite.png") repeat-x 0 -21px; display:inline-block; height:17px; padding:3px 5px 0;} * html .ilike .bx-ilike-text{height:20px;} .ilike .bx-ilike-right-wrap {background:url("images/i-like-sprite.png") no-repeat 0 -105px; display:inline-block; height:20px; text-align:center; cursor:default} .ilike .bx-ilike-right {background:url("images/i-like-sprite.png") no-repeat right -105px; display:inline-block; min-width:14px; margin-left:2px; height:17px; padding:3px 4px 0 3px;} * html .ilike .bx-ilike-right {width:16px;} .ilike .bx-you-like .bx-ilike-left {background-position:-30px 0;} .ilike .bx-you-like .bx-ilike-text {background-position:0 -63px;} .ilike .bx-you-like .bx-ilike-right-wrap {background-position:0 -105px; } .ilike .bx-you-like .bx-ilike-right {background-position:right -105px;} .ilike .bx-ilike-button-hover .bx-you-like .bx-ilike-left {background-position:-45px 0;} .ilike .bx-ilike-button-hover .bx-you-like .bx-ilike-text {background-position:0 -126px;} .ilike .bx-ilike-button-disable { cursor:default;} .ilike .bx-ilike-button-disable .bx-ilike-left {background-position:-60px 0 !important;} .ilike .bx-ilike-button-disable .bx-ilike-text {background-position:0 -63px !important; color:#a4b2c6;} .ilike .bx-ilike-button-disable .bx-ilike-right-wrap {background-position:0 -105px !important; } .ilike .bx-ilike-button-disable .bx-ilike-right {background-position:right -105px !important;} .ilike .bx-ilike-button-hover .bx-ilike-left {background-position:0 0;} .ilike .bx-ilike-button-hover .bx-ilike-text {background-position:0 -42px;} .ilike .bx-ilike-button-hover .bx-ilike-right-wrap {background-position:0 -84px;} .ilike .bx-ilike-button-hover .bx-ilike-right {background-position:right -84px;} .rating_vote_graphic { display: inline-block!important; } .rating_vote_text { display: none!important;} .ilike .bx-ilike-plus-one { display: inline-block; position: absolute; padding: 4px; background-color: #687e96;color: #fff;-webkit-animation: likePlusOne 1.5s 1;-moz-animation: likePlusOne 1.5s 1;font-size: 9px;opacity: 0; margin-left: 2px; border-radius: 0px 2px 2px 0} @-webkit-keyframes likePlusOne { 0% { opacity: 0;} 40% { opacity: 1; } 60% { opacity: 1; } 100% { opacity: 0; }} @-moz-keyframes likePlusOne { 0% { opacity: 0;} 40% { opacity: 1; } 60% { opacity: 1; } 100% { opacity: 0; }}
0.36886
0.257737
*{ margin: 0px auto; padding: 0px; font-family: Arial,Helvetica,sans-serif; box-sizing: border-box; text-overflow: ellipsis; font-family: "Roboto"; } a{ text-decoration: none; color:#222; } ul{ list-style: none; } select,button,a,input{ cursor: pointer; } /**************FLEX CLASS****************/ .flex{ display: flex; } .fl-c{ flex-direction: column; } .fl-row{ flex-direction: row; } .fl-1{ flex:1; } .fl-2{ flex:2; } .fl-3{ flex:3; } .fl-4{ flex:6; } /***************************************/ .wrapper{ width:100%; } .inner-wrapper{ height:100vh; } .popup-create-wrap{ width: 100%; height: 100%; position: absolute; background: rgba(255, 255, 255, 0.7); z-index: 1001; display: none; } .popup-create-inner{ width: 100%; height: 100%; position: fixed; } .create-box{ width: 650px; background:#fff; border: 1px solid #ccc; margin-top: 5vh; position: relative; box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3); } .create-box-inner{ padding: 30px 20px; width: 95%; } .create-head{ overflow: hidden; } .create-head div h2{ font-size: 20px; color:#222; font-weight: normal; } .create-all{ overflow: hidden; margin: 10px 0px; } .bg-c{ margin-left: 13px; color:#f60; } .create-title{ float: left; width: 20%; font-size: 13px; color: #222; } .create-div{ float: left; width: 74%; } .create-div input{ width: 100%; border: 1px solid #e7e7e7; padding: 4px; border-top: 1px solid #8f8989; border-left: 1px solid #8f8989; } .create-text{ font-size: 13px; padding: 8px 15px; width: 90%; text-align: right; color: #222; padding-top: 0px; } .select-theme{ float: left; width: 70%; min-height: 250px; } .create-body{overflow: hidden;margin-top:20px;} .create-footer{ overflow: hidden; margin-top: 15px; } .create-fo-buttons{ float: right; } .close{ position: absolute; top: 15px; right: 20px; color:#c0b7b7; font-size: 17px; cursor:pointer; } /**************HEADER****************/ .header-wrapper{ width: 100%; } .header{ width: 100%; background:rgba(245,245,245,1); padding: 10px 0px 5px 0px; } .header-in{ width: 98% } .header-left{ width: 100%; align-items:center; } .header-left > div:nth-child(2){ border-left: 1px solid; color: #201d1d; } .header-left > div:nth-child(2) h3{ font-size: 20px; font-weight: normal; color: black; margin-left:30px; } .logo{ align-items: center; margin-right: 10px; } .logo div i{ } .logo div:nth-child(1){ font-size: 30px; color: #ff6113; } .logo div:nth-child(2){ margin-left: 7px; padding-right: 10px; } .logo div h3{ font-size: 22px; font-weight: normal; color: #201d1d; margin-left:3px; margin-right: 10px; } .header-right{ } .h-r-in{ float: right; position: relative; padding: 5px; cursor: pointer; } .h-r-in:hover .log-out{ display:block; } .log-out{ width: 60px; background-color: #fff; border: 1px solid #ececec; position: absolute; right: -7px; top: 43px; box-shadow: 0px 0px 8px -4px rgba(0,0,0,0.3); display: none; } .log-out div{ font-size: 13px; color:#222; padding: 7px 10px; cursor: pointer; } .log-out div:hover{ background-color:#fefaf7; color: #ccc; } .log-out div:last-child{ border-top: 1px solid #ececec; font-size: 11px; } .h-r-in img{ height: 35px; width: 35px; border-radius: 50%; } .header-bottom{ width: 100%; } .header-b-left{ margin-top: 5px; } .b-h-div{ width: 200px; float:left; } .b-h-div h4{ text-overflow: ellipsis; white-space: nowrap; overflow:hidden; } .b-h-menu{ background: #fff; border:1px solid #ccc; width:300px; position: absolute; z-index: 1000; border-radius: 2px; box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3); display: none; } .bhm-head{ padding: 10px 15px; font-size: 18px; color: #979797; } .bhm-body{ width: 100%; } .bhm-bl{ font-size: 13px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; padding: 0px; } .bhm-bl-active{ background: #edf4ff; } .bhm-bl a{ padding: 10px 20px; display: block; } .bhm-bl:hover{ background-color: #fff9e7; } .bhm-footer{ border-top: 1px solid #e1e1e1; font-size: 12px; } .bhm-footer:hover{ background-color: #fff9e7; } .bhm-footer a{ display: block; padding: 10px 15px; } .header-b-left > div:nth-child(1){ padding: 10px 0px; width: 90%; overflow: hidden; word-wrap: break-word; word-break: break-all; margin-right: 10px; } .header-b-left div:nth-child(1) h4{ font-weight: normal; font-size: 18px; } .header-b-left > div:nth-child(2){ width: 80%; } .header-b-left > div:nth-child(2) a{ font-size: 14px; font-weight: bold; color:#0f86b2; } .header-b-right{ align-items: center; } .header-b-right > div{ width: 100%; margin-top: 10px; } .hbr-in-left div:nth-child(2){ align-items: center; font-size: 13px; } .bold{ font-weight: bold; } .avatar-image{ width:50px; height: 50px; border-radius: 50px; overflow: hidden; margin: 0px 10px; } .avatar-image img{ width: 100%; height: 100%; } .btn-newp{ padding: 8px 10px; margin: 5px; color: #fff; border: #ff6113;; background:#ff6113; border-radius: 2px; font-size: 12px; font-weight: bold; } .hrb-b-left div:nth-child(1){ } .hrb-b-left div:nth-child(1) button{ } .hrb-b-left div:nth-child(2){ } .hrb-b-left div:nth-child(2) > div:nth-child(1){ } .hrb-b-left div:nth-child(2) > div:nth-child(2){ } .hbr-in-right{ } .hbr-in-right div{ } .hbr-in-right div:nth-child(1){ } .hbr-in-right div:nth-child(2){ } .hbr-in-right div:nth-child(2) div input[type='text']{ border: 1px solid #ccc; font-size: 14px; padding: 4px; margin: 0px 10px; } .hbr-in-right div:nth-child(2) div i{ position: relative; left: -36px; top: 1px; color:#ccc; } /************MAIN***************/ .main{ width: 100%; } .main-inner{ } /************MAIN LEFT***************/ .main-left{ } .main-left-inner{ } .main-menu{ width: 100%; margin-top: 10px; } .main-menu span{ } .main-menu span a{ } .main-menu ul > li{ padding: 10px; } .main-menu ul > li ul{ } .main-menu ul > li ul li{ padding: 5px 0px; font-size: 15px; } .main-menu ul > li ul li:hover{ background:#ebe8e8; } .main-menu ul > li ul li a{ padding-left: 60px; cursor: pointer; } .main-menu ul > li ul{ } .main-menu ul > li ul li{ padding: 5px 0px; font-size: 15px; } .main-menu ul > li ul li:hover{ background:#ebe8e8; } .main-menu ul > li ul li a{ padding-left: 60px; cursor: pointer; } .main-menu ul li:hover{ background:#eff2f4; } .main-menu ul > ul{ margin-top: 5px; } .main-menu ul > ul li{ padding: 5px 0px; font-size: 15px; } .main-menu ul > ul li:hover{ background:#eff2f4; cursor: pointer; } .main-menu ul > ul li a{ padding-left: 60px; cursor: pointer; display: block; } .main-menu ul li span{ } .main-menu ul li span i{ font-size: 22px; margin: 0px 10px; color:black; opacity: .35; } .main-menu ul li a{ padding-left: 5px; } .active{ color: #ff6113 !important; } .active i{ color: #ff6113 !important; opacity: 100% !important; } .active > a{ color: #ff6113 !important; } /************MAIN RIGHT***************/ .main-right{ margin-top: 15px; } .main-right-inner{ width: 99%; } .main-right-header{ height: 50px; width: 100%; } .main-right-header-in{ } .m-r-header-left > div{ float: left; flex: 1; } .m-r-header-left > div > div:nth-child(1){ margin-right: 10px; } .m-r-header-left > div > div:nth-child(2) button{ background:#e9e9e9; padding: 7px 15px; align-self: center; border-radius: 2px; border-right: 1px solid #d4cdcd; border-top: 1px solid #d4cdcd; border-bottom: 1px solid #d4cdcd; border-left: none; float: left; border-top-left-radius: 0px; border-bottom-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; font-size: 13px; font-weight: bold; } .m-r-header-left > div > div:nth-child(2) button:active{ background:#e4e4e4; } .m-r-header-left > div > div:nth-child(2) button:nth-child(1){ border-top-left-radius: 2px; border-bottom-left-radius: 2px; border-left: 1px solid #d4cdcd; } .m-r-header-left > div > div:nth-child(2) button:nth-child(4){ border-top-right-radius: 2px; border-bottom-right-radius: 2px; } .m-r-header-left > div > div:nth-child(2) button span:nth-child(2){ padding: 0px 4px; } .m-r-header-left > div > div:nth-child(2) button span:nth-child(1){ } .m-r-header-left > div > div:nth-child(2) button span:nth-child(2) i{ position: relative; top: -1px; left: 1px; } .all-check{ background:#e9e9e9; padding: 5px 15px; align-self: center; border-radius: 2px; border: 1px solid #d4cdcd; } .m-r-header-left{ position: relative; } .m-r-header-left div:nth-child(1) span{ } .m-r-header-left div:nth-child(2){ } .m-r-header-left div:nth-child(2) span{ } .sp{ float: left; vertical-align: middle; padding:7px 20px; font-size: 13px; } .m-r-header-right{ position: relative; } .m-r-header-right > div > div button{ background:#e9e9e9; padding: 7px 15px; border-radius: 2px; border-right: 1px solid #d4cdcd; border-top: 1px solid #d4cdcd; border-bottom: 1px solid #d4cdcd; border-left: none; border-top-left-radius: 0px; border-bottom-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; font-size: 13px; font-weight: bold; float: left; } .m-r-header-right > div > div button:nth-child(3) span{ padding: 0px 4px; } .m-r-header-right > div > div:nth-child(2) button span:nth-child(1){ } .m-r-header-right > div > div button:nth-child(3) span i{ position: relative; top: -1px; left: 1px; } .p-num{ border-radius: 1px; top: 30px; width: auto; overflow-x: hidden; overflow-y: scroll; max-height: 600px; word-break: break-all; word-wrap: break-word; background: #fff; position: absolute; border: 1px solid #ccc; z-index: 1000; left: 38px; display: none; } .p-num{ } .p-num ul li{ padding: 10px 15px; font-size: 13px; } .p-num ul li:hover{ background: #ffefd3; cursor: pointer; } .br{ border-top-left-radius: 2px !important; border-bottom-left-radius: 2px !important; border-left: 1px solid #d4cdcd !important; } .bl{ border-top-right-radius: 2px !important; border-bottom-right-radius: 2px !important; } .label-menu{ border-radius: 1px; top: 30px; width: 170px; overflow-x: hidden; overflow-y: scroll; max-height: 600px; word-break: break-all; word-wrap: break-word; background: rgb(255, 255, 255); position: absolute; border: 1px solid #ccc; display: none; } .label-menu ul li{ padding: 10px 15px; font-size: 13px; } .label-menu ul li:nth-child(1){ border-bottom: 1px solid #e4e0e0; } .label-menu ul li:nth-child(1):active{ background: #f1fcff; } .label-menu ul li:hover{ background: #ffefd3; cursor: pointer; } /************MAIN RIGHT CONTENT***************/ .main-right-content{ width: 100%; } .m-r-c-inner{ width: 98%; float: left; height: 60px; } .posts-wrap{ border-top: 1px solid #e9e5e5; } .post-wrap-inner{ } .post-link{ padding:10px 0px; } .post-in-left{ } .p-in-check{ padding: 2px 20px; } .p-in-check input{ } .nopost{ width: 100%; border-bottom: 1px solid #e9e5e5; align-content: center; padding: 20px; display: flex; } .nopost > div{ width: 500px; text-align: center; font-size: 13px; font-style: italic; color:#222; } .nopost > div p{ padding: 10px; padding-right: 0px; display: inline; } .nopost > div a{ padding: 10px; padding-left: 0px; color: #00838f; } .nopost > div a:hover{ text-decoration:underline; } .post-in-left div:nth-child(2){ } .p-l-head{ } .pl-head-left{ } .pl-h-lr-link{ float: left; margin-right: 5px; word-wrap: break-word; } .pl-h-lr-link a:hover{ text-decoration: underline; } .pl-h-lr-link span{ font-size: 14px; color:#373636; margin-right: 5px; } .pl-h-lf-link{ float: left; color: #c1c0c0 !important; } .pl-h-lf-link ul li{ display: inline-block; font-size: 14px; font-style: italic; } .pl-h-lf-link ul li:hover > a{ text-decoration: underline; } .pl-h-lf-link ul li a{ color: #000000 !important; } .pl-h-lr-link a{ color: #00838f; font-size: 13px; } .pl-head-right{ color: #f06723; font-style: italic; } .pl-head-right span{ font-size: 14px; } .p-l-footer{ font-size: 14px; margin: 5px 0px; color:#74c1c8; } .post-in-left:hover > div:nth-child(2) > div.p-l-footer ul{ display: block; } .p-l-footer > ul{ display: none; } .p-l-footer ul li { display: inline-block; vertical-align: middle; } .p-l-footer ul li:hover > a{ text-decoration: underline; } .p-l-footer ul li a{ text-decoration: none; padding-right: 5px; color:#0f8a96b0; font-size: 13px; } .post-in-right{ margin: 1px 20px; } .p-in-right div span{ font-size:13px; } .p-in-right{ font-size: 14px; color: #222; } .p-in-right div{ display: table-cell; min-width: 60px; max-width: 100px; overflow: hidden; } .p-in-right div:nth-child(1){ min-width: 100px !important; } .p-in-right i{ opacity: .25; padding: 0px 2px; } .pl-auth-name{ text-align: center; } .pl-auth-name span{ } .pl-auth-name span a{ font-size: 13px; color: #3e798c; } .pl-auth-name span a:hover{ text-decoration: underline; } .pl-auth-name span i{ } .pl-cm-count{ width: 60px; } .pl-cm-count span{ margin:0px 2px; display: block; float: left; min-width: 15px; } .pl-views-count i{ } .pl-views-count span{ margin:0px 2px; display: block; float: left; min-width: 15px; } .pl-post-date span{ font-size: 12px; } /***********FOOTER*************/ .footer{ width: 100%; margin: 10px; } .footer-inner{ color: #ccc; font-size: 12px; padding: 5px 5px margin:5px; } .footer-inner ul li{ display: inline-block; color: #ccc; padding: 5px 5px margin:5px; } .footer-inner ul li a{ color: #ccc; } /******************SETTINGS PAGE************************/ .settings{ width: 100%; margin-top: 10px; margin-bottom: 50px; } .setting-inner{ float: left; } .basic-settings{ width: 98%; float: left; } .basic-settings > div{ overflow: hidden; } .basic-settings div table tbody tr{ } .b-line{ border-bottom: 1px solid #f3f3f3; } .sec-1{ overflow: hidden; } .sec-1 table{ width: 800px; margin-top: 15px; float: left; } .sec-1 table tr{ vertical-align: top; } .sec-1 table tr:hover{ background:#fff7ea; } .sec-1 table td{ padding: 10px; } .b-title{ font-size: 20px; font-weight: normal; padding: 10px; color: #222; } .td-title{ width:250px; font-size: 13px; font-weight: normal; } .td-des{ } .td-des span{ } .td-des span a{ color:#3e798c; font-size: 14px; } .td-des span span{ font-size: 13px; } .blog-author{ background: #fff; } .ba-inner{ padding: 10px 0px; border: 1px solid #d4d4d4; } .ba-box{ width: 100%; display: flex; align-items: center; cursor: pointer; padding: 5px 10px; } .ba-box:hover{ background:#fff7ea; } .ba-name{ } .ba-name span{ margin-right: 10px; } .ba-email{ flex:1; } .ba-email a{ float: right; margin-right: 10px; } .ba-stats{ background:#f8f8f8; border: 1px solid #d4d4d4; border-radius: 2px; color:#222; font-size: 12px; font-weight: bold; position: relative; } .ba-stats div{ font-size: 12px; font-weight: bold; position: relative; padding: 7px 11px; } .ba-stats div:active{ background:#ebebeb; } .ba-stats ul{ position: absolute; font-size: 12px; font-weight: bold; background: #fff; left: 0px; top: 29px; z-index: 1000; border: 1px solid #ccc; display: none; } .ba-stats ul li{ padding: 5px 15px; font-weight: normal; font-size: 13px; } .ba-stats ul li:hover{ background: #ffedd7; } .ba-delete{ padding:0px 10px; } .ba-delete a{ color:#ccc; } .ba-delete a i{ color:#ccc; font-size: 17px; } .bt-title{ display: ; } .bn-title{ display: none; } .bn-input input[type="text"]{ width: 100%; border: 1px solid#ccc; padding: 5px; } .bn-button{ margin-top: 10px; } .cancel-btn{ background:#f6f3f3; border: 1px solid #ccc; padding: 7px 15px; border-radius: 2px; font-size: 12px; font-weight: bold; } .bt-error{ color: red; font-size: 12px; } .text-area{ width: 100%; min-height: 170px; padding: 10px; } .ad-auth{ padding: 10px 0px; } .ad-auth input[type="email"]{ width:100%; border: 1px solid#ccc; padding: 5px; } .ad-auth input[type="password"]{ width: 100%; border: 1px solid#ccc; padding: 5px; } .ad-auth input[type="text"]{ width: 100%; } .ad-auth-head{ font-size: 13px; margin-top: 10px; } .ad-auth span:nth-child(2){ } .au-main{ overflow: hidden; display: none; } .au-left{ float: left; width: 50% } .au-right{ float: left; width: 50% } .au-right > div{ width: 200px; height: 200px; margin: 20px 20px; border: 1px solid #ccc; overflow: hidden; } .au-right > div > img{ width: 100%; height: 100%; } .bt-title input[type="text"]{ border: 1px solid#ccc; padding: 5px; } .bt-title span{ font-size: 14px; } .cm-radio-label{ font-size: 13px; } .cm-radio-label input[type="radio"]{ } .stats-wrap{ width: 100%; } .stats-inner{ float: left; width: 80%; } .stats-header{ } .stats-header-buttons button{ background:#f8f8f8; border: 1px solid #d4d4d4; padding: 7px 11px; border-radius: 3px; color:#222; font-size: 12px; font-weight: bold; float:left; } .stats-header-buttons button:active{ background: #ebebeb; } .stats-header-buttons button:nth-child(1){ border-bottom-right-radius: 0px !important; border-top-right-radius: 0px !important; } .stats-header-buttons button:nth-child(2){ border-left: none; border-right: none; border-bottom-left-radius: 0px !important; border-top-left-radius: 0px !important; border-bottom-right-radius: 0px !important; border-top-right-radius: 0px !important; } .stats-header-buttons button:nth-child(3){ border-right: none; border-bottom-left-radius: 0px !important; border-top-left-radius: 0px !important; border-bottom-right-radius: 0px !important; border-top-right-radius: 0px !important; } .stats-header-buttons button:nth-child(4){ border-right: none; border-bottom-left-radius: 0px !important; border-top-left-radius: 0px !important; border-bottom-right-radius: 0px !important; border-top-right-radius: 0px !important; } .stats-header-buttons button:nth-child(5){ border-bottom-left-radius: 0px !important; border-top-left-radius: 0px !important; } .stats{ overflow: hidden; color: #201d1d; } .stats-box{ display: inline-block; width: 380px; margin-right: 20px; } .stats-box2{ margin:10px 0px; width: 380px; } .stat-head{ font-size: 20px; border-bottom: 1px solid #e5e5e5; padding: 8px 0px; color: #6b6868; } .stat-table{ text-align: left; border-bottom: 2px solid #6f7277; } .stat-table-head{ } .stat-table-head div{ padding-left: 10px; padding-right: 10px; font-size: 14px; padding-top: 5px; padding-bottom: 5px; color: #5a5959; text-shadow: 0px 0px 3px #ccc; } .st-body-list{ width: 100%; padding: 5px 10px; font-size: 14px; color: #5a5959; } .st-body-list a{ color: #0f86b9; } .st-body-list a > p{ font-size: 13px; } .stat-table-body > div:nth-child(even){ background:#f4f6fa; } .st-body-list:hover { background:#fffafa !important; cursor: pointer; } .stat-table-body{ max-height: 290px; overflow: scroll; overflow-x: hidden; } .stat2-table-body > div > div div:nth-child(2){ text-align: right; } .stat2-table-body > div > div { border-bottom: 1px solid #ccc; padding: 10px 0px; } .nostats{ } .nostats span{ vertical-align: -35px; color: #222; font-size: 14px; } /******************************EDIT PAGES CSS*********************************/ .edit-wrap{ width: 100%; } .edit-wrap-inner{ width: 100%; height: 100%; } .edit-head-wrap{ width: 100%; padding: 10px 20px; } .edit-main-wrap{ width: 100%; height: 100%; } .edit-main-inner{ width: 100%; height: 99%; } .edit-main-left{ width: 100%; padding-bottom: 40px; } .edit-main-nav{ width: 100%; } .edit-main-editor{ width: 100%; height: 100%; } .edit-main-right{ width: 100%; } .edit-post-title{ width: 230px; } .edit-input{ } .edit-input input[type="text"]{ width: 100%; padding: 5px; border: 1px solid #ccc; } .edit-button{ width: 600px; } .edit-button > div div:nth-child(2){ font-size: 14px; align-items: center; } .edit-head-inner{ align-items: center; } .edit-pt{ height: 27px; overflow: hidden; font-size: 14px; padding-left: 10px; } .edit-pt h2{ font-weight: normal; font-size: 18px; text-overflow: ellipsis; padding: 7px 0px; line-height: 14px; } .edit-pt h2 a{ white-space: nowrap; max-width: 170px; overflow: hidden; } .edit-pt h2 span{ padding: 0px 7px; color:#ff7800; } .edit-button > div{ align-items: center; } .eb-buttons{ } .eb-buttons div{ float: left; width: 100%; margin-left: 20px; } .eb-buttons div button:nth-child(1){ padding: 8px 10px; margin: 5px; color: #fff; border: #ff6113; background: #ff6113; border-radius: 2px; font-size: 12px; font-weight: bold; } .eb-buttons div button:nth-child(1):active{ background:#f85200 !important; } .eb-buttons div button{ background:#f8f8f8; border: 1px solid #d4d4d4; padding: 7px 11px; border-radius: 2px; color:#222; font-size: 12px; font-weight: bold; } .eb-buttons div button:active{ background:#ebebeb; } .ql-size-small img{ width: 200px !important; height: 125px !important; } .ql-editor img{ width: 320px ; height: 200px; } .ql-size-large > img{ width: 400px !important; height: 300px !important; } .ql-size-huge > img{ width: auto !important; height: auto !important; } .ql-container{ background:#f3f3f3; padding: 20px 0px; } .ql-editor{ width: 653px; background: #fff; border: 1px solid #ccc; } .edit-right-menu{ } .edit-right-menu-inner{ } .edit-menu-title{ padding: 12px 0px; height: 55px; border-bottom: 1px solid#ccc; border-top: 1px solid#ccc; } .edit-menu-title a{ font-size: 15px; margin: 0px 15px; color:#ff5400; } .edit-menu-title a span{ vertical-align: middle; margin-right: 5px; } .edit-menu-title a span i{ vertical-align: 2px; } .edit-menu-title a span:nth-child(2){ } .edm-label-box{ border-bottom: 1px solid #ccc; } .edm-label-head{ padding: 15px 10px; } .edm-label-show{ padding: 0px 0px 0px 32px; font-size: 13px; color:#6f6f6f; } .edm-label-show div{ } .edm-label-head span{ margin: 0px 2px; font-size: 14px; color: #7d7b7b; } .edm-label-body{ padding: 0px 0px 0px 32px; margin-bottom: 15px; } .edm-label-textarea{ } .edm-label-textarea span{ font-size: 13px; color: #757575; } .edm-label-textarea textarea{ font-size: 13px; width: 98%; } .edm-label-list > div{ max-height: 220px; overflow-y: auto; margin: 10px 0px; word-break: break-all; font-size: 13px; width: 240px; } .edm-label-list > div a{ display: inline-block; color: #137e97; } .edm-label-list > div span{ display: inline-block; } .edm-label-button{ margin-top: 10px; } .edm-label-button button{ background:#f8f8f8; border: 1px solid #d4d4d4; padding: 7px 11px; border-radius: 2px; color:#222; font-size: 12px; font-weight: bold; } .edm-label-button button:active{ background:#ebebeb; } .edit-active{ background: #f4f9fc; } .radio-btn-box{ } .radio-btn-box div{ } .short-div{ width: 90%; display: inline-block; } .custom-input{ margin-bottom:5px; } .custom-input input{ border: 1px solid #ccc; padding: 2px 2px; } .custom-input span{ font-size: 14px; color: #a8a5a5; } /**********************************SIGN IN PAGE CSS****************************************/ .in-fo{ width: 100% !important; border-radius: 3px; background:#fbfbfb; padding:10px !important; } .in-div{ position: relative; } .in-span{ position: absolute; right: 12px; top: 15px; font-size: 20px; color:#e7e7e7; } .sign-in-wrapper{ width: 100%; height: 100%; background: url('../images/back2.jpg'); background-position: center; background-size: 100vw; } .sign-in-box{ justify-content: center; align-self: center; width: 430px; background: #fff; overflow: hidden; border: 1px solid #cdcbcb; border-radius: 4px; box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.2); } .sign-in-box form{ width: 100%; } .sign-head{ font-size: 161px; height: 180px; } .sign-head span i{ transform: rotate(-20deg); vertical-align: -35px; color:#f8ab16; position: relative; top: -50px; } .sign-head span{ background:#fff; height: 140px; display: block; position: relative; top: 10px; border-radius: 100px; } .sign-body{ width: 90%; padding: 15px 15px; margin-top: 15px; } .sign-body div{ } .sign-body > div > div > div{ font-size: 13px; color: #f8ab16; } .sign-body input{ width: 300px; border: 1px solid #ded8d8; padding: 7px 10px; margin: 7px 0px; } .sign-footer{ margin-bottom: 20px; text-align: right; text-align: center; } .sign-footer button{ background:#f8f8f8; border: 1px solid #d4d4d4; padding: 7px 11px; border-radius: 2px; color:#222; font-size: 12px; font-weight: bold; } .sign-footer button:nth-child(2):active{ background:#ebebeb; } .sign-footer button:nth-child(1){ padding: 8px 10px; margin: 5px; color: #fff; border: #ff6113; background: #ff6113; border-radius: 2px; font-size: 12px; font-weight: bold; } .sign-footer button:nth-child(1):active{ background:#f85200 !important; } /**********************************SIGN UP PAGE CSS****************************************/ .sup-div{ margin-top:20px; } .sin-error{ font-size: 13px; color:#ff6113; } .b-add-error{ font-size: 12px; color: #347fc5; margin-left: 6px; } .sign-up-wrapper{ width: 100%; height: 100%; background:#fff; } .signup-logo{ align-items: center; background: url('../images/back2.jpg'); background-position: left; background-size: 100vw; } .signup-logo div span{ width: 159px; height: 134px; display: block; top: -70px; position: relative; background: #fff; } .signup-logo div h2{ font-size: 24px; color: #6c6c6c; font-family: roboto,sans-serif; line-height: 40px; } .signup-logo div p{ color:#6c6c6c; font-size: 15px; } .signup-logo div i{ font-size: 200px; color:#ff6113; position: absolute; top: -30px; left: -5px; } .sign-up-box-wrap{ align-items: center; display: flex; align-self: center; box-shadow:0px -7px 13px 0px rgba(0,0,0,0.3); height: 100vh; } .sign-up-box{ width: 650px; margin: 40px auto; } .sign-up-head{ width: 100%; text-align: center; font-size: 140px; color:#fff; background:#ff5722; padding: 20px 0px; } .sign-up-head div span i{ transform: rotate(-20deg); color:#f8ab16; font-size: 160px; } .avatar-div{ width: 200px; height: 200px; float: right; overflow: hidden; border: 1px solid #c1cbcc; border-radius: 2px; } .sign-up-avatar img{ width: 100%; height: 100%; } .sign-up-body{ width: 85%; margin: 40px auto; } .sign-up-body input[type="text"], .sign-up-body input[type="email"] ,.sign-up-body input[type="password"]{ width: 100%; border: 1px solid #f1eded; padding: 11px 10px; margin: 7px 0px; border-radius: 4px; background: #fafafa; } .sign-up-body > div:nth-child(3) > div > div{ font-size: 13px; color:#ff6113; } .sign-up-body-wrap{ } .blog-t{ width: 100%; } .blog-t div:nth-child(1){ padding: 10px 0px; color: #6c6c6c; } .blog-des div:nth-child(1){ padding: 10px 0px; color: #6c6c6c; } .blog-des{ width: 100%; margin-bottom: 40px; } .blog-des textarea{ width: 100%; } .l-btn{ font-size: 16px !important; padding: 10px 40px !important; border-radius: 3px !important; } /******************************LAYOUT PAGE*********************************************/ .layout-wrapper{ } .layout-inner{ } .layout{ width: 940px; float: left; background-color: rgba(236, 239, 242, 0.8); overflow: hidden; text-align: left; padding: 20px; border: 1px solid #d7d7d7; } .layout div{ padding: 10px; width: 100%; } .layout div > div > div{ padding: 10px; user-select: none; } /*****************************WIDGETS AND GADGETS***************************************/ .layout-widget-box{ padding: 0px !important; } .layout-widget-inner{ padding: 0px !important; } .lay-save-div{ width: 260px; text-align: right; } .lay-border{ border: 1px solid #d7d7d7; } .dashed-border{ border: 1px dashed #c3c3c3; margin: 5px 5px; } .add-gadget{ margin: 10px auto; } .add-gadget span{ margin-right: 5px; color: #777; } .add-gadget span a{ color: #2d59df; } .add-gadget span a:hover{ text-decoration: underline; } .gadget{ border: 1px solid #ccc; background:#fff; overflow: hidden; padding: 0px !important; cursor: pointer; margin: 5px auto; box-shadow: 0px 5px 13px -10px #333; } .gadget-left{ display: flex; align-items: center; background:#ccc; color:#fff; width: 10px !important; } .gadget-left span{ padding: 10px 3px !important; } .gadget-right{ } .gadget-body{ padding: 0px !important; height: 60px; color:#555; font-size: 15px; } .gadget-body div{ padding: 0px !important; width: auto; } .gadget-right div:nth-child(1){ padding: 10px 0px 0px 8px !important; width: 100%; } .gadget-right div:nth-child(2){ padding: 0px 0px 0px 8px !important; width: 100%; } .gadget-right div:nth-child(2) span{ font-size: 12px; color:#535557; } .gadget-body > span{ font-size: 10px; display: flex; align-items: end; padding: 10px; } .gadget-body span a{ margin-right: 5px; color:#28678c; } .gadget-body span a:hover{ text-decoration: underline; } .layout h3{ width: 100%; padding: 4px 15px; } /*****************************HEADER-SECTION***************************************/ .header-section{ width: 100%; padding: 0px !important; } .header-section div{ width: 100%; } .header-1{padding: 0px !important;margin:20px auto;} .nav-1{padding: 0px !important;} /*****************************MAIN-SECTION***************************************/ .main-section{ width: 100%; padding: 0px !important; } .main-1{ padding: 0px !important; margin:20px auto; } .main-widget{ height: 300px; background:#fff; border:1px solid #ccc; padding: 10px; } .sidebar-1{padding: 0px !important;margin:20px 20px;} .footer-section{ padding: 0px !important;margin:10px auto; } .footer-1{} .footer-2{} .footer-3{} /***************************LAYOUT POPUP PAGE**************************************/ .header-popup{ padding: 15px; margin-left: 30px; } .lay-header{ padding: 20px 0px 20px 45px; border-bottom: 1px solid #e7e7e7; width: 100%; } .header-bottom h3{ width: 100%; font-size: 19px; font-weight: normal; color: #ff6113; } .layout-pop-wrap{ width: 100%; } .layout-pop-inner{ width: 100%; overflow: hidden; } .laypopup-box{ max-width: 780px; margin: 15px 0px; min-width: 670px; } .l-popup{ } .l-popup > .bn-title{ display: block; } .l-popup table{ border-spacing: 0px 20px; min-width: 600px; max-width: 750px; margin: 0px 40px; } .l-popup table tbody tr td{ } .l-popup table tbody tr td.td-title{ vertical-align: top; padding: 10px; font-size: 14px; color:#666; } .lt-foo{ width: 100%; padding-left: 45px; } .l-popup-head{ border-bottom: 1px solid #e7e7e7; padding: 20px 50px; text-align: left; width: 100%; } .l-popup-head span{ } .l-popup-body{ padding: 30px 0px; width: 100%;border-bottom: 1px solid #e7e7e7; } .l-popup-body > div{ width: 88%; height: 100%; } .lp-box div:nth-child() div{ width: 100%; height: 100%; } .lp-box{ align-items: center; } .lp-box > div:nth-child(1){ font-size: 35px; width: 65px; text-align: center; } .lpopup-title{ } .lpopup-add{ height: 100%; padding: 7px 0px; } .lpopup-add span{ font-size: 15px; font-weight: bold; color: #222; } .add-color{ color: #222 !important; } .lpopup-head{ } .lpopup-head a{ font-size: 18px; font-weight: bold; color: #038995; } .lpopup-body{ font-size: 14px; padding: 2px 0px; } .lpopup-foo span{ font-size: 13px; margin-right: 4px; } .lpopup-foo span a{ color:#038995; font-size: 14px; } .lpopup-add span a{ color: #5194ea; font-size: 24px; } .add-link-box{ padding-top: 15px; } .add-link-box{ } .add-btn-div{ } .add-link-body{ padding-top: 15px; } .add-link-body ul li{ margin-top: 5px; } .add-link-body ul li span:nth-child(1){ background:#ccc; margin-right: 5px; } .papular-inputs{ font-size: 13px; padding: 10px 0px; } .papular-inputs input{ font-size: 14px; margin:5px; } .papular-inputs span{ font-size: 14px; margin:5px; } .popup-html-widget{ width: 100%; padding: 10px 45px; } .pop-html-title{ padding: 0px 0px; color:#222; font-size: 14px; } .popup-html-sec{ padding: 10px 0px; } /*********************************EDIT HTML PAGE*******************************************/ .edit-tamplate-wrap{ width: 100%; min-height:400px; max-height: 1000px; } .edit-tamplate-inner{ width: 100%; } .edit-tamplate-head{ width: 100%; overflow: hidden; } .edit-tamplate-body{ overflow: hidden; width: 95%; position: relative; margin: 30px 0px; min-height: 650px; max-height: 950px; border: 1px solid #ccc; } .edit-tamplate{ width: 100%; position: relative; } .edit-tamplate{ min-height: 650px; min-width: 100%; overflow-x: hidden; overflow-y: scroll; max-height: 750px; } .edit-tamplate *{ font:12px/normal 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace; } .rightpad{ float: right; overflow: hidden; text-align: right; margin-right: 80px; } .disabled{ background:-moz-linear-gradient(top,#f57b54,#e64a19) !important; border-color: rgba(0,0,0,0.1) !important; color: #444 !important; opacity: .5 !important; } .display{ display: block !important; } /***************************BLOG ERROR PAGE***********************************/ .error-page{ width:675px; } .error-page-inner{ justify-content: center; display: flex; } .error-heading{ margin-top: -100px; } .error-heading h3{ font-size: 45px; font-weight: normal; color: #ff6113; } .error-text{ width: 100%; padding: 10px; color: #222; font-size: 14px; } .foo{ width: 100%; } .foo-bottom{ width: 1000px; background:#ccc; } .foo-inner-left{ float: left; } .fo-in-right{ float:right; }
frontend/assets/css/style.css
*{ margin: 0px auto; padding: 0px; font-family: Arial,Helvetica,sans-serif; box-sizing: border-box; text-overflow: ellipsis; font-family: "Roboto"; } a{ text-decoration: none; color:#222; } ul{ list-style: none; } select,button,a,input{ cursor: pointer; } /**************FLEX CLASS****************/ .flex{ display: flex; } .fl-c{ flex-direction: column; } .fl-row{ flex-direction: row; } .fl-1{ flex:1; } .fl-2{ flex:2; } .fl-3{ flex:3; } .fl-4{ flex:6; } /***************************************/ .wrapper{ width:100%; } .inner-wrapper{ height:100vh; } .popup-create-wrap{ width: 100%; height: 100%; position: absolute; background: rgba(255, 255, 255, 0.7); z-index: 1001; display: none; } .popup-create-inner{ width: 100%; height: 100%; position: fixed; } .create-box{ width: 650px; background:#fff; border: 1px solid #ccc; margin-top: 5vh; position: relative; box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3); } .create-box-inner{ padding: 30px 20px; width: 95%; } .create-head{ overflow: hidden; } .create-head div h2{ font-size: 20px; color:#222; font-weight: normal; } .create-all{ overflow: hidden; margin: 10px 0px; } .bg-c{ margin-left: 13px; color:#f60; } .create-title{ float: left; width: 20%; font-size: 13px; color: #222; } .create-div{ float: left; width: 74%; } .create-div input{ width: 100%; border: 1px solid #e7e7e7; padding: 4px; border-top: 1px solid #8f8989; border-left: 1px solid #8f8989; } .create-text{ font-size: 13px; padding: 8px 15px; width: 90%; text-align: right; color: #222; padding-top: 0px; } .select-theme{ float: left; width: 70%; min-height: 250px; } .create-body{overflow: hidden;margin-top:20px;} .create-footer{ overflow: hidden; margin-top: 15px; } .create-fo-buttons{ float: right; } .close{ position: absolute; top: 15px; right: 20px; color:#c0b7b7; font-size: 17px; cursor:pointer; } /**************HEADER****************/ .header-wrapper{ width: 100%; } .header{ width: 100%; background:rgba(245,245,245,1); padding: 10px 0px 5px 0px; } .header-in{ width: 98% } .header-left{ width: 100%; align-items:center; } .header-left > div:nth-child(2){ border-left: 1px solid; color: #201d1d; } .header-left > div:nth-child(2) h3{ font-size: 20px; font-weight: normal; color: black; margin-left:30px; } .logo{ align-items: center; margin-right: 10px; } .logo div i{ } .logo div:nth-child(1){ font-size: 30px; color: #ff6113; } .logo div:nth-child(2){ margin-left: 7px; padding-right: 10px; } .logo div h3{ font-size: 22px; font-weight: normal; color: #201d1d; margin-left:3px; margin-right: 10px; } .header-right{ } .h-r-in{ float: right; position: relative; padding: 5px; cursor: pointer; } .h-r-in:hover .log-out{ display:block; } .log-out{ width: 60px; background-color: #fff; border: 1px solid #ececec; position: absolute; right: -7px; top: 43px; box-shadow: 0px 0px 8px -4px rgba(0,0,0,0.3); display: none; } .log-out div{ font-size: 13px; color:#222; padding: 7px 10px; cursor: pointer; } .log-out div:hover{ background-color:#fefaf7; color: #ccc; } .log-out div:last-child{ border-top: 1px solid #ececec; font-size: 11px; } .h-r-in img{ height: 35px; width: 35px; border-radius: 50%; } .header-bottom{ width: 100%; } .header-b-left{ margin-top: 5px; } .b-h-div{ width: 200px; float:left; } .b-h-div h4{ text-overflow: ellipsis; white-space: nowrap; overflow:hidden; } .b-h-menu{ background: #fff; border:1px solid #ccc; width:300px; position: absolute; z-index: 1000; border-radius: 2px; box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3); display: none; } .bhm-head{ padding: 10px 15px; font-size: 18px; color: #979797; } .bhm-body{ width: 100%; } .bhm-bl{ font-size: 13px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; padding: 0px; } .bhm-bl-active{ background: #edf4ff; } .bhm-bl a{ padding: 10px 20px; display: block; } .bhm-bl:hover{ background-color: #fff9e7; } .bhm-footer{ border-top: 1px solid #e1e1e1; font-size: 12px; } .bhm-footer:hover{ background-color: #fff9e7; } .bhm-footer a{ display: block; padding: 10px 15px; } .header-b-left > div:nth-child(1){ padding: 10px 0px; width: 90%; overflow: hidden; word-wrap: break-word; word-break: break-all; margin-right: 10px; } .header-b-left div:nth-child(1) h4{ font-weight: normal; font-size: 18px; } .header-b-left > div:nth-child(2){ width: 80%; } .header-b-left > div:nth-child(2) a{ font-size: 14px; font-weight: bold; color:#0f86b2; } .header-b-right{ align-items: center; } .header-b-right > div{ width: 100%; margin-top: 10px; } .hbr-in-left div:nth-child(2){ align-items: center; font-size: 13px; } .bold{ font-weight: bold; } .avatar-image{ width:50px; height: 50px; border-radius: 50px; overflow: hidden; margin: 0px 10px; } .avatar-image img{ width: 100%; height: 100%; } .btn-newp{ padding: 8px 10px; margin: 5px; color: #fff; border: #ff6113;; background:#ff6113; border-radius: 2px; font-size: 12px; font-weight: bold; } .hrb-b-left div:nth-child(1){ } .hrb-b-left div:nth-child(1) button{ } .hrb-b-left div:nth-child(2){ } .hrb-b-left div:nth-child(2) > div:nth-child(1){ } .hrb-b-left div:nth-child(2) > div:nth-child(2){ } .hbr-in-right{ } .hbr-in-right div{ } .hbr-in-right div:nth-child(1){ } .hbr-in-right div:nth-child(2){ } .hbr-in-right div:nth-child(2) div input[type='text']{ border: 1px solid #ccc; font-size: 14px; padding: 4px; margin: 0px 10px; } .hbr-in-right div:nth-child(2) div i{ position: relative; left: -36px; top: 1px; color:#ccc; } /************MAIN***************/ .main{ width: 100%; } .main-inner{ } /************MAIN LEFT***************/ .main-left{ } .main-left-inner{ } .main-menu{ width: 100%; margin-top: 10px; } .main-menu span{ } .main-menu span a{ } .main-menu ul > li{ padding: 10px; } .main-menu ul > li ul{ } .main-menu ul > li ul li{ padding: 5px 0px; font-size: 15px; } .main-menu ul > li ul li:hover{ background:#ebe8e8; } .main-menu ul > li ul li a{ padding-left: 60px; cursor: pointer; } .main-menu ul > li ul{ } .main-menu ul > li ul li{ padding: 5px 0px; font-size: 15px; } .main-menu ul > li ul li:hover{ background:#ebe8e8; } .main-menu ul > li ul li a{ padding-left: 60px; cursor: pointer; } .main-menu ul li:hover{ background:#eff2f4; } .main-menu ul > ul{ margin-top: 5px; } .main-menu ul > ul li{ padding: 5px 0px; font-size: 15px; } .main-menu ul > ul li:hover{ background:#eff2f4; cursor: pointer; } .main-menu ul > ul li a{ padding-left: 60px; cursor: pointer; display: block; } .main-menu ul li span{ } .main-menu ul li span i{ font-size: 22px; margin: 0px 10px; color:black; opacity: .35; } .main-menu ul li a{ padding-left: 5px; } .active{ color: #ff6113 !important; } .active i{ color: #ff6113 !important; opacity: 100% !important; } .active > a{ color: #ff6113 !important; } /************MAIN RIGHT***************/ .main-right{ margin-top: 15px; } .main-right-inner{ width: 99%; } .main-right-header{ height: 50px; width: 100%; } .main-right-header-in{ } .m-r-header-left > div{ float: left; flex: 1; } .m-r-header-left > div > div:nth-child(1){ margin-right: 10px; } .m-r-header-left > div > div:nth-child(2) button{ background:#e9e9e9; padding: 7px 15px; align-self: center; border-radius: 2px; border-right: 1px solid #d4cdcd; border-top: 1px solid #d4cdcd; border-bottom: 1px solid #d4cdcd; border-left: none; float: left; border-top-left-radius: 0px; border-bottom-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; font-size: 13px; font-weight: bold; } .m-r-header-left > div > div:nth-child(2) button:active{ background:#e4e4e4; } .m-r-header-left > div > div:nth-child(2) button:nth-child(1){ border-top-left-radius: 2px; border-bottom-left-radius: 2px; border-left: 1px solid #d4cdcd; } .m-r-header-left > div > div:nth-child(2) button:nth-child(4){ border-top-right-radius: 2px; border-bottom-right-radius: 2px; } .m-r-header-left > div > div:nth-child(2) button span:nth-child(2){ padding: 0px 4px; } .m-r-header-left > div > div:nth-child(2) button span:nth-child(1){ } .m-r-header-left > div > div:nth-child(2) button span:nth-child(2) i{ position: relative; top: -1px; left: 1px; } .all-check{ background:#e9e9e9; padding: 5px 15px; align-self: center; border-radius: 2px; border: 1px solid #d4cdcd; } .m-r-header-left{ position: relative; } .m-r-header-left div:nth-child(1) span{ } .m-r-header-left div:nth-child(2){ } .m-r-header-left div:nth-child(2) span{ } .sp{ float: left; vertical-align: middle; padding:7px 20px; font-size: 13px; } .m-r-header-right{ position: relative; } .m-r-header-right > div > div button{ background:#e9e9e9; padding: 7px 15px; border-radius: 2px; border-right: 1px solid #d4cdcd; border-top: 1px solid #d4cdcd; border-bottom: 1px solid #d4cdcd; border-left: none; border-top-left-radius: 0px; border-bottom-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; font-size: 13px; font-weight: bold; float: left; } .m-r-header-right > div > div button:nth-child(3) span{ padding: 0px 4px; } .m-r-header-right > div > div:nth-child(2) button span:nth-child(1){ } .m-r-header-right > div > div button:nth-child(3) span i{ position: relative; top: -1px; left: 1px; } .p-num{ border-radius: 1px; top: 30px; width: auto; overflow-x: hidden; overflow-y: scroll; max-height: 600px; word-break: break-all; word-wrap: break-word; background: #fff; position: absolute; border: 1px solid #ccc; z-index: 1000; left: 38px; display: none; } .p-num{ } .p-num ul li{ padding: 10px 15px; font-size: 13px; } .p-num ul li:hover{ background: #ffefd3; cursor: pointer; } .br{ border-top-left-radius: 2px !important; border-bottom-left-radius: 2px !important; border-left: 1px solid #d4cdcd !important; } .bl{ border-top-right-radius: 2px !important; border-bottom-right-radius: 2px !important; } .label-menu{ border-radius: 1px; top: 30px; width: 170px; overflow-x: hidden; overflow-y: scroll; max-height: 600px; word-break: break-all; word-wrap: break-word; background: rgb(255, 255, 255); position: absolute; border: 1px solid #ccc; display: none; } .label-menu ul li{ padding: 10px 15px; font-size: 13px; } .label-menu ul li:nth-child(1){ border-bottom: 1px solid #e4e0e0; } .label-menu ul li:nth-child(1):active{ background: #f1fcff; } .label-menu ul li:hover{ background: #ffefd3; cursor: pointer; } /************MAIN RIGHT CONTENT***************/ .main-right-content{ width: 100%; } .m-r-c-inner{ width: 98%; float: left; height: 60px; } .posts-wrap{ border-top: 1px solid #e9e5e5; } .post-wrap-inner{ } .post-link{ padding:10px 0px; } .post-in-left{ } .p-in-check{ padding: 2px 20px; } .p-in-check input{ } .nopost{ width: 100%; border-bottom: 1px solid #e9e5e5; align-content: center; padding: 20px; display: flex; } .nopost > div{ width: 500px; text-align: center; font-size: 13px; font-style: italic; color:#222; } .nopost > div p{ padding: 10px; padding-right: 0px; display: inline; } .nopost > div a{ padding: 10px; padding-left: 0px; color: #00838f; } .nopost > div a:hover{ text-decoration:underline; } .post-in-left div:nth-child(2){ } .p-l-head{ } .pl-head-left{ } .pl-h-lr-link{ float: left; margin-right: 5px; word-wrap: break-word; } .pl-h-lr-link a:hover{ text-decoration: underline; } .pl-h-lr-link span{ font-size: 14px; color:#373636; margin-right: 5px; } .pl-h-lf-link{ float: left; color: #c1c0c0 !important; } .pl-h-lf-link ul li{ display: inline-block; font-size: 14px; font-style: italic; } .pl-h-lf-link ul li:hover > a{ text-decoration: underline; } .pl-h-lf-link ul li a{ color: #000000 !important; } .pl-h-lr-link a{ color: #00838f; font-size: 13px; } .pl-head-right{ color: #f06723; font-style: italic; } .pl-head-right span{ font-size: 14px; } .p-l-footer{ font-size: 14px; margin: 5px 0px; color:#74c1c8; } .post-in-left:hover > div:nth-child(2) > div.p-l-footer ul{ display: block; } .p-l-footer > ul{ display: none; } .p-l-footer ul li { display: inline-block; vertical-align: middle; } .p-l-footer ul li:hover > a{ text-decoration: underline; } .p-l-footer ul li a{ text-decoration: none; padding-right: 5px; color:#0f8a96b0; font-size: 13px; } .post-in-right{ margin: 1px 20px; } .p-in-right div span{ font-size:13px; } .p-in-right{ font-size: 14px; color: #222; } .p-in-right div{ display: table-cell; min-width: 60px; max-width: 100px; overflow: hidden; } .p-in-right div:nth-child(1){ min-width: 100px !important; } .p-in-right i{ opacity: .25; padding: 0px 2px; } .pl-auth-name{ text-align: center; } .pl-auth-name span{ } .pl-auth-name span a{ font-size: 13px; color: #3e798c; } .pl-auth-name span a:hover{ text-decoration: underline; } .pl-auth-name span i{ } .pl-cm-count{ width: 60px; } .pl-cm-count span{ margin:0px 2px; display: block; float: left; min-width: 15px; } .pl-views-count i{ } .pl-views-count span{ margin:0px 2px; display: block; float: left; min-width: 15px; } .pl-post-date span{ font-size: 12px; } /***********FOOTER*************/ .footer{ width: 100%; margin: 10px; } .footer-inner{ color: #ccc; font-size: 12px; padding: 5px 5px margin:5px; } .footer-inner ul li{ display: inline-block; color: #ccc; padding: 5px 5px margin:5px; } .footer-inner ul li a{ color: #ccc; } /******************SETTINGS PAGE************************/ .settings{ width: 100%; margin-top: 10px; margin-bottom: 50px; } .setting-inner{ float: left; } .basic-settings{ width: 98%; float: left; } .basic-settings > div{ overflow: hidden; } .basic-settings div table tbody tr{ } .b-line{ border-bottom: 1px solid #f3f3f3; } .sec-1{ overflow: hidden; } .sec-1 table{ width: 800px; margin-top: 15px; float: left; } .sec-1 table tr{ vertical-align: top; } .sec-1 table tr:hover{ background:#fff7ea; } .sec-1 table td{ padding: 10px; } .b-title{ font-size: 20px; font-weight: normal; padding: 10px; color: #222; } .td-title{ width:250px; font-size: 13px; font-weight: normal; } .td-des{ } .td-des span{ } .td-des span a{ color:#3e798c; font-size: 14px; } .td-des span span{ font-size: 13px; } .blog-author{ background: #fff; } .ba-inner{ padding: 10px 0px; border: 1px solid #d4d4d4; } .ba-box{ width: 100%; display: flex; align-items: center; cursor: pointer; padding: 5px 10px; } .ba-box:hover{ background:#fff7ea; } .ba-name{ } .ba-name span{ margin-right: 10px; } .ba-email{ flex:1; } .ba-email a{ float: right; margin-right: 10px; } .ba-stats{ background:#f8f8f8; border: 1px solid #d4d4d4; border-radius: 2px; color:#222; font-size: 12px; font-weight: bold; position: relative; } .ba-stats div{ font-size: 12px; font-weight: bold; position: relative; padding: 7px 11px; } .ba-stats div:active{ background:#ebebeb; } .ba-stats ul{ position: absolute; font-size: 12px; font-weight: bold; background: #fff; left: 0px; top: 29px; z-index: 1000; border: 1px solid #ccc; display: none; } .ba-stats ul li{ padding: 5px 15px; font-weight: normal; font-size: 13px; } .ba-stats ul li:hover{ background: #ffedd7; } .ba-delete{ padding:0px 10px; } .ba-delete a{ color:#ccc; } .ba-delete a i{ color:#ccc; font-size: 17px; } .bt-title{ display: ; } .bn-title{ display: none; } .bn-input input[type="text"]{ width: 100%; border: 1px solid#ccc; padding: 5px; } .bn-button{ margin-top: 10px; } .cancel-btn{ background:#f6f3f3; border: 1px solid #ccc; padding: 7px 15px; border-radius: 2px; font-size: 12px; font-weight: bold; } .bt-error{ color: red; font-size: 12px; } .text-area{ width: 100%; min-height: 170px; padding: 10px; } .ad-auth{ padding: 10px 0px; } .ad-auth input[type="email"]{ width:100%; border: 1px solid#ccc; padding: 5px; } .ad-auth input[type="password"]{ width: 100%; border: 1px solid#ccc; padding: 5px; } .ad-auth input[type="text"]{ width: 100%; } .ad-auth-head{ font-size: 13px; margin-top: 10px; } .ad-auth span:nth-child(2){ } .au-main{ overflow: hidden; display: none; } .au-left{ float: left; width: 50% } .au-right{ float: left; width: 50% } .au-right > div{ width: 200px; height: 200px; margin: 20px 20px; border: 1px solid #ccc; overflow: hidden; } .au-right > div > img{ width: 100%; height: 100%; } .bt-title input[type="text"]{ border: 1px solid#ccc; padding: 5px; } .bt-title span{ font-size: 14px; } .cm-radio-label{ font-size: 13px; } .cm-radio-label input[type="radio"]{ } .stats-wrap{ width: 100%; } .stats-inner{ float: left; width: 80%; } .stats-header{ } .stats-header-buttons button{ background:#f8f8f8; border: 1px solid #d4d4d4; padding: 7px 11px; border-radius: 3px; color:#222; font-size: 12px; font-weight: bold; float:left; } .stats-header-buttons button:active{ background: #ebebeb; } .stats-header-buttons button:nth-child(1){ border-bottom-right-radius: 0px !important; border-top-right-radius: 0px !important; } .stats-header-buttons button:nth-child(2){ border-left: none; border-right: none; border-bottom-left-radius: 0px !important; border-top-left-radius: 0px !important; border-bottom-right-radius: 0px !important; border-top-right-radius: 0px !important; } .stats-header-buttons button:nth-child(3){ border-right: none; border-bottom-left-radius: 0px !important; border-top-left-radius: 0px !important; border-bottom-right-radius: 0px !important; border-top-right-radius: 0px !important; } .stats-header-buttons button:nth-child(4){ border-right: none; border-bottom-left-radius: 0px !important; border-top-left-radius: 0px !important; border-bottom-right-radius: 0px !important; border-top-right-radius: 0px !important; } .stats-header-buttons button:nth-child(5){ border-bottom-left-radius: 0px !important; border-top-left-radius: 0px !important; } .stats{ overflow: hidden; color: #201d1d; } .stats-box{ display: inline-block; width: 380px; margin-right: 20px; } .stats-box2{ margin:10px 0px; width: 380px; } .stat-head{ font-size: 20px; border-bottom: 1px solid #e5e5e5; padding: 8px 0px; color: #6b6868; } .stat-table{ text-align: left; border-bottom: 2px solid #6f7277; } .stat-table-head{ } .stat-table-head div{ padding-left: 10px; padding-right: 10px; font-size: 14px; padding-top: 5px; padding-bottom: 5px; color: #5a5959; text-shadow: 0px 0px 3px #ccc; } .st-body-list{ width: 100%; padding: 5px 10px; font-size: 14px; color: #5a5959; } .st-body-list a{ color: #0f86b9; } .st-body-list a > p{ font-size: 13px; } .stat-table-body > div:nth-child(even){ background:#f4f6fa; } .st-body-list:hover { background:#fffafa !important; cursor: pointer; } .stat-table-body{ max-height: 290px; overflow: scroll; overflow-x: hidden; } .stat2-table-body > div > div div:nth-child(2){ text-align: right; } .stat2-table-body > div > div { border-bottom: 1px solid #ccc; padding: 10px 0px; } .nostats{ } .nostats span{ vertical-align: -35px; color: #222; font-size: 14px; } /******************************EDIT PAGES CSS*********************************/ .edit-wrap{ width: 100%; } .edit-wrap-inner{ width: 100%; height: 100%; } .edit-head-wrap{ width: 100%; padding: 10px 20px; } .edit-main-wrap{ width: 100%; height: 100%; } .edit-main-inner{ width: 100%; height: 99%; } .edit-main-left{ width: 100%; padding-bottom: 40px; } .edit-main-nav{ width: 100%; } .edit-main-editor{ width: 100%; height: 100%; } .edit-main-right{ width: 100%; } .edit-post-title{ width: 230px; } .edit-input{ } .edit-input input[type="text"]{ width: 100%; padding: 5px; border: 1px solid #ccc; } .edit-button{ width: 600px; } .edit-button > div div:nth-child(2){ font-size: 14px; align-items: center; } .edit-head-inner{ align-items: center; } .edit-pt{ height: 27px; overflow: hidden; font-size: 14px; padding-left: 10px; } .edit-pt h2{ font-weight: normal; font-size: 18px; text-overflow: ellipsis; padding: 7px 0px; line-height: 14px; } .edit-pt h2 a{ white-space: nowrap; max-width: 170px; overflow: hidden; } .edit-pt h2 span{ padding: 0px 7px; color:#ff7800; } .edit-button > div{ align-items: center; } .eb-buttons{ } .eb-buttons div{ float: left; width: 100%; margin-left: 20px; } .eb-buttons div button:nth-child(1){ padding: 8px 10px; margin: 5px; color: #fff; border: #ff6113; background: #ff6113; border-radius: 2px; font-size: 12px; font-weight: bold; } .eb-buttons div button:nth-child(1):active{ background:#f85200 !important; } .eb-buttons div button{ background:#f8f8f8; border: 1px solid #d4d4d4; padding: 7px 11px; border-radius: 2px; color:#222; font-size: 12px; font-weight: bold; } .eb-buttons div button:active{ background:#ebebeb; } .ql-size-small img{ width: 200px !important; height: 125px !important; } .ql-editor img{ width: 320px ; height: 200px; } .ql-size-large > img{ width: 400px !important; height: 300px !important; } .ql-size-huge > img{ width: auto !important; height: auto !important; } .ql-container{ background:#f3f3f3; padding: 20px 0px; } .ql-editor{ width: 653px; background: #fff; border: 1px solid #ccc; } .edit-right-menu{ } .edit-right-menu-inner{ } .edit-menu-title{ padding: 12px 0px; height: 55px; border-bottom: 1px solid#ccc; border-top: 1px solid#ccc; } .edit-menu-title a{ font-size: 15px; margin: 0px 15px; color:#ff5400; } .edit-menu-title a span{ vertical-align: middle; margin-right: 5px; } .edit-menu-title a span i{ vertical-align: 2px; } .edit-menu-title a span:nth-child(2){ } .edm-label-box{ border-bottom: 1px solid #ccc; } .edm-label-head{ padding: 15px 10px; } .edm-label-show{ padding: 0px 0px 0px 32px; font-size: 13px; color:#6f6f6f; } .edm-label-show div{ } .edm-label-head span{ margin: 0px 2px; font-size: 14px; color: #7d7b7b; } .edm-label-body{ padding: 0px 0px 0px 32px; margin-bottom: 15px; } .edm-label-textarea{ } .edm-label-textarea span{ font-size: 13px; color: #757575; } .edm-label-textarea textarea{ font-size: 13px; width: 98%; } .edm-label-list > div{ max-height: 220px; overflow-y: auto; margin: 10px 0px; word-break: break-all; font-size: 13px; width: 240px; } .edm-label-list > div a{ display: inline-block; color: #137e97; } .edm-label-list > div span{ display: inline-block; } .edm-label-button{ margin-top: 10px; } .edm-label-button button{ background:#f8f8f8; border: 1px solid #d4d4d4; padding: 7px 11px; border-radius: 2px; color:#222; font-size: 12px; font-weight: bold; } .edm-label-button button:active{ background:#ebebeb; } .edit-active{ background: #f4f9fc; } .radio-btn-box{ } .radio-btn-box div{ } .short-div{ width: 90%; display: inline-block; } .custom-input{ margin-bottom:5px; } .custom-input input{ border: 1px solid #ccc; padding: 2px 2px; } .custom-input span{ font-size: 14px; color: #a8a5a5; } /**********************************SIGN IN PAGE CSS****************************************/ .in-fo{ width: 100% !important; border-radius: 3px; background:#fbfbfb; padding:10px !important; } .in-div{ position: relative; } .in-span{ position: absolute; right: 12px; top: 15px; font-size: 20px; color:#e7e7e7; } .sign-in-wrapper{ width: 100%; height: 100%; background: url('../images/back2.jpg'); background-position: center; background-size: 100vw; } .sign-in-box{ justify-content: center; align-self: center; width: 430px; background: #fff; overflow: hidden; border: 1px solid #cdcbcb; border-radius: 4px; box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.2); } .sign-in-box form{ width: 100%; } .sign-head{ font-size: 161px; height: 180px; } .sign-head span i{ transform: rotate(-20deg); vertical-align: -35px; color:#f8ab16; position: relative; top: -50px; } .sign-head span{ background:#fff; height: 140px; display: block; position: relative; top: 10px; border-radius: 100px; } .sign-body{ width: 90%; padding: 15px 15px; margin-top: 15px; } .sign-body div{ } .sign-body > div > div > div{ font-size: 13px; color: #f8ab16; } .sign-body input{ width: 300px; border: 1px solid #ded8d8; padding: 7px 10px; margin: 7px 0px; } .sign-footer{ margin-bottom: 20px; text-align: right; text-align: center; } .sign-footer button{ background:#f8f8f8; border: 1px solid #d4d4d4; padding: 7px 11px; border-radius: 2px; color:#222; font-size: 12px; font-weight: bold; } .sign-footer button:nth-child(2):active{ background:#ebebeb; } .sign-footer button:nth-child(1){ padding: 8px 10px; margin: 5px; color: #fff; border: #ff6113; background: #ff6113; border-radius: 2px; font-size: 12px; font-weight: bold; } .sign-footer button:nth-child(1):active{ background:#f85200 !important; } /**********************************SIGN UP PAGE CSS****************************************/ .sup-div{ margin-top:20px; } .sin-error{ font-size: 13px; color:#ff6113; } .b-add-error{ font-size: 12px; color: #347fc5; margin-left: 6px; } .sign-up-wrapper{ width: 100%; height: 100%; background:#fff; } .signup-logo{ align-items: center; background: url('../images/back2.jpg'); background-position: left; background-size: 100vw; } .signup-logo div span{ width: 159px; height: 134px; display: block; top: -70px; position: relative; background: #fff; } .signup-logo div h2{ font-size: 24px; color: #6c6c6c; font-family: roboto,sans-serif; line-height: 40px; } .signup-logo div p{ color:#6c6c6c; font-size: 15px; } .signup-logo div i{ font-size: 200px; color:#ff6113; position: absolute; top: -30px; left: -5px; } .sign-up-box-wrap{ align-items: center; display: flex; align-self: center; box-shadow:0px -7px 13px 0px rgba(0,0,0,0.3); height: 100vh; } .sign-up-box{ width: 650px; margin: 40px auto; } .sign-up-head{ width: 100%; text-align: center; font-size: 140px; color:#fff; background:#ff5722; padding: 20px 0px; } .sign-up-head div span i{ transform: rotate(-20deg); color:#f8ab16; font-size: 160px; } .avatar-div{ width: 200px; height: 200px; float: right; overflow: hidden; border: 1px solid #c1cbcc; border-radius: 2px; } .sign-up-avatar img{ width: 100%; height: 100%; } .sign-up-body{ width: 85%; margin: 40px auto; } .sign-up-body input[type="text"], .sign-up-body input[type="email"] ,.sign-up-body input[type="password"]{ width: 100%; border: 1px solid #f1eded; padding: 11px 10px; margin: 7px 0px; border-radius: 4px; background: #fafafa; } .sign-up-body > div:nth-child(3) > div > div{ font-size: 13px; color:#ff6113; } .sign-up-body-wrap{ } .blog-t{ width: 100%; } .blog-t div:nth-child(1){ padding: 10px 0px; color: #6c6c6c; } .blog-des div:nth-child(1){ padding: 10px 0px; color: #6c6c6c; } .blog-des{ width: 100%; margin-bottom: 40px; } .blog-des textarea{ width: 100%; } .l-btn{ font-size: 16px !important; padding: 10px 40px !important; border-radius: 3px !important; } /******************************LAYOUT PAGE*********************************************/ .layout-wrapper{ } .layout-inner{ } .layout{ width: 940px; float: left; background-color: rgba(236, 239, 242, 0.8); overflow: hidden; text-align: left; padding: 20px; border: 1px solid #d7d7d7; } .layout div{ padding: 10px; width: 100%; } .layout div > div > div{ padding: 10px; user-select: none; } /*****************************WIDGETS AND GADGETS***************************************/ .layout-widget-box{ padding: 0px !important; } .layout-widget-inner{ padding: 0px !important; } .lay-save-div{ width: 260px; text-align: right; } .lay-border{ border: 1px solid #d7d7d7; } .dashed-border{ border: 1px dashed #c3c3c3; margin: 5px 5px; } .add-gadget{ margin: 10px auto; } .add-gadget span{ margin-right: 5px; color: #777; } .add-gadget span a{ color: #2d59df; } .add-gadget span a:hover{ text-decoration: underline; } .gadget{ border: 1px solid #ccc; background:#fff; overflow: hidden; padding: 0px !important; cursor: pointer; margin: 5px auto; box-shadow: 0px 5px 13px -10px #333; } .gadget-left{ display: flex; align-items: center; background:#ccc; color:#fff; width: 10px !important; } .gadget-left span{ padding: 10px 3px !important; } .gadget-right{ } .gadget-body{ padding: 0px !important; height: 60px; color:#555; font-size: 15px; } .gadget-body div{ padding: 0px !important; width: auto; } .gadget-right div:nth-child(1){ padding: 10px 0px 0px 8px !important; width: 100%; } .gadget-right div:nth-child(2){ padding: 0px 0px 0px 8px !important; width: 100%; } .gadget-right div:nth-child(2) span{ font-size: 12px; color:#535557; } .gadget-body > span{ font-size: 10px; display: flex; align-items: end; padding: 10px; } .gadget-body span a{ margin-right: 5px; color:#28678c; } .gadget-body span a:hover{ text-decoration: underline; } .layout h3{ width: 100%; padding: 4px 15px; } /*****************************HEADER-SECTION***************************************/ .header-section{ width: 100%; padding: 0px !important; } .header-section div{ width: 100%; } .header-1{padding: 0px !important;margin:20px auto;} .nav-1{padding: 0px !important;} /*****************************MAIN-SECTION***************************************/ .main-section{ width: 100%; padding: 0px !important; } .main-1{ padding: 0px !important; margin:20px auto; } .main-widget{ height: 300px; background:#fff; border:1px solid #ccc; padding: 10px; } .sidebar-1{padding: 0px !important;margin:20px 20px;} .footer-section{ padding: 0px !important;margin:10px auto; } .footer-1{} .footer-2{} .footer-3{} /***************************LAYOUT POPUP PAGE**************************************/ .header-popup{ padding: 15px; margin-left: 30px; } .lay-header{ padding: 20px 0px 20px 45px; border-bottom: 1px solid #e7e7e7; width: 100%; } .header-bottom h3{ width: 100%; font-size: 19px; font-weight: normal; color: #ff6113; } .layout-pop-wrap{ width: 100%; } .layout-pop-inner{ width: 100%; overflow: hidden; } .laypopup-box{ max-width: 780px; margin: 15px 0px; min-width: 670px; } .l-popup{ } .l-popup > .bn-title{ display: block; } .l-popup table{ border-spacing: 0px 20px; min-width: 600px; max-width: 750px; margin: 0px 40px; } .l-popup table tbody tr td{ } .l-popup table tbody tr td.td-title{ vertical-align: top; padding: 10px; font-size: 14px; color:#666; } .lt-foo{ width: 100%; padding-left: 45px; } .l-popup-head{ border-bottom: 1px solid #e7e7e7; padding: 20px 50px; text-align: left; width: 100%; } .l-popup-head span{ } .l-popup-body{ padding: 30px 0px; width: 100%;border-bottom: 1px solid #e7e7e7; } .l-popup-body > div{ width: 88%; height: 100%; } .lp-box div:nth-child() div{ width: 100%; height: 100%; } .lp-box{ align-items: center; } .lp-box > div:nth-child(1){ font-size: 35px; width: 65px; text-align: center; } .lpopup-title{ } .lpopup-add{ height: 100%; padding: 7px 0px; } .lpopup-add span{ font-size: 15px; font-weight: bold; color: #222; } .add-color{ color: #222 !important; } .lpopup-head{ } .lpopup-head a{ font-size: 18px; font-weight: bold; color: #038995; } .lpopup-body{ font-size: 14px; padding: 2px 0px; } .lpopup-foo span{ font-size: 13px; margin-right: 4px; } .lpopup-foo span a{ color:#038995; font-size: 14px; } .lpopup-add span a{ color: #5194ea; font-size: 24px; } .add-link-box{ padding-top: 15px; } .add-link-box{ } .add-btn-div{ } .add-link-body{ padding-top: 15px; } .add-link-body ul li{ margin-top: 5px; } .add-link-body ul li span:nth-child(1){ background:#ccc; margin-right: 5px; } .papular-inputs{ font-size: 13px; padding: 10px 0px; } .papular-inputs input{ font-size: 14px; margin:5px; } .papular-inputs span{ font-size: 14px; margin:5px; } .popup-html-widget{ width: 100%; padding: 10px 45px; } .pop-html-title{ padding: 0px 0px; color:#222; font-size: 14px; } .popup-html-sec{ padding: 10px 0px; } /*********************************EDIT HTML PAGE*******************************************/ .edit-tamplate-wrap{ width: 100%; min-height:400px; max-height: 1000px; } .edit-tamplate-inner{ width: 100%; } .edit-tamplate-head{ width: 100%; overflow: hidden; } .edit-tamplate-body{ overflow: hidden; width: 95%; position: relative; margin: 30px 0px; min-height: 650px; max-height: 950px; border: 1px solid #ccc; } .edit-tamplate{ width: 100%; position: relative; } .edit-tamplate{ min-height: 650px; min-width: 100%; overflow-x: hidden; overflow-y: scroll; max-height: 750px; } .edit-tamplate *{ font:12px/normal 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace; } .rightpad{ float: right; overflow: hidden; text-align: right; margin-right: 80px; } .disabled{ background:-moz-linear-gradient(top,#f57b54,#e64a19) !important; border-color: rgba(0,0,0,0.1) !important; color: #444 !important; opacity: .5 !important; } .display{ display: block !important; } /***************************BLOG ERROR PAGE***********************************/ .error-page{ width:675px; } .error-page-inner{ justify-content: center; display: flex; } .error-heading{ margin-top: -100px; } .error-heading h3{ font-size: 45px; font-weight: normal; color: #ff6113; } .error-text{ width: 100%; padding: 10px; color: #222; font-size: 14px; } .foo{ width: 100%; } .foo-bottom{ width: 1000px; background:#ccc; } .foo-inner-left{ float: left; } .fo-in-right{ float:right; }
0.197367
0.066176
nav { z-index: 2; width: 100%; height: 60px; position: fixed; top: 0; left: 0; background-color: white; box-shadow: 0px 0px 10px gray; display: flex; justify-content: space-between; align-items: center; padding: 0px 10px 0px 30px; } nav .logo { color: #006fff; font-size: 25px; font-weight: bolder; } nav .logo span { color: #ff7000; } nav .navbar { width: 700px; height: 100%; } nav .navbar ul { display: flex; align-items: center; height: 100%; padding: unset; } nav .navbar ul a { list-style: none; text-decoration: none; padding: 0px 10px; color: #006fff; font-weight: bold; transition: ease-in-out 0.1s; border-bottom: 2px solid transparent; } nav .navbar ul a:hover { color: #ff7000; border-bottom: 2px solid #aaa; } main { position: relative; margin: 60px 0px; padding-top: 50px; } main form .form-control { border-color: #666; } main form .form-text { color: #666; } main form input::-webkit-outer-spin-button, main form input::-webkit-inner-spin-button { /* display: none; <- Crashes Chrome on hover */ -webkit-appearance: none; margin: 0; /* <-- Apparently some margin are still there even though it's hidden */ } main form input[type=number] { -moz-appearance: textfield; /* Firefox */ } main .beranda h3 { margin: 50px 0px 0px 0px; } main .beranda .tanggal { color: #ff7000; } main .beranda .data-indonesia { margin: 30px 0px; display: flex; justify-content: space-around; } main .beranda .data-indonesia .box { width: 250px; height: 150px; box-shadow: 5px 10px 25px gray; border-radius: 10px; display: flex; flex-direction: column; justify-content: center; align-items: center; } main .beranda .data-indonesia .box h3 { color: #006fff; margin: unset; } main .beranda .data-indonesia .box p { font-size: 20px; } main .beranda .data-indonesia .box p span { font-size: 15px; } main .registrasi { width: 100%; height: auto; padding: 30px; margin: 20px 0px; border: 1px solid gray; border-top: 5px solid #ff7000; border-radius: 10px; background-color: #ddd; } main .registrasi .card .card-header { background-color: #006fff; font-weight: bolder; color: white; letter-spacing: 0.5px; } main .registrasi .card .card-body { background-color: white; color: #333; padding: 20px 30px; } main .rumah-sakit { width: 100%; height: auto; padding: 30px; margin: 20px 0px; border: 1px solid gray; border-top: 5px solid #ff7000; border-radius: 10px; background-color: #ddd; } main .rumah-sakit .card .card-header { background-color: #006fff; font-weight: bolder; color: white; letter-spacing: 0.5px; } main .rumah-sakit .card .card-body { background-color: white; color: #333; padding: 20px 30px; } main .rumah-sakit .card .card-body .dataTables_length { margin-bottom: 30px; } main .rumah-sakit .card .card-body .dataTables_filter { margin-bottom: 30px; } main .statitiska { width: 100%; height: auto; padding: 30px; margin: 20px 0px; border: 1px solid gray; border-top: 5px solid #ff7000; border-radius: 10px; background-color: #ddd; } main .statitiska .card .card-header { background-color: #006fff; font-weight: bolder; color: white; letter-spacing: 0.5px; } main .statitiska .card .card-body { background-color: white; color: #333; padding: 20px 30px; } footer { width: 100%; height: 60px; position: relative; bottom: 0; background-color: #ff7000; display: flex; justify-content: center; align-items: center; } footer p { font-size: 15px; font-weight: bolder; margin: unset; } /*# sourceMappingURL=style.css.map */
public/assets/css/style.css
nav { z-index: 2; width: 100%; height: 60px; position: fixed; top: 0; left: 0; background-color: white; box-shadow: 0px 0px 10px gray; display: flex; justify-content: space-between; align-items: center; padding: 0px 10px 0px 30px; } nav .logo { color: #006fff; font-size: 25px; font-weight: bolder; } nav .logo span { color: #ff7000; } nav .navbar { width: 700px; height: 100%; } nav .navbar ul { display: flex; align-items: center; height: 100%; padding: unset; } nav .navbar ul a { list-style: none; text-decoration: none; padding: 0px 10px; color: #006fff; font-weight: bold; transition: ease-in-out 0.1s; border-bottom: 2px solid transparent; } nav .navbar ul a:hover { color: #ff7000; border-bottom: 2px solid #aaa; } main { position: relative; margin: 60px 0px; padding-top: 50px; } main form .form-control { border-color: #666; } main form .form-text { color: #666; } main form input::-webkit-outer-spin-button, main form input::-webkit-inner-spin-button { /* display: none; <- Crashes Chrome on hover */ -webkit-appearance: none; margin: 0; /* <-- Apparently some margin are still there even though it's hidden */ } main form input[type=number] { -moz-appearance: textfield; /* Firefox */ } main .beranda h3 { margin: 50px 0px 0px 0px; } main .beranda .tanggal { color: #ff7000; } main .beranda .data-indonesia { margin: 30px 0px; display: flex; justify-content: space-around; } main .beranda .data-indonesia .box { width: 250px; height: 150px; box-shadow: 5px 10px 25px gray; border-radius: 10px; display: flex; flex-direction: column; justify-content: center; align-items: center; } main .beranda .data-indonesia .box h3 { color: #006fff; margin: unset; } main .beranda .data-indonesia .box p { font-size: 20px; } main .beranda .data-indonesia .box p span { font-size: 15px; } main .registrasi { width: 100%; height: auto; padding: 30px; margin: 20px 0px; border: 1px solid gray; border-top: 5px solid #ff7000; border-radius: 10px; background-color: #ddd; } main .registrasi .card .card-header { background-color: #006fff; font-weight: bolder; color: white; letter-spacing: 0.5px; } main .registrasi .card .card-body { background-color: white; color: #333; padding: 20px 30px; } main .rumah-sakit { width: 100%; height: auto; padding: 30px; margin: 20px 0px; border: 1px solid gray; border-top: 5px solid #ff7000; border-radius: 10px; background-color: #ddd; } main .rumah-sakit .card .card-header { background-color: #006fff; font-weight: bolder; color: white; letter-spacing: 0.5px; } main .rumah-sakit .card .card-body { background-color: white; color: #333; padding: 20px 30px; } main .rumah-sakit .card .card-body .dataTables_length { margin-bottom: 30px; } main .rumah-sakit .card .card-body .dataTables_filter { margin-bottom: 30px; } main .statitiska { width: 100%; height: auto; padding: 30px; margin: 20px 0px; border: 1px solid gray; border-top: 5px solid #ff7000; border-radius: 10px; background-color: #ddd; } main .statitiska .card .card-header { background-color: #006fff; font-weight: bolder; color: white; letter-spacing: 0.5px; } main .statitiska .card .card-body { background-color: white; color: #333; padding: 20px 30px; } footer { width: 100%; height: 60px; position: relative; bottom: 0; background-color: #ff7000; display: flex; justify-content: center; align-items: center; } footer p { font-size: 15px; font-weight: bolder; margin: unset; } /*# sourceMappingURL=style.css.map */
0.358016
0.067516
@import 'resources/styles/variables.css'; * { box-sizing: border-box; } html { font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, "微软雅黑", "Microsoft YaHei", "Hiragino Sans GB", "华文细黑", "STHeiti", SimHei, sans-serif; font-size: 16px; line-height: normal; } body { position: relative; font-size: 0.875rem; background-color: rgb(27, 27, 28); } a, button { font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, "微软雅黑", "Microsoft YaHei", "Hiragino Sans GB", "华文细黑", "STHeiti", SimHei, sans-serif; cursor: pointer; text-decoration: none; outline: none; color: #005eda; &:hover, &:focus { text-decoration: none; color: var(--primary-button-background-hovered-color); } &[disabled] { opacity: 0.7; cursor: not-allowed; } } label { margin-bottom: 0; } input { font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB","华文细黑","STHeiti","微软雅黑","Microsoft YaHei", SimHei, sans-serif; outline: none; &[type="text"], &[type="password"] { -webkit-appearance: none; } } ul { margin: 0; padding: 0; list-style: none; } table { border-spacing: 0; } .app { display: flex; align-items: center; justify-content: center; align-items: flex-start; text-align: center; color: var(--primary-text-color); .transitionBackground { position: absolute; left: 0; right: 0; display: flex; flex-direction: column; min-height: 100vh; background-position: center center; object-position: 50% 50%; opacity: 0.18; background: url('resources/images/background.jpg'); background-repeat: no-repeat; background-attachment: fixed; background-size: cover; top: 0px; min-height: calc(100vh - 0px); height: 886px; width: 100%; z-index: -1; } .appContainer { width: 100%; .navBar { display: flex; align-items: center; width: 100%; height: 140px; padding-left: 80px; padding-right: 80px; justify-content: space-between; .branding { width: 100px; height: 100px; img { width: 100px; height: 100px; } } .accountInfo { .profile { display: flex; flex-direction: row; align-items: center; img { width: 40px; height: 40px; border-radius: 20px; margin-right: 10px; } .name { color: white; font-size: 20px; } } } } .transitionContext { position: absolute; left: 0; right: 0; width: 100%; min-height: 100vh; display: flex; flex-direction: column; min-height: 100vh; .content { flex: 1; display: flex; flex-direction: column; } @media only screen and (max-width : 768px) { transition: left 0.5s ease; &.showMobileMenu { left: calc(3.375rem - 100%); transition: left 0.5s ease; } } } } :global(.iebrowser){ .iebrowserTips{ text-align: center; position: fixed; top:0; left: 0; right: 0; z-index: 999; height: 50px; line-height: 50px; background-color: #fff; span.close{ position: absolute; right: 5px; top: 5px; } } } } :global { body { @media only screen and (max-width : 768px) { &.showMobileMenu { overflow: hidden; } } } .container { width: 100%; max-width: 80rem; padding: 0 3.125rem; margin: 0 auto; @media only screen and (max-width : 768px) { padding: 0 1.25rem; } @media only screen and (max-width : 425px) { padding: 0; width: 100%; } } .innerContent { padding: 1.25rem 0; } }
shared/containers/App/style.css
@import 'resources/styles/variables.css'; * { box-sizing: border-box; } html { font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, "微软雅黑", "Microsoft YaHei", "Hiragino Sans GB", "华文细黑", "STHeiti", SimHei, sans-serif; font-size: 16px; line-height: normal; } body { position: relative; font-size: 0.875rem; background-color: rgb(27, 27, 28); } a, button { font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, "微软雅黑", "Microsoft YaHei", "Hiragino Sans GB", "华文细黑", "STHeiti", SimHei, sans-serif; cursor: pointer; text-decoration: none; outline: none; color: #005eda; &:hover, &:focus { text-decoration: none; color: var(--primary-button-background-hovered-color); } &[disabled] { opacity: 0.7; cursor: not-allowed; } } label { margin-bottom: 0; } input { font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB","华文细黑","STHeiti","微软雅黑","Microsoft YaHei", SimHei, sans-serif; outline: none; &[type="text"], &[type="password"] { -webkit-appearance: none; } } ul { margin: 0; padding: 0; list-style: none; } table { border-spacing: 0; } .app { display: flex; align-items: center; justify-content: center; align-items: flex-start; text-align: center; color: var(--primary-text-color); .transitionBackground { position: absolute; left: 0; right: 0; display: flex; flex-direction: column; min-height: 100vh; background-position: center center; object-position: 50% 50%; opacity: 0.18; background: url('resources/images/background.jpg'); background-repeat: no-repeat; background-attachment: fixed; background-size: cover; top: 0px; min-height: calc(100vh - 0px); height: 886px; width: 100%; z-index: -1; } .appContainer { width: 100%; .navBar { display: flex; align-items: center; width: 100%; height: 140px; padding-left: 80px; padding-right: 80px; justify-content: space-between; .branding { width: 100px; height: 100px; img { width: 100px; height: 100px; } } .accountInfo { .profile { display: flex; flex-direction: row; align-items: center; img { width: 40px; height: 40px; border-radius: 20px; margin-right: 10px; } .name { color: white; font-size: 20px; } } } } .transitionContext { position: absolute; left: 0; right: 0; width: 100%; min-height: 100vh; display: flex; flex-direction: column; min-height: 100vh; .content { flex: 1; display: flex; flex-direction: column; } @media only screen and (max-width : 768px) { transition: left 0.5s ease; &.showMobileMenu { left: calc(3.375rem - 100%); transition: left 0.5s ease; } } } } :global(.iebrowser){ .iebrowserTips{ text-align: center; position: fixed; top:0; left: 0; right: 0; z-index: 999; height: 50px; line-height: 50px; background-color: #fff; span.close{ position: absolute; right: 5px; top: 5px; } } } } :global { body { @media only screen and (max-width : 768px) { &.showMobileMenu { overflow: hidden; } } } .container { width: 100%; max-width: 80rem; padding: 0 3.125rem; margin: 0 auto; @media only screen and (max-width : 768px) { padding: 0 1.25rem; } @media only screen and (max-width : 425px) { padding: 0; width: 100%; } } .innerContent { padding: 1.25rem 0; } }
0.424651
0.082883
.pixabayGallery .item>div { position: absolute; left: 0; right: 0; bottom: -15px; padding: 10px 10px 8px; opacity: 0; transition: .25s; background: linear-gradient(to top,rgba(0,0,0,.6) 0,rgba(0,0,0,0) 100%); color: #fff; font-size: 10px; } .pixabayGallery .item:hover>div { position: absolute; left: 0; right: 0; bottom: 0; opacity: 1; } .pixabayGallery .item div a, .pixabayGallery .item div span { display: inline-block; color: #fff; padding: 0px 0px; border-radius: 2px; transition: .2s; } .pixabayGallery .item div .counts { text-align: center; position: relative; top: 0px; right: 0px; } .pixabayGallery .item { cursor: pointer; } .pixabayGallery .item.selected { -webkit-box-shadow: 0px 0px 2px 4px rgba(0,0,0,0.75); -moz-box-shadow: 0px 0px 2px 4px rgba(0,0,0,0.75); box-shadow: 0px 0px 2px 4px rgba(0,0,0,0.75); } .pixabaySearchWrapper .pixabaySearchContainer { padding-bottom: 10px; } .pixabaySearchWrapper .pixabayPaginationDiv { padding-top: 15px; } .pixabaySearchWrapper .pixabay-filters { text-align: center; margin-top: 15px; } .pixabaySearchWrapper .pixabay-filters > .pixabay-filter:not(:last-child){ padding-right: 10px; } /* Checkbox Styles */ .pixabaySearchWrapper label { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .pixabaySearchWrapper input[type=checkbox].css-checkbox { position: absolute; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0; } .pixabaySearchWrapper input[type=checkbox].css-checkbox + label.css-label { padding-left:20px; height:15px; display:inline-block; line-height:15px; background-repeat:no-repeat; background-position: 0 0; font-size:15px; vertical-align:middle; cursor:pointer; } .pixabaySearchWrapper input[type=checkbox].css-checkbox:checked + label.css-label { background-position: 0 -15px; } .pixabaySearchWrapper .lite-green-check{background-image:url(/theme/apps/pixabay-lib/libs/jquery.pixabay/img/lite-green-check.png);} .pixabaySearchWrapper .lite-gray-check{background-image:url(/theme/apps/pixabay-lib/libs/jquery.pixabay/img/lite-gray-check.png);} .pixabaySearchWrapper input[type=checkbox].css-checkbox.med + label.css-label.med { padding-left:22px; height:17px; display:inline-block; line-height:17px; background-repeat:no-repeat; background-position: 0 0; font-size:15px; vertical-align:middle; cursor:pointer; } .pixabaySearchWrapper input[type=checkbox].css-checkbox.med:checked + label.css-label.med { background-position: 0 -17px; } .pixabaySearchWrapper input[type=checkbox].css-checkbox.sme + label.css-label.sme { padding-left:22px; height:16px; display:inline-block; line-height:16px; background-repeat:no-repeat; background-position: 0 0; font-size:15px; vertical-align:middle; cursor:pointer; } .pixabaySearchWrapper input[type=checkbox].css-checkbox.sme:checked + label.css-label.sme{ background-position: 0 -16px; } .pixabaySearchWrapper input[type=checkbox].css-checkbox.lrg + label.css-label.lrg { padding-left:22px; height:20px; display:inline-block; line-height:20px; background-repeat:no-repeat; background-position: 0 0; font-size:15px; vertical-align:middle; cursor:pointer; } .pixabaySearchWrapper input[type=checkbox].css-checkbox.lrg:checked + label.css-label.lrg{ background-position: 0 -20px; } .pixabaySearchWrapper .glyphicon-spin { -webkit-animation: pxbspin 1000ms infinite linear; animation: pxbspin 1000ms infinite linear; } .pixabaySearchWrapper .glyphicon-3x { font-size: 3em; } @-webkit-keyframes pxbspin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } } @keyframes pxbspin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } }
common/theme/apps/pixabay-lib/libs/jquery.pixabay/jquery.pixabay-0.0.1.css
.pixabayGallery .item>div { position: absolute; left: 0; right: 0; bottom: -15px; padding: 10px 10px 8px; opacity: 0; transition: .25s; background: linear-gradient(to top,rgba(0,0,0,.6) 0,rgba(0,0,0,0) 100%); color: #fff; font-size: 10px; } .pixabayGallery .item:hover>div { position: absolute; left: 0; right: 0; bottom: 0; opacity: 1; } .pixabayGallery .item div a, .pixabayGallery .item div span { display: inline-block; color: #fff; padding: 0px 0px; border-radius: 2px; transition: .2s; } .pixabayGallery .item div .counts { text-align: center; position: relative; top: 0px; right: 0px; } .pixabayGallery .item { cursor: pointer; } .pixabayGallery .item.selected { -webkit-box-shadow: 0px 0px 2px 4px rgba(0,0,0,0.75); -moz-box-shadow: 0px 0px 2px 4px rgba(0,0,0,0.75); box-shadow: 0px 0px 2px 4px rgba(0,0,0,0.75); } .pixabaySearchWrapper .pixabaySearchContainer { padding-bottom: 10px; } .pixabaySearchWrapper .pixabayPaginationDiv { padding-top: 15px; } .pixabaySearchWrapper .pixabay-filters { text-align: center; margin-top: 15px; } .pixabaySearchWrapper .pixabay-filters > .pixabay-filter:not(:last-child){ padding-right: 10px; } /* Checkbox Styles */ .pixabaySearchWrapper label { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .pixabaySearchWrapper input[type=checkbox].css-checkbox { position: absolute; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0; } .pixabaySearchWrapper input[type=checkbox].css-checkbox + label.css-label { padding-left:20px; height:15px; display:inline-block; line-height:15px; background-repeat:no-repeat; background-position: 0 0; font-size:15px; vertical-align:middle; cursor:pointer; } .pixabaySearchWrapper input[type=checkbox].css-checkbox:checked + label.css-label { background-position: 0 -15px; } .pixabaySearchWrapper .lite-green-check{background-image:url(/theme/apps/pixabay-lib/libs/jquery.pixabay/img/lite-green-check.png);} .pixabaySearchWrapper .lite-gray-check{background-image:url(/theme/apps/pixabay-lib/libs/jquery.pixabay/img/lite-gray-check.png);} .pixabaySearchWrapper input[type=checkbox].css-checkbox.med + label.css-label.med { padding-left:22px; height:17px; display:inline-block; line-height:17px; background-repeat:no-repeat; background-position: 0 0; font-size:15px; vertical-align:middle; cursor:pointer; } .pixabaySearchWrapper input[type=checkbox].css-checkbox.med:checked + label.css-label.med { background-position: 0 -17px; } .pixabaySearchWrapper input[type=checkbox].css-checkbox.sme + label.css-label.sme { padding-left:22px; height:16px; display:inline-block; line-height:16px; background-repeat:no-repeat; background-position: 0 0; font-size:15px; vertical-align:middle; cursor:pointer; } .pixabaySearchWrapper input[type=checkbox].css-checkbox.sme:checked + label.css-label.sme{ background-position: 0 -16px; } .pixabaySearchWrapper input[type=checkbox].css-checkbox.lrg + label.css-label.lrg { padding-left:22px; height:20px; display:inline-block; line-height:20px; background-repeat:no-repeat; background-position: 0 0; font-size:15px; vertical-align:middle; cursor:pointer; } .pixabaySearchWrapper input[type=checkbox].css-checkbox.lrg:checked + label.css-label.lrg{ background-position: 0 -20px; } .pixabaySearchWrapper .glyphicon-spin { -webkit-animation: pxbspin 1000ms infinite linear; animation: pxbspin 1000ms infinite linear; } .pixabaySearchWrapper .glyphicon-3x { font-size: 3em; } @-webkit-keyframes pxbspin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } } @keyframes pxbspin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } }
0.568655
0.115038
* { box-sizing: border-box; } body, html { background-color: rgb(56, 83, 136); padding: 0; margin: 0; } a { color: rgb(51, 85, 136); } #entirety { display: grid; grid-gap: 0; grid-template-areas: "header" "nav" "content" "footer"; border: 1px solid black; font-family: -apple-system, "San Francisco", "Segoe UI", serif; line-height: 1.3; font-size: 15px; } #pageheader { grid-area: header; font-size: 2em; } #pageheader a { text-decoration: none; color: black; } #pagenav { grid-area: nav; background-color: rgb(238, 238, 221); padding: 0.5em; color: rgb(101, 101, 84); font-size: 0.95em; line-height: 1.7em; } #pagenav ul[title]:before { content: attr(title); display: block; width: 100%; border-bottom: 1px dotted rgb(101, 101, 84); } #pagenav li { display: inline; } #pagenav a { display: list-item; list-style-type: square; } #pagenav .photo { width: 128px; max-width: 100%; display: block; margin: 0 auto; } #pagebody { grid-area: content; background-color: white; padding: 1em; } .post.post-Draft, .comment.spam { background: repeating-linear-gradient(135deg, rgba(246, 212, 73, 0.4), rgba(247, 238, 78, 0.4) 60px); padding: 0.5em 1em; box-shadow: inset 0 0 50px white; border-radius: 1em; } .post header { position: relative; } .post header h2 { font-size: 1.8em; font-weight: normal; color: rgb(57, 82, 107); margin-bottom: 0.25em; border-bottom: 1px solid rgb(200, 200, 200); } .post header h2 a { color: rgb(57, 82, 107); text-decoration: none; } .post header h3, .post .comment > h3 { font-size: 0.9em; color: dimgrey; margin-top: 0; margin-bottom: 0.5em; } .post .comment > h3 { font-size: 1.2em; } .post .body { overflow-x: auto; } .post header > .admin { float: right; } .post .admin form { display: inline; } .post .admin input[type='submit'], .post .admin a { border: 0; background: transparent; font-size: 1em; display: inline-block; padding: 0 0.25em; text-decoration: none; } .post .admin input[type='submit']:focus, .post .admin a:focus { outline: 1px solid lightblue; } .meta, .meta a { font-size: 0.9em; color: dimgrey; } .post + .post { margin-top: 2em; } .post .thread { border: 1px solid lightblue; padding: 0; padding-bottom: 0.5em; } .post .thread:before { display: block; content: attr(title); padding: 0.5em; border-bottom: 1px solid lightblue; background-color: rgba(0, 0, 128, 0.05); margin-bottom: 0.5em; } .post .thread li { margin-left: 3em; line-height: 1.4; } .post img { max-width: 100%; height: auto; } .post img:not([width]) { width: auto; } .post img:not([height]) { height: auto; } .post h2 { font-weight: normal; font-size: 2em; margin-bottom: 0; } .post h3 { font-weight: normal; font-size: 1.6em; margin-bottom: 0; } .comments { margin-top: 2em; } .comments:before { content: "Comments"; font-size: 1.2em; font-weight: bold; color: #888; border-bottom: 1px solid #ddd; margin-bottom: 1em; display: block; } .comment { display: grid; } .comment + .comment { margin-top: 1em; } .comment .photo { grid-area: photo; max-width: 48px; } .comment > h3 { grid-area: title; } .comment > .admin { grid-area: admin; text-align: right; } .comment > .comment-body { grid-area: content; overflow-x: auto; } .comment > .comment-body p:first-child { margin-top: 0; } #pagefooter { grid-area: footer; color: rgba(0, 0, 0, 0.9); text-align: center; font-size: 0.9em; } #pagefooter a { color: rgba(0, 0, 0, 0.9); } input:invalid { border-color: red; } .admin-console { border: 0; width: 100%; height: 900px; } code, pre { font-family: "Consolas", monospace; background-color: #eee; border: 1px solid #ddd; } pre { overflow-x: auto; padding: 0.5em; } code { white-space: nowrap; } pre code, .hilite-me pre { border: 0; padding: 0; background-color: transparent; white-space: pre; } .hilite-me { font-size: 13px; } .posts-older-newer { display: grid; grid-template-columns: 1fr 1fr; grid-template-areas: "newer older"; } .posts-older-newer .newer { grid-area: newer; text-align: left; } .posts-older-newer .newer:before { content: "<< "; } .posts-older-newer .older { grid-area: older; text-align: right; } .posts-older-newer .older::after { content: " >>"; } @media (max-width: 699px) { #entirety { border: 0; max-width: 100%; grid-template-columns: minmax(0, 1fr); } #pageheader { background-color: rgb(204, 221, 204); } #pagefooter { padding: 0.5em; background-color: rgb(111, 149, 208); } /* Nav bar toggle */ .mobile-nav { cursor: pointer; -webkit-appearance: none; -moz-appearance: none; appearance: none; background-color: rgba(0, 0, 0, 0.5); display: inline-block; width: 20px; height: 20px; -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%); clip-path: polygon(50% 0%, 0% 100%, 100% 100%); transform: rotate(90deg); transition: ease 300ms; } .mobile-nav:checked { transform: rotate(180deg); transition: ease 300ms; } .mobile-nav:not(:checked) ~ * { display: none !important; } .post pre { width: calc(100vw - 2em - 2px); } /* Cancel out for Hilite.me code blocks */ .post .hilite-me pre { width: inherit; } .comment { grid-template-columns: 5fr 1fr; grid-template-areas: "title admin" "content content"; } .comment .photo { display: none; } } @media (min-width: 700px) { #entirety { width: 80%; max-width: 1200px; margin: 2em auto; grid-template-columns: minmax(210px, 1fr) minmax(0, 5fr); grid-template-areas: "header header" "nav content" "nav content" "footer footer"; } #pageheader { display: grid; grid-template-columns: minmax(210px, 1fr) 5fr; grid-template-areas: "padding link"; background-color: rgb(187, 204, 187); } #pageheader a { grid-area: link; display: block; padding: 0.5em; background-color: rgb(204, 221, 204); } #pagenav > .sidebar-content { position: -webkit-sticky; position: sticky; top: 0.5em; } .mobile-nav { display: none; } .post .body { margin-left: 3em; max-width: 100%; } .comment { grid-template-columns: 52px 6fr 1fr; grid-template-areas: "photo title admin" "photo content content"; } #pagefooter { display: grid; grid-template-columns: minmax(210px, 1fr) 5fr; grid-template-areas: "padding text"; background-color: rgb(105, 140, 182); } #pagefooter p { grid-area: text; padding: 0.5em; background-color: rgb(111, 149, 208); margin: 0; } }
frostillicus-blog/frostillicus-blog-j2ee/src/main/webapp/css/style.css
* { box-sizing: border-box; } body, html { background-color: rgb(56, 83, 136); padding: 0; margin: 0; } a { color: rgb(51, 85, 136); } #entirety { display: grid; grid-gap: 0; grid-template-areas: "header" "nav" "content" "footer"; border: 1px solid black; font-family: -apple-system, "San Francisco", "Segoe UI", serif; line-height: 1.3; font-size: 15px; } #pageheader { grid-area: header; font-size: 2em; } #pageheader a { text-decoration: none; color: black; } #pagenav { grid-area: nav; background-color: rgb(238, 238, 221); padding: 0.5em; color: rgb(101, 101, 84); font-size: 0.95em; line-height: 1.7em; } #pagenav ul[title]:before { content: attr(title); display: block; width: 100%; border-bottom: 1px dotted rgb(101, 101, 84); } #pagenav li { display: inline; } #pagenav a { display: list-item; list-style-type: square; } #pagenav .photo { width: 128px; max-width: 100%; display: block; margin: 0 auto; } #pagebody { grid-area: content; background-color: white; padding: 1em; } .post.post-Draft, .comment.spam { background: repeating-linear-gradient(135deg, rgba(246, 212, 73, 0.4), rgba(247, 238, 78, 0.4) 60px); padding: 0.5em 1em; box-shadow: inset 0 0 50px white; border-radius: 1em; } .post header { position: relative; } .post header h2 { font-size: 1.8em; font-weight: normal; color: rgb(57, 82, 107); margin-bottom: 0.25em; border-bottom: 1px solid rgb(200, 200, 200); } .post header h2 a { color: rgb(57, 82, 107); text-decoration: none; } .post header h3, .post .comment > h3 { font-size: 0.9em; color: dimgrey; margin-top: 0; margin-bottom: 0.5em; } .post .comment > h3 { font-size: 1.2em; } .post .body { overflow-x: auto; } .post header > .admin { float: right; } .post .admin form { display: inline; } .post .admin input[type='submit'], .post .admin a { border: 0; background: transparent; font-size: 1em; display: inline-block; padding: 0 0.25em; text-decoration: none; } .post .admin input[type='submit']:focus, .post .admin a:focus { outline: 1px solid lightblue; } .meta, .meta a { font-size: 0.9em; color: dimgrey; } .post + .post { margin-top: 2em; } .post .thread { border: 1px solid lightblue; padding: 0; padding-bottom: 0.5em; } .post .thread:before { display: block; content: attr(title); padding: 0.5em; border-bottom: 1px solid lightblue; background-color: rgba(0, 0, 128, 0.05); margin-bottom: 0.5em; } .post .thread li { margin-left: 3em; line-height: 1.4; } .post img { max-width: 100%; height: auto; } .post img:not([width]) { width: auto; } .post img:not([height]) { height: auto; } .post h2 { font-weight: normal; font-size: 2em; margin-bottom: 0; } .post h3 { font-weight: normal; font-size: 1.6em; margin-bottom: 0; } .comments { margin-top: 2em; } .comments:before { content: "Comments"; font-size: 1.2em; font-weight: bold; color: #888; border-bottom: 1px solid #ddd; margin-bottom: 1em; display: block; } .comment { display: grid; } .comment + .comment { margin-top: 1em; } .comment .photo { grid-area: photo; max-width: 48px; } .comment > h3 { grid-area: title; } .comment > .admin { grid-area: admin; text-align: right; } .comment > .comment-body { grid-area: content; overflow-x: auto; } .comment > .comment-body p:first-child { margin-top: 0; } #pagefooter { grid-area: footer; color: rgba(0, 0, 0, 0.9); text-align: center; font-size: 0.9em; } #pagefooter a { color: rgba(0, 0, 0, 0.9); } input:invalid { border-color: red; } .admin-console { border: 0; width: 100%; height: 900px; } code, pre { font-family: "Consolas", monospace; background-color: #eee; border: 1px solid #ddd; } pre { overflow-x: auto; padding: 0.5em; } code { white-space: nowrap; } pre code, .hilite-me pre { border: 0; padding: 0; background-color: transparent; white-space: pre; } .hilite-me { font-size: 13px; } .posts-older-newer { display: grid; grid-template-columns: 1fr 1fr; grid-template-areas: "newer older"; } .posts-older-newer .newer { grid-area: newer; text-align: left; } .posts-older-newer .newer:before { content: "<< "; } .posts-older-newer .older { grid-area: older; text-align: right; } .posts-older-newer .older::after { content: " >>"; } @media (max-width: 699px) { #entirety { border: 0; max-width: 100%; grid-template-columns: minmax(0, 1fr); } #pageheader { background-color: rgb(204, 221, 204); } #pagefooter { padding: 0.5em; background-color: rgb(111, 149, 208); } /* Nav bar toggle */ .mobile-nav { cursor: pointer; -webkit-appearance: none; -moz-appearance: none; appearance: none; background-color: rgba(0, 0, 0, 0.5); display: inline-block; width: 20px; height: 20px; -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%); clip-path: polygon(50% 0%, 0% 100%, 100% 100%); transform: rotate(90deg); transition: ease 300ms; } .mobile-nav:checked { transform: rotate(180deg); transition: ease 300ms; } .mobile-nav:not(:checked) ~ * { display: none !important; } .post pre { width: calc(100vw - 2em - 2px); } /* Cancel out for Hilite.me code blocks */ .post .hilite-me pre { width: inherit; } .comment { grid-template-columns: 5fr 1fr; grid-template-areas: "title admin" "content content"; } .comment .photo { display: none; } } @media (min-width: 700px) { #entirety { width: 80%; max-width: 1200px; margin: 2em auto; grid-template-columns: minmax(210px, 1fr) minmax(0, 5fr); grid-template-areas: "header header" "nav content" "nav content" "footer footer"; } #pageheader { display: grid; grid-template-columns: minmax(210px, 1fr) 5fr; grid-template-areas: "padding link"; background-color: rgb(187, 204, 187); } #pageheader a { grid-area: link; display: block; padding: 0.5em; background-color: rgb(204, 221, 204); } #pagenav > .sidebar-content { position: -webkit-sticky; position: sticky; top: 0.5em; } .mobile-nav { display: none; } .post .body { margin-left: 3em; max-width: 100%; } .comment { grid-template-columns: 52px 6fr 1fr; grid-template-areas: "photo title admin" "photo content content"; } #pagefooter { display: grid; grid-template-columns: minmax(210px, 1fr) 5fr; grid-template-areas: "padding text"; background-color: rgb(105, 140, 182); } #pagefooter p { grid-area: text; padding: 0.5em; background-color: rgb(111, 149, 208); margin: 0; } }
0.317215
0.131954
body { background: #262626; color: #999; } h1, h2, h3, h4, h5, h6 { color: #fff; } pre { background: #333; color: #999; border-color: #333; } hr { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.1); } select { background: #1b1b1b; border-color: #1b1b1b; color: #999; } .btn--set { background: #1b1b1b; color: #fff; } button, a.submit, .e-btn--3d, .btn--set.is-active, .btn, button.huge-search--btn, .live-preview { background: #528036; color: #fff; box-shadow: none; border-color: #528036; } button:before, button i:before { color: #fff; } input, textarea { background: #1b1b1b; border-color: #1b1b1b; color: #999; } .t-body { color: #999; } .t-body a, .t-heading { color: #fff; } .t-heading a, .price { color: #fff; } thead tr th { border-color: #262626; background-color: #1b1b1b; } tbody tr td { background-color: #333; } tfoot tr td { background-color: #1b1b1b; } thead tr td { background-color: #1b1b1b; } table tr td { border-color: #262626; } .e-text-label { background:#1b1b1b; } /* ================= HEADER ================== */ .header-sites__container a.is-active:after { display: none; } div.box--hard-top { background-color: #333; border-style: none; color: #999; } div.box--topbar { background-color: #1b1b1b; color: #fff; } div.context-header { background-color: #1b1b1b; border-style: none; color: #999; } div.context-header h1 { color: #fff; } div.header-logo-account { background-color: #1b1b1b; } div.header-logo-account__user-nav a { background: #262626; border-color: rgba(255, 255, 255, 0.1); color: #999; } div.header-logo-account__user-nav li:hover a { background: #528036; color: #fff; } div.header-logo-account__user-nav-item ul { border-color: #333; } ul.header-logo-account__sundry li a { color: #999; } div.header-sites { background-color: #1b1b1b; } div.header-categories { background-color: #262626; border-style: none; } div.header-categories a { color: #999; } div.header-categories li a { border-color: rgba(255, 255, 255, 0.1); } div.header-categories li:hover a { background-color: #262626; color: rgba(255, 255, 255, 0.5); } div.header-categories li a:hover { background: #528036; color: #fff; } li.header-categories__links-separator { border-color: rgba(255, 255, 255, 0.1); } ul.header-logo-account__sundry li:hover a { background: #262626; } ul.header-logo-account__sundry li a:hover { background: #528036; color: #fff; } nav.breadcrumbs a, div.page-tabs ul li a { color: #999; } div.page-tabs ul li.selected a { margin: 0px; } div.page-tabs ul li.selected a, div.page-tabs ul li a:hover, div.page-tabs ul li a:focus, div.page-tabs ul li a:active { background: #262626; border: none; color: #fff; } /* ================= CONTENT ================== */ div.item-preview, div.box--no-padding { background-color: #333; border-color: #333; } div.box, div.box--grouped, div.box--hard-bottom, div.box--bottom-section { background-color: #333; color: #999; border-color: #333; } div.box a, div.box--grouped a, div.box--hard-bottom a, div.box--bottom-section a, div.box--hard-top a { color: #fff; } .box--highlight-green { background: #528036; border-color: #528036; } .box--highlight-green a { color: #fff; } span.-color-grey-light { background: #528036; color: #fff; } div.user-post__post--item-note { background-color: #333; border-color: #333; } .rating-detailed__title { color: #999; } div.page-section.-color-grey-mid { background-color: #333; border-color: #333; } a.avatar img { background-color: #1b1b1b; } .user-html h1, .user-html h2, .user-html h3, .user-html h4, .user-html h5, .user-html h6, .underlined { color: #fff; border-color: #333; } .collections-profile__image { border: none; } img.img-border, img.img-border--full { border: none; box-shadow: none; background: #1b1b1b; } ul.side-tabs { border: none; } ul.side-tabs li a { background: #333; border-color: #262626; color: #999; } ul.side-tabs li a.active { color: #fff; } li.badge-manager-item { background-color: #1b1b1b; border-color: #1b1b1b; } div.note { background: #528036; color: #fff; } div.note p, div.e-alert-box p { color: #fff; } div.e-alert-box { background: #d35400; } div.basic-user-info h2 { color: #fff; } section.page-section { background-color: #333; } section.page-section.-color-white { background-color: #333; border-color: #333; } section.page-section.-color-white.-border-bottom { border-bottom: 1px solid #262626; } section.page-section.-color-grey { background-color: #262626; border-color: #262626; } #followed-items { border-bottom: 1px solid #262626; } div.home-section__featured-author { border-bottom: 1px solid #262626; } .home-section__latest-items .btn-link { background:#1b1b1b; } div.community-badges__carousel-wrapper { background-color: #fff; border: 5px solid #262626; } ul.item-list, ul.item-grid, ul.user-list, ul.list--downloads, ul.product-list, ul.product-grid { background: #333; border-color: #333; } ul.item-list li, ul.user-list li, ul.list--downloads li, ul.product-list li { background: #333; border-color: #262626; color: #999; } li.item-grid__thumb--detail:before, ul.item-grid li:before, ul.product-grid li:after { background: #262626; } .price { color: #fff; } span.pagination__page--current { background: #1b1b1b; border: #1b1b1b; } a.pagination__page:hover, .pagination__next, .pagination__prev { background: #528036; color: #fff; border: none; } div.market-news-item { background-color: #262626; border-color: #262626; } div.user-info a, .sale-info .sale-count { color: #fff; } ul.item-thumbnail-actions__list, div.item-thumbnail-actions, ul.item-thumbnail-actions__list li { background: #1b1b1b; border-color: #1b1b1b; } div.download__rating { background: #262626; } div.page-title__result-count p { background: #528036; color: #fff; } h2.user-info__username { color: #fff; } ul.download-dropdown__menu, ul.download-dropdown__menu li a { background: #1b1b1b; border-color: #1b1b1b; color: #999; } ul.download-dropdown__menu li a:hover { color: #fff; } div.review__box { background-color: #1b1b1b; border-radius: 0px; } div.review__comments { background-color: #333; } div.review__new-reply { background-color: #333; } div.withdrawal { background-color: #333; } div.withdrawal__item { border-color: #262626; } div.withdrawal-heading { border-color: #262626; } .withdrawal-heading__title, .withdrawal-heading__history a { color: #fff; } .minimap__region-list-row { border-color: #262626; } span.minimap__country-name, .t-currency { color: #999; } .statement-summary__table thead tr th { background: #333; } div.accordion-label { background: #1b1b1b; color: #999; } div.accordion-label.ui-accordion-header-active { background: #528036; color: #fff; } .tabs { background: #333; } td.statement__type span { background-color: #1b1b1b; color: #999; } tr.statement__line td { border-color: #262626; } .page-section.-custom-badges, .page-section.-custom-research { background-color: #444; } ul.collection-list li { background-color: #333; } .collection-summary__title a { color: #fff; } img.landscape-image-magnifier.preload.no_preview { background-color: #1b1b1b; } div.page-section__content { background-color: #1b1b1b; } div.page-section__content input { background-color: #262626; } .page-section.-theme-themeforest,.page-section.-theme-codecanyon,.page-section.-theme-photodune,.page-section.-theme-graphicriver,.page-section.-theme-audiojungle,.page-section.-theme-themeforest3docean,.page-section.-theme-videohive { background:#1b1b1b } div.product-list__column-price p { color: #fff; } div.search-facet div { background-color: #333; border-color: #262626; color: #999; } div.search-facet div i { color: #999; } .search-facet-single-select-panel__title div:before, div.search-facet div:before, div.search-facet span:before, ul.search-facet-listing:after { background: none; } label div.search-facet-multi-select-panel__title, label div.search-facet-multi-select-panel__title-inner { background: none; } .search-facet-multi-select-panel__option.is-active label { border-color: #1b1b1b; background: #1b1b1b } .search-facet-multi-select-panel__option.is-active label i, div.search-facet-multi-select-panel__status div { background: #1b1b1b; border-color: #1b1b1b; } div.inline-select-wrapper div { border-color: #333; } div.inline-select-wrapper div i { color: #999; } .product-grid__price { border-color: #262626; } hr.search-facet-divider { border-color: #333; } .media span { color: #999; } div.group-select select { border-radius: 0px; } div.search-facet-panel__body:after { display: none; } div.envato-studio-promotion, .envato-studio-promotion__footer { background: #333; } .envato-studio-promotion__footer { border-color: #262626; } div.item-description { border-color: #333; } div.purchase-panel { background-color: #333; border-color: #333; } div.purchase-form__support { border-color: #262626; } div.purchase-form__price b, span.purchase-form__price b { color: #fff; } .item-bookmarking a { background: #1b1b1b; } .meta-attributes__attr-name { color: #999; } .meta-attributes__attr-tags:before { background: none; } .item-preview__preview-buttons--social .btn { background: #1b1b1b; } a.screenshots { background: #528036; } .comment__container-redesign { background:#333; border-color:#262626; } .comment__container-redesign p { color:#999 } .comment__item-response { background:#444; border-color:#262626; } .comment-reply__redesign { border-color:#262626; } div.comment__initial,.comment-reply { background-color: #333; } div.e-fieldset.js-.accordion { background-color: #333; border-color: #333; } footer.e-fieldset__footer { background-color: #333; border-color: #1b1b1b; } div.e-fieldset__body.-divider-top { border-color: #262626; } /* ================= FOOTER ================== */ .site-footer input, .e-btn { background: #262626; border-color: #262626; } div.footer-primary { background-color: #1b1b1b; } div.footer-top { border-color: #262626; } /* ================= DASHBOARD PLUS ===== https://github.com/dtbaker/dashboard-plus ===== */ #statementer_summary { margin-bottom: 20px; margin-top: 40px; width: calc(100% + 70px); } #statementer_summary ul li { -moz-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; font-size: 13px; margin: 0; padding-top: 13px; position: relative; } #statementer_summary ul li:before { display: inline-block; font-family: marketplace-glyphs; font-size: 26px; font-style: normal; font-weight: normal; height: 80px; line-height: 1; position: absolute; right: 5px; speak: none; text-align: center; top: 7px; width: 1em; z-index: 999; } #statementer_summary ul li:nth-child(1), #statementer_summary ul li:nth-child(3) { background-color: #333; } #statementer_summary ul li:nth-child(1):before, #statementer_summary ul li:nth-child(3):before { content: '+'; } #statementer_summary ul li:nth-child(2), #statementer_summary ul li:nth-child(5) { background-color: #c0392b; } #statementer_summary ul li:nth-child(2):before, #statementer_summary ul li:nth-child(5):before { content: '-'; } #statementer_summary ul li:nth-child(4) { background-color: #528036; } #statementer_summary ul li:nth-child(4):before { content: '+'; }
style.css
body { background: #262626; color: #999; } h1, h2, h3, h4, h5, h6 { color: #fff; } pre { background: #333; color: #999; border-color: #333; } hr { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.1); } select { background: #1b1b1b; border-color: #1b1b1b; color: #999; } .btn--set { background: #1b1b1b; color: #fff; } button, a.submit, .e-btn--3d, .btn--set.is-active, .btn, button.huge-search--btn, .live-preview { background: #528036; color: #fff; box-shadow: none; border-color: #528036; } button:before, button i:before { color: #fff; } input, textarea { background: #1b1b1b; border-color: #1b1b1b; color: #999; } .t-body { color: #999; } .t-body a, .t-heading { color: #fff; } .t-heading a, .price { color: #fff; } thead tr th { border-color: #262626; background-color: #1b1b1b; } tbody tr td { background-color: #333; } tfoot tr td { background-color: #1b1b1b; } thead tr td { background-color: #1b1b1b; } table tr td { border-color: #262626; } .e-text-label { background:#1b1b1b; } /* ================= HEADER ================== */ .header-sites__container a.is-active:after { display: none; } div.box--hard-top { background-color: #333; border-style: none; color: #999; } div.box--topbar { background-color: #1b1b1b; color: #fff; } div.context-header { background-color: #1b1b1b; border-style: none; color: #999; } div.context-header h1 { color: #fff; } div.header-logo-account { background-color: #1b1b1b; } div.header-logo-account__user-nav a { background: #262626; border-color: rgba(255, 255, 255, 0.1); color: #999; } div.header-logo-account__user-nav li:hover a { background: #528036; color: #fff; } div.header-logo-account__user-nav-item ul { border-color: #333; } ul.header-logo-account__sundry li a { color: #999; } div.header-sites { background-color: #1b1b1b; } div.header-categories { background-color: #262626; border-style: none; } div.header-categories a { color: #999; } div.header-categories li a { border-color: rgba(255, 255, 255, 0.1); } div.header-categories li:hover a { background-color: #262626; color: rgba(255, 255, 255, 0.5); } div.header-categories li a:hover { background: #528036; color: #fff; } li.header-categories__links-separator { border-color: rgba(255, 255, 255, 0.1); } ul.header-logo-account__sundry li:hover a { background: #262626; } ul.header-logo-account__sundry li a:hover { background: #528036; color: #fff; } nav.breadcrumbs a, div.page-tabs ul li a { color: #999; } div.page-tabs ul li.selected a { margin: 0px; } div.page-tabs ul li.selected a, div.page-tabs ul li a:hover, div.page-tabs ul li a:focus, div.page-tabs ul li a:active { background: #262626; border: none; color: #fff; } /* ================= CONTENT ================== */ div.item-preview, div.box--no-padding { background-color: #333; border-color: #333; } div.box, div.box--grouped, div.box--hard-bottom, div.box--bottom-section { background-color: #333; color: #999; border-color: #333; } div.box a, div.box--grouped a, div.box--hard-bottom a, div.box--bottom-section a, div.box--hard-top a { color: #fff; } .box--highlight-green { background: #528036; border-color: #528036; } .box--highlight-green a { color: #fff; } span.-color-grey-light { background: #528036; color: #fff; } div.user-post__post--item-note { background-color: #333; border-color: #333; } .rating-detailed__title { color: #999; } div.page-section.-color-grey-mid { background-color: #333; border-color: #333; } a.avatar img { background-color: #1b1b1b; } .user-html h1, .user-html h2, .user-html h3, .user-html h4, .user-html h5, .user-html h6, .underlined { color: #fff; border-color: #333; } .collections-profile__image { border: none; } img.img-border, img.img-border--full { border: none; box-shadow: none; background: #1b1b1b; } ul.side-tabs { border: none; } ul.side-tabs li a { background: #333; border-color: #262626; color: #999; } ul.side-tabs li a.active { color: #fff; } li.badge-manager-item { background-color: #1b1b1b; border-color: #1b1b1b; } div.note { background: #528036; color: #fff; } div.note p, div.e-alert-box p { color: #fff; } div.e-alert-box { background: #d35400; } div.basic-user-info h2 { color: #fff; } section.page-section { background-color: #333; } section.page-section.-color-white { background-color: #333; border-color: #333; } section.page-section.-color-white.-border-bottom { border-bottom: 1px solid #262626; } section.page-section.-color-grey { background-color: #262626; border-color: #262626; } #followed-items { border-bottom: 1px solid #262626; } div.home-section__featured-author { border-bottom: 1px solid #262626; } .home-section__latest-items .btn-link { background:#1b1b1b; } div.community-badges__carousel-wrapper { background-color: #fff; border: 5px solid #262626; } ul.item-list, ul.item-grid, ul.user-list, ul.list--downloads, ul.product-list, ul.product-grid { background: #333; border-color: #333; } ul.item-list li, ul.user-list li, ul.list--downloads li, ul.product-list li { background: #333; border-color: #262626; color: #999; } li.item-grid__thumb--detail:before, ul.item-grid li:before, ul.product-grid li:after { background: #262626; } .price { color: #fff; } span.pagination__page--current { background: #1b1b1b; border: #1b1b1b; } a.pagination__page:hover, .pagination__next, .pagination__prev { background: #528036; color: #fff; border: none; } div.market-news-item { background-color: #262626; border-color: #262626; } div.user-info a, .sale-info .sale-count { color: #fff; } ul.item-thumbnail-actions__list, div.item-thumbnail-actions, ul.item-thumbnail-actions__list li { background: #1b1b1b; border-color: #1b1b1b; } div.download__rating { background: #262626; } div.page-title__result-count p { background: #528036; color: #fff; } h2.user-info__username { color: #fff; } ul.download-dropdown__menu, ul.download-dropdown__menu li a { background: #1b1b1b; border-color: #1b1b1b; color: #999; } ul.download-dropdown__menu li a:hover { color: #fff; } div.review__box { background-color: #1b1b1b; border-radius: 0px; } div.review__comments { background-color: #333; } div.review__new-reply { background-color: #333; } div.withdrawal { background-color: #333; } div.withdrawal__item { border-color: #262626; } div.withdrawal-heading { border-color: #262626; } .withdrawal-heading__title, .withdrawal-heading__history a { color: #fff; } .minimap__region-list-row { border-color: #262626; } span.minimap__country-name, .t-currency { color: #999; } .statement-summary__table thead tr th { background: #333; } div.accordion-label { background: #1b1b1b; color: #999; } div.accordion-label.ui-accordion-header-active { background: #528036; color: #fff; } .tabs { background: #333; } td.statement__type span { background-color: #1b1b1b; color: #999; } tr.statement__line td { border-color: #262626; } .page-section.-custom-badges, .page-section.-custom-research { background-color: #444; } ul.collection-list li { background-color: #333; } .collection-summary__title a { color: #fff; } img.landscape-image-magnifier.preload.no_preview { background-color: #1b1b1b; } div.page-section__content { background-color: #1b1b1b; } div.page-section__content input { background-color: #262626; } .page-section.-theme-themeforest,.page-section.-theme-codecanyon,.page-section.-theme-photodune,.page-section.-theme-graphicriver,.page-section.-theme-audiojungle,.page-section.-theme-themeforest3docean,.page-section.-theme-videohive { background:#1b1b1b } div.product-list__column-price p { color: #fff; } div.search-facet div { background-color: #333; border-color: #262626; color: #999; } div.search-facet div i { color: #999; } .search-facet-single-select-panel__title div:before, div.search-facet div:before, div.search-facet span:before, ul.search-facet-listing:after { background: none; } label div.search-facet-multi-select-panel__title, label div.search-facet-multi-select-panel__title-inner { background: none; } .search-facet-multi-select-panel__option.is-active label { border-color: #1b1b1b; background: #1b1b1b } .search-facet-multi-select-panel__option.is-active label i, div.search-facet-multi-select-panel__status div { background: #1b1b1b; border-color: #1b1b1b; } div.inline-select-wrapper div { border-color: #333; } div.inline-select-wrapper div i { color: #999; } .product-grid__price { border-color: #262626; } hr.search-facet-divider { border-color: #333; } .media span { color: #999; } div.group-select select { border-radius: 0px; } div.search-facet-panel__body:after { display: none; } div.envato-studio-promotion, .envato-studio-promotion__footer { background: #333; } .envato-studio-promotion__footer { border-color: #262626; } div.item-description { border-color: #333; } div.purchase-panel { background-color: #333; border-color: #333; } div.purchase-form__support { border-color: #262626; } div.purchase-form__price b, span.purchase-form__price b { color: #fff; } .item-bookmarking a { background: #1b1b1b; } .meta-attributes__attr-name { color: #999; } .meta-attributes__attr-tags:before { background: none; } .item-preview__preview-buttons--social .btn { background: #1b1b1b; } a.screenshots { background: #528036; } .comment__container-redesign { background:#333; border-color:#262626; } .comment__container-redesign p { color:#999 } .comment__item-response { background:#444; border-color:#262626; } .comment-reply__redesign { border-color:#262626; } div.comment__initial,.comment-reply { background-color: #333; } div.e-fieldset.js-.accordion { background-color: #333; border-color: #333; } footer.e-fieldset__footer { background-color: #333; border-color: #1b1b1b; } div.e-fieldset__body.-divider-top { border-color: #262626; } /* ================= FOOTER ================== */ .site-footer input, .e-btn { background: #262626; border-color: #262626; } div.footer-primary { background-color: #1b1b1b; } div.footer-top { border-color: #262626; } /* ================= DASHBOARD PLUS ===== https://github.com/dtbaker/dashboard-plus ===== */ #statementer_summary { margin-bottom: 20px; margin-top: 40px; width: calc(100% + 70px); } #statementer_summary ul li { -moz-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; font-size: 13px; margin: 0; padding-top: 13px; position: relative; } #statementer_summary ul li:before { display: inline-block; font-family: marketplace-glyphs; font-size: 26px; font-style: normal; font-weight: normal; height: 80px; line-height: 1; position: absolute; right: 5px; speak: none; text-align: center; top: 7px; width: 1em; z-index: 999; } #statementer_summary ul li:nth-child(1), #statementer_summary ul li:nth-child(3) { background-color: #333; } #statementer_summary ul li:nth-child(1):before, #statementer_summary ul li:nth-child(3):before { content: '+'; } #statementer_summary ul li:nth-child(2), #statementer_summary ul li:nth-child(5) { background-color: #c0392b; } #statementer_summary ul li:nth-child(2):before, #statementer_summary ul li:nth-child(5):before { content: '-'; } #statementer_summary ul li:nth-child(4) { background-color: #528036; } #statementer_summary ul li:nth-child(4):before { content: '+'; }
0.397588
0.111773
body { font: 76.5%/1.6em "Lucida Grande", "Lucida Sans Unicode", verdana, geneva, sans-serif; color:#aaa; margin:0; background:url(images/body_bg.jpg) top repeat-x #333; } * { margin:0; padding:0; } .clear { clear:both; } table td { vertical-align: top; } input[type=submit] { padding: 2px 10px;} #view_order fieldset , #view_orderlegend { margin:5px; padding:5px } #view_order label , #view_order p { margin:0; padding:0 } #view_order label { font-weight:bold ; color:#fff } .title { color:#fff ; font:italic normal 25px Arial, Helvetica, sans-serif ; } .error { color:#FFFF00; font:normal 15px Arial, Helvetica, sans-serif ; } .success { color:#33CC00 ; } #header { height:93px; background:url(images/header_bg.jpg) left no-repeat; } #screenshot{ position:absolute; border:1px solid #ccc; background:#333; padding:5px; display:none; width:100px; height:100px ; color:#fff; } #screenshot img { width:100px; height:100px ; } #header h1 { font:3em "Century Gothic"; color:#fff; font-weight:bold; padding:13px 20px 0 20px; letter-spacing:-1px; } #header h1.right { color:#D63465 ; float:right; } #header h1 a { color:#fff; text-decoration:none; } #header h1 a:hover { border:none; } #nav-container { width: 900px; margin: 0 auto; } ul#nav { clear:both; margin:0; } ul#nav li { float:left; padding:10px 0; list-style:none; } ul#nav li.right { float:right; margin:0 10px 0 0 !important; margin:0 3px 0 0; } ul#nav input { background:#000; border:1px solid #333; font:100% Verdana; color:#ccc; padding:2px; } ul#nav li a { padding:8px; font-weight:bold; color:#aaa; text-decoration:none; margin:0 1px; background:url(images/nav_a_hover.gif) bottom repeat-x; } ul#nav li a:hover, ul#nav li a.active { background:url(images/nav_a_hover.gif) top no-repeat #121212; color:#fff; } ul#nav li a.active { background:url(images/nav_a_hover.gif) top no-repeat #121212; color:#fff; } #sidebar { width:270px; float:right; background:#333; margin:1px 0 0 0; } #sidebar a { color:#fff; } #sidebar a:hover { text-decoration:none; border:none; } #sidebar h2 { font:150% Trebuchet MS; color:#fff; } p.news { clear:right; border-bottom:1px solid #3a3a3a; padding-bottom:20px; } #sidebar ul { margin-left:45px; } #sidebar input { margin:0 0 0 30px; background:#E13768; border:1px solid #d02657; font:100% Verdana; color:#fff; padding:4px; width:200px; } p.news .more { display:block; text-align:right; } .txt { width:300px; padding:5px; } .txt1 { width:500px ; padding:5px 0;} .txt2 { width:500px ; height:200px } .txt3 { width:500px ; height:100px } a.btn2 { background:#09F ; padding:5px ; float:right ; } a.btn2:hover {text-decoration:none !important} a.btn:hover { color:#CC0000 } #content { background:url(images/content.jpg) top right no-repeat; font-size:120%; padding:20px; width: 800px; margin: 0 auto; } #content h1,h2,h3,h4,h5,p,ul,ol,blockquote { margin-bottom:15px ; } #content h2 { font:150% Arial; color:#fff; background:url(images/content_h2.gif) left no-repeat; padding:0 0 0 19px; margin: 15px 20px 15px 0px; } #content h2 a { color:#fff; text-decoration:none; border-bottom:2px solid #222; } #content h2 a:hover { border-bottom:2px solid #E13768; } #content strong { color:#E13768; background:#222; padding:1px 4px 3px 4px; } #content p { padding:5px 0; line-height:28px; font-size:95%; } a { color:#fff; font-weight:bold; text-decoration:none; } #content h3 { font:130% Trebuchet MS; color:#fff; } .details { color:#ccc; border:1px solid #2d2d2d; background:url(images/details.jpg) right no-repeat #313131; padding:2px 15px; margin:10px 10px 50px 25px; } .details p { margin:0; padding:0; } .details p a { color:#666; } blockquote { border-left:2px solid #2f2f2f; background:#323232; } #content ul li { margin:10px 10px 10px 15px; list-style:none; padding:0 0 0 20px; background:url(images/bullet.gif) left no-repeat; } #content ol.comments { margin:10px 0 10px 25px; } ol.comments a { color:#E13768; } #content ol li { margin:10px 0 10px 25px; padding:10px 0; font:90% Trebuchet MS; line-height:22px; } p.user { border-bottom:1px solid #2a2a2a; background:#303030; } #content p img { background:#101010; padding:1px; border:3px solid #303030; } #footer { border-top:2px solid #111; background:#222; padding:15px; } #footer a { color:#ccc; } .table1 td { border-collapse:collapse; } .table1 tr th { border-bottom:1px solid #333 ; text-align:left ; background:#A0284C ; padding:5px 0; color:#fff } .table1 td { border-bottom:1px solid #555 } .table1 a { text-decoration:none ;} .table1 a:hover { text-decoration:underline } /* my cutey pager,hihihi */ .pager { padding:10px 0 ; text-align:center ; font:normal 15px Arial, Helvetica, sans-serif !important ; border:none !important } .pager a:link , .pager a:visited { color:#fff !important ; text-decoration:none !important ; padding:5px 15px; display:inline ; margin:0 2px ; background:#0099FF; } .pager a:hover { background:#5EA6CE ; }
themes/prizzy/admin/1.css
body { font: 76.5%/1.6em "Lucida Grande", "Lucida Sans Unicode", verdana, geneva, sans-serif; color:#aaa; margin:0; background:url(images/body_bg.jpg) top repeat-x #333; } * { margin:0; padding:0; } .clear { clear:both; } table td { vertical-align: top; } input[type=submit] { padding: 2px 10px;} #view_order fieldset , #view_orderlegend { margin:5px; padding:5px } #view_order label , #view_order p { margin:0; padding:0 } #view_order label { font-weight:bold ; color:#fff } .title { color:#fff ; font:italic normal 25px Arial, Helvetica, sans-serif ; } .error { color:#FFFF00; font:normal 15px Arial, Helvetica, sans-serif ; } .success { color:#33CC00 ; } #header { height:93px; background:url(images/header_bg.jpg) left no-repeat; } #screenshot{ position:absolute; border:1px solid #ccc; background:#333; padding:5px; display:none; width:100px; height:100px ; color:#fff; } #screenshot img { width:100px; height:100px ; } #header h1 { font:3em "Century Gothic"; color:#fff; font-weight:bold; padding:13px 20px 0 20px; letter-spacing:-1px; } #header h1.right { color:#D63465 ; float:right; } #header h1 a { color:#fff; text-decoration:none; } #header h1 a:hover { border:none; } #nav-container { width: 900px; margin: 0 auto; } ul#nav { clear:both; margin:0; } ul#nav li { float:left; padding:10px 0; list-style:none; } ul#nav li.right { float:right; margin:0 10px 0 0 !important; margin:0 3px 0 0; } ul#nav input { background:#000; border:1px solid #333; font:100% Verdana; color:#ccc; padding:2px; } ul#nav li a { padding:8px; font-weight:bold; color:#aaa; text-decoration:none; margin:0 1px; background:url(images/nav_a_hover.gif) bottom repeat-x; } ul#nav li a:hover, ul#nav li a.active { background:url(images/nav_a_hover.gif) top no-repeat #121212; color:#fff; } ul#nav li a.active { background:url(images/nav_a_hover.gif) top no-repeat #121212; color:#fff; } #sidebar { width:270px; float:right; background:#333; margin:1px 0 0 0; } #sidebar a { color:#fff; } #sidebar a:hover { text-decoration:none; border:none; } #sidebar h2 { font:150% Trebuchet MS; color:#fff; } p.news { clear:right; border-bottom:1px solid #3a3a3a; padding-bottom:20px; } #sidebar ul { margin-left:45px; } #sidebar input { margin:0 0 0 30px; background:#E13768; border:1px solid #d02657; font:100% Verdana; color:#fff; padding:4px; width:200px; } p.news .more { display:block; text-align:right; } .txt { width:300px; padding:5px; } .txt1 { width:500px ; padding:5px 0;} .txt2 { width:500px ; height:200px } .txt3 { width:500px ; height:100px } a.btn2 { background:#09F ; padding:5px ; float:right ; } a.btn2:hover {text-decoration:none !important} a.btn:hover { color:#CC0000 } #content { background:url(images/content.jpg) top right no-repeat; font-size:120%; padding:20px; width: 800px; margin: 0 auto; } #content h1,h2,h3,h4,h5,p,ul,ol,blockquote { margin-bottom:15px ; } #content h2 { font:150% Arial; color:#fff; background:url(images/content_h2.gif) left no-repeat; padding:0 0 0 19px; margin: 15px 20px 15px 0px; } #content h2 a { color:#fff; text-decoration:none; border-bottom:2px solid #222; } #content h2 a:hover { border-bottom:2px solid #E13768; } #content strong { color:#E13768; background:#222; padding:1px 4px 3px 4px; } #content p { padding:5px 0; line-height:28px; font-size:95%; } a { color:#fff; font-weight:bold; text-decoration:none; } #content h3 { font:130% Trebuchet MS; color:#fff; } .details { color:#ccc; border:1px solid #2d2d2d; background:url(images/details.jpg) right no-repeat #313131; padding:2px 15px; margin:10px 10px 50px 25px; } .details p { margin:0; padding:0; } .details p a { color:#666; } blockquote { border-left:2px solid #2f2f2f; background:#323232; } #content ul li { margin:10px 10px 10px 15px; list-style:none; padding:0 0 0 20px; background:url(images/bullet.gif) left no-repeat; } #content ol.comments { margin:10px 0 10px 25px; } ol.comments a { color:#E13768; } #content ol li { margin:10px 0 10px 25px; padding:10px 0; font:90% Trebuchet MS; line-height:22px; } p.user { border-bottom:1px solid #2a2a2a; background:#303030; } #content p img { background:#101010; padding:1px; border:3px solid #303030; } #footer { border-top:2px solid #111; background:#222; padding:15px; } #footer a { color:#ccc; } .table1 td { border-collapse:collapse; } .table1 tr th { border-bottom:1px solid #333 ; text-align:left ; background:#A0284C ; padding:5px 0; color:#fff } .table1 td { border-bottom:1px solid #555 } .table1 a { text-decoration:none ;} .table1 a:hover { text-decoration:underline } /* my cutey pager,hihihi */ .pager { padding:10px 0 ; text-align:center ; font:normal 15px Arial, Helvetica, sans-serif !important ; border:none !important } .pager a:link , .pager a:visited { color:#fff !important ; text-decoration:none !important ; padding:5px 15px; display:inline ; margin:0 2px ; background:#0099FF; } .pager a:hover { background:#5EA6CE ; }
0.246352
0.138491
body { padding-top: 50px; /* background-image: url(http://datasat.co.za/demo/bit6/images/whatsapp-bck.jpg); background-size: 35%; background-image: url(http://datasat.co.za/demo/bit6/images/chattreebck.png); background-size: cover; */ background-color: #90b50f; } html, body, .fh { height: 100%; } .intro { padding: 20px 15px; text-align: center; } .bg-danger > p { padding: 10px; } .btn-file { position: relative; overflow: hidden; } .btn-file input[type=file] { position: absolute; top: 0; right: 0; min-width: 100%; min-height: 100%; font-size: 100px; text-align: right; filter: alpha(opacity=0); opacity: 0; outline: none; background: white; cursor: inherit; display: block; } #chatListRow, #msgListRow { position: absolute; left: 0px; right: 0px; bottom: 0px; top: 75px; margin: 0px; } #msgListRow { bottom: 55px; } #chatList, #msgList { position: relative; height: 100%; overflow-y: auto; } .chats > div { padding: 5px 15px; color: #666; border-left: 10px solid rgba(44, 159, 243, 0.9215686274509803); clear: both; cursor: pointer; margin-bottom: 5px; width: 95%; border-radius: 0px 0px 10px 0px; background-color: rgba(255, 255, 255, 0.37); border-bottom: 1px solid #ffffff; } .chats > div:hover { border: 1px solid #eee; } .chats > div.selected { background-color: #f0f0f0; } .chats strong { display: block; font-weight: normal; font-size: 1.3em; margin-bottom: 4px; color: #0F76C1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .chats span { display: block; float: left; padding-left: 10px; font-size: 0.9em; color: ##272727; } .chats em { display: block; text-align: right; font-size: 0.8em; color: #fff; } .chats strong > b { display: block; float: right; background-color: #0F76C1; font-size: 0.6em; color: #fff; padding: 2px 4px; margin-top: 2px; /*font-weight: normal;*/ } .top-row { padding-top: 20px; padding-bottom: 20px; } .top-row h3 { margin-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } #chatButtons > button { margin-right: 4px; } #newChatDropdown .dropdown-menu { padding: 15px; width: 250px; } #backToList { margin-right: 5px; display: none; } #detailPane, #inCallPane { position: relative; } #msgOtherTyping { padding: 6px; } #msgComposeRow { background-color: rgba(245, 245, 245, 0.011764705882352941); margin: 0px; padding: 15px 0; position: absolute; left: 0px; right: 0px; bottom: 0px; } .msgs > div { width: 80%; padding: 5px; border: 1px transparent solid; position: relative; margin: 3px 10px; } .msgs > div.me { text-align: right; float: right; clear: both; box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2); background: rgba(255, 255, 255, 0.07058823529411765); display: inline-block; line-height: 1.45em; border-radius: 3px; padding: 6px 12px; font-size: 16px; max-width: 80%; min-width: 44px; min-height: 12px; margin: .5em .5em; } .msgs > div.other { text-align: left; float: left; clear: both; box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4); background: rgba(247, 247, 247, 0.4); display: inline-block; line-height: 1.45em; border-radius: 3px; padding: 6px 12px; font-size: 16px; max-width: 80%; min-width: 44px; min-height: 12px; margin: .5em .5em; } .msgs span { display: block; } .msgs em, .msgs i { display: block; font-size: 0.8em; color: #e6e6e6; } .msgs > div.me i { float: left; } .msgs > div.other i { float: right; } a.thumb { display: block; text-align: center; margin-bottom: 10px; overflow: hidden; } a.thumb img { max-width: 450px; max-height: 320px; width: 100%; /* height: 320px; */ } #incomingCall { position: absolute; top: 60px; z-index: 100; left: auto; right: auto; width: 300px; } #videoContainer { position: absolute; left: 0px; right: 0px; bottom: 0px; top: 80px; margin: 0px; text-align: center; } #videoContainer.simple > .remote { max-width: 100%; max-height: 100%; width: 100%; } #videoContainer.simple > .local { max-width: 30%; max-height: 30%; position: absolute; top: 0px; right: 0px; border-left: 1px solid #fff; border-bottom: 1px solid #fff; width: auto; height: auto; } #videoContainer.grid > video { max-width: 50%; max-height: 50%; padding: 0 4px 4px 0; } /* 768px - xs devices, 992px - medium devices */ @media only screen and (max-width : 768px) { /* Adjust top row margins on small screen */ .top-row { padding-top: 10px; padding-bottom: 10px; } /* On small screen by default DetailPane is hidden */ #detailPane { display: none; } /* When in detail mode, we hide ListPane */ body.detail #listPane { display: none; } /* Also hide top navbar */ body.detail .navbar { display: none; } body.detail { padding-top: 0px; } /* ... and show DetailPane */ body.detail #detailPane { display: block; } }
sample-file-open-pdf/bit6/css/demo.css
body { padding-top: 50px; /* background-image: url(http://datasat.co.za/demo/bit6/images/whatsapp-bck.jpg); background-size: 35%; background-image: url(http://datasat.co.za/demo/bit6/images/chattreebck.png); background-size: cover; */ background-color: #90b50f; } html, body, .fh { height: 100%; } .intro { padding: 20px 15px; text-align: center; } .bg-danger > p { padding: 10px; } .btn-file { position: relative; overflow: hidden; } .btn-file input[type=file] { position: absolute; top: 0; right: 0; min-width: 100%; min-height: 100%; font-size: 100px; text-align: right; filter: alpha(opacity=0); opacity: 0; outline: none; background: white; cursor: inherit; display: block; } #chatListRow, #msgListRow { position: absolute; left: 0px; right: 0px; bottom: 0px; top: 75px; margin: 0px; } #msgListRow { bottom: 55px; } #chatList, #msgList { position: relative; height: 100%; overflow-y: auto; } .chats > div { padding: 5px 15px; color: #666; border-left: 10px solid rgba(44, 159, 243, 0.9215686274509803); clear: both; cursor: pointer; margin-bottom: 5px; width: 95%; border-radius: 0px 0px 10px 0px; background-color: rgba(255, 255, 255, 0.37); border-bottom: 1px solid #ffffff; } .chats > div:hover { border: 1px solid #eee; } .chats > div.selected { background-color: #f0f0f0; } .chats strong { display: block; font-weight: normal; font-size: 1.3em; margin-bottom: 4px; color: #0F76C1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .chats span { display: block; float: left; padding-left: 10px; font-size: 0.9em; color: ##272727; } .chats em { display: block; text-align: right; font-size: 0.8em; color: #fff; } .chats strong > b { display: block; float: right; background-color: #0F76C1; font-size: 0.6em; color: #fff; padding: 2px 4px; margin-top: 2px; /*font-weight: normal;*/ } .top-row { padding-top: 20px; padding-bottom: 20px; } .top-row h3 { margin-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } #chatButtons > button { margin-right: 4px; } #newChatDropdown .dropdown-menu { padding: 15px; width: 250px; } #backToList { margin-right: 5px; display: none; } #detailPane, #inCallPane { position: relative; } #msgOtherTyping { padding: 6px; } #msgComposeRow { background-color: rgba(245, 245, 245, 0.011764705882352941); margin: 0px; padding: 15px 0; position: absolute; left: 0px; right: 0px; bottom: 0px; } .msgs > div { width: 80%; padding: 5px; border: 1px transparent solid; position: relative; margin: 3px 10px; } .msgs > div.me { text-align: right; float: right; clear: both; box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2); background: rgba(255, 255, 255, 0.07058823529411765); display: inline-block; line-height: 1.45em; border-radius: 3px; padding: 6px 12px; font-size: 16px; max-width: 80%; min-width: 44px; min-height: 12px; margin: .5em .5em; } .msgs > div.other { text-align: left; float: left; clear: both; box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4); background: rgba(247, 247, 247, 0.4); display: inline-block; line-height: 1.45em; border-radius: 3px; padding: 6px 12px; font-size: 16px; max-width: 80%; min-width: 44px; min-height: 12px; margin: .5em .5em; } .msgs span { display: block; } .msgs em, .msgs i { display: block; font-size: 0.8em; color: #e6e6e6; } .msgs > div.me i { float: left; } .msgs > div.other i { float: right; } a.thumb { display: block; text-align: center; margin-bottom: 10px; overflow: hidden; } a.thumb img { max-width: 450px; max-height: 320px; width: 100%; /* height: 320px; */ } #incomingCall { position: absolute; top: 60px; z-index: 100; left: auto; right: auto; width: 300px; } #videoContainer { position: absolute; left: 0px; right: 0px; bottom: 0px; top: 80px; margin: 0px; text-align: center; } #videoContainer.simple > .remote { max-width: 100%; max-height: 100%; width: 100%; } #videoContainer.simple > .local { max-width: 30%; max-height: 30%; position: absolute; top: 0px; right: 0px; border-left: 1px solid #fff; border-bottom: 1px solid #fff; width: auto; height: auto; } #videoContainer.grid > video { max-width: 50%; max-height: 50%; padding: 0 4px 4px 0; } /* 768px - xs devices, 992px - medium devices */ @media only screen and (max-width : 768px) { /* Adjust top row margins on small screen */ .top-row { padding-top: 10px; padding-bottom: 10px; } /* On small screen by default DetailPane is hidden */ #detailPane { display: none; } /* When in detail mode, we hide ListPane */ body.detail #listPane { display: none; } /* Also hide top navbar */ body.detail .navbar { display: none; } body.detail { padding-top: 0px; } /* ... and show DetailPane */ body.detail #detailPane { display: block; } }
0.413477
0.127843