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
html, body { height: 100%; width: 100%; margin: 0; padding: 0; overflow-x: hidden; font-family: Arial, Helvetica, sans-serif; } body { background-color: grey; } .logo { height: 180px; width: 180px; justify-content: center; display: block; margin-left: auto; margin-right: auto; } .title { text-align: center; color: black; font-size: 2.5em; } nav { width: 100%; height: 3em; background-color: #c73032; display: flex; justify-content: space-evenly; font-size: 1.5em; } nav:nth-child(1) { padding-left: 25px; } .navlink { padding: 5px; padding-top: 12px; padding-left: 20px; color: white; font-size: 1.3em; float: left; } .navlink a, .navlink a:link, .navlink a:visited, .navlink a:hover, .navlink a:active { color: white; text-decoration: none; padding: 5px; border-radius: 4px; background-color: #c73032; transition: background-color 0.4s ease; } .navlink a:hover { transition: background-color 0.8s ease; background-color: #930C10; } .npcForm { border: 2px solid #930C10; height: 15em; width: 700px; margin-top:0px; padding-top:10px; background-color: #c73032; border-bottom-right-radius: 4px; border-top-right-radius: 4px; display: grid; justify-content: center; } #submitDiv { text-align: center; } .npcForm label { display: inline-block; width: 75px; margin-left: 10px; font-size: 1.2em; float: left; color: white; } .npcForm input[type=text] { float:left; } #success { justify-content: center; text-align: center; } #search { border: 2px solid #930C10; height: 2.75em; width: 700px; margin-top:0px; padding-top:10px; background-color: #c73032; border-bottom-right-radius: 4px; border-top-right-radius: 4px; text-align: center; } .searchBarText { font-size: 1.5em; } .searchSubmit { font-size: 1.5em; } .makeNPCSubmit { transition: background-color 0.4s ease; display: inline; width: 90px; background-color: #8a5758; border-radius: 2px; color: white; text-decoration: none; } .makeNPCSubmit:link, .makeNPCSubmit:visited, .makeNPCSubmit:hover, .makeNPCSubmit:active { color: white; } .makeNPCSubmit:hover { transition: background-color 0.4s ease; background-color: #930C10; } .main { display: flex; margin-top: 2em; justify-content: space-between; } .mainForm { height: 200px; width: 350px; margin: 0 auto; padding-top: 100px; font-size: 1.2em; border-radius: 8px; background-color:rgb(65, 65, 65); text-align: center; } .npcDelete { transition: background-color 0.4s ease; display: inline; width: 90px; background-color: #8a5758; border-radius: 2px; color: white; text-decoration: none; } .npcDelete:link, .npcDelete:visited, .npcDelete:hover, .npcDelete:active { color: white; } .npcDelete:hover { transition: background-color 0.4s ease; background-color: #930C10; } .ad { min-width: 128px; max-width: 256px; min-height: 384px; margin-left: 2em; margin-right: 2em; } .mainForm h3 { text-align: center; } .mainForm label { display: inline-block; width: 100px; margin-right: 10px; text-align: right; font-size: 1.2em; } .formSubmit { transition: background-color 0.4s ease; display: block; text-align: center; margin: 0 auto; margin-top: 14px; font-size: 1.2em; width: 100px; background-color: #c73032; border-radius: 2px; border-color: #930C10; padding: 3px 0px; color: white; text-decoration: none; } .formSubmit:link, .formSubmit:visited, .formSubmit:hover, .formSubmit:active { color: white; } .formSubmit:hover { transition: background-color 0.4s ease; background-color: #930C10; } #user, #pass, #pass2 { text-align: center; font-size: 1.1em; width: 180px; border-radius: 6px; } #user:focus, #pass:focus, #pass2:focus { outline: none; box-shadow: 0px 0px 1px 1px #c73032; } #npcMessage { margin: auto; width: 12.5%; height: 650px; z-index: 200; text-align: center; } #npcMessage h3 { width: 200px; position: absolute; } #errorMessage { font-size: 1.2em; font-weight: bold; color: black; font-style: italic; } #NPC { z-index: 225; margin-top: -20px; margin-left: 135px; height: 450px; width: 300px; -ms-transform: rotate(330deg); -webkit-transform: rotate(330deg); transform: rotate(330deg); } #NPCs { width: 40%; min-width: 400px; border-radius: 4px; margin: 0 auto; margin-top: 100px; } .NPC { width: 95%; margin: 0 auto; margin-top: 2px; margin-bottom: 2px; border: 2px solid #c73032; border-radius: 4px; background-color: #c73032; padding: 10px; min-height:60px; overflow: hidden; } h3.emptyNPC { width: 400px; font-size: 1.5em; margin: 0 auto; text-align: center; margin-top: 18px; } .NPC:first-child { margin-top: 10px; } .NPC:last-child { margin-bottom:10px; } .updateForm { border: 2px solid #930C10; height: 15em; width: 700px; margin-top:0px; padding-top:10px; background-color: #c73032; border-bottom-right-radius: 4px; border-top-right-radius: 4px; display: grid; justify-content: center; } .updateForm label { font-size: 1.2em; color: white; text-align: center; } .updateForm input[type=text] { float:left; margin: 1em; } .updateSubmit { transition: background-color 0.4s ease; display: inline; width: 180px; background-color: #8a5758; border-radius: 2px; color: white; text-decoration: none; } .updateSubmit:link, .updateSubmit:visited, .updateSubmit:hover, .updateSubmit:active { color: white; } .updateSubmit:hover { transition: background-color 0.4s ease; background-color: #930C10; }
hosted/style.css
html, body { height: 100%; width: 100%; margin: 0; padding: 0; overflow-x: hidden; font-family: Arial, Helvetica, sans-serif; } body { background-color: grey; } .logo { height: 180px; width: 180px; justify-content: center; display: block; margin-left: auto; margin-right: auto; } .title { text-align: center; color: black; font-size: 2.5em; } nav { width: 100%; height: 3em; background-color: #c73032; display: flex; justify-content: space-evenly; font-size: 1.5em; } nav:nth-child(1) { padding-left: 25px; } .navlink { padding: 5px; padding-top: 12px; padding-left: 20px; color: white; font-size: 1.3em; float: left; } .navlink a, .navlink a:link, .navlink a:visited, .navlink a:hover, .navlink a:active { color: white; text-decoration: none; padding: 5px; border-radius: 4px; background-color: #c73032; transition: background-color 0.4s ease; } .navlink a:hover { transition: background-color 0.8s ease; background-color: #930C10; } .npcForm { border: 2px solid #930C10; height: 15em; width: 700px; margin-top:0px; padding-top:10px; background-color: #c73032; border-bottom-right-radius: 4px; border-top-right-radius: 4px; display: grid; justify-content: center; } #submitDiv { text-align: center; } .npcForm label { display: inline-block; width: 75px; margin-left: 10px; font-size: 1.2em; float: left; color: white; } .npcForm input[type=text] { float:left; } #success { justify-content: center; text-align: center; } #search { border: 2px solid #930C10; height: 2.75em; width: 700px; margin-top:0px; padding-top:10px; background-color: #c73032; border-bottom-right-radius: 4px; border-top-right-radius: 4px; text-align: center; } .searchBarText { font-size: 1.5em; } .searchSubmit { font-size: 1.5em; } .makeNPCSubmit { transition: background-color 0.4s ease; display: inline; width: 90px; background-color: #8a5758; border-radius: 2px; color: white; text-decoration: none; } .makeNPCSubmit:link, .makeNPCSubmit:visited, .makeNPCSubmit:hover, .makeNPCSubmit:active { color: white; } .makeNPCSubmit:hover { transition: background-color 0.4s ease; background-color: #930C10; } .main { display: flex; margin-top: 2em; justify-content: space-between; } .mainForm { height: 200px; width: 350px; margin: 0 auto; padding-top: 100px; font-size: 1.2em; border-radius: 8px; background-color:rgb(65, 65, 65); text-align: center; } .npcDelete { transition: background-color 0.4s ease; display: inline; width: 90px; background-color: #8a5758; border-radius: 2px; color: white; text-decoration: none; } .npcDelete:link, .npcDelete:visited, .npcDelete:hover, .npcDelete:active { color: white; } .npcDelete:hover { transition: background-color 0.4s ease; background-color: #930C10; } .ad { min-width: 128px; max-width: 256px; min-height: 384px; margin-left: 2em; margin-right: 2em; } .mainForm h3 { text-align: center; } .mainForm label { display: inline-block; width: 100px; margin-right: 10px; text-align: right; font-size: 1.2em; } .formSubmit { transition: background-color 0.4s ease; display: block; text-align: center; margin: 0 auto; margin-top: 14px; font-size: 1.2em; width: 100px; background-color: #c73032; border-radius: 2px; border-color: #930C10; padding: 3px 0px; color: white; text-decoration: none; } .formSubmit:link, .formSubmit:visited, .formSubmit:hover, .formSubmit:active { color: white; } .formSubmit:hover { transition: background-color 0.4s ease; background-color: #930C10; } #user, #pass, #pass2 { text-align: center; font-size: 1.1em; width: 180px; border-radius: 6px; } #user:focus, #pass:focus, #pass2:focus { outline: none; box-shadow: 0px 0px 1px 1px #c73032; } #npcMessage { margin: auto; width: 12.5%; height: 650px; z-index: 200; text-align: center; } #npcMessage h3 { width: 200px; position: absolute; } #errorMessage { font-size: 1.2em; font-weight: bold; color: black; font-style: italic; } #NPC { z-index: 225; margin-top: -20px; margin-left: 135px; height: 450px; width: 300px; -ms-transform: rotate(330deg); -webkit-transform: rotate(330deg); transform: rotate(330deg); } #NPCs { width: 40%; min-width: 400px; border-radius: 4px; margin: 0 auto; margin-top: 100px; } .NPC { width: 95%; margin: 0 auto; margin-top: 2px; margin-bottom: 2px; border: 2px solid #c73032; border-radius: 4px; background-color: #c73032; padding: 10px; min-height:60px; overflow: hidden; } h3.emptyNPC { width: 400px; font-size: 1.5em; margin: 0 auto; text-align: center; margin-top: 18px; } .NPC:first-child { margin-top: 10px; } .NPC:last-child { margin-bottom:10px; } .updateForm { border: 2px solid #930C10; height: 15em; width: 700px; margin-top:0px; padding-top:10px; background-color: #c73032; border-bottom-right-radius: 4px; border-top-right-radius: 4px; display: grid; justify-content: center; } .updateForm label { font-size: 1.2em; color: white; text-align: center; } .updateForm input[type=text] { float:left; margin: 1em; } .updateSubmit { transition: background-color 0.4s ease; display: inline; width: 180px; background-color: #8a5758; border-radius: 2px; color: white; text-decoration: none; } .updateSubmit:link, .updateSubmit:visited, .updateSubmit:hover, .updateSubmit:active { color: white; } .updateSubmit:hover { transition: background-color 0.4s ease; background-color: #930C10; }
0.493653
0.108001
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; font-size: 15px; } body { background-color: #fafafa; display: flex; flex-direction: column; justify-content: center; align-items: center; font-weight: 400; margin: 5rem 0; min-height: 100vh; } h2 { color: #4c4e61; } p { color: #a3a5ae; } .container { padding: 0 2rem; margin: auto; max-width: 375px; } header { margin: 5em auto; text-align: center; } header .header__regular { font-size: 1.6rem; font-weight: 200; } header .header__bold { font-size: 1.6rem; font-weight: 600; padding-bottom: 0.5em; } header p { font-size: 0.96rem; letter-spacing: 0.3px; } .card-container { display: flex; flex-direction: column; } .card { margin-bottom: 2em; padding: 2em 2em; border-radius: 0.5rem; box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3); background-color: #fff; } .card__title { font-size: 1.3rem; margin: 0 0 0.5rem; } .card__copy { font-size: 0.85rem; letter-spacing: 0.2px; line-height: 1.75; } .card .img-container { display: flex; justify-content: flex-end; } .card .img-container .card__img { height: 6rem; width: auto; padding: 2em 0 0 2em; } .supervisor { border-top: 5px solid #49CFD0; } .team-builder { border-top: 5px solid #D55C61; } .karma { border-top: 5px solid #EDAE61; } .calculator { border-top: 5px solid #589DEB; } @media screen and (min-width: 900px) { body { align-items: flex-start; margin-bottom: unset; min-height: unset; } .container { max-width: 100%; } header { margin: 0 0 4.35rem; } header .header__regular, header .header__bold { font-size: 2.33rem; line-height: 1.5; } header p { width: 48%; margin: 0 auto; } .card-container { display: flex; flex-direction: row; align-items: center; gap: 2rem; } .card { max-width: 350px; } .attribution { margin: 1rem 1rem; } } .attribution { font-size: 11px; text-align: center; } .attribution a { color: #3e52a3; } /*# sourceMappingURL=style.css.map */
styles/style.css
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; font-size: 15px; } body { background-color: #fafafa; display: flex; flex-direction: column; justify-content: center; align-items: center; font-weight: 400; margin: 5rem 0; min-height: 100vh; } h2 { color: #4c4e61; } p { color: #a3a5ae; } .container { padding: 0 2rem; margin: auto; max-width: 375px; } header { margin: 5em auto; text-align: center; } header .header__regular { font-size: 1.6rem; font-weight: 200; } header .header__bold { font-size: 1.6rem; font-weight: 600; padding-bottom: 0.5em; } header p { font-size: 0.96rem; letter-spacing: 0.3px; } .card-container { display: flex; flex-direction: column; } .card { margin-bottom: 2em; padding: 2em 2em; border-radius: 0.5rem; box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3); background-color: #fff; } .card__title { font-size: 1.3rem; margin: 0 0 0.5rem; } .card__copy { font-size: 0.85rem; letter-spacing: 0.2px; line-height: 1.75; } .card .img-container { display: flex; justify-content: flex-end; } .card .img-container .card__img { height: 6rem; width: auto; padding: 2em 0 0 2em; } .supervisor { border-top: 5px solid #49CFD0; } .team-builder { border-top: 5px solid #D55C61; } .karma { border-top: 5px solid #EDAE61; } .calculator { border-top: 5px solid #589DEB; } @media screen and (min-width: 900px) { body { align-items: flex-start; margin-bottom: unset; min-height: unset; } .container { max-width: 100%; } header { margin: 0 0 4.35rem; } header .header__regular, header .header__bold { font-size: 2.33rem; line-height: 1.5; } header p { width: 48%; margin: 0 auto; } .card-container { display: flex; flex-direction: row; align-items: center; gap: 2rem; } .card { max-width: 350px; } .attribution { margin: 1rem 1rem; } } .attribution { font-size: 11px; text-align: center; } .attribution a { color: #3e52a3; } /*# sourceMappingURL=style.css.map */
0.516595
0.073596
@import url(https://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700,700italic); /* UNIVERSAL */ html, body { height: 100%; width: 100%; margin: 0; padding: 0; left: 0; top: 0; font-size: 100%; font-family: 'Lato', Helvetica, sans-serif; color:#000; } .parameter { font-weight: bold; font-style: italic; color: #333; } .hr { margin: 30px 0; border-style: dashed; } .panel-logo { position: absolute; right: 35px; top: 22px; } /* ROOT FONT STYLES */ /* * { font-family: 'Lato', Helvetica, sans-serif; color: #333447; line-height: 1.5; } */ /* TYPOGRAPHY */ h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.375rem; } h4 { font-size: 1.125rem; } h5 { font-size: 1rem; } h6 { font-size: 0.875rem; } p { font-size: 1rem; font-weight: 200; line-height: 1.4; margin: 0 0 5px; } .font-light { font-weight: 300; } .font-regular { font-weight: 400; } .font-heavy { font-weight: 700; } /* POSITIONING */ .left { text-align: left; } .right { text-align: right; } .center { text-align: center; margin-left: auto; margin-right: auto; } .justify { text-align: justify; } /* ==== GRID SYSTEM ==== */ .container { width: 90%; /* margin-left: auto; margin-right: auto; */ background: #00a79d; } .row { position: relative; width: 100%; } .row [class^="col"] { float: left; margin: 0.5rem 2%; min-height: 0.125rem; } .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 { width: 96%; } .col-1-sm { width: 4.33%; } .col-2-sm { width: 12.66%; } .col-3-sm { width: 21%; } .col-4-sm { width: 29.33%; } .col-5-sm { width: 37.66%; } .col-6-sm { width: 46%; } .col-7-sm { width: 54.33%; } .col-8-sm { width: 62.66%; } .col-9-sm { width: 71%; } .col-10-sm { width: 79.33%; } .col-11-sm { width: 87.66%; } .col-12-sm { width: 96%; } .row::after { content: ""; display: table; clear: both; } .hidden-sm { display: none; } @media only screen and (min-width: 33.75em) { /* 540px */ .container { width: 80%; } } @media only screen and (min-width: 45em) { /* 720px */ .col-1 { width: 4.33%; } .col-2 { width: 12.66%; } .col-3 { width: 21%; } .col-4 { width: 29.33%; } .col-5 { width: 37.66%; } .col-6 { width: 46%; } .col-7 { width: 54.33%; } .col-8 { width: 62.66%; } .col-9 { width: 71%; } .col-10 { width: 79.33%; } .col-11 { width: 87.66%; } .col-12 { width: 96%; } .hidden-sm { display: block; } } @media only screen and (min-width: 60em) { /* 960px */ .container { width: 75%; max-width: 60rem; } } .panel { margin-bottom: 20px; background-color: #ffffff; border: 1px solid transparent; border-radius: 4px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); } .panel-body { padding: 15px; } .panel-heading { /* padding: 10px 15px;*/ padding: 20px 15px; border-bottom: 1px solid transparent; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel-heading > .dropdown .dropdown-toggle { color: inherit; } .panel-title { margin-top: 0; margin-bottom: 0; font-size: 16px; color: inherit; } .panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #dddddd; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .list-group, .panel > .panel-collapse > .list-group { margin-bottom: 0; } .panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item { border-width: 1px 0; border-radius: 0; } .panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { border-top: 0; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { border-bottom: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .panel-heading + .list-group .list-group-item:first-child { border-top-width: 0; } .list-group + .panel-footer { border-top-width: 0; } .panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table { margin-bottom: 0; } .panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption { padding-right: 15px; padding-left: 15px; } .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-left-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 3px; } .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 3px; } .panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body { border-top: 1px solid #dddddd; } .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td { border-top: 0; } .panel > .table-bordered, .panel > .table-responsive > .table-bordered { border: 0; } .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { border-bottom: 0; } .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { border-bottom: 0; } .panel > .table-responsive { margin-bottom: 0; border: 0; } .panel-group { margin-bottom: 20px; } .panel-group .panel { margin-bottom: 0; border-radius: 4px; } .panel-group .panel + .panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0; } .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group { border-top: 1px solid #dddddd; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid #dddddd; } .panel-default { border-color: #dddddd; } .panel-default > .panel-heading { color: #333333; background-color: #f5f5f5; border-color: #dddddd; } .panel-default > .panel-heading + .panel-collapse > .panel-body { border-top-color: #dddddd; } .panel-default > .panel-heading .badge { color: #f5f5f5; background-color: #333333; } .panel-default > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #dddddd; } .panel-primary { border-color: #337ab7; } .panel-primary > .panel-heading { color: #ffffff; background-color: #337ab7; border-color: #337ab7; } .panel-primary > .panel-heading + .panel-collapse > .panel-body { border-top-color: #337ab7; } .panel-primary > .panel-heading .badge { color: #337ab7; background-color: #ffffff; } .panel-primary > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #337ab7; } .panel-success { border-color: #d6e9c6; } .panel-success > .panel-heading { color: #00a79d; background-color: #fff; border-color: #ddd; font-weight: bold; text-transform: uppercase; } .panel-success > .panel-heading + .panel-collapse > .panel-body { border-top-color: #d6e9c6; } .panel-success > .panel-heading .badge { color: #00a79d; background-color: #3c763d; } .panel-success > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #d6e9c6; } .panel-info { border-color: #bce8f1; } .panel-info > .panel-heading { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .panel-info > .panel-heading + .panel-collapse > .panel-body { border-top-color: #bce8f1; } .panel-info > .panel-heading .badge { color: #d9edf7; background-color: #31708f; } .panel-info > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #bce8f1; } .panel-warning { border-color: #faebcc; } .panel-warning > .panel-heading { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .panel-warning > .panel-heading + .panel-collapse > .panel-body { border-top-color: #faebcc; } .panel-warning > .panel-heading .badge { color: #fcf8e3; background-color: #8a6d3b; } .panel-warning > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #faebcc; } .panel-danger { border-color: #ebccd1; } .panel-danger > .panel-heading { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .panel-danger > .panel-heading + .panel-collapse > .panel-body { border-top-color: #ebccd1; } .panel-danger > .panel-heading .badge { color: #f2dede; background-color: #a94442; } .panel-danger > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #ebccd1; } .clearfix:before, .clearfix:after, .panel-body:before, .panel-body:after { display: table; content: " "; } .clearfix:after, .panel-body:after { clear: both; }
public/css/style.css
@import url(https://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700,700italic); /* UNIVERSAL */ html, body { height: 100%; width: 100%; margin: 0; padding: 0; left: 0; top: 0; font-size: 100%; font-family: 'Lato', Helvetica, sans-serif; color:#000; } .parameter { font-weight: bold; font-style: italic; color: #333; } .hr { margin: 30px 0; border-style: dashed; } .panel-logo { position: absolute; right: 35px; top: 22px; } /* ROOT FONT STYLES */ /* * { font-family: 'Lato', Helvetica, sans-serif; color: #333447; line-height: 1.5; } */ /* TYPOGRAPHY */ h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.375rem; } h4 { font-size: 1.125rem; } h5 { font-size: 1rem; } h6 { font-size: 0.875rem; } p { font-size: 1rem; font-weight: 200; line-height: 1.4; margin: 0 0 5px; } .font-light { font-weight: 300; } .font-regular { font-weight: 400; } .font-heavy { font-weight: 700; } /* POSITIONING */ .left { text-align: left; } .right { text-align: right; } .center { text-align: center; margin-left: auto; margin-right: auto; } .justify { text-align: justify; } /* ==== GRID SYSTEM ==== */ .container { width: 90%; /* margin-left: auto; margin-right: auto; */ background: #00a79d; } .row { position: relative; width: 100%; } .row [class^="col"] { float: left; margin: 0.5rem 2%; min-height: 0.125rem; } .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 { width: 96%; } .col-1-sm { width: 4.33%; } .col-2-sm { width: 12.66%; } .col-3-sm { width: 21%; } .col-4-sm { width: 29.33%; } .col-5-sm { width: 37.66%; } .col-6-sm { width: 46%; } .col-7-sm { width: 54.33%; } .col-8-sm { width: 62.66%; } .col-9-sm { width: 71%; } .col-10-sm { width: 79.33%; } .col-11-sm { width: 87.66%; } .col-12-sm { width: 96%; } .row::after { content: ""; display: table; clear: both; } .hidden-sm { display: none; } @media only screen and (min-width: 33.75em) { /* 540px */ .container { width: 80%; } } @media only screen and (min-width: 45em) { /* 720px */ .col-1 { width: 4.33%; } .col-2 { width: 12.66%; } .col-3 { width: 21%; } .col-4 { width: 29.33%; } .col-5 { width: 37.66%; } .col-6 { width: 46%; } .col-7 { width: 54.33%; } .col-8 { width: 62.66%; } .col-9 { width: 71%; } .col-10 { width: 79.33%; } .col-11 { width: 87.66%; } .col-12 { width: 96%; } .hidden-sm { display: block; } } @media only screen and (min-width: 60em) { /* 960px */ .container { width: 75%; max-width: 60rem; } } .panel { margin-bottom: 20px; background-color: #ffffff; border: 1px solid transparent; border-radius: 4px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); } .panel-body { padding: 15px; } .panel-heading { /* padding: 10px 15px;*/ padding: 20px 15px; border-bottom: 1px solid transparent; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel-heading > .dropdown .dropdown-toggle { color: inherit; } .panel-title { margin-top: 0; margin-bottom: 0; font-size: 16px; color: inherit; } .panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #dddddd; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .list-group, .panel > .panel-collapse > .list-group { margin-bottom: 0; } .panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item { border-width: 1px 0; border-radius: 0; } .panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { border-top: 0; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { border-bottom: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .panel-heading + .list-group .list-group-item:first-child { border-top-width: 0; } .list-group + .panel-footer { border-top-width: 0; } .panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table { margin-bottom: 0; } .panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption { padding-right: 15px; padding-left: 15px; } .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-left-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 3px; } .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 3px; } .panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body { border-top: 1px solid #dddddd; } .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td { border-top: 0; } .panel > .table-bordered, .panel > .table-responsive > .table-bordered { border: 0; } .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { border-bottom: 0; } .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { border-bottom: 0; } .panel > .table-responsive { margin-bottom: 0; border: 0; } .panel-group { margin-bottom: 20px; } .panel-group .panel { margin-bottom: 0; border-radius: 4px; } .panel-group .panel + .panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0; } .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group { border-top: 1px solid #dddddd; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid #dddddd; } .panel-default { border-color: #dddddd; } .panel-default > .panel-heading { color: #333333; background-color: #f5f5f5; border-color: #dddddd; } .panel-default > .panel-heading + .panel-collapse > .panel-body { border-top-color: #dddddd; } .panel-default > .panel-heading .badge { color: #f5f5f5; background-color: #333333; } .panel-default > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #dddddd; } .panel-primary { border-color: #337ab7; } .panel-primary > .panel-heading { color: #ffffff; background-color: #337ab7; border-color: #337ab7; } .panel-primary > .panel-heading + .panel-collapse > .panel-body { border-top-color: #337ab7; } .panel-primary > .panel-heading .badge { color: #337ab7; background-color: #ffffff; } .panel-primary > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #337ab7; } .panel-success { border-color: #d6e9c6; } .panel-success > .panel-heading { color: #00a79d; background-color: #fff; border-color: #ddd; font-weight: bold; text-transform: uppercase; } .panel-success > .panel-heading + .panel-collapse > .panel-body { border-top-color: #d6e9c6; } .panel-success > .panel-heading .badge { color: #00a79d; background-color: #3c763d; } .panel-success > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #d6e9c6; } .panel-info { border-color: #bce8f1; } .panel-info > .panel-heading { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .panel-info > .panel-heading + .panel-collapse > .panel-body { border-top-color: #bce8f1; } .panel-info > .panel-heading .badge { color: #d9edf7; background-color: #31708f; } .panel-info > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #bce8f1; } .panel-warning { border-color: #faebcc; } .panel-warning > .panel-heading { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .panel-warning > .panel-heading + .panel-collapse > .panel-body { border-top-color: #faebcc; } .panel-warning > .panel-heading .badge { color: #fcf8e3; background-color: #8a6d3b; } .panel-warning > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #faebcc; } .panel-danger { border-color: #ebccd1; } .panel-danger > .panel-heading { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .panel-danger > .panel-heading + .panel-collapse > .panel-body { border-top-color: #ebccd1; } .panel-danger > .panel-heading .badge { color: #f2dede; background-color: #a94442; } .panel-danger > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #ebccd1; } .clearfix:before, .clearfix:after, .panel-body:before, .panel-body:after { display: table; content: " "; } .clearfix:after, .panel-body:after { clear: both; }
0.309545
0.061115
} #carousel_inner { float:left; /* important for inline positioning */ width:630px; /* important (this width = width of list item(including margin) * items shown */ overflow: hidden; /* important (hide the items outside the div) */ /* non-important styling bellow */ background: #F0F0F0; } #carousel_ul { position:relative; left:-210px; /* important (this should be negative number of list items width(including margin) */ list-style-type: none; /* removing the default styling for unordered list items */ margin: 0px; padding: 0px; width:9999px; /* important */ /* non-important styling bellow */ padding-bottom:10px; } #carousel_ul li{ float: left; /* important for inline positioning of the list items */ width:200px; /* fixed width, important */ /* just styling bellow*/ padding:0px; height:110px; background: #000000; margin-top:10px; margin-bottom:10px; margin-left:5px; margin-right:5px; } #carousel_ul li img { .margin-bottom:-4px; /* IE is making a 4px gap bellow an image inside of an anchor (<a href...>) so this is to fix that*/ /* styling */ cursor:pointer; cursor: hand; border:0px; } #left_scroll, #right_scroll{ float:left; height:130px; width:15px; background: #C0C0C0; } #left_scroll img, #right_scroll img{ /*styling*/ cursor: pointer; cursor: hand; } .nbs-flexisel-ul { position:relative; height: 500px; width:99999px; margin:0px; padding:0px; list-style-type:none; text-align:center; } .nbs-flexisel-inner { position: relative; overflow: hidden; float:left; width:100%; } .nbs-flexisel-item { float:left; margin:0px; padding:0px; cursor:pointer; position:relative; line-height:0px; } .nbs-flexisel-item img { max-width: 100%; cursor: pointer; position: relative; margin-top: 10px; margin-bottom: 10px; } /*** Navigation ***/ .nbs-flexisel-nav-left, .nbs-flexisel-nav-right { padding:5px 10px; border-radius:15px; -moz-border-radius:15px; -webkit-border-radius:15px; position: absolute; cursor: pointer; z-index: 4; top: 50%; transform: translateY(-50%); color: #428bca; } .nbs-flexisel-nav-left { left: 10px; opacity: 0.5; font-size: 60px; } .nbs-flexisel-nav-left:hover { opacity: 1.5; } .nbs-flexisel-nav-left:before { content: "<" } .nbs-flexisel-nav-left.disabled { opacity: 0.4; } .nbs-flexisel-nav-right { right: 5px; opacity: 0.5; font-size: 60px; } .nbs-flexisel-nav-right:hover { opacity: 1.5; } .nbs-flexisel-nav-right:before { content: ">" } .nbs-flexisel-nav-right.disabled { opacity: 0.4; }
css/carousel.css
} #carousel_inner { float:left; /* important for inline positioning */ width:630px; /* important (this width = width of list item(including margin) * items shown */ overflow: hidden; /* important (hide the items outside the div) */ /* non-important styling bellow */ background: #F0F0F0; } #carousel_ul { position:relative; left:-210px; /* important (this should be negative number of list items width(including margin) */ list-style-type: none; /* removing the default styling for unordered list items */ margin: 0px; padding: 0px; width:9999px; /* important */ /* non-important styling bellow */ padding-bottom:10px; } #carousel_ul li{ float: left; /* important for inline positioning of the list items */ width:200px; /* fixed width, important */ /* just styling bellow*/ padding:0px; height:110px; background: #000000; margin-top:10px; margin-bottom:10px; margin-left:5px; margin-right:5px; } #carousel_ul li img { .margin-bottom:-4px; /* IE is making a 4px gap bellow an image inside of an anchor (<a href...>) so this is to fix that*/ /* styling */ cursor:pointer; cursor: hand; border:0px; } #left_scroll, #right_scroll{ float:left; height:130px; width:15px; background: #C0C0C0; } #left_scroll img, #right_scroll img{ /*styling*/ cursor: pointer; cursor: hand; } .nbs-flexisel-ul { position:relative; height: 500px; width:99999px; margin:0px; padding:0px; list-style-type:none; text-align:center; } .nbs-flexisel-inner { position: relative; overflow: hidden; float:left; width:100%; } .nbs-flexisel-item { float:left; margin:0px; padding:0px; cursor:pointer; position:relative; line-height:0px; } .nbs-flexisel-item img { max-width: 100%; cursor: pointer; position: relative; margin-top: 10px; margin-bottom: 10px; } /*** Navigation ***/ .nbs-flexisel-nav-left, .nbs-flexisel-nav-right { padding:5px 10px; border-radius:15px; -moz-border-radius:15px; -webkit-border-radius:15px; position: absolute; cursor: pointer; z-index: 4; top: 50%; transform: translateY(-50%); color: #428bca; } .nbs-flexisel-nav-left { left: 10px; opacity: 0.5; font-size: 60px; } .nbs-flexisel-nav-left:hover { opacity: 1.5; } .nbs-flexisel-nav-left:before { content: "<" } .nbs-flexisel-nav-left.disabled { opacity: 0.4; } .nbs-flexisel-nav-right { right: 5px; opacity: 0.5; font-size: 60px; } .nbs-flexisel-nav-right:hover { opacity: 1.5; } .nbs-flexisel-nav-right:before { content: ">" } .nbs-flexisel-nav-right.disabled { opacity: 0.4; }
0.551574
0.119434
@keyframes bulge { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } html { font-size: 62.5%; } @media only screen and (min-width: 112.5em) { html { font-size: 75%; } } @media only screen and (max-width: 75em) { html { font-size: 56.25%; } } @media only screen and (max-width: 56.25em) { html { font-size: 50%; } } @media only screen and (max-width: 37.5em) { html { font-size: 37.5%; } } body { /* makes it so that padding and width don't add to total size of element. i.e. height and width will now extend to define other parts of the box model */ box-sizing: border-box; } *, *::before, *::after { margin: 0; padding: 0; } @font-face { font-family: got; src: url("got.ttf"); } h1, h2, h3, h4 { font-family: got; text-align: center; } p { font-family: fantasy; font-size: 1.5rem; color: #e5b72b; text-shadow: -1px -1px 0 #860420, 1px -1px 0 #860420, -1px 1px 0 #860420, 1px 1px 0 #860420; } .heading--main { color: #860420; font-size: 4rem; letter-spacing: .8rem; margin-top: 7rem; margin-bottom: 5rem; text-shadow: -1px -1px 0 #e5b72b, 1px -1px 0 #e5b72b, -1px 1px 0 #e5b72b, 1px 1px 0 #e5b72b; } .heading--secondary { margin-top: 7rem; margin-bottom: 5rem; letter-spacing: .8rem; font-size: 3.7rem; color: #860420; text-shadow: -1px -1px 0 #e5b72b, 1px -1px 0 #e5b72b, -1px 1px 0 #e5b72b, 1px 1px 0 #e5b72b; } .heading--question { margin: 3rem 0; color: #e5b72b; font-size: 2rem; letter-spacing: .4rem; } .choice-btn { font-family: got; font-size: 1rem; padding: 1.5rem; color: #860420; background-color: #e5b72b; border: none; border-radius: 0.3rem; } .choice-btn:hover { cursor: pointer; } .game-btn { font-family: got; font-size: 2.5rem; padding: 1rem; color: #860420; background-color: #e5b72b; border: none; animation: bulge 2s ease-in-out infinite; } .game-btn:hover { cursor: pointer; animation: none; color: black; } .timer { background-color: rgba(134, 4, 32, 0.8); border: #e5b72b solid 2px; color: #e5b72b; padding: 2rem; position: absolute; right: 5rem; bottom: 3rem; display: flex; flex-direction: column; } @media only screen and (max-width: 56.25em) { .timer { position: initial; } } .timer__heading { font-family: got; font-size: 1.8rem; } .timer__time { text-align: center; font-family: got; } .intro { background-image: url("../images/kings-landing.jpg"); background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; height: 100vh; width: 100vw; position: absolute; top: 0; } .game { background-image: url("../images/wall.jpg"); background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; height: 100vh; width: 100vw; position: absolute; top: 0; } .score { background-image: url("../images/iron-throne.jpg"); background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; height: 100vh; width: 100vw; position: absolute; top: 0; } .container { width: 70%; margin: 0 auto; background-color: rgba(134, 4, 32, 0.8); padding: 2rem; border-radius: 0.3rem; border: solid 2px #e5b72b; } .evaluate__img { width: 30rem; max-height: 50rem; } .evaluate__img-container { width: 80%; margin: auto; display: flex; justify-content: center; align-items: center; } .intro__instructions { margin-bottom: 1rem; text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black; font-size: 2.5rem; letter-spacing: .2rem; } .intro__btn--contain { margin: 2rem 0; display: flex; justify-content: center; } .game__header { display: flex; align-items: center; justify-content: center; width: 70%; margin: 0 auto; position: relative; flex-direction: column; } @media only screen and (max-width: 56.25em) { .game__header { margin-bottom: 2rem; } } .game__btns { display: flex; flex-direction: row; justify-content: space-around; } @media only screen and (max-width: 56.25em) { .game__btns { flex-direction: column; } .game__btns > * { margin: 2rem 0; } } .score__stats { margin: 3rem 0; color: #e5b72b; font-size: 2rem; letter-spacing: .4rem; text-align: left; }
assets/css/style.css
@keyframes bulge { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } html { font-size: 62.5%; } @media only screen and (min-width: 112.5em) { html { font-size: 75%; } } @media only screen and (max-width: 75em) { html { font-size: 56.25%; } } @media only screen and (max-width: 56.25em) { html { font-size: 50%; } } @media only screen and (max-width: 37.5em) { html { font-size: 37.5%; } } body { /* makes it so that padding and width don't add to total size of element. i.e. height and width will now extend to define other parts of the box model */ box-sizing: border-box; } *, *::before, *::after { margin: 0; padding: 0; } @font-face { font-family: got; src: url("got.ttf"); } h1, h2, h3, h4 { font-family: got; text-align: center; } p { font-family: fantasy; font-size: 1.5rem; color: #e5b72b; text-shadow: -1px -1px 0 #860420, 1px -1px 0 #860420, -1px 1px 0 #860420, 1px 1px 0 #860420; } .heading--main { color: #860420; font-size: 4rem; letter-spacing: .8rem; margin-top: 7rem; margin-bottom: 5rem; text-shadow: -1px -1px 0 #e5b72b, 1px -1px 0 #e5b72b, -1px 1px 0 #e5b72b, 1px 1px 0 #e5b72b; } .heading--secondary { margin-top: 7rem; margin-bottom: 5rem; letter-spacing: .8rem; font-size: 3.7rem; color: #860420; text-shadow: -1px -1px 0 #e5b72b, 1px -1px 0 #e5b72b, -1px 1px 0 #e5b72b, 1px 1px 0 #e5b72b; } .heading--question { margin: 3rem 0; color: #e5b72b; font-size: 2rem; letter-spacing: .4rem; } .choice-btn { font-family: got; font-size: 1rem; padding: 1.5rem; color: #860420; background-color: #e5b72b; border: none; border-radius: 0.3rem; } .choice-btn:hover { cursor: pointer; } .game-btn { font-family: got; font-size: 2.5rem; padding: 1rem; color: #860420; background-color: #e5b72b; border: none; animation: bulge 2s ease-in-out infinite; } .game-btn:hover { cursor: pointer; animation: none; color: black; } .timer { background-color: rgba(134, 4, 32, 0.8); border: #e5b72b solid 2px; color: #e5b72b; padding: 2rem; position: absolute; right: 5rem; bottom: 3rem; display: flex; flex-direction: column; } @media only screen and (max-width: 56.25em) { .timer { position: initial; } } .timer__heading { font-family: got; font-size: 1.8rem; } .timer__time { text-align: center; font-family: got; } .intro { background-image: url("../images/kings-landing.jpg"); background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; height: 100vh; width: 100vw; position: absolute; top: 0; } .game { background-image: url("../images/wall.jpg"); background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; height: 100vh; width: 100vw; position: absolute; top: 0; } .score { background-image: url("../images/iron-throne.jpg"); background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; height: 100vh; width: 100vw; position: absolute; top: 0; } .container { width: 70%; margin: 0 auto; background-color: rgba(134, 4, 32, 0.8); padding: 2rem; border-radius: 0.3rem; border: solid 2px #e5b72b; } .evaluate__img { width: 30rem; max-height: 50rem; } .evaluate__img-container { width: 80%; margin: auto; display: flex; justify-content: center; align-items: center; } .intro__instructions { margin-bottom: 1rem; text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black; font-size: 2.5rem; letter-spacing: .2rem; } .intro__btn--contain { margin: 2rem 0; display: flex; justify-content: center; } .game__header { display: flex; align-items: center; justify-content: center; width: 70%; margin: 0 auto; position: relative; flex-direction: column; } @media only screen and (max-width: 56.25em) { .game__header { margin-bottom: 2rem; } } .game__btns { display: flex; flex-direction: row; justify-content: space-around; } @media only screen and (max-width: 56.25em) { .game__btns { flex-direction: column; } .game__btns > * { margin: 2rem 0; } } .score__stats { margin: 3rem 0; color: #e5b72b; font-size: 2rem; letter-spacing: .4rem; text-align: left; }
0.530966
0.186724
body { padding-top: 54px; background-color: #fafaff!important; } @media (min-width: 992px) { body { padding-top: 56px; } } .card { height: 100%; } .display-3{ margin-top: -45px; font-size: 50px; } .lead{ font-size: 18px; margin-bottom: -40px; } .card-body{ margin-top:-8px; background-color: #f1f3fa!important; } .navbar-brand{ color:#2a8dd2!important; font-family: 'Overlock', cursive; } .btn{ background-color:#2a8dd2; transition: .5s; transition-timing-function:ease; border-color:#2488cb!important; } .nav-link{ color:#ccc!important; transition:.5s; transition-timing-function:ease; } .nav-link:hover{ color:#2a8dd2!important; } .m-0{ color:#2a8dd2!important; } .my-4{ background-color: #e9e9ef!important; } .signin{ margin-top: 20px; margin-bottom: 10px; text-align: center; } .sign-in{ border-radius:6px; } .current{ color:#1478bb!important; } .btn:hover{ background-color:#1276b9!important; } input{ border-radius: 4px; border-style: solid; border-width: 2px; border-color: #ccc; text-align: center; } .transparent{ background-color:rgba(255,255,255,0); border-color:rgba(200,200,200,0); width:100%; } @media (max-width: 992px) { .sv-0{ margin-top: -10px; } .display-3{ margin-top: -25px; font-size: 24px; } .lead{ margin-bottom: -20px; font-size: 12px; } .card{ width:70%; margin-left: 15%; margin-top: -10px; } .row{ text-align: center; } .card-title{ font-size: 18px; margin-top: -5px; } .card-text{ font-size: 12px; margin-top: -5px; } .card-footer{ height: 60px; } .btn-primary{ font-size: 13px; margin-top: -5px; } } @media(min-width:1910px){ body{ zoom:110%; } } .spon { float: left; width: 300px; } .spon1, .spon2 { text-align: center; } .spon1 { font-size: 20px; } .spon2 { font-weight: normal; font-style: italic; font-size: 15px; } .unav{ background-color: #C44; color:#ddd; font-weight:600; font-variant: small-caps; width:255px; margin-left: -19px; margin-top: -31px; position:absolute; border-radius: 3px; top:233px; bottom:0px; font-size: 22px; padding: 11px; }
css/styles.css
body { padding-top: 54px; background-color: #fafaff!important; } @media (min-width: 992px) { body { padding-top: 56px; } } .card { height: 100%; } .display-3{ margin-top: -45px; font-size: 50px; } .lead{ font-size: 18px; margin-bottom: -40px; } .card-body{ margin-top:-8px; background-color: #f1f3fa!important; } .navbar-brand{ color:#2a8dd2!important; font-family: 'Overlock', cursive; } .btn{ background-color:#2a8dd2; transition: .5s; transition-timing-function:ease; border-color:#2488cb!important; } .nav-link{ color:#ccc!important; transition:.5s; transition-timing-function:ease; } .nav-link:hover{ color:#2a8dd2!important; } .m-0{ color:#2a8dd2!important; } .my-4{ background-color: #e9e9ef!important; } .signin{ margin-top: 20px; margin-bottom: 10px; text-align: center; } .sign-in{ border-radius:6px; } .current{ color:#1478bb!important; } .btn:hover{ background-color:#1276b9!important; } input{ border-radius: 4px; border-style: solid; border-width: 2px; border-color: #ccc; text-align: center; } .transparent{ background-color:rgba(255,255,255,0); border-color:rgba(200,200,200,0); width:100%; } @media (max-width: 992px) { .sv-0{ margin-top: -10px; } .display-3{ margin-top: -25px; font-size: 24px; } .lead{ margin-bottom: -20px; font-size: 12px; } .card{ width:70%; margin-left: 15%; margin-top: -10px; } .row{ text-align: center; } .card-title{ font-size: 18px; margin-top: -5px; } .card-text{ font-size: 12px; margin-top: -5px; } .card-footer{ height: 60px; } .btn-primary{ font-size: 13px; margin-top: -5px; } } @media(min-width:1910px){ body{ zoom:110%; } } .spon { float: left; width: 300px; } .spon1, .spon2 { text-align: center; } .spon1 { font-size: 20px; } .spon2 { font-weight: normal; font-style: italic; font-size: 15px; } .unav{ background-color: #C44; color:#ddd; font-weight:600; font-variant: small-caps; width:255px; margin-left: -19px; margin-top: -31px; position:absolute; border-radius: 3px; top:233px; bottom:0px; font-size: 22px; padding: 11px; }
0.327453
0.056914
p, a, li, button { font-size: 1.4rem; } /* ========================================================================== */ /* ================================================================ #site-nav */ /* ========================================================================== */ a.nav-link { font-size: 1.8rem; } /* ========================================================================== */ /* ============================================================= #site-header */ /* ========================================================================== */ #site-header div div div { padding: 10px 5px 50px 5px; } .social-nav-header li a { font-size: 2rem; } #site-header h1 { font-size: 4.2rem; } #site-header h2 { font-size: 2.8rem; } /* ========================================================================== */ /* ================================================================== section */ /* ========================================================================== */ .title-section h3 { font-size: 2.8rem; } section h4 { font-size: 2.3rem; } /* ----------------------------------------------------------------------- */ /* ------------------------------------------------------------------ .tab */ /* ----------------------------------------------------------------------- */ .tab { border-top: none; border-left: 1px solid rgba(100, 255, 218, 0.9); height: inherit; margin: 0; display: block; justify-content: space-between; } .tab button { display: block; width: 100%; border: none; border-left: 2px solid transparent; text-align: left; } button.tab-button-active { border-left: 2px solid rgba(100, 255, 218, 0.9); } /* ========================================================================== */ /* =================================================================== #about */ /* ========================================================================== */ #about .content-section div div:nth-child(1) figure { margin-bottom: 0px; } #about .content-section div div:nth-child(1) div img { margin-bottom: 0; } #about .content-section div div:nth-child(1) figure figcaption { padding: 10px 0 15px 0; bottom: -100px; font-size: 2.5rem; } /* ========================================================================== */ /* ================================================================= #contact */ /* ========================================================================== */ #contact div.content-section ul { margin: 70px 0; } #contact div.content-section ul li:nth-child(2) { margin: 0 30px; } #contact div.content-section ul li a { font-size: 4rem; }
resources/css/tablet.css
p, a, li, button { font-size: 1.4rem; } /* ========================================================================== */ /* ================================================================ #site-nav */ /* ========================================================================== */ a.nav-link { font-size: 1.8rem; } /* ========================================================================== */ /* ============================================================= #site-header */ /* ========================================================================== */ #site-header div div div { padding: 10px 5px 50px 5px; } .social-nav-header li a { font-size: 2rem; } #site-header h1 { font-size: 4.2rem; } #site-header h2 { font-size: 2.8rem; } /* ========================================================================== */ /* ================================================================== section */ /* ========================================================================== */ .title-section h3 { font-size: 2.8rem; } section h4 { font-size: 2.3rem; } /* ----------------------------------------------------------------------- */ /* ------------------------------------------------------------------ .tab */ /* ----------------------------------------------------------------------- */ .tab { border-top: none; border-left: 1px solid rgba(100, 255, 218, 0.9); height: inherit; margin: 0; display: block; justify-content: space-between; } .tab button { display: block; width: 100%; border: none; border-left: 2px solid transparent; text-align: left; } button.tab-button-active { border-left: 2px solid rgba(100, 255, 218, 0.9); } /* ========================================================================== */ /* =================================================================== #about */ /* ========================================================================== */ #about .content-section div div:nth-child(1) figure { margin-bottom: 0px; } #about .content-section div div:nth-child(1) div img { margin-bottom: 0; } #about .content-section div div:nth-child(1) figure figcaption { padding: 10px 0 15px 0; bottom: -100px; font-size: 2.5rem; } /* ========================================================================== */ /* ================================================================= #contact */ /* ========================================================================== */ #contact div.content-section ul { margin: 70px 0; } #contact div.content-section ul li:nth-child(2) { margin: 0 30px; } #contact div.content-section ul li a { font-size: 4rem; }
0.149283
0.07403
.header-menu { font-family: 'Zilla Slab', serif; } .header-menu .main-menu .navbar-nav .nav-link{ width: 180px; height: 50px; font-size:30px; font-weight: 550; display:block; justify-content:space-between; margin-left:-35px; } .header-menu .main-menu .navbar-nav .button{ box-shadow: 6px -6px 0px 0px #000000; background-color:#ffffff; border:2px solid #000000; display:inline-block; cursor:pointer; color:#000000; font-size:21px; text-decoration:none; } .header-menu .main-menu .navbar-nav .button:hover { background-color:#faf60b; } .header-menu .main-menu .navbar-nav .button:active { position:relative; top:1px; } .card1{ width: 250px; height: 210px; font-size:30px; font-weight: 550; display:block; justify-content:space-between; box-shadow: 9px -9px 0px 0px #FF003B; background-color:#ffffff; border:2.5px solid #000000; display:inline-block; cursor:pointer; color:#000000; font-size:21px; text-decoration:none; border-radius: 10px; } .card2{ width: 250px; height: 210px; font-size:30px; font-weight: 550; display:block; justify-content:space-between; box-shadow: 9px -9px 0px 0px #FFAB0F; background-color:#ffffff; border:2.5px solid #000000; display:inline-block; cursor:pointer; color:#000000; font-size:21px; text-decoration:none; border-radius: 10px; } .card3{ width: 250px; height: 210px; font-size:30px; font-weight: 550; display:block; justify-content:space-between; box-shadow: 9px -9px 0px 0px #00A2FF; background-color:#ffffff; border:2.5px solid #000000; display:inline-block; cursor:pointer; color:#000000; font-size:21px; text-decoration:none; border-radius: 10px; } h1, p{ font-family: 'Zilla Slab', serif; } footer{ margin-top: 30px; height: 40px; }
style/style1.css
.header-menu { font-family: 'Zilla Slab', serif; } .header-menu .main-menu .navbar-nav .nav-link{ width: 180px; height: 50px; font-size:30px; font-weight: 550; display:block; justify-content:space-between; margin-left:-35px; } .header-menu .main-menu .navbar-nav .button{ box-shadow: 6px -6px 0px 0px #000000; background-color:#ffffff; border:2px solid #000000; display:inline-block; cursor:pointer; color:#000000; font-size:21px; text-decoration:none; } .header-menu .main-menu .navbar-nav .button:hover { background-color:#faf60b; } .header-menu .main-menu .navbar-nav .button:active { position:relative; top:1px; } .card1{ width: 250px; height: 210px; font-size:30px; font-weight: 550; display:block; justify-content:space-between; box-shadow: 9px -9px 0px 0px #FF003B; background-color:#ffffff; border:2.5px solid #000000; display:inline-block; cursor:pointer; color:#000000; font-size:21px; text-decoration:none; border-radius: 10px; } .card2{ width: 250px; height: 210px; font-size:30px; font-weight: 550; display:block; justify-content:space-between; box-shadow: 9px -9px 0px 0px #FFAB0F; background-color:#ffffff; border:2.5px solid #000000; display:inline-block; cursor:pointer; color:#000000; font-size:21px; text-decoration:none; border-radius: 10px; } .card3{ width: 250px; height: 210px; font-size:30px; font-weight: 550; display:block; justify-content:space-between; box-shadow: 9px -9px 0px 0px #00A2FF; background-color:#ffffff; border:2.5px solid #000000; display:inline-block; cursor:pointer; color:#000000; font-size:21px; text-decoration:none; border-radius: 10px; } h1, p{ font-family: 'Zilla Slab', serif; } footer{ margin-top: 30px; height: 40px; }
0.22194
0.057229
v2.0 | 20110126 License: none (public domain) */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block } body { line-height: 100% } strong { font-weight: bold } blockquote, q { quotes: none } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } p a, p a:hover { text-decoration: none; border-bottom: 1px dotted; } li a, li a:hover { text-decoration: none } .ir { font: 0/0 a; text-shadow: none; color: transparent; } .fr { float: right } .fl { float: left } .cb { clear: both } /* VARIABLES */ /* COLORS */ /* PARAMETRIC MIXINS */ /* ---------- GENERAL ---------- */ body { font: 0.875em/1.5em "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; color: #7a8992; } body .nav-replacement { display: none; height: 50px; background: white; } body.fixed-nav { margin-top: 30px } body.fixed-nav .nav-replacement { display: block; height: 50px; background: white; } p a, li a { color: #026bb9; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; } p a:hover, li a:hover { color: #3f484d } p, ul, ol, h1, h2, h3, h4, h5, h6 { margin-bottom: 1em } h1 { font-size: 2em; } h2 { font-size: 1.75em; color: #016cb4; } h2 span { font-size: 0.75em; color: #7a8992; } h3 { font-size: 1.3em; color: #3f484d; } h4 { font-size: 1em; color: #3f484d; } h5, h6 { font-size: .75em } .smooth-borders { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; } .smooth-borders:hover { border: 1px solid #bac8cf } .simple-borders { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; } .hr-dots { border: none; height: 1px; border-top: 1px solid #d8e0e4; margin: 4em 0; position: relative; text-align: center; } .hr-dots::before { content: ''; width: 33px; height: 13px; background: transparent url('../images/sprites.png') no-repeat 0 -263px; position: absolute; top: -7px; } .hr-simple { border: none; height: 1px; border-top: 1px solid #d8e0e4; margin: 2em 0; } .figure-right, .figure-left { padding: 2px; border: 1px solid #d8e0e4; text-align: center; } .figure-right img, .figure-left img { display: block } .figure-right figcaption, .figure-left figcaption { font-style: italic; font-size: 0.75em; text-align: center; padding: 0.5em 1em; white-space: normal; } .figure-right { float: right; margin: 0 0 1em 3em; } .figure-left { float: left; margin: 0 3em 1em 0; } .basic-list { margin-left: 2em } .align-left { float: left; margin: 0 2em 0 0; } .align-right { float: right; margin: 0 0 0 2em; } /* ---------- BOOTSTRAP RE-STYLE ---------- */ .alert { display: inline-block } .alert p { margin-bottom: 1em } .tab-content { overflow: hidden } /* ---------- HEADER ---------- */ .logo { margin-bottom: 0; height: 128px; } .logo a { background: transparent url('../../../../../migestion/web/bundles/landingfront/images/logo.png') no-repeat left center; height: 128px; width: 250px; display: block; } .header-information { list-style-type: none; float: right; margin-top: 3em; } .header-information .phone-info, .header-information .email-info, .header-information .login-action { background: transparent url('../images/sprites.png') no-repeat; min-height: 42px; float: left; margin-left: 2em; } .header-information .phone-info p, .header-information .email-info p, .login-action p { margin: 0 0 0 3.8em } .header-information .phone-info { background-position: 0 -1px } .header-information .email-info { background-position: 0 -44px } .header-information .login-action { background-position: 0 -87px } .top-cta { margin: 2.6em 0 0 2em } /* ---------- RESPONSIVE VIDEO EMBEDS ---------- */ .video-wrapper { border: 1px solid #3d454a; background: #111415; padding: .5em; } .video-container { border: 1px solid #111415; padding-bottom: 56.25%; /* 16/9 ratio */ height: 0; overflow: hidden; position: relative; } .video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* ---------- BANNER ---------- */ .banner-container { background: #1e1f24 url('../images/fabric-bg.png'); margin-bottom: 3em; padding: 3em 0; border: solid #111415; border-width: 3px 0; } .banner-container h1 { color: white; line-height: 1.2em; margin-bottom: 1em; margin-top: 0.5em; } .banner-container h3 { color: #88969d; line-height: 1.5em; } .product-header-pricing { background: white; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; float: right; padding: 2em 3em; -webkit-box-shadow: 0 0 10px #282e31; box-shadow: 0 0 10px #282e31; text-align: center; } .product-header-pricing .header-pricing { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; background: #f8f9fa; padding: 1em; } .product-header-pricing .header-pricing:hover { border: 1px solid #bac8cf } .product-header-pricing .header-pricing p { margin-bottom: 0; color: #89aa38; letter-spacing: -1px; font-size: 5em; line-height: 1em; } .product-header-pricing .header-pricing span { font-size: 18px; letter-spacing: 0px; color: #89aa38; display: block; } .product-header-pricing .header-pricing h3 { color: #3f484d; margin-bottom: 0; } .product-header-pricing .header-cta { margin-top: 2em } .product-header-pricing .header-cta p { margin: 1em 0 0 0 } .product-header-pricing .header-cta .big-button { line-height: 1.2em } .product-header-signup { background: white; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; float: right; padding: 2em 0; width: 100%; -webkit-box-shadow: 0 0 10px #282e31; box-shadow: 0 0 10px #282e31; } .product-header-signup form { background: #f8f9fa; padding: 2em 2em 1em 2em; border: 1px solid #d8e0e4; border-width: 1px 0; } .product-header-signup h2 { margin: 0 28px 1em 28px } .product-header-signup .header-cta { margin: 2em 2em 0 2em; text-align: center; } .product-header-signup .header-cta p { margin: 1em 0 0 0 } .product-header-signup input[type="text"], .product-header-signup input[type="email"] { width: 100% } .header-benefits { list-style-type: none; margin-bottom: 0; } .header-benefits li { padding: 0 0 0 2em; margin-bottom: 0.75em; color: #89aa38; position: relative; } .header-benefits li:last-child { padding-bottom: 0 } .header-benefits li i { position: absolute; display: block; width: 16px; height: 16px; background: transparent url('../images/sprites.png') no-repeat; margin-top: -8px; top: 50%; left: 0; } .header-figure img { width: 100%; display: block; } .space-right { padding-right: 1em } .space-left { padding-left: 1em } .screenshot-cta { margin-top: 4em } .screenshot-cta a { margin-bottom: 0.5em; margin-right: 0.5em; font-size: 25px; padding: 25px; width: 185px; } .feature-list h2 { margin-bottom: 10px; font-size: 21px; } .screenshot-cta a.big-button, .screenshot-cta a.button { float: left; margin-right: .5em; } .screenshot-cta p { margin: 1.5em 0 0 0; float: left; } .screenshot-cta p a { color: white } .screenshot-cta p a:hover { color: #89aa38 } .screenshot-shadow { -webkit-box-shadow: 0 0 10px #282e31; box-shadow: 0 0 10px #282e31; } /* ---------- NAV ---------- */ .floating-nav { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; background-color: #ffffff; background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f9fa)); background-image: -webkit-linear-gradient(top, #ffffff, #f8f9fa); background-image: -moz-linear-gradient(top, #ffffff, #f8f9fa); background-image: -o-linear-gradient(top, #ffffff, #f8f9fa); background-image: linear-gradient(to bottom, #ffffff, #f8f9fa); margin-bottom: 3em; } .floating-nav:hover { border: 1px solid #bac8cf } .floating-nav ul { list-style-type: none; margin-bottom: 0; padding: 1em 2em; float: left; } .floating-nav ul li { display: inline; margin-right: 1.2em; padding-right: 1.2em; border-right: 1px solid #d8e0e4; } .floating-nav ul li.active a { font-weight: bold; color: #3f484d; } .floating-nav .nav-cta-button { display: none; float: right; margin: 5px 2em 0 0; padding: .75em 2.5em .5em 1.5em; } .floating-nav.fixed { position: fixed; top: 0; z-index: 9999; margin: 0; width: 100%; -webkit-border-radius: 0; border-radius: 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -webkit-box-shadow: 0 1px 30px #3d454a; box-shadow: 0 1px 30px #3d454a; } .floating-nav.fixed ul { padding: 1em } .floating-nav.fixed .nav-cta-button { display: block; margin-right: 1em; } .responsive-nav { display: none } /* ---------- FEATURES ---------- */ .feature-list figure { float: left } .feature-list h3 { margin: 0 0 0.5em 90px } .feature-list p { margin-left: 90px } /* ---------- PRODUCT TOUR ---------- */ .tour-navigation { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; } .tour-navigation ul { list-style-type: none; margin-bottom: 0; } .tour-navigation ul li { border-bottom: 1px solid #e7ecee; padding: .25em; } .tour-navigation ul li a { padding: .75em 1.5em; display: block; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .tour-navigation ul li a:hover { background: #f8f9fa } .tour-navigation ul li:last-child { margin-bottom: 0; border-bottom: 0; } .tour-navigation ul li.active a { background: #3f484d; color: white; } .tour-nav-container { background: #f8f9fa; padding: 5px; border: 1px solid #d8e0e4; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; clear: both; margin-bottom: 2em; } /* ---------- TABS ---------- */ .custom-tabs .nav-tabs { margin-bottom: 0; border: none; } .custom-tabs .tab-content { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-border-radius: 0 5px 5px 5px; border-radius: 0 5px 5px 5px; padding: 1.5em; } .nav-tabs > li > a { padding: 1.5em; border: 1px solid transparent; -webkit-border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0; } .nav-tabs > li > a:hover { background: #f8f9fa; border-color: #d8e0e4; } /* ---------- PRICING TABLE ---------- */ .pricing-table-column { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; text-align: center; min-width: 235px; } .pricing-table-column:hover { border: 1px solid #bac8cf } .pricing-table-column ul { list-style-type: none } .pricing-table-column ul li { border-bottom: 1px solid #e7ecee; padding-bottom: 0.15em; margin: 0 2em 0.75em 1em; color: #3f484d; } .pricing-table-column ul li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; } .pricing-table-column h3 { margin: 0; padding: 1em 0; font-size: 1.3em; } .pricing-table-column .cta-area { background: #f8f9fa; padding: 2em 0; border-top: 1px solid #d8e0e4; -webkit-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; -webkit-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; } .special { background: #3f484d; position: relative; margin-top: -32px; padding-top: 32px; } .special h3, .special ul li { color: white } .special .featured-icon { background: transparent url(../images/featured-triangle.png) no-repeat; width: 175px; height: 175px; display: none; position: absolute; top: -5px; left: -7px; } .special .inversed_pricing { padding: 2em 0; margin-bottom: 2em; background: #282e31; border: 1px solid #4a555b; } .special ul li { border-bottom: 1px solid #4a555b } .special .cta-area { background: #282e31; border-top: 1px solid #4a555b; } .best-value .featured-icon { background-position: 0 -152px; display: block; } .most-popular .featured-icon { /* background-position: -4px -137px;*/ display: block; } .featured .featured-icon { background-position: -138px -152px; display: block; } .pricing { background: #f8f9fa; border: solid #d8e0e4; border-width: 1px 0; padding: 2em 0; margin-bottom: 2em; } .pricing p { margin-bottom: 0; color: #016cb4; letter-spacing: -1px; font-size: 5em; line-height: 1em; } .pricing span { font-size: 18px; letter-spacing: 0px; color: #016cb4; display: block; }.inversed_pricing p { margin-bottom: 0; color: #50b0fd; letter-spacing: -1px; font-size: 5em; line-height: 1em; } .inversed_pricing span { font-size: 18px; letter-spacing: 0px; color: #50b0fd; display: block; } /* ---------- BUTTONS ---------- */ .button { display: inline-block; color: white; font-family: Helvetica; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; padding: 1em 2.5em .75em 1.5em; background-color: #89aa38; background-image: -webkit-gradient(linear, left top, left bottom, from(#89aa38), to(#6a842b)); background-image: -webkit-linear-gradient(top, #89aa38, #6a842b); background-image: -moz-linear-gradient(top, #89aa38, #6a842b); background-image: -o-linear-gradient(top, #89aa38, #6a842b); background-image: linear-gradient(to bottom, #89aa38, #6a842b); text-decoration: none; text-transform: uppercase; text-shadow: 1px 1px 2px #4b5d1f; position: relative; -webkit-box-shadow: inset 0 1px 1px #c1d889; box-shadow: inset 0 1px 1px #c1d889; overflow: visible; border: 1px solid #83a235; border-bottom: 1px solid #5b7025; } .button:hover { background-color: #8fb23b; background-image: -webkit-gradient(linear, left top, left bottom, from(#8fb23b), to(#7a9732)); background-image: -webkit-linear-gradient(top, #8fb23b, #7a9732); background-image: -moz-linear-gradient(top, #8fb23b, #7a9732); background-image: -o-linear-gradient(top, #8fb23b, #7a9732); background-image: linear-gradient(to bottom, #8fb23b, #7a9732); } .button:active { background-color: #7a9732; background-image: -webkit-gradient(linear, left top, left bottom, from(#7a9732), to(#8fb23b)); background-image: -webkit-linear-gradient(top, #7a9732, #8fb23b); background-image: -moz-linear-gradient(top, #7a9732, #8fb23b); background-image: -o-linear-gradient(top, #7a9732, #8fb23b); background-image: linear-gradient(to bottom, #7a9732, #8fb23b); } .button i { position: absolute; display: block; width: 16px; height: 16px; background: transparent url('../images/sprites.png') no-repeat 0 0; margin-top: -8px; top: 50%; right: 1em; } .big-button { display: inline-block; color: white; font-family: Helvetica; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; padding: 1em 2.5em .75em 1.5em; background-color: #89aa38; background-image: -webkit-gradient(linear, left top, left bottom, from(#89aa38), to(#6a842b)); background-image: -webkit-linear-gradient(top, #89aa38, #6a842b); background-image: -moz-linear-gradient(top, #89aa38, #6a842b); background-image: -o-linear-gradient(top, #89aa38, #6a842b); background-image: linear-gradient(to bottom, #89aa38, #6a842b); text-decoration: none; text-transform: uppercase; text-shadow: 1px 1px 2px #4b5d1f; position: relative; -webkit-box-shadow: inset 0 1px 1px #c1d889; box-shadow: inset 0 1px 1px #c1d889; overflow: visible; border: 1px solid #83a235; border-bottom: 1px solid #5b7025; font-size: 1.4em; padding: 1em 2.5em .85em 1.5em; } .big-button:hover { background-color: #8fb23b; background-image: -webkit-gradient(linear, left top, left bottom, from(#8fb23b), to(#7a9732)); background-image: -webkit-linear-gradient(top, #8fb23b, #7a9732); background-image: -moz-linear-gradient(top, #8fb23b, #7a9732); background-image: -o-linear-gradient(top, #8fb23b, #7a9732); background-image: linear-gradient(to bottom, #8fb23b, #7a9732); } .big-button:active { background-color: #7a9732; background-image: -webkit-gradient(linear, left top, left bottom, from(#7a9732), to(#8fb23b)); background-image: -webkit-linear-gradient(top, #7a9732, #8fb23b); background-image: -moz-linear-gradient(top, #7a9732, #8fb23b); background-image: -o-linear-gradient(top, #7a9732, #8fb23b); background-image: linear-gradient(to bottom, #7a9732, #8fb23b); } .big-button i { position: absolute; display: block; width: 16px; height: 16px; background: transparent url('../images/sprites.png') no-repeat 0 0; margin-top: -8px; top: 50%; right: 1em; } .neutral-button { display: inline-block; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; padding: 1em 1.5em; text-decoration: none; position: relative; color: #3f484d; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; } .neutral-button:hover { background: #dae0e5; text-decoration: none } /*.neutral-button i { position: absolute; display: block; width: 16px; height: 16px; background: transparent url('../images/sprites.png') no-repeat 0 0; margin-top: -8px; top: 50%; }*/ /* ---------- BUTTON COLORS ---------- */ .green { background-color: #89aa38; background-image: -webkit-gradient(linear, left top, left bottom, from(#89aa38), to(#6a842b)); background-image: -webkit-linear-gradient(top, #89aa38, #6a842b); background-image: -moz-linear-gradient(top, #89aa38, #6a842b); background-image: -o-linear-gradient(top, #89aa38, #6a842b); background-image: linear-gradient(to bottom, #89aa38, #6a842b); text-shadow: 1px 1px 2px #4b5d1f; color: white; -webkit-box-shadow: inset 0 1px 1px #c1d889; box-shadow: inset 0 1px 1px #c1d889; border: 1px solid #83a235; border-bottom: 1px solid #5b7025; } .green:hover { background-color: #8fb23b; background-image: -webkit-gradient(linear, left top, left bottom, from(#8fb23b), to(#7a9732)); background-image: -webkit-linear-gradient(top, #8fb23b, #7a9732); background-image: -moz-linear-gradient(top, #8fb23b, #7a9732); background-image: -o-linear-gradient(top, #8fb23b, #7a9732); background-image: linear-gradient(to bottom, #8fb23b, #7a9732); } .green:active { background-color: #7a9732; background-image: -webkit-gradient(linear, left top, left bottom, from(#7a9732), to(#8fb23b)); background-image: -webkit-linear-gradient(top, #7a9732, #8fb23b); background-image: -moz-linear-gradient(top, #7a9732, #8fb23b); background-image: -o-linear-gradient(top, #7a9732, #8fb23b); background-image: linear-gradient(to bottom, #7a9732, #8fb23b); } .blue { background-color: #145ea0; background-image: -webkit-gradient(linear, left top, left bottom, from(#145ea0), to(#0e4373)); background-image: -webkit-linear-gradient(top, #145ea0, #0e4373); background-image: -moz-linear-gradient(top, #145ea0, #0e4373); background-image: -o-linear-gradient(top, #145ea0, #0e4373); background-image: linear-gradient(to bottom, #145ea0, #0e4373); text-shadow: 1px 1px 2px #092945; color: white; -webkit-box-shadow: inset 0 1px 1px #4b9ee8; box-shadow: inset 0 1px 1px #4b9ee8; border: 1px solid #135997; border-bottom: 1px solid #0b365c; } .blue:hover { background-color: #1563a9; background-image: -webkit-gradient(linear, left top, left bottom, from(#1563a9), to(#115189)); background-image: -webkit-linear-gradient(top, #1563a9, #115189); background-image: -moz-linear-gradient(top, #1563a9, #115189); background-image: -o-linear-gradient(top, #1563a9, #115189); background-image: linear-gradient(to bottom, #1563a9, #115189); } .blue:active { background-color: #115189; background-image: -webkit-gradient(linear, left top, left bottom, from(#115189), to(#1563a9)); background-image: -webkit-linear-gradient(top, #115189, #1563a9); background-image: -moz-linear-gradient(top, #115189, #1563a9); background-image: -o-linear-gradient(top, #115189, #1563a9); background-image: linear-gradient(to bottom, #115189, #1563a9); } .orange { background-color: #ff8400; background-image: -webkit-gradient(linear, left top, left bottom, from(#ff8400), to(#cc6a00)); background-image: -webkit-linear-gradient(top, #ff8400, #cc6a00); background-image: -moz-linear-gradient(top, #ff8400, #cc6a00); background-image: -o-linear-gradient(top, #ff8400, #cc6a00); background-image: linear-gradient(to bottom, #ff8400, #cc6a00); text-shadow: 1px 1px 2px #994f00; color: white; -webkit-box-shadow: inset 0 1px 1px #ffc280; box-shadow: inset 0 1px 1px #ffc280; border: 1px solid #f57f00; border-bottom: 1px solid #b35c00; } .orange:hover { background-color: #ff890a; background-image: -webkit-gradient(linear, left top, left bottom, from(#ff890a), to(#e67700)); background-image: -webkit-linear-gradient(top, #ff890a, #e67700); background-image: -moz-linear-gradient(top, #ff890a, #e67700); background-image: -o-linear-gradient(top, #ff890a, #e67700); background-image: linear-gradient(to bottom, #ff890a, #e67700); } .orange:active { background-color: #e67700; background-image: -webkit-gradient(linear, left top, left bottom, from(#e67700), to(#ff890a)); background-image: -webkit-linear-gradient(top, #e67700, #ff890a); background-image: -moz-linear-gradient(top, #e67700, #ff890a); background-image: -o-linear-gradient(top, #e67700, #ff890a); background-image: linear-gradient(to bottom, #e67700, #ff890a); } /* ---------- ICONS ---------- i.icon-chevron-right { background-position: 0 -234px } .big-button i.icon-chevron-right { background-position: 0 -253px } i.icon-arrow-left { background-position: -32px -234px } i.icon-arrow-right { background-position: -16px -234px } li i.icon-ok { background-position: 0 -271px } */ /* ---------- TESTIMONIALS ---------- */ .slider-wrapper { padding: 0 3em; text-align: center; } .slider-wrapper .slider { position: relative; display: block; min-height: 120px; } .slider-wrapper .slider li { width: 100%; list-style-type: none; font-size: 1.3em; line-height: 1.5em; font-style: italic; position: absolute; } .slider-wrapper .slider li .author { font-style: normal } .slider-controls { list-style-type: none; text-align: center; } .slider-controls li { display: inline-block; margin: 0 0.2em; } .slider-controls li a { display: block; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; background-color: #ffffff; background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f9fa)); background-image: -webkit-linear-gradient(top, #ffffff, #f8f9fa); background-image: -moz-linear-gradient(top, #ffffff, #f8f9fa); background-image: -o-linear-gradient(top, #ffffff, #f8f9fa); background-image: linear-gradient(to bottom, #ffffff, #f8f9fa); padding: 0.2em 0.5em; text-align: center; color: #3f484d; } .slider-controls li a:hover { border: 1px solid #bac8cf } .slider-controls li a:hover { background: #f8f9fa } .slider-controls li a.controls-active { background: #3f484d; color: white; border-color: transparent; } /* ---------- GET IN TOUCH ---------- */ ul.footer-information { list-style-type: none } ul.footer-information .phone-info, ul.footer-information .email-info { background: transparent url('../images/sprites.png') no-repeat left top; min-height: 42px; margin-bottom: 2em; } ul.footer-information .phone-info p, ul.footer-information .email-info p { margin: 0 0 0 3.8em } ul.footer-information .phone-info { background-position: 0 0 } ul.footer-information .email-info { background-position: 0 -43px } .social-links { list-style-type: none; margin-bottom: 0; } .social-links li { float: left; padding-right: 0.5em; } .social-links li a { font: 0/0 a; text-shadow: none; color: transparent; background: transparent url('../images/sprites.png') no-repeat; width: 32px; height: 32px; display: block; } .social-links li a.twitter { background-position: 0 -86px } .social-links li a.facebook { background-position: -33px -86px } .social-links li a.googleplus { background-position: -66px -86px } .social-links li a.linkedin { background-position: -99px -86px } .social-links li a.skype { background-position: -132px -86px } .social-links li a.youtube { background-position: -165px -86px } .social-links li a.twitter:hover { background-position: 0 -119px } .social-links li a.facebook:hover { background-position: -33px -119px } .social-links li a.googleplus:hover { background-position: -66px -119px } .social-links li a.linkedin:hover { background-position: -99px -119px } .social-links li a.skype:hover { background-position: -132px -119px } .social-links li a.youtube:hover { background-position: -165px -119px } /* ---------- FORMS ---------- */ form label { display: block; color: #3f484d; font-weight: bold; margin-bottom: .5em; } form p { margin-bottom: 1em } form p em { margin-top: 2em; font-style: italic; display: block; } form .required { color: #016cb4; font-size: 1em; } form input[type="text"], form input[type="email"], form input[type="url"], form textarea { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; outline: none; padding: 1em; font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; font-size: 1em; width: 60%; } form input[type="text"]:hover, form input[type="email"]:hover, form input[type="url"]:hover, form textarea:hover { border: 1px solid #bac8cf } form input[type="text"]:focus, form input[type="email"]:focus, form input[type="url"]:focus, form textarea:focus { border: 1px solid #bac8cf } form textarea { width: 80% } .alert ul { margin-top: 1em; list-style-type: none; } .loader { margin-left: .5em } #verify { width: 7em } /* ---------- CTA ---------- */ .cta-section { background: #282e31; margin: 1.5em 0; text-align: center; padding: 2em 0; } .cta-section p { margin: 1em 0 0 0; font-size: 1em; } .cta-section p a { color: white } .cta-section p a:hover { color: #89aa38 } /* ---------- FOOTER ---------- */ .footer-list { list-style-type: none; margin-bottom: 0; } .footer-list li { border-bottom: 1px solid #e7ecee; padding-bottom: 0.75em; margin: 0 0 0.75em 0; } .footer-style h3 { margin-bottom: 1em } .copyright-container { border-top: 1px solid #282e31; background: #3f484d url('../images/fabric-bg.png'); margin-top: 4em; padding: 1.5em 0; text-align: center; } .copyright-container p { margin-bottom: 0; color: white; } .copyright-container p a { color: white } .copyright-container p a:hover { color: #89aa38 } .copyright-container .link-go-top { margin-top: 1em } .topinfo { color: white; text-align: justify; } .topinfo h2 { margin-bottom: 0.5em; color: white; } .ctaul { list-style: none; margin-left: 20px; } .navbuttonsContainer { padding: 0.7em; } .navbuttonsContainer a { margin-bottom: 0.5em; margin-right: 0.2em; width: 110px; } .btn-huge { width: 170px; } .addedvalue ul { list-style-type: none; margin-left: 1.5em; } .logoContainer { margin: 1em 0; } .spy-hook { font-size: 3.15em; line-height: 1em; } .checkbx { margin: 4px 5px!important; } .footerul { list-style: none; display: inline-block; margin: 0; } .footerul li { display: inline-block; border-right: 1px solid #d8e0e4; margin-right: 1.2em; padding-right: 1.2em; } .footerul li a, span { color: white; text-decoration: none; } .footerul li a:hover { color: #ccc; text-decoration: none; } .bottom_margin { margin-bottom: 35px; } .contynav { padding: 1em 2em!important; } .contynav li { display: inline; margin-right: 1.2em; padding-right: 1.2em; border-right: 1px solid #d8e0e4; } .contynav li a { color: #026bb9!important; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; padding: 0!important; } .custnav { -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; border-radius: 5px; padding-left: 0!important; } .contbut { width: 55%!important; margin-top: 15px; font-size: 25px; padding: 15px } .conth { font-size: 2.5em; color: #016cb4; padding-bottom: 0.35em; margin-bottom: 0!important; border-bottom: solid 1px; } .small-ul { font-size: 12px; text-align: center; border-top: solid 1px #e7ecee; padding: 10px; } .small-ul-inverted { font-size: 12px; text-align: center; border-top: solid 1px #4a555b; padding: 10px; } .small-ul li, .small-ul-inverted li { border-bottom: 0px!important; } sup { top: -0.25em; } .small-advice { font-size: 18px; letter-spacing: 0px; color: #016cb4; display: block; } .modal_legal { margin-top: 15px; text-align: justify; } .modal-list-let { margin-left: 50px; list-style-type:lower-alpha; } .modal-list-num { margin-left: 50px; } .formedSelectors { width: 60%; } .no-link:hover { cursor: pointer; } .scrollable-container-msg { margin-top: 15px; max-height: 335px; overflow: auto; border-radius: 5px; } .topamsg { width: 100%; position: absolute; box-shadow: 2px 2px 10px #ccc; border-radius: 0px; display: none; } .topamsg p { margin: 0; text-align: center; } .nomargin { margin: 0; } .nomargin img { vertical-align: bottom; } .window { cursor: pointer; } .holder { height: 115px; perspective: 181; -webkit-perspective: 181; } .perspective { padding: 68px; background-color: rgb(94, 94, 94); transform: rotateX(69deg); -webkit-transform: rotateX(69deg); margin-left: 18%; } .holder_bottom { height: 119px; perspective: 146; -webkit-perspective: 146; margin-top: -53px; margin-left: 0; } .perspective_bottom { padding: 31px; background-color: rgb(94, 94, 94); transform: rotateX(9deg); -webkit-transform: rotateX(9deg); margin-left: 1%; width: 98%; } .skyline { background-image: url('../images/skyline.jpg')!important; padding: 0!important; border: 0; } .fixedcuzlolers input[type="password"], .fixedDate { border: 1px solid #bac8cf; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; outline: none; padding: 1em!important; font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; font-size: 1em; width: 60%; } .cartel { position: absolute; color: rgb(12, 12, 12); font-weight: bold; margin-top: 25px; margin-left: 30px; background: lightpink; padding: 2px 10px; border-radius: 5px; } /* ---------- RESPONSIVE ---------- */ /* Smaller than 1200 (devices and browsers) */ @media only screen and (max-width: 1199px) { } @media only screen and (max-width: 959px) { } /* Tablet Portrait size to standard 960 (devices and browsers) */ @media only screen and (min-width: 768px) and (max-width: 959px) { .header-cta .big-button { font-size: 1em } .social-links li { margin-bottom: .5em } .top-cta { display: none } } /* All Mobile Sizes (devices and browser) */ @media only screen and (max-width: 767px) { .holder { height: 15px; } .perspective { display: none; } .holder_bottom { display: none; } .perspective_bottom { padding: 31px; display: none; } .logo a { background: transparent url('../images/logo.png') no-repeat center center; width: 100%; display: block; } .header-information { display: none } .header-contents { margin: 0 3em; text-align: center; } .header-benefits li { padding-left: 0 } .header-benefits li i { display: none } .product-header-pricing, .product-header-signup { float: none; margin: 2em auto 0 auto; max-width: 350px; } .floating-nav { margin: 0 3em 3em 3em } .floating-nav ul { list-style-type: none; margin-bottom: 0; padding: 1em 2em; float: left; } .floating-nav ul li { display: inline; margin-right: 1.2em; padding-right: 1.2em; border-right: 1px solid #d8e0e4; } .floating-nav ul li.active a { font-weight: bold; color: #3f484d; } .floating-nav .nav-cta-button { display: none; float: right; margin: 5px 2em 0 0; padding: .75em 2.5em .5em 1.5em; } .floating-nav { padding: 1em 2em } .floating-nav ul { display: none } .responsive-nav { display: inline-block; width: 100%; } section.container, footer.container { padding: 0 3em } .tour-navigation { margin-bottom: 3em } .pricing-table-column { margin-bottom: 2em } .pricing-table-column.special { margin-top: 2em } .slider-wrapper .slider { min-height: 150px } .footer-information { border-top: 1px solid #d8e0e4; padding-top: 2em; margin-top: 2em; } .footer-list { margin-bottom: 2em } .copyright-container { text-align: center } .pricing-table-column { float: left; margin-right: 2%; width: 46%; } .pricing-table-column.special { margin-top: 0; padding-top: 0; } .slider-wrapper { padding: 0 } .slider-wrapper .slider li { font-size: 1.1em } .top-cta { display: none } .video-wrapper { margin: 2em 3em 0 3em } .screenshot-cta { text-align: center } .screenshot-cta a.big-button, .screenshot-cta a.button { float: none; margin-right: 0; } .screenshot-cta p { margin: 1em 0 0 0; float: none; } .screenshot-container { margin: 2em 3em 0 3em } .screenshot-container .space-left { padding-left: 0 } [class*="span"]{ margin-left: 1em; } } /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */ @media only screen and (min-width: 480px) and (max-width: 767px) { } /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */ @media only screen and (max-width: 479px) { .figure-right, .figure-left { float: none; width: 100%; text-align: center; margin-left: 0; margin-right: 0; } .figure-right img, .figure-left img { display: block; margin: 0 auto; max-width: 248px; } .pricing-table-column { float: none; margin-right: 0; width: 100%; } .slider-wrapper { padding: 0 } .slider-wrapper .slider li { font-size: 1.1em } .tabbable .nav-tabs { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; margin-bottom: 2em; padding: 1em; } .tabbable .nav-tabs:hover { border: 1px solid #bac8cf } .tabbable .nav-tabs li { margin-bottom: 0; float: none; } .tabbable .nav-tabs li a { display: block; border: none; padding: 1em; } .tabbable .nav-tabs li a:hover { border: none; margin: 0; } .tabbable .nav-tabs li.active a { font-weight: bold } .tour-nav-container a { float: none; display: block; } .tour-navigation { display: none } form input[type="email"], form input[type="text"], form input[type="url"], form textarea { width: 100% } .navbuttonsContainer a { margin-bottom: 0.5em; } } @media (max-width: 975px){ .slider-controls { margin-top: 45px; } } @media (max-width: 760px){ .slider-controls { margin-top: 0px; } } @media (max-width: 460px){ .slider-controls { margin-top: 45px; } } @media (max-width: 395px){ .slider-controls { margin-top: 45%; } } @media (max-width: 320px){ .slider-controls { margin-top: 130px; } } @media (max-width: 290px){ .slider-controls { margin-top: 190px; } } @media (max-width: 270px){ .slider-controls { margin-top: 315px; } }
web/bundles/landingfront/css/styles.css
v2.0 | 20110126 License: none (public domain) */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block } body { line-height: 100% } strong { font-weight: bold } blockquote, q { quotes: none } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } p a, p a:hover { text-decoration: none; border-bottom: 1px dotted; } li a, li a:hover { text-decoration: none } .ir { font: 0/0 a; text-shadow: none; color: transparent; } .fr { float: right } .fl { float: left } .cb { clear: both } /* VARIABLES */ /* COLORS */ /* PARAMETRIC MIXINS */ /* ---------- GENERAL ---------- */ body { font: 0.875em/1.5em "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; color: #7a8992; } body .nav-replacement { display: none; height: 50px; background: white; } body.fixed-nav { margin-top: 30px } body.fixed-nav .nav-replacement { display: block; height: 50px; background: white; } p a, li a { color: #026bb9; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; } p a:hover, li a:hover { color: #3f484d } p, ul, ol, h1, h2, h3, h4, h5, h6 { margin-bottom: 1em } h1 { font-size: 2em; } h2 { font-size: 1.75em; color: #016cb4; } h2 span { font-size: 0.75em; color: #7a8992; } h3 { font-size: 1.3em; color: #3f484d; } h4 { font-size: 1em; color: #3f484d; } h5, h6 { font-size: .75em } .smooth-borders { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; } .smooth-borders:hover { border: 1px solid #bac8cf } .simple-borders { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; } .hr-dots { border: none; height: 1px; border-top: 1px solid #d8e0e4; margin: 4em 0; position: relative; text-align: center; } .hr-dots::before { content: ''; width: 33px; height: 13px; background: transparent url('../images/sprites.png') no-repeat 0 -263px; position: absolute; top: -7px; } .hr-simple { border: none; height: 1px; border-top: 1px solid #d8e0e4; margin: 2em 0; } .figure-right, .figure-left { padding: 2px; border: 1px solid #d8e0e4; text-align: center; } .figure-right img, .figure-left img { display: block } .figure-right figcaption, .figure-left figcaption { font-style: italic; font-size: 0.75em; text-align: center; padding: 0.5em 1em; white-space: normal; } .figure-right { float: right; margin: 0 0 1em 3em; } .figure-left { float: left; margin: 0 3em 1em 0; } .basic-list { margin-left: 2em } .align-left { float: left; margin: 0 2em 0 0; } .align-right { float: right; margin: 0 0 0 2em; } /* ---------- BOOTSTRAP RE-STYLE ---------- */ .alert { display: inline-block } .alert p { margin-bottom: 1em } .tab-content { overflow: hidden } /* ---------- HEADER ---------- */ .logo { margin-bottom: 0; height: 128px; } .logo a { background: transparent url('../../../../../migestion/web/bundles/landingfront/images/logo.png') no-repeat left center; height: 128px; width: 250px; display: block; } .header-information { list-style-type: none; float: right; margin-top: 3em; } .header-information .phone-info, .header-information .email-info, .header-information .login-action { background: transparent url('../images/sprites.png') no-repeat; min-height: 42px; float: left; margin-left: 2em; } .header-information .phone-info p, .header-information .email-info p, .login-action p { margin: 0 0 0 3.8em } .header-information .phone-info { background-position: 0 -1px } .header-information .email-info { background-position: 0 -44px } .header-information .login-action { background-position: 0 -87px } .top-cta { margin: 2.6em 0 0 2em } /* ---------- RESPONSIVE VIDEO EMBEDS ---------- */ .video-wrapper { border: 1px solid #3d454a; background: #111415; padding: .5em; } .video-container { border: 1px solid #111415; padding-bottom: 56.25%; /* 16/9 ratio */ height: 0; overflow: hidden; position: relative; } .video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* ---------- BANNER ---------- */ .banner-container { background: #1e1f24 url('../images/fabric-bg.png'); margin-bottom: 3em; padding: 3em 0; border: solid #111415; border-width: 3px 0; } .banner-container h1 { color: white; line-height: 1.2em; margin-bottom: 1em; margin-top: 0.5em; } .banner-container h3 { color: #88969d; line-height: 1.5em; } .product-header-pricing { background: white; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; float: right; padding: 2em 3em; -webkit-box-shadow: 0 0 10px #282e31; box-shadow: 0 0 10px #282e31; text-align: center; } .product-header-pricing .header-pricing { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; background: #f8f9fa; padding: 1em; } .product-header-pricing .header-pricing:hover { border: 1px solid #bac8cf } .product-header-pricing .header-pricing p { margin-bottom: 0; color: #89aa38; letter-spacing: -1px; font-size: 5em; line-height: 1em; } .product-header-pricing .header-pricing span { font-size: 18px; letter-spacing: 0px; color: #89aa38; display: block; } .product-header-pricing .header-pricing h3 { color: #3f484d; margin-bottom: 0; } .product-header-pricing .header-cta { margin-top: 2em } .product-header-pricing .header-cta p { margin: 1em 0 0 0 } .product-header-pricing .header-cta .big-button { line-height: 1.2em } .product-header-signup { background: white; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; float: right; padding: 2em 0; width: 100%; -webkit-box-shadow: 0 0 10px #282e31; box-shadow: 0 0 10px #282e31; } .product-header-signup form { background: #f8f9fa; padding: 2em 2em 1em 2em; border: 1px solid #d8e0e4; border-width: 1px 0; } .product-header-signup h2 { margin: 0 28px 1em 28px } .product-header-signup .header-cta { margin: 2em 2em 0 2em; text-align: center; } .product-header-signup .header-cta p { margin: 1em 0 0 0 } .product-header-signup input[type="text"], .product-header-signup input[type="email"] { width: 100% } .header-benefits { list-style-type: none; margin-bottom: 0; } .header-benefits li { padding: 0 0 0 2em; margin-bottom: 0.75em; color: #89aa38; position: relative; } .header-benefits li:last-child { padding-bottom: 0 } .header-benefits li i { position: absolute; display: block; width: 16px; height: 16px; background: transparent url('../images/sprites.png') no-repeat; margin-top: -8px; top: 50%; left: 0; } .header-figure img { width: 100%; display: block; } .space-right { padding-right: 1em } .space-left { padding-left: 1em } .screenshot-cta { margin-top: 4em } .screenshot-cta a { margin-bottom: 0.5em; margin-right: 0.5em; font-size: 25px; padding: 25px; width: 185px; } .feature-list h2 { margin-bottom: 10px; font-size: 21px; } .screenshot-cta a.big-button, .screenshot-cta a.button { float: left; margin-right: .5em; } .screenshot-cta p { margin: 1.5em 0 0 0; float: left; } .screenshot-cta p a { color: white } .screenshot-cta p a:hover { color: #89aa38 } .screenshot-shadow { -webkit-box-shadow: 0 0 10px #282e31; box-shadow: 0 0 10px #282e31; } /* ---------- NAV ---------- */ .floating-nav { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; background-color: #ffffff; background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f9fa)); background-image: -webkit-linear-gradient(top, #ffffff, #f8f9fa); background-image: -moz-linear-gradient(top, #ffffff, #f8f9fa); background-image: -o-linear-gradient(top, #ffffff, #f8f9fa); background-image: linear-gradient(to bottom, #ffffff, #f8f9fa); margin-bottom: 3em; } .floating-nav:hover { border: 1px solid #bac8cf } .floating-nav ul { list-style-type: none; margin-bottom: 0; padding: 1em 2em; float: left; } .floating-nav ul li { display: inline; margin-right: 1.2em; padding-right: 1.2em; border-right: 1px solid #d8e0e4; } .floating-nav ul li.active a { font-weight: bold; color: #3f484d; } .floating-nav .nav-cta-button { display: none; float: right; margin: 5px 2em 0 0; padding: .75em 2.5em .5em 1.5em; } .floating-nav.fixed { position: fixed; top: 0; z-index: 9999; margin: 0; width: 100%; -webkit-border-radius: 0; border-radius: 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -webkit-box-shadow: 0 1px 30px #3d454a; box-shadow: 0 1px 30px #3d454a; } .floating-nav.fixed ul { padding: 1em } .floating-nav.fixed .nav-cta-button { display: block; margin-right: 1em; } .responsive-nav { display: none } /* ---------- FEATURES ---------- */ .feature-list figure { float: left } .feature-list h3 { margin: 0 0 0.5em 90px } .feature-list p { margin-left: 90px } /* ---------- PRODUCT TOUR ---------- */ .tour-navigation { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; } .tour-navigation ul { list-style-type: none; margin-bottom: 0; } .tour-navigation ul li { border-bottom: 1px solid #e7ecee; padding: .25em; } .tour-navigation ul li a { padding: .75em 1.5em; display: block; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .tour-navigation ul li a:hover { background: #f8f9fa } .tour-navigation ul li:last-child { margin-bottom: 0; border-bottom: 0; } .tour-navigation ul li.active a { background: #3f484d; color: white; } .tour-nav-container { background: #f8f9fa; padding: 5px; border: 1px solid #d8e0e4; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; clear: both; margin-bottom: 2em; } /* ---------- TABS ---------- */ .custom-tabs .nav-tabs { margin-bottom: 0; border: none; } .custom-tabs .tab-content { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-border-radius: 0 5px 5px 5px; border-radius: 0 5px 5px 5px; padding: 1.5em; } .nav-tabs > li > a { padding: 1.5em; border: 1px solid transparent; -webkit-border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0; } .nav-tabs > li > a:hover { background: #f8f9fa; border-color: #d8e0e4; } /* ---------- PRICING TABLE ---------- */ .pricing-table-column { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; text-align: center; min-width: 235px; } .pricing-table-column:hover { border: 1px solid #bac8cf } .pricing-table-column ul { list-style-type: none } .pricing-table-column ul li { border-bottom: 1px solid #e7ecee; padding-bottom: 0.15em; margin: 0 2em 0.75em 1em; color: #3f484d; } .pricing-table-column ul li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; } .pricing-table-column h3 { margin: 0; padding: 1em 0; font-size: 1.3em; } .pricing-table-column .cta-area { background: #f8f9fa; padding: 2em 0; border-top: 1px solid #d8e0e4; -webkit-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; -webkit-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; } .special { background: #3f484d; position: relative; margin-top: -32px; padding-top: 32px; } .special h3, .special ul li { color: white } .special .featured-icon { background: transparent url(../images/featured-triangle.png) no-repeat; width: 175px; height: 175px; display: none; position: absolute; top: -5px; left: -7px; } .special .inversed_pricing { padding: 2em 0; margin-bottom: 2em; background: #282e31; border: 1px solid #4a555b; } .special ul li { border-bottom: 1px solid #4a555b } .special .cta-area { background: #282e31; border-top: 1px solid #4a555b; } .best-value .featured-icon { background-position: 0 -152px; display: block; } .most-popular .featured-icon { /* background-position: -4px -137px;*/ display: block; } .featured .featured-icon { background-position: -138px -152px; display: block; } .pricing { background: #f8f9fa; border: solid #d8e0e4; border-width: 1px 0; padding: 2em 0; margin-bottom: 2em; } .pricing p { margin-bottom: 0; color: #016cb4; letter-spacing: -1px; font-size: 5em; line-height: 1em; } .pricing span { font-size: 18px; letter-spacing: 0px; color: #016cb4; display: block; }.inversed_pricing p { margin-bottom: 0; color: #50b0fd; letter-spacing: -1px; font-size: 5em; line-height: 1em; } .inversed_pricing span { font-size: 18px; letter-spacing: 0px; color: #50b0fd; display: block; } /* ---------- BUTTONS ---------- */ .button { display: inline-block; color: white; font-family: Helvetica; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; padding: 1em 2.5em .75em 1.5em; background-color: #89aa38; background-image: -webkit-gradient(linear, left top, left bottom, from(#89aa38), to(#6a842b)); background-image: -webkit-linear-gradient(top, #89aa38, #6a842b); background-image: -moz-linear-gradient(top, #89aa38, #6a842b); background-image: -o-linear-gradient(top, #89aa38, #6a842b); background-image: linear-gradient(to bottom, #89aa38, #6a842b); text-decoration: none; text-transform: uppercase; text-shadow: 1px 1px 2px #4b5d1f; position: relative; -webkit-box-shadow: inset 0 1px 1px #c1d889; box-shadow: inset 0 1px 1px #c1d889; overflow: visible; border: 1px solid #83a235; border-bottom: 1px solid #5b7025; } .button:hover { background-color: #8fb23b; background-image: -webkit-gradient(linear, left top, left bottom, from(#8fb23b), to(#7a9732)); background-image: -webkit-linear-gradient(top, #8fb23b, #7a9732); background-image: -moz-linear-gradient(top, #8fb23b, #7a9732); background-image: -o-linear-gradient(top, #8fb23b, #7a9732); background-image: linear-gradient(to bottom, #8fb23b, #7a9732); } .button:active { background-color: #7a9732; background-image: -webkit-gradient(linear, left top, left bottom, from(#7a9732), to(#8fb23b)); background-image: -webkit-linear-gradient(top, #7a9732, #8fb23b); background-image: -moz-linear-gradient(top, #7a9732, #8fb23b); background-image: -o-linear-gradient(top, #7a9732, #8fb23b); background-image: linear-gradient(to bottom, #7a9732, #8fb23b); } .button i { position: absolute; display: block; width: 16px; height: 16px; background: transparent url('../images/sprites.png') no-repeat 0 0; margin-top: -8px; top: 50%; right: 1em; } .big-button { display: inline-block; color: white; font-family: Helvetica; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; padding: 1em 2.5em .75em 1.5em; background-color: #89aa38; background-image: -webkit-gradient(linear, left top, left bottom, from(#89aa38), to(#6a842b)); background-image: -webkit-linear-gradient(top, #89aa38, #6a842b); background-image: -moz-linear-gradient(top, #89aa38, #6a842b); background-image: -o-linear-gradient(top, #89aa38, #6a842b); background-image: linear-gradient(to bottom, #89aa38, #6a842b); text-decoration: none; text-transform: uppercase; text-shadow: 1px 1px 2px #4b5d1f; position: relative; -webkit-box-shadow: inset 0 1px 1px #c1d889; box-shadow: inset 0 1px 1px #c1d889; overflow: visible; border: 1px solid #83a235; border-bottom: 1px solid #5b7025; font-size: 1.4em; padding: 1em 2.5em .85em 1.5em; } .big-button:hover { background-color: #8fb23b; background-image: -webkit-gradient(linear, left top, left bottom, from(#8fb23b), to(#7a9732)); background-image: -webkit-linear-gradient(top, #8fb23b, #7a9732); background-image: -moz-linear-gradient(top, #8fb23b, #7a9732); background-image: -o-linear-gradient(top, #8fb23b, #7a9732); background-image: linear-gradient(to bottom, #8fb23b, #7a9732); } .big-button:active { background-color: #7a9732; background-image: -webkit-gradient(linear, left top, left bottom, from(#7a9732), to(#8fb23b)); background-image: -webkit-linear-gradient(top, #7a9732, #8fb23b); background-image: -moz-linear-gradient(top, #7a9732, #8fb23b); background-image: -o-linear-gradient(top, #7a9732, #8fb23b); background-image: linear-gradient(to bottom, #7a9732, #8fb23b); } .big-button i { position: absolute; display: block; width: 16px; height: 16px; background: transparent url('../images/sprites.png') no-repeat 0 0; margin-top: -8px; top: 50%; right: 1em; } .neutral-button { display: inline-block; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; padding: 1em 1.5em; text-decoration: none; position: relative; color: #3f484d; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; } .neutral-button:hover { background: #dae0e5; text-decoration: none } /*.neutral-button i { position: absolute; display: block; width: 16px; height: 16px; background: transparent url('../images/sprites.png') no-repeat 0 0; margin-top: -8px; top: 50%; }*/ /* ---------- BUTTON COLORS ---------- */ .green { background-color: #89aa38; background-image: -webkit-gradient(linear, left top, left bottom, from(#89aa38), to(#6a842b)); background-image: -webkit-linear-gradient(top, #89aa38, #6a842b); background-image: -moz-linear-gradient(top, #89aa38, #6a842b); background-image: -o-linear-gradient(top, #89aa38, #6a842b); background-image: linear-gradient(to bottom, #89aa38, #6a842b); text-shadow: 1px 1px 2px #4b5d1f; color: white; -webkit-box-shadow: inset 0 1px 1px #c1d889; box-shadow: inset 0 1px 1px #c1d889; border: 1px solid #83a235; border-bottom: 1px solid #5b7025; } .green:hover { background-color: #8fb23b; background-image: -webkit-gradient(linear, left top, left bottom, from(#8fb23b), to(#7a9732)); background-image: -webkit-linear-gradient(top, #8fb23b, #7a9732); background-image: -moz-linear-gradient(top, #8fb23b, #7a9732); background-image: -o-linear-gradient(top, #8fb23b, #7a9732); background-image: linear-gradient(to bottom, #8fb23b, #7a9732); } .green:active { background-color: #7a9732; background-image: -webkit-gradient(linear, left top, left bottom, from(#7a9732), to(#8fb23b)); background-image: -webkit-linear-gradient(top, #7a9732, #8fb23b); background-image: -moz-linear-gradient(top, #7a9732, #8fb23b); background-image: -o-linear-gradient(top, #7a9732, #8fb23b); background-image: linear-gradient(to bottom, #7a9732, #8fb23b); } .blue { background-color: #145ea0; background-image: -webkit-gradient(linear, left top, left bottom, from(#145ea0), to(#0e4373)); background-image: -webkit-linear-gradient(top, #145ea0, #0e4373); background-image: -moz-linear-gradient(top, #145ea0, #0e4373); background-image: -o-linear-gradient(top, #145ea0, #0e4373); background-image: linear-gradient(to bottom, #145ea0, #0e4373); text-shadow: 1px 1px 2px #092945; color: white; -webkit-box-shadow: inset 0 1px 1px #4b9ee8; box-shadow: inset 0 1px 1px #4b9ee8; border: 1px solid #135997; border-bottom: 1px solid #0b365c; } .blue:hover { background-color: #1563a9; background-image: -webkit-gradient(linear, left top, left bottom, from(#1563a9), to(#115189)); background-image: -webkit-linear-gradient(top, #1563a9, #115189); background-image: -moz-linear-gradient(top, #1563a9, #115189); background-image: -o-linear-gradient(top, #1563a9, #115189); background-image: linear-gradient(to bottom, #1563a9, #115189); } .blue:active { background-color: #115189; background-image: -webkit-gradient(linear, left top, left bottom, from(#115189), to(#1563a9)); background-image: -webkit-linear-gradient(top, #115189, #1563a9); background-image: -moz-linear-gradient(top, #115189, #1563a9); background-image: -o-linear-gradient(top, #115189, #1563a9); background-image: linear-gradient(to bottom, #115189, #1563a9); } .orange { background-color: #ff8400; background-image: -webkit-gradient(linear, left top, left bottom, from(#ff8400), to(#cc6a00)); background-image: -webkit-linear-gradient(top, #ff8400, #cc6a00); background-image: -moz-linear-gradient(top, #ff8400, #cc6a00); background-image: -o-linear-gradient(top, #ff8400, #cc6a00); background-image: linear-gradient(to bottom, #ff8400, #cc6a00); text-shadow: 1px 1px 2px #994f00; color: white; -webkit-box-shadow: inset 0 1px 1px #ffc280; box-shadow: inset 0 1px 1px #ffc280; border: 1px solid #f57f00; border-bottom: 1px solid #b35c00; } .orange:hover { background-color: #ff890a; background-image: -webkit-gradient(linear, left top, left bottom, from(#ff890a), to(#e67700)); background-image: -webkit-linear-gradient(top, #ff890a, #e67700); background-image: -moz-linear-gradient(top, #ff890a, #e67700); background-image: -o-linear-gradient(top, #ff890a, #e67700); background-image: linear-gradient(to bottom, #ff890a, #e67700); } .orange:active { background-color: #e67700; background-image: -webkit-gradient(linear, left top, left bottom, from(#e67700), to(#ff890a)); background-image: -webkit-linear-gradient(top, #e67700, #ff890a); background-image: -moz-linear-gradient(top, #e67700, #ff890a); background-image: -o-linear-gradient(top, #e67700, #ff890a); background-image: linear-gradient(to bottom, #e67700, #ff890a); } /* ---------- ICONS ---------- i.icon-chevron-right { background-position: 0 -234px } .big-button i.icon-chevron-right { background-position: 0 -253px } i.icon-arrow-left { background-position: -32px -234px } i.icon-arrow-right { background-position: -16px -234px } li i.icon-ok { background-position: 0 -271px } */ /* ---------- TESTIMONIALS ---------- */ .slider-wrapper { padding: 0 3em; text-align: center; } .slider-wrapper .slider { position: relative; display: block; min-height: 120px; } .slider-wrapper .slider li { width: 100%; list-style-type: none; font-size: 1.3em; line-height: 1.5em; font-style: italic; position: absolute; } .slider-wrapper .slider li .author { font-style: normal } .slider-controls { list-style-type: none; text-align: center; } .slider-controls li { display: inline-block; margin: 0 0.2em; } .slider-controls li a { display: block; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; background-color: #ffffff; background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f9fa)); background-image: -webkit-linear-gradient(top, #ffffff, #f8f9fa); background-image: -moz-linear-gradient(top, #ffffff, #f8f9fa); background-image: -o-linear-gradient(top, #ffffff, #f8f9fa); background-image: linear-gradient(to bottom, #ffffff, #f8f9fa); padding: 0.2em 0.5em; text-align: center; color: #3f484d; } .slider-controls li a:hover { border: 1px solid #bac8cf } .slider-controls li a:hover { background: #f8f9fa } .slider-controls li a.controls-active { background: #3f484d; color: white; border-color: transparent; } /* ---------- GET IN TOUCH ---------- */ ul.footer-information { list-style-type: none } ul.footer-information .phone-info, ul.footer-information .email-info { background: transparent url('../images/sprites.png') no-repeat left top; min-height: 42px; margin-bottom: 2em; } ul.footer-information .phone-info p, ul.footer-information .email-info p { margin: 0 0 0 3.8em } ul.footer-information .phone-info { background-position: 0 0 } ul.footer-information .email-info { background-position: 0 -43px } .social-links { list-style-type: none; margin-bottom: 0; } .social-links li { float: left; padding-right: 0.5em; } .social-links li a { font: 0/0 a; text-shadow: none; color: transparent; background: transparent url('../images/sprites.png') no-repeat; width: 32px; height: 32px; display: block; } .social-links li a.twitter { background-position: 0 -86px } .social-links li a.facebook { background-position: -33px -86px } .social-links li a.googleplus { background-position: -66px -86px } .social-links li a.linkedin { background-position: -99px -86px } .social-links li a.skype { background-position: -132px -86px } .social-links li a.youtube { background-position: -165px -86px } .social-links li a.twitter:hover { background-position: 0 -119px } .social-links li a.facebook:hover { background-position: -33px -119px } .social-links li a.googleplus:hover { background-position: -66px -119px } .social-links li a.linkedin:hover { background-position: -99px -119px } .social-links li a.skype:hover { background-position: -132px -119px } .social-links li a.youtube:hover { background-position: -165px -119px } /* ---------- FORMS ---------- */ form label { display: block; color: #3f484d; font-weight: bold; margin-bottom: .5em; } form p { margin-bottom: 1em } form p em { margin-top: 2em; font-style: italic; display: block; } form .required { color: #016cb4; font-size: 1em; } form input[type="text"], form input[type="email"], form input[type="url"], form textarea { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; outline: none; padding: 1em; font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; font-size: 1em; width: 60%; } form input[type="text"]:hover, form input[type="email"]:hover, form input[type="url"]:hover, form textarea:hover { border: 1px solid #bac8cf } form input[type="text"]:focus, form input[type="email"]:focus, form input[type="url"]:focus, form textarea:focus { border: 1px solid #bac8cf } form textarea { width: 80% } .alert ul { margin-top: 1em; list-style-type: none; } .loader { margin-left: .5em } #verify { width: 7em } /* ---------- CTA ---------- */ .cta-section { background: #282e31; margin: 1.5em 0; text-align: center; padding: 2em 0; } .cta-section p { margin: 1em 0 0 0; font-size: 1em; } .cta-section p a { color: white } .cta-section p a:hover { color: #89aa38 } /* ---------- FOOTER ---------- */ .footer-list { list-style-type: none; margin-bottom: 0; } .footer-list li { border-bottom: 1px solid #e7ecee; padding-bottom: 0.75em; margin: 0 0 0.75em 0; } .footer-style h3 { margin-bottom: 1em } .copyright-container { border-top: 1px solid #282e31; background: #3f484d url('../images/fabric-bg.png'); margin-top: 4em; padding: 1.5em 0; text-align: center; } .copyright-container p { margin-bottom: 0; color: white; } .copyright-container p a { color: white } .copyright-container p a:hover { color: #89aa38 } .copyright-container .link-go-top { margin-top: 1em } .topinfo { color: white; text-align: justify; } .topinfo h2 { margin-bottom: 0.5em; color: white; } .ctaul { list-style: none; margin-left: 20px; } .navbuttonsContainer { padding: 0.7em; } .navbuttonsContainer a { margin-bottom: 0.5em; margin-right: 0.2em; width: 110px; } .btn-huge { width: 170px; } .addedvalue ul { list-style-type: none; margin-left: 1.5em; } .logoContainer { margin: 1em 0; } .spy-hook { font-size: 3.15em; line-height: 1em; } .checkbx { margin: 4px 5px!important; } .footerul { list-style: none; display: inline-block; margin: 0; } .footerul li { display: inline-block; border-right: 1px solid #d8e0e4; margin-right: 1.2em; padding-right: 1.2em; } .footerul li a, span { color: white; text-decoration: none; } .footerul li a:hover { color: #ccc; text-decoration: none; } .bottom_margin { margin-bottom: 35px; } .contynav { padding: 1em 2em!important; } .contynav li { display: inline; margin-right: 1.2em; padding-right: 1.2em; border-right: 1px solid #d8e0e4; } .contynav li a { color: #026bb9!important; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; padding: 0!important; } .custnav { -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; border-radius: 5px; padding-left: 0!important; } .contbut { width: 55%!important; margin-top: 15px; font-size: 25px; padding: 15px } .conth { font-size: 2.5em; color: #016cb4; padding-bottom: 0.35em; margin-bottom: 0!important; border-bottom: solid 1px; } .small-ul { font-size: 12px; text-align: center; border-top: solid 1px #e7ecee; padding: 10px; } .small-ul-inverted { font-size: 12px; text-align: center; border-top: solid 1px #4a555b; padding: 10px; } .small-ul li, .small-ul-inverted li { border-bottom: 0px!important; } sup { top: -0.25em; } .small-advice { font-size: 18px; letter-spacing: 0px; color: #016cb4; display: block; } .modal_legal { margin-top: 15px; text-align: justify; } .modal-list-let { margin-left: 50px; list-style-type:lower-alpha; } .modal-list-num { margin-left: 50px; } .formedSelectors { width: 60%; } .no-link:hover { cursor: pointer; } .scrollable-container-msg { margin-top: 15px; max-height: 335px; overflow: auto; border-radius: 5px; } .topamsg { width: 100%; position: absolute; box-shadow: 2px 2px 10px #ccc; border-radius: 0px; display: none; } .topamsg p { margin: 0; text-align: center; } .nomargin { margin: 0; } .nomargin img { vertical-align: bottom; } .window { cursor: pointer; } .holder { height: 115px; perspective: 181; -webkit-perspective: 181; } .perspective { padding: 68px; background-color: rgb(94, 94, 94); transform: rotateX(69deg); -webkit-transform: rotateX(69deg); margin-left: 18%; } .holder_bottom { height: 119px; perspective: 146; -webkit-perspective: 146; margin-top: -53px; margin-left: 0; } .perspective_bottom { padding: 31px; background-color: rgb(94, 94, 94); transform: rotateX(9deg); -webkit-transform: rotateX(9deg); margin-left: 1%; width: 98%; } .skyline { background-image: url('../images/skyline.jpg')!important; padding: 0!important; border: 0; } .fixedcuzlolers input[type="password"], .fixedDate { border: 1px solid #bac8cf; -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; outline: none; padding: 1em!important; font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; font-size: 1em; width: 60%; } .cartel { position: absolute; color: rgb(12, 12, 12); font-weight: bold; margin-top: 25px; margin-left: 30px; background: lightpink; padding: 2px 10px; border-radius: 5px; } /* ---------- RESPONSIVE ---------- */ /* Smaller than 1200 (devices and browsers) */ @media only screen and (max-width: 1199px) { } @media only screen and (max-width: 959px) { } /* Tablet Portrait size to standard 960 (devices and browsers) */ @media only screen and (min-width: 768px) and (max-width: 959px) { .header-cta .big-button { font-size: 1em } .social-links li { margin-bottom: .5em } .top-cta { display: none } } /* All Mobile Sizes (devices and browser) */ @media only screen and (max-width: 767px) { .holder { height: 15px; } .perspective { display: none; } .holder_bottom { display: none; } .perspective_bottom { padding: 31px; display: none; } .logo a { background: transparent url('../images/logo.png') no-repeat center center; width: 100%; display: block; } .header-information { display: none } .header-contents { margin: 0 3em; text-align: center; } .header-benefits li { padding-left: 0 } .header-benefits li i { display: none } .product-header-pricing, .product-header-signup { float: none; margin: 2em auto 0 auto; max-width: 350px; } .floating-nav { margin: 0 3em 3em 3em } .floating-nav ul { list-style-type: none; margin-bottom: 0; padding: 1em 2em; float: left; } .floating-nav ul li { display: inline; margin-right: 1.2em; padding-right: 1.2em; border-right: 1px solid #d8e0e4; } .floating-nav ul li.active a { font-weight: bold; color: #3f484d; } .floating-nav .nav-cta-button { display: none; float: right; margin: 5px 2em 0 0; padding: .75em 2.5em .5em 1.5em; } .floating-nav { padding: 1em 2em } .floating-nav ul { display: none } .responsive-nav { display: inline-block; width: 100%; } section.container, footer.container { padding: 0 3em } .tour-navigation { margin-bottom: 3em } .pricing-table-column { margin-bottom: 2em } .pricing-table-column.special { margin-top: 2em } .slider-wrapper .slider { min-height: 150px } .footer-information { border-top: 1px solid #d8e0e4; padding-top: 2em; margin-top: 2em; } .footer-list { margin-bottom: 2em } .copyright-container { text-align: center } .pricing-table-column { float: left; margin-right: 2%; width: 46%; } .pricing-table-column.special { margin-top: 0; padding-top: 0; } .slider-wrapper { padding: 0 } .slider-wrapper .slider li { font-size: 1.1em } .top-cta { display: none } .video-wrapper { margin: 2em 3em 0 3em } .screenshot-cta { text-align: center } .screenshot-cta a.big-button, .screenshot-cta a.button { float: none; margin-right: 0; } .screenshot-cta p { margin: 1em 0 0 0; float: none; } .screenshot-container { margin: 2em 3em 0 3em } .screenshot-container .space-left { padding-left: 0 } [class*="span"]{ margin-left: 1em; } } /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */ @media only screen and (min-width: 480px) and (max-width: 767px) { } /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */ @media only screen and (max-width: 479px) { .figure-right, .figure-left { float: none; width: 100%; text-align: center; margin-left: 0; margin-right: 0; } .figure-right img, .figure-left img { display: block; margin: 0 auto; max-width: 248px; } .pricing-table-column { float: none; margin-right: 0; width: 100%; } .slider-wrapper { padding: 0 } .slider-wrapper .slider li { font-size: 1.1em } .tabbable .nav-tabs { -webkit-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #d8e0e4; -webkit-box-shadow: 0 0 5px #d8e0e4; box-shadow: 0 0 5px #d8e0e4; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; margin-bottom: 2em; padding: 1em; } .tabbable .nav-tabs:hover { border: 1px solid #bac8cf } .tabbable .nav-tabs li { margin-bottom: 0; float: none; } .tabbable .nav-tabs li a { display: block; border: none; padding: 1em; } .tabbable .nav-tabs li a:hover { border: none; margin: 0; } .tabbable .nav-tabs li.active a { font-weight: bold } .tour-nav-container a { float: none; display: block; } .tour-navigation { display: none } form input[type="email"], form input[type="text"], form input[type="url"], form textarea { width: 100% } .navbuttonsContainer a { margin-bottom: 0.5em; } } @media (max-width: 975px){ .slider-controls { margin-top: 45px; } } @media (max-width: 760px){ .slider-controls { margin-top: 0px; } } @media (max-width: 460px){ .slider-controls { margin-top: 45px; } } @media (max-width: 395px){ .slider-controls { margin-top: 45%; } } @media (max-width: 320px){ .slider-controls { margin-top: 130px; } } @media (max-width: 290px){ .slider-controls { margin-top: 190px; } } @media (max-width: 270px){ .slider-controls { margin-top: 315px; } }
0.438304
0.119459
@media screen and (min-width: 1440px) { .cols-list-auto .container {width: 1400px;} } @media (min-width: 1200px) { .container {width: 1000px;} .list-col-right, .list-col-left { float: left; position: relative;} .list-col-right { width: calc(100%); } .list-col-left { width: 250px; right:calc(100%);} } @media screen and (max-width: 1440px) { .list-products .col-5 { width: 25%; } .list-products .grid-item {height: 28vw;} } @media screen and (max-width: 1200px) { .section-slider {height:auto !important;} .list-products .col-5 { width: 33.333%; } .list-col-right, .list-col-left { float: left; position: relative; width: 230px; right:calc(100% - 250px);} .list-col-right { width: calc(100% - 250px); left: 250px; } .list-products .grid-item {height: 34vw;} .section-slider img {height:400px;} } @media screen and (max-width: 1140px) { #thumblist { top:0px; left: 0px; position: relative; margin-top: 20px; } #thumblist li{ float: left; margin:0 2px 2px;} } @media (min-width: 990px){ .subnav-column:nth-child(1), .subnav-column:nth-child(3) { border-right: 1px solid #e8e8e8; } .subnav-column { padding: 0 25px;} } @media screen and (max-width: 990px) { .product-detail .product-title { margin-top: 50px; } .product-more .product-more-content {padding:0;} .ch4_formTextField, .ch4_loginInput, .ch4_loginInputFieldError { width: 100%; } .section-slider img { height: 300px;} .subnav-column {padding: 0 15px; max-width: 150px;} .header-wsmenu .nav-main { padding-left: 0px; } } @media screen and (max-width: 800px) { .list-products .col-5 { width: 50%; } .list-products .grid-item {height: 42vw;} } @media (min-width: 768px){ #myModalRegister .modal-dialog, #myModalSignIn .modal-dialog { width: 500px;} } @media screen and (max-width: 780px) { .header-in-cart { border: 0px;} .wsmenu { position: fixed;} .navbar-top { border: 0px;padding-top: 7px; } .navbar-top .navbar-top-left { display: none; } .header-wsmenu .search-navbar {display: none;} .header-wsmenu { padding: 0; border: 0; display: initial;} .wsmenu-list li:last-child a {border-right:0px;} .wsmenu-list > li.active > a, .wsmenu-list > li:hover a { border:0px; } .wsmenu-list > li.red-cate a { padding-right: 0;color: #fff;} .nav-main { background: none;} .header { padding: 0 15px; position: fixed; top: 0px; left: 0px; background: #fff; width: 100%; border-bottom: 1px solid #ededed; z-index: 15; } .logo { border:0;} .logo img { height: 50px;} .animated-arrow { cursor: pointer; width: 38px; height: 34px; padding: 15px 0px 0 6px; margin: 10px 10px 0 0px; } .hright .header-wsmenu { padding: 0; } .animated-arrow span, .animated-arrow span:before, .animated-arrow span:after { height: 2px; } .animated-arrow span:before { top: -8px;} .animated-arrow span:after { bottom: -8px;} .header-wsmenu .logo { width: auto; } .megamenu .container, .megamenu .link-list { display: block; } .megamenu .link-list { padding: 0 15px; } .link-list .title { height: auto; margin-top: 20px !important; padding-left: 0 !important; } .link-list li a { padding: 7px 0; background: none !important; } #pheader { margin-top: 51px; } .list-products .grid-item {height: 60vw;} .subnav-container, .subnav-column { display: block; padding-top: 0px; max-width: 100%; } .megamenu ul li.title { height: auto; } } @media screen and (max-width: 768px) { .f-cols { text-align: center; margin-bottom: 30px;} .f-navs { text-align: right; } .f-contact li { font-size: 13px; } .logo_foot { display: block; margin: 10px auto 0; } .list-col-right { width: 100%; left: 0; } .list-col-left { width:100%; right: 0; } .f-fb { display: inline-block; width: 100%; text-align: center; } .copyright { text-align: center; } .section-trending .owl-next { right: 5%;} .section-trending .owl-prev {left: 5%;} .copyright { padding-bottom: 55px;} } @media screen and (max-width: 767px) { .gray-panel .page-content { border-right: 0; padding-right: 0px; min-height: 100px; margin-bottom: 30px; } .page-news { padding: 30px 5%; } .logo-f { text-align: center; margin-bottom: 20px;} } @media screen and (max-width: 600px) { .wow { visibility: visible !important; -webkit-animation: none !important; -moz-animation: none !important; -o-animation: none !important -ms-animation: none !important; animation: none !important; } .list-col-tow { padding: 0 15px;} } @media screen and (max-width: 480px) { .checkout.desktop .col, .two-col .col { width: 100%; float: none; margin-bottom: 5px; } .list-products .grid-item {height: 67vw;} #ch4_continueShopping, #ch4_helpContainerTopNav { float: none; margin:0 0 20px; } .ch4_helpFacebook { padding-left: 0px; } .section-trending .item { font-size: 13px; } .product-more .product-more-content { padding: 0; } .ch4_formAddressType span { display: block; margin-bottom: 10px; } .ch4_formInfoSell .hideclass span { display: block; margin-bottom: 5px; } .singleAddress .form-control { width: 100%;} .checkoutHeading, .checkoutHeadingClosed { font-size: 16px; } #cfacebook, #cfacebook a.chat_fb { width: 200px; } .modalcart_summery { padding-top: 0px; } .modalcart_summery h3 { font-size: 18px; } .modalcart_summery .product-price { font-size: 24px; padding: 10px 0px; } .name-box h2 { font-size: 24px; } .product-color li.active { border: 1px solid #fa5400; } .product-color li { border: 1px solid #ddd; margin-right: 5px; } .psize-news { text-align: center; } .psize-news .item{ margin-bottom: 40px; } .section-slider img { height:200px; } .page-news { padding: 30px 0%; } .emty_content { font-size: 14px; } } @media screen and (max-width: 380px) { } @media screen and (max-width: 320px) { .cols-list-auto .owl-prev:before, .cols-list-auto .owl-next:before { top: 20%; } .ch4_cartItemActions .ch4_btn { min-width: 110px;} .list-products .grid-item {height: 75vw;} }
themes/assets/css/media-style.css
@media screen and (min-width: 1440px) { .cols-list-auto .container {width: 1400px;} } @media (min-width: 1200px) { .container {width: 1000px;} .list-col-right, .list-col-left { float: left; position: relative;} .list-col-right { width: calc(100%); } .list-col-left { width: 250px; right:calc(100%);} } @media screen and (max-width: 1440px) { .list-products .col-5 { width: 25%; } .list-products .grid-item {height: 28vw;} } @media screen and (max-width: 1200px) { .section-slider {height:auto !important;} .list-products .col-5 { width: 33.333%; } .list-col-right, .list-col-left { float: left; position: relative; width: 230px; right:calc(100% - 250px);} .list-col-right { width: calc(100% - 250px); left: 250px; } .list-products .grid-item {height: 34vw;} .section-slider img {height:400px;} } @media screen and (max-width: 1140px) { #thumblist { top:0px; left: 0px; position: relative; margin-top: 20px; } #thumblist li{ float: left; margin:0 2px 2px;} } @media (min-width: 990px){ .subnav-column:nth-child(1), .subnav-column:nth-child(3) { border-right: 1px solid #e8e8e8; } .subnav-column { padding: 0 25px;} } @media screen and (max-width: 990px) { .product-detail .product-title { margin-top: 50px; } .product-more .product-more-content {padding:0;} .ch4_formTextField, .ch4_loginInput, .ch4_loginInputFieldError { width: 100%; } .section-slider img { height: 300px;} .subnav-column {padding: 0 15px; max-width: 150px;} .header-wsmenu .nav-main { padding-left: 0px; } } @media screen and (max-width: 800px) { .list-products .col-5 { width: 50%; } .list-products .grid-item {height: 42vw;} } @media (min-width: 768px){ #myModalRegister .modal-dialog, #myModalSignIn .modal-dialog { width: 500px;} } @media screen and (max-width: 780px) { .header-in-cart { border: 0px;} .wsmenu { position: fixed;} .navbar-top { border: 0px;padding-top: 7px; } .navbar-top .navbar-top-left { display: none; } .header-wsmenu .search-navbar {display: none;} .header-wsmenu { padding: 0; border: 0; display: initial;} .wsmenu-list li:last-child a {border-right:0px;} .wsmenu-list > li.active > a, .wsmenu-list > li:hover a { border:0px; } .wsmenu-list > li.red-cate a { padding-right: 0;color: #fff;} .nav-main { background: none;} .header { padding: 0 15px; position: fixed; top: 0px; left: 0px; background: #fff; width: 100%; border-bottom: 1px solid #ededed; z-index: 15; } .logo { border:0;} .logo img { height: 50px;} .animated-arrow { cursor: pointer; width: 38px; height: 34px; padding: 15px 0px 0 6px; margin: 10px 10px 0 0px; } .hright .header-wsmenu { padding: 0; } .animated-arrow span, .animated-arrow span:before, .animated-arrow span:after { height: 2px; } .animated-arrow span:before { top: -8px;} .animated-arrow span:after { bottom: -8px;} .header-wsmenu .logo { width: auto; } .megamenu .container, .megamenu .link-list { display: block; } .megamenu .link-list { padding: 0 15px; } .link-list .title { height: auto; margin-top: 20px !important; padding-left: 0 !important; } .link-list li a { padding: 7px 0; background: none !important; } #pheader { margin-top: 51px; } .list-products .grid-item {height: 60vw;} .subnav-container, .subnav-column { display: block; padding-top: 0px; max-width: 100%; } .megamenu ul li.title { height: auto; } } @media screen and (max-width: 768px) { .f-cols { text-align: center; margin-bottom: 30px;} .f-navs { text-align: right; } .f-contact li { font-size: 13px; } .logo_foot { display: block; margin: 10px auto 0; } .list-col-right { width: 100%; left: 0; } .list-col-left { width:100%; right: 0; } .f-fb { display: inline-block; width: 100%; text-align: center; } .copyright { text-align: center; } .section-trending .owl-next { right: 5%;} .section-trending .owl-prev {left: 5%;} .copyright { padding-bottom: 55px;} } @media screen and (max-width: 767px) { .gray-panel .page-content { border-right: 0; padding-right: 0px; min-height: 100px; margin-bottom: 30px; } .page-news { padding: 30px 5%; } .logo-f { text-align: center; margin-bottom: 20px;} } @media screen and (max-width: 600px) { .wow { visibility: visible !important; -webkit-animation: none !important; -moz-animation: none !important; -o-animation: none !important -ms-animation: none !important; animation: none !important; } .list-col-tow { padding: 0 15px;} } @media screen and (max-width: 480px) { .checkout.desktop .col, .two-col .col { width: 100%; float: none; margin-bottom: 5px; } .list-products .grid-item {height: 67vw;} #ch4_continueShopping, #ch4_helpContainerTopNav { float: none; margin:0 0 20px; } .ch4_helpFacebook { padding-left: 0px; } .section-trending .item { font-size: 13px; } .product-more .product-more-content { padding: 0; } .ch4_formAddressType span { display: block; margin-bottom: 10px; } .ch4_formInfoSell .hideclass span { display: block; margin-bottom: 5px; } .singleAddress .form-control { width: 100%;} .checkoutHeading, .checkoutHeadingClosed { font-size: 16px; } #cfacebook, #cfacebook a.chat_fb { width: 200px; } .modalcart_summery { padding-top: 0px; } .modalcart_summery h3 { font-size: 18px; } .modalcart_summery .product-price { font-size: 24px; padding: 10px 0px; } .name-box h2 { font-size: 24px; } .product-color li.active { border: 1px solid #fa5400; } .product-color li { border: 1px solid #ddd; margin-right: 5px; } .psize-news { text-align: center; } .psize-news .item{ margin-bottom: 40px; } .section-slider img { height:200px; } .page-news { padding: 30px 0%; } .emty_content { font-size: 14px; } } @media screen and (max-width: 380px) { } @media screen and (max-width: 320px) { .cols-list-auto .owl-prev:before, .cols-list-auto .owl-next:before { top: 20%; } .ch4_cartItemActions .ch4_btn { min-width: 110px;} .list-products .grid-item {height: 75vw;} }
0.204819
0.114023
body { background: #f4f4f4; overflow-x: hidden; font-family: "Lora", "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans","wenquanyi micro hei","Hiragino Sans GB", "Hiragino Sans GB W3", Arial, sans-serif; } h1, h2, h3, h4, h5, h6, .nav-band { font-family: "Titillium Web", "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans","wenquanyi micro hei","Hiragino Sans GB", "Hiragino Sans GB W3", Arial, sans-serif; letter-spacing: 1.2px; } #header { height: 70vh; width: 100%; display: table; min-height: 400px; background-size: cover; background-attachment: fixed; background-position: center center; text-shadow: 0 0 10px rgba(0, 0, 0, 0.75); -webkit-animation-name: fadein; -webkit-animation-duration: .5s; animation-name: fadein; animation-duration: .5s; } #header .container { display: table-cell; text-align: center; vertical-align: middle; } #header.post-with-cover { height: 80vh; } #header h1, #header h2 { color: #fff; } #header h1 { margin: 5% auto .5em auto; line-height: 1.3; max-width: 50%; } #header h1 a { color: #fff; text-decoration: none; } #header h1:before { content: ''; width: 25%; margin: 0 auto; display: block; padding-top: .2em; border-top: .1em solid #fff; } #header h2 { font-size: 1rem; font-weight: normal; margin: -.8em 0 .8em; } #nav { position: fixed; top: 0; left: 0; height: 3em; font-size: 1.2em; } #nav.white { background: rgba(255, 255, 255, .95); box-shadow: 0 1px 4px rgba(0, 0, 0, .1); } #nav a.nav-band { float: left; } #nav a { line-height: 3em; } #nav li { -webkit-transition: .3s ease; transition: .3s ease; } #nav.white li:hover { background: #e4e4e4; } #nav.white li.active:hover { background: rgba(0, 0, 0, 0.6); } #nav.white li.active a { color: #fff; } #nav.white a.nav-band { color: #6c6c6c; } #nav.white a { color: #818181; } #header.no-cover { background: #61B99E; } /* Common */ #content { margin-top: 1.5em; margin-bottom: 1.5em; } #content.post-with-cover { position: relative; z-index: 99; margin-top: -6em; } /* Article */ .post { background: #fff; margin: 1.2em 0 2.4em; padding: 0 2.5em .6em; box-shadow: 0 1px 10px -1px rgba(0, 0, 0, .2); } .post-covered { float: left; position: relative; width: 32.33333333%; padding-top: 32.33333333%; margin: 1em 1% .1em 0; } .post-header { margin: 0 -2.5em 0; padding: 1em 2.5em 0; background: #F7F7F7; border-bottom: 1px solid #E7E7E7; } .post-covered .post-info { position: absolute; left: 0; bottom: 0; z-index: 2; width: 100%; height: 100%; padding: 2em; cursor: pointer; transition: .3s ease background; } .post-covered:hover .post-info { color: #fff; background: rgba(0, 0, 0, .4); } .post-h .post-header { background: transparent; text-align: center; } .post-header .post-title { margin-bottom: 0; } .post-covered .post-title { font-size: 1.5rem; margin-bottom: .25em; } .post-header .post-title a, .post-covered .post-title a { text-decoration: none; } .post-covered .post-title a { color: #fff; text-shadow: 0px 1px 4px rgba(0, 0, 0, .6); } .post-covered:hover .post-title a { text-shadow: none; } .post-header .post-time { color: #a3a3a3; margin-top: -.4em; margin-bottom: 1em; } .post-covered .post-time { color: #fff; font-size: .85em; margin-bottom: 0; text-shadow: 0px 1px 4px rgba(0, 0, 0, .6); } .post-covered:hover .post-time { text-shadow: none; } .post-header .post-time a { color: #6c6c6c; letter-spacing: .5px; } .post-covered .post-time a { color: #fff; transiton: .3s ease; } .post-content { padding-top: 1.6em; } .post-footer { position: absolute; right: 2em; bottom: .5em; } .post-author { display: block; margin-top: -.5em; margin-bottom: 2em; } .post-author img { width: 3em; height: 3em; float: right; border-radius: 50%; display: inline-block; } .post-author a { color: #fff; margin-top: 1em; margin-right: 0; text-decoration: none; display: inline-block; transition: .3s ease; } .post:hover .post-author a { margin-right: 1em; } .post-covered .post-footer { opacity: 0; line-height: 1.625; } .post-covered .post-footer p { text-shadow: none; } .post-covered .post-footer span { margin-right: .5em; } .post-covered .post-footer i[class*=icon-] { color: #fff; } .post-covered:hover .post-footer { opacity: 1; } .post-covered .post-introlink { text-decoration: none; } .post-covered .post-intro { color: #fff; opacity: 0; margin-top: 2.5em; font-size: .85em; max-height: 45%; overflow: hidden; text-shadow: none; transition: .3s ease; } .post-covered:hover .post-intro { margin-top: 1.5em; } .post-covered:hover .post-intro { opacity: 1; } .post-covered .post-cover { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; } .post-covered .post-cover img { position: absolute; margin: auto; height: 100%; top: -99999px; left: -99999px; right: -99999px; bottom: -99999px; max-width: inherit; } .post-covered.no-cover .post-title a, .post-covered.no-cover .post-time, .post-covered.no-cover .post-author a, .post-covered.no-cover .post-time a { color: #222; text-shadow: none; } .post-covered .post-title { height: 1.6em; overflow: hidden; } .post-covered.no-cover .post-intro { opacity: 1; color: #222; margin-top: 1.5em; } .post-covered.no-cover .post-footer { opacity: 1; } .post-covered.no-cover .post-author a { margin-right: .5em; } .post-covered.no-cover:hover .post-info { background: #61B99E; } .read-next { color: #fff; margin-bottom: .9em; } .read-next a { color: #fff; width: 100%; background: #fff; padding: .2em 2em; position: relative; display: inline-block; text-decoration: none; box-shadow: 0 1px 10px -1px rgba(0, 0, 0, .2); } .read-next p, .read-next h2 { text-shadow: 1px 0px 3px rgba(0, 0, 0, 0.79) } .read-next a.no-cover p, .read-next a.no-cover h2 { text-shadow: none; } .read-next h2 { color: #fff; position: relative; z-index: 2; line-height: 1.2; margin: .5em 0; } .read-next .text { position: relative; z-index: 2; margin: 0; color: #fff; text-align: right; position: absolute; right: 1.2em; top: .8em; } .read-next a.no-cover, .read-next a.no-cover h2 { color: #222; } .read-next a.no-cover .text { color: #d3d3d3; } .read-next a:before { content: ''; display: block; position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0; background: rgba(0, 0, 0, .4); transition: .3s ease; } .read-next a:hover:before { opacity: 1; } /* Footer */ #footer { color: #fff; padding: 1em 0; position: relative; background-size: cover; background-attachment: fixed; } #footer.no-cover { background: #61B99E; } #footer:after { content: ''; top: 0; left: 0; z-index: 0; width: 100%; height: 100%; position: absolute; background: rgba(0,0,0,.6); } #footer .container { position: relative; z-index: 1; } #footer p { margin-bottom: 0; text-shadow: none; } #footer a { color: #fff; } .author-profile { margin-bottom: .5em; background: #61B99E; box-shadow: 0 1px 10px -1px rgba(0, 0, 0, .2); color: #fff; padding: 2em 5em; } .author-image { margin: 0; float: left; margin-right: 2em; } .author-image .img { display: block; float: left; height: 10em; width: 10em; background-size: cover; border-radius: 50%; } .author-title { margin-bottom: .2em; color: #fff; } .pagination { position: fixed; bottom: -3px; left: 0; text-align: center; background: transparent; } .pagination a { font-size: 3em; line-height: 100%; padding: .1em .3em; margin-right: -.1em; transition: .3s ease; display: inline-block; background: rgba(255, 255, 255, .95); box-shadow: 0 1px 10px -1px rgba(0, 0, 0, .5); } .pagination a i { color: #61B99E; display: block; } .pagination a:hover { background: #61B99E; } .pagination a:hover i { color: #fff; } @media (min-width: 768px) and (max-width: 1024px) { .post-covered { width: 49%; padding-top: 49%; margin-right: 1%; } } @media (max-width: 1024px) { #header h1 { font-size: 2em; max-width: inherit; } #header.post-with-cover { height: inherit padding-bottom: 2em; } .pagination { position: static; font-size: 2em; } .pagination a { margin-top: .25em; } #nav { z-index: -1; opacity: 0; height: inherit; background: #61B99E!important; } #nav a.nav-band { display: none; } #nav ul { float: none!important; text-align: center; } #nav ul.nav-group li { float: none; } #nav .container, #nav ul { padding: 0; } #nav a { display: block; color: #fff!important; } #nav li:hover { background: rgba(0, 0, 0, .6)!important; } #mobile-close { display: block!important; visibility: visible!important; } #mobile-menu { position: fixed; top: .5em; right: 1em; z-index: 999; font-size: 2em; display: block!important; visibility: visible!important; } #mobile-menu i { color: #fff; } .post-covered .post-title { font-size: 2em; } .post-covered .post-info { color: #fff; background: rgba(0, 0, 0, .4); } .post-covered.no-cover .post-info { color: #222; background: transparent; } .post-covered .post-title a, .post-covered .post-time { text-shadow: none; } .post-covered .post-intro, .post-covered .post-footer { opacity: 1; } .post-covered .post-intro { margin-top: 1.5em; } .post .post-author a { margin-right: 1em; } } @media (max-width: 768px) { .post-covered { width: 100%; padding-top: 100%; } } .comments { background: #fff; padding: 1em 2em; box-shadow: 0 1px 10px -1px rgba(0, 0, 0, .2); margin-bottom: 2.4em; } @-webkit-keyframes fadein { from { -webkit-transform: scale(1.3); transform: scale(1.3); opacity: 0 } to { -webkit-transform: scale(1) rotateX(0deg); transform: scale(1) rotateX(0deg); opacity: 1 } } @keyframes fadein { from { -webkit-transform: scale(1.3); transform: scale(1.3); opacity: 0 } to { -webkit-transform: scale(1); transform: scale(1); opacity: 1 } }
content/themes/lein/assets/css/lein.css
body { background: #f4f4f4; overflow-x: hidden; font-family: "Lora", "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans","wenquanyi micro hei","Hiragino Sans GB", "Hiragino Sans GB W3", Arial, sans-serif; } h1, h2, h3, h4, h5, h6, .nav-band { font-family: "Titillium Web", "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans","wenquanyi micro hei","Hiragino Sans GB", "Hiragino Sans GB W3", Arial, sans-serif; letter-spacing: 1.2px; } #header { height: 70vh; width: 100%; display: table; min-height: 400px; background-size: cover; background-attachment: fixed; background-position: center center; text-shadow: 0 0 10px rgba(0, 0, 0, 0.75); -webkit-animation-name: fadein; -webkit-animation-duration: .5s; animation-name: fadein; animation-duration: .5s; } #header .container { display: table-cell; text-align: center; vertical-align: middle; } #header.post-with-cover { height: 80vh; } #header h1, #header h2 { color: #fff; } #header h1 { margin: 5% auto .5em auto; line-height: 1.3; max-width: 50%; } #header h1 a { color: #fff; text-decoration: none; } #header h1:before { content: ''; width: 25%; margin: 0 auto; display: block; padding-top: .2em; border-top: .1em solid #fff; } #header h2 { font-size: 1rem; font-weight: normal; margin: -.8em 0 .8em; } #nav { position: fixed; top: 0; left: 0; height: 3em; font-size: 1.2em; } #nav.white { background: rgba(255, 255, 255, .95); box-shadow: 0 1px 4px rgba(0, 0, 0, .1); } #nav a.nav-band { float: left; } #nav a { line-height: 3em; } #nav li { -webkit-transition: .3s ease; transition: .3s ease; } #nav.white li:hover { background: #e4e4e4; } #nav.white li.active:hover { background: rgba(0, 0, 0, 0.6); } #nav.white li.active a { color: #fff; } #nav.white a.nav-band { color: #6c6c6c; } #nav.white a { color: #818181; } #header.no-cover { background: #61B99E; } /* Common */ #content { margin-top: 1.5em; margin-bottom: 1.5em; } #content.post-with-cover { position: relative; z-index: 99; margin-top: -6em; } /* Article */ .post { background: #fff; margin: 1.2em 0 2.4em; padding: 0 2.5em .6em; box-shadow: 0 1px 10px -1px rgba(0, 0, 0, .2); } .post-covered { float: left; position: relative; width: 32.33333333%; padding-top: 32.33333333%; margin: 1em 1% .1em 0; } .post-header { margin: 0 -2.5em 0; padding: 1em 2.5em 0; background: #F7F7F7; border-bottom: 1px solid #E7E7E7; } .post-covered .post-info { position: absolute; left: 0; bottom: 0; z-index: 2; width: 100%; height: 100%; padding: 2em; cursor: pointer; transition: .3s ease background; } .post-covered:hover .post-info { color: #fff; background: rgba(0, 0, 0, .4); } .post-h .post-header { background: transparent; text-align: center; } .post-header .post-title { margin-bottom: 0; } .post-covered .post-title { font-size: 1.5rem; margin-bottom: .25em; } .post-header .post-title a, .post-covered .post-title a { text-decoration: none; } .post-covered .post-title a { color: #fff; text-shadow: 0px 1px 4px rgba(0, 0, 0, .6); } .post-covered:hover .post-title a { text-shadow: none; } .post-header .post-time { color: #a3a3a3; margin-top: -.4em; margin-bottom: 1em; } .post-covered .post-time { color: #fff; font-size: .85em; margin-bottom: 0; text-shadow: 0px 1px 4px rgba(0, 0, 0, .6); } .post-covered:hover .post-time { text-shadow: none; } .post-header .post-time a { color: #6c6c6c; letter-spacing: .5px; } .post-covered .post-time a { color: #fff; transiton: .3s ease; } .post-content { padding-top: 1.6em; } .post-footer { position: absolute; right: 2em; bottom: .5em; } .post-author { display: block; margin-top: -.5em; margin-bottom: 2em; } .post-author img { width: 3em; height: 3em; float: right; border-radius: 50%; display: inline-block; } .post-author a { color: #fff; margin-top: 1em; margin-right: 0; text-decoration: none; display: inline-block; transition: .3s ease; } .post:hover .post-author a { margin-right: 1em; } .post-covered .post-footer { opacity: 0; line-height: 1.625; } .post-covered .post-footer p { text-shadow: none; } .post-covered .post-footer span { margin-right: .5em; } .post-covered .post-footer i[class*=icon-] { color: #fff; } .post-covered:hover .post-footer { opacity: 1; } .post-covered .post-introlink { text-decoration: none; } .post-covered .post-intro { color: #fff; opacity: 0; margin-top: 2.5em; font-size: .85em; max-height: 45%; overflow: hidden; text-shadow: none; transition: .3s ease; } .post-covered:hover .post-intro { margin-top: 1.5em; } .post-covered:hover .post-intro { opacity: 1; } .post-covered .post-cover { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; } .post-covered .post-cover img { position: absolute; margin: auto; height: 100%; top: -99999px; left: -99999px; right: -99999px; bottom: -99999px; max-width: inherit; } .post-covered.no-cover .post-title a, .post-covered.no-cover .post-time, .post-covered.no-cover .post-author a, .post-covered.no-cover .post-time a { color: #222; text-shadow: none; } .post-covered .post-title { height: 1.6em; overflow: hidden; } .post-covered.no-cover .post-intro { opacity: 1; color: #222; margin-top: 1.5em; } .post-covered.no-cover .post-footer { opacity: 1; } .post-covered.no-cover .post-author a { margin-right: .5em; } .post-covered.no-cover:hover .post-info { background: #61B99E; } .read-next { color: #fff; margin-bottom: .9em; } .read-next a { color: #fff; width: 100%; background: #fff; padding: .2em 2em; position: relative; display: inline-block; text-decoration: none; box-shadow: 0 1px 10px -1px rgba(0, 0, 0, .2); } .read-next p, .read-next h2 { text-shadow: 1px 0px 3px rgba(0, 0, 0, 0.79) } .read-next a.no-cover p, .read-next a.no-cover h2 { text-shadow: none; } .read-next h2 { color: #fff; position: relative; z-index: 2; line-height: 1.2; margin: .5em 0; } .read-next .text { position: relative; z-index: 2; margin: 0; color: #fff; text-align: right; position: absolute; right: 1.2em; top: .8em; } .read-next a.no-cover, .read-next a.no-cover h2 { color: #222; } .read-next a.no-cover .text { color: #d3d3d3; } .read-next a:before { content: ''; display: block; position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0; background: rgba(0, 0, 0, .4); transition: .3s ease; } .read-next a:hover:before { opacity: 1; } /* Footer */ #footer { color: #fff; padding: 1em 0; position: relative; background-size: cover; background-attachment: fixed; } #footer.no-cover { background: #61B99E; } #footer:after { content: ''; top: 0; left: 0; z-index: 0; width: 100%; height: 100%; position: absolute; background: rgba(0,0,0,.6); } #footer .container { position: relative; z-index: 1; } #footer p { margin-bottom: 0; text-shadow: none; } #footer a { color: #fff; } .author-profile { margin-bottom: .5em; background: #61B99E; box-shadow: 0 1px 10px -1px rgba(0, 0, 0, .2); color: #fff; padding: 2em 5em; } .author-image { margin: 0; float: left; margin-right: 2em; } .author-image .img { display: block; float: left; height: 10em; width: 10em; background-size: cover; border-radius: 50%; } .author-title { margin-bottom: .2em; color: #fff; } .pagination { position: fixed; bottom: -3px; left: 0; text-align: center; background: transparent; } .pagination a { font-size: 3em; line-height: 100%; padding: .1em .3em; margin-right: -.1em; transition: .3s ease; display: inline-block; background: rgba(255, 255, 255, .95); box-shadow: 0 1px 10px -1px rgba(0, 0, 0, .5); } .pagination a i { color: #61B99E; display: block; } .pagination a:hover { background: #61B99E; } .pagination a:hover i { color: #fff; } @media (min-width: 768px) and (max-width: 1024px) { .post-covered { width: 49%; padding-top: 49%; margin-right: 1%; } } @media (max-width: 1024px) { #header h1 { font-size: 2em; max-width: inherit; } #header.post-with-cover { height: inherit padding-bottom: 2em; } .pagination { position: static; font-size: 2em; } .pagination a { margin-top: .25em; } #nav { z-index: -1; opacity: 0; height: inherit; background: #61B99E!important; } #nav a.nav-band { display: none; } #nav ul { float: none!important; text-align: center; } #nav ul.nav-group li { float: none; } #nav .container, #nav ul { padding: 0; } #nav a { display: block; color: #fff!important; } #nav li:hover { background: rgba(0, 0, 0, .6)!important; } #mobile-close { display: block!important; visibility: visible!important; } #mobile-menu { position: fixed; top: .5em; right: 1em; z-index: 999; font-size: 2em; display: block!important; visibility: visible!important; } #mobile-menu i { color: #fff; } .post-covered .post-title { font-size: 2em; } .post-covered .post-info { color: #fff; background: rgba(0, 0, 0, .4); } .post-covered.no-cover .post-info { color: #222; background: transparent; } .post-covered .post-title a, .post-covered .post-time { text-shadow: none; } .post-covered .post-intro, .post-covered .post-footer { opacity: 1; } .post-covered .post-intro { margin-top: 1.5em; } .post .post-author a { margin-right: 1em; } } @media (max-width: 768px) { .post-covered { width: 100%; padding-top: 100%; } } .comments { background: #fff; padding: 1em 2em; box-shadow: 0 1px 10px -1px rgba(0, 0, 0, .2); margin-bottom: 2.4em; } @-webkit-keyframes fadein { from { -webkit-transform: scale(1.3); transform: scale(1.3); opacity: 0 } to { -webkit-transform: scale(1) rotateX(0deg); transform: scale(1) rotateX(0deg); opacity: 1 } } @keyframes fadein { from { -webkit-transform: scale(1.3); transform: scale(1.3); opacity: 0 } to { -webkit-transform: scale(1); transform: scale(1); opacity: 1 } }
0.356671
0.057626
body { background-color: #F6B3B3; color: #fff; font: 15px/ 1.5 '微软雅黑'; margin:0px; } body>a { display: none } #container { width: 480px; margin: auto; } .page { position: absolute; top: 0; left: 0; right: 0; bottom: 0; max-width: 480px; margin: auto; } .hide { display: none } #loading { display: block; font-size: 30px; text-align: center; color: #fff } #loading .loading-txt { height: 100px; width: 100%; position: absolute; top: 0; left: 0; right: 0; bottom: 60px; margin: auto } .boyaa_logo { height: 50px; width: 110px; position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; border-radius: 10px; -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, .5); -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, .5); box-shadow: 1px 1px 3px rgba(0, 0, 0, .5) } .boyaa_logo img { max-width: 100%; border-radius: 10px; display: block } .copyright { position: absolute; bottom: 0; left: 0; width: 100%; text-align: center; font-size: 16px } #index h1 { text-align: center; font-size: 30px; padding: 30px 0; text-shadow: 1px 1px 1px #AB3C3C } .btns { text-align: center; position: absolute; bottom: 10px; height: 140px; width: 100%; color: #ddd } .btns .btn2{ height:60px; margin:auto; width:50%; } #room header { position: absolute; top: 0; left: 0; width: 100%; height: 50px; line-height: 50px; text-align: center; font-size: 16px; color: #B82828; } #room header .lv { position: absolute; width: 80px; height: 50px; left: 10px; top: 0 } #room header .lv em { font-style: normal } #room header .btn-pause { position: absolute; top: 5px; right: 10px; height: 40px; width: 60px; line-height: 40px; padding: 0; margin: 0; color: #fff } #room header .time { font-size: 20px; font-weight: 700; background-color: #FD9090; color: #FFCACA; padding: 0 10px; border-radius: 10px } #room header .time.danger { color: #FF0505; background-color: #fff } #help { height: 30px; font-size: 16px; color: #FFA1A1; text-align: center } #box { position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto; background-color: #ddd; border-radius: 10px; padding: 10px } #boxguess { position: absolute; top: 0; right: 0; bottom: 30%; left: 0; margin: auto; background-color: #BEA6A6; border-radius: 10px; padding: 10px } #boxlist { position: absolute; bottom: 5%; left: 0px; margin: 2%; background-color: #ddd; border-radius: 10px; } .boxguesstext { display: block; float: left; border-radius: 10px; cursor: pointer; border: 5px solid #ddd; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; font-size: 95px; text-align: center; width: 100%; } #boxlist .boxitem { position: relative; display: block; float: left; border-radius: 10px; cursor: pointer; border: 5px solid #ddd; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; width: 33%; height: 100%; display: inline-block; font-size: 80px; text-align: center; display: block; } .boxitem img { font-size: 0px; margin; 0 px; padding 0px; } .boxitem p { position: absolute; left: 40%; bottom: 0px; margin: auto; font-size: 10px; color: black; } #boxguess span { width: 100%; height: 100% } #box.lv3 span { width: 33.33%; height: 33.33% } #box.lv4 span { width: 25%; height: 25% } #box.lv5 span { width: 20%; height: 20%; border-width: 3px } #box.lv6 span { width: 16.666%; height: 16.666%; border-width: 3px } #box.lv7 span { width: 14.28%; height: 14.28%; border-width: 3px } #box.lv8 span { width: 12.5%; height: 12.5%; border-width: 3px } #box.lv9 span { width: 11.111%; height: 11.111%; border-width: 3px } #box span img { width: 100% } #dialog .inner { height: 100%; width: 100%; text-align: center; font-size: 20px } #result { position: absolute; top: 40px; width: 90%; margin: auto; text-align: left; left: 20px; color: rgb(184, 117, 117); font-size: 18px; } #dialog .inner .content { padding-top: 30px } #dialog .inner h3 { line-height: 60px; font-size: 40px; margin: 0; color: #321 } #dialog .inner .pause h3 { color: #FFE2C5 } #dialog .inner .btn { margin: 15px auto } #dialog .inner p { margin: 0 } #dialog .inner-content { height: 270px; width: 100%; position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto } .btn { border: none; color: inherit; cursor: pointer; display: inline-block; margin: 10px 30px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; outline: 0; position: relative; background: #FCAD26; border-radius: 7px; box-shadow: 0 5px #DA9622; font-size: 20px; font-family: '微软雅黑'; height: 50px; width: 220px; line-height: 50px; -webkit-tap-highlight-color: transparent } .btn.btn-bottom { position: absolute; width: 300px; padding: 0; bottom: 20px; left: 50%; margin-left: -150px } .boyaa-logo { display: block; height: 50px; width: 100px; margin: 0 auto; -webkit-tap-highlight-color: transparent } .boyaa-logo img { max-width: 100% } .banner { display: none; width: 640px; background-color: #123; max-width: 100%; position: absolute; bottom: 0; left: 0; display: none } .banner img { display: block; max-width: 100% } @media all and (orientation:landscape) { #room header { height: 100%; width: 80px } #room header .lv { left: 0 } #room header .time { display: inline-block; height: 50px; width: 100%; padding: 0; position: absolute; top: 50%; left: 0; margin-top: -25px } #room header .btn-pause { top: auto; bottom: 15px } #box { top: 0; left: 80px } #dialog { padding-top: 0; //padding-left: 80px } #dialog .inner .content { padding-top: 100px } } @media all and (max-width:361px) { #box.lv1 span,#box.lv2 span,#box.lv3 span,#box.lv4 span { border-width: 2px; border-radius: 5px } #box.lv5 span,#box.lv6 span,#box.lv7 span,#box.lv8 span,#box.lv9 span { border-width: 1px; border-radius: 3px } } .btn-boyaa { text-decoration: none } .btn-boyaa img { height: 30px; width: 30px; vertical-align: middle; margin-left: 10px }
games/xz120/css/game.css
body { background-color: #F6B3B3; color: #fff; font: 15px/ 1.5 '微软雅黑'; margin:0px; } body>a { display: none } #container { width: 480px; margin: auto; } .page { position: absolute; top: 0; left: 0; right: 0; bottom: 0; max-width: 480px; margin: auto; } .hide { display: none } #loading { display: block; font-size: 30px; text-align: center; color: #fff } #loading .loading-txt { height: 100px; width: 100%; position: absolute; top: 0; left: 0; right: 0; bottom: 60px; margin: auto } .boyaa_logo { height: 50px; width: 110px; position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; border-radius: 10px; -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, .5); -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, .5); box-shadow: 1px 1px 3px rgba(0, 0, 0, .5) } .boyaa_logo img { max-width: 100%; border-radius: 10px; display: block } .copyright { position: absolute; bottom: 0; left: 0; width: 100%; text-align: center; font-size: 16px } #index h1 { text-align: center; font-size: 30px; padding: 30px 0; text-shadow: 1px 1px 1px #AB3C3C } .btns { text-align: center; position: absolute; bottom: 10px; height: 140px; width: 100%; color: #ddd } .btns .btn2{ height:60px; margin:auto; width:50%; } #room header { position: absolute; top: 0; left: 0; width: 100%; height: 50px; line-height: 50px; text-align: center; font-size: 16px; color: #B82828; } #room header .lv { position: absolute; width: 80px; height: 50px; left: 10px; top: 0 } #room header .lv em { font-style: normal } #room header .btn-pause { position: absolute; top: 5px; right: 10px; height: 40px; width: 60px; line-height: 40px; padding: 0; margin: 0; color: #fff } #room header .time { font-size: 20px; font-weight: 700; background-color: #FD9090; color: #FFCACA; padding: 0 10px; border-radius: 10px } #room header .time.danger { color: #FF0505; background-color: #fff } #help { height: 30px; font-size: 16px; color: #FFA1A1; text-align: center } #box { position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto; background-color: #ddd; border-radius: 10px; padding: 10px } #boxguess { position: absolute; top: 0; right: 0; bottom: 30%; left: 0; margin: auto; background-color: #BEA6A6; border-radius: 10px; padding: 10px } #boxlist { position: absolute; bottom: 5%; left: 0px; margin: 2%; background-color: #ddd; border-radius: 10px; } .boxguesstext { display: block; float: left; border-radius: 10px; cursor: pointer; border: 5px solid #ddd; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; font-size: 95px; text-align: center; width: 100%; } #boxlist .boxitem { position: relative; display: block; float: left; border-radius: 10px; cursor: pointer; border: 5px solid #ddd; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; width: 33%; height: 100%; display: inline-block; font-size: 80px; text-align: center; display: block; } .boxitem img { font-size: 0px; margin; 0 px; padding 0px; } .boxitem p { position: absolute; left: 40%; bottom: 0px; margin: auto; font-size: 10px; color: black; } #boxguess span { width: 100%; height: 100% } #box.lv3 span { width: 33.33%; height: 33.33% } #box.lv4 span { width: 25%; height: 25% } #box.lv5 span { width: 20%; height: 20%; border-width: 3px } #box.lv6 span { width: 16.666%; height: 16.666%; border-width: 3px } #box.lv7 span { width: 14.28%; height: 14.28%; border-width: 3px } #box.lv8 span { width: 12.5%; height: 12.5%; border-width: 3px } #box.lv9 span { width: 11.111%; height: 11.111%; border-width: 3px } #box span img { width: 100% } #dialog .inner { height: 100%; width: 100%; text-align: center; font-size: 20px } #result { position: absolute; top: 40px; width: 90%; margin: auto; text-align: left; left: 20px; color: rgb(184, 117, 117); font-size: 18px; } #dialog .inner .content { padding-top: 30px } #dialog .inner h3 { line-height: 60px; font-size: 40px; margin: 0; color: #321 } #dialog .inner .pause h3 { color: #FFE2C5 } #dialog .inner .btn { margin: 15px auto } #dialog .inner p { margin: 0 } #dialog .inner-content { height: 270px; width: 100%; position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto } .btn { border: none; color: inherit; cursor: pointer; display: inline-block; margin: 10px 30px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; outline: 0; position: relative; background: #FCAD26; border-radius: 7px; box-shadow: 0 5px #DA9622; font-size: 20px; font-family: '微软雅黑'; height: 50px; width: 220px; line-height: 50px; -webkit-tap-highlight-color: transparent } .btn.btn-bottom { position: absolute; width: 300px; padding: 0; bottom: 20px; left: 50%; margin-left: -150px } .boyaa-logo { display: block; height: 50px; width: 100px; margin: 0 auto; -webkit-tap-highlight-color: transparent } .boyaa-logo img { max-width: 100% } .banner { display: none; width: 640px; background-color: #123; max-width: 100%; position: absolute; bottom: 0; left: 0; display: none } .banner img { display: block; max-width: 100% } @media all and (orientation:landscape) { #room header { height: 100%; width: 80px } #room header .lv { left: 0 } #room header .time { display: inline-block; height: 50px; width: 100%; padding: 0; position: absolute; top: 50%; left: 0; margin-top: -25px } #room header .btn-pause { top: auto; bottom: 15px } #box { top: 0; left: 80px } #dialog { padding-top: 0; //padding-left: 80px } #dialog .inner .content { padding-top: 100px } } @media all and (max-width:361px) { #box.lv1 span,#box.lv2 span,#box.lv3 span,#box.lv4 span { border-width: 2px; border-radius: 5px } #box.lv5 span,#box.lv6 span,#box.lv7 span,#box.lv8 span,#box.lv9 span { border-width: 1px; border-radius: 3px } } .btn-boyaa { text-decoration: none } .btn-boyaa img { height: 30px; width: 30px; vertical-align: middle; margin-left: 10px }
0.237664
0.04703
* Page-Wrapper */ #page-wrapper { padding: 15px 15px 0; min-height: 568px; background-color: white; font-size: 14px; } @media (min-width: 768px) { #page-wrapper { padding: 15px 30px 0; } } /* * Sidebar */ .sidebar { position: fixed; top: 56px; bottom: 0; left: 0; z-index: 1000; padding: 0 0; overflow-x: hidden; overflow-y: visible; /* Scrollable content if viewport is shorter than content. */ border-right: 1px solid #eee; } .sidebar .nav { margin-bottom: 20px; } .sidebar .nav-item { width: 100%; } .sidebar .nav-item + .nav-item { margin-left: 0; } .sidebar .nav-link { border-radius: 0; } .sidebar .nav.nav-second-level { margin-bottom: 0; } .sidebar .nav.nav-second-level .nav-link { padding-left: 1.715em; /* First level 0.8575em * 2 */ } .sidebar .nav.nav-third-level .nav-link { padding-left: 2.5725em; /* First level 0.8575em * 2 */ } /* * Off Canvas */ @media screen and (max-width: 767px) { .row-offcanvas, .sidebar-offcanvas { transition: all .25s ease-out; } .row-offcanvas { position: relative; } .row-offcanvas.show { margin-left: 0; margin-right: 0; } .row-offcanvas-right { right: 0; } .row-offcanvas-left { left: 0; } .row-offcanvas-right .sidebar-offcanvas { right: -100%; /* 12 columns */ } .row-offcanvas-right.show .sidebar-offcanvas { right: 0; } .row-offcanvas-left .sidebar-offcanvas { left: -100%; /* 12 columns */ } .row-offcanvas-left.show .sidebar-offcanvas { left: 0; } } @media screen and (max-width: 576px){ .row-offcanvas-right.show { right: 66.666667%; /* 8 columns */ } .row-offcanvas-left.show { left: 66.666667%; /* 8 columns */ } } @media screen and (min-width: 576px) and (max-width: 767px) { .row-offcanvas-right.show { right: 33.333333%; /* 4 columns */ } .row-offcanvas-left.show { left: 33.333333%; /* 4 columns */ } } /* * Chat */ .chat { margin: 0; padding: 0; list-style: none; } .chat li { margin-bottom: 10px; padding-bottom: 5px; border-bottom: 1px dotted #999999; } .chat li.left .chat-body { margin-left: 60px; } .chat li.right .chat-body { margin-right: 60px; } .chat li .chat-body p { margin: 0; } .chat-card .card-body { height: 350px; overflow-y: scroll; } /* * Timeline */ .timeline { position: relative; padding: 20px 0 20px; list-style: none; } .timeline:before { content: " "; position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; margin-left: -1.5px; background-color: #eeeeee; } .timeline > li { position: relative; margin-bottom: 20px; } .timeline > li:before, .timeline > li:after { content: " "; display: table; } .timeline > li:after { clear: both; } .timeline > li:before, .timeline > li:after { content: " "; display: table; } .timeline > li:after { clear: both; } .timeline > li > .timeline-panel { float: left; position: relative; width: calc(50% - 50px); width: -moz-calc(50% - 50px); width: -webkit-calc(50% - 50px); padding: 20px; border: 1px solid #d4d4d4; border-radius: 2px; -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175); box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175); } .timeline > li > .timeline-panel:before { content: " "; display: inline-block; position: absolute; top: 26px; right: -15px; border-top: 15px solid transparent; border-right: 0 solid #ccc; border-bottom: 15px solid transparent; border-left: 15px solid #ccc; } .timeline > li > .timeline-panel:after { content: " "; display: inline-block; position: absolute; top: 27px; right: -14px; border-top: 14px solid transparent; border-right: 0 solid #fff; border-bottom: 14px solid transparent; border-left: 14px solid #fff; } .timeline > li > .timeline-badge { z-index: 100; position: absolute; top: 16px; left: 50%; width: 50px; height: 50px; margin-left: -25px; border-radius: 50% 50% 50% 50%; text-align: center; font-size: 1.4em; line-height: 50px; color: #fff; background-color: #999999; } .timeline > li.timeline-inverted > .timeline-panel { float: right; } .timeline > li.timeline-inverted > .timeline-panel:before { right: auto; left: -15px; border-right-width: 15px; border-left-width: 0; } .timeline > li.timeline-inverted > .timeline-panel:after { right: auto; left: -14px; border-right-width: 14px; border-left-width: 0; } .timeline-badge.primary { background-color: #2e6da4 !important; } .timeline-badge.success { background-color: #3f903f !important; } .timeline-badge.warning { background-color: #f0ad4e !important; } .timeline-badge.danger { background-color: #d9534f !important; } .timeline-badge.info { background-color: #5bc0de !important; } .timeline-title { margin-top: 0; color: inherit; } .timeline-body > p, .timeline-body > ul { margin-bottom: 0; } .timeline-body > p + p { margin-top: 5px; } @media (max-width: 767px) { ul.timeline:before { left: 40px; } ul.timeline > li > .timeline-panel { width: calc(100% - 90px); width: -moz-calc(100% - 90px); width: -webkit-calc(100% - 90px); } ul.timeline > li > .timeline-badge { top: 16px; left: 15px; margin-left: 0; } ul.timeline > li > .timeline-panel { float: right; } ul.timeline > li > .timeline-panel:before { right: auto; left: -15px; border-right-width: 15px; border-left-width: 0; } ul.timeline > li > .timeline-panel:after { right: auto; left: -14px; border-right-width: 14px; border-left-width: 0; } } /* * Utilities */ /* Huge text */ .huge { font-size: 40px; }
public/css/sb-admin-2.css
* Page-Wrapper */ #page-wrapper { padding: 15px 15px 0; min-height: 568px; background-color: white; font-size: 14px; } @media (min-width: 768px) { #page-wrapper { padding: 15px 30px 0; } } /* * Sidebar */ .sidebar { position: fixed; top: 56px; bottom: 0; left: 0; z-index: 1000; padding: 0 0; overflow-x: hidden; overflow-y: visible; /* Scrollable content if viewport is shorter than content. */ border-right: 1px solid #eee; } .sidebar .nav { margin-bottom: 20px; } .sidebar .nav-item { width: 100%; } .sidebar .nav-item + .nav-item { margin-left: 0; } .sidebar .nav-link { border-radius: 0; } .sidebar .nav.nav-second-level { margin-bottom: 0; } .sidebar .nav.nav-second-level .nav-link { padding-left: 1.715em; /* First level 0.8575em * 2 */ } .sidebar .nav.nav-third-level .nav-link { padding-left: 2.5725em; /* First level 0.8575em * 2 */ } /* * Off Canvas */ @media screen and (max-width: 767px) { .row-offcanvas, .sidebar-offcanvas { transition: all .25s ease-out; } .row-offcanvas { position: relative; } .row-offcanvas.show { margin-left: 0; margin-right: 0; } .row-offcanvas-right { right: 0; } .row-offcanvas-left { left: 0; } .row-offcanvas-right .sidebar-offcanvas { right: -100%; /* 12 columns */ } .row-offcanvas-right.show .sidebar-offcanvas { right: 0; } .row-offcanvas-left .sidebar-offcanvas { left: -100%; /* 12 columns */ } .row-offcanvas-left.show .sidebar-offcanvas { left: 0; } } @media screen and (max-width: 576px){ .row-offcanvas-right.show { right: 66.666667%; /* 8 columns */ } .row-offcanvas-left.show { left: 66.666667%; /* 8 columns */ } } @media screen and (min-width: 576px) and (max-width: 767px) { .row-offcanvas-right.show { right: 33.333333%; /* 4 columns */ } .row-offcanvas-left.show { left: 33.333333%; /* 4 columns */ } } /* * Chat */ .chat { margin: 0; padding: 0; list-style: none; } .chat li { margin-bottom: 10px; padding-bottom: 5px; border-bottom: 1px dotted #999999; } .chat li.left .chat-body { margin-left: 60px; } .chat li.right .chat-body { margin-right: 60px; } .chat li .chat-body p { margin: 0; } .chat-card .card-body { height: 350px; overflow-y: scroll; } /* * Timeline */ .timeline { position: relative; padding: 20px 0 20px; list-style: none; } .timeline:before { content: " "; position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; margin-left: -1.5px; background-color: #eeeeee; } .timeline > li { position: relative; margin-bottom: 20px; } .timeline > li:before, .timeline > li:after { content: " "; display: table; } .timeline > li:after { clear: both; } .timeline > li:before, .timeline > li:after { content: " "; display: table; } .timeline > li:after { clear: both; } .timeline > li > .timeline-panel { float: left; position: relative; width: calc(50% - 50px); width: -moz-calc(50% - 50px); width: -webkit-calc(50% - 50px); padding: 20px; border: 1px solid #d4d4d4; border-radius: 2px; -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175); box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175); } .timeline > li > .timeline-panel:before { content: " "; display: inline-block; position: absolute; top: 26px; right: -15px; border-top: 15px solid transparent; border-right: 0 solid #ccc; border-bottom: 15px solid transparent; border-left: 15px solid #ccc; } .timeline > li > .timeline-panel:after { content: " "; display: inline-block; position: absolute; top: 27px; right: -14px; border-top: 14px solid transparent; border-right: 0 solid #fff; border-bottom: 14px solid transparent; border-left: 14px solid #fff; } .timeline > li > .timeline-badge { z-index: 100; position: absolute; top: 16px; left: 50%; width: 50px; height: 50px; margin-left: -25px; border-radius: 50% 50% 50% 50%; text-align: center; font-size: 1.4em; line-height: 50px; color: #fff; background-color: #999999; } .timeline > li.timeline-inverted > .timeline-panel { float: right; } .timeline > li.timeline-inverted > .timeline-panel:before { right: auto; left: -15px; border-right-width: 15px; border-left-width: 0; } .timeline > li.timeline-inverted > .timeline-panel:after { right: auto; left: -14px; border-right-width: 14px; border-left-width: 0; } .timeline-badge.primary { background-color: #2e6da4 !important; } .timeline-badge.success { background-color: #3f903f !important; } .timeline-badge.warning { background-color: #f0ad4e !important; } .timeline-badge.danger { background-color: #d9534f !important; } .timeline-badge.info { background-color: #5bc0de !important; } .timeline-title { margin-top: 0; color: inherit; } .timeline-body > p, .timeline-body > ul { margin-bottom: 0; } .timeline-body > p + p { margin-top: 5px; } @media (max-width: 767px) { ul.timeline:before { left: 40px; } ul.timeline > li > .timeline-panel { width: calc(100% - 90px); width: -moz-calc(100% - 90px); width: -webkit-calc(100% - 90px); } ul.timeline > li > .timeline-badge { top: 16px; left: 15px; margin-left: 0; } ul.timeline > li > .timeline-panel { float: right; } ul.timeline > li > .timeline-panel:before { right: auto; left: -15px; border-right-width: 15px; border-left-width: 0; } ul.timeline > li > .timeline-panel:after { right: auto; left: -14px; border-right-width: 14px; border-left-width: 0; } } /* * Utilities */ /* Huge text */ .huge { font-size: 40px; }
0.507324
0.105119
html, body { height: 100%; } body { margin: 0px; padding: 0px; background: #1a1a1a; font-family: 'Open Sans', sans-serif; font-size: 13px; color: #000000; } h1, h2, h3 { margin: 0; padding: 0; } p, ol, ul { margin-top: 0px; } p { line-height: 180%; } strong { } a { color: #0000FF; } a:hover { text-decoration: none; } a img { border: none; } img.border { } img.alignleft { float: left; } img.alignright { float: right; } img.aligncenter { margin: 0px auto; } hr { display: none; } /** WRAPPER */ #wrapper { overflow: hidden; padding: 5em 0em; background: #f2f2f2; } .container { width: 1000px; margin: 0px auto; } .clearfix { clear: both; } .heading-title { display: block; margin-bottom: 3em; padding-bottom: 1em; border-bottom: 1px solid #e5e5e6; font-size: 2.00em; font-weight: 600; } /** HEADER */ #header { overflow: hidden; height: 100px; } /** LOGO */ #logo { float: left; width: 400px; height: 100px; } #logo h1, #logo p { margin: 0px; line-height: normal; } #logo h1 a { display: block; line-height: 100px; text-decoration: none; font-weight: 400; color: #FFFFFF; } #logo h1 span { font-weight: 700; } /** MENU */ #menu { float: right; width: 600px; height: 100px; } #menu ul { float: right; margin: 0px; padding: 0px; list-style: none; line-height: normal; } #menu li { float: left; padding-left: 40px; } #menu a { display: inline-block; line-height: 100px; text-decoration: none; text-transform: uppercase; color: #a2a2a2; } #menu a:hover { text-decoration: underline; color: #d0d0d0; } /** PAGE */ #page { overflow: hidden; } #page .heading-title { margin-bottom: 2em !important; } /** CONTENT */ #content { } #content img { display: block; width: 100%; margin-bottom: 2em; } #cbox1 { float: left; width: 320px; margin-right: 20px; } #cbox2 { float: left; width: 320px; } #cbox3 { float: right; width: 320px; } /** SIDEBAR */ #sidebar { } /* Footer */ #footer { overflow: hidden; padding: 5em 0em; color: #777777; } #footer p { font-size: 12px; } #footer a { color: #999999; } /** Banner Wrapper */ #banner-wrapper { overflow: hidden; background: #0747dd; } #banner { overflow: hidden; width: 680px; height: 366px; padding: 50px 320px 0px 0px; background: url(https://templated.co/items/demos/simplecorp/images/pic01.jpg) no-repeat right top; color: #FFFFFF; } #banner h2 { padding-bottom: 20px; letter-spacing: -1px; font-size: 2.20em; font-weight: 400; } #banner h2 span { font-weight: 700; } #banner p { font-size: 14px; color: #cddaf8; } #banner a { color: #FFFFFF; } /* Featured */ #featured-wrapper { overflow: hidden; padding: 5em 0em; background: #FFFFFF; border-top: 1px solid #e5e5e5; } #featured p { padding-left: 60px; } #featured .title { display: block; padding-left: 60px; padding-bottom: 1em; font-size: 1.80em; font-weight: 600; color: #333333; } #featured .title01 { background: url(https://templated.co/items/demos/simplecorp/images/icon01.png) no-repeat left top; } #featured .title02 { background: url(https://templated.co/items/demos/simplecorp/images/icon02.png) no-repeat left top; } #featured .title03 { background: url(https://templated.co/items/demos/simplecorp/images/icon03.png) no-repeat left top; } #featured .title04 { background: url(https://templated.co/items/demos/simplecorp/images/icon04.png) no-repeat left top; } #featured .box-content { overflow: hidden; margin-bottom: 4em; } #featured #fbox1 { float: left; width: 470px; } #featured #fbox2 { float: right; width: 470px; } /** List Style */ ul.style1 .first { margin-left: 0px; } ol.style1 { margin: 0px 0px 0px 0px; padding: 0px; list-style: inside decimal; font-size: 14px; color: #cddaf8; } ol.style1 li { padding: 4px 0px; } ol.style1 a { text-decoration: none; color: #cddaf8; } ol.style1 a:hover { text-decoration: underline; } .button-style { clear: both; display: inline-block; margin-top: 30px; padding: 10px 20px; background: #af2c54; text-decoration: none; font-size: 14px; color: #FFFFFF; } .button-style:hover { background: #982648; } .posted-style { display: inline-block; padding: 10px 20px; background: #af2c54; text-decoration: none; font-size: 14px; color: #FFFFFF; }
captures/capture-041-apacheWget/config/templated.co/items/demos/simplecorp/default.css
html, body { height: 100%; } body { margin: 0px; padding: 0px; background: #1a1a1a; font-family: 'Open Sans', sans-serif; font-size: 13px; color: #000000; } h1, h2, h3 { margin: 0; padding: 0; } p, ol, ul { margin-top: 0px; } p { line-height: 180%; } strong { } a { color: #0000FF; } a:hover { text-decoration: none; } a img { border: none; } img.border { } img.alignleft { float: left; } img.alignright { float: right; } img.aligncenter { margin: 0px auto; } hr { display: none; } /** WRAPPER */ #wrapper { overflow: hidden; padding: 5em 0em; background: #f2f2f2; } .container { width: 1000px; margin: 0px auto; } .clearfix { clear: both; } .heading-title { display: block; margin-bottom: 3em; padding-bottom: 1em; border-bottom: 1px solid #e5e5e6; font-size: 2.00em; font-weight: 600; } /** HEADER */ #header { overflow: hidden; height: 100px; } /** LOGO */ #logo { float: left; width: 400px; height: 100px; } #logo h1, #logo p { margin: 0px; line-height: normal; } #logo h1 a { display: block; line-height: 100px; text-decoration: none; font-weight: 400; color: #FFFFFF; } #logo h1 span { font-weight: 700; } /** MENU */ #menu { float: right; width: 600px; height: 100px; } #menu ul { float: right; margin: 0px; padding: 0px; list-style: none; line-height: normal; } #menu li { float: left; padding-left: 40px; } #menu a { display: inline-block; line-height: 100px; text-decoration: none; text-transform: uppercase; color: #a2a2a2; } #menu a:hover { text-decoration: underline; color: #d0d0d0; } /** PAGE */ #page { overflow: hidden; } #page .heading-title { margin-bottom: 2em !important; } /** CONTENT */ #content { } #content img { display: block; width: 100%; margin-bottom: 2em; } #cbox1 { float: left; width: 320px; margin-right: 20px; } #cbox2 { float: left; width: 320px; } #cbox3 { float: right; width: 320px; } /** SIDEBAR */ #sidebar { } /* Footer */ #footer { overflow: hidden; padding: 5em 0em; color: #777777; } #footer p { font-size: 12px; } #footer a { color: #999999; } /** Banner Wrapper */ #banner-wrapper { overflow: hidden; background: #0747dd; } #banner { overflow: hidden; width: 680px; height: 366px; padding: 50px 320px 0px 0px; background: url(https://templated.co/items/demos/simplecorp/images/pic01.jpg) no-repeat right top; color: #FFFFFF; } #banner h2 { padding-bottom: 20px; letter-spacing: -1px; font-size: 2.20em; font-weight: 400; } #banner h2 span { font-weight: 700; } #banner p { font-size: 14px; color: #cddaf8; } #banner a { color: #FFFFFF; } /* Featured */ #featured-wrapper { overflow: hidden; padding: 5em 0em; background: #FFFFFF; border-top: 1px solid #e5e5e5; } #featured p { padding-left: 60px; } #featured .title { display: block; padding-left: 60px; padding-bottom: 1em; font-size: 1.80em; font-weight: 600; color: #333333; } #featured .title01 { background: url(https://templated.co/items/demos/simplecorp/images/icon01.png) no-repeat left top; } #featured .title02 { background: url(https://templated.co/items/demos/simplecorp/images/icon02.png) no-repeat left top; } #featured .title03 { background: url(https://templated.co/items/demos/simplecorp/images/icon03.png) no-repeat left top; } #featured .title04 { background: url(https://templated.co/items/demos/simplecorp/images/icon04.png) no-repeat left top; } #featured .box-content { overflow: hidden; margin-bottom: 4em; } #featured #fbox1 { float: left; width: 470px; } #featured #fbox2 { float: right; width: 470px; } /** List Style */ ul.style1 .first { margin-left: 0px; } ol.style1 { margin: 0px 0px 0px 0px; padding: 0px; list-style: inside decimal; font-size: 14px; color: #cddaf8; } ol.style1 li { padding: 4px 0px; } ol.style1 a { text-decoration: none; color: #cddaf8; } ol.style1 a:hover { text-decoration: underline; } .button-style { clear: both; display: inline-block; margin-top: 30px; padding: 10px 20px; background: #af2c54; text-decoration: none; font-size: 14px; color: #FFFFFF; } .button-style:hover { background: #982648; } .posted-style { display: inline-block; padding: 10px 20px; background: #af2c54; text-decoration: none; font-size: 14px; color: #FFFFFF; }
0.260954
0.040865
:root { --color-primary: #fe5444; --color-secondary: #fb7274; } body, html { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: white; height: 100%; text-align: center; overflow: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body { background-image: linear-gradient(var(--color-primary), #f53148); } body.is-pause { background-image: linear-gradient(#62b693, #49a066); } body.is-long-pause { background-image: linear-gradient(#daf079, #d6ca5d); } body.is-null { background-image: linear-gradient(#e1e7e5, #0f0f0f); } *, :before, :after { box-sizing: border-box; } audio, canvas, iframe, img, svg, video { vertical-align: middle; } img, video, object { height: auto; max-width: 100%; } figure { margin: 0; } .progress { width: 230px; height: 230px; position: absolute; margin-top: -10px; top: 50%; left: 50%; transform: translate(-50%, -50%); } .progress__circle { stroke: var(--color-secondary); stroke-width: 4px; stroke-dasharray: 0; fill: none; } .is-pause .progress__circle { stroke: #abcea2; } .is-long-pause .progress__circle { stroke: #c0b443; } .is-null .progress__circle { stroke: #bcc2bb; } .progress__current { stroke-width: 5px; stroke: #fff; fill: none; transition: stroke-dashoffset 1s cubic-bezier(0.43, 0.41, 0.22, 0.91); -webkit-transform-origin: center center; transform-origin: center center; -webkit-transform: rotate(-90deg) scaleX(-1); transform: rotate(-90deg) scaleX(-1); } .progress__time { fill: #fff; font-size: 16px; } .icon { cursor: pointer; } .icon--audio { position: absolute; top: 20px; left: 20px; } .icon--audio.is-active { color: aqua; } .icon--settings { position: absolute; top: 20px; right: 20px; z-index: 2; } .icon--settings.fa-times-circle { color: black; } .step { position: absolute; top: 20px; width: 100%; } .step__total { font-weight: bold; font-size: 14px; } .step__name { font-weight: bold; font-size: 14px; } .button { font-size: 12px; border: 1px solid white; background-color: white; padding: 10px 30px; border-style: solid; color: black; display: inline-block; vertical-align: middle; white-space: nowrap; cursor: pointer; transition: all 0.15s; text-decoration: none; text-align: center; font-weight: bold; border-radius: 1000px; } .button:hover { background-color: var(--color-secondary); color: black; border-color: var(--color-secondary); } .button--primary { position: absolute; bottom: 24px; left: 50%; transform: translate(-50%, 0); } .button--secondary { color: white; border: 1px solid var(--color-primary); background-color: var(--color-primary); } .panel { background-color: #fff2f2; padding: 18px 32px; height: 100vh; position: relative; z-index: 1; color: black; transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1); transform: translate(0, -100%); } .panel__title { display: block; margin-bottom: 24px; color: var(--color-primary); } .panel.is-active { transform: translate(0, 0); } .panel__option { margin-bottom: 25px; text-align: left; } .panel__label { /*display: inline-block; */ /*width: 48%; */ font-size: 12px; font-weight: bold; margin-bottom: 5px; } .panel__input { /* display: inline-block; */ /* width: 40%; */ border: 0; padding: 10px 6px; height: auto; width: 100%; color: grey; font-weight: bold; font-size: 12px; } .panel__version { position: absolute; bottom: 0; left: 0; text-align: center; width: 100%; color: grey; font-size: 12px; } .panel__update { position: absolute; bottom: 20px; left: 0; text-align: center; width: 100%; color: grey; font-size: 12px; }
src/styles.css
:root { --color-primary: #fe5444; --color-secondary: #fb7274; } body, html { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: white; height: 100%; text-align: center; overflow: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body { background-image: linear-gradient(var(--color-primary), #f53148); } body.is-pause { background-image: linear-gradient(#62b693, #49a066); } body.is-long-pause { background-image: linear-gradient(#daf079, #d6ca5d); } body.is-null { background-image: linear-gradient(#e1e7e5, #0f0f0f); } *, :before, :after { box-sizing: border-box; } audio, canvas, iframe, img, svg, video { vertical-align: middle; } img, video, object { height: auto; max-width: 100%; } figure { margin: 0; } .progress { width: 230px; height: 230px; position: absolute; margin-top: -10px; top: 50%; left: 50%; transform: translate(-50%, -50%); } .progress__circle { stroke: var(--color-secondary); stroke-width: 4px; stroke-dasharray: 0; fill: none; } .is-pause .progress__circle { stroke: #abcea2; } .is-long-pause .progress__circle { stroke: #c0b443; } .is-null .progress__circle { stroke: #bcc2bb; } .progress__current { stroke-width: 5px; stroke: #fff; fill: none; transition: stroke-dashoffset 1s cubic-bezier(0.43, 0.41, 0.22, 0.91); -webkit-transform-origin: center center; transform-origin: center center; -webkit-transform: rotate(-90deg) scaleX(-1); transform: rotate(-90deg) scaleX(-1); } .progress__time { fill: #fff; font-size: 16px; } .icon { cursor: pointer; } .icon--audio { position: absolute; top: 20px; left: 20px; } .icon--audio.is-active { color: aqua; } .icon--settings { position: absolute; top: 20px; right: 20px; z-index: 2; } .icon--settings.fa-times-circle { color: black; } .step { position: absolute; top: 20px; width: 100%; } .step__total { font-weight: bold; font-size: 14px; } .step__name { font-weight: bold; font-size: 14px; } .button { font-size: 12px; border: 1px solid white; background-color: white; padding: 10px 30px; border-style: solid; color: black; display: inline-block; vertical-align: middle; white-space: nowrap; cursor: pointer; transition: all 0.15s; text-decoration: none; text-align: center; font-weight: bold; border-radius: 1000px; } .button:hover { background-color: var(--color-secondary); color: black; border-color: var(--color-secondary); } .button--primary { position: absolute; bottom: 24px; left: 50%; transform: translate(-50%, 0); } .button--secondary { color: white; border: 1px solid var(--color-primary); background-color: var(--color-primary); } .panel { background-color: #fff2f2; padding: 18px 32px; height: 100vh; position: relative; z-index: 1; color: black; transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1); transform: translate(0, -100%); } .panel__title { display: block; margin-bottom: 24px; color: var(--color-primary); } .panel.is-active { transform: translate(0, 0); } .panel__option { margin-bottom: 25px; text-align: left; } .panel__label { /*display: inline-block; */ /*width: 48%; */ font-size: 12px; font-weight: bold; margin-bottom: 5px; } .panel__input { /* display: inline-block; */ /* width: 40%; */ border: 0; padding: 10px 6px; height: auto; width: 100%; color: grey; font-weight: bold; font-size: 12px; } .panel__version { position: absolute; bottom: 0; left: 0; text-align: center; width: 100%; color: grey; font-size: 12px; } .panel__update { position: absolute; bottom: 20px; left: 0; text-align: center; width: 100%; color: grey; font-size: 12px; }
0.41834
0.107344
.view-flamechart { --transition-duration: 250ms; --transition-delay: 250ms; --transition: var(--transition-duration) ease-in-out; --frame-height: 19px; position: relative; margin: 4px 0; padding: 4px 0; background-color: rgba(136, 136, 136, .05); } .view-flamechart__content { min-height: 150px; max-height: 50vh; max-height: min(40vh, 300px); overflow: scroll; overflow-x: hidden; } .view-flamechart__content .flamechart { position: relative; height: calc(max(var(--max-depth) + 1, 10) * var(--frame-height) + 2px); } .view-flamechart .frames-group { opacity: 1; transition: var(--transition); transition-delay: var(--transition-delay); transition-property: opacity; } .view-flamechart .first-enter .frames-group { --transition-duration: 125ms; --transition-delay: 0ms; } .view-flamechart .frames-group_init-enter-state { opacity: 0; } .view-flamechart .frame { --fill-opacity: .4; position: absolute; overflow: hidden; cursor: pointer; left: calc(100% * var(--x0)); right: calc(100% - 100% * var(--x1) + 1px); top: calc(var(--depth) * var(--frame-height)); height: calc(var(--frame-height) - 1px); background-color: rgba( var(--color, 128, 128, 128), var(--fill-opacity) ); transition: var(--transition); transition-property: left, right, opacity; } .view-flamechart .frame:hover { --fill-opacity: .5; } .discovery-root-darkmode .view-flamechart .frame:hover { --fill-opacity: .3; } .view-flamechart .frame.fade { opacity: .65; } .view-flamechart .frame.selected { box-shadow: 0 0 1px 1px #ffa500bd inset; } .view-flamechart .frame-label { pointer-events: none; font-size: 10px; line-height: 16px; padding: 0 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; opacity: calc(max(var(--x1) - var(--x0) - 20 * var(--width-scale), 0) * 100000); transition: var(--transition); transition-property: opacity; } .flamechart-tooltip { padding: 5px 10px; min-width: 250px; border: none; border-radius: 3px; font-size: 12px; background: rgba(255, 255, 255, .75); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); } .discovery-root-darkmode .flamechart-tooltip { background: rgba(36, 36, 36, .8); } .flamechart-tooltip .view-badge { display: inline-block; margin: 0 0 3px -5px; padding-top: 0; padding-bottom: 1px; line-height: 19px; } .flamechart-tooltip .view-duration > .time { flex: 0; }
app/views/flamechart.css
.view-flamechart { --transition-duration: 250ms; --transition-delay: 250ms; --transition: var(--transition-duration) ease-in-out; --frame-height: 19px; position: relative; margin: 4px 0; padding: 4px 0; background-color: rgba(136, 136, 136, .05); } .view-flamechart__content { min-height: 150px; max-height: 50vh; max-height: min(40vh, 300px); overflow: scroll; overflow-x: hidden; } .view-flamechart__content .flamechart { position: relative; height: calc(max(var(--max-depth) + 1, 10) * var(--frame-height) + 2px); } .view-flamechart .frames-group { opacity: 1; transition: var(--transition); transition-delay: var(--transition-delay); transition-property: opacity; } .view-flamechart .first-enter .frames-group { --transition-duration: 125ms; --transition-delay: 0ms; } .view-flamechart .frames-group_init-enter-state { opacity: 0; } .view-flamechart .frame { --fill-opacity: .4; position: absolute; overflow: hidden; cursor: pointer; left: calc(100% * var(--x0)); right: calc(100% - 100% * var(--x1) + 1px); top: calc(var(--depth) * var(--frame-height)); height: calc(var(--frame-height) - 1px); background-color: rgba( var(--color, 128, 128, 128), var(--fill-opacity) ); transition: var(--transition); transition-property: left, right, opacity; } .view-flamechart .frame:hover { --fill-opacity: .5; } .discovery-root-darkmode .view-flamechart .frame:hover { --fill-opacity: .3; } .view-flamechart .frame.fade { opacity: .65; } .view-flamechart .frame.selected { box-shadow: 0 0 1px 1px #ffa500bd inset; } .view-flamechart .frame-label { pointer-events: none; font-size: 10px; line-height: 16px; padding: 0 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; opacity: calc(max(var(--x1) - var(--x0) - 20 * var(--width-scale), 0) * 100000); transition: var(--transition); transition-property: opacity; } .flamechart-tooltip { padding: 5px 10px; min-width: 250px; border: none; border-radius: 3px; font-size: 12px; background: rgba(255, 255, 255, .75); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); } .discovery-root-darkmode .flamechart-tooltip { background: rgba(36, 36, 36, .8); } .flamechart-tooltip .view-badge { display: inline-block; margin: 0 0 3px -5px; padding-top: 0; padding-bottom: 1px; line-height: 19px; } .flamechart-tooltip .view-duration > .time { flex: 0; }
0.722723
0.116136
.button-2Vpz_LXc { display: flex; align-items: center; height: 100%; box-sizing: border-box; cursor: default; transition: background-color 60ms ease, opacity 60ms ease, color 60ms ease; color: var(--tv-color-toolbar-button-text, #131722); } html.theme-dark .button-2Vpz_LXc { color: var(--tv-color-toolbar-button-text, #787b86); } .button-2Vpz_LXc.hover-2Vpz_LXc, .button-2Vpz_LXc:active { color: var(--tv-color-toolbar-button-text-hover, #000); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { .button-2Vpz_LXc:hover { color: var(--tv-color-toolbar-button-text-hover, #000); } } html.theme-dark .button-2Vpz_LXc.hover-2Vpz_LXc, html.theme-dark .button-2Vpz_LXc:active { color: var(--tv-color-toolbar-button-text-hover, #868993); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { html.theme-dark .button-2Vpz_LXc:hover { color: var(--tv-color-toolbar-button-text-hover, #868993); } } .button-2Vpz_LXc svg { display: block; -moz-transform: translateX(0); } .button-2Vpz_LXc.isInteractive-2Vpz_LXc { position: relative; z-index: 0; } .button-2Vpz_LXc.isInteractive-2Vpz_LXc.hover-2Vpz_LXc:before, .button-2Vpz_LXc.isInteractive-2Vpz_LXc:active:before { content: ''; display: block; position: absolute; z-index: -1; top: var(--tv-toolbar-explicit-hover-margin, 2px); right: var(--tv-toolbar-explicit-hover-margin, 2px); bottom: var(--tv-toolbar-explicit-hover-margin, 2px); left: var(--tv-toolbar-explicit-hover-margin, 2px); background-color: var(--tv-color-toolbar-button-background-hover, #f0f3fa); border-radius: var(--tv-toolbar-explicit-hover-border-radius, 2px); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { .button-2Vpz_LXc.isInteractive-2Vpz_LXc:hover:before { content: ''; display: block; position: absolute; z-index: -1; top: var(--tv-toolbar-explicit-hover-margin, 2px); right: var(--tv-toolbar-explicit-hover-margin, 2px); bottom: var(--tv-toolbar-explicit-hover-margin, 2px); left: var(--tv-toolbar-explicit-hover-margin, 2px); background-color: var(--tv-color-toolbar-button-background-hover, #f0f3fa); border-radius: var(--tv-toolbar-explicit-hover-border-radius, 2px); } } html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.hover-2Vpz_LXc:before, html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc:active:before { background-color: var(--tv-color-toolbar-button-background-hover, #2a2e39); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc:hover:before { background-color: var(--tv-color-toolbar-button-background-hover, #2a2e39); } } .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isGrouped-2Vpz_LXc { position: relative; z-index: 0; } .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isGrouped-2Vpz_LXc.hover-2Vpz_LXc:before, .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isGrouped-2Vpz_LXc:active:before { content: ''; display: block; position: absolute; z-index: -1; top: var(--tv-toolbar-explicit-hover-margin, 2px); right: var(--tv-toolbar-explicit-hover-margin, 2px); bottom: var(--tv-toolbar-explicit-hover-margin, 2px); left: var(--tv-toolbar-explicit-hover-margin, 2px); background-color: var(--tv-color-toolbar-button-background-hover, #f0f3fa); border-radius: var(--tv-toolbar-explicit-hover-border-radius, 2px); right: 0; left: 0; } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isGrouped-2Vpz_LXc:hover:before { content: ''; display: block; position: absolute; z-index: -1; top: var(--tv-toolbar-explicit-hover-margin, 2px); right: var(--tv-toolbar-explicit-hover-margin, 2px); bottom: var(--tv-toolbar-explicit-hover-margin, 2px); left: var(--tv-toolbar-explicit-hover-margin, 2px); background-color: var(--tv-color-toolbar-button-background-hover, #f0f3fa); border-radius: var(--tv-toolbar-explicit-hover-border-radius, 2px); right: 0; left: 0; } } html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isGrouped-2Vpz_LXc.hover-2Vpz_LXc:before, html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isGrouped-2Vpz_LXc:active:before { background-color: var(--tv-color-toolbar-button-background-hover, #2a2e39); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isGrouped-2Vpz_LXc:hover:before { background-color: var(--tv-color-toolbar-button-background-hover, #2a2e39); } } .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc { color: var(--tv-color-toolbar-button-text-active, #2196f3); } html.theme-sa .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc { color: var(--tv-color-toolbar-button-text-active, #ff7200); } html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc { color: var(--tv-color-toolbar-button-text-active, #1976d2); } .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc.hover-2Vpz_LXc, .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc:active { color: var(--tv-color-toolbar-button-text-active-hover, #1e88e5); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc:hover { color: var(--tv-color-toolbar-button-text-active-hover, #1e88e5); } } html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc.hover-2Vpz_LXc, html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc:active { color: var(--tv-color-toolbar-button-text-active-hover, #1e88e5); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc:hover { color: var(--tv-color-toolbar-button-text-active-hover, #1e88e5); } } .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc.hover-2Vpz_LXc:before, .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc:active:before, .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc:before { content: ''; display: block; position: absolute; z-index: -1; top: var(--tv-toolbar-opened-element-hover-margin-top, 0); right: var(--tv-toolbar-opened-element-hover-margin-right, 0); bottom: var(--tv-toolbar-opened-element-hover-margin-bottom, 0); left: var(--tv-toolbar-opened-element-hover-margin-left, 0); border-radius: var(--tv-toolbar-opened-element-hover-border-radius, 0); background-color: var(--tv-color-toolbar-button-background-expanded, #f0f3fa); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc:hover:before { content: ''; display: block; position: absolute; z-index: -1; top: var(--tv-toolbar-opened-element-hover-margin-top, 0); right: var(--tv-toolbar-opened-element-hover-margin-right, 0); bottom: var(--tv-toolbar-opened-element-hover-margin-bottom, 0); left: var(--tv-toolbar-opened-element-hover-margin-left, 0); border-radius: var(--tv-toolbar-opened-element-hover-border-radius, 0); background-color: var( --tv-color-toolbar-button-background-expanded, #f0f3fa ); } } html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc.hover-2Vpz_LXc:before, html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc:active:before, html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc:before { background-color: var(--tv-color-toolbar-button-background-expanded, #2a2e39); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc:hover:before { background-color: var( --tv-color-toolbar-button-background-expanded, #2a2e39 ); } } .button-2Vpz_LXc.isDisabled-2Vpz_LXc { opacity: 0.3; } .button-2Vpz_LXc.isDisabled-2Vpz_LXc, .button-2Vpz_LXc.isDisabled-2Vpz_LXc:active { background-color: transparent; } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { .button-2Vpz_LXc.isDisabled-2Vpz_LXc:hover { background-color: transparent; } } .button-2Vpz_LXc.isDisabled-2Vpz_LXc.isActive-2Vpz_LXc { opacity: 1; color: var(--tv-color-toolbar-button-text-active, #2196f3); } html.theme-sa .button-2Vpz_LXc.isDisabled-2Vpz_LXc.isActive-2Vpz_LXc { color: var(--tv-color-toolbar-button-text-active, #ff7200); } html.theme-dark .button-2Vpz_LXc.isDisabled-2Vpz_LXc.isActive-2Vpz_LXc { color: var(--tv-color-toolbar-button-text-active, #1976d2); } .icon-2Vpz_LXc + .text-2Vpz_LXc, .text-2Vpz_LXc + .icon-2Vpz_LXc { margin-left: 2px; }
src/charting_library/bundles/22.f7905c9be5c57c477d05.css
.button-2Vpz_LXc { display: flex; align-items: center; height: 100%; box-sizing: border-box; cursor: default; transition: background-color 60ms ease, opacity 60ms ease, color 60ms ease; color: var(--tv-color-toolbar-button-text, #131722); } html.theme-dark .button-2Vpz_LXc { color: var(--tv-color-toolbar-button-text, #787b86); } .button-2Vpz_LXc.hover-2Vpz_LXc, .button-2Vpz_LXc:active { color: var(--tv-color-toolbar-button-text-hover, #000); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { .button-2Vpz_LXc:hover { color: var(--tv-color-toolbar-button-text-hover, #000); } } html.theme-dark .button-2Vpz_LXc.hover-2Vpz_LXc, html.theme-dark .button-2Vpz_LXc:active { color: var(--tv-color-toolbar-button-text-hover, #868993); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { html.theme-dark .button-2Vpz_LXc:hover { color: var(--tv-color-toolbar-button-text-hover, #868993); } } .button-2Vpz_LXc svg { display: block; -moz-transform: translateX(0); } .button-2Vpz_LXc.isInteractive-2Vpz_LXc { position: relative; z-index: 0; } .button-2Vpz_LXc.isInteractive-2Vpz_LXc.hover-2Vpz_LXc:before, .button-2Vpz_LXc.isInteractive-2Vpz_LXc:active:before { content: ''; display: block; position: absolute; z-index: -1; top: var(--tv-toolbar-explicit-hover-margin, 2px); right: var(--tv-toolbar-explicit-hover-margin, 2px); bottom: var(--tv-toolbar-explicit-hover-margin, 2px); left: var(--tv-toolbar-explicit-hover-margin, 2px); background-color: var(--tv-color-toolbar-button-background-hover, #f0f3fa); border-radius: var(--tv-toolbar-explicit-hover-border-radius, 2px); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { .button-2Vpz_LXc.isInteractive-2Vpz_LXc:hover:before { content: ''; display: block; position: absolute; z-index: -1; top: var(--tv-toolbar-explicit-hover-margin, 2px); right: var(--tv-toolbar-explicit-hover-margin, 2px); bottom: var(--tv-toolbar-explicit-hover-margin, 2px); left: var(--tv-toolbar-explicit-hover-margin, 2px); background-color: var(--tv-color-toolbar-button-background-hover, #f0f3fa); border-radius: var(--tv-toolbar-explicit-hover-border-radius, 2px); } } html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.hover-2Vpz_LXc:before, html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc:active:before { background-color: var(--tv-color-toolbar-button-background-hover, #2a2e39); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc:hover:before { background-color: var(--tv-color-toolbar-button-background-hover, #2a2e39); } } .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isGrouped-2Vpz_LXc { position: relative; z-index: 0; } .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isGrouped-2Vpz_LXc.hover-2Vpz_LXc:before, .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isGrouped-2Vpz_LXc:active:before { content: ''; display: block; position: absolute; z-index: -1; top: var(--tv-toolbar-explicit-hover-margin, 2px); right: var(--tv-toolbar-explicit-hover-margin, 2px); bottom: var(--tv-toolbar-explicit-hover-margin, 2px); left: var(--tv-toolbar-explicit-hover-margin, 2px); background-color: var(--tv-color-toolbar-button-background-hover, #f0f3fa); border-radius: var(--tv-toolbar-explicit-hover-border-radius, 2px); right: 0; left: 0; } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isGrouped-2Vpz_LXc:hover:before { content: ''; display: block; position: absolute; z-index: -1; top: var(--tv-toolbar-explicit-hover-margin, 2px); right: var(--tv-toolbar-explicit-hover-margin, 2px); bottom: var(--tv-toolbar-explicit-hover-margin, 2px); left: var(--tv-toolbar-explicit-hover-margin, 2px); background-color: var(--tv-color-toolbar-button-background-hover, #f0f3fa); border-radius: var(--tv-toolbar-explicit-hover-border-radius, 2px); right: 0; left: 0; } } html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isGrouped-2Vpz_LXc.hover-2Vpz_LXc:before, html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isGrouped-2Vpz_LXc:active:before { background-color: var(--tv-color-toolbar-button-background-hover, #2a2e39); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isGrouped-2Vpz_LXc:hover:before { background-color: var(--tv-color-toolbar-button-background-hover, #2a2e39); } } .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc { color: var(--tv-color-toolbar-button-text-active, #2196f3); } html.theme-sa .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc { color: var(--tv-color-toolbar-button-text-active, #ff7200); } html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc { color: var(--tv-color-toolbar-button-text-active, #1976d2); } .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc.hover-2Vpz_LXc, .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc:active { color: var(--tv-color-toolbar-button-text-active-hover, #1e88e5); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc:hover { color: var(--tv-color-toolbar-button-text-active-hover, #1e88e5); } } html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc.hover-2Vpz_LXc, html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc:active { color: var(--tv-color-toolbar-button-text-active-hover, #1e88e5); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isActive-2Vpz_LXc:hover { color: var(--tv-color-toolbar-button-text-active-hover, #1e88e5); } } .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc.hover-2Vpz_LXc:before, .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc:active:before, .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc:before { content: ''; display: block; position: absolute; z-index: -1; top: var(--tv-toolbar-opened-element-hover-margin-top, 0); right: var(--tv-toolbar-opened-element-hover-margin-right, 0); bottom: var(--tv-toolbar-opened-element-hover-margin-bottom, 0); left: var(--tv-toolbar-opened-element-hover-margin-left, 0); border-radius: var(--tv-toolbar-opened-element-hover-border-radius, 0); background-color: var(--tv-color-toolbar-button-background-expanded, #f0f3fa); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc:hover:before { content: ''; display: block; position: absolute; z-index: -1; top: var(--tv-toolbar-opened-element-hover-margin-top, 0); right: var(--tv-toolbar-opened-element-hover-margin-right, 0); bottom: var(--tv-toolbar-opened-element-hover-margin-bottom, 0); left: var(--tv-toolbar-opened-element-hover-margin-left, 0); border-radius: var(--tv-toolbar-opened-element-hover-border-radius, 0); background-color: var( --tv-color-toolbar-button-background-expanded, #f0f3fa ); } } html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc.hover-2Vpz_LXc:before, html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc:active:before, html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc:before { background-color: var(--tv-color-toolbar-button-background-expanded, #2a2e39); } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { html.theme-dark .button-2Vpz_LXc.isInteractive-2Vpz_LXc.isOpened-2Vpz_LXc:hover:before { background-color: var( --tv-color-toolbar-button-background-expanded, #2a2e39 ); } } .button-2Vpz_LXc.isDisabled-2Vpz_LXc { opacity: 0.3; } .button-2Vpz_LXc.isDisabled-2Vpz_LXc, .button-2Vpz_LXc.isDisabled-2Vpz_LXc:active { background-color: transparent; } @media (any-hover: hover), (min--moz-device-pixel-ratio: 0) { .button-2Vpz_LXc.isDisabled-2Vpz_LXc:hover { background-color: transparent; } } .button-2Vpz_LXc.isDisabled-2Vpz_LXc.isActive-2Vpz_LXc { opacity: 1; color: var(--tv-color-toolbar-button-text-active, #2196f3); } html.theme-sa .button-2Vpz_LXc.isDisabled-2Vpz_LXc.isActive-2Vpz_LXc { color: var(--tv-color-toolbar-button-text-active, #ff7200); } html.theme-dark .button-2Vpz_LXc.isDisabled-2Vpz_LXc.isActive-2Vpz_LXc { color: var(--tv-color-toolbar-button-text-active, #1976d2); } .icon-2Vpz_LXc + .text-2Vpz_LXc, .text-2Vpz_LXc + .icon-2Vpz_LXc { margin-left: 2px; }
0.505371
0.059976
.imcontainer, .imcontainer ul, .imcontainer li, .imcontainer span, .imcontainer a, { margin: 0; padding: 0; border: none; outline: none; font-size: 12px; } .imcontainer { overflow: hidden } .imcontainer .imnavbar { height: 32px; margin: 0 0 5px 0; } .imcontainer .imnavbar ul li { min-width: 50px; max-width: 100px; height: 30px; float: left; /*border-right:1px solid #03F;*/ text-align: center; } .imcontainer .imnavbar ul li a { display: block; padding-top: 5px; } /*.imcontainer .imnavbar li a.usergroup{*/ /*background:url(icons/user1.png) center no-repeat;*/ /*}*/ /*.imcontainer .imnavbar li a.group{*/ /*background:url(icons/user_group.png) center no-repeat;*/ /*}*/ /*.imcontainer .imnavbar li a.contact{*/ /*background:url(icons/send.png) center no-repeat;*/ /*}*/ .imcontainer .imlistbox { width: 600px; position: relative; } .imcontainer ul.accordion { width: 262px; float: left; } /* Layout & Style */ .imcontainer .accordion li > a { display: block; position: relative; min-width: 110px; padding: 0 10px 0 40px; height: 32px; line-height: 32px; border-bottom: 1px solid transparent; background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .3), rgba(255, 255, 255, .6)); /* FF1.6+ */ background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .3)), to(rgba(255, 255, 255, .6))); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .3), rgba(255, 255, 255, .6)); /* Chrome 10+, Saf5.1+, iOS 5+ */ background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .3), rgba(255, 255, 255, .6)); /* IE10 */ background-image: -o-linear-gradient(top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .3)); /* Opera 11.10+ */ background-image: linear-gradient(top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .3)); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffffff, endColorstr=#ff000000, enabled=true, gradientType='1'); /* IE6–IE9 */ } .imcontainer .accordion > li:hover > a, .imcontainer .accordion > li:target > a, .imcontainer .accordion > li > a.active { color: #3e5706; /*background: url(../img/active.png) repeat-x;*/ border-bottom: 1px solid #F00; background-image: -moz-linear-gradient(top, rgba(64, 159, 255, .2), rgba(64, 159, 255, .8)); /* FF1.6+ */ background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(rgba(64, 159, 255, .8))); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient(top, rgba(64, 159, 255, .2), rgba(64, 159, 255, .8)); /* Chrome 10+, Saf5.1+, iOS 5+ */ background-image: -ms-linear-gradient(top, rgba(64, 159, 255, .2), rgba(64, 159, 255, .8)); /* IE10 */ background-image: -o-linear-gradient(top, rgba(64, 159, 255, .2), rgba(64, 159, 255, .8)); /* Opera 11.10+ */ background-image: linear-gradient(top, rgba(64, 159, 255, .2), rgba(64, 159, 255, .8)); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffffff, endColorstr=#ff000000, enabled=true, gradientType='1'); /* IE6–IE9 */ } .imcontainer .accordion li > a span { display: block; position: absolute; top: 7px; right: 0; padding: 0 10px; margin-right: 10px; color: #FFF; font: normal bold 12px/18px Arial, sans-serif; background: #404247; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .2), 1px 1px 1px rgba(255, 255, 255, .1); -moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .2), 1px 1px 1px rgba(255, 255, 255, .1); box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .2), 1px 1px 1px rgba(255, 255, 255, .1); } .imcontainer .accordion > li:hover > a span, .imcontainer .accordion > li:target > a span, .imcontainer .accordion > li > a.active span { color: #fdfdfd; text-shadow: 0px 1px 0px rgba(0, 0, 0, .35); background: #3e5706; } /* Images */ .imcontainer .accordion > li > a:before { position: absolute; top: 0; left: 0; content: ''; width: 24px; height: 24px; margin: 4px 8px; background-repeat: no-repeat; background-image: url(../img/icons.png); background-position: 0px 0px; } /* Sub Menu */ .imcontainer .accordion .sub-menu li > a { color: #797979; text-shadow: 1px 1px 0px rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .0); -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, .1), 0px 1px 0px 0px rgba(0, 0, 0, .1); -moz-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, .1), 0px 1px 0px 0px rgba(0, 0, 0, .1); box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, .1), 0px 1px 0px 0px rgba(0, 0, 0, .1); } .imcontainer .accordion .sub-menu li:hover a { background: #efefef; } .imcontainer .accordion .sub-menu li:last-child a { border: none; } .imcontainer .accordion .sub-menu li > a span { color: #797979; text-shadow: 1px 1px 0px rgba(255, 255, 255, .2); background: transparent; border: 1px solid #c9c9c9; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .imcontainer .accordion .sub-menu em { position: absolute; top: 0; left: 0; margin-left: 6px; color: #a6a6a6; font: normal 10px/32px Arial, sans-serif; } .imcontainer .accordion .sub-menu em img { border-radius: 14px; box-shadow: 0 0 6px hsla(0, 27%, 42%, .5); width: 26px; margin-top: 3px; height: 26px; } /* Functionality */ .imcontainer .accordion li > .sub-menu { display: none; } .imcontainer .accordion li:target > .sub-menu { display: block; } .userheader li { float: left; } .userheader label { position: absolute; width: 14px; height: 14px; bottom: 6px; right: 6px; background: url(im/online.png); } .userheader li.icon { width: 80px; position: relative } .userheader li.headerright strong { font-size: 16px; font-weight: bold; color:rgba(0,0,0,.8); ; text-shadow:2px 2px 1px rgba(255,255,255,.6); } .userheader li.headerright p.shuoshuo { font-size: 12px; width: 160px; border: 1px solid rgba(255,255,255,.6); padding: 6px; 3px 6px 3px; border-radius: 8px; margin: 5px 0 0 5px; word-break: break-all; } .userheader li.headerright strong { margin-left: 6px; } .userheader img { background: rgba(255, 255, 255, .6); padding: 5px; height: 70px; width: 70px; border-radius: 70px; box-shadow: 0 0 6px hsla(0, 27%, 42%, .5); }
public/default/imlist.css
.imcontainer, .imcontainer ul, .imcontainer li, .imcontainer span, .imcontainer a, { margin: 0; padding: 0; border: none; outline: none; font-size: 12px; } .imcontainer { overflow: hidden } .imcontainer .imnavbar { height: 32px; margin: 0 0 5px 0; } .imcontainer .imnavbar ul li { min-width: 50px; max-width: 100px; height: 30px; float: left; /*border-right:1px solid #03F;*/ text-align: center; } .imcontainer .imnavbar ul li a { display: block; padding-top: 5px; } /*.imcontainer .imnavbar li a.usergroup{*/ /*background:url(icons/user1.png) center no-repeat;*/ /*}*/ /*.imcontainer .imnavbar li a.group{*/ /*background:url(icons/user_group.png) center no-repeat;*/ /*}*/ /*.imcontainer .imnavbar li a.contact{*/ /*background:url(icons/send.png) center no-repeat;*/ /*}*/ .imcontainer .imlistbox { width: 600px; position: relative; } .imcontainer ul.accordion { width: 262px; float: left; } /* Layout & Style */ .imcontainer .accordion li > a { display: block; position: relative; min-width: 110px; padding: 0 10px 0 40px; height: 32px; line-height: 32px; border-bottom: 1px solid transparent; background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .3), rgba(255, 255, 255, .6)); /* FF1.6+ */ background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .3)), to(rgba(255, 255, 255, .6))); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .3), rgba(255, 255, 255, .6)); /* Chrome 10+, Saf5.1+, iOS 5+ */ background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .3), rgba(255, 255, 255, .6)); /* IE10 */ background-image: -o-linear-gradient(top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .3)); /* Opera 11.10+ */ background-image: linear-gradient(top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .3)); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffffff, endColorstr=#ff000000, enabled=true, gradientType='1'); /* IE6–IE9 */ } .imcontainer .accordion > li:hover > a, .imcontainer .accordion > li:target > a, .imcontainer .accordion > li > a.active { color: #3e5706; /*background: url(../img/active.png) repeat-x;*/ border-bottom: 1px solid #F00; background-image: -moz-linear-gradient(top, rgba(64, 159, 255, .2), rgba(64, 159, 255, .8)); /* FF1.6+ */ background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(rgba(64, 159, 255, .8))); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient(top, rgba(64, 159, 255, .2), rgba(64, 159, 255, .8)); /* Chrome 10+, Saf5.1+, iOS 5+ */ background-image: -ms-linear-gradient(top, rgba(64, 159, 255, .2), rgba(64, 159, 255, .8)); /* IE10 */ background-image: -o-linear-gradient(top, rgba(64, 159, 255, .2), rgba(64, 159, 255, .8)); /* Opera 11.10+ */ background-image: linear-gradient(top, rgba(64, 159, 255, .2), rgba(64, 159, 255, .8)); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffffff, endColorstr=#ff000000, enabled=true, gradientType='1'); /* IE6–IE9 */ } .imcontainer .accordion li > a span { display: block; position: absolute; top: 7px; right: 0; padding: 0 10px; margin-right: 10px; color: #FFF; font: normal bold 12px/18px Arial, sans-serif; background: #404247; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .2), 1px 1px 1px rgba(255, 255, 255, .1); -moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .2), 1px 1px 1px rgba(255, 255, 255, .1); box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .2), 1px 1px 1px rgba(255, 255, 255, .1); } .imcontainer .accordion > li:hover > a span, .imcontainer .accordion > li:target > a span, .imcontainer .accordion > li > a.active span { color: #fdfdfd; text-shadow: 0px 1px 0px rgba(0, 0, 0, .35); background: #3e5706; } /* Images */ .imcontainer .accordion > li > a:before { position: absolute; top: 0; left: 0; content: ''; width: 24px; height: 24px; margin: 4px 8px; background-repeat: no-repeat; background-image: url(../img/icons.png); background-position: 0px 0px; } /* Sub Menu */ .imcontainer .accordion .sub-menu li > a { color: #797979; text-shadow: 1px 1px 0px rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .0); -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, .1), 0px 1px 0px 0px rgba(0, 0, 0, .1); -moz-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, .1), 0px 1px 0px 0px rgba(0, 0, 0, .1); box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, .1), 0px 1px 0px 0px rgba(0, 0, 0, .1); } .imcontainer .accordion .sub-menu li:hover a { background: #efefef; } .imcontainer .accordion .sub-menu li:last-child a { border: none; } .imcontainer .accordion .sub-menu li > a span { color: #797979; text-shadow: 1px 1px 0px rgba(255, 255, 255, .2); background: transparent; border: 1px solid #c9c9c9; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .imcontainer .accordion .sub-menu em { position: absolute; top: 0; left: 0; margin-left: 6px; color: #a6a6a6; font: normal 10px/32px Arial, sans-serif; } .imcontainer .accordion .sub-menu em img { border-radius: 14px; box-shadow: 0 0 6px hsla(0, 27%, 42%, .5); width: 26px; margin-top: 3px; height: 26px; } /* Functionality */ .imcontainer .accordion li > .sub-menu { display: none; } .imcontainer .accordion li:target > .sub-menu { display: block; } .userheader li { float: left; } .userheader label { position: absolute; width: 14px; height: 14px; bottom: 6px; right: 6px; background: url(im/online.png); } .userheader li.icon { width: 80px; position: relative } .userheader li.headerright strong { font-size: 16px; font-weight: bold; color:rgba(0,0,0,.8); ; text-shadow:2px 2px 1px rgba(255,255,255,.6); } .userheader li.headerright p.shuoshuo { font-size: 12px; width: 160px; border: 1px solid rgba(255,255,255,.6); padding: 6px; 3px 6px 3px; border-radius: 8px; margin: 5px 0 0 5px; word-break: break-all; } .userheader li.headerright strong { margin-left: 6px; } .userheader img { background: rgba(255, 255, 255, .6); padding: 5px; height: 70px; width: 70px; border-radius: 70px; box-shadow: 0 0 6px hsla(0, 27%, 42%, .5); }
0.272702
0.060557
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, em, p, font, img, small, strong, center, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tr, th, td {margin:0;padding:0;border:0;outline:0;font-size:12px;vertical-align:baseline} ol, ul {list-style:none} :focus {outline:none; } li{list-style: none;} table {border-collapse:collapse;border-spacing: 0} caption, th, td { text-align: left; font-weight: normal} strong {font-weight:600} a{font:12px Arial;text-decoration:none;color:#404040;cursor:pointer;} a:hover{text-decoration:underline;color:#FF3300} h1{font-size:16px;font-weight:600;color:#666} .left{float:left} .right{float:right} .clear{clear:both} i{font-style: normal;} #gaikuang{ width: 990px; height: 770px; background: #FFFFFF; float: left; } .tthg_k{ width: 950px; /*height: 530px;*/ height: 580px; margin: 30px 20px 0 20px; } .ddgl_cc{ height: 50px; width: 950px; float: left; } .tthn{ float: left; width: 170px; background: #F85959; color: #FFFFFF; text-align: center; font-size: 12px; line-height: 50px; } .tthn1{ width: 300px; border-right: 1px solid #CCCCCC; } .tthn2{ width: 349px; border-right: 1px solid #CCCCCC; } .tthn3{ width: 139px; border-right: 1px solid #CCCCCC; } .tthn4{ width: 158px; border-right: 1px solid #CCCCCC; } .ddgl_c2{ height: 59px; width: 950px; float: left; /*background-repeat-x:32px;*/ border-bottom: 1px solid #CCCCCC; border-left: 1px solid #CCCCCC; } .tth_c{ height: 59px; width: 170px; text-align: center; line-height: 59px; float: left; border-right: 1px solid #CCCCCC; } .c1{ width: 300px; } .c2{ width: 349px; } .tth_pic{ height: 59px; width: 40px; float: left; margin-left: 16px; } .tth_pic img{ height: 40px; width: 40px; margin-top: 10px; border-radius: 4px; } .tth_picr{ height: 59px; width: 154px; float: left; line-height: 59px; text-align: center; font-size: 13px; color: #222123; } .c3{ width: 139px; } .c4{ width: 158px; margin-left: 1px; } .c5{ width: 158px; } .p3{ height: 30px; width: 73px; background: #F85959; border-radius: 4px; line-height: 30px; margin: 0 auto; margin-top: 15px; color: #FFFFFF; } .p2{ color: #ffac00; } .l2{ height: 450px; } .fen{ height: 60px; width: 950px; padding: 0 20px; } .M-box1{ margin-left: 29%; margin-top: 10px; } .tij{ height: 40px; width: 280px; background: #DC3932; text-align: center; line-height: 40px; margin: 0 auto; border-radius: 8px; margin-top: 40px; color: #FFFFFF; font-size: 18px; } .ze{ height: 100%; width: 100%; position: fixed; background: rgba(0,0,0,.5); z-index: 10; display: none; } .ze_c{ height: 220px; width: 514px; background: #FFFFFF; margin: 265px 0 0 135px; } .ze_t{ height: 60px; width: 100%; background: #F85959; float: left; } .jie{ line-height: 60px; font-size: 18px; color: #211E1E; float: left; margin-left: 20px; color: #FFFFFF; } .ze_cc{ height: 24px; line-height: 24px; color: #211E1E; width: 100%; text-align: center; margin-top: 39px; float: left; } .ze_cc p{ font-size: 16px; } .ze_b{ height: 40px; width: 100%; float: left; margin-top: 38px; } .que{ float: left; height: 40px; width: 120px; font-size: 18px; color: #FFFFFF; border-radius: 4px; text-align: center; line-height: 40px; background: #f85959; margin-left: 115px; } .q2{ margin-left: 20px; background: 0; border: 1px solid #000000; color: #211E1E; } .chao{ display: -webkit-box; /*将对象作为弹性伸缩盒子模型显示*/ overflow: hidden; white-space: normal !important; text-overflow: ellipsis; word-wrap: break-word; -webkit-line-clamp: 1; /*限制在一个块元素显示的文本的行数*/ -webkit-box-orient: vertical; }
public/assets/css/index/tthgl.css
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, em, p, font, img, small, strong, center, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tr, th, td {margin:0;padding:0;border:0;outline:0;font-size:12px;vertical-align:baseline} ol, ul {list-style:none} :focus {outline:none; } li{list-style: none;} table {border-collapse:collapse;border-spacing: 0} caption, th, td { text-align: left; font-weight: normal} strong {font-weight:600} a{font:12px Arial;text-decoration:none;color:#404040;cursor:pointer;} a:hover{text-decoration:underline;color:#FF3300} h1{font-size:16px;font-weight:600;color:#666} .left{float:left} .right{float:right} .clear{clear:both} i{font-style: normal;} #gaikuang{ width: 990px; height: 770px; background: #FFFFFF; float: left; } .tthg_k{ width: 950px; /*height: 530px;*/ height: 580px; margin: 30px 20px 0 20px; } .ddgl_cc{ height: 50px; width: 950px; float: left; } .tthn{ float: left; width: 170px; background: #F85959; color: #FFFFFF; text-align: center; font-size: 12px; line-height: 50px; } .tthn1{ width: 300px; border-right: 1px solid #CCCCCC; } .tthn2{ width: 349px; border-right: 1px solid #CCCCCC; } .tthn3{ width: 139px; border-right: 1px solid #CCCCCC; } .tthn4{ width: 158px; border-right: 1px solid #CCCCCC; } .ddgl_c2{ height: 59px; width: 950px; float: left; /*background-repeat-x:32px;*/ border-bottom: 1px solid #CCCCCC; border-left: 1px solid #CCCCCC; } .tth_c{ height: 59px; width: 170px; text-align: center; line-height: 59px; float: left; border-right: 1px solid #CCCCCC; } .c1{ width: 300px; } .c2{ width: 349px; } .tth_pic{ height: 59px; width: 40px; float: left; margin-left: 16px; } .tth_pic img{ height: 40px; width: 40px; margin-top: 10px; border-radius: 4px; } .tth_picr{ height: 59px; width: 154px; float: left; line-height: 59px; text-align: center; font-size: 13px; color: #222123; } .c3{ width: 139px; } .c4{ width: 158px; margin-left: 1px; } .c5{ width: 158px; } .p3{ height: 30px; width: 73px; background: #F85959; border-radius: 4px; line-height: 30px; margin: 0 auto; margin-top: 15px; color: #FFFFFF; } .p2{ color: #ffac00; } .l2{ height: 450px; } .fen{ height: 60px; width: 950px; padding: 0 20px; } .M-box1{ margin-left: 29%; margin-top: 10px; } .tij{ height: 40px; width: 280px; background: #DC3932; text-align: center; line-height: 40px; margin: 0 auto; border-radius: 8px; margin-top: 40px; color: #FFFFFF; font-size: 18px; } .ze{ height: 100%; width: 100%; position: fixed; background: rgba(0,0,0,.5); z-index: 10; display: none; } .ze_c{ height: 220px; width: 514px; background: #FFFFFF; margin: 265px 0 0 135px; } .ze_t{ height: 60px; width: 100%; background: #F85959; float: left; } .jie{ line-height: 60px; font-size: 18px; color: #211E1E; float: left; margin-left: 20px; color: #FFFFFF; } .ze_cc{ height: 24px; line-height: 24px; color: #211E1E; width: 100%; text-align: center; margin-top: 39px; float: left; } .ze_cc p{ font-size: 16px; } .ze_b{ height: 40px; width: 100%; float: left; margin-top: 38px; } .que{ float: left; height: 40px; width: 120px; font-size: 18px; color: #FFFFFF; border-radius: 4px; text-align: center; line-height: 40px; background: #f85959; margin-left: 115px; } .q2{ margin-left: 20px; background: 0; border: 1px solid #000000; color: #211E1E; } .chao{ display: -webkit-box; /*将对象作为弹性伸缩盒子模型显示*/ overflow: hidden; white-space: normal !important; text-overflow: ellipsis; word-wrap: break-word; -webkit-line-clamp: 1; /*限制在一个块元素显示的文本的行数*/ -webkit-box-orient: vertical; }
0.255344
0.075653
========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */ html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers. */ body { margin: 0; } /** * 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 { -webkit-box-sizing: content-box; 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 */ -webkit-text-decoration: underline dotted; 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, 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 { /* 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 { -webkit-box-sizing: border-box; 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"] { -webkit-box-sizing: border-box; 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; } html { font-family: "Custom Font", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } body { color: #232323; font-size: 1rem; } p { font-size: 1rem; } h1, .h1 { font-size: 2.5rem; } h2, .h2 { font-size: 2rem; } h3, .h3 { font-size: 1.75rem; } h4, .h4 { font-size: 1.5rem; } h5, .h5 { font-size: 1.25rem; } h6, .h6 { font-size: 1rem; } /* UTILITIES CLASES ============================== */ /*DISPLAY*/ .hidden { display: none !important; visibility: hidden; } .visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } .invisible { visibility: hidden; } /*CLEARFIX*/ .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } .clearfix { *zoom: 1; } /* MODALS ============================== */ /*BROWSER UPDATE*/ .browserupgrade { margin: 0.2em 0; background: #ccc; color: #000; padding: 0.2em 0; /*IE Fixes*/ } .browserupgrade .ie7 .title { padding-top: 20px; } /* == LAYOUT ===================================================== */ *, ::after, ::before { -webkit-box-sizing: border-box; box-sizing: border-box; } /* GRID SYSTEM */ .container { width: 100%; margin-right: auto; margin-left: auto; } .row { display: -ms-flexbox; display: -webkit-box; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; } /* Auto layout columns */ .col { -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; -webkit-box-flex: 1; flex-grow: 1; max-width: 100%; } [class^="col"] { position: relative; width: 100%; min-height: 1px; padding-right: 0.9375rem; padding-left: 0.9375rem; } .col-auto { -ms-flex: 0 0 auto; -webkit-box-flex: 0; flex: 0 0 auto; width: auto; max-width: none; } /* Vertical alignement */ .align-items-start { -ms-flex-align: start !important; -webkit-box-align: start !important; align-items: flex-start !important; } .align-items-center { -ms-flex-align: center !important; -webkit-box-align: center !important; align-items: center !important; } .align-items-end { -ms-flex-align: end !important; -webkit-box-align: end !important; align-items: flex-end !important; } /* Horizontal alignement */ .justify-content-start { -ms-flex-pack: start !important; -webkit-box-pack: start !important; justify-content: flex-start !important; } .justify-content-center { -ms-flex-pack: center !important; -webkit-box-pack: center !important; justify-content: center !important; } .justify-content-end { -ms-flex-pack: end !important; -webkit-box-pack: end !important; justify-content: flex-end !important; } .justify-content-around { -ms-flex-pack: distribute !important; justify-content: space-around !important; } .justify-content-between { -ms-flex-pack: justify !important; -webkit-box-pack: justify !important; justify-content: space-between !important; } /* Margin auto utilities */ .ml-auto { margin-left: auto !important; } .mr-auto { margin-right: auto !important; } /* No gutters */ .no-gutters { margin-right: 0; margin-left: 0; } .no-gutters > .col, .no-gutters > [class*="col-"] { padding-right: 0; padding-left: 0; } /* Loop for columns system */ .col-1 { width: 8.33333%; } .offset-1 { margin-left: 8.33333%; } .col-2 { width: 16.66667%; } .offset-2 { margin-left: 16.66667%; } .col-3 { width: 25%; } .offset-3 { margin-left: 25%; } .col-4 { width: 33.33333%; } .offset-4 { margin-left: 33.33333%; } .col-5 { width: 41.66667%; } .offset-5 { margin-left: 41.66667%; } .col-6 { width: 50%; } .offset-6 { margin-left: 50%; } .col-7 { width: 58.33333%; } .offset-7 { margin-left: 58.33333%; } .col-8 { width: 66.66667%; } .offset-8 { margin-left: 66.66667%; } .col-9 { width: 75%; } .offset-9 { margin-left: 75%; } .col-10 { width: 83.33333%; } .offset-10 { margin-left: 83.33333%; } .col-11 { width: 91.66667%; } .offset-11 { margin-left: 91.66667%; } .col-12 { width: 100%; } .offset-12 { margin-left: 100%; } /* MEDIA SCREEN MOBILE FIRST */ /* XS */ @media only screen and (min-width: 0px) { /* Loop for xs columns system */ .col-xs-1 { width: 8.33333%; } .offset-xs-1 { margin-left: 8.33333%; } .col-xs-2 { width: 16.66667%; } .offset-xs-2 { margin-left: 16.66667%; } .col-xs-3 { width: 25%; } .offset-xs-3 { margin-left: 25%; } .col-xs-4 { width: 33.33333%; } .offset-xs-4 { margin-left: 33.33333%; } .col-xs-5 { width: 41.66667%; } .offset-xs-5 { margin-left: 41.66667%; } .col-xs-6 { width: 50%; } .offset-xs-6 { margin-left: 50%; } .col-xs-7 { width: 58.33333%; } .offset-xs-7 { margin-left: 58.33333%; } .col-xs-8 { width: 66.66667%; } .offset-xs-8 { margin-left: 66.66667%; } .col-xs-9 { width: 75%; } .offset-xs-9 { margin-left: 75%; } .col-xs-10 { width: 83.33333%; } .offset-xs-10 { margin-left: 83.33333%; } .col-xs-11 { width: 91.66667%; } .offset-xs-11 { margin-left: 91.66667%; } .col-xs-12 { width: 100%; } .offset-xs-12 { margin-left: 100%; } /* margin auto for xs */ .ml-xs-auto { margin-left: auto !important; } .mr-xs-auto { margin-right: auto !important; } } /* SM */ @media only screen and (min-width: 576px) { .container { max-width: 540px; } /* Loop for sm columns system */ .col-sm-1 { width: 8.33333%; } .offset-sm-1 { margin-left: 8.33333%; } .col-sm-2 { width: 16.66667%; } .offset-sm-2 { margin-left: 16.66667%; } .col-sm-3 { width: 25%; } .offset-sm-3 { margin-left: 25%; } .col-sm-4 { width: 33.33333%; } .offset-sm-4 { margin-left: 33.33333%; } .col-sm-5 { width: 41.66667%; } .offset-sm-5 { margin-left: 41.66667%; } .col-sm-6 { width: 50%; } .offset-sm-6 { margin-left: 50%; } .col-sm-7 { width: 58.33333%; } .offset-sm-7 { margin-left: 58.33333%; } .col-sm-8 { width: 66.66667%; } .offset-sm-8 { margin-left: 66.66667%; } .col-sm-9 { width: 75%; } .offset-sm-9 { margin-left: 75%; } .col-sm-10 { width: 83.33333%; } .offset-sm-10 { margin-left: 83.33333%; } .col-sm-11 { width: 91.66667%; } .offset-sm-11 { margin-left: 91.66667%; } .col-sm-12 { width: 100%; } .offset-sm-12 { margin-left: 100%; } /* margin auto for sm */ .ml-sm-auto { margin-left: auto !important; } .mr-sm-auto { margin-right: auto !important; } } /* MD */ @media only screen and (min-width: 768px) { .container { max-width: 720px; } /* Loop for md columns system */ .col-md-1 { width: 8.33333%; } .offset-md-1 { margin-left: 8.33333%; } .col-md-2 { width: 16.66667%; } .offset-md-2 { margin-left: 16.66667%; } .col-md-3 { width: 25%; } .offset-md-3 { margin-left: 25%; } .col-md-4 { width: 33.33333%; } .offset-md-4 { margin-left: 33.33333%; } .col-md-5 { width: 41.66667%; } .offset-md-5 { margin-left: 41.66667%; } .col-md-6 { width: 50%; } .offset-md-6 { margin-left: 50%; } .col-md-7 { width: 58.33333%; } .offset-md-7 { margin-left: 58.33333%; } .col-md-8 { width: 66.66667%; } .offset-md-8 { margin-left: 66.66667%; } .col-md-9 { width: 75%; } .offset-md-9 { margin-left: 75%; } .col-md-10 { width: 83.33333%; } .offset-md-10 { margin-left: 83.33333%; } .col-md-11 { width: 91.66667%; } .offset-md-11 { margin-left: 91.66667%; } .col-md-12 { width: 100%; } .offset-md-12 { margin-left: 100%; } /* margin auto for md */ .ml-md-auto { margin-left: auto !important; } .mr-md-auto { margin-right: auto !important; } } /* LG */ @media only screen and (min-width: 992px) { .container { max-width: 960px; } /* Loop for lg columns system */ .col-lg-1 { width: 8.33333%; } .offset-lg-1 { margin-left: 8.33333%; } .col-lg-2 { width: 16.66667%; } .offset-lg-2 { margin-left: 16.66667%; } .col-lg-3 { width: 25%; } .offset-lg-3 { margin-left: 25%; } .col-lg-4 { width: 33.33333%; } .offset-lg-4 { margin-left: 33.33333%; } .col-lg-5 { width: 41.66667%; } .offset-lg-5 { margin-left: 41.66667%; } .col-lg-6 { width: 50%; } .offset-lg-6 { margin-left: 50%; } .col-lg-7 { width: 58.33333%; } .offset-lg-7 { margin-left: 58.33333%; } .col-lg-8 { width: 66.66667%; } .offset-lg-8 { margin-left: 66.66667%; } .col-lg-9 { width: 75%; } .offset-lg-9 { margin-left: 75%; } .col-lg-10 { width: 83.33333%; } .offset-lg-10 { margin-left: 83.33333%; } .col-lg-11 { width: 91.66667%; } .offset-lg-11 { margin-left: 91.66667%; } .col-lg-12 { width: 100%; } .offset-lg-12 { margin-left: 100%; } /* margin auto for lg */ .ml-lg-auto { margin-left: auto !important; } .mr-lg-auto { margin-right: auto !important; } } @media only screen and (min-width: 1200px) { .container { max-width: 1140px; } /* Loop for xl columns system */ .col-xl-1 { width: 8.33333%; } .offset-xl-1 { margin-left: 8.33333%; } .col-xl-2 { width: 16.66667%; } .offset-xl-2 { margin-left: 16.66667%; } .col-xl-3 { width: 25%; } .offset-xl-3 { margin-left: 25%; } .col-xl-4 { width: 33.33333%; } .offset-xl-4 { margin-left: 33.33333%; } .col-xl-5 { width: 41.66667%; } .offset-xl-5 { margin-left: 41.66667%; } .col-xl-6 { width: 50%; } .offset-xl-6 { margin-left: 50%; } .col-xl-7 { width: 58.33333%; } .offset-xl-7 { margin-left: 58.33333%; } .col-xl-8 { width: 66.66667%; } .offset-xl-8 { margin-left: 66.66667%; } .col-xl-9 { width: 75%; } .offset-xl-9 { margin-left: 75%; } .col-xl-10 { width: 83.33333%; } .offset-xl-10 { margin-left: 83.33333%; } .col-xl-11 { width: 91.66667%; } .offset-xl-11 { margin-left: 91.66667%; } .col-xl-12 { width: 100%; } .offset-xl-12 { margin-left: 100%; } /* margin auto for xl */ .ml-xl-auto { margin-left: auto !important; } .mr-xl-auto { margin-right: auto !important; } } /* MOTHERSHIP THEME ============================== */ .example .row [class^="col"] { background-color: rgba(86, 61, 124, 0.15); border: 1px solid rgba(86, 61, 124, 0.2); padding-top: .75rem; padding-bottom: .75rem; } /* MEDIA PRINT ============================== */ @media print { *, *:before, *:after { background: transparent !important; color: #000 !important; -webkit-box-shadow: none !important; box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } a[href^="#"]:after, a[href^="javascript:"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } } /*# sourceMappingURL=main.css.map */
styles/main.css
========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */ html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers. */ body { margin: 0; } /** * 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 { -webkit-box-sizing: content-box; 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 */ -webkit-text-decoration: underline dotted; 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, 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 { /* 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 { -webkit-box-sizing: border-box; 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"] { -webkit-box-sizing: border-box; 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; } html { font-family: "Custom Font", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } body { color: #232323; font-size: 1rem; } p { font-size: 1rem; } h1, .h1 { font-size: 2.5rem; } h2, .h2 { font-size: 2rem; } h3, .h3 { font-size: 1.75rem; } h4, .h4 { font-size: 1.5rem; } h5, .h5 { font-size: 1.25rem; } h6, .h6 { font-size: 1rem; } /* UTILITIES CLASES ============================== */ /*DISPLAY*/ .hidden { display: none !important; visibility: hidden; } .visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } .invisible { visibility: hidden; } /*CLEARFIX*/ .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } .clearfix { *zoom: 1; } /* MODALS ============================== */ /*BROWSER UPDATE*/ .browserupgrade { margin: 0.2em 0; background: #ccc; color: #000; padding: 0.2em 0; /*IE Fixes*/ } .browserupgrade .ie7 .title { padding-top: 20px; } /* == LAYOUT ===================================================== */ *, ::after, ::before { -webkit-box-sizing: border-box; box-sizing: border-box; } /* GRID SYSTEM */ .container { width: 100%; margin-right: auto; margin-left: auto; } .row { display: -ms-flexbox; display: -webkit-box; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; } /* Auto layout columns */ .col { -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; -webkit-box-flex: 1; flex-grow: 1; max-width: 100%; } [class^="col"] { position: relative; width: 100%; min-height: 1px; padding-right: 0.9375rem; padding-left: 0.9375rem; } .col-auto { -ms-flex: 0 0 auto; -webkit-box-flex: 0; flex: 0 0 auto; width: auto; max-width: none; } /* Vertical alignement */ .align-items-start { -ms-flex-align: start !important; -webkit-box-align: start !important; align-items: flex-start !important; } .align-items-center { -ms-flex-align: center !important; -webkit-box-align: center !important; align-items: center !important; } .align-items-end { -ms-flex-align: end !important; -webkit-box-align: end !important; align-items: flex-end !important; } /* Horizontal alignement */ .justify-content-start { -ms-flex-pack: start !important; -webkit-box-pack: start !important; justify-content: flex-start !important; } .justify-content-center { -ms-flex-pack: center !important; -webkit-box-pack: center !important; justify-content: center !important; } .justify-content-end { -ms-flex-pack: end !important; -webkit-box-pack: end !important; justify-content: flex-end !important; } .justify-content-around { -ms-flex-pack: distribute !important; justify-content: space-around !important; } .justify-content-between { -ms-flex-pack: justify !important; -webkit-box-pack: justify !important; justify-content: space-between !important; } /* Margin auto utilities */ .ml-auto { margin-left: auto !important; } .mr-auto { margin-right: auto !important; } /* No gutters */ .no-gutters { margin-right: 0; margin-left: 0; } .no-gutters > .col, .no-gutters > [class*="col-"] { padding-right: 0; padding-left: 0; } /* Loop for columns system */ .col-1 { width: 8.33333%; } .offset-1 { margin-left: 8.33333%; } .col-2 { width: 16.66667%; } .offset-2 { margin-left: 16.66667%; } .col-3 { width: 25%; } .offset-3 { margin-left: 25%; } .col-4 { width: 33.33333%; } .offset-4 { margin-left: 33.33333%; } .col-5 { width: 41.66667%; } .offset-5 { margin-left: 41.66667%; } .col-6 { width: 50%; } .offset-6 { margin-left: 50%; } .col-7 { width: 58.33333%; } .offset-7 { margin-left: 58.33333%; } .col-8 { width: 66.66667%; } .offset-8 { margin-left: 66.66667%; } .col-9 { width: 75%; } .offset-9 { margin-left: 75%; } .col-10 { width: 83.33333%; } .offset-10 { margin-left: 83.33333%; } .col-11 { width: 91.66667%; } .offset-11 { margin-left: 91.66667%; } .col-12 { width: 100%; } .offset-12 { margin-left: 100%; } /* MEDIA SCREEN MOBILE FIRST */ /* XS */ @media only screen and (min-width: 0px) { /* Loop for xs columns system */ .col-xs-1 { width: 8.33333%; } .offset-xs-1 { margin-left: 8.33333%; } .col-xs-2 { width: 16.66667%; } .offset-xs-2 { margin-left: 16.66667%; } .col-xs-3 { width: 25%; } .offset-xs-3 { margin-left: 25%; } .col-xs-4 { width: 33.33333%; } .offset-xs-4 { margin-left: 33.33333%; } .col-xs-5 { width: 41.66667%; } .offset-xs-5 { margin-left: 41.66667%; } .col-xs-6 { width: 50%; } .offset-xs-6 { margin-left: 50%; } .col-xs-7 { width: 58.33333%; } .offset-xs-7 { margin-left: 58.33333%; } .col-xs-8 { width: 66.66667%; } .offset-xs-8 { margin-left: 66.66667%; } .col-xs-9 { width: 75%; } .offset-xs-9 { margin-left: 75%; } .col-xs-10 { width: 83.33333%; } .offset-xs-10 { margin-left: 83.33333%; } .col-xs-11 { width: 91.66667%; } .offset-xs-11 { margin-left: 91.66667%; } .col-xs-12 { width: 100%; } .offset-xs-12 { margin-left: 100%; } /* margin auto for xs */ .ml-xs-auto { margin-left: auto !important; } .mr-xs-auto { margin-right: auto !important; } } /* SM */ @media only screen and (min-width: 576px) { .container { max-width: 540px; } /* Loop for sm columns system */ .col-sm-1 { width: 8.33333%; } .offset-sm-1 { margin-left: 8.33333%; } .col-sm-2 { width: 16.66667%; } .offset-sm-2 { margin-left: 16.66667%; } .col-sm-3 { width: 25%; } .offset-sm-3 { margin-left: 25%; } .col-sm-4 { width: 33.33333%; } .offset-sm-4 { margin-left: 33.33333%; } .col-sm-5 { width: 41.66667%; } .offset-sm-5 { margin-left: 41.66667%; } .col-sm-6 { width: 50%; } .offset-sm-6 { margin-left: 50%; } .col-sm-7 { width: 58.33333%; } .offset-sm-7 { margin-left: 58.33333%; } .col-sm-8 { width: 66.66667%; } .offset-sm-8 { margin-left: 66.66667%; } .col-sm-9 { width: 75%; } .offset-sm-9 { margin-left: 75%; } .col-sm-10 { width: 83.33333%; } .offset-sm-10 { margin-left: 83.33333%; } .col-sm-11 { width: 91.66667%; } .offset-sm-11 { margin-left: 91.66667%; } .col-sm-12 { width: 100%; } .offset-sm-12 { margin-left: 100%; } /* margin auto for sm */ .ml-sm-auto { margin-left: auto !important; } .mr-sm-auto { margin-right: auto !important; } } /* MD */ @media only screen and (min-width: 768px) { .container { max-width: 720px; } /* Loop for md columns system */ .col-md-1 { width: 8.33333%; } .offset-md-1 { margin-left: 8.33333%; } .col-md-2 { width: 16.66667%; } .offset-md-2 { margin-left: 16.66667%; } .col-md-3 { width: 25%; } .offset-md-3 { margin-left: 25%; } .col-md-4 { width: 33.33333%; } .offset-md-4 { margin-left: 33.33333%; } .col-md-5 { width: 41.66667%; } .offset-md-5 { margin-left: 41.66667%; } .col-md-6 { width: 50%; } .offset-md-6 { margin-left: 50%; } .col-md-7 { width: 58.33333%; } .offset-md-7 { margin-left: 58.33333%; } .col-md-8 { width: 66.66667%; } .offset-md-8 { margin-left: 66.66667%; } .col-md-9 { width: 75%; } .offset-md-9 { margin-left: 75%; } .col-md-10 { width: 83.33333%; } .offset-md-10 { margin-left: 83.33333%; } .col-md-11 { width: 91.66667%; } .offset-md-11 { margin-left: 91.66667%; } .col-md-12 { width: 100%; } .offset-md-12 { margin-left: 100%; } /* margin auto for md */ .ml-md-auto { margin-left: auto !important; } .mr-md-auto { margin-right: auto !important; } } /* LG */ @media only screen and (min-width: 992px) { .container { max-width: 960px; } /* Loop for lg columns system */ .col-lg-1 { width: 8.33333%; } .offset-lg-1 { margin-left: 8.33333%; } .col-lg-2 { width: 16.66667%; } .offset-lg-2 { margin-left: 16.66667%; } .col-lg-3 { width: 25%; } .offset-lg-3 { margin-left: 25%; } .col-lg-4 { width: 33.33333%; } .offset-lg-4 { margin-left: 33.33333%; } .col-lg-5 { width: 41.66667%; } .offset-lg-5 { margin-left: 41.66667%; } .col-lg-6 { width: 50%; } .offset-lg-6 { margin-left: 50%; } .col-lg-7 { width: 58.33333%; } .offset-lg-7 { margin-left: 58.33333%; } .col-lg-8 { width: 66.66667%; } .offset-lg-8 { margin-left: 66.66667%; } .col-lg-9 { width: 75%; } .offset-lg-9 { margin-left: 75%; } .col-lg-10 { width: 83.33333%; } .offset-lg-10 { margin-left: 83.33333%; } .col-lg-11 { width: 91.66667%; } .offset-lg-11 { margin-left: 91.66667%; } .col-lg-12 { width: 100%; } .offset-lg-12 { margin-left: 100%; } /* margin auto for lg */ .ml-lg-auto { margin-left: auto !important; } .mr-lg-auto { margin-right: auto !important; } } @media only screen and (min-width: 1200px) { .container { max-width: 1140px; } /* Loop for xl columns system */ .col-xl-1 { width: 8.33333%; } .offset-xl-1 { margin-left: 8.33333%; } .col-xl-2 { width: 16.66667%; } .offset-xl-2 { margin-left: 16.66667%; } .col-xl-3 { width: 25%; } .offset-xl-3 { margin-left: 25%; } .col-xl-4 { width: 33.33333%; } .offset-xl-4 { margin-left: 33.33333%; } .col-xl-5 { width: 41.66667%; } .offset-xl-5 { margin-left: 41.66667%; } .col-xl-6 { width: 50%; } .offset-xl-6 { margin-left: 50%; } .col-xl-7 { width: 58.33333%; } .offset-xl-7 { margin-left: 58.33333%; } .col-xl-8 { width: 66.66667%; } .offset-xl-8 { margin-left: 66.66667%; } .col-xl-9 { width: 75%; } .offset-xl-9 { margin-left: 75%; } .col-xl-10 { width: 83.33333%; } .offset-xl-10 { margin-left: 83.33333%; } .col-xl-11 { width: 91.66667%; } .offset-xl-11 { margin-left: 91.66667%; } .col-xl-12 { width: 100%; } .offset-xl-12 { margin-left: 100%; } /* margin auto for xl */ .ml-xl-auto { margin-left: auto !important; } .mr-xl-auto { margin-right: auto !important; } } /* MOTHERSHIP THEME ============================== */ .example .row [class^="col"] { background-color: rgba(86, 61, 124, 0.15); border: 1px solid rgba(86, 61, 124, 0.2); padding-top: .75rem; padding-bottom: .75rem; } /* MEDIA PRINT ============================== */ @media print { *, *:before, *:after { background: transparent !important; color: #000 !important; -webkit-box-shadow: none !important; box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } a[href^="#"]:after, a[href^="javascript:"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } } /*# sourceMappingURL=main.css.map */
0.669096
0.098555
.coolButton, .coolButtonHover, .coolButtonActiveHover, .coolButtonActive, .coolButtonActiveDisabled, .coolButtonDisabled, .coolButtonUpDisabled { cursor: Default; font: Icon; font-weight: normal; padding: 2px 5px 2px 5px; border: 0px solid ButtonFace; white-space: nowrap; vertical-align: middle; background-color: ButtonFace; } .coolButton img { /*filter: Alpha(opacity=10);-moz-opacity:.1;opacity:0.1;*/ } .coolButtonHover { border-width: 1px; border-left-color: ButtonHighlight; border-right-color: ButtonShadow; border-top-color: ButtonHighlight; border-bottom-color:ButtonShadow; padding: 1px 4px 1px 4px; } .coolButtonActiveHover { border-width: 1px; border-left-color: ButtonShadow; border-right-color: ButtonHighlight; border-top-color: ButtonShadow; border-bottom-color:ButtonHighlight; padding: 2px 3px 0px 5px; } .coolButtonActive { border-width: 1px; border-left-color: ButtonShadow; border-right-color: ButtonHighlight; border-top-color: ButtonShadow; border-bottom-color:ButtonHighlight; padding: 2px 3px 0px 5px; background-image: url("../images/cbback.gif"); } .coolButtonUpDisabled, .coolButtonActiveDisabled, .coolButtonDisabled { padding: 2px 5px 2px 5px; color: GrayText; border-width: 0px; filter: Alpha(opacity=10);-moz-opacity:.1;opacity:0.1; } .coolButtonActiveDisabled { border-width: 1px; border-left-color: ButtonShadow; border-right-color: ButtonHighlight; border-top-color: ButtonShadow; border-bottom-color:ButtonHighlight; padding: 2px 3px 0px 5px; } .coolButtonUpDisabled { border-width: 1px; border-left-color: ButtonHighlight; border-right-color: ButtonShadow; border-top-color: ButtonHighlight; border-bottom-color:ButtonShadow; } /* My latest build of mozilla crashed with the opacity */ .coolButtonUpDisabled img, .coolButtonActiveDisabled img, .coolButtonDisabled img { -moz-opacity: 0.5; } .coolButtonDisabled_my img { -moz-opacity: 1.0; } /* IE specific * When the button becomes disbabled the innerHTML is enclosed by two spans * This is done so that the image will look disabled using filters */ .coolButtonUpDisabled .coolButtonDisabledContainer, .coolButtonActiveDisabled .coolButtonDisabledContainer, .coolButtonDisabled .coolButtonDisabledContainer { display: block; background: GrayText; filter: chroma(color=#010101) dropshadow(color=ButtonHighlight, offx=1, offy=1); width: 100%; height: 100%; vertical-align: center; } .coolButtonUpDisabled .coolButtonDisabledContainer .coolButtonDisabledContainer, .coolButtonActiveDisabled .coolButtonDisabledContainer .coolButtonDisabledContainer, .coolButtonDisabled .coolButtonDisabledContainer .coolButtonDisabledContainer { background: Transparent; filter: gray() /* Remove all bright shades of gray */ chroma(color=#ffffff) chroma(color=#fefefe) chroma(color=#fdfdfd) chroma(color=#fcfcfc) chroma(color=#fbfbfb) chroma(color=#fafafa) chroma(color=#f9f9f9) chroma(color=#f8f8f8) chroma(color=#f7f7f7) chroma(color=#f6f6f6) chroma(color=#f5f5f5) chroma(color=#f4f4f4) chroma(color=#f3f3f3) mask(color=#010101); } /* end IE specific */
WebRoot/css/cb2.css
.coolButton, .coolButtonHover, .coolButtonActiveHover, .coolButtonActive, .coolButtonActiveDisabled, .coolButtonDisabled, .coolButtonUpDisabled { cursor: Default; font: Icon; font-weight: normal; padding: 2px 5px 2px 5px; border: 0px solid ButtonFace; white-space: nowrap; vertical-align: middle; background-color: ButtonFace; } .coolButton img { /*filter: Alpha(opacity=10);-moz-opacity:.1;opacity:0.1;*/ } .coolButtonHover { border-width: 1px; border-left-color: ButtonHighlight; border-right-color: ButtonShadow; border-top-color: ButtonHighlight; border-bottom-color:ButtonShadow; padding: 1px 4px 1px 4px; } .coolButtonActiveHover { border-width: 1px; border-left-color: ButtonShadow; border-right-color: ButtonHighlight; border-top-color: ButtonShadow; border-bottom-color:ButtonHighlight; padding: 2px 3px 0px 5px; } .coolButtonActive { border-width: 1px; border-left-color: ButtonShadow; border-right-color: ButtonHighlight; border-top-color: ButtonShadow; border-bottom-color:ButtonHighlight; padding: 2px 3px 0px 5px; background-image: url("../images/cbback.gif"); } .coolButtonUpDisabled, .coolButtonActiveDisabled, .coolButtonDisabled { padding: 2px 5px 2px 5px; color: GrayText; border-width: 0px; filter: Alpha(opacity=10);-moz-opacity:.1;opacity:0.1; } .coolButtonActiveDisabled { border-width: 1px; border-left-color: ButtonShadow; border-right-color: ButtonHighlight; border-top-color: ButtonShadow; border-bottom-color:ButtonHighlight; padding: 2px 3px 0px 5px; } .coolButtonUpDisabled { border-width: 1px; border-left-color: ButtonHighlight; border-right-color: ButtonShadow; border-top-color: ButtonHighlight; border-bottom-color:ButtonShadow; } /* My latest build of mozilla crashed with the opacity */ .coolButtonUpDisabled img, .coolButtonActiveDisabled img, .coolButtonDisabled img { -moz-opacity: 0.5; } .coolButtonDisabled_my img { -moz-opacity: 1.0; } /* IE specific * When the button becomes disbabled the innerHTML is enclosed by two spans * This is done so that the image will look disabled using filters */ .coolButtonUpDisabled .coolButtonDisabledContainer, .coolButtonActiveDisabled .coolButtonDisabledContainer, .coolButtonDisabled .coolButtonDisabledContainer { display: block; background: GrayText; filter: chroma(color=#010101) dropshadow(color=ButtonHighlight, offx=1, offy=1); width: 100%; height: 100%; vertical-align: center; } .coolButtonUpDisabled .coolButtonDisabledContainer .coolButtonDisabledContainer, .coolButtonActiveDisabled .coolButtonDisabledContainer .coolButtonDisabledContainer, .coolButtonDisabled .coolButtonDisabledContainer .coolButtonDisabledContainer { background: Transparent; filter: gray() /* Remove all bright shades of gray */ chroma(color=#ffffff) chroma(color=#fefefe) chroma(color=#fdfdfd) chroma(color=#fcfcfc) chroma(color=#fbfbfb) chroma(color=#fafafa) chroma(color=#f9f9f9) chroma(color=#f8f8f8) chroma(color=#f7f7f7) chroma(color=#f6f6f6) chroma(color=#f5f5f5) chroma(color=#f4f4f4) chroma(color=#f3f3f3) mask(color=#010101); } /* end IE specific */
0.264074
0.040788
/* class specific styles */ .content { overflow: hidden; } /* Font styles */ body { font-family: Helvetica, arial, sans-serif; font-size: 20px; line-height: 1.6; background-color: white; color: #333; } body > *:first-child { margin-top: 0 !important; } body > *:last-child { margin-bottom: 0 !important; } a { color: #4183c4; text-decoration: none; } a.absent { color: #cc0000; } a.anchor { display: block; padding-left: 30px; margin-left: -30px; cursor: pointer; position: absolute; top: 0; left: 0; bottom: 0; } h1, h2, h3, h4, h5, h6 { margin: 20px 0 10px; padding: 0; font-weight: bold; -webkit-font-smoothing: antialiased; cursor: text; position: relative; } h2:first-child, h1:first-child, h1:first-child + h2, h3:first-child, h4:first-child, h5:first-child, h6:first-child { margin-top: 0; padding-top: 0; } h1:hover a.anchor, h2:hover a.anchor, h3:hover a.anchor, h4:hover a.anchor, h5:hover a.anchor, h6:hover a.anchor { text-decoration: none; } h1 tt, h1 code { font-size: inherit; } h2 tt, h2 code { font-size: inherit; } h3 tt, h3 code { font-size: inherit; } h4 tt, h4 code { font-size: inherit; } h5 tt, h5 code { font-size: inherit; } h6 tt, h6 code { font-size: inherit; } h1 { font-size: 60px; color: black; } h2 { font-size: 50px; border-bottom: 1px solid #cccccc; color: black; } h3 { font-size: 40px; } h4 { font-size: 30px; } h5 { font-size: 25px; } h6 { color: #777777; font-size: 25px; } p, blockquote, ul, ol, dl, li, table, pre { margin: 15px 0; } hr { height: 1px; border-width: 0; color: gray; background-color: gray; border: 0 none; /* color: #cccccc; */ height: 2px; padding: 0; } body > h2:first-child { margin-top: 0; padding-top: 0; } body > h1:first-child { margin-top: 0; padding-top: 0; } body > h1:first-child + h2 { margin-top: 0; padding-top: 0; } body > h3:first-child, body > h4:first-child, body > h5:first-child, body > h6:first-child { margin-top: 0; padding-top: 0; } a:first-child h1, a:first-child h2, a:first-child h3, a:first-child h4, a:first-child h5, a:first-child h6 { margin-top: 0; padding-top: 0; } h1 p, h2 p, h3 p, h4 p, h5 p, h6 p { margin-top: 0; } li p.first { display: inline-block; } ul, ol { padding-left: 30px; } ul :first-child, ol :first-child { margin-top: 0; } ul :last-child, ol :last-child { margin-bottom: 0; } dl { padding: 0; } dl dt { font-size: 14px; font-weight: bold; font-style: italic; padding: 0; margin: 15px 0 5px; } dl dt:first-child { padding: 0; } dl dt > :first-child { margin-top: 0; } dl dt > :last-child { margin-bottom: 0; } dl dd { margin: 0 0 15px; padding: 0 15px; } dl dd > :first-child { margin-top: 0; } dl dd > :last-child { margin-bottom: 0; } blockquote { border-left: 4px solid #dddddd; padding: 0 15px; color: #777777; } blockquote > :first-child { margin-top: 0; } blockquote > :last-child { margin-bottom: 0; } table { padding: 0; } table tr { border-top: 1px solid #cccccc; background-color: white; margin: 0; padding: 0; } table tr:nth-child(2n) { background-color: #f8f8f8; } table tr th { font-weight: bold; border: 1px solid #cccccc; text-align: left; margin: 0; padding: 6px 13px; } table tr td { border: 1px solid #cccccc; text-align: left; margin: 0; padding: 6px 13px; } table tr th :first-child, table tr td :first-child { margin-top: 0; } table tr th :last-child, table tr td :last-child { margin-bottom: 0; } img { max-width: 100%; } span.frame { display: block; overflow: hidden; } span.frame > span { border: 1px solid #dddddd; display: block; float: left; overflow: hidden; margin: 13px 0 0; padding: 7px; width: auto; } span.frame span img { display: block; float: left; } span.frame span span { clear: both; color: #333333; display: block; padding: 5px 0 0; } span.align-center { display: block; overflow: hidden; clear: both; } span.align-center > span { display: block; overflow: hidden; margin: 13px auto 0; text-align: center; } span.align-center span img { margin: 0 auto; text-align: center; } span.align-right { display: block; overflow: hidden; clear: both; } span.align-right > span { display: block; overflow: hidden; margin: 13px 0 0; text-align: right; } span.align-right span img { margin: 0; text-align: right; } span.float-left { display: block; margin-right: 13px; overflow: hidden; float: left; } span.float-left span { margin: 13px 0 0; } span.float-right { display: block; margin-left: 13px; overflow: hidden; float: right; } span.float-right > span { display: block; overflow: hidden; margin: 13px auto 0; text-align: right; } code, tt { margin: 0 2px; padding: 0 5px; white-space: nowrap; border: 1px solid #eaeaea; background-color: #f8f8f8; border-radius: 3px; } pre code { margin: 0; padding: 0; white-space: pre; border: none; background: transparent; } .highlight pre { background-color: #f8f8f8; border: 1px solid #cccccc; font-size: 13px; line-height: 19px; overflow: auto; padding: 6px 10px; border-radius: 3px; } pre { background-color: #f8f8f8; border: 1px solid #cccccc; font-size: 13px; line-height: 19px; overflow: auto; padding: 6px 10px; border-radius: 3px; } pre code, pre tt { background-color: transparent; border: none; } /* Sidebar: */ :root { --sidebar-width: 200px; } .sidebar { margin: 0; padding: 0; width: var(--sidebar-width); background-color: #f1f1f1; position: fixed; height: 100%; overflow: auto; } /* Sidebar links */ .sidebar a { display: block; color: black; padding: 16px; text-decoration: none; } /* Active/current link */ .sidebar a.active { background-color: #4caf50; color: white; } /* Links on mouse-over */ .sidebar a:hover:not(.active) { background-color: #555; color: white; } /* Page content. */ div.content { margin-left: var(--sidebar-width); padding: 1px 16px; height: 1000px; } /* On screens that are less than 700px wide, make the sidebar into a topbar */ @media screen and (max-width: 700px) { .sidebar { width: 100%; height: auto; position: relative; } .sidebar a { float: left; } div.content { margin-left: 0; } } /* On screens that are less than 400px, display the bar vertically, instead of horizontally */ @media screen and (max-width: 400px) { .sidebar a { text-align: center; float: none; } }
src/styles/styles.css
/* class specific styles */ .content { overflow: hidden; } /* Font styles */ body { font-family: Helvetica, arial, sans-serif; font-size: 20px; line-height: 1.6; background-color: white; color: #333; } body > *:first-child { margin-top: 0 !important; } body > *:last-child { margin-bottom: 0 !important; } a { color: #4183c4; text-decoration: none; } a.absent { color: #cc0000; } a.anchor { display: block; padding-left: 30px; margin-left: -30px; cursor: pointer; position: absolute; top: 0; left: 0; bottom: 0; } h1, h2, h3, h4, h5, h6 { margin: 20px 0 10px; padding: 0; font-weight: bold; -webkit-font-smoothing: antialiased; cursor: text; position: relative; } h2:first-child, h1:first-child, h1:first-child + h2, h3:first-child, h4:first-child, h5:first-child, h6:first-child { margin-top: 0; padding-top: 0; } h1:hover a.anchor, h2:hover a.anchor, h3:hover a.anchor, h4:hover a.anchor, h5:hover a.anchor, h6:hover a.anchor { text-decoration: none; } h1 tt, h1 code { font-size: inherit; } h2 tt, h2 code { font-size: inherit; } h3 tt, h3 code { font-size: inherit; } h4 tt, h4 code { font-size: inherit; } h5 tt, h5 code { font-size: inherit; } h6 tt, h6 code { font-size: inherit; } h1 { font-size: 60px; color: black; } h2 { font-size: 50px; border-bottom: 1px solid #cccccc; color: black; } h3 { font-size: 40px; } h4 { font-size: 30px; } h5 { font-size: 25px; } h6 { color: #777777; font-size: 25px; } p, blockquote, ul, ol, dl, li, table, pre { margin: 15px 0; } hr { height: 1px; border-width: 0; color: gray; background-color: gray; border: 0 none; /* color: #cccccc; */ height: 2px; padding: 0; } body > h2:first-child { margin-top: 0; padding-top: 0; } body > h1:first-child { margin-top: 0; padding-top: 0; } body > h1:first-child + h2 { margin-top: 0; padding-top: 0; } body > h3:first-child, body > h4:first-child, body > h5:first-child, body > h6:first-child { margin-top: 0; padding-top: 0; } a:first-child h1, a:first-child h2, a:first-child h3, a:first-child h4, a:first-child h5, a:first-child h6 { margin-top: 0; padding-top: 0; } h1 p, h2 p, h3 p, h4 p, h5 p, h6 p { margin-top: 0; } li p.first { display: inline-block; } ul, ol { padding-left: 30px; } ul :first-child, ol :first-child { margin-top: 0; } ul :last-child, ol :last-child { margin-bottom: 0; } dl { padding: 0; } dl dt { font-size: 14px; font-weight: bold; font-style: italic; padding: 0; margin: 15px 0 5px; } dl dt:first-child { padding: 0; } dl dt > :first-child { margin-top: 0; } dl dt > :last-child { margin-bottom: 0; } dl dd { margin: 0 0 15px; padding: 0 15px; } dl dd > :first-child { margin-top: 0; } dl dd > :last-child { margin-bottom: 0; } blockquote { border-left: 4px solid #dddddd; padding: 0 15px; color: #777777; } blockquote > :first-child { margin-top: 0; } blockquote > :last-child { margin-bottom: 0; } table { padding: 0; } table tr { border-top: 1px solid #cccccc; background-color: white; margin: 0; padding: 0; } table tr:nth-child(2n) { background-color: #f8f8f8; } table tr th { font-weight: bold; border: 1px solid #cccccc; text-align: left; margin: 0; padding: 6px 13px; } table tr td { border: 1px solid #cccccc; text-align: left; margin: 0; padding: 6px 13px; } table tr th :first-child, table tr td :first-child { margin-top: 0; } table tr th :last-child, table tr td :last-child { margin-bottom: 0; } img { max-width: 100%; } span.frame { display: block; overflow: hidden; } span.frame > span { border: 1px solid #dddddd; display: block; float: left; overflow: hidden; margin: 13px 0 0; padding: 7px; width: auto; } span.frame span img { display: block; float: left; } span.frame span span { clear: both; color: #333333; display: block; padding: 5px 0 0; } span.align-center { display: block; overflow: hidden; clear: both; } span.align-center > span { display: block; overflow: hidden; margin: 13px auto 0; text-align: center; } span.align-center span img { margin: 0 auto; text-align: center; } span.align-right { display: block; overflow: hidden; clear: both; } span.align-right > span { display: block; overflow: hidden; margin: 13px 0 0; text-align: right; } span.align-right span img { margin: 0; text-align: right; } span.float-left { display: block; margin-right: 13px; overflow: hidden; float: left; } span.float-left span { margin: 13px 0 0; } span.float-right { display: block; margin-left: 13px; overflow: hidden; float: right; } span.float-right > span { display: block; overflow: hidden; margin: 13px auto 0; text-align: right; } code, tt { margin: 0 2px; padding: 0 5px; white-space: nowrap; border: 1px solid #eaeaea; background-color: #f8f8f8; border-radius: 3px; } pre code { margin: 0; padding: 0; white-space: pre; border: none; background: transparent; } .highlight pre { background-color: #f8f8f8; border: 1px solid #cccccc; font-size: 13px; line-height: 19px; overflow: auto; padding: 6px 10px; border-radius: 3px; } pre { background-color: #f8f8f8; border: 1px solid #cccccc; font-size: 13px; line-height: 19px; overflow: auto; padding: 6px 10px; border-radius: 3px; } pre code, pre tt { background-color: transparent; border: none; } /* Sidebar: */ :root { --sidebar-width: 200px; } .sidebar { margin: 0; padding: 0; width: var(--sidebar-width); background-color: #f1f1f1; position: fixed; height: 100%; overflow: auto; } /* Sidebar links */ .sidebar a { display: block; color: black; padding: 16px; text-decoration: none; } /* Active/current link */ .sidebar a.active { background-color: #4caf50; color: white; } /* Links on mouse-over */ .sidebar a:hover:not(.active) { background-color: #555; color: white; } /* Page content. */ div.content { margin-left: var(--sidebar-width); padding: 1px 16px; height: 1000px; } /* On screens that are less than 700px wide, make the sidebar into a topbar */ @media screen and (max-width: 700px) { .sidebar { width: 100%; height: auto; position: relative; } .sidebar a { float: left; } div.content { margin-left: 0; } } /* On screens that are less than 400px, display the bar vertically, instead of horizontally */ @media screen and (max-width: 400px) { .sidebar a { text-align: center; float: none; } }
0.261802
0.058993
body { background-color: #a9a9a0; color: #333; padding: 0; margin: 0; font-family: 'IM Fell DW Pica', serif; text-align: center; font-size: 20px; /* font-family: 'Ruslan Display', cursive; font-family: 'IM Fell English SC', serif; font-family: '<NAME>ira', serif; font-family: 'IM Fell DW Pica', serif; */ } button { font-size: 100%; display: inline-block; border: 0; background-color: rgba(0,0,0,0.4); color: white; border-radius: 0.2em; padding: 0.25em 1em; cursor: pointer; font-family: 'IM Fell English SC', serif; outline: none; } button:active { background-color: rgba(0,0,0,0.3); } a { text-decoration: none; color: #337; } a:hover { color: #009; background: rgba(255,255,255,0.1); } .scripts { display: none; } body > * { max-width: 800px; margin: 0 auto; text-align: left; } header { } header h1 { font-family: 'IM Fell English SC', serif; } header .version { display: inline-block; margin-left: 1em; color: rgba(0,0,0,0.3); font-size: 60%; } header a { font-size: 40%; font-family: 'IM Fell DW Pica', serif; } footer { margin-top: 9em; margin-bottom: 3em; font-size: 80%; text-align: center; } .links > a { display: inline-block; padding: 0.5em 0.5em; } .nav { font-family: 'IM Fell English SC', serif; font-size: 130%; background-color: rgba(0,0,0,0.1); } .nav a { color: #333; } .state { display: none; } #game { } #game.insane { background-color: rgba(255,0,0,0.05); box-shadow: 0 0 5em rgba(255,0,0,0.3); } #room { width: 100%; height: 100%; min-height: 600px; border: solid 1px rgba(0,0,0,0.1); position: relative; box-shadow: inset 0 0 10em rgba(0,0,0,0.1); perspective: 800px; perspective-origin: 50% 20%; overflow: hidden; transition: 2s all ease-in-out; } #room:hover { perspective-origin: 52% 22%; } #room > div { position: absolute; transform-style: preserve-3d; display: none; transition: 0.5s all ease-in-out; background-size: 100% 100%; background-repeat: no-repeat; } #room .stats { padding: 1em; top: 5%; right: 5%; background-color: rgba(255,255,255,0.1); border-radius: 2em; } #room .stats > span { display: block; } .currency-val { font-size: 200%; } .wall { top: 0; left: 0; width: 800px; height: 800px; background-color: rgba(0,0,0,0.1); border: solid 1px black; display: block; box-shadow: inset 0 0 100px rgba(0,0,0,0.2); } #back-wall { transform: translateX(0) translateY(-300px) translateZ(-400px); } #left-wall { transform: rotateY(90deg) translateX(0) translateY(-300px) translateZ(-400px); } #right-wall { transform: rotateY(-90deg) translateX(0) translateY(-300px) translateZ(-400px); } #floor { background-color: rgba(0,0,0,0.15); transform: rotateX(90deg) translateX(0) translateY(0) translateZ(-100px); } #circle { bottom: -100px; left: 50px; height: 500px; width: 500px; border-radius: 100%; border: solid 4px rgba(0,0,0,0.1); cursor: pointer; transform: rotateX(90deg) translateX(-90px) translateY(-200px) translateZ(-100px); background-image: url('../images/circle.png'); box-shadow: 0 0 1em rgba(0,0,0,0.1) } #monster { top: 50px; left: 50px; height: 450px; width: 400px; /* background-color: rgba(0,0,0,0.1); */ cursor: pointer; transform: rotateX(-20deg) rotateY(32deg); } #monster:hover { transform: rotateX(-20deg) rotateY(0deg); } #monster:active { transform: rotateX(0deg) rotateY(0deg); } #cultist { bottom: 0px; right: 0; height: 300px; width: 200px; /* background-color: rgba(0,0,0,0.1); */ transform: rotateY(-10deg) translateX(-100px) translateY(0px) translateZ(-100px); background-image: url('../images/cultist_1.png'); background-size: 120% 110%; background-position: 50% 50%; cursor: pointer; } #cultist:hover { transform: rotateY(0deg) translateX(-100px) translateY(0px) translateZ(-100px); } #cultist.insane { background-image: url('../images/cultist_insane.png'); } ol.inc { display: block; padding: 0; margin: 0; } ol.inc > li { display: block; padding: 1em; margin: 1em 0em; border-bottom: solid 1px rgba(0,0,0,0.1); background-color: rgba(255,255,255,0.1); box-shadow: 0 0.25em 0.75em rgba(0,0,0,0.2); } ol.inc > li:after { content: ""; display: table; clear: both; } ol.inc > li .count { display: block; float: left; min-width: 1em; height: 1em; padding: 0.1em 0.2em; margin: 0 1em 0 0; border: solid 1px rgba(0,0,0,0.1); font-size: 120%; text-align: center; } ol.inc > li.locked { opacity: 0.9; background: none; box-shadow: none; } ol.inc > li.locked .count { /* background: ; */ } ol.inc button { float: right; margin: 0 0 0 1em; min-width: 10em; box-shadow: 0 0.25em 0 rgba(0,0,0,0.6); } ol.inc .details { display: none; } ol.inc > li.expanded .details { display: block; } .displayName { float: left; } .bonus { display: block; font-size: 80%; margin: 0.5em 0; clear: left; float: left; } .conjured { color: #633; }
ld37/styles/magic_circle.css
body { background-color: #a9a9a0; color: #333; padding: 0; margin: 0; font-family: 'IM Fell DW Pica', serif; text-align: center; font-size: 20px; /* font-family: 'Ruslan Display', cursive; font-family: 'IM Fell English SC', serif; font-family: '<NAME>ira', serif; font-family: 'IM Fell DW Pica', serif; */ } button { font-size: 100%; display: inline-block; border: 0; background-color: rgba(0,0,0,0.4); color: white; border-radius: 0.2em; padding: 0.25em 1em; cursor: pointer; font-family: 'IM Fell English SC', serif; outline: none; } button:active { background-color: rgba(0,0,0,0.3); } a { text-decoration: none; color: #337; } a:hover { color: #009; background: rgba(255,255,255,0.1); } .scripts { display: none; } body > * { max-width: 800px; margin: 0 auto; text-align: left; } header { } header h1 { font-family: 'IM Fell English SC', serif; } header .version { display: inline-block; margin-left: 1em; color: rgba(0,0,0,0.3); font-size: 60%; } header a { font-size: 40%; font-family: 'IM Fell DW Pica', serif; } footer { margin-top: 9em; margin-bottom: 3em; font-size: 80%; text-align: center; } .links > a { display: inline-block; padding: 0.5em 0.5em; } .nav { font-family: 'IM Fell English SC', serif; font-size: 130%; background-color: rgba(0,0,0,0.1); } .nav a { color: #333; } .state { display: none; } #game { } #game.insane { background-color: rgba(255,0,0,0.05); box-shadow: 0 0 5em rgba(255,0,0,0.3); } #room { width: 100%; height: 100%; min-height: 600px; border: solid 1px rgba(0,0,0,0.1); position: relative; box-shadow: inset 0 0 10em rgba(0,0,0,0.1); perspective: 800px; perspective-origin: 50% 20%; overflow: hidden; transition: 2s all ease-in-out; } #room:hover { perspective-origin: 52% 22%; } #room > div { position: absolute; transform-style: preserve-3d; display: none; transition: 0.5s all ease-in-out; background-size: 100% 100%; background-repeat: no-repeat; } #room .stats { padding: 1em; top: 5%; right: 5%; background-color: rgba(255,255,255,0.1); border-radius: 2em; } #room .stats > span { display: block; } .currency-val { font-size: 200%; } .wall { top: 0; left: 0; width: 800px; height: 800px; background-color: rgba(0,0,0,0.1); border: solid 1px black; display: block; box-shadow: inset 0 0 100px rgba(0,0,0,0.2); } #back-wall { transform: translateX(0) translateY(-300px) translateZ(-400px); } #left-wall { transform: rotateY(90deg) translateX(0) translateY(-300px) translateZ(-400px); } #right-wall { transform: rotateY(-90deg) translateX(0) translateY(-300px) translateZ(-400px); } #floor { background-color: rgba(0,0,0,0.15); transform: rotateX(90deg) translateX(0) translateY(0) translateZ(-100px); } #circle { bottom: -100px; left: 50px; height: 500px; width: 500px; border-radius: 100%; border: solid 4px rgba(0,0,0,0.1); cursor: pointer; transform: rotateX(90deg) translateX(-90px) translateY(-200px) translateZ(-100px); background-image: url('../images/circle.png'); box-shadow: 0 0 1em rgba(0,0,0,0.1) } #monster { top: 50px; left: 50px; height: 450px; width: 400px; /* background-color: rgba(0,0,0,0.1); */ cursor: pointer; transform: rotateX(-20deg) rotateY(32deg); } #monster:hover { transform: rotateX(-20deg) rotateY(0deg); } #monster:active { transform: rotateX(0deg) rotateY(0deg); } #cultist { bottom: 0px; right: 0; height: 300px; width: 200px; /* background-color: rgba(0,0,0,0.1); */ transform: rotateY(-10deg) translateX(-100px) translateY(0px) translateZ(-100px); background-image: url('../images/cultist_1.png'); background-size: 120% 110%; background-position: 50% 50%; cursor: pointer; } #cultist:hover { transform: rotateY(0deg) translateX(-100px) translateY(0px) translateZ(-100px); } #cultist.insane { background-image: url('../images/cultist_insane.png'); } ol.inc { display: block; padding: 0; margin: 0; } ol.inc > li { display: block; padding: 1em; margin: 1em 0em; border-bottom: solid 1px rgba(0,0,0,0.1); background-color: rgba(255,255,255,0.1); box-shadow: 0 0.25em 0.75em rgba(0,0,0,0.2); } ol.inc > li:after { content: ""; display: table; clear: both; } ol.inc > li .count { display: block; float: left; min-width: 1em; height: 1em; padding: 0.1em 0.2em; margin: 0 1em 0 0; border: solid 1px rgba(0,0,0,0.1); font-size: 120%; text-align: center; } ol.inc > li.locked { opacity: 0.9; background: none; box-shadow: none; } ol.inc > li.locked .count { /* background: ; */ } ol.inc button { float: right; margin: 0 0 0 1em; min-width: 10em; box-shadow: 0 0.25em 0 rgba(0,0,0,0.6); } ol.inc .details { display: none; } ol.inc > li.expanded .details { display: block; } .displayName { float: left; } .bonus { display: block; font-size: 80%; margin: 0.5em 0; clear: left; float: left; } .conjured { color: #633; }
0.30819
0.104158
* Typography **************************/ body, button, input, select, optgroup, textarea { color: #3d4852; font-family: "Muli", "system-ui", "BlinkMacSystemFont", "-apple-system", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "sans-serif"; font-size: 1rem; line-height: 1.6; } @media screen and (min-width: 992px) { body, button, input, select, optgroup, textarea { font-size: 1.125rem; } } @media screen and (min-width: 1600px) { body, button, input, select, optgroup, textarea { font-size: 1.25rem; } } dfn, cite, em, i { font-style: italic; } p, blockquote, address, pre { margin-bottom: 1.5rem; margin-top: 0; } q { font-style: italic; } pre { background-color: #f1f5f8; border-left: 8px solid #3d4852; border-radius: 4px; font-family: "Oxygen Mono", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", "monospace"; font-size: 1rem; max-width: 100%; overflow: auto; padding: 1rem; margin: 1.5rem 0; } code, kbd, tt, var { font-family: "Oxygen Mono", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", "monospace"; } abbr, acronym { cursor: help; } mark { background-color: #3d4852; color: #fff; text-decoration: none; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { line-height: 1.2; margin: 1.5em 0 0.5em; } h1, .h1 { font-size: 2rem; } @media screen and (min-width: 992px) { h1, .h1 { font-size: 2.75rem; } } @media screen and (min-width: 1280px) { h1, .h1 { font-size: 4rem; } } h2, .h2 { font-size: 1.75rem; } @media screen and (min-width: 992px) { h2, .h2 { font-size: 2rem; } } @media screen and (min-width: 1280px) { h2, .h2 { font-size: 2.75rem; } } h3, .h3 { font-size: 1.5rem; } @media screen and (min-width: 992px) { h3, .h3 { font-size: 1.75rem; } } @media screen and (min-width: 1280px) { h3, .h3 { font-size: 2rem; } } h4, .h4 { font-size: 1.25rem; } @media screen and (min-width: 992px) { h4, .h4 { font-size: 1.5rem; } } @media screen and (min-width: 992px) { h4, .h4 { font-size: 1.75rem; } } h5, .h5 { font-size: 1.125rem; } @media screen and (min-width: 992px) { h5, .h5 { font-size: 1.25rem; } } @media screen and (min-width: 992px) { h5, .h5 { font-size: 1.5rem; } } h6, .h6 { font-size: 1rem; } @media screen and (min-width: 992px) { h6, .h6 { font-size: 1.125rem; } } @media screen and (min-width: 992px) { h6, .h6 { font-size: 1.25rem; } } a { color: inherit; transition: 0.25s all ease-in-out; } a:visited { color: #3d4852; } a:hover, a:focus, a:active { background-color: #3d4852; color: white; } a:focus { outline: thin solid #3d4852; } a:hover, a:active { outline: 0; } blockquote { background-image: url("./icons/blockquote.svg"); background-position: top right; background-repeat: no-repeat; background-size: 1.5rem; border-left: 8px solid #3d4852; font-size: 1.125em; margin: 1.5rem 0; padding: 2rem; } blockquote cite, blockquote .wp-block-quote__citation { display: block; font-size: 0.9em; text-align: right; } /************************** * Basic HTML elements **************************/ html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } body { background: white; position: initial; } hr { color: #9AACB6; margin: 1.5rem 0; } ul, ol { margin: 1.5rem 0; padding-left: 2rem; } li > ul, li > ol { margin: 0; } li { margin-top: 0.25rem; } dt { font-weight: bold; } dd { margin: 0 1.5rem 1.5rem; } img { height: auto; max-width: 100%; } svg { fill: currentColor; } figure, table { margin: 2rem 0; } table { border-collapse: collapse; border: 1px solid #58636F; width: 100%; } thead, tfoot, th { background-color: #3d4852; color: white; text-align: left; } thead a, tfoot a, th a { color: white; } thead a:visited, tfoot a:visited, th a:visited { color: white; } thead a:hover, thead a:focus, tfoot a:hover, tfoot a:focus, th a:hover, th a:focus { color: #3d4852; background-color: white; } th, td { border: 1px solid #58636F; padding: 0.5rem; } .table-wrapper { overflow: auto; } /************************** * Media elements **************************/ .page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley { border: none; margin-bottom: 0; margin-top: 0; padding: 0; } embed, iframe, object { max-width: 100%; } .icon { height: 1.25rem; width: 1.25rem; } .gallery { display: grid; margin-bottom: 1.5em; } .gallery-columns-1 { grid-template-columns: 1fr; } .gallery-columns-2 { grid-template-columns: 1fr 1fr; } .gallery-columns-3 { grid-template-columns: 1fr 1fr; } @media screen and (min-width: 576px) { .gallery-columns-3 { grid-template-columns: repeat(3, 1fr); } } .gallery-columns-4 { grid-template-columns: repeat(2, 1fr); } @media screen and (min-width: 576px) { .gallery-columns-4 { grid-template-columns: repeat(3, 1fr); } } @media screen and (min-width: 768px) { .gallery-columns-4 { grid-template-columns: repeat(4, 1fr); } } @media screen and (min-width: 992px) { .gallery-columns-4 { grid-template-columns: repeat(4, 1fr); } } .gallery-columns-5 { grid-template-columns: repeat(2, 1fr); } @media screen and (min-width: 576px) { .gallery-columns-5 { grid-template-columns: repeat(3, 1fr); } } @media screen and (min-width: 768px) { .gallery-columns-5 { grid-template-columns: repeat(4, 1fr); } } @media screen and (min-width: 992px) { .gallery-columns-5 { grid-template-columns: repeat(5, 1fr); } } .gallery-columns-6 { grid-template-columns: repeat(2, 1fr); } @media screen and (min-width: 576px) { .gallery-columns-6 { grid-template-columns: repeat(3, 1fr); } } @media screen and (min-width: 768px) { .gallery-columns-6 { grid-template-columns: repeat(4, 1fr); } } @media screen and (min-width: 992px) { .gallery-columns-6 { grid-template-columns: repeat(6, 1fr); } } .gallery-columns-7 { grid-template-columns: repeat(2, 1fr); } @media screen and (min-width: 576px) { .gallery-columns-7 { grid-template-columns: repeat(3, 1fr); } } @media screen and (min-width: 768px) { .gallery-columns-7 { grid-template-columns: repeat(4, 1fr); } } @media screen and (min-width: 992px) { .gallery-columns-7 { grid-template-columns: repeat(7, 1fr); } } .gallery-columns-8 { grid-template-columns: repeat(2, 1fr); } @media screen and (min-width: 576px) { .gallery-columns-8 { grid-template-columns: repeat(3, 1fr); } } @media screen and (min-width: 768px) { .gallery-columns-8 { grid-template-columns: repeat(4, 1fr); } } @media screen and (min-width: 992px) { .gallery-columns-8 { grid-template-columns: repeat(8, 1fr); } } .gallery-columns-9 { grid-template-columns: repeat(2, 1fr); } @media screen and (min-width: 576px) { .gallery-columns-9 { grid-template-columns: repeat(3, 1fr); } } @media screen and (min-width: 768px) { .gallery-columns-9 { grid-template-columns: repeat(4, 1fr); } } @media screen and (min-width: 992px) { .gallery-columns-9 { grid-template-columns: repeat(9, 1fr); } } .gallery-item { align-items: center; flex-direction: column; display: flex; justify-content: flex-start; } .gallery-icon, .gallery-caption, .gallery-icon img { display: block; } .wp-caption { margin-bottom: 1.5rem; max-width: 100%; } .wp-caption a img { display: block; } .wp-caption-text { font-size: 0.875rem; margin: 0.5rem 0 0; text-align: center; } .wp-block-image .alignleft, .alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1.5rem; } .wp-block-image .alignright, .alignright { float: right; margin-left: 1.5rem; margin-bottom: 1.5rem; } .aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; margin-bottom: 1.5rem; } .alignwide, .alignfull { width: auto; max-width: 100vw; } @media screen and (min-width: 992px) { .single.sidebar-bottom .alignwide, .single.sidebar-bottom .alignfull, .single.no-sidebar .alignwide, .single.no-sidebar .alignfull, .page.sidebar-bottom .alignwide, .page.sidebar-bottom .alignfull, .page.no-sidebar .alignwide, .page.no-sidebar .alignfull { margin-left: calc(25% - 25vw); margin-right: calc(25% - 25vw); } } @media screen and (min-width: 1280px) { .single.sidebar-bottom .alignfull, .single.no-sidebar .alignfull, .page.sidebar-bottom .alignfull, .page.no-sidebar .alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); } } body { overflow-x: hidden; } .wp-block { max-width: 992px; } .wp-block[data-align=wide] { max-width: 1200px; } .wp-block[data-align=full] { max-width: none; } .block-library-list ol, .block-library-list ul { margin-left: 0; } .wp-block-cover.aligncenter { display: flex; } @media screen and (min-width: 992px) { .wp-block .alignwide, .wp-block .alignfull { margin-left: calc(25% - 25vw); margin-right: calc(25% - 25vw); } } @media screen and (min-width: 1280px) { .wp-block .alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); } } .wp-block-quote.is-large, .wp-block-quote.is-style-large { border-left: 8px solid #3d4852; margin: 1.5rem 0; padding: 2rem; } .wp-block-quote__citation { margin-top: 0; } .wp-block-pullquote { border-bottom: 8px solid; border-top: 8px solid; } .wp-block-pullquote blockquote { border-left: none; } .wp-block-pullquote.is-style-solid-color { border: none; } .wp-block-file .wp-block-file__button, .wp-block-button__link { border-radius: 4px; } .wp-block-button.is-style-square .wp-block-button__link { border-radius: 0; } .wp-block-separator:not(.is-style-wide):not(.is-style-dots) { max-width: 200px; } .wp-block-separator.is-style-dots:before { font-size: 2.75rem; letter-spacing: 1em; } .wp-block-table.is-style-stripes { border: none; } .wp-block-table.is-style-stripes tr { background: #f1f5f8; } .wp-block-table.is-style-stripes tr:nth-child(even) { background-color: transparent; } /*# sourceMappingURL=editor-style.css.map */
wordpress/wp-content/themes/kawi/editor-style.css
* Typography **************************/ body, button, input, select, optgroup, textarea { color: #3d4852; font-family: "Muli", "system-ui", "BlinkMacSystemFont", "-apple-system", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "sans-serif"; font-size: 1rem; line-height: 1.6; } @media screen and (min-width: 992px) { body, button, input, select, optgroup, textarea { font-size: 1.125rem; } } @media screen and (min-width: 1600px) { body, button, input, select, optgroup, textarea { font-size: 1.25rem; } } dfn, cite, em, i { font-style: italic; } p, blockquote, address, pre { margin-bottom: 1.5rem; margin-top: 0; } q { font-style: italic; } pre { background-color: #f1f5f8; border-left: 8px solid #3d4852; border-radius: 4px; font-family: "Oxygen Mono", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", "monospace"; font-size: 1rem; max-width: 100%; overflow: auto; padding: 1rem; margin: 1.5rem 0; } code, kbd, tt, var { font-family: "Oxygen Mono", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", "monospace"; } abbr, acronym { cursor: help; } mark { background-color: #3d4852; color: #fff; text-decoration: none; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { line-height: 1.2; margin: 1.5em 0 0.5em; } h1, .h1 { font-size: 2rem; } @media screen and (min-width: 992px) { h1, .h1 { font-size: 2.75rem; } } @media screen and (min-width: 1280px) { h1, .h1 { font-size: 4rem; } } h2, .h2 { font-size: 1.75rem; } @media screen and (min-width: 992px) { h2, .h2 { font-size: 2rem; } } @media screen and (min-width: 1280px) { h2, .h2 { font-size: 2.75rem; } } h3, .h3 { font-size: 1.5rem; } @media screen and (min-width: 992px) { h3, .h3 { font-size: 1.75rem; } } @media screen and (min-width: 1280px) { h3, .h3 { font-size: 2rem; } } h4, .h4 { font-size: 1.25rem; } @media screen and (min-width: 992px) { h4, .h4 { font-size: 1.5rem; } } @media screen and (min-width: 992px) { h4, .h4 { font-size: 1.75rem; } } h5, .h5 { font-size: 1.125rem; } @media screen and (min-width: 992px) { h5, .h5 { font-size: 1.25rem; } } @media screen and (min-width: 992px) { h5, .h5 { font-size: 1.5rem; } } h6, .h6 { font-size: 1rem; } @media screen and (min-width: 992px) { h6, .h6 { font-size: 1.125rem; } } @media screen and (min-width: 992px) { h6, .h6 { font-size: 1.25rem; } } a { color: inherit; transition: 0.25s all ease-in-out; } a:visited { color: #3d4852; } a:hover, a:focus, a:active { background-color: #3d4852; color: white; } a:focus { outline: thin solid #3d4852; } a:hover, a:active { outline: 0; } blockquote { background-image: url("./icons/blockquote.svg"); background-position: top right; background-repeat: no-repeat; background-size: 1.5rem; border-left: 8px solid #3d4852; font-size: 1.125em; margin: 1.5rem 0; padding: 2rem; } blockquote cite, blockquote .wp-block-quote__citation { display: block; font-size: 0.9em; text-align: right; } /************************** * Basic HTML elements **************************/ html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } body { background: white; position: initial; } hr { color: #9AACB6; margin: 1.5rem 0; } ul, ol { margin: 1.5rem 0; padding-left: 2rem; } li > ul, li > ol { margin: 0; } li { margin-top: 0.25rem; } dt { font-weight: bold; } dd { margin: 0 1.5rem 1.5rem; } img { height: auto; max-width: 100%; } svg { fill: currentColor; } figure, table { margin: 2rem 0; } table { border-collapse: collapse; border: 1px solid #58636F; width: 100%; } thead, tfoot, th { background-color: #3d4852; color: white; text-align: left; } thead a, tfoot a, th a { color: white; } thead a:visited, tfoot a:visited, th a:visited { color: white; } thead a:hover, thead a:focus, tfoot a:hover, tfoot a:focus, th a:hover, th a:focus { color: #3d4852; background-color: white; } th, td { border: 1px solid #58636F; padding: 0.5rem; } .table-wrapper { overflow: auto; } /************************** * Media elements **************************/ .page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley { border: none; margin-bottom: 0; margin-top: 0; padding: 0; } embed, iframe, object { max-width: 100%; } .icon { height: 1.25rem; width: 1.25rem; } .gallery { display: grid; margin-bottom: 1.5em; } .gallery-columns-1 { grid-template-columns: 1fr; } .gallery-columns-2 { grid-template-columns: 1fr 1fr; } .gallery-columns-3 { grid-template-columns: 1fr 1fr; } @media screen and (min-width: 576px) { .gallery-columns-3 { grid-template-columns: repeat(3, 1fr); } } .gallery-columns-4 { grid-template-columns: repeat(2, 1fr); } @media screen and (min-width: 576px) { .gallery-columns-4 { grid-template-columns: repeat(3, 1fr); } } @media screen and (min-width: 768px) { .gallery-columns-4 { grid-template-columns: repeat(4, 1fr); } } @media screen and (min-width: 992px) { .gallery-columns-4 { grid-template-columns: repeat(4, 1fr); } } .gallery-columns-5 { grid-template-columns: repeat(2, 1fr); } @media screen and (min-width: 576px) { .gallery-columns-5 { grid-template-columns: repeat(3, 1fr); } } @media screen and (min-width: 768px) { .gallery-columns-5 { grid-template-columns: repeat(4, 1fr); } } @media screen and (min-width: 992px) { .gallery-columns-5 { grid-template-columns: repeat(5, 1fr); } } .gallery-columns-6 { grid-template-columns: repeat(2, 1fr); } @media screen and (min-width: 576px) { .gallery-columns-6 { grid-template-columns: repeat(3, 1fr); } } @media screen and (min-width: 768px) { .gallery-columns-6 { grid-template-columns: repeat(4, 1fr); } } @media screen and (min-width: 992px) { .gallery-columns-6 { grid-template-columns: repeat(6, 1fr); } } .gallery-columns-7 { grid-template-columns: repeat(2, 1fr); } @media screen and (min-width: 576px) { .gallery-columns-7 { grid-template-columns: repeat(3, 1fr); } } @media screen and (min-width: 768px) { .gallery-columns-7 { grid-template-columns: repeat(4, 1fr); } } @media screen and (min-width: 992px) { .gallery-columns-7 { grid-template-columns: repeat(7, 1fr); } } .gallery-columns-8 { grid-template-columns: repeat(2, 1fr); } @media screen and (min-width: 576px) { .gallery-columns-8 { grid-template-columns: repeat(3, 1fr); } } @media screen and (min-width: 768px) { .gallery-columns-8 { grid-template-columns: repeat(4, 1fr); } } @media screen and (min-width: 992px) { .gallery-columns-8 { grid-template-columns: repeat(8, 1fr); } } .gallery-columns-9 { grid-template-columns: repeat(2, 1fr); } @media screen and (min-width: 576px) { .gallery-columns-9 { grid-template-columns: repeat(3, 1fr); } } @media screen and (min-width: 768px) { .gallery-columns-9 { grid-template-columns: repeat(4, 1fr); } } @media screen and (min-width: 992px) { .gallery-columns-9 { grid-template-columns: repeat(9, 1fr); } } .gallery-item { align-items: center; flex-direction: column; display: flex; justify-content: flex-start; } .gallery-icon, .gallery-caption, .gallery-icon img { display: block; } .wp-caption { margin-bottom: 1.5rem; max-width: 100%; } .wp-caption a img { display: block; } .wp-caption-text { font-size: 0.875rem; margin: 0.5rem 0 0; text-align: center; } .wp-block-image .alignleft, .alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1.5rem; } .wp-block-image .alignright, .alignright { float: right; margin-left: 1.5rem; margin-bottom: 1.5rem; } .aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; margin-bottom: 1.5rem; } .alignwide, .alignfull { width: auto; max-width: 100vw; } @media screen and (min-width: 992px) { .single.sidebar-bottom .alignwide, .single.sidebar-bottom .alignfull, .single.no-sidebar .alignwide, .single.no-sidebar .alignfull, .page.sidebar-bottom .alignwide, .page.sidebar-bottom .alignfull, .page.no-sidebar .alignwide, .page.no-sidebar .alignfull { margin-left: calc(25% - 25vw); margin-right: calc(25% - 25vw); } } @media screen and (min-width: 1280px) { .single.sidebar-bottom .alignfull, .single.no-sidebar .alignfull, .page.sidebar-bottom .alignfull, .page.no-sidebar .alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); } } body { overflow-x: hidden; } .wp-block { max-width: 992px; } .wp-block[data-align=wide] { max-width: 1200px; } .wp-block[data-align=full] { max-width: none; } .block-library-list ol, .block-library-list ul { margin-left: 0; } .wp-block-cover.aligncenter { display: flex; } @media screen and (min-width: 992px) { .wp-block .alignwide, .wp-block .alignfull { margin-left: calc(25% - 25vw); margin-right: calc(25% - 25vw); } } @media screen and (min-width: 1280px) { .wp-block .alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); } } .wp-block-quote.is-large, .wp-block-quote.is-style-large { border-left: 8px solid #3d4852; margin: 1.5rem 0; padding: 2rem; } .wp-block-quote__citation { margin-top: 0; } .wp-block-pullquote { border-bottom: 8px solid; border-top: 8px solid; } .wp-block-pullquote blockquote { border-left: none; } .wp-block-pullquote.is-style-solid-color { border: none; } .wp-block-file .wp-block-file__button, .wp-block-button__link { border-radius: 4px; } .wp-block-button.is-style-square .wp-block-button__link { border-radius: 0; } .wp-block-separator:not(.is-style-wide):not(.is-style-dots) { max-width: 200px; } .wp-block-separator.is-style-dots:before { font-size: 2.75rem; letter-spacing: 1em; } .wp-block-table.is-style-stripes { border: none; } .wp-block-table.is-style-stripes tr { background: #f1f5f8; } .wp-block-table.is-style-stripes tr:nth-child(even) { background-color: transparent; } /*# sourceMappingURL=editor-style.css.map */
0.450118
0.109658
.oddRow { /*background-color: #D8D8D8;*/ float: left; width: 100%; } .oddRow div { background-color: rgba(242, 242, 242, 1); overflow: hidden; display: inline; } .oddRow input { background-color: rgba(242, 242, 242, 1); overflow: hidden; } .oddRow select { background-color: rgba(242, 242, 242, 1); overflow: hidden; width: auto; } .evenRow { /*background-color: white;*/ float: left; width: 100%; } .evenRow div { background-color: rgba(252, 252, 252, 1); overflow: hidden; display: inline; } .evenRow input { background-color: rgba(252, 252, 252, 1); overflow: hidden; } .evenRow select { background-color: rgba(252, 252, 252, 1); overflow: hidden; width: auto; } .colDiv { /*border-left-style: solid; border-left-color: #6E6E6E; border-left-width: 1px;*/ float: left; height: 30px; overflow: hidden; display: inline; padding: 5px; } .inputField { border: none !important; width: 98%; box-shadow: none !important; } .headerRow { /*background-color: #6E6E6E;*/ font-weight: 600; float: left; width: 100%; /*border-bottom: 1px solid #A7A8Ad; background: #e6e6ee; background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U2ZTZlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkYWRiZTAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); background: -moz-linear-gradient(top, #e6e6ee 0%, #dadbe0 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6e6ee), color-stop(100%,#dadbe0)); background: -webkit-linear-gradient(top, #e6e6ee 0%,#dadbe0 100%); background: -o-linear-gradient(top, #e6e6ee 0%,#dadbe0 100%); background: -ms-linear-gradient(top, #e6e6ee 0%,#dadbe0 100%); background: linear-gradient(to bottom, #e6e6ee 0%,#dadbe0 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e6ee', endColorstr='#dadbe0',GradientType=0 );*/ } .headerRow div { background-color: rgba(227, 229, 235, 1); font-weight: 600; float: left; border-top-style: solid; border-top-color: rgba(211, 211, 211, 1); border-top-width: 1px; border-bottom: 1px solid #A7A8Ad; display: inline; background: #e6e6ee; background: url(data:image/svg+xml;base64,<KEY> background: -moz-linear-gradient(top, #e6e6ee 0%, #dadbe0 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6e6ee), color-stop(100%,#dadbe0)); background: -webkit-linear-gradient(top, #e6e6ee 0%,#dadbe0 100%); background: -o-linear-gradient(top, #e6e6ee 0%,#dadbe0 100%); background: -ms-linear-gradient(top, #e6e6ee 0%,#dadbe0 100%); background: linear-gradient(to bottom, #e6e6ee 0%,#dadbe0 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e6ee', endColorstr='#dadbe0',GradientType=0 ); } .headerRow div span { background-color: rgba(227, 229, 235, 1); font-weight: 600; color: #70757A; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 1.1em; } /*.gridClass div { border-right-style: solid; border-right-color: #6E6E6E; border-right-width: 2px; }*/ .gridClass { float: left; } .lastCol { border-right-style: solid; border-right-color: rgba(211, 211, 211, 1); border-right-width: 1px; height: 30px; overflow: hidden; padding: 5px; display: inline; } .gridClass div div { /*border-right:none !important;*/ border-left-style: solid; border-left-color: rgba(211, 211, 211, 1); border-left-width: 1px; border-bottom-style: solid; border-bottom-color: rgba(211, 211, 211, 1); border-bottom-width: 1px; } .morebutton { float: right; } .nextButton { float: right; } .footer { float: left; background-color: #B9ACAC; } .downarrow { width: 14px; height: 14px; background: transparent !important; float: right !important; /*float: left !important;*/ border: none !important; border-bottom: none !important; /*position:absolute;*/ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAJCAYAAAACTR1pAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAAu0lEQVQoU2OgCMTHx0ukpaXZxcbGmiQlJeHEIPnU1FT7xMREUbBGoKBUcnLy5ezs7P9AGifOycn5D9R0OiYmRgysEQRAHKDk9czMTJDkf6BhcAzig8SB8heioqIEoVoQIC4uThooeTc9Pf1/QkLCP6CGfyA6IyPjf0pKyjW4E7EBoGZloKInMM0gGmjYvejoaBmoEtwAqFkbqPg1yE9AQ54CvaEClSIMgIrNgU48D6T1oUIkAWYojQYYGAC9TGxxAvYFGwAAAABJRU5ErkJggg==') !important; background-repeat: no-repeat !important; } .uparrow { /*float: left !important;*/ float: right !important; border: none !important; background: transparent; width: 14px; height: 14px; /*position:absolute;*/ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAJCAYAAAACTR1pAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAAo0lEQVQoU2OgCUhISHCHMokH8fHxrbm5uf+BdDVUiDAAKq7IzMz8n5yc/D8jI+N/YmJiHlQKNwA6LwekOCkp6T+Q/Q+mGWhYMlQJJgCanJieng62Ccj8B8MgflpaGkhzBFQpAgAFU7Ozs/+DnAhShI5B4llZWSADY6BaGBiAzlIHmnoIiI8BnXcEFwbKHweq3Z+SkqII1lhfX88CZhAJ7O3tWQBUeWFLgRmK1QAAAABJRU5ErkJggg==') !important; background-repeat: no-repeat !important; } .not-active { pointer-events: none; cursor: default; } .dirty { border: none !important; padding: 5px; background: transparent; width: 14px; height: 14px; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAHdElNRQfZCg0ABQlFlGvaAAABN0lEQVQ4T7WSsUoDQRCGFwu1UIK7M3ONEAtfwFIrQWwtBJ/AJ7AVJJ1R75K7MzGopWhtZ5FeLPQNLAQrBSGQLghZ/zsmUUjuOj9YDnbmn5n958wIPuZVSumMm/xADeri3FJChy5yW6ZmZjVtEiTscJs9RTQcnwZ9S0f6FNK+pk3iTt0ixJ+c8K8wIi/X4l3oYk2bDiqHciUe37GYO3mhO02ZTqVeWaGYBtT8I2xDGFJXU4rJxpJL7YrDrbzji4aLQdclmPKVvzUTpjxEsVc4O6MpxUBwMOqaFYBpHxh5QcMlpGYOovfMKJjjsU9vT+yyRsuxod3lC36GUY8oci+JBBr6ZzjiDYy751pus1qrzut1OVjDUXAT+Myo/K0pveFuTcPFSCzrdE5P+Cn6WNEAO+3ZyG4bY8wPNtF2yY3ISFgAAAAASUVORK5CYII='); background-repeat: no-repeat; }
JSLightGrid-1.0.1.css
.oddRow { /*background-color: #D8D8D8;*/ float: left; width: 100%; } .oddRow div { background-color: rgba(242, 242, 242, 1); overflow: hidden; display: inline; } .oddRow input { background-color: rgba(242, 242, 242, 1); overflow: hidden; } .oddRow select { background-color: rgba(242, 242, 242, 1); overflow: hidden; width: auto; } .evenRow { /*background-color: white;*/ float: left; width: 100%; } .evenRow div { background-color: rgba(252, 252, 252, 1); overflow: hidden; display: inline; } .evenRow input { background-color: rgba(252, 252, 252, 1); overflow: hidden; } .evenRow select { background-color: rgba(252, 252, 252, 1); overflow: hidden; width: auto; } .colDiv { /*border-left-style: solid; border-left-color: #6E6E6E; border-left-width: 1px;*/ float: left; height: 30px; overflow: hidden; display: inline; padding: 5px; } .inputField { border: none !important; width: 98%; box-shadow: none !important; } .headerRow { /*background-color: #6E6E6E;*/ font-weight: 600; float: left; width: 100%; /*border-bottom: 1px solid #A7A8Ad; background: #e6e6ee; background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U2ZTZlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkYWRiZTAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); background: -moz-linear-gradient(top, #e6e6ee 0%, #dadbe0 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6e6ee), color-stop(100%,#dadbe0)); background: -webkit-linear-gradient(top, #e6e6ee 0%,#dadbe0 100%); background: -o-linear-gradient(top, #e6e6ee 0%,#dadbe0 100%); background: -ms-linear-gradient(top, #e6e6ee 0%,#dadbe0 100%); background: linear-gradient(to bottom, #e6e6ee 0%,#dadbe0 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e6ee', endColorstr='#dadbe0',GradientType=0 );*/ } .headerRow div { background-color: rgba(227, 229, 235, 1); font-weight: 600; float: left; border-top-style: solid; border-top-color: rgba(211, 211, 211, 1); border-top-width: 1px; border-bottom: 1px solid #A7A8Ad; display: inline; background: #e6e6ee; background: url(data:image/svg+xml;base64,<KEY> background: -moz-linear-gradient(top, #e6e6ee 0%, #dadbe0 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6e6ee), color-stop(100%,#dadbe0)); background: -webkit-linear-gradient(top, #e6e6ee 0%,#dadbe0 100%); background: -o-linear-gradient(top, #e6e6ee 0%,#dadbe0 100%); background: -ms-linear-gradient(top, #e6e6ee 0%,#dadbe0 100%); background: linear-gradient(to bottom, #e6e6ee 0%,#dadbe0 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e6ee', endColorstr='#dadbe0',GradientType=0 ); } .headerRow div span { background-color: rgba(227, 229, 235, 1); font-weight: 600; color: #70757A; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 1.1em; } /*.gridClass div { border-right-style: solid; border-right-color: #6E6E6E; border-right-width: 2px; }*/ .gridClass { float: left; } .lastCol { border-right-style: solid; border-right-color: rgba(211, 211, 211, 1); border-right-width: 1px; height: 30px; overflow: hidden; padding: 5px; display: inline; } .gridClass div div { /*border-right:none !important;*/ border-left-style: solid; border-left-color: rgba(211, 211, 211, 1); border-left-width: 1px; border-bottom-style: solid; border-bottom-color: rgba(211, 211, 211, 1); border-bottom-width: 1px; } .morebutton { float: right; } .nextButton { float: right; } .footer { float: left; background-color: #B9ACAC; } .downarrow { width: 14px; height: 14px; background: transparent !important; float: right !important; /*float: left !important;*/ border: none !important; border-bottom: none !important; /*position:absolute;*/ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAJCAYAAAACTR1pAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAAu0lEQVQoU2OgCMTHx0ukpaXZxcbGmiQlJeHEIPnU1FT7xMREUbBGoKBUcnLy5ezs7P9AGifOycn5D9R0OiYmRgysEQRAHKDk9czMTJDkf6BhcAzig8SB8heioqIEoVoQIC4uThooeTc9Pf1/QkLCP6CGfyA6IyPjf0pKyjW4E7EBoGZloKInMM0gGmjYvejoaBmoEtwAqFkbqPg1yE9AQ54CvaEClSIMgIrNgU48D6T1oUIkAWYojQYYGAC9TGxxAvYFGwAAAABJRU5ErkJggg==') !important; background-repeat: no-repeat !important; } .uparrow { /*float: left !important;*/ float: right !important; border: none !important; background: transparent; width: 14px; height: 14px; /*position:absolute;*/ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAJCAYAAAACTR1pAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAAo0lEQVQoU2OgCUhISHCHMokH8fHxrbm5uf+BdDVUiDAAKq7IzMz8n5yc/D8jI+N/YmJiHlQKNwA6LwekOCkp6T+Q/Q+mGWhYMlQJJgCanJieng62Ccj8B8MgflpaGkhzBFQpAgAFU7Ozs/+DnAhShI5B4llZWSADY6BaGBiAzlIHmnoIiI8BnXcEFwbKHweq3Z+SkqII1lhfX88CZhAJ7O3tWQBUeWFLgRmK1QAAAABJRU5ErkJggg==') !important; background-repeat: no-repeat !important; } .not-active { pointer-events: none; cursor: default; } .dirty { border: none !important; padding: 5px; background: transparent; width: 14px; height: 14px; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAHdElNRQfZCg0ABQlFlGvaAAABN0lEQVQ4T7WSsUoDQRCGFwu1UIK7M3ONEAtfwFIrQWwtBJ/AJ7AVJJ1R75K7MzGopWhtZ5FeLPQNLAQrBSGQLghZ/zsmUUjuOj9YDnbmn5n958wIPuZVSumMm/xADeri3FJChy5yW6ZmZjVtEiTscJs9RTQcnwZ9S0f6FNK+pk3iTt0ixJ+c8K8wIi/X4l3oYk2bDiqHciUe37GYO3mhO02ZTqVeWaGYBtT8I2xDGFJXU4rJxpJL7YrDrbzji4aLQdclmPKVvzUTpjxEsVc4O6MpxUBwMOqaFYBpHxh5QcMlpGYOovfMKJjjsU9vT+yyRsuxod3lC36GUY8oci+JBBr6ZzjiDYy751pus1qrzut1OVjDUXAT+Myo/K0pveFuTcPFSCzrdE5P+Cn6WNEAO+3ZyG4bY8wPNtF2yY3ISFgAAAAASUVORK5CYII='); background-repeat: no-repeat; }
0.462716
0.190291
.opacity6 { filter:alpha(Opacity=80); -moz-opacity:0.6; opacity: 0.6; } .opacity7 { filter:alpha(Opacity=80); -moz-opacity:0.7; opacity: 0.7; } .opacity8 { filter:alpha(Opacity=80); -moz-opacity:0.85; opacity: 0.85; } .opacity9 { filter:alpha(Opacity=80); -moz-opacity:0.9; opacity: 0.9; } /* @group YUI CSS Reset */ body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { margin:0; padding:0; } table { border-collapse:collapse; border-spacing:0; width: 100%; } fieldset,img { border:0; } address,caption,cite,code,dfn,em,strong,th,var { font-style:normal; font-weight:normal; } ol,ul { list-style:none; } caption,th { text-align:left; } q:before,q:after { content:''; } abbr,acronym { border:0; } p { margin-bottom: 1em; color: #4d4d4d; } p strong { font-weight: bold; } .width100 { width: 100%; } /* @end */ /* @group Global */ body { background: #3d3d3d; width: 100%; min-width: 300px; } /* standalone css for mobile devices */ body.standalone { background-color: #ffffff; } body.standalone #right-sidebar { background: #3d3d3d; } .small { font-size: 10px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; padding-right: 10px !important; padding-left: 10px !important; margin-right: 10px !important; } strong { font-weight: bold; } .registrationPhoneTerms p { font-size: 10px !important; } .reveal-modal { padding: 15px; z-index: 50; } .reveal-modal-bg { z-index: 40; } button { -webkit-appearance: none; } .alert-box.wft-icon { display: block; padding: 10px 10px 10px 34px; background: url(../images/wft-icon-gray-small.png) 7px 6px no-repeat #f2f2f2; border-style: none; text-shadow: none; font-size: 14px; color: #565656; line-height: 14px; } hr { border-color: #f1f1f1; } /* Auto Complete jQuery UI */ .ui-autocomplete { max-height: 200px; overflow-y: auto; /* prevent horizontal scrollbar */ overflow-x: hidden; } /* IE 6 doesn't support max-height * we use height instead, but this forces the menu to always be this tall */ * html .ui-autocomplete { height: 200px; } /* Fixes the expand reveal width issue */ /* @group Javascript Required */ #javascript-required{ position: fixed; z-index: 30; width: 100%; height: 100%; background: url(../images/pngs/70.png) repeat; top: 0px; left: 0px; color: #ffffff; text-align: center; font-size: 20px; } #javascript-required i { font-size: 120px; display: block; padding-top: 50px; } #javascript-required span { font-weight: bold; } #javascript-required p { color: #ffffff; } /* @end */ @media only screen and (min-width: 960px) { .reveal-modal.expand, .reveal-modal.xlarge { padding: 15px !important; max-width: 864px !important; left: 50%; margin-left: -432px !important; } } /* @end */ /* @group Header */ #ns-tool-bar { /*position: fixed;*/ position: absolute; top: 0px; left: 0px; width: 100%; /*width: 75%;*/ /*height: 35px;*/ padding-left: 0px !important; line-height: 29px; z-index: 12; -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.32); -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.32); box-shadow: 0 0 5px rgba(0, 0, 0, 0.32); /* Eliminates Flicker issue on ios */ -webkit-perspective: 500; -webkit-backface-visibility: hidden; } #ns-tool-bar.slide, #top-toolbar.slide, #left-content.slide { width: 75%; } #ns-tool-bar .row .columns { padding-right: 0px; } #logo { font-weight: bold; color: #ffffff; font-size: 18x; float: left; width: 194px; display: block; float: left; margin-top: 12px; margin-bottom: 5px; } /* @group Search */ #search-container { width: 379px; float: right; left: 50%; position: absolute; z-index: 10; max-height: 32px; overflow: hidden; top: 14px; margin-left: 27px; } #search-container fieldset input.text { float: left; width: 189px; padding-right: 27px; margin-bottom: 0; } #search-facebook, #search-twitter, #search-wordpress, #search-pinterest, #search-youtube, #search-social-login, #search-social-register { color: #ffffff; display: block; float: left; font-size: 20px; height: 32px; width: 32px; text-align: center; line-height: 34px; /*background-image: url(../images/pngs/10.png);*/ -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; margin-right: 5px; background-color: #1488eb; } #search-social-login { font-size: 14px; font-weight: bold; width: 56px; } #search-social-register { font-size: 14px; font-weight: bold; width: 76px; } #search-facebook:hover, #search-twitter:hover, #search-wordpress:hover, #search-pinterest:hover, #search-youtube:hover { background-image: url(../images/pngs/20.png); } #search-wordpress img { width: 18px; margin-top: -6px; } #search-button i.icon-search { color: #c1c1c1; display: block; float: left; font-size: 20px; height: 32px; width: 32px; text-align: center; line-height: 31px; margin-right: -32px; right: 32px; position: relative; } #search-button i.icon-search:hover { color: #2892ee; } #forOhForSearch { margin-top: -10px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f1f1f1; /* Remove when live */ /*display: none;*/ } #forOhForSearch input.text { float: left; padding-right: 27px; margin-bottom: 0; } #forOhForSearch #search-button i.icon-search { color: #c1c1c1; display: block; float: right; font-size: 20px; height: 32px; width: 32px; text-align: center; line-height: 31px; margin-right: 0px; right: 0px; position: relative; margin-top: -36px; } /* fix on icons on scaling */ #nsu-search { position: absolute; left: 9999px; } /* @end */ /* @group Top Toolbar */ #top-toolbar { background-color: #333433; position: absolute; top: 61px; z-index: 11; width: 100%; border-bottom: 4px solid #292a29; -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); } #top-toolbar a { display: block; float: left; font-size: 12px; color: #ffffff; line-height: 44px; padding-right: 15px; padding-left: 15px; margin-bottom: -4px; font-weight: bold; } #top-toolbar a img { margin-right: 10px; } #top-toolbar-colleges { border-left: 1px solid #292928; border-bottom: 4px solid #b082b3; } #top-toolbar-colleges:hover { background-color: #b082b3; border-bottom: 4px solid #a36ea7; } #top-toolbar-scholarships, #top-toolbar-scholarships-loggedout{ border-left: 1px solid #292928; border-bottom: 4px solid #7ab10d; } #top-toolbar-scholarships:hover, #top-toolbar-scholarships-loggedout:hover { border-bottom: 4px solid #70a30c; background-color: #7ab10d; } #top-toolbar-articles { border-left: 1px solid #292928; border-bottom: 4px solid #fb8d2a; } #top-toolbar-articles:hover { border-bottom: 4px solid #fa7c0b; background-color: #fb8d2a; } #top-toolbar-path, #top-toolbar-path-loggedout { border-left: 1px solid #292928; border-right: 1px solid #292928; border-bottom: 4px solid #2992ed; } #top-toolbar-path:hover, #top-toolbar-path-loggedout:hover { border-bottom: 4px solid #1283e5; background-color: #2992ed; } #top-toolbar-login { float: right !important; background-image: url(../images/pngs/20.png); line-height: 48px !important; } #top-toolbar-register { float: right !important; background-image: url(../images/pngs/40.png); line-height: 48px !important; } #top-toolbar-login:hover, #top-toolbar-register:hover { background-color: #191919; } /* @end */ /* @end */ /* @group Left Content */ /* @group Search Styles */ div.psResultsHead { float: left; margin-top: -16px; width: 100%; border-bottom: 1px solid #dedede; } a.psTitle { font-weight: bold; } .psDocIcon { display: none; } .psIconFormat { margin-left: 0; } .psResultsNav { float: left; background-color: #f2f2f2; color: #9b9b9b; font-size: 14px; line-height: 16px; } .psResultsNav a { display: inline-block; padding: 6px 10px; color: #9b9b9b; border-left: 1px solid #e7e7e7; border-bottom: 3px solid #e7e7e7; margin-right: 0; margin-left: 0; } .psResultsNav a:hover { background-color: #9d589f !important; color: #ffffff !important; border-bottom: 3px solid #7f4581 !important; border-right-color: #9d589f !important; } .psResultsNav span { padding-left: 10px; } /* @end */ /* @group Homepage */ /* @group Path Flow */ /*#path-flow-wrapper { background: url(../images/path-wrapper-bg.jpg) repeat #c1c1c1; } #path-flow { background: url(../images/path-flow.jpg) -5px 1px no-repeat; height: 60px; margin-top: -2px; max-width: 800px; margin-right: auto; margin-left: auto; } #path-flow a { height: 61px; width: 697px; display: block; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -ms-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; margin-left: -470px; } #path-flow a:hover { margin-left: -460px }*/ /* @end */ /* @group Home Tools */ #home-tools { background-color: #ededed; overflow: auto; margin-bottom: 10px; } #home-tools a { display: block; overflow: auto; } #home-tools ul { max-width: 830px; margin-right: auto; margin-left: auto; overflow: auto; } #home-tools li:hover { background-color: #e0e0e0; } #home-tools li { width: 25%; float: left; height: 100%; } #home-tools em { display: block; text-align: center; color: #686868; font-size: 37px; margin-top: 30px; margin-right: auto; margin-left: auto; } #home-tools h3 { font-weight: normal; font-style: normal; text-align: center; font-size: 18px; margin-top: 6px; margin-bottom: 10px; padding-right: 15px; padding-left: 15px; } #home-tools p { color: #999999; font-size: 12px; margin-bottom: 20px; padding-right: 15px; padding-left: 15px; } /* @end */ /* @end */ /* @group Site Content */ #left-content { position: absolute; left: 0px; float: left; width: 100%; -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); z-index: 10; background-color: #f2f2f2; padding-top: 72px; } /* @end */ /* @group Articles*/ article header { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #eaeaea; } #ArticleImage { float: left; width: 33%; margin-right: 10px; margin-bottom: 0; border: 1px solid #f4f4f4; margin-top: 6px; } article header h2 { font-weight: normal; font-style: normal; font-size: 16px; color: #787878; margin-top: 8px; line-height: 20px; } .article-image { float: left; max-width: 180px; margin-right: 15px; margin-bottom: -5px; margin-top: 6px; -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.17); -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.17); box-shadow: 0 0 5px rgba(0, 0, 0, 0.17); } .school-lists li label{ font-size: 14px; padding-left: 18px; font-weight: bold; } article ul { margin-top: 6px; } article li { list-style-position: outside; list-style: disc; margin-left: 20px; margin-bottom: 10px; } /* @group Address */ .adr { margin-bottom: 10px; line-height: 19px; margin-top: 8px; } .adr a { color: #626262; } .data-box p { font-size: 12px; } #degrees-table td, #degrees-table th { font-size: 12px; } #degrees-table td span.check { font-weight: bold; } .img-box { margin-bottom: -10px; } .img-box img { margin-bottom: 10px; border: 1px solid #e6e6e6; box-shadow: 0 0 5px rgba(0, 0, 0, 0.09); } /* @end */ /* @group Article Meta */ .article-meta { margin-top: 10px; color: #9e9e9e; font-size: 12px; min-height: 60px; } .article-author-picture { max-height: 50px; max-width: 50px; float: left; margin-right: 10px; } .article-social-links { overflow: auto; margin-top: 5px; } .article-social-links li { float: left; } /* Fix Social Widths */ .article-facebook-like iframe { width: 50px !important; margin-right: 0 !important; } .article-google-plus iframe, .article-google-plus div { width: 32px !important; margin-right: 0 !important; } .article-google-plus div { margin-right: 2px !important; } .article-twitter iframe { width: 58px !important; margin-right: 0 !important; } /* @end */ /* @group Article Tiles */ ul.tiles { margin-bottom: 15px; width: 103%; } ul.tiles li { width: 32%; display: inline-block; height: 150px; margin-right: 0; background-color: #2791ed; margin-bottom: 4px; overflow: hidden; } ul.tiles li a { font-size: 12px; display: block; line-height: 14px; color: #ffffff; padding: 10px; height: 150px; background-size: 25px 25px; } ul.tiles li a h3 { font-size: 12px; text-transform: uppercase; margin-bottom: 9px; color: #ffffff; } /* Two Columns Tiles*/ @media only screen and (max-width: 480px) { ul.tiles li { width: 49%; } } /* @end */ /* @end Article Tiles */ /* @group Article Categories Menu */ .article-container { background-color: #eeeeee; margin-bottom: 15px; } .article-container header { color: #ffffff; background-color: #f5f5f5; padding: 10px 15px; font-size: 20px; border-bottom: 1px solid #ebebeb; } .article-container header div { display: block; max-width: 800px; display: block; margin-left: auto; margin-right: auto; font-weight: bold; font-size: 16px; min-height: 19px; line-height: 19px; } .secondary-breadcrumbs { font-size: 12px; color: #a1a1a1; font-weight: normal; font-style: normal; } .secondary-breadcrumbs a { color: #626262; } .secondary-breadcrumbs a:hover { background-color: transparent !important; color: #2892ed !important; } .secondary-breadcrumbs i { margin-right: 5px; margin-left: 5px; } #articles-view { font-size: 14px; color: #ffffff; padding: 5px 3px 5px 8px; background-color: #fa8d29; margin-right: 5px; } #articles-view:hover { background-color: #f47704; color: #ffffff; } .article-container ul { width: 33%; float: left; } .article-container li a { display: block; line-height: 18px; color: #626362; font-size: 14px; padding: 9px 10px; } .article-container .row { padding-bottom: 10px; padding-top: 5px; border-bottom: 1px solid #e2e2e2; } .article-container a:hover { background-color: #fa8d29; color: #ffffff; } .article-container a.active { background-color: #535353; color: #ffffff; } .article-categories-dropdown { max-height: 0px; overflow: hidden; -webkit-transition: all 0.4s ease-in-out; -moz-transition: all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out; -o-transition: all 0.4s ease-in-out; transition: all 0.4s ease-in-out; } .article-categories-dropdown.slide { max-height: 1200px; } /* @end */ /* @group Article Page Footer Links */ #article-categories-footer { padding-top: 20px; margin-top: 20px; border-top: 1px solid #e2e2e2; margin-bottom: -24px; background-color: #3c3c3c; padding-bottom: 20px; } #article-categories-footer h3 { margin-left: 10px; color: #dedede; margin-bottom: 15px; } #article-categories-footer ul { float: left; width: 33%; } #article-categories-footer ul a { font-size: 12px; padding: 7px 10px; display: block; color: #a4a4a4; line-height: 15px; } #article-categories-footer ul a:hover { background-color: #313131; color: #ffffff; } /* @end */ /* @group Scholarships Page */ #mainFrame { width: 100%; } .scholarship-list.list { margin-bottom: 15px; } .scholarship-list.list li { border-bottom: 1px solid #dfdfdf; background-color: #ffffff; } .scholarship-list.list .item { display: block; padding: 10px; overflow: auto; } .scholarship-list.list li:nth-child(even) { background-color: #f9f9f9; border-left-color: #f9f9f9; } /* List Categories */ .scholarship-list.list li { /*border-left: 4px solid #ffffff;*/ } .scholarship-list.list .new, .scholarship-list.list .new:nth-child(even) { border-left: 4px solid #fd8d2a; } .scholarship-list.list .favorite, .scholarship-list.list .favorite:nth-child(even) { border-left: 4px solid #7bb20f; } .scholarship-list.list .deleted, .scholarship-list.list .deleted:nth-child(even) { border-left: 4px solid #c34148; } /*If there's an image*/ .scholarship-list.list.images img { float: left; max-width: 60px; margin-left: -70px; } .scholarship-list.list.images li a { padding-left: 80px; } .scholarship-list .item-more { overflow: hidden; max-height: 0px; -webkit-transition: max-height 0.8s ease-in-out; -moz-transition: max-height 0.8s ease-in-out; -ms-transition: max-height 0.8s ease-in-out; -o-transition: max-height 0.8s ease-in-out; transition: max-height 0.8s ease-in-out; padding-left: 10px; padding-right: 10px; } .scholarship-list .item-more.slide { max-height: 1000px; } .scholarship-list .item-more-buttons { overflow: auto; background-color: #f8f8f8; margin: 10px 0; padding: 10px; } .scholarship-list .item-title { display: block; font-size: 16px; font-weight: bold; line-height: 18px; margin-bottom: 4px; color: #2892ed; margin-top: -4px; } .scholarship-list .item-date { float: right; color: #818181; font-size: 12px; } .scholarship-list .item-comments { color: #a8a8a8; font-size: 12px; } .scholarship-list .item-subline { color: #626362; font-size: 14px; font-weight: bold; } .scholarship-list .scholarshipAddress { font-style: italic; color: #707070; font-size: 12px; } .scholarship-list .list-menu { margin-bottom: 15px; margin-top: 5px; background-color: #ffffff; } .scholarship-list .list-menu dt { font-weight: bold; font-size: 16px; padding: 3px 7px; } .scholarship-list .list-menu dd { border-bottom: 1px solid #f2f2f2; } .scholarship-list .list-menu a { display: block; color: #a0a0a0; height: 35px; font-weight: bold; font-size: 14px; line-height: 33px; background-color: #ffffff; } .scholarship-list .list-menu .notification { color: #8a8a8a; margin-right: 10px; background: repeat #f0f0f0; } .scholarship-list .list-menu a i { float: left; margin-top: 0; line-height: 38px; height: 35px; width: 35px; text-align: center; font-size: 20px; background: url(../images/pngs/10.png) repeat; } /* @end */ /* @group Facebook Comments */ .fb-comments.fb_iframe_widget, .fb-comments.fb_iframe_widget span { width: 100% !important; } iframe.fb_ltr { width: 100% !important; } /* @end */ /* @group Definition List */ dl.list { background-color: #f5f5f5; margin-bottom: 15px; color: #9c9c9c; } dl.list dt { display: block; color: #ffffff; height: 35px; font-weight: bold; font-size: 14px; line-height: 33px; padding-left: 10px; } dl.list dd { overflow: auto; } dl.list dd a { font-size: 14px; display: block; color: #757575 !important; line-height: 16px; border-bottom: 1px solid #dfdfdf; padding: 10px 31px 10px 10px; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -ms-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; overflow: auto; } dl.list dd a:hover { background-color: #ffffff; } dl.list dd a p { font-size: 12px; color: #9c9c9c; margin-bottom: 0; margin-top: 5px; } dl.list dd a div { font-size: 12px; color: #aeaeae; } dl.list dd.last a { text-align: center; font-size: 12px; color: #a4a4a4 !important; background-color: #ffffff; border-bottom-style: solid; border-bottom-color: #f1f1f1; } dl.list dd.last a i { float: none; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -ms-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } dl.list dd a i, dl.list dd a em { float: right; color: #c2c2c2; position: relative; right: -8px; margin-right: -15px; min-width: 16px; } dl.list dd a img { float: left; width: 75px; margin-right: 8px; border: 1px solid #ededed; margin-top: 2px; } /* @group Article List */ dl.article-list { background-color: #ffffff; } dl.article-list dd { padding: 10px; border-bottom: 1px solid #f1f1f1; overflow: auto; } .article-list-content { margin-left: 70px; line-height: 16px; } dl.article-list dd img { width: 55px; float: left; } a.article-title { font-size: 16px; color: #fc8d2a; font-weight: bold; } .article-title:hover { color: #fc8d2a; } dl.article-list p { line-height: 16px; font-size: 12px; margin-top: 0; margin-bottom: 0; } dl.article-list p a { color: #6d6d6d; } .article-list .meta, .article-list .meta a { font-size: 12px; color: #adadad; text-align: right; } .article-list .meta a { float: left; } .article-list .meta a:hover { color: #fc8d2a; } .article-list .favorite-icon { float: right; margin-left: 10px; margin-top: -3px; } dl.article-list ul.pagination { float: right; } /* @end */ /* @group Favorites List */ .favorite-icon, .info-icon { text-align: center; font-size: 16px; color: #dbdbdb; } .favorite-icon:hover { color: #7bb10e; } .favorite-icon.active { color: #7bb10e; } /* @end */ /* @end */ /* @group Left Tools */ .sidebar-tool { display: block; padding: 10px; margin-bottom: 15px; height: 51px; font-weight: bold; } .sidebar-tool span.subtext { display: block; float: left; font-size: 12px; line-height: 22px; font-weight: normal; font-style: normal; } .sidebar-tool:hover { color: #ffffff; } /* @end */ /* @group Add Wrapper */ .add-wrapper { background-color: #f5f5f5; text-align: center; padding: 10px; margin-bottom: 15px; overflow: auto; } .add-wrapper-military { background-color: #f5f5f5; padding: 10px; margin-bottom: 15px; text-align: center; } .military-social a { color: #a5a5a5; font-size: 24px; } .add-wrapper-military object, .add-wrapper-military embed { max-width: 728px; margin-right: auto; margin-left: auto; } a.advertise-with-nextstepu { padding-bottom: 0 !important; padding-top: 8px; font-size: 10px; color: #bbbbbb; } .add-wrapper.first { margin-top: 7px; padding-right: 0; padding-left: 0; } .dart-ads a, .dart-ads object { padding-bottom: 10px; } .add-wrapper.top-banner { background-color: #202020; padding: 15px; margin-bottom: 0; /*max-height: 120px; overflow: hidden;*/ } .add-wrapper ul#horizontal-list { max-height: 90px; width: 1372px; } .add-wrapper ul#horizontal-list * { position: relative !important; z-index: 1 !important; } .add-wrapper ul#horizontal-list li { padding-right: 8px; padding-left: 8; } .add-wrapper ul#horizontal-list li iframe { width: 180px; height: 90px; } #sponsored-by { font-size: 10px; color: #bbbbbb; position: relative; top: 5px; clear: both; } .add-wrapper div, .add-wrapper object { display: block; width: 100% !important; text-align: center; } .add-wrapper object { max-height: 90px; max-width: 728px; margin-right: auto; margin-left: auto; } .add-wrapper .block-grid li { padding-bottom: 0 !important; text-align: center; } .add-wrapper > * { text-align: left; } .add-wrapper a { display: inline-block; margin-bottom: 2px; margin-top: 2px; } .add-wrapper > *:last-child { margin-bottom: 0; } .add-wrapper strong { font-weight: bold; color: #606060; } .add-wrapper ul li { float: left; margin-top: 6px; height: 90px; width: 190px; } .add-wrapper ul li a { font-size: 10px; padding: 1px 6px 2px; margin-right: 4px; display: block; font-weight: bold; } .add-wrapper .block-grid li a{ padding: 0; } .add-wrapper ul li a:hover { color: #ffffff; } .add-wrapper p { letter-spacing: normal; } /* @end */ /* @group Add Border */ .add-border { border: 1px solid #e5e5e5; padding: 20px; margin-bottom: 30px; } .armedServices { background: url(../images/flagBackground.jpg) no-repeat; } .armedServices h3 { color: #3c3c3c; } #sponsored-by-footer { background-color: #f5f5f5; padding: 20px 20px 10px; margin-bottom: 15px; overflow: auto; } /* @end */ /* @group Pagination */ .nsPaging { border: none; margin-left: auto; margin-right: auto; margin-bottom: 5px; } .nsPaging td { padding: 0px !important; } .nsPaging td a { display: block; padding: 6px 10px; background-color: #f2f2f2; color: #9b9b9b; font-size: 14px; line-height: 16px; border-bottom: 3px solid #ebebeb; border-right: 1px solid #ebebeb; } .nsPaging td:last-child a { border-right-style: none; } .nsPaging td a:hover { background-color: #9d589f; color: #ffffff; border-bottom: 3px solid #7f4581; border-right-color: #9d589f; } .nsPaging td a.lnkPages_On { color: #ffffff; background-color: #b182b3; border-bottom: 3px solid #aa70ac; border-right-color: #b182b3; cursor: default !important; } /* @end */ /* @group User Profile */ #profile-count-buttons a { display: block; text-align: center; font-size: 12px; font-weight: bold; color: rgba(255, 255, 255, 0.5); background-color: #5f5f5f; padding-top: 15px; padding-bottom: 15px; border-bottom: 4px solid #4c4c4c; margin-bottom: 5px; } #profile-count-buttons a span { display: block; font-size: 30px; color: #ffffff; line-height: 25px; padding-bottom: 5px; } #degrees-table-custom, #degrees-table { border-style: none; border-left-style: none; border-right-style: none; } #degrees-table-custom thead tr th, #degrees-table thead tr th { background-color: #626262; color: #ffffff; } #degrees-table-custom tbody tr td, #degrees-table tbody tr td { font-size: 12px; line-height: 14px; } /* @end */ /* @group Partner Profile */ /* @group Profile Box */ #profile-box { width: 92%; padding: 9px 0 10px 9px; overflow: auto; } #profile-username { font-weight: normal; font-style: normal; color: #ffffff; margin-bottom: 0; font-size: 23px; } #profile-box a { font-size: 12px; color: #989898; margin-right: 2%; display: block; background-color: #555555; padding-top: 7px; padding-bottom: 7px; text-align: center; float: left; display: block; margin-top: 7px; width: 48%; } #profile-box a i { display: none; } #profile-box a:last-child { margin-right: 0; } #profile-usertype { color: #989898; padding-top: 3px; font-size: 16px; } #profile-box .block-grid li { padding-bottom: 0; margin-top: 7px; } #dnn_nsRightSidebar_nspathSidebar_hlLogout:hover { background-color: #c34148; color: #ffffff; } #profile-settings:hover { background-color: #fc8d2a; color: #ffffff; } /* @end */ .sidebar-header { display: block; color: #ffffff; height: 35px; font-weight: bold; font-size: 14px; line-height: 33px; } .sidebar-header:hover, .sidebar-header:active, .sidebar-header:visited, .sidebar-header i, .sidebar-header span { color: #ffffff !important; } .sidebar-header span { margin-left: 10px; } .notification { float: right; margin: 8px 33px 0 10px; padding: 2px 7px; text-align: center; line-height: 16px; -webkit-border-radius:10px; -moz-border-radius:10px; -ms-border-radius:10px; -o-border-radius:10px; border-radius:10px; color: #ffffff; font-size: 12px; } .sidebar-header i, .sidebar-header em { float: left; margin-top: 0; line-height: 38px; height: 35px; width: 35px; text-align: center; font-size: 20px; background: url(../images/pngs/10.png) repeat; } .sidebar-header i.icon-comment { background-color: transparent !important; background-image: none !important; margin-top: -2px; } .sidebar-header em img { width: 18px; margin-top: -6px; } #search-icon { margin-top: 0; line-height: 34px; height: 35px; width: 35px; text-align: center; font-size: 20px; float: right; margin-right: 0; z-index: 10; position: relative; padding-top: 0; background: url(../images/pngs/10.png) repeat; display: none; } .sidebar-header i img, #search-icon img { width: 20px; } .profile img { width: 93%; } #profile-message-container, #profile-articles-container, #profile-path-container, #profile-schools-container { display: none; width: 92%; } #profile-message-container.slide, #profile-articles-container.slide, #profile-path-container.slide, #profile-schools-container.slide { display: block; } .sidebar p { font-size: 12px; margin-bottom: 10px; } .profile ul, .profile ul li { margin: 0; padding: 0; padding-bottom: 0px !important; line-height: 12px; font-size: 12px; font-weight: bold; } .profile ul li a strong { color: #ffffff; display: block; } #profile-articles-container li a { display: block; color: #ffffff; font-weight: normal; font-style: normal; font-size: 14px; padding: 10px !important; line-height: 16px; border-bottom: 1px solid #454545; background-color: #3b3c39; } #profile-articles-container li a:hover { background-color: #353535; } .profile a.more { color: #b3b3b3; display: block; text-align: center; padding-top: 13px; padding-bottom: 15px; background-color: #3b3c3b; -webkit-border-radius:5px; -moz-border-radius:5px; -ms-border-radius:5px; -o-border-radius:5px; border-radius:5px; font-size: 12px; -webkit-transition: background-color 0.2s ease-in-out; -moz-transition: background-color 0.2s ease-in-out; -ms-transition: background-color 0.2s ease-in-out; -o-transition: background-color 0.2s ease-in-out; transition: background-color 0.2s ease-in-out; border-color: #313131; } .profile a.more:target, .profile a.more:hover { background-color: #2f2f2f; } #profile-message-container .flagged { border-left-color: #a87cac; } #profile-articles-container .flagged { border-left-color: #fd8d2a; } #profile-path-container .flagged { border-left-color: #2993ee; } #profile-schools-container .flagged { border-left-color: #7bb10e; } /* Login toolTip */ /*#loginTip { position: fixed; width: 76px; height: 30px; padding-top: 5px; padding-bottom: 5px; padding-left: 0; font-size: 15px; text-align: center; border-radius: 3px; box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.39); z-index: 1000; left: 75%; margin-left: -86px; color: #ffffff; font-weight: bold; background-color: #ed2a32; opacity: 0; top: 74px; } #loginTip:after { content: ""; position: absolute; width: 0; height: 0; border-width: 10px; border-style: solid; border-color: transparent transparent transparent #ed2a32; top: 5px; left: 72px; } #loginTip i { font-size: 12px; } */ .no-content { font-size: 11px; padding: 10px; color: #7a7a7a; line-height: 16px; } .no-content strong { font-weight: bold; display: block; font-size: 13px; } /* @end */ /* @end Left Content*/ /* @group Right Sidebar */ #right-sidebar { float: right; width: 28%; background: url(../images/background-pattern-dark.png) repeat-x center top transparent; color: #ffffff; overflow: scroll; -webkit-overflow-scrolling: touch; position: fixed; top: 0px; right: -3%; z-index: 5; overflow-x: hidden; } /* This CSS fixes the discrepancy between browser scrollbar widths */ #right-sidebar::-webkit-scrollbar { width:3%; height:9px; } #right-sidebar::-webkit-scrollbar-button:start:decrement, #right-sidebar::-webkit-scrollbar-button:end:increment { display:block; height:0; background-color:transparent; } #right-sidebar::-webkit-scrollbar-track-piece { background-color:#FAFAFA; -webkit-border-radius:0; -webkit-border-bottom-right-radius:8px; -webkit-border-bottom-left-radius:8px; } #right-sidebar::-webkit-scrollbar-thumb:vertical{ height:50px; background-color:#999; -webkit-border-radius:8px; } #right-sidebar::-webkit-scrollbar-thumb:horizontal{ width:50px; background-color:#999; -webkit-border-radius:8px; } #right-sidebar h4 { color: #ffffff; font-size: 19px; margin-bottom: 0; } /* @group Path & Tools */ #profile-path-container ul li{ border-bottom: 1px solid #2b2b2b; padding: 10px !important; } #profile-path-container .step-title { display: block; font-size: 14px; color: #828282; line-height: 20px; } #profile-path-container .step-title.started { color: #ffffff; } #homepage-path .step-title { border-left-style: none; border-bottom-style: none; color: #7a7a7a; font-size: 16px; font-weight: bold; padding: 5px 0 13px; line-height: 10px; } #profile-path-container .step-container-wrapper { max-height: 0px; overflow: hidden; -webkit-transition: max-height 0.8s ease-in-out; -moz-transition: max-height 0.8s ease-in-out; -ms-transition: max-height 0.8s ease-in-out; -o-transition: max-height 0.8s ease-in-out; transition: max-height 0.8s ease-in-out; } #profile-path-container div.step-container-wrapper.slide { max-height: 1000px; } /* @group Steps */ .step-container { font-size: 12px; color: #ffffff; font-weight: normal; font-style: normal; padding-top: 5px; } #homepage-path .step-container { color: #797979; line-height: 16px; padding: 0; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eaeaea; } .step-description { line-height: 16px; width: 100%; } .step-container a.requirement { border-left-style: none; background-color: #2892ee; color: #ffffff; margin-top: 10px; border-bottom-style: none; padding: 6px 10px 6px 26px; display: block; -webkit-transition: all 0.4s ease-in-out; -moz-transition: all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out; -o-transition: all 0.4s ease-in-out; transition: all 0.4s ease-in-out; line-height: 14px; } .step-container a.requirement i { margin-left: -20px; margin-right: 5px; } .step-container a.requirement.locked { background-color: #4a4a4a; color: #868686; } .step-container a.requirement.completed { background-color: #4a4a4a; color: #868686; } .step-container a.requirement.checked { background-color: #646564; color: #ffffff; } /* @end */ /* @group Progress Meter */ .progress-wrapper { height: 15px; float: right; } .progress.small { float: left; border-style: none; background-color: #ffffff; height: 15px; width: 68px; padding-right: 3px !important; padding-left: 3px !important; margin: 2px 5px 0 0 !important; } #homepage-path .progress.small { background-color: #797979; } .progress.small .meter { background-color: #2790ee; } #homepage-path .progress.small .meter { background-color: #ffffff; } span.percentage { float: right; display: block; font-weight: normal; font-style: normal; font-size: 12px; color: #7f807f; } .started span.percentage { color: #ffffff; font-weight: bold; } span.percentage { color: #7f807f; } #homepage-path span.percentage { color: #787878; line-height: 16px; } /* @end */ /* @end */ /* @group Registration - Login */ #registration-login-wrapper { width: 89%; padding-top: 10px; } #registration-container p{ margin: 5px 0; } #dnn_nsRightSidebar_nsLogin_cmdLogin { padding-right: 0; padding-left: 0; width: 100%; font-size: 16px; font-weight: bold; line-height: 28px; margin-top: 6px; } #registration-button { color: #2796f3; } #registration-container .ui-state-error.ui-corner-all { border-style: none; background: none; } #registration-container .ui-state-error.ui-corner-all p { color: #ffffff; background-color: #c34148;-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; padding-left: 8px; padding-top: 3px; padding-bottom: 4px; } #password-reset { font-size: 10px; float: right; line-height: 16px; color: #a3a3a3; } #password-reset:hover { color: #fa8d29; } #wft-sidebar, #wft-sidebar img { display: block; width: 100%; box-shadow: 0 0 5px rgba(0, 0, 0, 0.19); margin-bottom: 10px; margin-top: 0; } /* @end */ /* @group Sidebar Buttons */ #sidebar-buttons { padding: 10px 0 20px 10px; overflow: auto; width: 91%; } #sidebar-buttons a { display: block; float: left; width: 48%; text-align: center; padding-top: 20px; padding-bottom: 20px; margin-right: 2%; background-color: #626262; color: #ffffff; border-bottom: 5px solid #565656; margin-bottom: 6px; } #sidebar-buttons a:nth-child(2) { margin-right: 0 !important; } #sidebar-buttons a:hover { background-color: #fc8d2a; border-bottom-color: #ea6f02; } #sidebar-buttons a.purple { border-bottom: 5px solid #b183b4; } #sidebar-buttons a.purple:hover { background-color: #b183b4; border-bottom-color: #a56ba8; } #sidebar-buttons a.orange { border-bottom: 5px solid #fc8d2a; } #sidebar-buttons a.orange:hover { background-color: #fc8d2a; border-bottom-color: #ea6f02; } #sidebar-buttons a.green { border-bottom: 5px solid #7bb10e; } #sidebar-buttons a.green:hover { background-color: #7bb10e; border-bottom: 5px solid #6fa10c; } #sidebar-buttons a.blue { border-bottom: 5px solid #2993ee; } #sidebar-buttons a.blue:hover { background-color: #2993ee; border-bottom: 5px solid #0286f5; } #sidebar-buttons a strong { font-size: 12px; opacity: .5; display: none; } #sidebar-buttons:last-child { margin-right: 0; } #sidebar-buttons a span { display: block; font-weight: bold; font-size: 13px; } #sidebar-buttons a img { width: 35px; height: 35px; margin-bottom: 9px; } #sidebar-buttons a:hover i, #sidebar-buttons a:hover { color: #ffffff; } #sidebar-buttons a#bugs-feedback { display: block; padding: 10px 0; color: #818181; width: 98% !important; font-size: 14px; background-color: #444444; border-bottom-style: none; margin-top: 5px; } #sidebar-buttons a#bugs-feedback i { font-size: 14px; } #sidebar-buttons a#bugs-feedback:hover { background-color: #535353; color: #ffffff; } /* @group Login Required Modal */ #loginRequired h2, #clientLoginRequiredModal h2 { border-bottom: 1px solid rgba(0, 0, 0, 0.06); padding-bottom: 10px; margin-bottom: 9px; } #loginRequired ul li { display: none; } #loginRequired .thin-header-2, #clientLoginRequiredModal .thin-header-2 { margin-bottom: 0; color: #626262; font-size: 21px; } #loginRequired ul li em { display: block; float: left; font-size: 68px; margin-right: 10px; margin-top: 5px; color: #626262; line-height: 57px; margin-bottom: 10px; } #loginRequired ul li p { margin-left: 71px; } #loginRequired ul li div span, #clientLoginRequiredModal div span { display: block; padding: 10px; margin-bottom: -14px; margin-right: -10px; margin-left: -10px; background-color: #efefef; } /* @end */ /* @end */ /* @group Staff CSS */ .staff-photo, .photo-credit-image { -webkit-border-radius:50%; -moz-border-radius:50%; -ms-border-radius:50%; -o-border-radius:50%; border-radius:50%; } a.staff-email { font-size: 15px; color: #cbcbcb; padding-left: 4px; } a.staff-email:hover { color: #2892ed; } /* @end */ #sidebar-icon { float: right; margin-top: 0; line-height: 33px; height: 35px; width: 35px; text-align: center; font-size: 23px; display: none; padding-top: 0; background-image: url(../images/pngs/20.png); } #sidebar-icon span { font-weight: bold; font-size: 21px; color: #ffffff; line-height: 43px; display: block; } #sidebar-icon img { width: 18px; margin-bottom: 1px; } .ns-tool-bar-icons { float: right; margin-top: -34px; } /* @end */ /* @group Footer */ #pre-footer .columns div { background-color: #f2f2f2; padding: 10px 10px 1px; /* Removed for beta */ display: none; } #footer { background-color: #f2f2f2; border-top: 1px solid #dddddd; padding-top: 30px; padding-bottom: 30px; color: #9a9a9a; border-width: 1px; } #footer ul { margin-bottom: 10px; overflow: auto; } #footer li { display: block; float: left; margin-top: 3px; margin-right: 4px; font-size: 10px; line-height: 12px; } #footer .nav li { margin-bottom: 9px; } #footer a, #footer p, #footer a, #footer div { font-size: 10px; line-height: 14px; } #footer .footer-social-links a:hover { background-color: #2892ed; } #bottom span a { color: #818181; text-decoration: underline; } #footer p a { text-decoration: underline; color: #7d7d7d; text-transform: capitalize; } #footer .nav a { background-color: #ffffff; text-decoration: none; padding: 4px 8px; font-size: 12px; } #footer .nav a:hover { background-color: #2892ed; color: #ffffff; } #footer-logo { float: left; margin-right: 10px; margin-top: 5px; -webkit-filter: grayscale(100%); opacity: .6; } #bottom { background-color: #ececec; padding: 10px; overflow: auto; } #bottom p, #bottom p a { font-size: 10px; margin-bottom: 0px; color: #8e8e8e; } #footer h5 { margin-bottom: 0; font-size: 14px; color: #919191; margin-top: 0; } /* @end */ /* Mobile */ /* @group Pre-Mobile */ @media only screen and (min-width: 767px) and (max-width: 830px) { #logo { font-size: 20px; line-height: 41px; width: 139px; padding-bottom: 0; margin-top: 0; margin-bottom: 0; } #left-content { padding-top: 89px; } #search-container { top: 6px; left: auto; right: 0px; width: 369px !important; margin-right: -9px; } #top-toolbar { top: 41px; } #top-toolbar .columns { padding-right: 0; padding-left: 0; } #search-facebook, #search-twitter, #search-wordpress, #search-pinterest, #search-youtube, #search-social-login, #search-social-register { width: 28px; height: 28px; line-height: 28px; font-size: 15px; } #search-social-login { font-size: 12px; font-weight: bold; width: 56px; height: 28px; } #search-social-register { font-size: 12px; font-weight: bold; width: 76px; height: 28px; } #search-wordpress img { width: 16px; margin-top: -5px; } #search-container fieldset input.text { height: 27px; font-size: 12px; } #search-button i.icon-search { font-size: 16px; height: 26px; width: 25px; left: -26px; line-height: 26px; } } /* @end */ /* @group Tablet */ @media only screen and (min-width: 767px) { /* Force Sidebar Margin Correction on Non Mobile Devices */ #right-sidebar { margin-right: -0px !important; } #left-content { margin-left: 0px !important; } #slide-close { display: none !important; } #primary-navigation-wrapper { display: block !important; } } /* @end */ /* @group Phone */ /* @group Pre-Phone */ @media only screen and (max-width: 767px) { /* @group Global */ body { background-color: #ffffff; } .hide-tablet-down { display: none !important; } #home-form { background-image: none; } #ns-tool-bar.slide, #top-toolbar.slide, #left-content.slide { width: 100%; } .reveal-modal-bg { position: fixed; } .reveal-modal { padding: 10px !important; width: 94% !important; margin-left: -47% !important; } .mobile-full { width: 100%; } .button { margin-bottom: 6px; } /* @group Animation */ #left-content, #ns-tool-bar, .list-navigation { -webkit-transition: left 0.4s ease-in-out; -moz-transition: left 0.4s ease-in-out; -ms-transition: left 0.4s ease-in-out; -o-transition: left 0.4s ease-in-out; transition: left 0.4s ease-in-out; } #left-content.slide, #ns-tool-bar.slide, .list-navigation.slide { left: -275px; } /* @end */ /* @end */ /* @group Header */ #ns-tool-bar { /* position: fixed; */ width: 100%; } #top-toolbar { display: none; } #ns-tool-bar .row { margin-right: 91px; } #slide-close.slide { display: block !important; } #slide-close { display: none; position: fixed; top: 0px; left: 0px; width: 100%; height: 100%; z-index: 1000; margin-left: -275px; } #logo { font-size: 20px; line-height: 41px; width: 139px; padding-bottom: 0; margin-top: 0; margin-bottom: 0; } /* @group Search */ #search-container { max-height: 0px; overflow: hidden; float: none; display: block; width: 100%; clear: both; position: relative; left: 0px; background: url(../images/pngs/10.png) repeat; -webkit-transition: all 0.4s ease-in-out; -moz-transition: all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out; -o-transition: all 0.4s ease-in-out; transition: all 0.4s ease-in-out; margin-right: 0; margin-left: 0; top: 0; } #search-container.drop { max-height: 300px; } #search-container-padding { padding: 15px; overflow: auto; } #search-container fieldset { width: 100%; float: left; } .search-social-icon { width: 19% !important; margin-bottom: 10px; margin-right: 1% !important; } .search-social-icon#search-youtube { margin-right: 0 !important; width: 20% !important; } #search-container fieldset input.text { width: 100% !important; } .ns-tool-bar-icons { float: right; margin-top: -41px; } #search-icon i { position: relative; top: -1px; } /* @end */ /* @end */ /* @group Left Content */ #left-content { width: 100%; padding-top: 65px; padding-top: 65px !important; /* Eliminates Flicker issue on ios */ -webkit-perspective: 500; -webkit-backface-visibility: hidden; } .article-list-content { margin-left: 70px; } dl.article-list dd img { width: 55px !important; margin-right: 5px; } /* @group Lists */ .list { margin-bottom: 15px; } .list-navigation { position: fixed; bottom: 0px; z-index: 10; left: 0px; width: 100%; margin-bottom: 0; -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.32); -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.32); box-shadow: 0 0 5px rgba(0, 0, 0, 0.32); /* Eliminates Flicker issue on ios */ -webkit-perspective: 500; -webkit-backface-visibility: hidden; background-color: #616161; } .list-navigation a.active { background-color: #3c3c3c; } .list-navigation a { font-size: 10px; color: #ffffff; border-right-style: solid; border-right-color: #555555; text-shadow: 0 0 7px rgba(0, 0, 0, 0.42); } .list-navigation a i { display: block; font-size: 16px; margin-bottom: 2px; } /* @end */ /* @group Scholarship Listing */ .scholarship-list { } .scholarship-list li { } .scholarship-title { } .scholarship-deadline { } .scholarship-favorite { } .scholarship-favorite.active { } .scholarship-amount { } /* @end */ /* @group Homepage */ #homepage-background { margin-top: -30px; max-height: 350px; } /* @end */ /* @end */ /* @group Right Sidebar */ #right-sidebar { display: none; width: 290px; right: -15px; /*right: -750px;*/ background: repeat #3d3d3d; } /*Added a slide class to toggle the layer on and off to reduce load and scroll bugs.*/ #right-sidebar.slide { display: block; } #profile-path-container { width: 97% !important; overflow: hidden !important; } .sidebar-header i, #search-icon, .sidebar-header em { width: 45px; height: 45px; font-size: 26px; line-height: 49px; } .sidebar-header em img { width: 23px; margin-top: -11px; } #profile-message-container, #profile-articles-container, #profile-path-container, #profile-schools-container { width: 95%; } #search-icon i, #sidebar-icon i { line-height: 44px; } .sidebar-header { height: 45px; font-size: 17px; line-height: 42px; } .notification { margin-right: 10px; } span.sidebar-header span { margin-left: 13px; } #registration-sidebar { width: 98%; } #loggedout-navigation a { height: 45px !important; font-size: 17px !important; line-height: 42px !important; } #loggedout-navigation i { width: 45px; height: 45px; font-size: 26px; line-height: 49px; } .sidebar-header .notification { margin-top: 12px; } /* @group Registration */ #registration-container p{ margin: 5px 0; line-height: 16px; color: #ffffff; } #registration-container label { color: #a4a4a4; margin-bottom: 6px; } #registration-container { width: 97%; } /* @end */ /* @group Sidebar Buttons */ #sidebar-buttons { padding-top: 10px; padding-bottom: 10px; padding-left: 10px; width: 100%; } #sidebar-buttons a { width: 126px; margin-right: 7px; } #sidebar-buttons:last-child { margin-right: 0; } #sidebar-buttons a:hover { background-color: #7bb20f; } #sidebar-buttons a img { width: 45px; height: 45px; margin-bottom: 10px; } #sidebar-buttons a#bugs-feedback { width: 95% !important; } #sidebar-icon, #primary-navigation-icon, #search-icon { display: block; width: 45px; height: 45px; font-size: 29px; line-height: 44px; } /* @end */ /* @group Path */ #profile-path-container .step-title { font-size: 18px; } .step-container { font-size: 14px; line-height: 20px; } .progress-wrapper { width: 160px; } .progress.small { width: 119px; margin-top: 1px; margin-right: 0 !important; } /* @end */ /* @end */ } /* @end */ /* @group Large Phone */ @media only screen and (max-width: 550px) { #dnn_ctr511_nsArticle_itemsPaging_lnkPagingNext span, #dnn_ctr511_nsArticle_itemsPaging_lnkPagingPrevious span { display: none; } .article-container ul, #article-categories-footer ul { width: 100%; } /* @group Search */ #search-addition p a { width: 49%; text-align: center; line-height: 29px; margin-right: 1%; } #search-addition p a:last-child { margin-right: 0; width: 50%; } #search-addition p { min-height: 30px; } #search-addition p span { display: none !important; } #search-addition p a i { float: left; } #search-addition p span { display: block; clear: both; } /* @end */ } /* @end */ /* @group Small Phone */ @media only screen and (max-width: 480px) { dl.article-list dd img { width: 40px !important; } a.article-title { font-size: 12px; display: block; margin-right: 20px; margin-bottom: 4px; } .article-list-content { line-height: 14px; margin-left: 0; } #home-usertype li { width: 100%; margin-right: 0px; margin-bottom: 10px; } article p { font-size: 16px; } } /* @end */ /* @end */ /* Custom */ /* @group Client Specific CSS */ .client-6299 .adr, .client-6300 .adr, .client-6301 .adr, .client-6302 .adr, .client-6131 .adr { display: none !important; } .client-6299 .img-box, .client-6300 .img-box, .client-6301 .img-box, .client-6302 .img-box, .client-6131 .img-box { margin-bottom: 1px; } /* @end */ /* @group DNN Admin CSS */ /* Adds the padding to the top */ body.Admin #ns-tool-bar, body.Admin #left-content, body.Admin #right-sidebar { top: 35px !important; } .megaborder{ -webkit-box-sizing: padding-box !important; -moz-box-sizing: padding-box !important; box-sizing: padding-box !important; } #dnnCPWrap * { -webkit-box-sizing: content-box !important; -moz-box-sizing: content-box !important; box-sizing: content-box !important; } #dnnCPWrap input[type="text"] { margin: 0; padding: 8px; height: auto; } #dnnCPWrap table { margin-bottom: 0; } div.jspPane { width: 100% !important; } ul.rcbList { background-color: #ffffff; border: 1px solid #c9c9c9; } ul.rcbList li { font-size: 12px; padding: 4px; border-bottom: 1px solid #edeeed; } ul.rcbList li:hover { background-color: #f5f5f5; } ul.rcbList li img { width: 18px; margin-right: 5px; } .rcbWidth { max-height: 200px; overflow-y: scroll; } /* @end */ /* @group On Login */ .show-when-logged-in { display: none !important; } .hide-when-logged-in { display: none !important; } /*Put this in login only css */ @media only screen and (max-width: 1100px) and (min-width: 767px) { .logged-in #search-container { left: auto; right: 8px; } } /* @end */ /* @group Full Width Fix CSS */ @media only screen and (min-width: 767px) { /* This controls the width after a user clicks the sidebar on mobile then scales up the width of the browser. */ #left-content.slide, #top-toolbar.slide, #ns-tool-bar.slide { width: 100%; } /* This controls the width after a user clicks the sidebar on mobile then scales up the width of the browser. */ .logged-in #left-content, .logged-in #top-toolbar, .logged-in #ns-tool-bar, .logged-in #left-content.slide, .logged-in #top-toolbar.slide, .logged-in #ns-tool-bar.slide { width: 75%; } #registration-container { position: absolute; left: 50%; width: 346px; margin-left: -173px; padding: 15px 15px 10px; top: 80px; background-color: #ffffff; z-index: 13; -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.62); box-shadow: 0 0 30px rgba(0, 0, 0, 0.62); display: none; } #registration-container a.close-reveal-modal { font-size: 22px; font-size: 2.2rem; line-height: .5; position: absolute; top: 8px; right: 11px; color: #aaa; text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.6); font-weight: bold; cursor: pointer; } #right-sidebar-loggedout h4 { color: #1e1e1e; } #login-background { position: fixed; width: 100%; height: 100%; z-index: 12; display: none; background: url(../images/pngs/40.png) repeat; } #right-sidebar-loggedout #sidebar-buttons { display: none; } #sidebar-buttons a { display: none; } #wft-sidebar { display: none; } } @media only screen and (max-width: 766px) { #right-sidebar-loggedout #registration-container { padding-top: 10px; padding-right: 9px; padding-left: 10px; width: 100%; display: block !important; } #registration-container a.close-reveal-modal { display: none; } #right-sidebar-loggedout h4 { color: #ffffff; } #right-sidebar-loggedout { float: right; width: 278px; height: 100%; position: fixed; right: -3px; background: url(../images/background-pattern-dark.png) center top repeat-x #3c3d3c; color: #ffffff; overflow: scroll; -webkit-overflow-scrolling: touch; position: fixed; top: 0px; z-index: 5; overflow-x: hidden; } #left-content { /* overflow: scroll; */ -webkit-overflow-scrolling: touch; } #right-sidebar-loggedout #bugs-feedback { margin-right: 0; } #right-sidebar-loggedout a#bugs-feedback { width: 97% !important; } #right-sidebar-loggedout #sidebar-buttons { padding-top: 0; } } /* @end */
billiards/static/nextstep/css/app.css
.opacity6 { filter:alpha(Opacity=80); -moz-opacity:0.6; opacity: 0.6; } .opacity7 { filter:alpha(Opacity=80); -moz-opacity:0.7; opacity: 0.7; } .opacity8 { filter:alpha(Opacity=80); -moz-opacity:0.85; opacity: 0.85; } .opacity9 { filter:alpha(Opacity=80); -moz-opacity:0.9; opacity: 0.9; } /* @group YUI CSS Reset */ body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { margin:0; padding:0; } table { border-collapse:collapse; border-spacing:0; width: 100%; } fieldset,img { border:0; } address,caption,cite,code,dfn,em,strong,th,var { font-style:normal; font-weight:normal; } ol,ul { list-style:none; } caption,th { text-align:left; } q:before,q:after { content:''; } abbr,acronym { border:0; } p { margin-bottom: 1em; color: #4d4d4d; } p strong { font-weight: bold; } .width100 { width: 100%; } /* @end */ /* @group Global */ body { background: #3d3d3d; width: 100%; min-width: 300px; } /* standalone css for mobile devices */ body.standalone { background-color: #ffffff; } body.standalone #right-sidebar { background: #3d3d3d; } .small { font-size: 10px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; padding-right: 10px !important; padding-left: 10px !important; margin-right: 10px !important; } strong { font-weight: bold; } .registrationPhoneTerms p { font-size: 10px !important; } .reveal-modal { padding: 15px; z-index: 50; } .reveal-modal-bg { z-index: 40; } button { -webkit-appearance: none; } .alert-box.wft-icon { display: block; padding: 10px 10px 10px 34px; background: url(../images/wft-icon-gray-small.png) 7px 6px no-repeat #f2f2f2; border-style: none; text-shadow: none; font-size: 14px; color: #565656; line-height: 14px; } hr { border-color: #f1f1f1; } /* Auto Complete jQuery UI */ .ui-autocomplete { max-height: 200px; overflow-y: auto; /* prevent horizontal scrollbar */ overflow-x: hidden; } /* IE 6 doesn't support max-height * we use height instead, but this forces the menu to always be this tall */ * html .ui-autocomplete { height: 200px; } /* Fixes the expand reveal width issue */ /* @group Javascript Required */ #javascript-required{ position: fixed; z-index: 30; width: 100%; height: 100%; background: url(../images/pngs/70.png) repeat; top: 0px; left: 0px; color: #ffffff; text-align: center; font-size: 20px; } #javascript-required i { font-size: 120px; display: block; padding-top: 50px; } #javascript-required span { font-weight: bold; } #javascript-required p { color: #ffffff; } /* @end */ @media only screen and (min-width: 960px) { .reveal-modal.expand, .reveal-modal.xlarge { padding: 15px !important; max-width: 864px !important; left: 50%; margin-left: -432px !important; } } /* @end */ /* @group Header */ #ns-tool-bar { /*position: fixed;*/ position: absolute; top: 0px; left: 0px; width: 100%; /*width: 75%;*/ /*height: 35px;*/ padding-left: 0px !important; line-height: 29px; z-index: 12; -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.32); -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.32); box-shadow: 0 0 5px rgba(0, 0, 0, 0.32); /* Eliminates Flicker issue on ios */ -webkit-perspective: 500; -webkit-backface-visibility: hidden; } #ns-tool-bar.slide, #top-toolbar.slide, #left-content.slide { width: 75%; } #ns-tool-bar .row .columns { padding-right: 0px; } #logo { font-weight: bold; color: #ffffff; font-size: 18x; float: left; width: 194px; display: block; float: left; margin-top: 12px; margin-bottom: 5px; } /* @group Search */ #search-container { width: 379px; float: right; left: 50%; position: absolute; z-index: 10; max-height: 32px; overflow: hidden; top: 14px; margin-left: 27px; } #search-container fieldset input.text { float: left; width: 189px; padding-right: 27px; margin-bottom: 0; } #search-facebook, #search-twitter, #search-wordpress, #search-pinterest, #search-youtube, #search-social-login, #search-social-register { color: #ffffff; display: block; float: left; font-size: 20px; height: 32px; width: 32px; text-align: center; line-height: 34px; /*background-image: url(../images/pngs/10.png);*/ -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; margin-right: 5px; background-color: #1488eb; } #search-social-login { font-size: 14px; font-weight: bold; width: 56px; } #search-social-register { font-size: 14px; font-weight: bold; width: 76px; } #search-facebook:hover, #search-twitter:hover, #search-wordpress:hover, #search-pinterest:hover, #search-youtube:hover { background-image: url(../images/pngs/20.png); } #search-wordpress img { width: 18px; margin-top: -6px; } #search-button i.icon-search { color: #c1c1c1; display: block; float: left; font-size: 20px; height: 32px; width: 32px; text-align: center; line-height: 31px; margin-right: -32px; right: 32px; position: relative; } #search-button i.icon-search:hover { color: #2892ee; } #forOhForSearch { margin-top: -10px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f1f1f1; /* Remove when live */ /*display: none;*/ } #forOhForSearch input.text { float: left; padding-right: 27px; margin-bottom: 0; } #forOhForSearch #search-button i.icon-search { color: #c1c1c1; display: block; float: right; font-size: 20px; height: 32px; width: 32px; text-align: center; line-height: 31px; margin-right: 0px; right: 0px; position: relative; margin-top: -36px; } /* fix on icons on scaling */ #nsu-search { position: absolute; left: 9999px; } /* @end */ /* @group Top Toolbar */ #top-toolbar { background-color: #333433; position: absolute; top: 61px; z-index: 11; width: 100%; border-bottom: 4px solid #292a29; -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); } #top-toolbar a { display: block; float: left; font-size: 12px; color: #ffffff; line-height: 44px; padding-right: 15px; padding-left: 15px; margin-bottom: -4px; font-weight: bold; } #top-toolbar a img { margin-right: 10px; } #top-toolbar-colleges { border-left: 1px solid #292928; border-bottom: 4px solid #b082b3; } #top-toolbar-colleges:hover { background-color: #b082b3; border-bottom: 4px solid #a36ea7; } #top-toolbar-scholarships, #top-toolbar-scholarships-loggedout{ border-left: 1px solid #292928; border-bottom: 4px solid #7ab10d; } #top-toolbar-scholarships:hover, #top-toolbar-scholarships-loggedout:hover { border-bottom: 4px solid #70a30c; background-color: #7ab10d; } #top-toolbar-articles { border-left: 1px solid #292928; border-bottom: 4px solid #fb8d2a; } #top-toolbar-articles:hover { border-bottom: 4px solid #fa7c0b; background-color: #fb8d2a; } #top-toolbar-path, #top-toolbar-path-loggedout { border-left: 1px solid #292928; border-right: 1px solid #292928; border-bottom: 4px solid #2992ed; } #top-toolbar-path:hover, #top-toolbar-path-loggedout:hover { border-bottom: 4px solid #1283e5; background-color: #2992ed; } #top-toolbar-login { float: right !important; background-image: url(../images/pngs/20.png); line-height: 48px !important; } #top-toolbar-register { float: right !important; background-image: url(../images/pngs/40.png); line-height: 48px !important; } #top-toolbar-login:hover, #top-toolbar-register:hover { background-color: #191919; } /* @end */ /* @end */ /* @group Left Content */ /* @group Search Styles */ div.psResultsHead { float: left; margin-top: -16px; width: 100%; border-bottom: 1px solid #dedede; } a.psTitle { font-weight: bold; } .psDocIcon { display: none; } .psIconFormat { margin-left: 0; } .psResultsNav { float: left; background-color: #f2f2f2; color: #9b9b9b; font-size: 14px; line-height: 16px; } .psResultsNav a { display: inline-block; padding: 6px 10px; color: #9b9b9b; border-left: 1px solid #e7e7e7; border-bottom: 3px solid #e7e7e7; margin-right: 0; margin-left: 0; } .psResultsNav a:hover { background-color: #9d589f !important; color: #ffffff !important; border-bottom: 3px solid #7f4581 !important; border-right-color: #9d589f !important; } .psResultsNav span { padding-left: 10px; } /* @end */ /* @group Homepage */ /* @group Path Flow */ /*#path-flow-wrapper { background: url(../images/path-wrapper-bg.jpg) repeat #c1c1c1; } #path-flow { background: url(../images/path-flow.jpg) -5px 1px no-repeat; height: 60px; margin-top: -2px; max-width: 800px; margin-right: auto; margin-left: auto; } #path-flow a { height: 61px; width: 697px; display: block; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -ms-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; margin-left: -470px; } #path-flow a:hover { margin-left: -460px }*/ /* @end */ /* @group Home Tools */ #home-tools { background-color: #ededed; overflow: auto; margin-bottom: 10px; } #home-tools a { display: block; overflow: auto; } #home-tools ul { max-width: 830px; margin-right: auto; margin-left: auto; overflow: auto; } #home-tools li:hover { background-color: #e0e0e0; } #home-tools li { width: 25%; float: left; height: 100%; } #home-tools em { display: block; text-align: center; color: #686868; font-size: 37px; margin-top: 30px; margin-right: auto; margin-left: auto; } #home-tools h3 { font-weight: normal; font-style: normal; text-align: center; font-size: 18px; margin-top: 6px; margin-bottom: 10px; padding-right: 15px; padding-left: 15px; } #home-tools p { color: #999999; font-size: 12px; margin-bottom: 20px; padding-right: 15px; padding-left: 15px; } /* @end */ /* @end */ /* @group Site Content */ #left-content { position: absolute; left: 0px; float: left; width: 100%; -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); z-index: 10; background-color: #f2f2f2; padding-top: 72px; } /* @end */ /* @group Articles*/ article header { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #eaeaea; } #ArticleImage { float: left; width: 33%; margin-right: 10px; margin-bottom: 0; border: 1px solid #f4f4f4; margin-top: 6px; } article header h2 { font-weight: normal; font-style: normal; font-size: 16px; color: #787878; margin-top: 8px; line-height: 20px; } .article-image { float: left; max-width: 180px; margin-right: 15px; margin-bottom: -5px; margin-top: 6px; -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.17); -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.17); box-shadow: 0 0 5px rgba(0, 0, 0, 0.17); } .school-lists li label{ font-size: 14px; padding-left: 18px; font-weight: bold; } article ul { margin-top: 6px; } article li { list-style-position: outside; list-style: disc; margin-left: 20px; margin-bottom: 10px; } /* @group Address */ .adr { margin-bottom: 10px; line-height: 19px; margin-top: 8px; } .adr a { color: #626262; } .data-box p { font-size: 12px; } #degrees-table td, #degrees-table th { font-size: 12px; } #degrees-table td span.check { font-weight: bold; } .img-box { margin-bottom: -10px; } .img-box img { margin-bottom: 10px; border: 1px solid #e6e6e6; box-shadow: 0 0 5px rgba(0, 0, 0, 0.09); } /* @end */ /* @group Article Meta */ .article-meta { margin-top: 10px; color: #9e9e9e; font-size: 12px; min-height: 60px; } .article-author-picture { max-height: 50px; max-width: 50px; float: left; margin-right: 10px; } .article-social-links { overflow: auto; margin-top: 5px; } .article-social-links li { float: left; } /* Fix Social Widths */ .article-facebook-like iframe { width: 50px !important; margin-right: 0 !important; } .article-google-plus iframe, .article-google-plus div { width: 32px !important; margin-right: 0 !important; } .article-google-plus div { margin-right: 2px !important; } .article-twitter iframe { width: 58px !important; margin-right: 0 !important; } /* @end */ /* @group Article Tiles */ ul.tiles { margin-bottom: 15px; width: 103%; } ul.tiles li { width: 32%; display: inline-block; height: 150px; margin-right: 0; background-color: #2791ed; margin-bottom: 4px; overflow: hidden; } ul.tiles li a { font-size: 12px; display: block; line-height: 14px; color: #ffffff; padding: 10px; height: 150px; background-size: 25px 25px; } ul.tiles li a h3 { font-size: 12px; text-transform: uppercase; margin-bottom: 9px; color: #ffffff; } /* Two Columns Tiles*/ @media only screen and (max-width: 480px) { ul.tiles li { width: 49%; } } /* @end */ /* @end Article Tiles */ /* @group Article Categories Menu */ .article-container { background-color: #eeeeee; margin-bottom: 15px; } .article-container header { color: #ffffff; background-color: #f5f5f5; padding: 10px 15px; font-size: 20px; border-bottom: 1px solid #ebebeb; } .article-container header div { display: block; max-width: 800px; display: block; margin-left: auto; margin-right: auto; font-weight: bold; font-size: 16px; min-height: 19px; line-height: 19px; } .secondary-breadcrumbs { font-size: 12px; color: #a1a1a1; font-weight: normal; font-style: normal; } .secondary-breadcrumbs a { color: #626262; } .secondary-breadcrumbs a:hover { background-color: transparent !important; color: #2892ed !important; } .secondary-breadcrumbs i { margin-right: 5px; margin-left: 5px; } #articles-view { font-size: 14px; color: #ffffff; padding: 5px 3px 5px 8px; background-color: #fa8d29; margin-right: 5px; } #articles-view:hover { background-color: #f47704; color: #ffffff; } .article-container ul { width: 33%; float: left; } .article-container li a { display: block; line-height: 18px; color: #626362; font-size: 14px; padding: 9px 10px; } .article-container .row { padding-bottom: 10px; padding-top: 5px; border-bottom: 1px solid #e2e2e2; } .article-container a:hover { background-color: #fa8d29; color: #ffffff; } .article-container a.active { background-color: #535353; color: #ffffff; } .article-categories-dropdown { max-height: 0px; overflow: hidden; -webkit-transition: all 0.4s ease-in-out; -moz-transition: all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out; -o-transition: all 0.4s ease-in-out; transition: all 0.4s ease-in-out; } .article-categories-dropdown.slide { max-height: 1200px; } /* @end */ /* @group Article Page Footer Links */ #article-categories-footer { padding-top: 20px; margin-top: 20px; border-top: 1px solid #e2e2e2; margin-bottom: -24px; background-color: #3c3c3c; padding-bottom: 20px; } #article-categories-footer h3 { margin-left: 10px; color: #dedede; margin-bottom: 15px; } #article-categories-footer ul { float: left; width: 33%; } #article-categories-footer ul a { font-size: 12px; padding: 7px 10px; display: block; color: #a4a4a4; line-height: 15px; } #article-categories-footer ul a:hover { background-color: #313131; color: #ffffff; } /* @end */ /* @group Scholarships Page */ #mainFrame { width: 100%; } .scholarship-list.list { margin-bottom: 15px; } .scholarship-list.list li { border-bottom: 1px solid #dfdfdf; background-color: #ffffff; } .scholarship-list.list .item { display: block; padding: 10px; overflow: auto; } .scholarship-list.list li:nth-child(even) { background-color: #f9f9f9; border-left-color: #f9f9f9; } /* List Categories */ .scholarship-list.list li { /*border-left: 4px solid #ffffff;*/ } .scholarship-list.list .new, .scholarship-list.list .new:nth-child(even) { border-left: 4px solid #fd8d2a; } .scholarship-list.list .favorite, .scholarship-list.list .favorite:nth-child(even) { border-left: 4px solid #7bb20f; } .scholarship-list.list .deleted, .scholarship-list.list .deleted:nth-child(even) { border-left: 4px solid #c34148; } /*If there's an image*/ .scholarship-list.list.images img { float: left; max-width: 60px; margin-left: -70px; } .scholarship-list.list.images li a { padding-left: 80px; } .scholarship-list .item-more { overflow: hidden; max-height: 0px; -webkit-transition: max-height 0.8s ease-in-out; -moz-transition: max-height 0.8s ease-in-out; -ms-transition: max-height 0.8s ease-in-out; -o-transition: max-height 0.8s ease-in-out; transition: max-height 0.8s ease-in-out; padding-left: 10px; padding-right: 10px; } .scholarship-list .item-more.slide { max-height: 1000px; } .scholarship-list .item-more-buttons { overflow: auto; background-color: #f8f8f8; margin: 10px 0; padding: 10px; } .scholarship-list .item-title { display: block; font-size: 16px; font-weight: bold; line-height: 18px; margin-bottom: 4px; color: #2892ed; margin-top: -4px; } .scholarship-list .item-date { float: right; color: #818181; font-size: 12px; } .scholarship-list .item-comments { color: #a8a8a8; font-size: 12px; } .scholarship-list .item-subline { color: #626362; font-size: 14px; font-weight: bold; } .scholarship-list .scholarshipAddress { font-style: italic; color: #707070; font-size: 12px; } .scholarship-list .list-menu { margin-bottom: 15px; margin-top: 5px; background-color: #ffffff; } .scholarship-list .list-menu dt { font-weight: bold; font-size: 16px; padding: 3px 7px; } .scholarship-list .list-menu dd { border-bottom: 1px solid #f2f2f2; } .scholarship-list .list-menu a { display: block; color: #a0a0a0; height: 35px; font-weight: bold; font-size: 14px; line-height: 33px; background-color: #ffffff; } .scholarship-list .list-menu .notification { color: #8a8a8a; margin-right: 10px; background: repeat #f0f0f0; } .scholarship-list .list-menu a i { float: left; margin-top: 0; line-height: 38px; height: 35px; width: 35px; text-align: center; font-size: 20px; background: url(../images/pngs/10.png) repeat; } /* @end */ /* @group Facebook Comments */ .fb-comments.fb_iframe_widget, .fb-comments.fb_iframe_widget span { width: 100% !important; } iframe.fb_ltr { width: 100% !important; } /* @end */ /* @group Definition List */ dl.list { background-color: #f5f5f5; margin-bottom: 15px; color: #9c9c9c; } dl.list dt { display: block; color: #ffffff; height: 35px; font-weight: bold; font-size: 14px; line-height: 33px; padding-left: 10px; } dl.list dd { overflow: auto; } dl.list dd a { font-size: 14px; display: block; color: #757575 !important; line-height: 16px; border-bottom: 1px solid #dfdfdf; padding: 10px 31px 10px 10px; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -ms-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; overflow: auto; } dl.list dd a:hover { background-color: #ffffff; } dl.list dd a p { font-size: 12px; color: #9c9c9c; margin-bottom: 0; margin-top: 5px; } dl.list dd a div { font-size: 12px; color: #aeaeae; } dl.list dd.last a { text-align: center; font-size: 12px; color: #a4a4a4 !important; background-color: #ffffff; border-bottom-style: solid; border-bottom-color: #f1f1f1; } dl.list dd.last a i { float: none; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -ms-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } dl.list dd a i, dl.list dd a em { float: right; color: #c2c2c2; position: relative; right: -8px; margin-right: -15px; min-width: 16px; } dl.list dd a img { float: left; width: 75px; margin-right: 8px; border: 1px solid #ededed; margin-top: 2px; } /* @group Article List */ dl.article-list { background-color: #ffffff; } dl.article-list dd { padding: 10px; border-bottom: 1px solid #f1f1f1; overflow: auto; } .article-list-content { margin-left: 70px; line-height: 16px; } dl.article-list dd img { width: 55px; float: left; } a.article-title { font-size: 16px; color: #fc8d2a; font-weight: bold; } .article-title:hover { color: #fc8d2a; } dl.article-list p { line-height: 16px; font-size: 12px; margin-top: 0; margin-bottom: 0; } dl.article-list p a { color: #6d6d6d; } .article-list .meta, .article-list .meta a { font-size: 12px; color: #adadad; text-align: right; } .article-list .meta a { float: left; } .article-list .meta a:hover { color: #fc8d2a; } .article-list .favorite-icon { float: right; margin-left: 10px; margin-top: -3px; } dl.article-list ul.pagination { float: right; } /* @end */ /* @group Favorites List */ .favorite-icon, .info-icon { text-align: center; font-size: 16px; color: #dbdbdb; } .favorite-icon:hover { color: #7bb10e; } .favorite-icon.active { color: #7bb10e; } /* @end */ /* @end */ /* @group Left Tools */ .sidebar-tool { display: block; padding: 10px; margin-bottom: 15px; height: 51px; font-weight: bold; } .sidebar-tool span.subtext { display: block; float: left; font-size: 12px; line-height: 22px; font-weight: normal; font-style: normal; } .sidebar-tool:hover { color: #ffffff; } /* @end */ /* @group Add Wrapper */ .add-wrapper { background-color: #f5f5f5; text-align: center; padding: 10px; margin-bottom: 15px; overflow: auto; } .add-wrapper-military { background-color: #f5f5f5; padding: 10px; margin-bottom: 15px; text-align: center; } .military-social a { color: #a5a5a5; font-size: 24px; } .add-wrapper-military object, .add-wrapper-military embed { max-width: 728px; margin-right: auto; margin-left: auto; } a.advertise-with-nextstepu { padding-bottom: 0 !important; padding-top: 8px; font-size: 10px; color: #bbbbbb; } .add-wrapper.first { margin-top: 7px; padding-right: 0; padding-left: 0; } .dart-ads a, .dart-ads object { padding-bottom: 10px; } .add-wrapper.top-banner { background-color: #202020; padding: 15px; margin-bottom: 0; /*max-height: 120px; overflow: hidden;*/ } .add-wrapper ul#horizontal-list { max-height: 90px; width: 1372px; } .add-wrapper ul#horizontal-list * { position: relative !important; z-index: 1 !important; } .add-wrapper ul#horizontal-list li { padding-right: 8px; padding-left: 8; } .add-wrapper ul#horizontal-list li iframe { width: 180px; height: 90px; } #sponsored-by { font-size: 10px; color: #bbbbbb; position: relative; top: 5px; clear: both; } .add-wrapper div, .add-wrapper object { display: block; width: 100% !important; text-align: center; } .add-wrapper object { max-height: 90px; max-width: 728px; margin-right: auto; margin-left: auto; } .add-wrapper .block-grid li { padding-bottom: 0 !important; text-align: center; } .add-wrapper > * { text-align: left; } .add-wrapper a { display: inline-block; margin-bottom: 2px; margin-top: 2px; } .add-wrapper > *:last-child { margin-bottom: 0; } .add-wrapper strong { font-weight: bold; color: #606060; } .add-wrapper ul li { float: left; margin-top: 6px; height: 90px; width: 190px; } .add-wrapper ul li a { font-size: 10px; padding: 1px 6px 2px; margin-right: 4px; display: block; font-weight: bold; } .add-wrapper .block-grid li a{ padding: 0; } .add-wrapper ul li a:hover { color: #ffffff; } .add-wrapper p { letter-spacing: normal; } /* @end */ /* @group Add Border */ .add-border { border: 1px solid #e5e5e5; padding: 20px; margin-bottom: 30px; } .armedServices { background: url(../images/flagBackground.jpg) no-repeat; } .armedServices h3 { color: #3c3c3c; } #sponsored-by-footer { background-color: #f5f5f5; padding: 20px 20px 10px; margin-bottom: 15px; overflow: auto; } /* @end */ /* @group Pagination */ .nsPaging { border: none; margin-left: auto; margin-right: auto; margin-bottom: 5px; } .nsPaging td { padding: 0px !important; } .nsPaging td a { display: block; padding: 6px 10px; background-color: #f2f2f2; color: #9b9b9b; font-size: 14px; line-height: 16px; border-bottom: 3px solid #ebebeb; border-right: 1px solid #ebebeb; } .nsPaging td:last-child a { border-right-style: none; } .nsPaging td a:hover { background-color: #9d589f; color: #ffffff; border-bottom: 3px solid #7f4581; border-right-color: #9d589f; } .nsPaging td a.lnkPages_On { color: #ffffff; background-color: #b182b3; border-bottom: 3px solid #aa70ac; border-right-color: #b182b3; cursor: default !important; } /* @end */ /* @group User Profile */ #profile-count-buttons a { display: block; text-align: center; font-size: 12px; font-weight: bold; color: rgba(255, 255, 255, 0.5); background-color: #5f5f5f; padding-top: 15px; padding-bottom: 15px; border-bottom: 4px solid #4c4c4c; margin-bottom: 5px; } #profile-count-buttons a span { display: block; font-size: 30px; color: #ffffff; line-height: 25px; padding-bottom: 5px; } #degrees-table-custom, #degrees-table { border-style: none; border-left-style: none; border-right-style: none; } #degrees-table-custom thead tr th, #degrees-table thead tr th { background-color: #626262; color: #ffffff; } #degrees-table-custom tbody tr td, #degrees-table tbody tr td { font-size: 12px; line-height: 14px; } /* @end */ /* @group Partner Profile */ /* @group Profile Box */ #profile-box { width: 92%; padding: 9px 0 10px 9px; overflow: auto; } #profile-username { font-weight: normal; font-style: normal; color: #ffffff; margin-bottom: 0; font-size: 23px; } #profile-box a { font-size: 12px; color: #989898; margin-right: 2%; display: block; background-color: #555555; padding-top: 7px; padding-bottom: 7px; text-align: center; float: left; display: block; margin-top: 7px; width: 48%; } #profile-box a i { display: none; } #profile-box a:last-child { margin-right: 0; } #profile-usertype { color: #989898; padding-top: 3px; font-size: 16px; } #profile-box .block-grid li { padding-bottom: 0; margin-top: 7px; } #dnn_nsRightSidebar_nspathSidebar_hlLogout:hover { background-color: #c34148; color: #ffffff; } #profile-settings:hover { background-color: #fc8d2a; color: #ffffff; } /* @end */ .sidebar-header { display: block; color: #ffffff; height: 35px; font-weight: bold; font-size: 14px; line-height: 33px; } .sidebar-header:hover, .sidebar-header:active, .sidebar-header:visited, .sidebar-header i, .sidebar-header span { color: #ffffff !important; } .sidebar-header span { margin-left: 10px; } .notification { float: right; margin: 8px 33px 0 10px; padding: 2px 7px; text-align: center; line-height: 16px; -webkit-border-radius:10px; -moz-border-radius:10px; -ms-border-radius:10px; -o-border-radius:10px; border-radius:10px; color: #ffffff; font-size: 12px; } .sidebar-header i, .sidebar-header em { float: left; margin-top: 0; line-height: 38px; height: 35px; width: 35px; text-align: center; font-size: 20px; background: url(../images/pngs/10.png) repeat; } .sidebar-header i.icon-comment { background-color: transparent !important; background-image: none !important; margin-top: -2px; } .sidebar-header em img { width: 18px; margin-top: -6px; } #search-icon { margin-top: 0; line-height: 34px; height: 35px; width: 35px; text-align: center; font-size: 20px; float: right; margin-right: 0; z-index: 10; position: relative; padding-top: 0; background: url(../images/pngs/10.png) repeat; display: none; } .sidebar-header i img, #search-icon img { width: 20px; } .profile img { width: 93%; } #profile-message-container, #profile-articles-container, #profile-path-container, #profile-schools-container { display: none; width: 92%; } #profile-message-container.slide, #profile-articles-container.slide, #profile-path-container.slide, #profile-schools-container.slide { display: block; } .sidebar p { font-size: 12px; margin-bottom: 10px; } .profile ul, .profile ul li { margin: 0; padding: 0; padding-bottom: 0px !important; line-height: 12px; font-size: 12px; font-weight: bold; } .profile ul li a strong { color: #ffffff; display: block; } #profile-articles-container li a { display: block; color: #ffffff; font-weight: normal; font-style: normal; font-size: 14px; padding: 10px !important; line-height: 16px; border-bottom: 1px solid #454545; background-color: #3b3c39; } #profile-articles-container li a:hover { background-color: #353535; } .profile a.more { color: #b3b3b3; display: block; text-align: center; padding-top: 13px; padding-bottom: 15px; background-color: #3b3c3b; -webkit-border-radius:5px; -moz-border-radius:5px; -ms-border-radius:5px; -o-border-radius:5px; border-radius:5px; font-size: 12px; -webkit-transition: background-color 0.2s ease-in-out; -moz-transition: background-color 0.2s ease-in-out; -ms-transition: background-color 0.2s ease-in-out; -o-transition: background-color 0.2s ease-in-out; transition: background-color 0.2s ease-in-out; border-color: #313131; } .profile a.more:target, .profile a.more:hover { background-color: #2f2f2f; } #profile-message-container .flagged { border-left-color: #a87cac; } #profile-articles-container .flagged { border-left-color: #fd8d2a; } #profile-path-container .flagged { border-left-color: #2993ee; } #profile-schools-container .flagged { border-left-color: #7bb10e; } /* Login toolTip */ /*#loginTip { position: fixed; width: 76px; height: 30px; padding-top: 5px; padding-bottom: 5px; padding-left: 0; font-size: 15px; text-align: center; border-radius: 3px; box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.39); z-index: 1000; left: 75%; margin-left: -86px; color: #ffffff; font-weight: bold; background-color: #ed2a32; opacity: 0; top: 74px; } #loginTip:after { content: ""; position: absolute; width: 0; height: 0; border-width: 10px; border-style: solid; border-color: transparent transparent transparent #ed2a32; top: 5px; left: 72px; } #loginTip i { font-size: 12px; } */ .no-content { font-size: 11px; padding: 10px; color: #7a7a7a; line-height: 16px; } .no-content strong { font-weight: bold; display: block; font-size: 13px; } /* @end */ /* @end Left Content*/ /* @group Right Sidebar */ #right-sidebar { float: right; width: 28%; background: url(../images/background-pattern-dark.png) repeat-x center top transparent; color: #ffffff; overflow: scroll; -webkit-overflow-scrolling: touch; position: fixed; top: 0px; right: -3%; z-index: 5; overflow-x: hidden; } /* This CSS fixes the discrepancy between browser scrollbar widths */ #right-sidebar::-webkit-scrollbar { width:3%; height:9px; } #right-sidebar::-webkit-scrollbar-button:start:decrement, #right-sidebar::-webkit-scrollbar-button:end:increment { display:block; height:0; background-color:transparent; } #right-sidebar::-webkit-scrollbar-track-piece { background-color:#FAFAFA; -webkit-border-radius:0; -webkit-border-bottom-right-radius:8px; -webkit-border-bottom-left-radius:8px; } #right-sidebar::-webkit-scrollbar-thumb:vertical{ height:50px; background-color:#999; -webkit-border-radius:8px; } #right-sidebar::-webkit-scrollbar-thumb:horizontal{ width:50px; background-color:#999; -webkit-border-radius:8px; } #right-sidebar h4 { color: #ffffff; font-size: 19px; margin-bottom: 0; } /* @group Path & Tools */ #profile-path-container ul li{ border-bottom: 1px solid #2b2b2b; padding: 10px !important; } #profile-path-container .step-title { display: block; font-size: 14px; color: #828282; line-height: 20px; } #profile-path-container .step-title.started { color: #ffffff; } #homepage-path .step-title { border-left-style: none; border-bottom-style: none; color: #7a7a7a; font-size: 16px; font-weight: bold; padding: 5px 0 13px; line-height: 10px; } #profile-path-container .step-container-wrapper { max-height: 0px; overflow: hidden; -webkit-transition: max-height 0.8s ease-in-out; -moz-transition: max-height 0.8s ease-in-out; -ms-transition: max-height 0.8s ease-in-out; -o-transition: max-height 0.8s ease-in-out; transition: max-height 0.8s ease-in-out; } #profile-path-container div.step-container-wrapper.slide { max-height: 1000px; } /* @group Steps */ .step-container { font-size: 12px; color: #ffffff; font-weight: normal; font-style: normal; padding-top: 5px; } #homepage-path .step-container { color: #797979; line-height: 16px; padding: 0; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eaeaea; } .step-description { line-height: 16px; width: 100%; } .step-container a.requirement { border-left-style: none; background-color: #2892ee; color: #ffffff; margin-top: 10px; border-bottom-style: none; padding: 6px 10px 6px 26px; display: block; -webkit-transition: all 0.4s ease-in-out; -moz-transition: all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out; -o-transition: all 0.4s ease-in-out; transition: all 0.4s ease-in-out; line-height: 14px; } .step-container a.requirement i { margin-left: -20px; margin-right: 5px; } .step-container a.requirement.locked { background-color: #4a4a4a; color: #868686; } .step-container a.requirement.completed { background-color: #4a4a4a; color: #868686; } .step-container a.requirement.checked { background-color: #646564; color: #ffffff; } /* @end */ /* @group Progress Meter */ .progress-wrapper { height: 15px; float: right; } .progress.small { float: left; border-style: none; background-color: #ffffff; height: 15px; width: 68px; padding-right: 3px !important; padding-left: 3px !important; margin: 2px 5px 0 0 !important; } #homepage-path .progress.small { background-color: #797979; } .progress.small .meter { background-color: #2790ee; } #homepage-path .progress.small .meter { background-color: #ffffff; } span.percentage { float: right; display: block; font-weight: normal; font-style: normal; font-size: 12px; color: #7f807f; } .started span.percentage { color: #ffffff; font-weight: bold; } span.percentage { color: #7f807f; } #homepage-path span.percentage { color: #787878; line-height: 16px; } /* @end */ /* @end */ /* @group Registration - Login */ #registration-login-wrapper { width: 89%; padding-top: 10px; } #registration-container p{ margin: 5px 0; } #dnn_nsRightSidebar_nsLogin_cmdLogin { padding-right: 0; padding-left: 0; width: 100%; font-size: 16px; font-weight: bold; line-height: 28px; margin-top: 6px; } #registration-button { color: #2796f3; } #registration-container .ui-state-error.ui-corner-all { border-style: none; background: none; } #registration-container .ui-state-error.ui-corner-all p { color: #ffffff; background-color: #c34148;-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; padding-left: 8px; padding-top: 3px; padding-bottom: 4px; } #password-reset { font-size: 10px; float: right; line-height: 16px; color: #a3a3a3; } #password-reset:hover { color: #fa8d29; } #wft-sidebar, #wft-sidebar img { display: block; width: 100%; box-shadow: 0 0 5px rgba(0, 0, 0, 0.19); margin-bottom: 10px; margin-top: 0; } /* @end */ /* @group Sidebar Buttons */ #sidebar-buttons { padding: 10px 0 20px 10px; overflow: auto; width: 91%; } #sidebar-buttons a { display: block; float: left; width: 48%; text-align: center; padding-top: 20px; padding-bottom: 20px; margin-right: 2%; background-color: #626262; color: #ffffff; border-bottom: 5px solid #565656; margin-bottom: 6px; } #sidebar-buttons a:nth-child(2) { margin-right: 0 !important; } #sidebar-buttons a:hover { background-color: #fc8d2a; border-bottom-color: #ea6f02; } #sidebar-buttons a.purple { border-bottom: 5px solid #b183b4; } #sidebar-buttons a.purple:hover { background-color: #b183b4; border-bottom-color: #a56ba8; } #sidebar-buttons a.orange { border-bottom: 5px solid #fc8d2a; } #sidebar-buttons a.orange:hover { background-color: #fc8d2a; border-bottom-color: #ea6f02; } #sidebar-buttons a.green { border-bottom: 5px solid #7bb10e; } #sidebar-buttons a.green:hover { background-color: #7bb10e; border-bottom: 5px solid #6fa10c; } #sidebar-buttons a.blue { border-bottom: 5px solid #2993ee; } #sidebar-buttons a.blue:hover { background-color: #2993ee; border-bottom: 5px solid #0286f5; } #sidebar-buttons a strong { font-size: 12px; opacity: .5; display: none; } #sidebar-buttons:last-child { margin-right: 0; } #sidebar-buttons a span { display: block; font-weight: bold; font-size: 13px; } #sidebar-buttons a img { width: 35px; height: 35px; margin-bottom: 9px; } #sidebar-buttons a:hover i, #sidebar-buttons a:hover { color: #ffffff; } #sidebar-buttons a#bugs-feedback { display: block; padding: 10px 0; color: #818181; width: 98% !important; font-size: 14px; background-color: #444444; border-bottom-style: none; margin-top: 5px; } #sidebar-buttons a#bugs-feedback i { font-size: 14px; } #sidebar-buttons a#bugs-feedback:hover { background-color: #535353; color: #ffffff; } /* @group Login Required Modal */ #loginRequired h2, #clientLoginRequiredModal h2 { border-bottom: 1px solid rgba(0, 0, 0, 0.06); padding-bottom: 10px; margin-bottom: 9px; } #loginRequired ul li { display: none; } #loginRequired .thin-header-2, #clientLoginRequiredModal .thin-header-2 { margin-bottom: 0; color: #626262; font-size: 21px; } #loginRequired ul li em { display: block; float: left; font-size: 68px; margin-right: 10px; margin-top: 5px; color: #626262; line-height: 57px; margin-bottom: 10px; } #loginRequired ul li p { margin-left: 71px; } #loginRequired ul li div span, #clientLoginRequiredModal div span { display: block; padding: 10px; margin-bottom: -14px; margin-right: -10px; margin-left: -10px; background-color: #efefef; } /* @end */ /* @end */ /* @group Staff CSS */ .staff-photo, .photo-credit-image { -webkit-border-radius:50%; -moz-border-radius:50%; -ms-border-radius:50%; -o-border-radius:50%; border-radius:50%; } a.staff-email { font-size: 15px; color: #cbcbcb; padding-left: 4px; } a.staff-email:hover { color: #2892ed; } /* @end */ #sidebar-icon { float: right; margin-top: 0; line-height: 33px; height: 35px; width: 35px; text-align: center; font-size: 23px; display: none; padding-top: 0; background-image: url(../images/pngs/20.png); } #sidebar-icon span { font-weight: bold; font-size: 21px; color: #ffffff; line-height: 43px; display: block; } #sidebar-icon img { width: 18px; margin-bottom: 1px; } .ns-tool-bar-icons { float: right; margin-top: -34px; } /* @end */ /* @group Footer */ #pre-footer .columns div { background-color: #f2f2f2; padding: 10px 10px 1px; /* Removed for beta */ display: none; } #footer { background-color: #f2f2f2; border-top: 1px solid #dddddd; padding-top: 30px; padding-bottom: 30px; color: #9a9a9a; border-width: 1px; } #footer ul { margin-bottom: 10px; overflow: auto; } #footer li { display: block; float: left; margin-top: 3px; margin-right: 4px; font-size: 10px; line-height: 12px; } #footer .nav li { margin-bottom: 9px; } #footer a, #footer p, #footer a, #footer div { font-size: 10px; line-height: 14px; } #footer .footer-social-links a:hover { background-color: #2892ed; } #bottom span a { color: #818181; text-decoration: underline; } #footer p a { text-decoration: underline; color: #7d7d7d; text-transform: capitalize; } #footer .nav a { background-color: #ffffff; text-decoration: none; padding: 4px 8px; font-size: 12px; } #footer .nav a:hover { background-color: #2892ed; color: #ffffff; } #footer-logo { float: left; margin-right: 10px; margin-top: 5px; -webkit-filter: grayscale(100%); opacity: .6; } #bottom { background-color: #ececec; padding: 10px; overflow: auto; } #bottom p, #bottom p a { font-size: 10px; margin-bottom: 0px; color: #8e8e8e; } #footer h5 { margin-bottom: 0; font-size: 14px; color: #919191; margin-top: 0; } /* @end */ /* Mobile */ /* @group Pre-Mobile */ @media only screen and (min-width: 767px) and (max-width: 830px) { #logo { font-size: 20px; line-height: 41px; width: 139px; padding-bottom: 0; margin-top: 0; margin-bottom: 0; } #left-content { padding-top: 89px; } #search-container { top: 6px; left: auto; right: 0px; width: 369px !important; margin-right: -9px; } #top-toolbar { top: 41px; } #top-toolbar .columns { padding-right: 0; padding-left: 0; } #search-facebook, #search-twitter, #search-wordpress, #search-pinterest, #search-youtube, #search-social-login, #search-social-register { width: 28px; height: 28px; line-height: 28px; font-size: 15px; } #search-social-login { font-size: 12px; font-weight: bold; width: 56px; height: 28px; } #search-social-register { font-size: 12px; font-weight: bold; width: 76px; height: 28px; } #search-wordpress img { width: 16px; margin-top: -5px; } #search-container fieldset input.text { height: 27px; font-size: 12px; } #search-button i.icon-search { font-size: 16px; height: 26px; width: 25px; left: -26px; line-height: 26px; } } /* @end */ /* @group Tablet */ @media only screen and (min-width: 767px) { /* Force Sidebar Margin Correction on Non Mobile Devices */ #right-sidebar { margin-right: -0px !important; } #left-content { margin-left: 0px !important; } #slide-close { display: none !important; } #primary-navigation-wrapper { display: block !important; } } /* @end */ /* @group Phone */ /* @group Pre-Phone */ @media only screen and (max-width: 767px) { /* @group Global */ body { background-color: #ffffff; } .hide-tablet-down { display: none !important; } #home-form { background-image: none; } #ns-tool-bar.slide, #top-toolbar.slide, #left-content.slide { width: 100%; } .reveal-modal-bg { position: fixed; } .reveal-modal { padding: 10px !important; width: 94% !important; margin-left: -47% !important; } .mobile-full { width: 100%; } .button { margin-bottom: 6px; } /* @group Animation */ #left-content, #ns-tool-bar, .list-navigation { -webkit-transition: left 0.4s ease-in-out; -moz-transition: left 0.4s ease-in-out; -ms-transition: left 0.4s ease-in-out; -o-transition: left 0.4s ease-in-out; transition: left 0.4s ease-in-out; } #left-content.slide, #ns-tool-bar.slide, .list-navigation.slide { left: -275px; } /* @end */ /* @end */ /* @group Header */ #ns-tool-bar { /* position: fixed; */ width: 100%; } #top-toolbar { display: none; } #ns-tool-bar .row { margin-right: 91px; } #slide-close.slide { display: block !important; } #slide-close { display: none; position: fixed; top: 0px; left: 0px; width: 100%; height: 100%; z-index: 1000; margin-left: -275px; } #logo { font-size: 20px; line-height: 41px; width: 139px; padding-bottom: 0; margin-top: 0; margin-bottom: 0; } /* @group Search */ #search-container { max-height: 0px; overflow: hidden; float: none; display: block; width: 100%; clear: both; position: relative; left: 0px; background: url(../images/pngs/10.png) repeat; -webkit-transition: all 0.4s ease-in-out; -moz-transition: all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out; -o-transition: all 0.4s ease-in-out; transition: all 0.4s ease-in-out; margin-right: 0; margin-left: 0; top: 0; } #search-container.drop { max-height: 300px; } #search-container-padding { padding: 15px; overflow: auto; } #search-container fieldset { width: 100%; float: left; } .search-social-icon { width: 19% !important; margin-bottom: 10px; margin-right: 1% !important; } .search-social-icon#search-youtube { margin-right: 0 !important; width: 20% !important; } #search-container fieldset input.text { width: 100% !important; } .ns-tool-bar-icons { float: right; margin-top: -41px; } #search-icon i { position: relative; top: -1px; } /* @end */ /* @end */ /* @group Left Content */ #left-content { width: 100%; padding-top: 65px; padding-top: 65px !important; /* Eliminates Flicker issue on ios */ -webkit-perspective: 500; -webkit-backface-visibility: hidden; } .article-list-content { margin-left: 70px; } dl.article-list dd img { width: 55px !important; margin-right: 5px; } /* @group Lists */ .list { margin-bottom: 15px; } .list-navigation { position: fixed; bottom: 0px; z-index: 10; left: 0px; width: 100%; margin-bottom: 0; -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.32); -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.32); box-shadow: 0 0 5px rgba(0, 0, 0, 0.32); /* Eliminates Flicker issue on ios */ -webkit-perspective: 500; -webkit-backface-visibility: hidden; background-color: #616161; } .list-navigation a.active { background-color: #3c3c3c; } .list-navigation a { font-size: 10px; color: #ffffff; border-right-style: solid; border-right-color: #555555; text-shadow: 0 0 7px rgba(0, 0, 0, 0.42); } .list-navigation a i { display: block; font-size: 16px; margin-bottom: 2px; } /* @end */ /* @group Scholarship Listing */ .scholarship-list { } .scholarship-list li { } .scholarship-title { } .scholarship-deadline { } .scholarship-favorite { } .scholarship-favorite.active { } .scholarship-amount { } /* @end */ /* @group Homepage */ #homepage-background { margin-top: -30px; max-height: 350px; } /* @end */ /* @end */ /* @group Right Sidebar */ #right-sidebar { display: none; width: 290px; right: -15px; /*right: -750px;*/ background: repeat #3d3d3d; } /*Added a slide class to toggle the layer on and off to reduce load and scroll bugs.*/ #right-sidebar.slide { display: block; } #profile-path-container { width: 97% !important; overflow: hidden !important; } .sidebar-header i, #search-icon, .sidebar-header em { width: 45px; height: 45px; font-size: 26px; line-height: 49px; } .sidebar-header em img { width: 23px; margin-top: -11px; } #profile-message-container, #profile-articles-container, #profile-path-container, #profile-schools-container { width: 95%; } #search-icon i, #sidebar-icon i { line-height: 44px; } .sidebar-header { height: 45px; font-size: 17px; line-height: 42px; } .notification { margin-right: 10px; } span.sidebar-header span { margin-left: 13px; } #registration-sidebar { width: 98%; } #loggedout-navigation a { height: 45px !important; font-size: 17px !important; line-height: 42px !important; } #loggedout-navigation i { width: 45px; height: 45px; font-size: 26px; line-height: 49px; } .sidebar-header .notification { margin-top: 12px; } /* @group Registration */ #registration-container p{ margin: 5px 0; line-height: 16px; color: #ffffff; } #registration-container label { color: #a4a4a4; margin-bottom: 6px; } #registration-container { width: 97%; } /* @end */ /* @group Sidebar Buttons */ #sidebar-buttons { padding-top: 10px; padding-bottom: 10px; padding-left: 10px; width: 100%; } #sidebar-buttons a { width: 126px; margin-right: 7px; } #sidebar-buttons:last-child { margin-right: 0; } #sidebar-buttons a:hover { background-color: #7bb20f; } #sidebar-buttons a img { width: 45px; height: 45px; margin-bottom: 10px; } #sidebar-buttons a#bugs-feedback { width: 95% !important; } #sidebar-icon, #primary-navigation-icon, #search-icon { display: block; width: 45px; height: 45px; font-size: 29px; line-height: 44px; } /* @end */ /* @group Path */ #profile-path-container .step-title { font-size: 18px; } .step-container { font-size: 14px; line-height: 20px; } .progress-wrapper { width: 160px; } .progress.small { width: 119px; margin-top: 1px; margin-right: 0 !important; } /* @end */ /* @end */ } /* @end */ /* @group Large Phone */ @media only screen and (max-width: 550px) { #dnn_ctr511_nsArticle_itemsPaging_lnkPagingNext span, #dnn_ctr511_nsArticle_itemsPaging_lnkPagingPrevious span { display: none; } .article-container ul, #article-categories-footer ul { width: 100%; } /* @group Search */ #search-addition p a { width: 49%; text-align: center; line-height: 29px; margin-right: 1%; } #search-addition p a:last-child { margin-right: 0; width: 50%; } #search-addition p { min-height: 30px; } #search-addition p span { display: none !important; } #search-addition p a i { float: left; } #search-addition p span { display: block; clear: both; } /* @end */ } /* @end */ /* @group Small Phone */ @media only screen and (max-width: 480px) { dl.article-list dd img { width: 40px !important; } a.article-title { font-size: 12px; display: block; margin-right: 20px; margin-bottom: 4px; } .article-list-content { line-height: 14px; margin-left: 0; } #home-usertype li { width: 100%; margin-right: 0px; margin-bottom: 10px; } article p { font-size: 16px; } } /* @end */ /* @end */ /* Custom */ /* @group Client Specific CSS */ .client-6299 .adr, .client-6300 .adr, .client-6301 .adr, .client-6302 .adr, .client-6131 .adr { display: none !important; } .client-6299 .img-box, .client-6300 .img-box, .client-6301 .img-box, .client-6302 .img-box, .client-6131 .img-box { margin-bottom: 1px; } /* @end */ /* @group DNN Admin CSS */ /* Adds the padding to the top */ body.Admin #ns-tool-bar, body.Admin #left-content, body.Admin #right-sidebar { top: 35px !important; } .megaborder{ -webkit-box-sizing: padding-box !important; -moz-box-sizing: padding-box !important; box-sizing: padding-box !important; } #dnnCPWrap * { -webkit-box-sizing: content-box !important; -moz-box-sizing: content-box !important; box-sizing: content-box !important; } #dnnCPWrap input[type="text"] { margin: 0; padding: 8px; height: auto; } #dnnCPWrap table { margin-bottom: 0; } div.jspPane { width: 100% !important; } ul.rcbList { background-color: #ffffff; border: 1px solid #c9c9c9; } ul.rcbList li { font-size: 12px; padding: 4px; border-bottom: 1px solid #edeeed; } ul.rcbList li:hover { background-color: #f5f5f5; } ul.rcbList li img { width: 18px; margin-right: 5px; } .rcbWidth { max-height: 200px; overflow-y: scroll; } /* @end */ /* @group On Login */ .show-when-logged-in { display: none !important; } .hide-when-logged-in { display: none !important; } /*Put this in login only css */ @media only screen and (max-width: 1100px) and (min-width: 767px) { .logged-in #search-container { left: auto; right: 8px; } } /* @end */ /* @group Full Width Fix CSS */ @media only screen and (min-width: 767px) { /* This controls the width after a user clicks the sidebar on mobile then scales up the width of the browser. */ #left-content.slide, #top-toolbar.slide, #ns-tool-bar.slide { width: 100%; } /* This controls the width after a user clicks the sidebar on mobile then scales up the width of the browser. */ .logged-in #left-content, .logged-in #top-toolbar, .logged-in #ns-tool-bar, .logged-in #left-content.slide, .logged-in #top-toolbar.slide, .logged-in #ns-tool-bar.slide { width: 75%; } #registration-container { position: absolute; left: 50%; width: 346px; margin-left: -173px; padding: 15px 15px 10px; top: 80px; background-color: #ffffff; z-index: 13; -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.62); box-shadow: 0 0 30px rgba(0, 0, 0, 0.62); display: none; } #registration-container a.close-reveal-modal { font-size: 22px; font-size: 2.2rem; line-height: .5; position: absolute; top: 8px; right: 11px; color: #aaa; text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.6); font-weight: bold; cursor: pointer; } #right-sidebar-loggedout h4 { color: #1e1e1e; } #login-background { position: fixed; width: 100%; height: 100%; z-index: 12; display: none; background: url(../images/pngs/40.png) repeat; } #right-sidebar-loggedout #sidebar-buttons { display: none; } #sidebar-buttons a { display: none; } #wft-sidebar { display: none; } } @media only screen and (max-width: 766px) { #right-sidebar-loggedout #registration-container { padding-top: 10px; padding-right: 9px; padding-left: 10px; width: 100%; display: block !important; } #registration-container a.close-reveal-modal { display: none; } #right-sidebar-loggedout h4 { color: #ffffff; } #right-sidebar-loggedout { float: right; width: 278px; height: 100%; position: fixed; right: -3px; background: url(../images/background-pattern-dark.png) center top repeat-x #3c3d3c; color: #ffffff; overflow: scroll; -webkit-overflow-scrolling: touch; position: fixed; top: 0px; z-index: 5; overflow-x: hidden; } #left-content { /* overflow: scroll; */ -webkit-overflow-scrolling: touch; } #right-sidebar-loggedout #bugs-feedback { margin-right: 0; } #right-sidebar-loggedout a#bugs-feedback { width: 97% !important; } #right-sidebar-loggedout #sidebar-buttons { padding-top: 0; } } /* @end */
0.23014
0.05951
/* Disable the ability to select text. */ .noselect { -webkit-touch-callout: none; /* iOS Safari */ -webkit-user-select: none; /* Chrome/Safari/Opera */ -khtml-user-select: none; /* Konqueror */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* IE/Edge */ user-select: none; /* non-prefixed version, currently not supported by any browser */ } /* ----- */ /* FONTS */ /* ----- */ .numpadTextOut, input.numpadPhone1, input.numpadPhone2, input.numpadPhone3, div.numpadOutput { font-family: verdana, sans-serif; font-size: 16pt; line-height: 1.5em; } .numpadInput { font: 71%/1.5 verdana, sans-serif; } /* ------ */ /* LAYOUT */ /* ------ */ /* Container */ div.numpadContainer { /* Center it. */ /* margin: 100px auto; */ /*margin-top: 100px; margin-bottom: 100px;*/ margin-left: auto; margin-right: auto; /* Set the width. */ width: 100%; /* Put some space around the container. */ margin-top: 10px; margin-bottom: 10px; } /* Items in the container */ div.numpadContainer * { /* Reset margins and padding inside the container. */ margin: 0; padding: 0; } /* OUTPUT */ /* Output region. */ div.numpadOutput { /* Center it. */ margin-left: auto; margin-right: auto; /* Stop white space wrapping. Otherwise, elements display on top of each other. */ white-space: nowrap; /* Set the output width. */ width: 150px; } /* Output text box, password, etc. */ .numpadTextOut { margin: 0px 0px 5px 0px; padding: 5px; width: 125px; height: 2em; -moz-border-radius: 5px; -webkit-border-radius: 5px; } /* Output phone number. */ .numpadPhone1, .numpadPhone2, .numpadPhone3 { /* Keep the text on the left of the text-box.*/ text-align: left; /* Set the width to something smaller. */ width: 2em; } /* Make the 4 digit box a little wider than the others. */ .numpadPhone3 { width: 2.5em; } /* INPUT */ div.numpadWrapper { width: 300px; margin-left: auto; margin-right: auto; } /* The input is a list of buttons. Change it. */ ul.numpadInput { display: block; margin-top: 10px; margin-left: auto; margin-right: auto; width: 50%; list-style: none; /* Make the wrapper clear the floated nested content. */ overflow: hidden; } /* Set default style for each key. */ ul.numpadInput li { /* This is needed; otherwise, all the elements display in a long column (as a list). */ float: left; /* Set the right and bottom margins of each butotn. */ margin: 0px 5px 5px 0px; /* Make the button a square. */ width: 40px; height: 40px; line-height: 40px; /* Center the text within the button. */ text-align: center; } /* These keys start a new 'row' in the keyboard. */ .firstitem { clear: left; } /* Tweak the margin on the last item in a row. */ .lastitem { margin-right: 0; } ul.numpadInput li:hover { /* Make the keys look like they are being depressed slightly when hovering with a mouse. This is not as important for touch-screen, since there is no hovering on a touch-screen. However, it is left in here in case this keyboard is ported to devices with a mouse style input. */ position: relative; top: 1px; left: 1px; cursor: pointer; } .hide { display: none; }
keyboard/css/numpad1.css
/* Disable the ability to select text. */ .noselect { -webkit-touch-callout: none; /* iOS Safari */ -webkit-user-select: none; /* Chrome/Safari/Opera */ -khtml-user-select: none; /* Konqueror */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* IE/Edge */ user-select: none; /* non-prefixed version, currently not supported by any browser */ } /* ----- */ /* FONTS */ /* ----- */ .numpadTextOut, input.numpadPhone1, input.numpadPhone2, input.numpadPhone3, div.numpadOutput { font-family: verdana, sans-serif; font-size: 16pt; line-height: 1.5em; } .numpadInput { font: 71%/1.5 verdana, sans-serif; } /* ------ */ /* LAYOUT */ /* ------ */ /* Container */ div.numpadContainer { /* Center it. */ /* margin: 100px auto; */ /*margin-top: 100px; margin-bottom: 100px;*/ margin-left: auto; margin-right: auto; /* Set the width. */ width: 100%; /* Put some space around the container. */ margin-top: 10px; margin-bottom: 10px; } /* Items in the container */ div.numpadContainer * { /* Reset margins and padding inside the container. */ margin: 0; padding: 0; } /* OUTPUT */ /* Output region. */ div.numpadOutput { /* Center it. */ margin-left: auto; margin-right: auto; /* Stop white space wrapping. Otherwise, elements display on top of each other. */ white-space: nowrap; /* Set the output width. */ width: 150px; } /* Output text box, password, etc. */ .numpadTextOut { margin: 0px 0px 5px 0px; padding: 5px; width: 125px; height: 2em; -moz-border-radius: 5px; -webkit-border-radius: 5px; } /* Output phone number. */ .numpadPhone1, .numpadPhone2, .numpadPhone3 { /* Keep the text on the left of the text-box.*/ text-align: left; /* Set the width to something smaller. */ width: 2em; } /* Make the 4 digit box a little wider than the others. */ .numpadPhone3 { width: 2.5em; } /* INPUT */ div.numpadWrapper { width: 300px; margin-left: auto; margin-right: auto; } /* The input is a list of buttons. Change it. */ ul.numpadInput { display: block; margin-top: 10px; margin-left: auto; margin-right: auto; width: 50%; list-style: none; /* Make the wrapper clear the floated nested content. */ overflow: hidden; } /* Set default style for each key. */ ul.numpadInput li { /* This is needed; otherwise, all the elements display in a long column (as a list). */ float: left; /* Set the right and bottom margins of each butotn. */ margin: 0px 5px 5px 0px; /* Make the button a square. */ width: 40px; height: 40px; line-height: 40px; /* Center the text within the button. */ text-align: center; } /* These keys start a new 'row' in the keyboard. */ .firstitem { clear: left; } /* Tweak the margin on the last item in a row. */ .lastitem { margin-right: 0; } ul.numpadInput li:hover { /* Make the keys look like they are being depressed slightly when hovering with a mouse. This is not as important for touch-screen, since there is no hovering on a touch-screen. However, it is left in here in case this keyboard is ported to devices with a mouse style input. */ position: relative; top: 1px; left: 1px; cursor: pointer; } .hide { display: none; }
0.247078
0.046703
@charset "UTF-8"; @font-face { font-family: "linea-basic"; src: url('linea-basic.eot'); src: url('linea-basic.eot?#iefix') format('eot'), url('linea-basic.woff') format('woff'), url('linea-basic.ttf') format('truetype'), url('linea-basic.svg#linea-basic') format('svg'); } .lba { font-family: "linea-basic"; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-style: normal; font-variant: normal; font-weight: normal; speak: none; text-decoration: none; text-transform: none; } .lba-basic-accelerator:before { content: "a"; } .lba-basic-alarm:before { content: "b"; } .lba-basic-anchor:before { content: "c"; } .lba-basic-anticlockwise:before { content: "d"; } .lba-basic-archive:before { content: "e"; } .lba-basic-archive-full:before { content: "f"; } .lba-basic-ban:before { content: "g"; } .lba-basic-battery-charge:before { content: "h"; } .lba-basic-battery-empty:before { content: "i"; } .lba-basic-battery-full:before { content: "j"; } .lba-basic-battery-half:before { content: "k"; } .lba-basic-bolt:before { content: "l"; } .lba-basic-book:before { content: "m"; } .lba-basic-book-pen:before { content: "n"; } .lba-basic-book-pencil:before { content: "o"; } .lba-basic-bookmark:before { content: "p"; } .lba-basic-calculator:before { content: "q"; } .lba-basic-calendar:before { content: "r"; } .lba-basic-cards-diamonds:before { content: "s"; } .lba-basic-cards-hearts:before { content: "t"; } .lba-basic-case:before { content: "u"; } .lba-basic-chronometer:before { content: "v"; } .lba-basic-clessidre:before { content: "w"; } .lba-basic-clock:before { content: "x"; } .lba-basic-clockwise:before { content: "y"; } .lba-basic-cloud:before { content: "z"; } .lba-basic-clubs:before { content: "A"; } .lba-basic-compass:before { content: "B"; } .lba-basic-cup:before { content: "C"; } .lba-basic-diamonds:before { content: "D"; } .lba-basic-display:before { content: "E"; } .lba-basic-download:before { content: "F"; } .lba-basic-exclamation:before { content: "G"; } .lba-basic-eye:before { content: "H"; } .lba-basic-eye-closed:before { content: "I"; } .lba-basic-female:before { content: "J"; } .lba-basic-flag1:before { content: "K"; } .lba-basic-flag2:before { content: "L"; } .lba-basic-floppydisk:before { content: "M"; } .lba-basic-folder:before { content: "N"; } .lba-basic-folder-multiple:before { content: "O"; } .lba-basic-gear:before { content: "P"; } .lba-basic-geolocalize-01:before { content: "Q"; } .lba-basic-geolocalize-05:before { content: "R"; } .lba-basic-globe:before { content: "S"; } .lba-basic-gunsight:before { content: "T"; } .lba-basic-hammer:before { content: "U"; } .lba-basic-headset:before { content: "V"; } .lba-basic-heart:before { content: "W"; } .lba-basic-heart-broken:before { content: "X"; } .lba-basic-helm:before { content: "Y"; } .lba-basic-home:before { content: "Z"; } .lba-basic-info:before { content: "0"; } .lba-basic-ipod:before { content: "1"; } .lba-basic-joypad:before { content: "2"; } .lba-basic-key:before { content: "3"; } .lba-basic-keyboard:before { content: "4"; } .lba-basic-laptop:before { content: "5"; } .lba-basic-life-buoy:before { content: "6"; } .lba-basic-lightbulb:before { content: "7"; } .lba-basic-link:before { content: "8"; } .lba-basic-lock:before { content: "9"; } .lba-basic-lock-open:before { content: "!"; } .lba-basic-magic-mouse:before { content: "\""; } .lba-basic-magnifier:before { content: "#"; } .lba-basic-magnifier-minus:before { content: "$"; } .lba-basic-magnifier-plus:before { content: "%"; } .lba-basic-mail:before { content: "&"; } .lba-basic-mail-multiple:before { content: "'"; } .lba-basic-mail-open:before { content: "("; } .lba-basic-mail-open-text:before { content: ")"; } .lba-basic-male:before { content: "*"; } .lba-basic-map:before { content: "+"; } .lba-basic-message:before { content: ","; } .lba-basic-message-multiple:before { content: "-"; } .lba-basic-message-txt:before { content: "."; } .lba-basic-mixer2:before { content: "/"; } .lba-basic-mouse:before { content: ":"; } .lba-basic-notebook:before { content: ";"; } .lba-basic-notebook-pen:before { content: "<"; } .lba-basic-notebook-pencil:before { content: "="; } .lba-basic-paperplane:before { content: ">"; } .lba-basic-pencil-ruler:before { content: "?"; } .lba-basic-pencil-ruler-pen:before { content: "@"; } .lba-basic-photo:before { content: "["; } .lba-basic-picture:before { content: "]"; } .lba-basic-picture-multiple:before { content: "^"; } .lba-basic-pin1:before { content: "_"; } .lba-basic-pin2:before { content: "`"; } .lba-basic-postcard:before { content: "{"; } .lba-basic-postcard-multiple:before { content: "|"; } .lba-basic-printer:before { content: "}"; } .lba-basic-question:before { content: "~"; } .lba-basic-rss:before { content: "\\"; } .lba-basic-server:before { content: "\e000"; } .lba-basic-server2:before { content: "\e001"; } .lba-basic-server-cloud:before { content: "\e002"; } .lba-basic-server-download:before { content: "\e003"; } .lba-basic-server-upload:before { content: "\e004"; } .lba-basic-settings:before { content: "\e005"; } .lba-basic-share:before { content: "\e006"; } .lba-basic-sheet:before { content: "\e007"; } .lba-basic-sheet-multiple:before { content: "\e008"; } .lba-basic-sheet-pen:before { content: "\e009"; } .lba-basic-sheet-pencil:before { content: "\e00a"; } .lba-basic-sheet-txt:before { content: "\e00b"; } .lba-basic-signs:before { content: "\e00c"; } .lba-basic-smartphone:before { content: "\e00d"; } .lba-basic-spades:before { content: "\e00e"; } .lba-basic-spread:before { content: "\e00f"; } .lba-basic-spread-bookmark:before { content: "\e010"; } .lba-basic-spread-text:before { content: "\e011"; } .lba-basic-spread-text-bookmark:before { content: "\e012"; } .lba-basic-star:before { content: "\e013"; } .lba-basic-tablet:before { content: "\e014"; } .lba-basic-target:before { content: "\e015"; } .lba-basic-todo:before { content: "\e016"; } .lba-basic-todo-pen:before { content: "\e017"; } .lba-basic-todo-pencil:before { content: "\e018"; } .lba-basic-todo-txt:before { content: "\e019"; } .lba-basic-todolist-pen:before { content: "\e01a"; } .lba-basic-todolist-pencil:before { content: "\e01b"; } .lba-basic-trashcan:before { content: "\e01c"; } .lba-basic-trashcan-full:before { content: "\e01d"; } .lba-basic-trashcan-refresh:before { content: "\e01e"; } .lba-basic-trashcan-remove:before { content: "\e01f"; } .lba-basic-upload:before { content: "\e020"; } .lba-basic-usb:before { content: "\e021"; } .lba-basic-video:before { content: "\e022"; } .lba-basic-watch:before { content: "\e023"; } .lba-basic-webpage:before { content: "\e024"; } .lba-basic-webpage-img-txt:before { content: "\e025"; } .lba-basic-webpage-multiple:before { content: "\e026"; } .lba-basic-webpage-txt:before { content: "\e027"; } .lba-basic-world:before { content: "\e028"; }
node_modules/@icon/linea-basic/linea-basic.css
@charset "UTF-8"; @font-face { font-family: "linea-basic"; src: url('linea-basic.eot'); src: url('linea-basic.eot?#iefix') format('eot'), url('linea-basic.woff') format('woff'), url('linea-basic.ttf') format('truetype'), url('linea-basic.svg#linea-basic') format('svg'); } .lba { font-family: "linea-basic"; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-style: normal; font-variant: normal; font-weight: normal; speak: none; text-decoration: none; text-transform: none; } .lba-basic-accelerator:before { content: "a"; } .lba-basic-alarm:before { content: "b"; } .lba-basic-anchor:before { content: "c"; } .lba-basic-anticlockwise:before { content: "d"; } .lba-basic-archive:before { content: "e"; } .lba-basic-archive-full:before { content: "f"; } .lba-basic-ban:before { content: "g"; } .lba-basic-battery-charge:before { content: "h"; } .lba-basic-battery-empty:before { content: "i"; } .lba-basic-battery-full:before { content: "j"; } .lba-basic-battery-half:before { content: "k"; } .lba-basic-bolt:before { content: "l"; } .lba-basic-book:before { content: "m"; } .lba-basic-book-pen:before { content: "n"; } .lba-basic-book-pencil:before { content: "o"; } .lba-basic-bookmark:before { content: "p"; } .lba-basic-calculator:before { content: "q"; } .lba-basic-calendar:before { content: "r"; } .lba-basic-cards-diamonds:before { content: "s"; } .lba-basic-cards-hearts:before { content: "t"; } .lba-basic-case:before { content: "u"; } .lba-basic-chronometer:before { content: "v"; } .lba-basic-clessidre:before { content: "w"; } .lba-basic-clock:before { content: "x"; } .lba-basic-clockwise:before { content: "y"; } .lba-basic-cloud:before { content: "z"; } .lba-basic-clubs:before { content: "A"; } .lba-basic-compass:before { content: "B"; } .lba-basic-cup:before { content: "C"; } .lba-basic-diamonds:before { content: "D"; } .lba-basic-display:before { content: "E"; } .lba-basic-download:before { content: "F"; } .lba-basic-exclamation:before { content: "G"; } .lba-basic-eye:before { content: "H"; } .lba-basic-eye-closed:before { content: "I"; } .lba-basic-female:before { content: "J"; } .lba-basic-flag1:before { content: "K"; } .lba-basic-flag2:before { content: "L"; } .lba-basic-floppydisk:before { content: "M"; } .lba-basic-folder:before { content: "N"; } .lba-basic-folder-multiple:before { content: "O"; } .lba-basic-gear:before { content: "P"; } .lba-basic-geolocalize-01:before { content: "Q"; } .lba-basic-geolocalize-05:before { content: "R"; } .lba-basic-globe:before { content: "S"; } .lba-basic-gunsight:before { content: "T"; } .lba-basic-hammer:before { content: "U"; } .lba-basic-headset:before { content: "V"; } .lba-basic-heart:before { content: "W"; } .lba-basic-heart-broken:before { content: "X"; } .lba-basic-helm:before { content: "Y"; } .lba-basic-home:before { content: "Z"; } .lba-basic-info:before { content: "0"; } .lba-basic-ipod:before { content: "1"; } .lba-basic-joypad:before { content: "2"; } .lba-basic-key:before { content: "3"; } .lba-basic-keyboard:before { content: "4"; } .lba-basic-laptop:before { content: "5"; } .lba-basic-life-buoy:before { content: "6"; } .lba-basic-lightbulb:before { content: "7"; } .lba-basic-link:before { content: "8"; } .lba-basic-lock:before { content: "9"; } .lba-basic-lock-open:before { content: "!"; } .lba-basic-magic-mouse:before { content: "\""; } .lba-basic-magnifier:before { content: "#"; } .lba-basic-magnifier-minus:before { content: "$"; } .lba-basic-magnifier-plus:before { content: "%"; } .lba-basic-mail:before { content: "&"; } .lba-basic-mail-multiple:before { content: "'"; } .lba-basic-mail-open:before { content: "("; } .lba-basic-mail-open-text:before { content: ")"; } .lba-basic-male:before { content: "*"; } .lba-basic-map:before { content: "+"; } .lba-basic-message:before { content: ","; } .lba-basic-message-multiple:before { content: "-"; } .lba-basic-message-txt:before { content: "."; } .lba-basic-mixer2:before { content: "/"; } .lba-basic-mouse:before { content: ":"; } .lba-basic-notebook:before { content: ";"; } .lba-basic-notebook-pen:before { content: "<"; } .lba-basic-notebook-pencil:before { content: "="; } .lba-basic-paperplane:before { content: ">"; } .lba-basic-pencil-ruler:before { content: "?"; } .lba-basic-pencil-ruler-pen:before { content: "@"; } .lba-basic-photo:before { content: "["; } .lba-basic-picture:before { content: "]"; } .lba-basic-picture-multiple:before { content: "^"; } .lba-basic-pin1:before { content: "_"; } .lba-basic-pin2:before { content: "`"; } .lba-basic-postcard:before { content: "{"; } .lba-basic-postcard-multiple:before { content: "|"; } .lba-basic-printer:before { content: "}"; } .lba-basic-question:before { content: "~"; } .lba-basic-rss:before { content: "\\"; } .lba-basic-server:before { content: "\e000"; } .lba-basic-server2:before { content: "\e001"; } .lba-basic-server-cloud:before { content: "\e002"; } .lba-basic-server-download:before { content: "\e003"; } .lba-basic-server-upload:before { content: "\e004"; } .lba-basic-settings:before { content: "\e005"; } .lba-basic-share:before { content: "\e006"; } .lba-basic-sheet:before { content: "\e007"; } .lba-basic-sheet-multiple:before { content: "\e008"; } .lba-basic-sheet-pen:before { content: "\e009"; } .lba-basic-sheet-pencil:before { content: "\e00a"; } .lba-basic-sheet-txt:before { content: "\e00b"; } .lba-basic-signs:before { content: "\e00c"; } .lba-basic-smartphone:before { content: "\e00d"; } .lba-basic-spades:before { content: "\e00e"; } .lba-basic-spread:before { content: "\e00f"; } .lba-basic-spread-bookmark:before { content: "\e010"; } .lba-basic-spread-text:before { content: "\e011"; } .lba-basic-spread-text-bookmark:before { content: "\e012"; } .lba-basic-star:before { content: "\e013"; } .lba-basic-tablet:before { content: "\e014"; } .lba-basic-target:before { content: "\e015"; } .lba-basic-todo:before { content: "\e016"; } .lba-basic-todo-pen:before { content: "\e017"; } .lba-basic-todo-pencil:before { content: "\e018"; } .lba-basic-todo-txt:before { content: "\e019"; } .lba-basic-todolist-pen:before { content: "\e01a"; } .lba-basic-todolist-pencil:before { content: "\e01b"; } .lba-basic-trashcan:before { content: "\e01c"; } .lba-basic-trashcan-full:before { content: "\e01d"; } .lba-basic-trashcan-refresh:before { content: "\e01e"; } .lba-basic-trashcan-remove:before { content: "\e01f"; } .lba-basic-upload:before { content: "\e020"; } .lba-basic-usb:before { content: "\e021"; } .lba-basic-video:before { content: "\e022"; } .lba-basic-watch:before { content: "\e023"; } .lba-basic-webpage:before { content: "\e024"; } .lba-basic-webpage-img-txt:before { content: "\e025"; } .lba-basic-webpage-multiple:before { content: "\e026"; } .lba-basic-webpage-txt:before { content: "\e027"; } .lba-basic-world:before { content: "\e028"; }
0.302906
0.104523
@charset "UTF-8"; @import "./input.css"; @import "./common/var.css"; @component-namespace el { @b cascader { display: inline-block; position: relative; .el-input, .el-input__inner { cursor: pointer; } .el-input__icon { transition: none; } .el-icon-caret-bottom { transition: transform .3s; @when reverse { transform: rotateZ(180deg); } } .el-icon-circle-close { z-index: calc(var(--index-normal) + 1); } @e label { position: absolute; left: 0; top: 0; height: 100%; line-height: 34px; padding: 0 25px 0 10px; color: var(--input-color); width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; box-sizing: border-box; cursor: pointer; font-size: 14px; text-align: left; span { color: var(--color-light-silver); } } @m large { font-size: var(--input-large-font-size); .el-cascader__label { line-height: calc(var(--input-large-height) - 2); } } @m small { font-size: var(--input-small-font-size); .el-cascader__label { line-height: calc(var(--input-small-height) - 2); } } @when disabled { .el-cascader__label { z-index: calc(var(--index-normal) + 1); color: var(--disabled-color-base); } } } @b cascader-menus { white-space: nowrap; background: #fff; position: absolute; margin: 5px 0; z-index: calc(var(--index-normal) + 1); border: var(--select-dropdown-border); border-radius: var(--border-radius-small); box-shadow: var(--select-dropdown-shadow); } @b cascader-menu { display: inline-block; vertical-align: top; height: 204px; overflow: auto; border-right: var(--select-dropdown-border); background-color: var(--select-dropdown-background); box-sizing: border-box; margin: 0; padding: 6px 0; min-width: 160px; &:last-child { border-right: 0; } @e item { font-size: var(--select-font-size); padding: 8px 30px 8px 10px; position: relative; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--select-option-color); height: var(--select-option-height); line-height: 1.5; box-sizing: border-box; cursor: pointer; @e keyword { font-weight: bold; } @m extensible { &:after { font-family: 'element-icons'; content: "\e606"; font-size: 12px; transform: scale(0.8); color: rgb(191, 203, 217); position: absolute; right: 10px; margin-top: 1px; } } @when disabled { color: var(--select-option-disabled-color); background-color: var(--select-option-disabled-background); cursor: not-allowed; &:hover { background-color: var(--color-white); } } @when active { color: var(--color-white); background-color: var(--select-option-selected); &:hover { background-color: var(--select-option-selected-hover); } } &:hover { background-color: var(--select-option-hover-background); } &.selected { color: var(--color-white); background-color: var(--select-option-selected); &.hover { background-color: var(--select-option-selected-hover); } } } @m flexible { height: auto; max-height: 180px; overflow: auto; .el-cascader-menu__item { overflow: visible; } } } }
node_modules/element-ui/packages/theme-default/src/cascader.css
@charset "UTF-8"; @import "./input.css"; @import "./common/var.css"; @component-namespace el { @b cascader { display: inline-block; position: relative; .el-input, .el-input__inner { cursor: pointer; } .el-input__icon { transition: none; } .el-icon-caret-bottom { transition: transform .3s; @when reverse { transform: rotateZ(180deg); } } .el-icon-circle-close { z-index: calc(var(--index-normal) + 1); } @e label { position: absolute; left: 0; top: 0; height: 100%; line-height: 34px; padding: 0 25px 0 10px; color: var(--input-color); width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; box-sizing: border-box; cursor: pointer; font-size: 14px; text-align: left; span { color: var(--color-light-silver); } } @m large { font-size: var(--input-large-font-size); .el-cascader__label { line-height: calc(var(--input-large-height) - 2); } } @m small { font-size: var(--input-small-font-size); .el-cascader__label { line-height: calc(var(--input-small-height) - 2); } } @when disabled { .el-cascader__label { z-index: calc(var(--index-normal) + 1); color: var(--disabled-color-base); } } } @b cascader-menus { white-space: nowrap; background: #fff; position: absolute; margin: 5px 0; z-index: calc(var(--index-normal) + 1); border: var(--select-dropdown-border); border-radius: var(--border-radius-small); box-shadow: var(--select-dropdown-shadow); } @b cascader-menu { display: inline-block; vertical-align: top; height: 204px; overflow: auto; border-right: var(--select-dropdown-border); background-color: var(--select-dropdown-background); box-sizing: border-box; margin: 0; padding: 6px 0; min-width: 160px; &:last-child { border-right: 0; } @e item { font-size: var(--select-font-size); padding: 8px 30px 8px 10px; position: relative; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--select-option-color); height: var(--select-option-height); line-height: 1.5; box-sizing: border-box; cursor: pointer; @e keyword { font-weight: bold; } @m extensible { &:after { font-family: 'element-icons'; content: "\e606"; font-size: 12px; transform: scale(0.8); color: rgb(191, 203, 217); position: absolute; right: 10px; margin-top: 1px; } } @when disabled { color: var(--select-option-disabled-color); background-color: var(--select-option-disabled-background); cursor: not-allowed; &:hover { background-color: var(--color-white); } } @when active { color: var(--color-white); background-color: var(--select-option-selected); &:hover { background-color: var(--select-option-selected-hover); } } &:hover { background-color: var(--select-option-hover-background); } &.selected { color: var(--color-white); background-color: var(--select-option-selected); &.hover { background-color: var(--select-option-selected-hover); } } } @m flexible { height: auto; max-height: 180px; overflow: auto; .el-cascader-menu__item { overflow: visible; } } } }
0.53437
0.113187
body { font-family: Trebuchet, Verdana, Arial, Helvetica, Sans; font-size: 10pt; margin: 0; padding: 0; background-color: #E5E5E5; } .RenoPageList, ol, ul { clear: both; } .RenoPageList { margin:0; } h1 { font-size: 24pt; clear: left; padding-top: 5pt; padding-bottom: 5pt; margin-top: 0; margin-bottom: 0; } h2 { font-size: 18pt; clear: left; padding-top: 20pt; padding-bottom: 5pt; margin-top: 0; margin-bottom: 0; } h3 { font-size: 14pt; clear: left; padding-top: 15pt; padding-bottom: 5pt; margin-top: 0; margin-bottom: 0; } h4 { font-size: 10pt; float: left; clear: left; padding-top: 5pt; padding-bottom: 0; margin-top: 0; margin-bottom: 0; margin-right: 4pt; } p { font-size: 10pt; padding-top: 5pt; padding-bottom: 5pt; margin-top: 0; margin-bottom: 0; clear:right; } pre { border-top: 1px solid #C5C5C5; border-bottom: 1px solid #C5C5C5; border-left: 1px solid #C5C5C5; border-right: 1px solid #C5C5C5; font-size: 10pt; padding-top: 5pt; padding-bottom: 5pt; padding-left: 5pt; padding-right: 5pt; margin-left: 18pt; margin-right: 18pt; margin-top: 10pt; margin-bottom: 10pt; clear: both; } ol,ul { padding-top: 0; padding-bottom: 0; margin-top: 0; margin-bottom: 0; } ul li { padding-top: 5pt; padding-bottom: 5pt; margin-top: 0; margin-bottom: 0; } .RenoIndex h3 { margin: 20pt 0 5pt 0; padding: 2pt; display: inline; border: 1.5pt solid #A0A0A0; float: left; clear: both; width: 15pt; text-align: center; background-color: #EAEAEA; } .RenoIndex p { clear: both; margin: 0; padding: 0; } .RenoHookUnbound, .RenoHookBound { background-position: left center; background-image: url('link.gif'); background-repeat: no-repeat; padding-left: 10pt; } .RenoIncludeDIV { padding: 0; margin: 0; } .RenoError { background-color: red; color: white; display: inline; } a { text-decoration: underline; color: #0000AA; } tt { font-size: 10pt; } hr { border: 0; color: black; background-color: black; height: 1px; margin-top: 20pt; } blockquote { padding-top: 0; padding-bottom: 0; padding-right: 0; padding-left: 20pt; margin: 0; } #boost_logo { float:right; } #footer { margin-top:20pt; } .logo_pic { border:0; } .logo { float:right; margin-left: 6pt; margin-right: -4pt; } .body-0 { min-width: 40em; padding-left: 30px; background: url(shade-l.png) repeat-y left; } .body-1 { padding-right: 30px; background: url(shade-r.png) repeat-y right; } .body-2 { background-color: white; padding: 0 8pt 0 8pt; margin-left: 0; border-top: solid 2.5pt #717171; border-bottom: solid 3pt #717171; }
deps/boost_1_63_0/libs/qvm/doc/reno.css
body { font-family: Trebuchet, Verdana, Arial, Helvetica, Sans; font-size: 10pt; margin: 0; padding: 0; background-color: #E5E5E5; } .RenoPageList, ol, ul { clear: both; } .RenoPageList { margin:0; } h1 { font-size: 24pt; clear: left; padding-top: 5pt; padding-bottom: 5pt; margin-top: 0; margin-bottom: 0; } h2 { font-size: 18pt; clear: left; padding-top: 20pt; padding-bottom: 5pt; margin-top: 0; margin-bottom: 0; } h3 { font-size: 14pt; clear: left; padding-top: 15pt; padding-bottom: 5pt; margin-top: 0; margin-bottom: 0; } h4 { font-size: 10pt; float: left; clear: left; padding-top: 5pt; padding-bottom: 0; margin-top: 0; margin-bottom: 0; margin-right: 4pt; } p { font-size: 10pt; padding-top: 5pt; padding-bottom: 5pt; margin-top: 0; margin-bottom: 0; clear:right; } pre { border-top: 1px solid #C5C5C5; border-bottom: 1px solid #C5C5C5; border-left: 1px solid #C5C5C5; border-right: 1px solid #C5C5C5; font-size: 10pt; padding-top: 5pt; padding-bottom: 5pt; padding-left: 5pt; padding-right: 5pt; margin-left: 18pt; margin-right: 18pt; margin-top: 10pt; margin-bottom: 10pt; clear: both; } ol,ul { padding-top: 0; padding-bottom: 0; margin-top: 0; margin-bottom: 0; } ul li { padding-top: 5pt; padding-bottom: 5pt; margin-top: 0; margin-bottom: 0; } .RenoIndex h3 { margin: 20pt 0 5pt 0; padding: 2pt; display: inline; border: 1.5pt solid #A0A0A0; float: left; clear: both; width: 15pt; text-align: center; background-color: #EAEAEA; } .RenoIndex p { clear: both; margin: 0; padding: 0; } .RenoHookUnbound, .RenoHookBound { background-position: left center; background-image: url('link.gif'); background-repeat: no-repeat; padding-left: 10pt; } .RenoIncludeDIV { padding: 0; margin: 0; } .RenoError { background-color: red; color: white; display: inline; } a { text-decoration: underline; color: #0000AA; } tt { font-size: 10pt; } hr { border: 0; color: black; background-color: black; height: 1px; margin-top: 20pt; } blockquote { padding-top: 0; padding-bottom: 0; padding-right: 0; padding-left: 20pt; margin: 0; } #boost_logo { float:right; } #footer { margin-top:20pt; } .logo_pic { border:0; } .logo { float:right; margin-left: 6pt; margin-right: -4pt; } .body-0 { min-width: 40em; padding-left: 30px; background: url(shade-l.png) repeat-y left; } .body-1 { padding-right: 30px; background: url(shade-r.png) repeat-y right; } .body-2 { background-color: white; padding: 0 8pt 0 8pt; margin-left: 0; border-top: solid 2.5pt #717171; border-bottom: solid 3pt #717171; }
0.247623
0.039453
.left h4 { font-size: 12px; text-transform: uppercase; font-weight: bold; color: #818181; } .condcont { padding: 0px 29px; margin-top: 5px; background: #FAFAFA; margin-bottom: 5px; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; width: 99%; margin: 0 auto; position: relative; /* border-bottom: 1px solid #423c3c; */ height: 103px; border: 1px solid #ddd; border-radius: 8px; } input[type="text"] { background: #fff !important; } .note { position: relative; /* top: 94px; */ /* float: left; */ position: relative; /* left: -368px; */ padding: 10px 20px; letter-spacing: 0px; font-family: Arial, sans-serif; font-size: 12px; } select { background-color: rgba(255,255,255,0.9); width: 100%; padding: 0px; border: 1px solid #f2f2f2; border-radius: 2px; height: auto; font-size: 12px; } input[type="submit"] { width: 72px !important; position: relative; top: 0px; height: 21px !important; } .excv { position: relative; padding: 0px 5px; float: right; font-size: 13px; color: grey !important; } .excv a { font-size: 11px; text-transform: capitalize; color: grey; position: relative; bottom: 10px; } .filter { position: relative; bottom: 23px; padding-left: 18px; text-transform: capitalize; font-size: 12px; -font-we: b; font-weight: bold; } form a { color: grey; padding: 0px 16px; } .titlee a { color: grey; font-size: 17px; text-transform: capitalize; font-weight: bold; /* margin-top: 24px !important; */ /* padding: 16px !important; */ } .titlee { margin-bottom: 4px !important; margin: 18px 22px; } body { font-family: Arial, sans-serif !important; } .left h4 { margin-bottom: 7px; } input[type="text"] { position: relative; /* bottom: 35px !important; */ top: 0; height: 18px !important; }
html/css/transactions.css
.left h4 { font-size: 12px; text-transform: uppercase; font-weight: bold; color: #818181; } .condcont { padding: 0px 29px; margin-top: 5px; background: #FAFAFA; margin-bottom: 5px; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; width: 99%; margin: 0 auto; position: relative; /* border-bottom: 1px solid #423c3c; */ height: 103px; border: 1px solid #ddd; border-radius: 8px; } input[type="text"] { background: #fff !important; } .note { position: relative; /* top: 94px; */ /* float: left; */ position: relative; /* left: -368px; */ padding: 10px 20px; letter-spacing: 0px; font-family: Arial, sans-serif; font-size: 12px; } select { background-color: rgba(255,255,255,0.9); width: 100%; padding: 0px; border: 1px solid #f2f2f2; border-radius: 2px; height: auto; font-size: 12px; } input[type="submit"] { width: 72px !important; position: relative; top: 0px; height: 21px !important; } .excv { position: relative; padding: 0px 5px; float: right; font-size: 13px; color: grey !important; } .excv a { font-size: 11px; text-transform: capitalize; color: grey; position: relative; bottom: 10px; } .filter { position: relative; bottom: 23px; padding-left: 18px; text-transform: capitalize; font-size: 12px; -font-we: b; font-weight: bold; } form a { color: grey; padding: 0px 16px; } .titlee a { color: grey; font-size: 17px; text-transform: capitalize; font-weight: bold; /* margin-top: 24px !important; */ /* padding: 16px !important; */ } .titlee { margin-bottom: 4px !important; margin: 18px 22px; } body { font-family: Arial, sans-serif !important; } .left h4 { margin-bottom: 7px; } input[type="text"] { position: relative; /* bottom: 35px !important; */ top: 0; height: 18px !important; }
0.383988
0.15785
:root { --nav-bg: #202B31; --nav-color: #73acfe; --nav-active-color: #ffffff; --section-padding: 12px; } html,body { width: 100%; height: 100%; margin: 0px; font-family: Arial; } body { display: flex; } div.debug { border: 1px solid red; padding: 2px; margin: 2px; } .vbox { display: flex; flex-direction: column; justify-content: center; align-items: stretch; } .grid { display: grid; grid-row-gap: 4px; grid-column-gap: 4px; } header,footer { display: grid; grid-row-gap: 4px; grid-column-gap: 4px; } header a { margin: 6px 6px; text-decoration: none; text-transform: uppercase; color: blue; } a.active { color: red; } input { display: block; padding: 0px 6px; font-size: inherit; width: auto; height: 30px; } input[type=checkbox], input[type=radio] { width: initial; flex: 0 0 auto; margin: 4px; height: auto; } .pill { height: 30px; display: inline-flex; flex-direction: row; justify-content: flex-start; align-items: center; padding: 0px 0px; } .pill > * { display: inline-block; } div,form,header,footer,section,input,button,nav,aside,article { box-sizing: border-box; margin: 0; } div,section,input,ul,main,article,.grow { flex: 1 1 auto; } button { -webkit-appearance: none; background: #4a95eb; font-size: 13px; display: flex; align-items: center; justify-content: center; border: 0px; padding: 2px 10px; border-radius: 2px; color: white; flex: 0 0 auto; height: 30px; } button:hover { background: #3a8eef; } header,footer { flex: 0 0 auto; display: flex; flex-direction: row; justify-content: flex-start; align-items: center; } ul,.list { list-style: none inside none; margin: 0; padding: 0; } li,.list > * { display: flex; flex-direction: row; justify-content: flex-start; align-items: center; border-bottom: 1px solid whitesmoke; } li.done { text-decoration: line-through; font-style: italic; } .App { display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; } .Page { flex: 1 1 auto; display: grid; grid-template-columns: [aside] 200px [main] auto [inspector] 200px; grid-template-rows: 40px auto 40px; height: 100%; } nav { flex: 0 0 auto; background: var(--nav-bg); color: var(--nav-color); padding: 8px; display: flex; flex-direction: row; align-items: center; justify-content: flex-start; } nav a { padding: 4px; color: var(--nav-color); text-decoration: none; } nav a.active { color: var(--nav-active-color); } aside { grid-area: 1 / 1 / 4 / 2; background: whitesmoke; overflow: auto; } nav ~ aside { grid-area: 2 / 1 / 4 / 2; } .main { grid-area: 2 / 2 / 4 / 4; } aside input { width: 100%; } section { padding: var(--section-padding); } .entries { margin: 0; padding: 0; flex: 1 1 auto; list-style: none inside none; overflow: auto; -webkit-overflow-scrolling: touch; } .entry { padding: 6px 12px; position: relative; cursor: default; } .entry a { text-decoration: none; cursor: default; } .entry:hover { background: #efefef; } .entry > * { position: relative; } .entry ._navlink { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; } .entry.active { background: #efefef; } .Page { --nav-bg: #404d56; } .Page > nav { grid-area: 1 / 1 / 1 / 4; background: #404d56; }
test/index.css
:root { --nav-bg: #202B31; --nav-color: #73acfe; --nav-active-color: #ffffff; --section-padding: 12px; } html,body { width: 100%; height: 100%; margin: 0px; font-family: Arial; } body { display: flex; } div.debug { border: 1px solid red; padding: 2px; margin: 2px; } .vbox { display: flex; flex-direction: column; justify-content: center; align-items: stretch; } .grid { display: grid; grid-row-gap: 4px; grid-column-gap: 4px; } header,footer { display: grid; grid-row-gap: 4px; grid-column-gap: 4px; } header a { margin: 6px 6px; text-decoration: none; text-transform: uppercase; color: blue; } a.active { color: red; } input { display: block; padding: 0px 6px; font-size: inherit; width: auto; height: 30px; } input[type=checkbox], input[type=radio] { width: initial; flex: 0 0 auto; margin: 4px; height: auto; } .pill { height: 30px; display: inline-flex; flex-direction: row; justify-content: flex-start; align-items: center; padding: 0px 0px; } .pill > * { display: inline-block; } div,form,header,footer,section,input,button,nav,aside,article { box-sizing: border-box; margin: 0; } div,section,input,ul,main,article,.grow { flex: 1 1 auto; } button { -webkit-appearance: none; background: #4a95eb; font-size: 13px; display: flex; align-items: center; justify-content: center; border: 0px; padding: 2px 10px; border-radius: 2px; color: white; flex: 0 0 auto; height: 30px; } button:hover { background: #3a8eef; } header,footer { flex: 0 0 auto; display: flex; flex-direction: row; justify-content: flex-start; align-items: center; } ul,.list { list-style: none inside none; margin: 0; padding: 0; } li,.list > * { display: flex; flex-direction: row; justify-content: flex-start; align-items: center; border-bottom: 1px solid whitesmoke; } li.done { text-decoration: line-through; font-style: italic; } .App { display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; } .Page { flex: 1 1 auto; display: grid; grid-template-columns: [aside] 200px [main] auto [inspector] 200px; grid-template-rows: 40px auto 40px; height: 100%; } nav { flex: 0 0 auto; background: var(--nav-bg); color: var(--nav-color); padding: 8px; display: flex; flex-direction: row; align-items: center; justify-content: flex-start; } nav a { padding: 4px; color: var(--nav-color); text-decoration: none; } nav a.active { color: var(--nav-active-color); } aside { grid-area: 1 / 1 / 4 / 2; background: whitesmoke; overflow: auto; } nav ~ aside { grid-area: 2 / 1 / 4 / 2; } .main { grid-area: 2 / 2 / 4 / 4; } aside input { width: 100%; } section { padding: var(--section-padding); } .entries { margin: 0; padding: 0; flex: 1 1 auto; list-style: none inside none; overflow: auto; -webkit-overflow-scrolling: touch; } .entry { padding: 6px 12px; position: relative; cursor: default; } .entry a { text-decoration: none; cursor: default; } .entry:hover { background: #efefef; } .entry > * { position: relative; } .entry ._navlink { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; } .entry.active { background: #efefef; } .Page { --nav-bg: #404d56; } .Page > nav { grid-area: 1 / 1 / 1 / 4; background: #404d56; }
0.499268
0.173218
.Freight-area { padding: 100px 0; } .contact-us-area { background: url("../../images/air/air-fraight.jpg") no-repeat center top / cover; position: relative; z-index: 1; padding: 30px 30px 20px; } .contact-us-area:before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgb(64 20 20 / 80%); z-index: -1; } .contact-us-area h3 { color: #fff; font-size: 24px; font-weight: 600; margin-bottom: 30px; padding-bottom: 15px; position: relative; } .contact-us-area h3:before { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 5px; background: #e53935; } .contact-s span { color: #fff; font-size: 15px; } .contact-s span i { padding-right: 5px; color: #e53935; } .contact-s p { color: #fff; font-weight: 18px; } .Freight-item h3 { font-size: 30px; font-weight: 600; line-height: 20px; margin-bottom: 40px; } .Freight-item p { line-height: 30px; margin-bottom: 20px; } .Freight-item img { margin-bottom: 20px; } .Freight-s img { float: left; padding-right: 30px; } .Freight-s { overflow: hidden; } .Freight-s .f-s { overflow: hidden; } .Freight-s .f-s span { font-size: 16px; display: block; padding-bottom: 10px; padding-left: 25px; position: relative; } .Freight-s .f-s span:before { content: ""; position: absolute; left: 0; top: 7px; width: 10px; height: 10px; background: #e53935; border-radius: 50%; } .catagory-item { background: #f5f5f5; margin-top: 60px; } .catagory-item .widget-title { background: #ddd; padding: 10px 20px; position: relative; } .catagory-item .widget-title:before { content: ""; position: absolute; left: 30px; top: 100%; border: 15px solid transparent; border-top-width: 13px; border-top-color: rgba(0, 0, 0, 0.1); } .catagory-item .widget-title h3 { font-size: 24px; text-align: center; } .category-section { padding: 10px 0px 10px; } .category-section ul li { border-bottom: 1px solid #ddd; } .category-section ul li:last-child { border-bottom: none; } .category-section ul li a { font-size: 16px; color: #333; display: block; padding: 15px 20px 10px; transition: all 0.3s; } .price-sec .wpo-pricing-area { padding-top: 100px; }
src/components/TransportAir/style.css
.Freight-area { padding: 100px 0; } .contact-us-area { background: url("../../images/air/air-fraight.jpg") no-repeat center top / cover; position: relative; z-index: 1; padding: 30px 30px 20px; } .contact-us-area:before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgb(64 20 20 / 80%); z-index: -1; } .contact-us-area h3 { color: #fff; font-size: 24px; font-weight: 600; margin-bottom: 30px; padding-bottom: 15px; position: relative; } .contact-us-area h3:before { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 5px; background: #e53935; } .contact-s span { color: #fff; font-size: 15px; } .contact-s span i { padding-right: 5px; color: #e53935; } .contact-s p { color: #fff; font-weight: 18px; } .Freight-item h3 { font-size: 30px; font-weight: 600; line-height: 20px; margin-bottom: 40px; } .Freight-item p { line-height: 30px; margin-bottom: 20px; } .Freight-item img { margin-bottom: 20px; } .Freight-s img { float: left; padding-right: 30px; } .Freight-s { overflow: hidden; } .Freight-s .f-s { overflow: hidden; } .Freight-s .f-s span { font-size: 16px; display: block; padding-bottom: 10px; padding-left: 25px; position: relative; } .Freight-s .f-s span:before { content: ""; position: absolute; left: 0; top: 7px; width: 10px; height: 10px; background: #e53935; border-radius: 50%; } .catagory-item { background: #f5f5f5; margin-top: 60px; } .catagory-item .widget-title { background: #ddd; padding: 10px 20px; position: relative; } .catagory-item .widget-title:before { content: ""; position: absolute; left: 30px; top: 100%; border: 15px solid transparent; border-top-width: 13px; border-top-color: rgba(0, 0, 0, 0.1); } .catagory-item .widget-title h3 { font-size: 24px; text-align: center; } .category-section { padding: 10px 0px 10px; } .category-section ul li { border-bottom: 1px solid #ddd; } .category-section ul li:last-child { border-bottom: none; } .category-section ul li a { font-size: 16px; color: #333; display: block; padding: 15px 20px 10px; transition: all 0.3s; } .price-sec .wpo-pricing-area { padding-top: 100px; }
0.41561
0.102529
.single_style_style-8 { /* Banners */ } .single_style_style-8 .page_content_wrap { padding-top: 2.45em; } .single_style_style-8 .after_header_banner_wrap { margin-top: 2.5em; } .single_style_style-8 .content .before_post_header_banner_wrap { margin-bottom: 2.9em; } .single_style_style-8 .content .after_post_header_banner_wrap { margin-bottom: 2.7em; } .post_header_wrap_style_style-8 { margin-bottom: 2.65em; /* Featured */ /* Header */ /* Sidebar */ } .post_header_wrap_style_style-8 .post_featured { margin-top: 0; margin-bottom: 0; } .post_header_wrap_style_style-8 .post_featured.post_featured_bg { height: 57rem; } .post_header_wrap_style_style-8 .post_featured.post_featured_bg:before { display: none; } .post_header_wrap_style_style-8 .post_featured img { max-width: none; width: 100%; } .post_header_wrap_style_style-8 .post_audio_btn { position: absolute; z-index: 1; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); z-index: 3; } .post_header_wrap_style_style-8 .post_header .post_subtitle { margin-top: 0.7em; } .post_header_wrap_style_style-8 .post_header .post_meta_categories { margin-bottom: 1.95em; margin-top: 0; } .post_header_wrap_style_style-8 .post_header .post_meta_categories .post_categories, .post_header_wrap_style_style-8 .post_header .post_meta_categories .post_categories a { color: var(--theme-color-text_link); } .post_header_wrap_style_style-8 .post_header .post_meta_categories .post_categories a:hover { color: var(--theme-color-text_dark); } .post_header_wrap_style_style-8 .post_header .post_meta_other { -webkit-align-items: center; -ms-flex-align: center; -webkit-box-align: center; align-items: center; -webkit-flex-direction: row; -ms-flex-direction: row; -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; -webkit-justify-content: space-between; -ms-flex-pack: space-between; -webkit-box-pack: justify; justify-content: space-between; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; display: -webkit-flex; display: -ms-flexbox; display: -webkit-box; display: flex; border-top: 1px solid var(--theme-color-bd_color); margin-top: 1.5em; padding-top: 1em; } .post_header_wrap_style_style-8 .post_header .post_meta_other_part1 { -webkit-align-items: center; -ms-flex-align: center; -webkit-box-align: center; align-items: center; -webkit-flex-direction: row; -ms-flex-direction: row; -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; -webkit-justify-content: flex-start; -ms-flex-pack: start; -webkit-box-pack: start; justify-content: flex-start; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; display: -webkit-flex; display: -ms-flexbox; display: -webkit-box; display: flex; } .post_header_wrap_style_style-8 .post_header .post_meta_other_part2 { -webkit-align-items: center; -ms-flex-align: center; -webkit-box-align: center; align-items: center; -webkit-flex-direction: row; -ms-flex-direction: row; -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; -webkit-flex-grow: 1; -ms-flex-grow: 1; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; -webkit-justify-content: flex-end; -ms-flex-pack: end; -webkit-box-pack: end; justify-content: flex-end; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; display: -webkit-flex; display: -ms-flexbox; display: -webkit-box; display: flex; } .post_header_wrap_style_style-8 .post_header .post_meta_item .post_meta_number + .post_meta_label { display: inline-block; } .post_header_wrap_style_style-8.with_featured_image + .content_wrap .content + .sidebar:not(.sidebar_fixed_placeholder) { margin-top: 2em; } .sidebar_hide .post_header_wrap_style_style-8 { /* Featured Audio */ } .sidebar_hide .post_header_wrap_style_style-8 .post_featured.with_audio.without_thumb { margin-left: auto; margin-right: auto; max-width: 100%; left: auto; width: var(--theme-var-content_narrow); } /* Banner */ .sidebar_present .post_header_wrap_style_style-8.with_featured_image + .content_wrap .content .before_post_header_banner_wrap { margin-top: 2em; }
skins/default/templates/single-styles/style-8.css
.single_style_style-8 { /* Banners */ } .single_style_style-8 .page_content_wrap { padding-top: 2.45em; } .single_style_style-8 .after_header_banner_wrap { margin-top: 2.5em; } .single_style_style-8 .content .before_post_header_banner_wrap { margin-bottom: 2.9em; } .single_style_style-8 .content .after_post_header_banner_wrap { margin-bottom: 2.7em; } .post_header_wrap_style_style-8 { margin-bottom: 2.65em; /* Featured */ /* Header */ /* Sidebar */ } .post_header_wrap_style_style-8 .post_featured { margin-top: 0; margin-bottom: 0; } .post_header_wrap_style_style-8 .post_featured.post_featured_bg { height: 57rem; } .post_header_wrap_style_style-8 .post_featured.post_featured_bg:before { display: none; } .post_header_wrap_style_style-8 .post_featured img { max-width: none; width: 100%; } .post_header_wrap_style_style-8 .post_audio_btn { position: absolute; z-index: 1; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); z-index: 3; } .post_header_wrap_style_style-8 .post_header .post_subtitle { margin-top: 0.7em; } .post_header_wrap_style_style-8 .post_header .post_meta_categories { margin-bottom: 1.95em; margin-top: 0; } .post_header_wrap_style_style-8 .post_header .post_meta_categories .post_categories, .post_header_wrap_style_style-8 .post_header .post_meta_categories .post_categories a { color: var(--theme-color-text_link); } .post_header_wrap_style_style-8 .post_header .post_meta_categories .post_categories a:hover { color: var(--theme-color-text_dark); } .post_header_wrap_style_style-8 .post_header .post_meta_other { -webkit-align-items: center; -ms-flex-align: center; -webkit-box-align: center; align-items: center; -webkit-flex-direction: row; -ms-flex-direction: row; -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; -webkit-justify-content: space-between; -ms-flex-pack: space-between; -webkit-box-pack: justify; justify-content: space-between; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; display: -webkit-flex; display: -ms-flexbox; display: -webkit-box; display: flex; border-top: 1px solid var(--theme-color-bd_color); margin-top: 1.5em; padding-top: 1em; } .post_header_wrap_style_style-8 .post_header .post_meta_other_part1 { -webkit-align-items: center; -ms-flex-align: center; -webkit-box-align: center; align-items: center; -webkit-flex-direction: row; -ms-flex-direction: row; -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; -webkit-justify-content: flex-start; -ms-flex-pack: start; -webkit-box-pack: start; justify-content: flex-start; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; display: -webkit-flex; display: -ms-flexbox; display: -webkit-box; display: flex; } .post_header_wrap_style_style-8 .post_header .post_meta_other_part2 { -webkit-align-items: center; -ms-flex-align: center; -webkit-box-align: center; align-items: center; -webkit-flex-direction: row; -ms-flex-direction: row; -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; -webkit-flex-grow: 1; -ms-flex-grow: 1; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; -webkit-justify-content: flex-end; -ms-flex-pack: end; -webkit-box-pack: end; justify-content: flex-end; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; display: -webkit-flex; display: -ms-flexbox; display: -webkit-box; display: flex; } .post_header_wrap_style_style-8 .post_header .post_meta_item .post_meta_number + .post_meta_label { display: inline-block; } .post_header_wrap_style_style-8.with_featured_image + .content_wrap .content + .sidebar:not(.sidebar_fixed_placeholder) { margin-top: 2em; } .sidebar_hide .post_header_wrap_style_style-8 { /* Featured Audio */ } .sidebar_hide .post_header_wrap_style_style-8 .post_featured.with_audio.without_thumb { margin-left: auto; margin-right: auto; max-width: 100%; left: auto; width: var(--theme-var-content_narrow); } /* Banner */ .sidebar_present .post_header_wrap_style_style-8.with_featured_image + .content_wrap .content .before_post_header_banner_wrap { margin-top: 2em; }
0.362405
0.035914
.background-white { background:#fff } .background-gradient { background:rgba(0,0,0,0.44); position:relative } .background-gradient:before { content:''; position:absolute; left:0; right:0; top:-20%; height:20%; background-image:-webkit-gradient(linear, 0 0, 0 100%, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.44))); background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.44)); background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.44)); background-image:-o-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.44)); background-image:linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.44)); background-repeat:repeat-x; filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#70000000', GradientType=0); pointer-events:none } .align-middle:before,.align-middle .align-block { display:inline-block; vertical-align:middle } .align-bottom:before,.align-middle:before { content:''; height:100% } .align-bottom:before,.align-bottom .align-block { display:inline-block; vertical-align:bottom } .align-left { float:left } .align-right { float:right } .align-center { text-align:center } .align-middle-table { display:table } .align-middle-table:before { height:auto; display:inherit } .align-middle-table .align-block { display:table-cell; vertical-align:middle } .canvas-renderer { display:block; position:fixed; top:0; left:0; width:100%; height:100%; background:#fff; -webkit-transform:translateZ(0); -moz-transform:translateZ(0); -ms-transform:translateZ(0); -o-transform:translateZ(0); transform:translateZ(0) } @media not print { .screen-content { height:100% } } @-ms-viewport { width:device-width; } @media print { .layout-single-column,.post-article .layout-single-column,.logged-out-post-footer .layout-single-column { width:80%; margin:0 auto } .canvas-renderer { display:none } } /* Scroll bar style */ /* Let's get this party started */ ::-webkit-scrollbar { width: 9px; } /* Track */ ::-webkit-scrollbar-track { background: white; } /* Handle */ ::-webkit-scrollbar-thumb { background: #2f2f2f; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); } ::-webkit-scrollbar-thumb:hover { background: black; } .enable-night-mode ::-webkit-scrollbar-track { background: transparent; } .enable-night-mode ::-webkit-scrollbar-thumb { background: #d8d8d8; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.26); } .enable-night-mode ::-webkit-scrollbar-thumb:hover { background: #ffffff; } @media screen and (max-width:630px) { ::-webkit-scrollbar { width: 4px; } }
assets/css/medium/bootstrap/general.css
.background-white { background:#fff } .background-gradient { background:rgba(0,0,0,0.44); position:relative } .background-gradient:before { content:''; position:absolute; left:0; right:0; top:-20%; height:20%; background-image:-webkit-gradient(linear, 0 0, 0 100%, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.44))); background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.44)); background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.44)); background-image:-o-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.44)); background-image:linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.44)); background-repeat:repeat-x; filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#70000000', GradientType=0); pointer-events:none } .align-middle:before,.align-middle .align-block { display:inline-block; vertical-align:middle } .align-bottom:before,.align-middle:before { content:''; height:100% } .align-bottom:before,.align-bottom .align-block { display:inline-block; vertical-align:bottom } .align-left { float:left } .align-right { float:right } .align-center { text-align:center } .align-middle-table { display:table } .align-middle-table:before { height:auto; display:inherit } .align-middle-table .align-block { display:table-cell; vertical-align:middle } .canvas-renderer { display:block; position:fixed; top:0; left:0; width:100%; height:100%; background:#fff; -webkit-transform:translateZ(0); -moz-transform:translateZ(0); -ms-transform:translateZ(0); -o-transform:translateZ(0); transform:translateZ(0) } @media not print { .screen-content { height:100% } } @-ms-viewport { width:device-width; } @media print { .layout-single-column,.post-article .layout-single-column,.logged-out-post-footer .layout-single-column { width:80%; margin:0 auto } .canvas-renderer { display:none } } /* Scroll bar style */ /* Let's get this party started */ ::-webkit-scrollbar { width: 9px; } /* Track */ ::-webkit-scrollbar-track { background: white; } /* Handle */ ::-webkit-scrollbar-thumb { background: #2f2f2f; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); } ::-webkit-scrollbar-thumb:hover { background: black; } .enable-night-mode ::-webkit-scrollbar-track { background: transparent; } .enable-night-mode ::-webkit-scrollbar-thumb { background: #d8d8d8; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.26); } .enable-night-mode ::-webkit-scrollbar-thumb:hover { background: #ffffff; } @media screen and (max-width:630px) { ::-webkit-scrollbar { width: 4px; } }
0.437103
0.086016
body .navbar-inverse { background: linear-gradient(to bottom, #E2EEFA, #DBEAF9); } ul.navbar-nav li a.navbar-brand { color:#000; } ul.navbar-nav li a.navbar-brand:hover { color:#3399FF; } .main{ padding-right: 40px; padding-left: 40px; padding: 20px; } .main-body{ margin-top: 30px; } @media only screen and (max-width : 1330px) { .main-body{ margin-top: 75px; } } @media only screen and (min-width : 770px) { a#gormon-menu{ display: none; }} .title{ font-size: 20pt; margin-bottom: 10px; margin-top: 5px; border: 1px solid #333; border-radius: 10px; padding: 5px; background-color: #DEECF9; } #postID-form{ margin-top: 70px; } #postID-form .btn-default{ margin:5px; } .input-text { background-color: #ffffff; padding: 2px 10px; color: #333; border: 1px solid #dddddd; outline: none; vertical-align: middle; height: 36px; border-radius: 0; display: block; width: 100%; -webkit-appearance: none; -webkit-box-shadow: none; -moz-box-shadow: none; } #sostPost{ border: 1px solid #000; border-radius: 10px; height: 40px; text-align: center; line-height: 40px; font-size: 16pt; } .postPublik{ background-color: greenyellow; } .postModer{ background-color: red; } .DeletPublik{ background-color: yellow; } #postID-form input#datepicker[disabled=true]{ color:#E4E4E4;} #aktiv-input-post{ padding: 0; } #aktiv-input-post input{ width: 100px; } .red{ background-color: #E48C8C; } #postAdmin button{ margin: 10px; } .border-form-bottop{ height: auto; width: auto; border: 1px solid #ddd; border-radius: 8px 8px 8px 8px; padding: 10px 10px; } .selekt{ padding-top: 10px; padding-bottom: 15px; text-align: center; } #table{ margin-top: 25px; } #json-panel{ height: 55px; margin-bottom: 10px; border-radius:5px; border: 1px solid #000; background-color: #DEFFFF; } button#button-json-updat{ margin-top:9px; } span.edit-pole, span.ButtonUpdataConfig{ display: inline-block; height: 25px; width: 25px; line-height: 23px; text-align: center; color: #777; cursor: pointer; } span.edit-pole:hover{ color:#3399FF; } span.ButtonUpdataConfig:hover{ color:#3399FF; } #table-noregion td div.name div,#table-noregion td div.value div,#table-noregion td div.N div, #table-region td div.name div,#table-region td div.value div,#table-region td div.N div { display:inline-block; } #table-noregion td.option, #table-region td.option{ width: 320px; } .option-site{ width: 150px; } #table-noregion td.option button, #table-region td.option button{ margin-right:5px; } span.addition{ display: inline-block; margin-left: 5px; font-size: 10pt; color:red; } #InputAddSelect, #InputAddSite{ margin-top:10px; } tr.add td{ background:#DEECF9; } .table-responsive{ padding-top: 20px; } #ButtonsWrap{ width: 100%; } #ButtonsWrap button{ margin: 0 3px 0 3px; } #chtaem-at{ width: 140px; } #date-сancel.btn{ padding: 6px 6px; } /*select.selects*/ #null-site { text-align: center; line-height: 41px; font-weight: bold; border: 2px solid #24C8FF; }
public/css/a-main.css
body .navbar-inverse { background: linear-gradient(to bottom, #E2EEFA, #DBEAF9); } ul.navbar-nav li a.navbar-brand { color:#000; } ul.navbar-nav li a.navbar-brand:hover { color:#3399FF; } .main{ padding-right: 40px; padding-left: 40px; padding: 20px; } .main-body{ margin-top: 30px; } @media only screen and (max-width : 1330px) { .main-body{ margin-top: 75px; } } @media only screen and (min-width : 770px) { a#gormon-menu{ display: none; }} .title{ font-size: 20pt; margin-bottom: 10px; margin-top: 5px; border: 1px solid #333; border-radius: 10px; padding: 5px; background-color: #DEECF9; } #postID-form{ margin-top: 70px; } #postID-form .btn-default{ margin:5px; } .input-text { background-color: #ffffff; padding: 2px 10px; color: #333; border: 1px solid #dddddd; outline: none; vertical-align: middle; height: 36px; border-radius: 0; display: block; width: 100%; -webkit-appearance: none; -webkit-box-shadow: none; -moz-box-shadow: none; } #sostPost{ border: 1px solid #000; border-radius: 10px; height: 40px; text-align: center; line-height: 40px; font-size: 16pt; } .postPublik{ background-color: greenyellow; } .postModer{ background-color: red; } .DeletPublik{ background-color: yellow; } #postID-form input#datepicker[disabled=true]{ color:#E4E4E4;} #aktiv-input-post{ padding: 0; } #aktiv-input-post input{ width: 100px; } .red{ background-color: #E48C8C; } #postAdmin button{ margin: 10px; } .border-form-bottop{ height: auto; width: auto; border: 1px solid #ddd; border-radius: 8px 8px 8px 8px; padding: 10px 10px; } .selekt{ padding-top: 10px; padding-bottom: 15px; text-align: center; } #table{ margin-top: 25px; } #json-panel{ height: 55px; margin-bottom: 10px; border-radius:5px; border: 1px solid #000; background-color: #DEFFFF; } button#button-json-updat{ margin-top:9px; } span.edit-pole, span.ButtonUpdataConfig{ display: inline-block; height: 25px; width: 25px; line-height: 23px; text-align: center; color: #777; cursor: pointer; } span.edit-pole:hover{ color:#3399FF; } span.ButtonUpdataConfig:hover{ color:#3399FF; } #table-noregion td div.name div,#table-noregion td div.value div,#table-noregion td div.N div, #table-region td div.name div,#table-region td div.value div,#table-region td div.N div { display:inline-block; } #table-noregion td.option, #table-region td.option{ width: 320px; } .option-site{ width: 150px; } #table-noregion td.option button, #table-region td.option button{ margin-right:5px; } span.addition{ display: inline-block; margin-left: 5px; font-size: 10pt; color:red; } #InputAddSelect, #InputAddSite{ margin-top:10px; } tr.add td{ background:#DEECF9; } .table-responsive{ padding-top: 20px; } #ButtonsWrap{ width: 100%; } #ButtonsWrap button{ margin: 0 3px 0 3px; } #chtaem-at{ width: 140px; } #date-сancel.btn{ padding: 6px 6px; } /*select.selects*/ #null-site { text-align: center; line-height: 41px; font-weight: bold; border: 2px solid #24C8FF; }
0.221435
0.07627
.section { display: none; padding: 2rem; } @media screen and (min-width: 768px) { .section { padding: 4rem; } } @supports (display: grid) { .section { display: block; } } h1 { font-size: 2rem; } .grid { display: grid; grid-gap: 30px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-auto-rows: 150px; grid-auto-flow: row dense; } .item { position: relative; display: -webkit-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; -webkit-box-pack: end; justify-content: flex-end; box-sizing: border-box; height: 100%; font-size: calc(14px + (26 - 14) * ((100vw - 300px) / (1600 - 300))); background: #bfbfbf; color: #fff; grid-column-start: auto; grid-row-start: auto; background-size: cover; background-position: center; box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4); -webkit-transition: -webkit-transform 0.3s ease-in-out; transition: -webkit-transform 0.3s ease-in-out; transition: transform 0.3s ease-in-out; transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; cursor: pointer; counter-increment: item-counter; } /* .item:nth-of-type(3n) { background-image: url("https://images.unsplash.com/photo-1422255198496-21531f12a6e8?dpr=2&auto=format&fit=crop&w=1500&h=996&q=80&cs=tinysrgb&crop="); } .item:nth-of-type(4n) { background-image: url("https://images.unsplash.com/photo-1490914327627-9fe8d52f4d90?dpr=2&auto=format&fit=crop&w=1500&h=2250&q=80&cs=tinysrgb&crop="); } .item:nth-of-type(5n) { background-image: url("https://images.unsplash.com/photo-1476097297040-79e9e1603142?dpr=2&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop="); } .item:nth-of-type(6n) { background-image: url("https://images.unsplash.com/photo-1464652149449-f3b8538144aa?dpr=2&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop="); } */ .item:after { content: ''; position: absolute; width: 100%; height: 100%; background-color: black; opacity: 0.3; -webkit-transition: opacity 0.3s ease-in-out; transition: opacity 0.3s ease-in-out; } .item:hover { -webkit-transform: scale(1.05); transform: scale(1.05); } .item:hover:after { opacity: 0; } .item--medium { grid-row-end: span 2; } .item--large { grid-row-end: span 3; } .item--full { grid-column-end: auto; } @media screen and (min-width: 768px) { .item--full { grid-column: 1/-1; grid-row-end: span 2; } } .item__details { position: relative; z-index: 1; padding: 15px; color: #444; background: #fff; letter-spacing: 1px; color: #828282; } .item__details:before { font-weight: bold; font-size: 1.1rem; padding-right: 0.5em; color: #444; }
src/styles/blog.css
.section { display: none; padding: 2rem; } @media screen and (min-width: 768px) { .section { padding: 4rem; } } @supports (display: grid) { .section { display: block; } } h1 { font-size: 2rem; } .grid { display: grid; grid-gap: 30px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-auto-rows: 150px; grid-auto-flow: row dense; } .item { position: relative; display: -webkit-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; -webkit-box-pack: end; justify-content: flex-end; box-sizing: border-box; height: 100%; font-size: calc(14px + (26 - 14) * ((100vw - 300px) / (1600 - 300))); background: #bfbfbf; color: #fff; grid-column-start: auto; grid-row-start: auto; background-size: cover; background-position: center; box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4); -webkit-transition: -webkit-transform 0.3s ease-in-out; transition: -webkit-transform 0.3s ease-in-out; transition: transform 0.3s ease-in-out; transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; cursor: pointer; counter-increment: item-counter; } /* .item:nth-of-type(3n) { background-image: url("https://images.unsplash.com/photo-1422255198496-21531f12a6e8?dpr=2&auto=format&fit=crop&w=1500&h=996&q=80&cs=tinysrgb&crop="); } .item:nth-of-type(4n) { background-image: url("https://images.unsplash.com/photo-1490914327627-9fe8d52f4d90?dpr=2&auto=format&fit=crop&w=1500&h=2250&q=80&cs=tinysrgb&crop="); } .item:nth-of-type(5n) { background-image: url("https://images.unsplash.com/photo-1476097297040-79e9e1603142?dpr=2&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop="); } .item:nth-of-type(6n) { background-image: url("https://images.unsplash.com/photo-1464652149449-f3b8538144aa?dpr=2&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop="); } */ .item:after { content: ''; position: absolute; width: 100%; height: 100%; background-color: black; opacity: 0.3; -webkit-transition: opacity 0.3s ease-in-out; transition: opacity 0.3s ease-in-out; } .item:hover { -webkit-transform: scale(1.05); transform: scale(1.05); } .item:hover:after { opacity: 0; } .item--medium { grid-row-end: span 2; } .item--large { grid-row-end: span 3; } .item--full { grid-column-end: auto; } @media screen and (min-width: 768px) { .item--full { grid-column: 1/-1; grid-row-end: span 2; } } .item__details { position: relative; z-index: 1; padding: 15px; color: #444; background: #fff; letter-spacing: 1px; color: #828282; } .item__details:before { font-weight: bold; font-size: 1.1rem; padding-right: 0.5em; color: #444; }
0.436382
0.166879
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@100;400;900&display=swap'); .shop-center::-webkit-scrollbar { width: 0; /* Remove scrollbar space */ background: transparent; /* Optional: just make scrollbar invisible */ } ::-webkit-scrollbar-track { background: #00000000; } /* Optional: show position indicator in red */ .shop-center::-webkit-scrollbar-thumb { background: #ffffff00; } .shop { display: flex; flex-direction: column; height: 100%; margin: auto; font-size: 22px; font-family: 'Prompt', sans-serif; } @media (min-width: 100px) { .shop { background-image: url(background_01.gif); } } @media (min-width: 768px) { .shop { background-image: url(background_01.gif); width: 98%; } } .shop-money { border: 5px solid rgb(0, 0, 0); border-radius: 25px; background-color: white; padding: 12px; } .shop-header { display: flex; flex-direction: row; padding: 10px; text-align: left; background: #0000005d; color: white; font-size: 10px; } .shop-center { text-align: center; width: 80%; margin: auto; overflow: scroll; direction: ltr; } .shop-items { display: grid; } .shop-items > div { border-radius: 25px; padding: 30%; background-color: rgb(255, 255, 255); text-align: center; color: rgb(0, 0, 0); } @media (min-width: 100px) { .shop-items { grid-template-columns: auto auto; font-size: 13px; grid-gap: 30px; } .shop-center { height: 80%; } .shop-money { margin: 10px 10px; width: 100px; height: 10px; } } @media (min-width: 768px) { .shop-items { grid-template-columns: auto auto auto; font-size: 30px; grid-gap: 50px; } .shop-center { height: 80%; } .shop-money { width: 150px; height: 30px; margin: 0 10px; } }
src/Shop.css
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@100;400;900&display=swap'); .shop-center::-webkit-scrollbar { width: 0; /* Remove scrollbar space */ background: transparent; /* Optional: just make scrollbar invisible */ } ::-webkit-scrollbar-track { background: #00000000; } /* Optional: show position indicator in red */ .shop-center::-webkit-scrollbar-thumb { background: #ffffff00; } .shop { display: flex; flex-direction: column; height: 100%; margin: auto; font-size: 22px; font-family: 'Prompt', sans-serif; } @media (min-width: 100px) { .shop { background-image: url(background_01.gif); } } @media (min-width: 768px) { .shop { background-image: url(background_01.gif); width: 98%; } } .shop-money { border: 5px solid rgb(0, 0, 0); border-radius: 25px; background-color: white; padding: 12px; } .shop-header { display: flex; flex-direction: row; padding: 10px; text-align: left; background: #0000005d; color: white; font-size: 10px; } .shop-center { text-align: center; width: 80%; margin: auto; overflow: scroll; direction: ltr; } .shop-items { display: grid; } .shop-items > div { border-radius: 25px; padding: 30%; background-color: rgb(255, 255, 255); text-align: center; color: rgb(0, 0, 0); } @media (min-width: 100px) { .shop-items { grid-template-columns: auto auto; font-size: 13px; grid-gap: 30px; } .shop-center { height: 80%; } .shop-money { margin: 10px 10px; width: 100px; height: 10px; } } @media (min-width: 768px) { .shop-items { grid-template-columns: auto auto auto; font-size: 30px; grid-gap: 50px; } .shop-center { height: 80%; } .shop-money { width: 150px; height: 30px; margin: 0 10px; } }
0.486332
0.093099
@media (max-width: 1780px) and (min-width: 1600px){ .jb_banner_left{ padding:112px 74px 153px 337px; } .blog_after_img{ right:-300px; } } @media (max-width: 1750px){ .jn_menu_partion_div:after{ right:40%; } .jb_banner_left{ padding:112px 60px 153px 40px; } .download_mockup_design{ left:-165px; top:-132px; } .download_mockup_design img{ width:750px; } .contact_field_wrapper{ padding-right:300px; } } @media (max-width: 1650px){ .contact_field_wrapper{ padding-right:250px; } .index_2_category_job{ padding:0 30px; } .jb_map_banner_form{ padding:80px } .blog_after_img{ right:-300px; } } @media (max-width: 1550px){ .jn_menu_partion_div:after { right: 54%; } .menu_btn_box:after{ left:-26px; } .contact_field_wrapper{ padding-right:250px; } .blog_after_img{ right:-350px; } } @media (max-width: 1500px){ .jb_banner_right { width: 700px; background-position: 15px 0; } .jb_banner_left{ width:calc(100% - 700px); } .download_mockup_design{ left:-145px; } .download_mockup_design img { width: 750px; left: 55px; position: relative; top: -18px; } .job_rivew_wrapper{ padding-bottom:170px; } .job_rivew_img img{ padding-left:0; } } @media (max-width: 1430px){ .jn_menu_partion_div:after { right: 63%; } .header_btn li{ margin-right:5px; } .cp_logo_wrapper{ width:15%; } .jb_navigation_wrapper{ width:60%; padding-left:50px; } .menu_btn_box{ width:25%; } .job_rivew_img img{ padding-left:0; width:100%; } .contact_field_wrapper{ padding-right:150px; } .index_2_logo{width:20%;} .index_2_right_menu{width:80%;} .jb_map_banner_form{ padding:60px; } .index_2_category_job .jb_top_jobs_category{ padding:22px 4px 17px 4px; } .counter_2_bg img{ left:-100px; } .blog_after_img{ right:-500px } .slider_small2_shape{ display:none; } .slider_small_shape{ left:-220px; } .slider_small3_shape{ right:-270px; } .menu_btn_box:after{ display:none; } } @media (max-width: 1330px){ .jb_banner_left { padding: 112px 0 153px 40px; } .jb_banner_left { width: calc(100% - 600px); } .jb_banner_right{ width:600px; } .menu_btn_box:after { left: -14px; } .download_mockup_design img { width: 700px; left: 121px; } .jb_banner_right:after{ width:87%; } .contact_field_wrapper{ padding-right:150px; } .posting_job li{ margin-right:25px; } .jb_map_banner_form{padding:50px;} .blog_after_img{display:none;} .mainmenu ul li a{ padding:40px 16px 30px 16px; } } @media (max-width: 1220px){ .menu_btn_box:after { display:none; } .header_btn li:last-child{ margin-right:0; } .jb_saying_content_wrapper p{ padding-right:0; } .contact_field_wrapper{ padding-right:100px; } .posting_job li{ margin-right:20px; } .green_main_menu ul li a{ padding:40px 20px 30px 20px; } .blue_main_menu ul li a { padding: 40px 15px 30px 16px; } } @media (max-width: 1199px) and (min-width: 991px){ .header_btn li:first-child a{ display:none; } .jn_menu_partion_div:after { right: 60%; } .cp_logo_wrapper{width:20%; padding-left:0;} .menu_btn_box{ width:15%; } .header_btn ul{float:right;} .jb_navigation_wrapper{ width:65%; padding-left:0; } .mainmenu ul li a{ padding:40px 15px 30px 15px; } .jb_banner_left{ width:100%; padding: 100px 120px 153px 175px; } .jb_banner_left h1{ font-size:44px; line-height:50px; } .grow_next_img img, .counter_mockup_design img{ width:100%; } .counter_mockup_design{left:0;} .job_main_overflow { overflow:auto; } .company_slider_tab{ padding-top:0; } .job_rivew_img{display:none;} .job_rivew_testimonial{ width:100%; padding:0 60px; } .download_mockup_design{ left:-125px; top:-51px; } .download_mockup_design img, .our_blog_content img{ width:100%; } .blog_newsleeter{ padding:30px; } .open_jobs_wrapper_1 img{width:50px;} .open_job_text{ width:calc(100% - 50px); } .pricing_box_wrapper h2{ font-size:60px; } .job_rivew_wrapper{ padding-top:90px; } .job_field label span{ float:none; } .jp_add_resume_cont{ padding:40px 12px; } .jp_job_post_right_cont li{margin-left:0;} .jp_add_resume_wrapper{padding:0;} .jp_job_post_right_cont h4 a{ padding-bottom:8px; } .map_wrapper_top .map_wrapper, .contact_field_wrapper{ width:100%; } .error_top_wrapper img{ width:100%; } .login_form_wrapper{ padding:100px 70px 80px 70px; } .signup_wrapper{ padding:78px 70px; } .index_2_right_menu{ width:80%; padding-left:0; padding-right:0; } .posting_job li{ margin-right:22px; } .posting_job li:last-child{ margin-right:0; } .index2_agency_wrapper .jb_heading_wraper h3{ font-size:26px; } .jb_map_banner_form{ padding:50px 30px; } .counter_2_bg img { left: -49px; } .index2_job_right{ padding-left:10px; } .index2_job_left i{ width:75px; line-height:75px; height:75px; } .blog_new_cntnt{ padding:15px; } .index_3_logo{ padding-left:15px; } .index_3_right_menu{ padding-right:15px; } .slider_small_shape, .slider_small3_shape, .line_shape, .counter_jbbb2 img, .slider_small_shape44, .clinnt_slider_img{ display:none; } .slider_shape_smt1{ left:300px; } .slider-area:hover .carousel-nevigation > .prev{ left:20px; } .mains_slider_shaper{ left:-26%; } .slider-area .carousel-inner .carousel-item .carousel-captions .content h2{ font-size:40px; } .slider-area:hover .carousel-nevigation > .next{ right:20px; } .index3_download{ padding:100px 0; } .counter_jbbb { top: -86px; left: -44px; } .counter_jbbb img{width:100%;} .slider_side_img{ position:relative; padding-top:200px; bottom:0; right:0; } .slider_side_img img{width:100%;} .client_wrapper .owl-theme .owl-nav{ bottom:90px; } .client_wrapper_cntnt{ padding-right:70px; } .top_company_slider_wrapper .owl-theme .owl-nav{ top:280px; } .green_main_menu ul li a{ padding:40px 10px 30px 10px; } } @media (max-width: 991px){ .mobail_menu{ float:right; width:auto; } .cd-dropdown-wrapper{ margin: 39px 0 0 0%; } .header_btn ul{ float:right; } .house_toggle .menubar{ fill:#ff3366; } .cp_logo_wrapper{ width:25%; padding-left:10px; } .menu_btn_box{ width:60%; padding-right:10px; } .job_main_overflow { overflow-x: scroll; } .header_btn li{ margin-right:18px; } .jb_banner_left{ width:100%; padding:112px 50px 140px 50px; } .jb_banner_left h1{ font-size:44px; line-height:50px; } .jb_top_jobs_category{ margin-top:30px; } .jb_top_jobs_category:hover{ margin-top:20px; } .pd5{padding:0;} .grow_next_img { margin-top:40px; } .counter_mockup_design img{ left:63px; } .top_company_slider_wrapper .owl-theme .owl-nav{ left:0; top:-95px; } .company_slider_tab{ padding-bottom:100px; } .monthly{ float:none; top: -11px; left: 100px; } .pricing_box_wrapper, .blog_newsleeter{ margin-bottom:50px; } .job_rivew_img, .download_mockup_design{ display:none; } .pricing_plan_wrapper{ padding-bottom:50px } .job_rivew_testimonial{ width:100%; padding:0 70px; } .download_wrapper{padding:100px 0;} .download_app_store{ text-align:left; } .app_btn a{ float:left; } .app_btn a.ss_playstore{ margin-left:0; margin-right:15px; } .our_blog_content img, .jb_newslwtteter_left{ width:100%; } .jb_newslwtteter_button{width:100%;} .news_btn a{ float:left; width:220px; margin-top:30px; } .icon_list_news{ margin-top:0; } .copyright_left{ padding-top:0; } .footer_border_displ{ margin-bottom:50px; } .footer_first_contact li{ padding-bottom:15px; } .agency_main_wrapper{ padding-bottom:50px; } .job_newsletter_wrapper{ border:0; padding:0; } .job_listing_left_side { padding-bottom:80px; } .jp_add_resume_cont .width_50{ float:none; display:inline-block; } .jb_job_overview_img{ text-align:left; } .web_text h4{font-size:22px;} .pd22 { padding-bottom:50px; } .jp_spotlight_slider_cont_Wrapper li:last-child{ margin-top:0; margin-left:30px; margin-bottom:0; } .comments_form{ margin-bottom:80px; } .contact_rotate:before{ border-left:30px solid #fff; } .contact_rotate:after{ border-bottom:10px solid transparent; } .contact_main p{ padding:20px; } .map_wrapper_top .map_wrapper, .contact_field_wrapper{ width:100%; } .contact_field_wrapper { margin-bottom:0; } .error_top_wrapper img{ width:100%; } .login_banner_wrapper{ min-height:500px; width:100%; background-position: center -120px; } .login_form_wrapper{ padding:100px 70px 80px 70px; width:100%; } .icon_form{ margin-bottom:20px; } .jp_regis_center_tag_wrapper{ left:0; right:0; margin:0px auto; top:auto; bottom:-35px; } .index_2_right_menu{ width:67%; padding:0; } .posting_job li:last-child{ margin-right:0; float:right; } .index_2_top_header .house_toggle .menubar { fill: #57ac60; } .posting_job li{ margin-right:15px; } .jb_profile_box .list li{ margin:0; } .cd_dropdown_index2 .cd-dropdown-content li a:hover{ background: #57ac60; } .jb_map_banner_form{ width:40%; min-height:800px; } .map_banner_width{ width:60%; height:800px; } .jb_map_banner_form{ padding:60px 30px; } .jb_map_indx_wrapper #map{ height:828px; } .index_2_category_job .jb_top_jobs_category:hover, .blog_display_Wrapper { margin-top: 30px; } .best_job_back{ background:#fff; padding:90px 0; } .counter_2_bg img, .testimonial_wrapper_shape:after, .news_mess_design2 img, .news_mess_design img{ display:none; } .blog_new_cntnt{ padding-top:50px; } .counter_2_wrapper{ padding:90px 0; } .browse_jobs_category{ padding-bottom:95px; } .testimonial_wrapper{ padding:90px 0; padding-bottom:70px; background: #57ac60; background: -moz-linear-gradient(0deg, rgb(70, 133, 163) 9%, rgb(87, 172, 97) 100%); background: -webkit-linear-gradient(0deg, rgb(70, 133, 163) 9%, rgb(87, 172, 97) 100%); background: linear-gradient(0deg, rgb(70, 133, 163) 9%, rgb(87, 172, 97) 100%); } .testi_main_box_wrapper { padding-top:50px; } .counter_2_wrapper .counter_mockup_design { padding-top:30px; } .padding_tt{margin-top:0;} .pricing_plan_section{ padding-top:100px; padding-bottom:50px; } .index2_blog_wrapper{ background:#fff; padding-top:100px; } .partner_job_wrapper{ padding-top:100px; } .index_3_logo{padding-left:15px;} .index_3_top_header .house_toggle .menubar { fill: #b446ff; } .cd_dropdown_index3 .cd-dropdown-content li a:hover { background: rgb(180, 70, 255); background: -moz-linear-gradient(90deg, rgb(180, 70, 255) 25%, rgb(109, 104, 254) 100%); background: -webkit-linear-gradient(90deg, rgb(180, 70, 255) 25%, rgb(109, 104, 254) 100%); background: linear-gradient(90deg, rgb(180, 70, 255) 25%, rgb(109, 104, 254) 100%); } .slider_small_shape, .slider_small3_shape, .line_shape, .counter_jbbb2 img, .slider_small_shape44, .clinnt_slider_img{ display:none; } .slider_shape_smt1{ left:300px; } .slider-area:hover .carousel-nevigation > .prev{ left:20px; } .mains_slider_shaper{ left:-26%; } .slider-area .carousel-inner .carousel-item .carousel-captions .content h2{ font-size:40px; } .slider-area:hover .carousel-nevigation > .next{ right:20px; } .index3_download{ padding:100px 0; } .counter_jbbb { top: -86px; left: -44px; } .slider_side_img{ position:relative; padding-top:200px; bottom:0; right:0; } .slider_side_img img{width:100%;} .client_wrapper .owl-theme .owl-nav{ bottom:90px; } .client_wrapper_cntnt{ padding:50px 50px 100px 50px; } .slider-area .carousel-inner .carousel-item .carousel-captions .content{ padding:100px 0; } .slider_side_img, .counter_jbbb, .jp_regis_center_tag_wrapper{ display:none; } .counter_index3_right{ text-align:left; } .slider-area .carousel-inner .carousel-item .caption-1, .slider-area .carousel-inner .carousel-item .caption-2, .slider-area .carousel-inner .carousel-item .caption-3{ min-height:700px; } .mains_slider_shaper { left: -41%; } .counter_3_wrapper{ padding:60px 0 80px 0; } .pricing_table_3{ padding:90px 0 50px 0; } .popular_wrapper{ padding-top:100px; } .jp_regis_left_side_box_wrapper, .jp_regis_right_side_box_wrapper{ width:100%; } .jp_register_section_main_wrapper{ border-radius:70px; } .jp_regis_left_side_box_wrapper{ border-right:0; border-bottom:1px solid #e2e2e2; } .jp_regis_right_side_box_wrapper{ padding-top:80px; } .jb_newslwtteter_button .jobs_btn_3{ float:left; margin-top:30px; margin-bottom:20px; } .top_hiring_cpmpany_heading{ padding-bottom:120px; } } @media (max-width: 767px){ .jb_top_jobs_category:hover{ margin-top:30px; } .jb_browse_category{ padding:50px 20px; } .counter_mockup_design img{ left:0; width:100%; } .company_main_wrapper, .our_blog_content { margin-bottom:50px; } .top_company_wrapper{ padding-bottom:50px; } .saying_img{ width:100px; } .top_hiring_cpmpany_heading{ padding-right:0; } .grow_next_img img{width:100%;} .filter-area .showpro{ float:left; width:100%; } .jp_job_post_right_cont li{ margin-left:0; } .jp_job_post_right_btn_wrapper ul{ float:left; margin-top:20px; } .jp_job_post_right_btn_wrapper li:nth-child(2){ float:left; margin-left:12px; } .jp_job_post_right_btn_wrapper li:last-child{ margin-left:12px; margin-top:6px; } .companies_wrapper .company_main_wrapper{ margin-bottom:0; } .companies_wrapper .filter-area .nice-select{ width:100%; } .web_single_btn ul{ padding-top:0; } .jp_first_blog_post_cont_wrapper img{ width:100%; } .blog_single_text{ width:100%; padding-left:0; } .contact_rotate:before, .contact_rotate:after{ display:none; } .contact_main p{ padding:40px 30px; } .index_2_right_menu { width: 64%; } .jb_map_banner_form, .map_banner_width{ width:100%; } .blog_new_cntnt{ padding-top:30px; } .index2_agency_wrapper .jb_heading_wraper h3{ font-size:26px; } .index2_agency_wrapper .company_main_wrapper:last-child{ margin-bottom:30px; } .index2_blog_wrapper #accordion .card_pagee a.collapsed, .index2_blog_wrapper #accordion .card_pagee a, .index2_blog_wrapper #accordion .card-body{ padding-left:0; } .index2_news_box .jb_newslwtteter_left h2{ font-size:40px; padding-bottom:15px; } .index2_news_box{ padding:40px 20px; } .index2_footer_wrapper{ padding-top:200px; } .mains_slider_shaper, .client_shap1, .client_shap2, .client_shap3{ display:none; } .main_slider_wrapper{ background: #f2efff; } .slider-area .carousel-inner .carousel-item .caption-1, .slider-area .carousel-inner .carousel-item .caption-2, .slider-area .carousel-inner .carousel-item .caption-3 { min-height: 600px; } .slider-area .carousel-inner .carousel-item .carousel-captions .content{ padding:130px 0; } .index_3_logo{width:30%;} .index_3_right_menu { width: 60%; } .select_box3{ width:100%; border-bottom:1px solid #e2e2e2; border-right:0; } .index3_form_box{ border-radius:30px; } .select_box3 .nice-select{ border-right:0; } .index3_form_search{ width:20%; border-radius:0; } .contct_form_new3{width:80%;} .contect_form3 input{ background:transparent; } .index3_listing_jobs, .client_wrapper_cntnt, .jp_register_section_main_wrapper{ border-radius:30px; } .client_wrapper .owl-theme .owl-nav{ left:-16px; } .footer_index3{padding-top:0;} #return-to-top{ width:50px; height:50px; line-height:52px; } #chat-circle{ width:50px; height:50px; line-height:40px; } #return-to-top i{ font-size:22px; } #return-to-top{ bottom:90px; } #chat-circle{ z-index:1000; } } @media (max-width: 766px) and (min-width: 580px){ .jb_banner_left { padding: 112px 20px 140px 20px; } } @media (max-width: 580px){ .header_btn li:first-child a{ display:none; } .cp_logo_wrapper{ padding-left:0; } .cd-dropdown-wrapper{ right:-10px; } .menu_btn_box{ padding-right:0; margin-right:-20px; } .jb_banner_left{ padding:100px 20px; } .jb_banner_list{ margin-top:0; padding-top:70px; } .select_box{margin-left:12px;} .select_box_2{margin-left:0;} .jb_banner_left h1 { font-size: 38px; line-height: 50px; } .kj{ margin-bottom:0; } .counter_mockup_design{ left:0; } .job_rivew_testimonial{ padding:0 20px; } .footer_border_displ{margin-bottom:30px;} .icon_list_news { margin-bottom:50px; } .sub_title_section{ float:left; top:0; } .about_slider_wrapper .owl-theme .owl-dots{ bottom:0; } .team_slider_img_box img{ width:100% !important; } .jp_blog_bottom_left_cont, .jp_blog_bottom_right_cont{ width:100%; } .jp_blog_bottom_right_cont p a, .jp_blog_bottom_right_cont ul{ float:left; } .jp_blog_bottom_right_cont p a{padding-top:10px;} .jp_blog_bottom_right_cont p a span{ top: 9px; right: -8px; } .gc_blog_letest_week_wrapper{ padding:30px; } .contact_field_wrapper{ padding:100px 20px 100px 20px; } .login_banner_wrapper { background-position: center 0; } .login_form_wrapper{ padding:60px 30px; } .jb_profile_box{ display:none; } .index_2_right_menu { width: 62%; } .testi_main_box_cntnt p{ padding-bottom:30px; } .blog_new_img{width:100%;} .blog_new_cntnt{ width:100%; } .partner_job_img { text-align:center; } .partner_job_img img{ display:inline-block !important; width:auto !important; } .index2_news_box{ position:relative; top:0; } .footer_first_contact li i:before{ font-size:20px; } .index2_footer_wrapper{ padding:100px 0; } .index2_newsletter_wrapper{ padding:100px 0; } .index2_listing_jobs .jp_job_post_right_cont{ width:calc(89% - 80px); } .testi_main_box_cntnt{ padding:30px; } .index2_job_right h3 a{ font-size:20px; } .index_3_logo{ width:35%; padding-left:15px; } .index_3_right_menu{width:53%;} .select_box3{ margin-left:0; } .client_wrapper_cntnt{ padding:40px 40px 80px 40px; } .client_wrapper .owl-theme .owl-nav{ bottom:70px; left:-30px; } .footer_index3{padding-top:0;} .index_3_logo img{ width:140px; } .index_2_top_header{ padding-right:15px; } #return-to-top{ z-index:10000; } } @media (max-width: 480px){ .cd-dropdown{ width:300px; } .team_slider_img_box img{ transform:skew(0deg); } .jp_job_post_right_cont{ padding-left:0; } .jp_blog_single_client_img, .jp_recent_resume_img_wrapper, .jp_recent_resume_cont_wrapper, .jp_recent_resume_btn_wrapper{ width:100%; } .jp_blog_single_client_cont{ width:100%; padding-top:30px; } .posting_job{ display:none; } .index2_listing_jobs .jp_job_post_right_cont{ width:100%; padding-left:0; padding-top:30px; } .counter_right_wrapper h1{ font-size:34px; } .index_3_logo{width:50%;} .slider-area .carousel-inner .carousel-item .carousel-captions .content h2 { font-size: 34px; line-height:50px; } .index3_form_box, .index3_listing_jobs, .client_wrapper_cntnt, .jp_register_section_main_wrapper, .jp_recent_resume_box_wrapper{ border-radius:10px; } .index3_form_search{ width:100%; border-bottom-left-radius:10px; border-bottom-right-radius:10px; } .index3_listing_jobs .jp_job_post_side_img:after{ display:none; } .index3_listing_jobs{ padding:25px; } .jp_recent_resume_cont_wrapper{ padding-left:0; padding-top:15px; } .jp_recent_resume_btn_wrapper ul{ float:left; } } @media (max-width: 440px){ .contect_form3{ width:100%; } .select_box{ width:100%; margin-left:0; } .app_btn a.ss_playstore{ margin-right:0; margin-bottom:20px; } .animation-circle-inverse{ display:none; } .jb_saying_content_wrapper{ padding:30px 20px; } .download_app_store h2{ font-size:32px; } #accordion .card_pagee h5{ line-height:22px; } .filter-area .list-grid{ width:100%; margin-top:14px; } .filter-area .nice-select{ width:100%; } .filter-area .list-grid ul li{ margin-left:0; margin-right:13px; } .jp_job_post_right_cont{ width:100%; padding-top:20px; } .control_wrapper{ padding-bottom:60px; } } @media (max-width: 380px){ .jb_banner_left h1 { font-size: 32px; line-height: 40px; } .counter_right_wrapper h1{ font-size:36px; } .header_btn li:last-child{ display:none; } .counter_right_wrapper h1{text-align:center;} .counter_width{ width:100%; text-align:center; margin-bottom:30px; } .jp_regis_left_side_box_wrapper, .jp_regis_right_side_box_wrapper{ padding-left:15px; padding-right:15px; } .pricing_box_wrapper h2{font-size:70px;} .monthly { float: none; top: -20px; left: 80px; } .blog_newsleeter{padding:30px;} .jb_heading_wraper h3{ font-size:30px; } .filter-area, .job_listing_left_fullwidth{ padding:20px; } .jp_job_post_right_btn_wrapper li:last-child, .job_listing_grid_wrapper .jp_job_post_right_btn_wrapper li:nth-child(2){ margin-left:6px; } .jp_job_post_right_btn_wrapper li:nth-child(2), .job_listing_grid_wrapper .jp_job_post_right_btn_wrapper li:last-child{ margin-left:7px; } .job_overview_header, .jb_keyword_key_wrapper, .jp_job_res, .jp_first_blog_post_cont_wrapper, .jp_blog_single_client_main_section{ padding:25px; } .map_wrapper{padding:0;} .jp_job_des li, .comments_Box .img_wrapper, .comments_Box .text_wrapper{ margin-left:0; width:100%; } .comments_Box .text_wrapper{ margin-top:20px; padding-left:0; } .jp_listing_left_bottom_sidebar_social_wrapper li{ margin-left:5px; } .jp_blog_bottom_right_cont p a{display:none;} .jp_blog_bottom_right_cont ul{ margin-top:10px; margin-right:0; } .jp_spotlight_slider_cont_Wrapper li:last-child{ margin-left:0; } .login_form_wrapper{ padding:60px 20px; } .jb_map_banner_form{ padding:30px 15px; } .index_2_category_job{ padding:0 10px; } .index2_tab_wrapper .nav-tabs .nav-link { padding: 15px 25px; } .index2_blog_wrapper #accordion h1{ margin-bottom:30px; font-size:26px; } .index2_blog_wrapper #accordion .card_pagee a.collapsed, .index2_blog_wrapper #accordion .card_pagee a{ padding-right:40px; } .index2_blog_wrapper #accordion .card{ margin-bottom:0; } .index2_news_box .jb_newslwtteter_left h2{ font-size:32px; } .index_3_logo{width:55%;} .slider-area .carousel-inner .carousel-item .carousel-captions .content h2 { font-size: 28px; line-height: 40px; } .slider_icon_list li { float: left; margin-right: 28px; } #return-to-top, #chat-circle{ right:30px; } }
public/css/responsive.css
@media (max-width: 1780px) and (min-width: 1600px){ .jb_banner_left{ padding:112px 74px 153px 337px; } .blog_after_img{ right:-300px; } } @media (max-width: 1750px){ .jn_menu_partion_div:after{ right:40%; } .jb_banner_left{ padding:112px 60px 153px 40px; } .download_mockup_design{ left:-165px; top:-132px; } .download_mockup_design img{ width:750px; } .contact_field_wrapper{ padding-right:300px; } } @media (max-width: 1650px){ .contact_field_wrapper{ padding-right:250px; } .index_2_category_job{ padding:0 30px; } .jb_map_banner_form{ padding:80px } .blog_after_img{ right:-300px; } } @media (max-width: 1550px){ .jn_menu_partion_div:after { right: 54%; } .menu_btn_box:after{ left:-26px; } .contact_field_wrapper{ padding-right:250px; } .blog_after_img{ right:-350px; } } @media (max-width: 1500px){ .jb_banner_right { width: 700px; background-position: 15px 0; } .jb_banner_left{ width:calc(100% - 700px); } .download_mockup_design{ left:-145px; } .download_mockup_design img { width: 750px; left: 55px; position: relative; top: -18px; } .job_rivew_wrapper{ padding-bottom:170px; } .job_rivew_img img{ padding-left:0; } } @media (max-width: 1430px){ .jn_menu_partion_div:after { right: 63%; } .header_btn li{ margin-right:5px; } .cp_logo_wrapper{ width:15%; } .jb_navigation_wrapper{ width:60%; padding-left:50px; } .menu_btn_box{ width:25%; } .job_rivew_img img{ padding-left:0; width:100%; } .contact_field_wrapper{ padding-right:150px; } .index_2_logo{width:20%;} .index_2_right_menu{width:80%;} .jb_map_banner_form{ padding:60px; } .index_2_category_job .jb_top_jobs_category{ padding:22px 4px 17px 4px; } .counter_2_bg img{ left:-100px; } .blog_after_img{ right:-500px } .slider_small2_shape{ display:none; } .slider_small_shape{ left:-220px; } .slider_small3_shape{ right:-270px; } .menu_btn_box:after{ display:none; } } @media (max-width: 1330px){ .jb_banner_left { padding: 112px 0 153px 40px; } .jb_banner_left { width: calc(100% - 600px); } .jb_banner_right{ width:600px; } .menu_btn_box:after { left: -14px; } .download_mockup_design img { width: 700px; left: 121px; } .jb_banner_right:after{ width:87%; } .contact_field_wrapper{ padding-right:150px; } .posting_job li{ margin-right:25px; } .jb_map_banner_form{padding:50px;} .blog_after_img{display:none;} .mainmenu ul li a{ padding:40px 16px 30px 16px; } } @media (max-width: 1220px){ .menu_btn_box:after { display:none; } .header_btn li:last-child{ margin-right:0; } .jb_saying_content_wrapper p{ padding-right:0; } .contact_field_wrapper{ padding-right:100px; } .posting_job li{ margin-right:20px; } .green_main_menu ul li a{ padding:40px 20px 30px 20px; } .blue_main_menu ul li a { padding: 40px 15px 30px 16px; } } @media (max-width: 1199px) and (min-width: 991px){ .header_btn li:first-child a{ display:none; } .jn_menu_partion_div:after { right: 60%; } .cp_logo_wrapper{width:20%; padding-left:0;} .menu_btn_box{ width:15%; } .header_btn ul{float:right;} .jb_navigation_wrapper{ width:65%; padding-left:0; } .mainmenu ul li a{ padding:40px 15px 30px 15px; } .jb_banner_left{ width:100%; padding: 100px 120px 153px 175px; } .jb_banner_left h1{ font-size:44px; line-height:50px; } .grow_next_img img, .counter_mockup_design img{ width:100%; } .counter_mockup_design{left:0;} .job_main_overflow { overflow:auto; } .company_slider_tab{ padding-top:0; } .job_rivew_img{display:none;} .job_rivew_testimonial{ width:100%; padding:0 60px; } .download_mockup_design{ left:-125px; top:-51px; } .download_mockup_design img, .our_blog_content img{ width:100%; } .blog_newsleeter{ padding:30px; } .open_jobs_wrapper_1 img{width:50px;} .open_job_text{ width:calc(100% - 50px); } .pricing_box_wrapper h2{ font-size:60px; } .job_rivew_wrapper{ padding-top:90px; } .job_field label span{ float:none; } .jp_add_resume_cont{ padding:40px 12px; } .jp_job_post_right_cont li{margin-left:0;} .jp_add_resume_wrapper{padding:0;} .jp_job_post_right_cont h4 a{ padding-bottom:8px; } .map_wrapper_top .map_wrapper, .contact_field_wrapper{ width:100%; } .error_top_wrapper img{ width:100%; } .login_form_wrapper{ padding:100px 70px 80px 70px; } .signup_wrapper{ padding:78px 70px; } .index_2_right_menu{ width:80%; padding-left:0; padding-right:0; } .posting_job li{ margin-right:22px; } .posting_job li:last-child{ margin-right:0; } .index2_agency_wrapper .jb_heading_wraper h3{ font-size:26px; } .jb_map_banner_form{ padding:50px 30px; } .counter_2_bg img { left: -49px; } .index2_job_right{ padding-left:10px; } .index2_job_left i{ width:75px; line-height:75px; height:75px; } .blog_new_cntnt{ padding:15px; } .index_3_logo{ padding-left:15px; } .index_3_right_menu{ padding-right:15px; } .slider_small_shape, .slider_small3_shape, .line_shape, .counter_jbbb2 img, .slider_small_shape44, .clinnt_slider_img{ display:none; } .slider_shape_smt1{ left:300px; } .slider-area:hover .carousel-nevigation > .prev{ left:20px; } .mains_slider_shaper{ left:-26%; } .slider-area .carousel-inner .carousel-item .carousel-captions .content h2{ font-size:40px; } .slider-area:hover .carousel-nevigation > .next{ right:20px; } .index3_download{ padding:100px 0; } .counter_jbbb { top: -86px; left: -44px; } .counter_jbbb img{width:100%;} .slider_side_img{ position:relative; padding-top:200px; bottom:0; right:0; } .slider_side_img img{width:100%;} .client_wrapper .owl-theme .owl-nav{ bottom:90px; } .client_wrapper_cntnt{ padding-right:70px; } .top_company_slider_wrapper .owl-theme .owl-nav{ top:280px; } .green_main_menu ul li a{ padding:40px 10px 30px 10px; } } @media (max-width: 991px){ .mobail_menu{ float:right; width:auto; } .cd-dropdown-wrapper{ margin: 39px 0 0 0%; } .header_btn ul{ float:right; } .house_toggle .menubar{ fill:#ff3366; } .cp_logo_wrapper{ width:25%; padding-left:10px; } .menu_btn_box{ width:60%; padding-right:10px; } .job_main_overflow { overflow-x: scroll; } .header_btn li{ margin-right:18px; } .jb_banner_left{ width:100%; padding:112px 50px 140px 50px; } .jb_banner_left h1{ font-size:44px; line-height:50px; } .jb_top_jobs_category{ margin-top:30px; } .jb_top_jobs_category:hover{ margin-top:20px; } .pd5{padding:0;} .grow_next_img { margin-top:40px; } .counter_mockup_design img{ left:63px; } .top_company_slider_wrapper .owl-theme .owl-nav{ left:0; top:-95px; } .company_slider_tab{ padding-bottom:100px; } .monthly{ float:none; top: -11px; left: 100px; } .pricing_box_wrapper, .blog_newsleeter{ margin-bottom:50px; } .job_rivew_img, .download_mockup_design{ display:none; } .pricing_plan_wrapper{ padding-bottom:50px } .job_rivew_testimonial{ width:100%; padding:0 70px; } .download_wrapper{padding:100px 0;} .download_app_store{ text-align:left; } .app_btn a{ float:left; } .app_btn a.ss_playstore{ margin-left:0; margin-right:15px; } .our_blog_content img, .jb_newslwtteter_left{ width:100%; } .jb_newslwtteter_button{width:100%;} .news_btn a{ float:left; width:220px; margin-top:30px; } .icon_list_news{ margin-top:0; } .copyright_left{ padding-top:0; } .footer_border_displ{ margin-bottom:50px; } .footer_first_contact li{ padding-bottom:15px; } .agency_main_wrapper{ padding-bottom:50px; } .job_newsletter_wrapper{ border:0; padding:0; } .job_listing_left_side { padding-bottom:80px; } .jp_add_resume_cont .width_50{ float:none; display:inline-block; } .jb_job_overview_img{ text-align:left; } .web_text h4{font-size:22px;} .pd22 { padding-bottom:50px; } .jp_spotlight_slider_cont_Wrapper li:last-child{ margin-top:0; margin-left:30px; margin-bottom:0; } .comments_form{ margin-bottom:80px; } .contact_rotate:before{ border-left:30px solid #fff; } .contact_rotate:after{ border-bottom:10px solid transparent; } .contact_main p{ padding:20px; } .map_wrapper_top .map_wrapper, .contact_field_wrapper{ width:100%; } .contact_field_wrapper { margin-bottom:0; } .error_top_wrapper img{ width:100%; } .login_banner_wrapper{ min-height:500px; width:100%; background-position: center -120px; } .login_form_wrapper{ padding:100px 70px 80px 70px; width:100%; } .icon_form{ margin-bottom:20px; } .jp_regis_center_tag_wrapper{ left:0; right:0; margin:0px auto; top:auto; bottom:-35px; } .index_2_right_menu{ width:67%; padding:0; } .posting_job li:last-child{ margin-right:0; float:right; } .index_2_top_header .house_toggle .menubar { fill: #57ac60; } .posting_job li{ margin-right:15px; } .jb_profile_box .list li{ margin:0; } .cd_dropdown_index2 .cd-dropdown-content li a:hover{ background: #57ac60; } .jb_map_banner_form{ width:40%; min-height:800px; } .map_banner_width{ width:60%; height:800px; } .jb_map_banner_form{ padding:60px 30px; } .jb_map_indx_wrapper #map{ height:828px; } .index_2_category_job .jb_top_jobs_category:hover, .blog_display_Wrapper { margin-top: 30px; } .best_job_back{ background:#fff; padding:90px 0; } .counter_2_bg img, .testimonial_wrapper_shape:after, .news_mess_design2 img, .news_mess_design img{ display:none; } .blog_new_cntnt{ padding-top:50px; } .counter_2_wrapper{ padding:90px 0; } .browse_jobs_category{ padding-bottom:95px; } .testimonial_wrapper{ padding:90px 0; padding-bottom:70px; background: #57ac60; background: -moz-linear-gradient(0deg, rgb(70, 133, 163) 9%, rgb(87, 172, 97) 100%); background: -webkit-linear-gradient(0deg, rgb(70, 133, 163) 9%, rgb(87, 172, 97) 100%); background: linear-gradient(0deg, rgb(70, 133, 163) 9%, rgb(87, 172, 97) 100%); } .testi_main_box_wrapper { padding-top:50px; } .counter_2_wrapper .counter_mockup_design { padding-top:30px; } .padding_tt{margin-top:0;} .pricing_plan_section{ padding-top:100px; padding-bottom:50px; } .index2_blog_wrapper{ background:#fff; padding-top:100px; } .partner_job_wrapper{ padding-top:100px; } .index_3_logo{padding-left:15px;} .index_3_top_header .house_toggle .menubar { fill: #b446ff; } .cd_dropdown_index3 .cd-dropdown-content li a:hover { background: rgb(180, 70, 255); background: -moz-linear-gradient(90deg, rgb(180, 70, 255) 25%, rgb(109, 104, 254) 100%); background: -webkit-linear-gradient(90deg, rgb(180, 70, 255) 25%, rgb(109, 104, 254) 100%); background: linear-gradient(90deg, rgb(180, 70, 255) 25%, rgb(109, 104, 254) 100%); } .slider_small_shape, .slider_small3_shape, .line_shape, .counter_jbbb2 img, .slider_small_shape44, .clinnt_slider_img{ display:none; } .slider_shape_smt1{ left:300px; } .slider-area:hover .carousel-nevigation > .prev{ left:20px; } .mains_slider_shaper{ left:-26%; } .slider-area .carousel-inner .carousel-item .carousel-captions .content h2{ font-size:40px; } .slider-area:hover .carousel-nevigation > .next{ right:20px; } .index3_download{ padding:100px 0; } .counter_jbbb { top: -86px; left: -44px; } .slider_side_img{ position:relative; padding-top:200px; bottom:0; right:0; } .slider_side_img img{width:100%;} .client_wrapper .owl-theme .owl-nav{ bottom:90px; } .client_wrapper_cntnt{ padding:50px 50px 100px 50px; } .slider-area .carousel-inner .carousel-item .carousel-captions .content{ padding:100px 0; } .slider_side_img, .counter_jbbb, .jp_regis_center_tag_wrapper{ display:none; } .counter_index3_right{ text-align:left; } .slider-area .carousel-inner .carousel-item .caption-1, .slider-area .carousel-inner .carousel-item .caption-2, .slider-area .carousel-inner .carousel-item .caption-3{ min-height:700px; } .mains_slider_shaper { left: -41%; } .counter_3_wrapper{ padding:60px 0 80px 0; } .pricing_table_3{ padding:90px 0 50px 0; } .popular_wrapper{ padding-top:100px; } .jp_regis_left_side_box_wrapper, .jp_regis_right_side_box_wrapper{ width:100%; } .jp_register_section_main_wrapper{ border-radius:70px; } .jp_regis_left_side_box_wrapper{ border-right:0; border-bottom:1px solid #e2e2e2; } .jp_regis_right_side_box_wrapper{ padding-top:80px; } .jb_newslwtteter_button .jobs_btn_3{ float:left; margin-top:30px; margin-bottom:20px; } .top_hiring_cpmpany_heading{ padding-bottom:120px; } } @media (max-width: 767px){ .jb_top_jobs_category:hover{ margin-top:30px; } .jb_browse_category{ padding:50px 20px; } .counter_mockup_design img{ left:0; width:100%; } .company_main_wrapper, .our_blog_content { margin-bottom:50px; } .top_company_wrapper{ padding-bottom:50px; } .saying_img{ width:100px; } .top_hiring_cpmpany_heading{ padding-right:0; } .grow_next_img img{width:100%;} .filter-area .showpro{ float:left; width:100%; } .jp_job_post_right_cont li{ margin-left:0; } .jp_job_post_right_btn_wrapper ul{ float:left; margin-top:20px; } .jp_job_post_right_btn_wrapper li:nth-child(2){ float:left; margin-left:12px; } .jp_job_post_right_btn_wrapper li:last-child{ margin-left:12px; margin-top:6px; } .companies_wrapper .company_main_wrapper{ margin-bottom:0; } .companies_wrapper .filter-area .nice-select{ width:100%; } .web_single_btn ul{ padding-top:0; } .jp_first_blog_post_cont_wrapper img{ width:100%; } .blog_single_text{ width:100%; padding-left:0; } .contact_rotate:before, .contact_rotate:after{ display:none; } .contact_main p{ padding:40px 30px; } .index_2_right_menu { width: 64%; } .jb_map_banner_form, .map_banner_width{ width:100%; } .blog_new_cntnt{ padding-top:30px; } .index2_agency_wrapper .jb_heading_wraper h3{ font-size:26px; } .index2_agency_wrapper .company_main_wrapper:last-child{ margin-bottom:30px; } .index2_blog_wrapper #accordion .card_pagee a.collapsed, .index2_blog_wrapper #accordion .card_pagee a, .index2_blog_wrapper #accordion .card-body{ padding-left:0; } .index2_news_box .jb_newslwtteter_left h2{ font-size:40px; padding-bottom:15px; } .index2_news_box{ padding:40px 20px; } .index2_footer_wrapper{ padding-top:200px; } .mains_slider_shaper, .client_shap1, .client_shap2, .client_shap3{ display:none; } .main_slider_wrapper{ background: #f2efff; } .slider-area .carousel-inner .carousel-item .caption-1, .slider-area .carousel-inner .carousel-item .caption-2, .slider-area .carousel-inner .carousel-item .caption-3 { min-height: 600px; } .slider-area .carousel-inner .carousel-item .carousel-captions .content{ padding:130px 0; } .index_3_logo{width:30%;} .index_3_right_menu { width: 60%; } .select_box3{ width:100%; border-bottom:1px solid #e2e2e2; border-right:0; } .index3_form_box{ border-radius:30px; } .select_box3 .nice-select{ border-right:0; } .index3_form_search{ width:20%; border-radius:0; } .contct_form_new3{width:80%;} .contect_form3 input{ background:transparent; } .index3_listing_jobs, .client_wrapper_cntnt, .jp_register_section_main_wrapper{ border-radius:30px; } .client_wrapper .owl-theme .owl-nav{ left:-16px; } .footer_index3{padding-top:0;} #return-to-top{ width:50px; height:50px; line-height:52px; } #chat-circle{ width:50px; height:50px; line-height:40px; } #return-to-top i{ font-size:22px; } #return-to-top{ bottom:90px; } #chat-circle{ z-index:1000; } } @media (max-width: 766px) and (min-width: 580px){ .jb_banner_left { padding: 112px 20px 140px 20px; } } @media (max-width: 580px){ .header_btn li:first-child a{ display:none; } .cp_logo_wrapper{ padding-left:0; } .cd-dropdown-wrapper{ right:-10px; } .menu_btn_box{ padding-right:0; margin-right:-20px; } .jb_banner_left{ padding:100px 20px; } .jb_banner_list{ margin-top:0; padding-top:70px; } .select_box{margin-left:12px;} .select_box_2{margin-left:0;} .jb_banner_left h1 { font-size: 38px; line-height: 50px; } .kj{ margin-bottom:0; } .counter_mockup_design{ left:0; } .job_rivew_testimonial{ padding:0 20px; } .footer_border_displ{margin-bottom:30px;} .icon_list_news { margin-bottom:50px; } .sub_title_section{ float:left; top:0; } .about_slider_wrapper .owl-theme .owl-dots{ bottom:0; } .team_slider_img_box img{ width:100% !important; } .jp_blog_bottom_left_cont, .jp_blog_bottom_right_cont{ width:100%; } .jp_blog_bottom_right_cont p a, .jp_blog_bottom_right_cont ul{ float:left; } .jp_blog_bottom_right_cont p a{padding-top:10px;} .jp_blog_bottom_right_cont p a span{ top: 9px; right: -8px; } .gc_blog_letest_week_wrapper{ padding:30px; } .contact_field_wrapper{ padding:100px 20px 100px 20px; } .login_banner_wrapper { background-position: center 0; } .login_form_wrapper{ padding:60px 30px; } .jb_profile_box{ display:none; } .index_2_right_menu { width: 62%; } .testi_main_box_cntnt p{ padding-bottom:30px; } .blog_new_img{width:100%;} .blog_new_cntnt{ width:100%; } .partner_job_img { text-align:center; } .partner_job_img img{ display:inline-block !important; width:auto !important; } .index2_news_box{ position:relative; top:0; } .footer_first_contact li i:before{ font-size:20px; } .index2_footer_wrapper{ padding:100px 0; } .index2_newsletter_wrapper{ padding:100px 0; } .index2_listing_jobs .jp_job_post_right_cont{ width:calc(89% - 80px); } .testi_main_box_cntnt{ padding:30px; } .index2_job_right h3 a{ font-size:20px; } .index_3_logo{ width:35%; padding-left:15px; } .index_3_right_menu{width:53%;} .select_box3{ margin-left:0; } .client_wrapper_cntnt{ padding:40px 40px 80px 40px; } .client_wrapper .owl-theme .owl-nav{ bottom:70px; left:-30px; } .footer_index3{padding-top:0;} .index_3_logo img{ width:140px; } .index_2_top_header{ padding-right:15px; } #return-to-top{ z-index:10000; } } @media (max-width: 480px){ .cd-dropdown{ width:300px; } .team_slider_img_box img{ transform:skew(0deg); } .jp_job_post_right_cont{ padding-left:0; } .jp_blog_single_client_img, .jp_recent_resume_img_wrapper, .jp_recent_resume_cont_wrapper, .jp_recent_resume_btn_wrapper{ width:100%; } .jp_blog_single_client_cont{ width:100%; padding-top:30px; } .posting_job{ display:none; } .index2_listing_jobs .jp_job_post_right_cont{ width:100%; padding-left:0; padding-top:30px; } .counter_right_wrapper h1{ font-size:34px; } .index_3_logo{width:50%;} .slider-area .carousel-inner .carousel-item .carousel-captions .content h2 { font-size: 34px; line-height:50px; } .index3_form_box, .index3_listing_jobs, .client_wrapper_cntnt, .jp_register_section_main_wrapper, .jp_recent_resume_box_wrapper{ border-radius:10px; } .index3_form_search{ width:100%; border-bottom-left-radius:10px; border-bottom-right-radius:10px; } .index3_listing_jobs .jp_job_post_side_img:after{ display:none; } .index3_listing_jobs{ padding:25px; } .jp_recent_resume_cont_wrapper{ padding-left:0; padding-top:15px; } .jp_recent_resume_btn_wrapper ul{ float:left; } } @media (max-width: 440px){ .contect_form3{ width:100%; } .select_box{ width:100%; margin-left:0; } .app_btn a.ss_playstore{ margin-right:0; margin-bottom:20px; } .animation-circle-inverse{ display:none; } .jb_saying_content_wrapper{ padding:30px 20px; } .download_app_store h2{ font-size:32px; } #accordion .card_pagee h5{ line-height:22px; } .filter-area .list-grid{ width:100%; margin-top:14px; } .filter-area .nice-select{ width:100%; } .filter-area .list-grid ul li{ margin-left:0; margin-right:13px; } .jp_job_post_right_cont{ width:100%; padding-top:20px; } .control_wrapper{ padding-bottom:60px; } } @media (max-width: 380px){ .jb_banner_left h1 { font-size: 32px; line-height: 40px; } .counter_right_wrapper h1{ font-size:36px; } .header_btn li:last-child{ display:none; } .counter_right_wrapper h1{text-align:center;} .counter_width{ width:100%; text-align:center; margin-bottom:30px; } .jp_regis_left_side_box_wrapper, .jp_regis_right_side_box_wrapper{ padding-left:15px; padding-right:15px; } .pricing_box_wrapper h2{font-size:70px;} .monthly { float: none; top: -20px; left: 80px; } .blog_newsleeter{padding:30px;} .jb_heading_wraper h3{ font-size:30px; } .filter-area, .job_listing_left_fullwidth{ padding:20px; } .jp_job_post_right_btn_wrapper li:last-child, .job_listing_grid_wrapper .jp_job_post_right_btn_wrapper li:nth-child(2){ margin-left:6px; } .jp_job_post_right_btn_wrapper li:nth-child(2), .job_listing_grid_wrapper .jp_job_post_right_btn_wrapper li:last-child{ margin-left:7px; } .job_overview_header, .jb_keyword_key_wrapper, .jp_job_res, .jp_first_blog_post_cont_wrapper, .jp_blog_single_client_main_section{ padding:25px; } .map_wrapper{padding:0;} .jp_job_des li, .comments_Box .img_wrapper, .comments_Box .text_wrapper{ margin-left:0; width:100%; } .comments_Box .text_wrapper{ margin-top:20px; padding-left:0; } .jp_listing_left_bottom_sidebar_social_wrapper li{ margin-left:5px; } .jp_blog_bottom_right_cont p a{display:none;} .jp_blog_bottom_right_cont ul{ margin-top:10px; margin-right:0; } .jp_spotlight_slider_cont_Wrapper li:last-child{ margin-left:0; } .login_form_wrapper{ padding:60px 20px; } .jb_map_banner_form{ padding:30px 15px; } .index_2_category_job{ padding:0 10px; } .index2_tab_wrapper .nav-tabs .nav-link { padding: 15px 25px; } .index2_blog_wrapper #accordion h1{ margin-bottom:30px; font-size:26px; } .index2_blog_wrapper #accordion .card_pagee a.collapsed, .index2_blog_wrapper #accordion .card_pagee a{ padding-right:40px; } .index2_blog_wrapper #accordion .card{ margin-bottom:0; } .index2_news_box .jb_newslwtteter_left h2{ font-size:32px; } .index_3_logo{width:55%;} .slider-area .carousel-inner .carousel-item .carousel-captions .content h2 { font-size: 28px; line-height: 40px; } .slider_icon_list li { float: left; margin-right: 28px; } #return-to-top, #chat-circle{ right:30px; } }
0.123313
0.075176
.datagridforum td{ border:0; } /*style="width: 900px; text-align: right;" align="center"*/ div.topmenu { width: 900px; text-align: right; } .forumcontent { text-align: left; width: 900px; padding-top: 5px; } .forumcontent .fieldobject { text-align: left; } .table.forumtable { } .table.forumtable th, .table.forumtable td { border-right: none; border-left: none; /* border-bottom: none; border-top: none;*/ padding: 10px 5px !important; box-shadow: none; } table#CPHservice_DGforums.table td, table#CPHservice_DGforums.table th { border-right: none; border-left: none; /* border-bottom: none; border-top: none;*/ padding: 10px !important; box-shadow: none; color: #888; text-shadow: 0 1px 0 rgba(255,255,255,0.3) } #CPHservice_DGforums tbody tr.ForumNW_RowDisabilitate td { background: #ddd; } #CPHservice_DGforums tbody tr.ForumNW_RowDisabilitate td div.linewrapper { color: #888; } #CPHservice_DGforums tr td div.linewrapper { font-size: 14px; color: #222; } .forumtable td.topics, .forumtable td.posts { text-align: center !important; font-weight: bold; } .table.forumtable tbody { border: 0; } .datagridforum { width: 100%; border: 0; } .table.forumtable td.indicators, .table.forumtable th.indicators, .table.forumtable td.indicators, .table.forumtable th.indicators { width: 30px; text-align: center !important; } .table.forumtable th.forumname { text-align: center; } .table.forumtable td.forumname { text-align: left; } .table.forumtable td.topic { text-align: left; width: 500px; } .table.forumtable th.author, .table.forumtable td.author { width: 100px; } .table.forumtable.posts th.author, .table.forumtable.posts td.author { width: 150px; } .table.forumtable td.topics, .table.forumtable th.topics, .table.forumtable td.posts, .table.forumtable th.posts, .table.forumtable td.replies, .table.forumtable th.views { width: 60px; text-align: center !important; } #CPHservice_CTRLaggiungiPost_TBLrevisione div.fieldrow.iframe iframe { border: 1px solid #ccc; border-left: none; border-right: none; } .table.forumtable td.lastpost, .table.forumtable th.lastpost { width: 200px; text-align: center; } .table.forumtable td.lastpost { /* text-align:right;*/ text-align: left; } .table.forumtable tr, .table.threadtable tr { display: none; } /*table.forumtable.posts tbody tr.tablerow.ForumNW_RowNormal, table.forumtable.posts tbody tr.jumper td { background: #f8f8f8; }*/ .table.forumtable tr.tableheader, .table.forumtable tr.tablerow, .table.threadtable tr.tableheader, .table.threadtable tr.tablerow { display: table-row; *display: inline; height: 30px; } table.posts tr.tableheader { display: none !important; } .table.forumtable tr.tablerow td.forumname div.linewrapper.title span.name, .table.forumtable tr.tablerow td.topic div.linewrapper.title span.name, .table.forumtable tr.tablerow td.message div.linewrapper.title span.name { float: left; } .table.forumtable tr.tablerow td.forumname div.linewrapper.title span.mark, .table.forumtable tr.tablerow td.topic div.linewrapper.title span.mark, .table.forumtable tr.tablerow td.message div.linewrapper.title span.mark { float: right; font-size: 10px; } .table.forumtable tr.tablerow td.forumname div.linewrapper.description { color: #777; font-style: italic; } div.linewrapper.commands { margin-top: 0.3em; line-height:1.4em; } div.linewrapper.commands .separator.start, div.linewrapper.commands .separator.end { display: none; } div.linewrapper.commands .separator { color: #777; } div.linewrapper.commands .ForumNW_CommandPostLinkSmall { padding: 1px 3px 2px 3px; margin-right: 3px; border-radius: 3px; background-color: #e5e5e5; color: #888; text-shadow: 0 1px 0 #fff ; text-decoration: none; font-weight: normal; font-style: normal; box-shadow: inset 0 0 6px rgba(0,0,0,0.2); display:inline-block; *display:inline; *zoom:1; margin-bottom:4px; } div.linewrapper.commands .ForumNW_CommandPostLinkSmall:hover { background: #e0e0e0; text-decoration: none; box-shadow: inset 0 0 6px rgba(0,0,0,0.3); } .topic div.linewrapper.commands .ForumNW_CommandPostLinkSmall { padding: 0px 4px 1px 4px; background-color: #eee; } .topic div.linewrapper.commands .ForumNW_CommandPostLinkSmall:hover { background-color: #e9e9e9; } .posts .header span.ForumNW_SubjectPost { display: block; font-size: 14px; line-height: 21px; color: #444; } .legend.hor .legenditem .legendicon.img { margin-right: 5px; border: 0; } .pnlmenu span, .pnlmenu label, .forumcontent, table.forums td span, table.forumtable td span { color: #888; font-size: 11px; } .forumcontent span.renderedtext { color: inherit; } .forumcontent span.renderedtext blockquote { color: #888; } .topmenu { margin: 1em 0; } span#CPHservice_RBLselezioneForum.FiltroCampoSmall, div.topmenu span.FiltroCampoSmall { margin-right: 1em; } span#CPHservice_LBnoforum.Errore { display: block; margin: 2em 0; font-size: 16px; background-color: #fbd6dd; background-image: -webkit-gradient(linear, left top, left bottom, from(#fbdee3),to(#fbced7)); background-image: -webkit-linear-gradient(top, #fbdee3, #fbced7); background-image: -moz-linear-gradient(top, #fbdee3, #fbced7); background-image: -o-linear-gradient(top, #fbdee3, #fbced7); background-image: -ms-linear-gradient(top, #fbdee3, #fbced7); background-image: linear-gradient(top, #fbdee3, #fbced7); color: #B10612; border: 1px solid #fbbfcb; } #CPHservice_CTRLaggiungi_PNLruoloUtente div.fieldobject.adduser, #CPHservice_CTRLgestione_PNLmodificaRuolo div.fieldobject.editrole { margin: 0; padding: 10px; border: 1px solid #ccc; } div#CTRLrubrica_PNLgruppi { padding: 10px; width: 97.335% !important; border: 1px solid #ccc; } #PNLconferma div.content div.fieldobject div.fieldrow.title { } span#LBoggetto.RubricaGenerale_Testo { font-weight: bold; } #PNLconferma div.content div.fieldobject div.fieldrow { margin-bottom: 1em; } textarea#TXBtesto.RubricaGenerale_Testo { font-size: 12px; line-height: 18px; } #PNLconferma { padding: 10px; margin: 0; border: 1px solid #ccc; border-top: none; } div#CTRLrubrica_PNLgruppi span, div#CTRLrubrica_PNLgruppi td { line-height: 21px; } span#CPHservice_LBnoforum.Errore br { display: none; } span#CPHservice_RBLselezioneForum.FiltroCampoSmall label, .topmenu span.FiltroCampoSmall label { margin: 0 .5em; } div.toolbar.top .left a { margin: 0 .5em; } table .commands .separator { display: none; } .name .ForumNW_Autore { color: #333; line-height: 21px; display: inline-block; } .author .image { margin: 3px 0; } .author .image img { border-radius: 3px; background-color: #eee; /* box-shadow: 2px 2px 0 rgba(0,0,0,0.2)*/ } td .title { margin-bottom: 5px; min-height: 20px; } table.threads td .title { margin-bottom: 10px; } .fieldrow.title label { color: #333; font-size: 16px; } .fieldrow.title { margin: 1em 0; } div.fieldrow.message { margin: 2em 0; } .forumname span.Forum_TableText { font-weight: normal; font-style: normal; margin-bottom: 5px; display: inline-block; color: #666; } td.forumname .linewrapper.title span.mark input { vertical-align: middle; display: inline-block !important; *display:inline; zoom: 1; background-color: transparent; background-repeat: no-repeat !important; overflow: hidden; font-size: 0; border: none; } td .title .name a, .fieldrow .title .name a { font-size: 14px; color: #5689ba; text-decoration: none; border-bottom: 1px dotted #aaa; font-weight: bold; } td .title .name .details a { font-size: 11px; } td .header .mark span { color: #aaa; } div.toolbar.top a { font-size: 14px; border-bottom: 1px dotted #ccc; text-decoration: none; } div.toolbar.top a:hover { color: inherit; background: transparent; border-bottom: 1px solid #ccc; font-size: 14px; } .title .name a:hover { text-decoration: none; border-bottom: 1px solid #5689ba; } div.pnlmenu label { margin-right: 1em; margin-left: .5em; color: #444; } div.fieldobject.addthread label.fieldlabel { color: #333; font-size: 12px; } .subject input { font-size: 16px; padding: 3px; width: 740px; } div.fieldobject.stats { margin: 1em 0; } div.fieldobject.stats .fieldlabel { color: #333; font-size: 12px; font-weight: bold; margin-bottom: .5em; } div.fieldobject.stats div.statitem { margin: 0 12px .5em 0; display: inline-block; } a.ForumNW_LinkButton:hover { background: inherit; } .legend.hor .legenditem .legendtext { } div.fieldobject.stats div.inlinewrapper.maxheight { /* max-width: 87%; max-height: auto;*/ overflow: visible; overflow-x: visible; overflow-y: visible; } div.fieldobject div.fieldrow label.fieldlabel { display: inline-block; *display: inline; *zoom: 1; width: 120px; } .table.forumtable td { vertical-align: middle; } .table.forumtable.posts tr.tablerow td.author { text-align: center; vertical-align: top; } .table.forumtable.forums tr.tablerow td, .table.forumtable.threads tr.tablerow td { vertical-align: top; text-align: left; padding: 5px !important; } .table.forumtable tr.tablerow td.message .messagecontent .header { padding-bottom: 0.5em; } .table.forumtable tr.tablerow td.message .linewrapper.title span.name span.separator { color: #888; font-style: italic; } .table.forumtable tr.tablerow td.message .linewrapper.title span.name span.details * { color: #aaa; } .commands a.ForumNW_BackToTop, .table.forumtable tr.tablerow td.message .linewrapper.title span.name span.details a { color: #5689ba; text-decoration: none; border-bottom: 1px dotted #aaa; font-weight: normal; font-style: normal; } td.message, td.author { border-bottom: none !important; padding-bottom: 2em !important; text-align: left; vertical-align: top !important; } div.messagecontent.clearfix { /* min-height: 150px;*/ } tr.jumper td.author, tr.jumper td.message { border-top: none !important; /* padding-bottom: 0 !important;*/ } .commands a.ForumNW_BackToTop:hover, .table.forumtable tr.tablerow td.message .linewrapper.title span.name span.details a:hover { background: transparent; border-bottom: 1px solid #5689ba; text-decoration: none; } .table.forumtable tr.tablerow td.message .messagecontent .post { margin-top: 0.5em; overflow: auto; text-align: left; /* aggiunge la barra di scroll se il testo non può andare a capo*/ } .authorcontent { } .filtercontainer { margin-top: 1em; text-align: left; } div.fieldobject.adduser div.fieldrow label.fieldlabel, div.fieldobject.editrole div.fieldrow label.fieldlabel { width: 150px; } table.table.moderators th.login { width: 140px; } table.table.moderators th.user { width: 200px; } table.table.moderators th.role { width: 130px; } table.table.moderators th.email { width: 200px; } div.popup { text-align: left; background: #fff; padding: 20px; } div#TBRconferma.fieldobject { margin-bottom: 2em; padding: 0; } div.popup div.linewrapper.filterletters { margin: 1em 0; } div.popup div.filtercontainer { margin: 0; padding: 1em 0; } div#PNLselezione, div#CTRLrubrica_PNLfiltri { padding: 10px; border: 1px solid #ccc; border-top: none; } div.popup .footer { text-align: center; } .content.genericmail .filtercontainer { width: 100%; } tr.separator, tr.separator td, .table.forumtable tr.separator, .table.forumtable tr.separator td { height: 0 !important; padding: 0 !important; line-height: none; background: #ccc; border: none !important; display: none; }
1-WebApplication/AdevicoWeb/Graphics/Modules/Forum/forum.new.css
.datagridforum td{ border:0; } /*style="width: 900px; text-align: right;" align="center"*/ div.topmenu { width: 900px; text-align: right; } .forumcontent { text-align: left; width: 900px; padding-top: 5px; } .forumcontent .fieldobject { text-align: left; } .table.forumtable { } .table.forumtable th, .table.forumtable td { border-right: none; border-left: none; /* border-bottom: none; border-top: none;*/ padding: 10px 5px !important; box-shadow: none; } table#CPHservice_DGforums.table td, table#CPHservice_DGforums.table th { border-right: none; border-left: none; /* border-bottom: none; border-top: none;*/ padding: 10px !important; box-shadow: none; color: #888; text-shadow: 0 1px 0 rgba(255,255,255,0.3) } #CPHservice_DGforums tbody tr.ForumNW_RowDisabilitate td { background: #ddd; } #CPHservice_DGforums tbody tr.ForumNW_RowDisabilitate td div.linewrapper { color: #888; } #CPHservice_DGforums tr td div.linewrapper { font-size: 14px; color: #222; } .forumtable td.topics, .forumtable td.posts { text-align: center !important; font-weight: bold; } .table.forumtable tbody { border: 0; } .datagridforum { width: 100%; border: 0; } .table.forumtable td.indicators, .table.forumtable th.indicators, .table.forumtable td.indicators, .table.forumtable th.indicators { width: 30px; text-align: center !important; } .table.forumtable th.forumname { text-align: center; } .table.forumtable td.forumname { text-align: left; } .table.forumtable td.topic { text-align: left; width: 500px; } .table.forumtable th.author, .table.forumtable td.author { width: 100px; } .table.forumtable.posts th.author, .table.forumtable.posts td.author { width: 150px; } .table.forumtable td.topics, .table.forumtable th.topics, .table.forumtable td.posts, .table.forumtable th.posts, .table.forumtable td.replies, .table.forumtable th.views { width: 60px; text-align: center !important; } #CPHservice_CTRLaggiungiPost_TBLrevisione div.fieldrow.iframe iframe { border: 1px solid #ccc; border-left: none; border-right: none; } .table.forumtable td.lastpost, .table.forumtable th.lastpost { width: 200px; text-align: center; } .table.forumtable td.lastpost { /* text-align:right;*/ text-align: left; } .table.forumtable tr, .table.threadtable tr { display: none; } /*table.forumtable.posts tbody tr.tablerow.ForumNW_RowNormal, table.forumtable.posts tbody tr.jumper td { background: #f8f8f8; }*/ .table.forumtable tr.tableheader, .table.forumtable tr.tablerow, .table.threadtable tr.tableheader, .table.threadtable tr.tablerow { display: table-row; *display: inline; height: 30px; } table.posts tr.tableheader { display: none !important; } .table.forumtable tr.tablerow td.forumname div.linewrapper.title span.name, .table.forumtable tr.tablerow td.topic div.linewrapper.title span.name, .table.forumtable tr.tablerow td.message div.linewrapper.title span.name { float: left; } .table.forumtable tr.tablerow td.forumname div.linewrapper.title span.mark, .table.forumtable tr.tablerow td.topic div.linewrapper.title span.mark, .table.forumtable tr.tablerow td.message div.linewrapper.title span.mark { float: right; font-size: 10px; } .table.forumtable tr.tablerow td.forumname div.linewrapper.description { color: #777; font-style: italic; } div.linewrapper.commands { margin-top: 0.3em; line-height:1.4em; } div.linewrapper.commands .separator.start, div.linewrapper.commands .separator.end { display: none; } div.linewrapper.commands .separator { color: #777; } div.linewrapper.commands .ForumNW_CommandPostLinkSmall { padding: 1px 3px 2px 3px; margin-right: 3px; border-radius: 3px; background-color: #e5e5e5; color: #888; text-shadow: 0 1px 0 #fff ; text-decoration: none; font-weight: normal; font-style: normal; box-shadow: inset 0 0 6px rgba(0,0,0,0.2); display:inline-block; *display:inline; *zoom:1; margin-bottom:4px; } div.linewrapper.commands .ForumNW_CommandPostLinkSmall:hover { background: #e0e0e0; text-decoration: none; box-shadow: inset 0 0 6px rgba(0,0,0,0.3); } .topic div.linewrapper.commands .ForumNW_CommandPostLinkSmall { padding: 0px 4px 1px 4px; background-color: #eee; } .topic div.linewrapper.commands .ForumNW_CommandPostLinkSmall:hover { background-color: #e9e9e9; } .posts .header span.ForumNW_SubjectPost { display: block; font-size: 14px; line-height: 21px; color: #444; } .legend.hor .legenditem .legendicon.img { margin-right: 5px; border: 0; } .pnlmenu span, .pnlmenu label, .forumcontent, table.forums td span, table.forumtable td span { color: #888; font-size: 11px; } .forumcontent span.renderedtext { color: inherit; } .forumcontent span.renderedtext blockquote { color: #888; } .topmenu { margin: 1em 0; } span#CPHservice_RBLselezioneForum.FiltroCampoSmall, div.topmenu span.FiltroCampoSmall { margin-right: 1em; } span#CPHservice_LBnoforum.Errore { display: block; margin: 2em 0; font-size: 16px; background-color: #fbd6dd; background-image: -webkit-gradient(linear, left top, left bottom, from(#fbdee3),to(#fbced7)); background-image: -webkit-linear-gradient(top, #fbdee3, #fbced7); background-image: -moz-linear-gradient(top, #fbdee3, #fbced7); background-image: -o-linear-gradient(top, #fbdee3, #fbced7); background-image: -ms-linear-gradient(top, #fbdee3, #fbced7); background-image: linear-gradient(top, #fbdee3, #fbced7); color: #B10612; border: 1px solid #fbbfcb; } #CPHservice_CTRLaggiungi_PNLruoloUtente div.fieldobject.adduser, #CPHservice_CTRLgestione_PNLmodificaRuolo div.fieldobject.editrole { margin: 0; padding: 10px; border: 1px solid #ccc; } div#CTRLrubrica_PNLgruppi { padding: 10px; width: 97.335% !important; border: 1px solid #ccc; } #PNLconferma div.content div.fieldobject div.fieldrow.title { } span#LBoggetto.RubricaGenerale_Testo { font-weight: bold; } #PNLconferma div.content div.fieldobject div.fieldrow { margin-bottom: 1em; } textarea#TXBtesto.RubricaGenerale_Testo { font-size: 12px; line-height: 18px; } #PNLconferma { padding: 10px; margin: 0; border: 1px solid #ccc; border-top: none; } div#CTRLrubrica_PNLgruppi span, div#CTRLrubrica_PNLgruppi td { line-height: 21px; } span#CPHservice_LBnoforum.Errore br { display: none; } span#CPHservice_RBLselezioneForum.FiltroCampoSmall label, .topmenu span.FiltroCampoSmall label { margin: 0 .5em; } div.toolbar.top .left a { margin: 0 .5em; } table .commands .separator { display: none; } .name .ForumNW_Autore { color: #333; line-height: 21px; display: inline-block; } .author .image { margin: 3px 0; } .author .image img { border-radius: 3px; background-color: #eee; /* box-shadow: 2px 2px 0 rgba(0,0,0,0.2)*/ } td .title { margin-bottom: 5px; min-height: 20px; } table.threads td .title { margin-bottom: 10px; } .fieldrow.title label { color: #333; font-size: 16px; } .fieldrow.title { margin: 1em 0; } div.fieldrow.message { margin: 2em 0; } .forumname span.Forum_TableText { font-weight: normal; font-style: normal; margin-bottom: 5px; display: inline-block; color: #666; } td.forumname .linewrapper.title span.mark input { vertical-align: middle; display: inline-block !important; *display:inline; zoom: 1; background-color: transparent; background-repeat: no-repeat !important; overflow: hidden; font-size: 0; border: none; } td .title .name a, .fieldrow .title .name a { font-size: 14px; color: #5689ba; text-decoration: none; border-bottom: 1px dotted #aaa; font-weight: bold; } td .title .name .details a { font-size: 11px; } td .header .mark span { color: #aaa; } div.toolbar.top a { font-size: 14px; border-bottom: 1px dotted #ccc; text-decoration: none; } div.toolbar.top a:hover { color: inherit; background: transparent; border-bottom: 1px solid #ccc; font-size: 14px; } .title .name a:hover { text-decoration: none; border-bottom: 1px solid #5689ba; } div.pnlmenu label { margin-right: 1em; margin-left: .5em; color: #444; } div.fieldobject.addthread label.fieldlabel { color: #333; font-size: 12px; } .subject input { font-size: 16px; padding: 3px; width: 740px; } div.fieldobject.stats { margin: 1em 0; } div.fieldobject.stats .fieldlabel { color: #333; font-size: 12px; font-weight: bold; margin-bottom: .5em; } div.fieldobject.stats div.statitem { margin: 0 12px .5em 0; display: inline-block; } a.ForumNW_LinkButton:hover { background: inherit; } .legend.hor .legenditem .legendtext { } div.fieldobject.stats div.inlinewrapper.maxheight { /* max-width: 87%; max-height: auto;*/ overflow: visible; overflow-x: visible; overflow-y: visible; } div.fieldobject div.fieldrow label.fieldlabel { display: inline-block; *display: inline; *zoom: 1; width: 120px; } .table.forumtable td { vertical-align: middle; } .table.forumtable.posts tr.tablerow td.author { text-align: center; vertical-align: top; } .table.forumtable.forums tr.tablerow td, .table.forumtable.threads tr.tablerow td { vertical-align: top; text-align: left; padding: 5px !important; } .table.forumtable tr.tablerow td.message .messagecontent .header { padding-bottom: 0.5em; } .table.forumtable tr.tablerow td.message .linewrapper.title span.name span.separator { color: #888; font-style: italic; } .table.forumtable tr.tablerow td.message .linewrapper.title span.name span.details * { color: #aaa; } .commands a.ForumNW_BackToTop, .table.forumtable tr.tablerow td.message .linewrapper.title span.name span.details a { color: #5689ba; text-decoration: none; border-bottom: 1px dotted #aaa; font-weight: normal; font-style: normal; } td.message, td.author { border-bottom: none !important; padding-bottom: 2em !important; text-align: left; vertical-align: top !important; } div.messagecontent.clearfix { /* min-height: 150px;*/ } tr.jumper td.author, tr.jumper td.message { border-top: none !important; /* padding-bottom: 0 !important;*/ } .commands a.ForumNW_BackToTop:hover, .table.forumtable tr.tablerow td.message .linewrapper.title span.name span.details a:hover { background: transparent; border-bottom: 1px solid #5689ba; text-decoration: none; } .table.forumtable tr.tablerow td.message .messagecontent .post { margin-top: 0.5em; overflow: auto; text-align: left; /* aggiunge la barra di scroll se il testo non può andare a capo*/ } .authorcontent { } .filtercontainer { margin-top: 1em; text-align: left; } div.fieldobject.adduser div.fieldrow label.fieldlabel, div.fieldobject.editrole div.fieldrow label.fieldlabel { width: 150px; } table.table.moderators th.login { width: 140px; } table.table.moderators th.user { width: 200px; } table.table.moderators th.role { width: 130px; } table.table.moderators th.email { width: 200px; } div.popup { text-align: left; background: #fff; padding: 20px; } div#TBRconferma.fieldobject { margin-bottom: 2em; padding: 0; } div.popup div.linewrapper.filterletters { margin: 1em 0; } div.popup div.filtercontainer { margin: 0; padding: 1em 0; } div#PNLselezione, div#CTRLrubrica_PNLfiltri { padding: 10px; border: 1px solid #ccc; border-top: none; } div.popup .footer { text-align: center; } .content.genericmail .filtercontainer { width: 100%; } tr.separator, tr.separator td, .table.forumtable tr.separator, .table.forumtable tr.separator td { height: 0 !important; padding: 0 !important; line-height: none; background: #ccc; border: none !important; display: none; }
0.334698
0.121035
.ms-container:after { content: "."; display: block; height: 0; line-height: 0; font-size: 0; clear: both; min-height: 0; visibility: hidden; } .ms-container { margin-bottom: 5px; background: url('../img/switch.png') center center no-repeat; } .ms-container .ms-selectable, .ms-container .ms-selection { width: 48%; background: #fff; color: #555555; float: left; } .ms-container .ms-selection { float: right; } .ms-container .ms-list { -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; -moz-transition: border linear 0.2s, box-shadow linear 0.2s; -ms-transition: border linear 0.2s, box-shadow linear 0.2s; -o-transition: border linear 0.2s, box-shadow linear 0.2s; transition: border linear 0.2s, box-shadow linear 0.2s; border: 1px solid #cccccc; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .ms-selected { display: none; } .ms-container .ms-selectable { } .ms-container .ms-list.ms-focus { border-color: rgba(82, 168, 236, 0.8); -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); outline: 0; outline: thin dotted \9; } .ms-container ul { margin: 0; list-style-type: none; } .ms-container ul.ms-list { height: 200px; padding: 0px 0px; overflow-y: auto; } .ms-container .ms-selectable li.ms-elem-selectable, .ms-container .ms-selection li.ms-elem-selected { border-bottom: 1px #eee solid; padding: 2px 10px; color: #555; font-size: 11px; } .ms-container .ms-selectable li.disabled, .ms-container .ms-selection li.disabled { background-color: #eee; color: #aaa; } .ms-container .ms-optgroup-label { padding: 5px 0px 0px 5px; cursor: pointer; color: #999; } .ms-container li.ms-elem-selectable:not (.disabled ).ms-hover, .ms-container .ms-selection li:not (.disabled ).ms-hover { cursor: pointer; color: #ffffff; text-decoration: none; background-color: #0088cc; } .multipleselect-header { -moz-border-radius: 4px 4px 0px 0px; -webkit-border-radius: 4px 4px 0px 0px; border-radius: 4px 4px 0px 0px; background: url("../img/backgrounds/nav.jpg") left top repeat-x; border: 1px solid #CCC; color: #333; text-shadow: 1px 1px 0px #FFF; padding: 1px 5px 0px; border-bottom: 0px; font-size: 11px; }
public/css/css2/multi-select.css
.ms-container:after { content: "."; display: block; height: 0; line-height: 0; font-size: 0; clear: both; min-height: 0; visibility: hidden; } .ms-container { margin-bottom: 5px; background: url('../img/switch.png') center center no-repeat; } .ms-container .ms-selectable, .ms-container .ms-selection { width: 48%; background: #fff; color: #555555; float: left; } .ms-container .ms-selection { float: right; } .ms-container .ms-list { -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; -moz-transition: border linear 0.2s, box-shadow linear 0.2s; -ms-transition: border linear 0.2s, box-shadow linear 0.2s; -o-transition: border linear 0.2s, box-shadow linear 0.2s; transition: border linear 0.2s, box-shadow linear 0.2s; border: 1px solid #cccccc; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .ms-selected { display: none; } .ms-container .ms-selectable { } .ms-container .ms-list.ms-focus { border-color: rgba(82, 168, 236, 0.8); -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); outline: 0; outline: thin dotted \9; } .ms-container ul { margin: 0; list-style-type: none; } .ms-container ul.ms-list { height: 200px; padding: 0px 0px; overflow-y: auto; } .ms-container .ms-selectable li.ms-elem-selectable, .ms-container .ms-selection li.ms-elem-selected { border-bottom: 1px #eee solid; padding: 2px 10px; color: #555; font-size: 11px; } .ms-container .ms-selectable li.disabled, .ms-container .ms-selection li.disabled { background-color: #eee; color: #aaa; } .ms-container .ms-optgroup-label { padding: 5px 0px 0px 5px; cursor: pointer; color: #999; } .ms-container li.ms-elem-selectable:not (.disabled ).ms-hover, .ms-container .ms-selection li:not (.disabled ).ms-hover { cursor: pointer; color: #ffffff; text-decoration: none; background-color: #0088cc; } .multipleselect-header { -moz-border-radius: 4px 4px 0px 0px; -webkit-border-radius: 4px 4px 0px 0px; border-radius: 4px 4px 0px 0px; background: url("../img/backgrounds/nav.jpg") left top repeat-x; border: 1px solid #CCC; color: #333; text-shadow: 1px 1px 0px #FFF; padding: 1px 5px 0px; border-bottom: 0px; font-size: 11px; }
0.253306
0.095518
.siteBody { height: 100%; width: 100%; background-color: #E4E5E6; } /* site navigation bar */ #siteNavBar { position: fixed; top: 0; left: 0; width: 100%; text-align: center; z-index: 3; } /* sticky footer */ .footer { position: fixed; left: 0; bottom: 0; width: 100%; background-color: slategray; color: white; text-align: center; z-index: 3; } /* white section cards with shaddow border */ .sectionContainer { background-color: ghostwhite; min-height: 120px; margin: 10px 10px 0px 10px; box-shadow: 4px 3px 3px darkgray; border-left: slategray; border-left-style: solid; border-left-width: 1px; } /* title bar for section elements */ .sectionHeading { font-size: 18px; min-height: 24px; font-weight: bold; background-color: lightsteelblue; color: darkslategrey; border-color: steelblue; border-style: solid; border-width: 1px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; width: auto; display: block; text-indent: 10px; margin-bottom: 5px; margin-top: 0px; } /* styling for text elements in section */ .sectionText { text-indent: 10px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 14px; margin-left: 20px; margin-right: 20px; padding-top: 5px; padding-bottom: 10px; } .sectionBulletText { text-indent: 10px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 14px; margin-left: 20px; margin-right: 20px; } /* Index.html styles ==========================================*/ /* ============================================================*/ .vbaLineText { text-indent: 10px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 15px; color: firebrick; margin-left: 20px; margin-right: 20px; padding-top: 5px; } /* rounded border for profile picture */ .profilePicture { height: 100px; width: 205px; float: left; margin: 5px 10px 5px 10px; border-style: solid; border-color: white; border-radius: 50%; z-index: 3; } .skillsContainer { background-color: whitesmoke; min-height: 120px; margin: 10px 10px 0px 10px; box-shadow: 4px 3px 3px darkgray; border-left: slategray; border-left-style: solid; border-left-width: 1px; } .skillsCard { background-color: ghostwhite; min-height: 120px; width: 20%; border-style: solid; border-width: 1px; border-color: lightsteelblue; margin-top: 5px; margin-bottom: 5px; margin-left: auto; margin-right: auto; text-align: center; } /* media query to adjust skill card with based on resolution */ @media screen and (max-width: 991px) { .skillsCard { min-height: 70px; width: 100%; margin: 0 auto; } } /* word-wrap: break-word; */ .skillsTitle { font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 12px; font-weight: bold; color: navy; margin-left: 20px; margin-right: 20px; padding-top: 5px; } .skillsCaption { font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 10px; color: black; margin-left: 20px; margin-right: 20px; padding-top: 5px; word-wrap: break-word; } .appThumbnail { height: 200px; width: 300px; margin: 20px 10px 20px 10px; border: 10px; float: left; border-style: solid; border-color: black; }
styles/mainStyles.css
.siteBody { height: 100%; width: 100%; background-color: #E4E5E6; } /* site navigation bar */ #siteNavBar { position: fixed; top: 0; left: 0; width: 100%; text-align: center; z-index: 3; } /* sticky footer */ .footer { position: fixed; left: 0; bottom: 0; width: 100%; background-color: slategray; color: white; text-align: center; z-index: 3; } /* white section cards with shaddow border */ .sectionContainer { background-color: ghostwhite; min-height: 120px; margin: 10px 10px 0px 10px; box-shadow: 4px 3px 3px darkgray; border-left: slategray; border-left-style: solid; border-left-width: 1px; } /* title bar for section elements */ .sectionHeading { font-size: 18px; min-height: 24px; font-weight: bold; background-color: lightsteelblue; color: darkslategrey; border-color: steelblue; border-style: solid; border-width: 1px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; width: auto; display: block; text-indent: 10px; margin-bottom: 5px; margin-top: 0px; } /* styling for text elements in section */ .sectionText { text-indent: 10px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 14px; margin-left: 20px; margin-right: 20px; padding-top: 5px; padding-bottom: 10px; } .sectionBulletText { text-indent: 10px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 14px; margin-left: 20px; margin-right: 20px; } /* Index.html styles ==========================================*/ /* ============================================================*/ .vbaLineText { text-indent: 10px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 15px; color: firebrick; margin-left: 20px; margin-right: 20px; padding-top: 5px; } /* rounded border for profile picture */ .profilePicture { height: 100px; width: 205px; float: left; margin: 5px 10px 5px 10px; border-style: solid; border-color: white; border-radius: 50%; z-index: 3; } .skillsContainer { background-color: whitesmoke; min-height: 120px; margin: 10px 10px 0px 10px; box-shadow: 4px 3px 3px darkgray; border-left: slategray; border-left-style: solid; border-left-width: 1px; } .skillsCard { background-color: ghostwhite; min-height: 120px; width: 20%; border-style: solid; border-width: 1px; border-color: lightsteelblue; margin-top: 5px; margin-bottom: 5px; margin-left: auto; margin-right: auto; text-align: center; } /* media query to adjust skill card with based on resolution */ @media screen and (max-width: 991px) { .skillsCard { min-height: 70px; width: 100%; margin: 0 auto; } } /* word-wrap: break-word; */ .skillsTitle { font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 12px; font-weight: bold; color: navy; margin-left: 20px; margin-right: 20px; padding-top: 5px; } .skillsCaption { font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 10px; color: black; margin-left: 20px; margin-right: 20px; padding-top: 5px; word-wrap: break-word; } .appThumbnail { height: 200px; width: 300px; margin: 20px 10px 20px 10px; border: 10px; float: left; border-style: solid; border-color: black; }
0.341143
0.174024
body { background-color: #e0e0e0; font-family: 'Roboto', sans-serif; } .wrapper-600 { max-width: 600px; margin: auto; } header .page-heading { position: fixed; top: 0; left: 0; right: 0; background-color: #EAEEF3; font-size: 16pt; z-index: 20; } header .page-heading .menu-button { padding: 10px; padding-top: 0px; position: relative; top: 5px; font-size: 20pt; cursor: pointer; color: #2A3F54; display: none; } header .page-heading .menu-button:hover { color: #3576B7; } header .page-heading h1 { font-size: 16pt; margin: 10px; display: inline-block } header nav { position: fixed; left: 0; top: 0; bottom: 0; overflow-y:auto; color: #F0F0F0; z-index: 30; width: 220px; text-transform: uppercase; font-size: 13px; background-color: #637990; background-color: #2A3F54; } header nav ul h2 { padding: 10px; margin: 0; font-size: 10pt; margin-top: 10px; font-weight: bold; text-transform: uppercase; } header nav ul { list-style: none; padding-left: 0; margin: 5px; background-color: #2A3F54; background-color: #334d66; } header nav ul ul { padding-left: 10px; } header nav li { width: 100%; display: block; } header nav li:hover { background-color: #3a546d; } header nav li a, header nav li a:hover { color: inherit; text-decoration: none; width: 100%; display: block; padding: 12px; padding-left: 15px; padding-right: 15px; } header nav li i { margin-right: 10px; } header nav li a.active { background-color: #3a546d; text-decoration: none; position: relative; border-right: 3px solid #cc0; border-right: 5px solid #4DA2EE; } header nav li a i:nth-child(2) { display: none; } header nav li a.active i:nth-child(2) { position: absolute; right: 5px; top: 15px; display: inline; } header nav .logo { margin-top: 15px; margin-bottom: 15px; } header nav h3 { padding-left: 10px; font-size: 16px; text-decoration: underline; padding-left: 10px; } .scans-counter { font-size: 11pt; margin-top: 10px; margin-right: 10px; } .wrapper { margin: auto; max-width: 1600px; position: relative; } .main-container { margin-top: 43px; padding-bottom: 30px; } .main-container section { padding: 20px; background-color: white; margin: auto; margin-bottom: 10px; position: relative; } .menu-showing { margin-left: 220px; } .top-controlbar { position: fixed; top: 43px; background-color: white; z-index: 20; right: 0; left: 0; border-bottom: 1px solid #ddd; } .category-tabs { border: none; } .tab-content { margin-top: 40px; } .nav-tabs { width: calc(100% - 140px); text-transform: uppercase; border: none; } .nav-tabs a { color: inherit; } .nav-tabs .active { border-bottom: 3px solid #CC0; border-bottom: 3px solid #1479d2; } .nav-tabs>li.active a, .nav-tabs>li.active a:focus { padding-bottom: 7px; border: none; } .nav-tabs li a:hover { background-color: transparent; border: none; color: #ddd; border-radius: 0; } .nav-tabs>li>a { border: none; opacity: 1; border-radius: 0; } /* GENERIC STYLING ================================== */ img { max-width: 100%; } .panel { margin-bottom: 10px; } .panel h3 { font-size: 20px; margin: 0; } .panel-body.bg-primary { color: white; } .panel-body.bg-default { color: #337ab7; } .metric-item { position: relative; } .metric-item.included { background-color: #F3FBFF; } .metric-item h4 { font-size: 18px; cursor: pointer; display: inline-block; margin: 0; } .metric-item .include-metric { position: absolute; top: -4px; right: 20px; } .display-settings .form-group { margin-bottom: 0; } .config-controls .tab-pane { position: relative; } .search-bar { top: -5px; position: absolute; right: 0; margin-bottom: 20px; width: 500px; } .search-bar i.fa { margin-right: 10px; float: right; margin-top: -24px; position: relative; } .search-bar .filter-heading { display: none; } .panel-body hr { margin: 0; } .slider-range, .slider-single { margin-top: 10px; margin-bottom: 10px; } .help-block span.upgrade-msg { color: red; font-weight: bolder; } .outside-form { max-width: 600px; margin: auto; margin-top: 20px; background-color: white; padding: 20px; border-radius: 4px; box-shadow: 0 0 8px black; text-align: center; } table.sortable { cursor: pointer; } td.number { text-align: right; } td.url { font-size: 12px; word-wrap: break-word; } .anchor { margin-top: -60px; height: 60px; display: block; position: relative; z-index: -1000; } .well { padding-bottom: 5px; } .onboarding-block { position: absolute; z-index: 10; top: 50px; left: 20px; right: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.7); } .onboarding-block p, .onboarding-block ol, .onboarding-block ul { margin-top: 10px; } table.table th { text-transform: uppercase; vertical-align: middle!important; font-size: 10pt; } /* CONTROLS ================================== */ .table-button { padding: 3px 8px; } .btn-group label.active.btn-yes { background-color: #99ff99; } .btn-group label.active.btn-no { background-color: #FF9999; } .bottom-control { position: fixed; bottom: 0; left: 0; right: 0; z-index: 19; height: 65px; padding: 5px; background-color: rgba(200,200,200,0.8); background-color: transparent; } a.btn, input.btn, button.btn { border-radius: 2px; } a.btn-primary, input.btn-primary, button.btn-primary { background: #4DA2EE; color: white; border: 1px solid #1479d2; text-shadow: none; } a.btn-primary:hover, input.btn-primary:hover, button.btn-primary:hover, a.btn-primary:active, input.btn-primary:active, button.btn-primary:active { background: #1479d2; } a.btn-default, input.btn-default, button.btn-default { background: white; text-shadow: none; } .toggle .btn.btn-primary, .toggle .btn.btn-primary:hover { background: #4DA2EE; border: 1px solid #1479d2; } .toggle .btn.btn-primary:hover { background: #1479d2; } .toggle.btn-primary { border: none; background: #4DA2EE; } .toggle.btn { border-radius: 0; } .panel { border-radius: 0; } .panel-heading h4 { text-transform: uppercase; } .panel-default>.panel-heading { background: #f5f5f5 } .ui-slider-horizontal .ui-slider-range { background: #4DA2EE; } h4.price { margin-bottom: 20px; margin-top: 10px; color: darkgreen; } footer { padding-left: 10px; padding-right: 10px; text-align: right; } .fade-enter-active, .fade-leave-active { transition: opacity .5s } .fade-enter, .fade-leave-to /* .fade-leave-active in <2.1.8 */ { opacity: 0 } /* RESPONSIVE VARIATIONS ================================== */ @media (max-width: 1400px) { header .page-heading .menu-button { display: inline-block; } } @media (max-width: 1024px) { body { overflow-x: hidden; } .menu-showing { margin-left: 0; right: 0; min-width: 360px; } header .menu-showing { left: 220px; } .scans-counter { display: none; } .top-controlbar { position: static; } .search-bar { position: static; width: 100%; } }
public/css/app.css
body { background-color: #e0e0e0; font-family: 'Roboto', sans-serif; } .wrapper-600 { max-width: 600px; margin: auto; } header .page-heading { position: fixed; top: 0; left: 0; right: 0; background-color: #EAEEF3; font-size: 16pt; z-index: 20; } header .page-heading .menu-button { padding: 10px; padding-top: 0px; position: relative; top: 5px; font-size: 20pt; cursor: pointer; color: #2A3F54; display: none; } header .page-heading .menu-button:hover { color: #3576B7; } header .page-heading h1 { font-size: 16pt; margin: 10px; display: inline-block } header nav { position: fixed; left: 0; top: 0; bottom: 0; overflow-y:auto; color: #F0F0F0; z-index: 30; width: 220px; text-transform: uppercase; font-size: 13px; background-color: #637990; background-color: #2A3F54; } header nav ul h2 { padding: 10px; margin: 0; font-size: 10pt; margin-top: 10px; font-weight: bold; text-transform: uppercase; } header nav ul { list-style: none; padding-left: 0; margin: 5px; background-color: #2A3F54; background-color: #334d66; } header nav ul ul { padding-left: 10px; } header nav li { width: 100%; display: block; } header nav li:hover { background-color: #3a546d; } header nav li a, header nav li a:hover { color: inherit; text-decoration: none; width: 100%; display: block; padding: 12px; padding-left: 15px; padding-right: 15px; } header nav li i { margin-right: 10px; } header nav li a.active { background-color: #3a546d; text-decoration: none; position: relative; border-right: 3px solid #cc0; border-right: 5px solid #4DA2EE; } header nav li a i:nth-child(2) { display: none; } header nav li a.active i:nth-child(2) { position: absolute; right: 5px; top: 15px; display: inline; } header nav .logo { margin-top: 15px; margin-bottom: 15px; } header nav h3 { padding-left: 10px; font-size: 16px; text-decoration: underline; padding-left: 10px; } .scans-counter { font-size: 11pt; margin-top: 10px; margin-right: 10px; } .wrapper { margin: auto; max-width: 1600px; position: relative; } .main-container { margin-top: 43px; padding-bottom: 30px; } .main-container section { padding: 20px; background-color: white; margin: auto; margin-bottom: 10px; position: relative; } .menu-showing { margin-left: 220px; } .top-controlbar { position: fixed; top: 43px; background-color: white; z-index: 20; right: 0; left: 0; border-bottom: 1px solid #ddd; } .category-tabs { border: none; } .tab-content { margin-top: 40px; } .nav-tabs { width: calc(100% - 140px); text-transform: uppercase; border: none; } .nav-tabs a { color: inherit; } .nav-tabs .active { border-bottom: 3px solid #CC0; border-bottom: 3px solid #1479d2; } .nav-tabs>li.active a, .nav-tabs>li.active a:focus { padding-bottom: 7px; border: none; } .nav-tabs li a:hover { background-color: transparent; border: none; color: #ddd; border-radius: 0; } .nav-tabs>li>a { border: none; opacity: 1; border-radius: 0; } /* GENERIC STYLING ================================== */ img { max-width: 100%; } .panel { margin-bottom: 10px; } .panel h3 { font-size: 20px; margin: 0; } .panel-body.bg-primary { color: white; } .panel-body.bg-default { color: #337ab7; } .metric-item { position: relative; } .metric-item.included { background-color: #F3FBFF; } .metric-item h4 { font-size: 18px; cursor: pointer; display: inline-block; margin: 0; } .metric-item .include-metric { position: absolute; top: -4px; right: 20px; } .display-settings .form-group { margin-bottom: 0; } .config-controls .tab-pane { position: relative; } .search-bar { top: -5px; position: absolute; right: 0; margin-bottom: 20px; width: 500px; } .search-bar i.fa { margin-right: 10px; float: right; margin-top: -24px; position: relative; } .search-bar .filter-heading { display: none; } .panel-body hr { margin: 0; } .slider-range, .slider-single { margin-top: 10px; margin-bottom: 10px; } .help-block span.upgrade-msg { color: red; font-weight: bolder; } .outside-form { max-width: 600px; margin: auto; margin-top: 20px; background-color: white; padding: 20px; border-radius: 4px; box-shadow: 0 0 8px black; text-align: center; } table.sortable { cursor: pointer; } td.number { text-align: right; } td.url { font-size: 12px; word-wrap: break-word; } .anchor { margin-top: -60px; height: 60px; display: block; position: relative; z-index: -1000; } .well { padding-bottom: 5px; } .onboarding-block { position: absolute; z-index: 10; top: 50px; left: 20px; right: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.7); } .onboarding-block p, .onboarding-block ol, .onboarding-block ul { margin-top: 10px; } table.table th { text-transform: uppercase; vertical-align: middle!important; font-size: 10pt; } /* CONTROLS ================================== */ .table-button { padding: 3px 8px; } .btn-group label.active.btn-yes { background-color: #99ff99; } .btn-group label.active.btn-no { background-color: #FF9999; } .bottom-control { position: fixed; bottom: 0; left: 0; right: 0; z-index: 19; height: 65px; padding: 5px; background-color: rgba(200,200,200,0.8); background-color: transparent; } a.btn, input.btn, button.btn { border-radius: 2px; } a.btn-primary, input.btn-primary, button.btn-primary { background: #4DA2EE; color: white; border: 1px solid #1479d2; text-shadow: none; } a.btn-primary:hover, input.btn-primary:hover, button.btn-primary:hover, a.btn-primary:active, input.btn-primary:active, button.btn-primary:active { background: #1479d2; } a.btn-default, input.btn-default, button.btn-default { background: white; text-shadow: none; } .toggle .btn.btn-primary, .toggle .btn.btn-primary:hover { background: #4DA2EE; border: 1px solid #1479d2; } .toggle .btn.btn-primary:hover { background: #1479d2; } .toggle.btn-primary { border: none; background: #4DA2EE; } .toggle.btn { border-radius: 0; } .panel { border-radius: 0; } .panel-heading h4 { text-transform: uppercase; } .panel-default>.panel-heading { background: #f5f5f5 } .ui-slider-horizontal .ui-slider-range { background: #4DA2EE; } h4.price { margin-bottom: 20px; margin-top: 10px; color: darkgreen; } footer { padding-left: 10px; padding-right: 10px; text-align: right; } .fade-enter-active, .fade-leave-active { transition: opacity .5s } .fade-enter, .fade-leave-to /* .fade-leave-active in <2.1.8 */ { opacity: 0 } /* RESPONSIVE VARIATIONS ================================== */ @media (max-width: 1400px) { header .page-heading .menu-button { display: inline-block; } } @media (max-width: 1024px) { body { overflow-x: hidden; } .menu-showing { margin-left: 0; right: 0; min-width: 360px; } header .menu-showing { left: 220px; } .scans-counter { display: none; } .top-controlbar { position: static; } .search-bar { position: static; width: 100%; } }
0.37502
0.072407
.dataTables_wrapper tr th{ padding: 8px; background-color: #F5F6F8; } .dataTables_wrapper td{ padding: 8px; } .dataTables_wrapper td.input{ padding: 5px 0 0px; } .form-control { padding: 0.25rem 0.55rem 0.1rem; height: calc(1.3em + 0.94rem + 2px); } .w10 { min-width:10px; max-width:10px; width:10px;} .w20 { min-width:20px; max-width:20px; width:20px;} .w25 { min-width:25px; max-width:25px; width:25px;} .w28 { min-width:28px; max-width:28px; } .w30 { min-width:30px; max-width:30px; width:30px;} .w35 { min-width:35px; max-width:35px; } .w40 { min-width:40px; max-width:40px; width:40px;} .w50 { min-width:50px; max-width:50px; width:50px;} .w55 { min-width:55px; max-width:55px; width:55px;} .w60 { min-width:60px; max-width:60px; width:60px; } .w65 { min-width:65px; max-width:65px; width:65px; } .w70 { min-width:70px; max-width:70px; width:70px; } .w75 { min-width:75px; max-width:75px; width:75px; } .w80 { min-width:80px; max-width:80px; width:80px; } .w85 { min-width:85px; max-width:85px; } .w90 { min-width:90px; max-width:90px; width:90px; } .w95 { min-width:95px; max-width:95px; width:95px; } .w100 { min-width:100px; max-width:100px; width:100px;} .w105 { min-width:105px; max-width:105px; } .w110 { min-width:110px; max-width:110px; width:110px;} .w115 { min-width:115px; max-width:115px; width:115px;} .w120{ min-width:120px; max-width:120px; width:120px;} .w125 { min-width:125px; max-width:125px; width:125px;} .w130 { min-width:130px; max-width:130px; width:130px;} .w140 { min-width:140px; max-width:140px; width:140px;} .w150 { min-width:150px; max-width:150px; width:150px;} .w155 { min-width:155px; max-width:155px; width:155px;} .w160 { min-width:160px; max-width:160px; width:160px;} .w165 { min-width:165px; max-width:165px; width:165px;} .w175 { min-width:175px; max-width:175px; width:175px;} .w180 { min-width:180px; max-width:180px; width:180px;} .w190 { min-width:190px; max-width:190px; width:190px;} .w200 { min-width:200px; max-width:200px; width:200px;} .w210 { min-width:210px; max-width:210px; width:210px;} .w220 { min-width:220px; max-width:220px; width:220px;} .w225 { min-width:225px; max-width:225px; width:225px;} .w230 { min-width:230px; max-width:230px; width:230px;} .w240 { min-width:240px; max-width:240px; } .w250 { min-width:250px; max-width:250px; } .w260 { min-width:260px; max-width:260px; } .w275 { min-width:275px; max-width:275px; } .w280 { min-width:280px; max-width:280px; } .w290 { min-width:290px; max-width:290px; } .w300 { min-width:300px; max-width:300px; } .w310 { min-width:310px; max-width:310px; } .w320 { min-width:320px; max-width:320px; } .w340 { min-width:340px; max-width:340px; } .w350 { min-width:350px; max-width:350px; } .w360 { min-width:360px; max-width:360px; } .w380 { min-width:380px; max-width:380px; } .w390 { min-width:390px; max-width:390px; } .w400 { min-width:400px; max-width:400px; } .w450 { min-width:450px; max-width:450px; } .w500 { min-width:500px; max-width:500px; } .w550 { min-width:550px; max-width:550px; } .w600 { min-width:600px; max-width:600px; } .w700 { min-width:700px; max-width:700px; }
public/backend/css/custom.css
.dataTables_wrapper tr th{ padding: 8px; background-color: #F5F6F8; } .dataTables_wrapper td{ padding: 8px; } .dataTables_wrapper td.input{ padding: 5px 0 0px; } .form-control { padding: 0.25rem 0.55rem 0.1rem; height: calc(1.3em + 0.94rem + 2px); } .w10 { min-width:10px; max-width:10px; width:10px;} .w20 { min-width:20px; max-width:20px; width:20px;} .w25 { min-width:25px; max-width:25px; width:25px;} .w28 { min-width:28px; max-width:28px; } .w30 { min-width:30px; max-width:30px; width:30px;} .w35 { min-width:35px; max-width:35px; } .w40 { min-width:40px; max-width:40px; width:40px;} .w50 { min-width:50px; max-width:50px; width:50px;} .w55 { min-width:55px; max-width:55px; width:55px;} .w60 { min-width:60px; max-width:60px; width:60px; } .w65 { min-width:65px; max-width:65px; width:65px; } .w70 { min-width:70px; max-width:70px; width:70px; } .w75 { min-width:75px; max-width:75px; width:75px; } .w80 { min-width:80px; max-width:80px; width:80px; } .w85 { min-width:85px; max-width:85px; } .w90 { min-width:90px; max-width:90px; width:90px; } .w95 { min-width:95px; max-width:95px; width:95px; } .w100 { min-width:100px; max-width:100px; width:100px;} .w105 { min-width:105px; max-width:105px; } .w110 { min-width:110px; max-width:110px; width:110px;} .w115 { min-width:115px; max-width:115px; width:115px;} .w120{ min-width:120px; max-width:120px; width:120px;} .w125 { min-width:125px; max-width:125px; width:125px;} .w130 { min-width:130px; max-width:130px; width:130px;} .w140 { min-width:140px; max-width:140px; width:140px;} .w150 { min-width:150px; max-width:150px; width:150px;} .w155 { min-width:155px; max-width:155px; width:155px;} .w160 { min-width:160px; max-width:160px; width:160px;} .w165 { min-width:165px; max-width:165px; width:165px;} .w175 { min-width:175px; max-width:175px; width:175px;} .w180 { min-width:180px; max-width:180px; width:180px;} .w190 { min-width:190px; max-width:190px; width:190px;} .w200 { min-width:200px; max-width:200px; width:200px;} .w210 { min-width:210px; max-width:210px; width:210px;} .w220 { min-width:220px; max-width:220px; width:220px;} .w225 { min-width:225px; max-width:225px; width:225px;} .w230 { min-width:230px; max-width:230px; width:230px;} .w240 { min-width:240px; max-width:240px; } .w250 { min-width:250px; max-width:250px; } .w260 { min-width:260px; max-width:260px; } .w275 { min-width:275px; max-width:275px; } .w280 { min-width:280px; max-width:280px; } .w290 { min-width:290px; max-width:290px; } .w300 { min-width:300px; max-width:300px; } .w310 { min-width:310px; max-width:310px; } .w320 { min-width:320px; max-width:320px; } .w340 { min-width:340px; max-width:340px; } .w350 { min-width:350px; max-width:350px; } .w360 { min-width:360px; max-width:360px; } .w380 { min-width:380px; max-width:380px; } .w390 { min-width:390px; max-width:390px; } .w400 { min-width:400px; max-width:400px; } .w450 { min-width:450px; max-width:450px; } .w500 { min-width:500px; max-width:500px; } .w550 { min-width:550px; max-width:550px; } .w600 { min-width:600px; max-width:600px; } .w700 { min-width:700px; max-width:700px; }
0.235284
0.075483
body { margin: 0; padding: 0px; } .main-form { padding: 10px 30px; /* text-align: center; */ } h3 { width: 100%; padding: 15px; margin: 0 auto 0px auto; background: linear-gradient(#1b1f80, #253992); color: white; -webkit-app-region: drag; } .buttons { margin: 20px auto 12px auto; text-align: center; } .buttons button { width: 80px; height: 27px; margin: 10px; border: 1.5px solid #1b1f80; border-radius: 15px; background-color: transparent; transition: background 0.2s, color 0.2s; cursor: pointer; font-weight: 600; font-family: "Montserrat", sans-serif; color: #1b1f80; outline: none; } .buttons button:hover { background-color: #1b1f80; color: white; } input, textarea { /* border: none; */ border: 1px solid rgb(129, 129, 129); padding: 8px 10px 5px; border-radius: 5px; margin: 9px 0; font-family: "Montserrat", sans-serif; font-weight: 500; outline: none; width: 150px; } .datepicker { text-align: center; } .datepicker span { vertical-align: middle; font-size: 0.8em; font-weight: 500; line-height: 4; margin-right: 10px; } .datepicker input { width: 140px; } .keywords { /* clear: both; */ text-align: center; } .keywords button { /* display: inline; */ vertical-align: bottom; margin: 0 0 10px 5px; height: 30px; background-color: transparent; border: 1px solid #1b1f80; cursor: pointer; font-weight: 600; font-family: "Montserrat", sans-serif; font-size: 1em; } .keywords button:hover { background-color: #1b1f80; color: white; } .keywords input { /* width: 350px; */ margin-top: 20px; } .keys { text-align: center; } .keyword, .delete { border: 1px solid #1b1f80; color: #1b1f80; border-bottom-left-radius: 3px; border-top-left-radius: 3px; font-size: 0.7em; font-weight: 600; padding: 2px; background-color: #cdd2fd; } .delete { border-radius: 0; background-color: white; cursor: pointer; border-left-color: transparent; border-bottom-right-radius: 3px; border-top-right-radius: 3px; margin-right: 4px; } textarea { resize: none; height: 65px; line-height: 1.6; float: right; } input { vertical-align: top; } input:focus, textarea:focus { border-color: #fba141; } label { font-weight: 600; }
assets/css/add.css
body { margin: 0; padding: 0px; } .main-form { padding: 10px 30px; /* text-align: center; */ } h3 { width: 100%; padding: 15px; margin: 0 auto 0px auto; background: linear-gradient(#1b1f80, #253992); color: white; -webkit-app-region: drag; } .buttons { margin: 20px auto 12px auto; text-align: center; } .buttons button { width: 80px; height: 27px; margin: 10px; border: 1.5px solid #1b1f80; border-radius: 15px; background-color: transparent; transition: background 0.2s, color 0.2s; cursor: pointer; font-weight: 600; font-family: "Montserrat", sans-serif; color: #1b1f80; outline: none; } .buttons button:hover { background-color: #1b1f80; color: white; } input, textarea { /* border: none; */ border: 1px solid rgb(129, 129, 129); padding: 8px 10px 5px; border-radius: 5px; margin: 9px 0; font-family: "Montserrat", sans-serif; font-weight: 500; outline: none; width: 150px; } .datepicker { text-align: center; } .datepicker span { vertical-align: middle; font-size: 0.8em; font-weight: 500; line-height: 4; margin-right: 10px; } .datepicker input { width: 140px; } .keywords { /* clear: both; */ text-align: center; } .keywords button { /* display: inline; */ vertical-align: bottom; margin: 0 0 10px 5px; height: 30px; background-color: transparent; border: 1px solid #1b1f80; cursor: pointer; font-weight: 600; font-family: "Montserrat", sans-serif; font-size: 1em; } .keywords button:hover { background-color: #1b1f80; color: white; } .keywords input { /* width: 350px; */ margin-top: 20px; } .keys { text-align: center; } .keyword, .delete { border: 1px solid #1b1f80; color: #1b1f80; border-bottom-left-radius: 3px; border-top-left-radius: 3px; font-size: 0.7em; font-weight: 600; padding: 2px; background-color: #cdd2fd; } .delete { border-radius: 0; background-color: white; cursor: pointer; border-left-color: transparent; border-bottom-right-radius: 3px; border-top-right-radius: 3px; margin-right: 4px; } textarea { resize: none; height: 65px; line-height: 1.6; float: right; } input { vertical-align: top; } input:focus, textarea:focus { border-color: #fba141; } label { font-weight: 600; }
0.378115
0.095349
html, body { font-size: 16px; } body{ font-family: poppins, "Helvetica Neue", Helvetica, sans-serif; } html{ position: relative; min-height: 100%; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: inherit; font-weight: 300; line-height: 1.65; color: #292f33; } h2, .h2 { font-size: 38px; } .hljs{ background: transparent; } .container-fluid { padding-right: 15px; padding-left: 15px; } .searchBar{ height: 300px; background: #efeff1; background-size: cover; text-align: center; margin-bottom: 10px; } .searchBar h1{ font-size: 40px; font-weight: 300; margin: 75px 0 10px; color: #202D4A; line-height: 1; } .searchBar a{ color: #202D4A; } p.subheading { color: #899aa6; font-size: 25px; line-height: 1.2; } #frm_search{ border-top-left-radius: 30px; border-bottom-left-radius: 30px; } #btn_search{ border-top-right-radius: 30px; border-bottom-right-radius: 30px; } .featuredPanel{ height: 150px; text-align: center; } .panel-default { border: 1px solid #e3eaee; } .featuredArticles{ margin-top: 20px; } .featuredArticlesFooter{ background-color: #0c85d0; border-color: #0b7fc6; text-align: center; color: #fff; } .featuredArticlesFooter a{ color: #fff; } .navbar-default .navbar-brand { color: #fff; } .navbar-default .navbar-nav>li>a { color: #fff; } .navbar-default { border: none; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border: none; } .navbar-default { background-color: transparent; } .view_count{ font-size: 14px; } #notify_message{ position: fixed; display: none; z-index: 9999; padding-top: 10px; height: 50px; bottom: 0px; width: 100%; text-align: center; font-size: 22px; color: white; } .notify_message-success{ background-color: #18bc9c; } .notify_message-danger{ background-color: #e74c3c; } .searchResultList li a{ text-align: left; color: #337ab7; } #searchResult{ right: -2px; left: 0px; min-height: 200px; position: absolute; padding-top: 5px; z-index: 1000; } .panel-default { border: none; box-shadow: none; } .searchBar h1 { font-weight: 700; } #search_form { margin-top: 24px; } #search_form input { border-radius: 0; border: none; } #search_form #btn_search { border-radius: 0; color: white; background: #202d4a; border: none; padding: 10px 24px; } #search_form #btn_search:hover { background: rgba(32, 45, 74, .8); } .panel-default>.panel-heading { color: #202D4A; background: #eeeff1; border: none; } .panel-default > .panel-body { padding: 16px 0; background: #fafafa; } .body_text p { font-size: 1.2rem; } p.subheading { color: #4d586f; text-align: center; line-height: 1.25; } .list-group { margin: 0; } .list-group-item { border: none; background: transparent; padding: 0; } .list-group-item h4 { margin: 0; } .list-group-item a { display: block; padding: 16px; } #searchResult { background: white; margin: 0 16px; padding: 16px; text-align: left; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1); left: -15px; border-radius: 4px; } .show_footer{ margin-bottom: 80px; } .metaData h5{ padding-bottom: 0px; line-height: 1; } .footer { position: absolute; bottom: 0; width: 100%; height: 80px; text-align: center; padding-top: 25px; margin-top: 35px; background: #f5f8fa; border-top: 1px solid #e3eaee; }
public/themes/twitter/css/style.css
html, body { font-size: 16px; } body{ font-family: poppins, "Helvetica Neue", Helvetica, sans-serif; } html{ position: relative; min-height: 100%; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: inherit; font-weight: 300; line-height: 1.65; color: #292f33; } h2, .h2 { font-size: 38px; } .hljs{ background: transparent; } .container-fluid { padding-right: 15px; padding-left: 15px; } .searchBar{ height: 300px; background: #efeff1; background-size: cover; text-align: center; margin-bottom: 10px; } .searchBar h1{ font-size: 40px; font-weight: 300; margin: 75px 0 10px; color: #202D4A; line-height: 1; } .searchBar a{ color: #202D4A; } p.subheading { color: #899aa6; font-size: 25px; line-height: 1.2; } #frm_search{ border-top-left-radius: 30px; border-bottom-left-radius: 30px; } #btn_search{ border-top-right-radius: 30px; border-bottom-right-radius: 30px; } .featuredPanel{ height: 150px; text-align: center; } .panel-default { border: 1px solid #e3eaee; } .featuredArticles{ margin-top: 20px; } .featuredArticlesFooter{ background-color: #0c85d0; border-color: #0b7fc6; text-align: center; color: #fff; } .featuredArticlesFooter a{ color: #fff; } .navbar-default .navbar-brand { color: #fff; } .navbar-default .navbar-nav>li>a { color: #fff; } .navbar-default { border: none; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border: none; } .navbar-default { background-color: transparent; } .view_count{ font-size: 14px; } #notify_message{ position: fixed; display: none; z-index: 9999; padding-top: 10px; height: 50px; bottom: 0px; width: 100%; text-align: center; font-size: 22px; color: white; } .notify_message-success{ background-color: #18bc9c; } .notify_message-danger{ background-color: #e74c3c; } .searchResultList li a{ text-align: left; color: #337ab7; } #searchResult{ right: -2px; left: 0px; min-height: 200px; position: absolute; padding-top: 5px; z-index: 1000; } .panel-default { border: none; box-shadow: none; } .searchBar h1 { font-weight: 700; } #search_form { margin-top: 24px; } #search_form input { border-radius: 0; border: none; } #search_form #btn_search { border-radius: 0; color: white; background: #202d4a; border: none; padding: 10px 24px; } #search_form #btn_search:hover { background: rgba(32, 45, 74, .8); } .panel-default>.panel-heading { color: #202D4A; background: #eeeff1; border: none; } .panel-default > .panel-body { padding: 16px 0; background: #fafafa; } .body_text p { font-size: 1.2rem; } p.subheading { color: #4d586f; text-align: center; line-height: 1.25; } .list-group { margin: 0; } .list-group-item { border: none; background: transparent; padding: 0; } .list-group-item h4 { margin: 0; } .list-group-item a { display: block; padding: 16px; } #searchResult { background: white; margin: 0 16px; padding: 16px; text-align: left; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1); left: -15px; border-radius: 4px; } .show_footer{ margin-bottom: 80px; } .metaData h5{ padding-bottom: 0px; line-height: 1; } .footer { position: absolute; bottom: 0; width: 100%; height: 80px; text-align: center; padding-top: 25px; margin-top: 35px; background: #f5f8fa; border-top: 1px solid #e3eaee; }
0.410874
0.077973
@import url('https://fonts.googleapis.com/css?family=Khula'); *{ box-sizing: border-box; margin: 0; padding: 0; font-family: 'Khula', sans-serif; max-width: 100vw; z-index: 1; word-break: break-word; text-align: center; } a:link { text-decoration: none; color: #f33bc5; } a:visited{ color: #f3b3fd; } a:hover{ color: #d74dee; } h1{ font-size: 1.7em; } h2{ font-size: 2rem; } h3{ font-size: 2rem; color: white; } li{ list-style-type: none; } .hl{ width: 35%; margin: auto; margin-bottom: 3rem; background: radial-gradient(circle at center, rgb(243 123 252) -7%, rgba(159, 7, 108, 1)); border-radius: 1em; padding: 0.3rem; } .container{ display: grid; grid-template-columns: 14rem auto; grid-template-rows: 8rem 1fr 2rem; color: white; } body{ background-image: url(../../static/images/keyboard.jpeg); background-repeat: no-repeat; background-position: right top; background-attachment: fixed; background-size: 162%; } .layer{ background-color: rgba(138, 0, 230, .1); background-size: cover; } aside{ z-index: 34; } aside a:link{ color: white; } aside a:visited{ color: darkgrey; } nav{ display: flex; flex-direction: column; justify-content: space-around; background-color: black; position: fixed; left: 0; top: 0; width: 14rem; height: 100%; font-size: 1.25em; padding: .3em; flex-wrap: wrap; } aside a:hover{ color: lightgrey; } .show-nav-button{ position: fixed; right: .5rem; top: 10rem; height: 5.9rem; width: 5.9rem; background-image: radial-gradient(circle at center, #13011f 80%, #FE80FE); font-size: 1.40rem; font-weight: bold; transform: rotateX(28.5deg) rotateY(8deg) rotateZ(15deg); color: #BF46E1; border-radius: .25rem; border: solid #BF46E1 .1rem; box-shadow: .25rem .25rem .75rem black, -.25rem -.25rem .75rem black; } .side__name{ margin-bottom: 1.6em; width: 6.65em; border-bottom: solid grey; border-width: 2px; color: white; font-size: 1.20em; } header{ grid-column-start:1; grid-column-end: -1; margin-left: 14rem; } .header{ display: flex; flex-direction: column; align-self: center; justify-content: center; text-shadow: -1.25px -1.25px #000, 1.25px -1.25px #000, -1.25px 1.25px #000, 1.25px 1.25px #000; } .header__name{ align-self: center; font-size: 1.7em; margin-top: .5em; } .header__role{ margin-top:-.2em; align-self: center; } .inner{ display: grid; grid-column-start:0; grid-column-end: -1; } .bio{ display: flex; justify-content: space-around; margin-left: 4.2em; margin-right: 4em; margin-top: 5.5em; font-size: 1.2rem; } .salutation{ align-self: center; margin-right: 3em; flex-wrap: wrap; font-size: 1.2em; } .salutation h2{ font-size: 3rem; text-shadow: -1.25px -1.25px #000, 1.25px -1.25px #000, -1.25px 1.25px #000, 1.25px 1.25px #000; } .salutation p{ padding: .5rem 0rem .5rem 0rem; text-shadow: -1.25px -1.25px #000, 1.25px -1.25px #000, -1.25px 1.25px #000, 1.25px 1.25px #000; } .bio img{ height: 27rem; width: 28rem; border-radius: 4.2rem .1rem; } .bioImageMobile{ display: none; } .contactinfo img{ margin-top: 1rem; height: 7rem; width: 7rem; margin-left: 2.75rem; margin-right: 2.75rem; opacity: .8; } .projectImages{ height: 27rem; width: 35rem; border: solid black .1rem; border-radius: .35rem; transform: scale(1.0); } .skills{ display: flex; align-items: center; justify-content: center; flex-direction: column; align-items: center; margin-top: 11rem; } .skills h2{ font-size: 3.7rem; display:flex; justify-content: center; text-shadow: -1.25px -1.25px #000, 1.25px -1.25px #000, -1.25px 1.25px #000, 1.25px 1.25px #000; } .skills ul{ display: flex; margin-left: 3rem; /*margin-right: 3rem;*/ margin-top: 2rem; flex-wrap: wrap; justify-content: center; font-size: 2rem; font-weight: bold; } ul, menu, dir { -webkit-padding-start: 0rem; } .skills li{ margin-right: 2.5em; word-break: keep-all; text-shadow: -1.25px -1.25px #000, 1.25px -1.25px #000, -1.25px 1.25px #000, 1.25px 1.25px #000; } .contactinfo{ display: flex; flex-direction: column; align-items: center; width: 100%; margin-bottom: 1.5em; margin-top: 11rem; } .contactinfo h2{ font-size: 3.7rem; } .contactinfo a { margin-right: 4em; } .contact__links{ display: flex; flex-direction: row; justify-content: center; margin-top: 1.55em; margin-bottom: 5rem; flex-wrap: wrap; } .contact__links img:hover{ transform: scale(1.2); z-index: 2; opacity: .95; } aside li{ margin-bottom: 1rem; } .carouselLeftNav{ display: flex; justify-content: flex-end; } .content{ display: flex; flex-direction: column; align-items: center; margin-top: .5rem; } #projectContent{ margin-top: 1rem; } article h2 { display: flex; justify-content: center; } .btn a:link{ color: white; } .btn a:hover{ color: lightgrey; } .btn a:visited{ color: white; } .btn { background: radial-gradient(circle at center, rgba(228, 8, 54, .55) 77%, rgba(0, 0, 0, 1)); box-shadow: 0 0 13px black; padding: .5em; width: 12rem; border-radius: 1em; border: .2rem solid black; font-size: .8em; text-align: center; color: white; margin-top: .85rem; margin-bottom: 4rem; } footer{ align-items: center; grid-column-end: -1; display: flex; justify-content: space-between; padding-left:0rem; margin-left: 15rem; padding-right: 1rem; color: white; text-shadow: -1.25px -1.25px #000, 1.25px -1.25px #000, -1.25px 1.25px #000, 1.25px 1.25px #000; font-size: 1rem; } aside button, .projectDetails{ background: radial-gradient(circle at center, black 77%, rgba(159, 7, 108, 1)); box-shadow: 0 0 13px rgb(159, 7, 108); border-radius: .5em; font-size: 1rem; padding: .3em; font-weight: bold; color: #9F076C; border: solid black .3rem; background-size: 100% 100%; text-align: center; margin-top: 1.75rem; height: 2.9rem; width: 11rem; } .projectDetails{ margin-top: .5rem; margin-bottom: 7rem; } aside button:hover, .projectDetails:hover{ cursor: pointer; animation-name: navigationHideButton; animation: navigationHideButton 2s infinite; transition: .5s; } @keyframes navigationHideButton { 0% { box-shadow: 0 0 27px rgb(159, 7, 108); background: radial-gradient(circle at center, black 77%, rgba(159, 7, 108, .6)); }50% { box-shadow: 0 0 5px rgba(159, 7, 108, 1); background: radial-gradient(circle at center, black 60%, rgba(159, 7, 108, .3)); } 100% { box-shadow: 0 0 27px rgb(159, 7, 108); background: radial-gradient(circle at center, black 77%, rgba(159, 7, 108, .6)); } } .projectSection{ background-color: rgba( 7, 2, 8,.99); } .projectHead{ display: flex; justify-content: center; margin-top: 4rem; margin-bottom: 2.25rem; } .projectHead h2{ font-size: 2.85rem; text-align: center; } .carousel{ display: grid; grid-template-columns: .25fr .5fr .25fr; justify-content: center; } .carouselLeftNav{ display: flex; z-index: 2; } .carouselRightButton { display: flex; z-index: 2; } #left, #right { margin-top: 11rem; border: solid #BF46E1 .1rem; height: 5rem; width: 5rem; padding-top: .2rem; font-size: 3.4rem; color: #BF46E1; border-radius: .25rem; font-weight: bold; background-image: radial-gradient(circle at center, black 80%, #FE80FE); box-shadow: .25rem .25rem .75rem black, -.25rem -.25rem .75rem black; } #left:focus, #right:focus, #left:active, #right:active, #left:focus-within, #right:focus-within{ outline: 0; } #left{ padding-right: .2rem; } #right{ padding-left: .2rem; } #left:hover, #right:hover{ transform: scale(.9); cursor: pointer; animation-name: carouselImageDisplayButtons; animation: carouselImageDisplayButtons 2s infinite; transition:.5s; font-weight: bold; transition-timing-function: ease; } @keyframes carouselImageDisplayButtons { 0% { box-shadow: 0 0 23px rgba(191, 70, 225, 1); background: radial-gradient(circle at center, black 77%, rgba(191, 70, 225, 1)); }50% { box-shadow: 0 0 5px rgba(191, 70, 225, 1); background: radial-gradient(circle at center, black 70%, rgba(191, 70, 225, .6)); } 100% { box-shadow: 0 0 23px rgba(191, 70, 225, 1); background: radial-gradient(circle at center, black 77%, rgba(191, 70, 225, 1)); } } .modal { max-width: 100vw; display: none; position: fixed; z-index:2000; left:0; top:0; width:100%; height: 100%; max-height:100vh; overflow: auto; background-color: rgba(0,0,0,0.4); transition: all 5s; transform: translateX(0%) translateY(0%); } .modal-content { background-color: rgba(264, 264, 264, .90); margin: auto; align-items: center; padding: 2.6rem; border: 1px solid #FE80FE; border-radius: .2rem; width: 80%; font-size: 1.3rem; color: black; max-height: 100vh; z-index:2000; } .modal-content p{ margin-top: .85rem; } .md-modal{ height: 100%; display: flex; align-content: center; } .close { float:right; cursor: pointer; font-size: 2.5rem; font-weight: bold; position: relative; top: -2.6rem; right: -1rem; } .close:hover{ transform: scale(1.2); } #easterEggPageLink:link{ color: white; } #easterEggPageLink:visited{ color: white; } #easterEggPageLink:hover{ color: white; } .hiddenVideo{ display: none; } .easter__egg:hover{ transform: scale(1.02); } .displayVideo{ display: inline; } iframe{ margin-left: auto; margin-right: auto; margin-top: 3rem; margin-bottom: -5rem; width: 650px; height: 475px; } @media only screen and (min-width: 1450px){ .carousel{ grid-template-columns: .2fr .35fr .2fr; } #left, #right { margin-top: 19rem; transform: scale(1.2); } .projectImages{ height: 45rem; width: 48rem; } } @media only screen and (max-width: 1324px){ .bio{ display: block; margin-left: 0; margin-top: 2.25rem; margin-right: 0; } .salutation{ display: flex; justify-content: center; margin-left: 1rem; margin-right: 1rem; margin-bottom: 1rem; text-align: center } .bioImageMobile{ display: flex; justify-content: center; margin: 0; margin-bottom: 1rem; } .bioImage { display: none; } .bio img{ transform: scale(.9); border-radius: 4.2rem .1rem; } #desktopBioImage{ display: none; } } @media only screen and (max-width: 1024px){ footer p, a{ font-size: 90%; } } @media only screen and (max-width: 900px){ .carousel h3{ font-size: 1.5rem; } .projectImages{ height: 22rem; width: 22rem; } #left, #right { transform: scale(.7); } } @media only screen and (max-width: 768px) { *{ display: block; max-width: 100vw; margin: 0; padding: 0; } title{ display: none; } h2{ font-size: 3rem; } body{ background-image: url(../../static/images/keyboardCropped.jpg); background-position: center top; background-attachment: fixed; background-size: 60rem auto; } .btn{ margin-bottom: 2.5rem; } .container{ display: block; margin-left: 0; margin: 0; } header{ margin-left: 0; padding-top: 1rem; } .header__name{ margin-top: 0; } .header__role{ text-align: center; margin-left: .5rem; margin-right: .5rem; } .header__role h2{ font-size: 2.25rem; } .inner{ display: block; } .bio{ display: block; margin-left: 0; margin-top: 2.25rem; margin-right: 0; } .salutation{ display: flex; justify-content: center; margin-left: 1rem; margin-right: 1rem; margin-bottom: 1rem; text-align: center } .salutation p{ padding: .6rem 0rem .6rem 0rem; } .bioImageMobile{ display: flex; justify-content: center; margin: 0; margin-bottom: 1rem; } .bioImage { display: none; } .bio img{ height: 18rem; width: 19rem; border-radius: 4.2rem .1rem; } #desktopBioImage{ display: none; } .skills{ display: block; margin-top: 6rem; } .skills h2{ font-size: 3rem; } .skillsList{ margin-top: 2rem; margin-bottom: 1rem; } .skills ul{ display: grid; margin: 0; grid-template-columns: 1fr 1fr; font-size: 1.5rem; margin-left: 3rem; margin-right: 3rem; grid-gap: 1.1rem; text-align: center } .skills li{ margin-right: 0; } iframe{ margin-bottom: 0rem; } .contactinfo{ margin-top: 6rem; } .contactinfo a { margin-right: -.5rem; margin-left: -.5rem; } .contactinfo img{ height: 4rem; width: 4rem; } .contactinfo h2{ display: flex; text-align: center; font-size: 3rem; margin-left: 2rem; margin-right: 2rem; } .contact__links{ justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; margin-top: 0rem; } .projectDetails { margin-bottom: 4rem; } .projectHead{ margin-top: 1.75rem; margin-bottom: 0; padding-top: 1.5rem; } .content{ margin-right: .5rem; margin-left: .5rem; margin-top: 4rem; text-align: center; } .projectImages { height: 23rem; } #left, #right{ height: 2.75rem; width: 2.75rem; font-size: 1rem; align-items: center; display: flex; justify-content: center; z-index: 2; margin-top: 0rem } .carouselLeftNav, .carouselRightButton{ margin-top: 24rem; } .carouselLeftNav{ margin-right: -10.5rem; } .carouselRightButton { margin-left: -10.5rem; } nav{ display: block; } aside{ display: none; } footer{ display: grid; grid-template-columns: 15% auto 15%; padding-left: 1rem; padding-right: 1rem; flex-wrap: wrap; text-align: center; margin-left: 0rem; } .home__link__footer{ margin-left: 0rem; } } @media only screen and (max-width: 425px){ iframe{ width: 425px; height: auto; margin-bottom: 0rem; } .skills li { display: flex; flex-direction: column; justify-content: center; } footer{ display: flex; flex-direction: row; justify-content: center; } } @media only screen and (max-width: 375px){ iframe{ width: 375px; height: auto; } .carouselLeftNav{ margin-right: -9rem; } .carouselRightButton { margin-left: -9rem; } }
src/css/style.css
@import url('https://fonts.googleapis.com/css?family=Khula'); *{ box-sizing: border-box; margin: 0; padding: 0; font-family: 'Khula', sans-serif; max-width: 100vw; z-index: 1; word-break: break-word; text-align: center; } a:link { text-decoration: none; color: #f33bc5; } a:visited{ color: #f3b3fd; } a:hover{ color: #d74dee; } h1{ font-size: 1.7em; } h2{ font-size: 2rem; } h3{ font-size: 2rem; color: white; } li{ list-style-type: none; } .hl{ width: 35%; margin: auto; margin-bottom: 3rem; background: radial-gradient(circle at center, rgb(243 123 252) -7%, rgba(159, 7, 108, 1)); border-radius: 1em; padding: 0.3rem; } .container{ display: grid; grid-template-columns: 14rem auto; grid-template-rows: 8rem 1fr 2rem; color: white; } body{ background-image: url(../../static/images/keyboard.jpeg); background-repeat: no-repeat; background-position: right top; background-attachment: fixed; background-size: 162%; } .layer{ background-color: rgba(138, 0, 230, .1); background-size: cover; } aside{ z-index: 34; } aside a:link{ color: white; } aside a:visited{ color: darkgrey; } nav{ display: flex; flex-direction: column; justify-content: space-around; background-color: black; position: fixed; left: 0; top: 0; width: 14rem; height: 100%; font-size: 1.25em; padding: .3em; flex-wrap: wrap; } aside a:hover{ color: lightgrey; } .show-nav-button{ position: fixed; right: .5rem; top: 10rem; height: 5.9rem; width: 5.9rem; background-image: radial-gradient(circle at center, #13011f 80%, #FE80FE); font-size: 1.40rem; font-weight: bold; transform: rotateX(28.5deg) rotateY(8deg) rotateZ(15deg); color: #BF46E1; border-radius: .25rem; border: solid #BF46E1 .1rem; box-shadow: .25rem .25rem .75rem black, -.25rem -.25rem .75rem black; } .side__name{ margin-bottom: 1.6em; width: 6.65em; border-bottom: solid grey; border-width: 2px; color: white; font-size: 1.20em; } header{ grid-column-start:1; grid-column-end: -1; margin-left: 14rem; } .header{ display: flex; flex-direction: column; align-self: center; justify-content: center; text-shadow: -1.25px -1.25px #000, 1.25px -1.25px #000, -1.25px 1.25px #000, 1.25px 1.25px #000; } .header__name{ align-self: center; font-size: 1.7em; margin-top: .5em; } .header__role{ margin-top:-.2em; align-self: center; } .inner{ display: grid; grid-column-start:0; grid-column-end: -1; } .bio{ display: flex; justify-content: space-around; margin-left: 4.2em; margin-right: 4em; margin-top: 5.5em; font-size: 1.2rem; } .salutation{ align-self: center; margin-right: 3em; flex-wrap: wrap; font-size: 1.2em; } .salutation h2{ font-size: 3rem; text-shadow: -1.25px -1.25px #000, 1.25px -1.25px #000, -1.25px 1.25px #000, 1.25px 1.25px #000; } .salutation p{ padding: .5rem 0rem .5rem 0rem; text-shadow: -1.25px -1.25px #000, 1.25px -1.25px #000, -1.25px 1.25px #000, 1.25px 1.25px #000; } .bio img{ height: 27rem; width: 28rem; border-radius: 4.2rem .1rem; } .bioImageMobile{ display: none; } .contactinfo img{ margin-top: 1rem; height: 7rem; width: 7rem; margin-left: 2.75rem; margin-right: 2.75rem; opacity: .8; } .projectImages{ height: 27rem; width: 35rem; border: solid black .1rem; border-radius: .35rem; transform: scale(1.0); } .skills{ display: flex; align-items: center; justify-content: center; flex-direction: column; align-items: center; margin-top: 11rem; } .skills h2{ font-size: 3.7rem; display:flex; justify-content: center; text-shadow: -1.25px -1.25px #000, 1.25px -1.25px #000, -1.25px 1.25px #000, 1.25px 1.25px #000; } .skills ul{ display: flex; margin-left: 3rem; /*margin-right: 3rem;*/ margin-top: 2rem; flex-wrap: wrap; justify-content: center; font-size: 2rem; font-weight: bold; } ul, menu, dir { -webkit-padding-start: 0rem; } .skills li{ margin-right: 2.5em; word-break: keep-all; text-shadow: -1.25px -1.25px #000, 1.25px -1.25px #000, -1.25px 1.25px #000, 1.25px 1.25px #000; } .contactinfo{ display: flex; flex-direction: column; align-items: center; width: 100%; margin-bottom: 1.5em; margin-top: 11rem; } .contactinfo h2{ font-size: 3.7rem; } .contactinfo a { margin-right: 4em; } .contact__links{ display: flex; flex-direction: row; justify-content: center; margin-top: 1.55em; margin-bottom: 5rem; flex-wrap: wrap; } .contact__links img:hover{ transform: scale(1.2); z-index: 2; opacity: .95; } aside li{ margin-bottom: 1rem; } .carouselLeftNav{ display: flex; justify-content: flex-end; } .content{ display: flex; flex-direction: column; align-items: center; margin-top: .5rem; } #projectContent{ margin-top: 1rem; } article h2 { display: flex; justify-content: center; } .btn a:link{ color: white; } .btn a:hover{ color: lightgrey; } .btn a:visited{ color: white; } .btn { background: radial-gradient(circle at center, rgba(228, 8, 54, .55) 77%, rgba(0, 0, 0, 1)); box-shadow: 0 0 13px black; padding: .5em; width: 12rem; border-radius: 1em; border: .2rem solid black; font-size: .8em; text-align: center; color: white; margin-top: .85rem; margin-bottom: 4rem; } footer{ align-items: center; grid-column-end: -1; display: flex; justify-content: space-between; padding-left:0rem; margin-left: 15rem; padding-right: 1rem; color: white; text-shadow: -1.25px -1.25px #000, 1.25px -1.25px #000, -1.25px 1.25px #000, 1.25px 1.25px #000; font-size: 1rem; } aside button, .projectDetails{ background: radial-gradient(circle at center, black 77%, rgba(159, 7, 108, 1)); box-shadow: 0 0 13px rgb(159, 7, 108); border-radius: .5em; font-size: 1rem; padding: .3em; font-weight: bold; color: #9F076C; border: solid black .3rem; background-size: 100% 100%; text-align: center; margin-top: 1.75rem; height: 2.9rem; width: 11rem; } .projectDetails{ margin-top: .5rem; margin-bottom: 7rem; } aside button:hover, .projectDetails:hover{ cursor: pointer; animation-name: navigationHideButton; animation: navigationHideButton 2s infinite; transition: .5s; } @keyframes navigationHideButton { 0% { box-shadow: 0 0 27px rgb(159, 7, 108); background: radial-gradient(circle at center, black 77%, rgba(159, 7, 108, .6)); }50% { box-shadow: 0 0 5px rgba(159, 7, 108, 1); background: radial-gradient(circle at center, black 60%, rgba(159, 7, 108, .3)); } 100% { box-shadow: 0 0 27px rgb(159, 7, 108); background: radial-gradient(circle at center, black 77%, rgba(159, 7, 108, .6)); } } .projectSection{ background-color: rgba( 7, 2, 8,.99); } .projectHead{ display: flex; justify-content: center; margin-top: 4rem; margin-bottom: 2.25rem; } .projectHead h2{ font-size: 2.85rem; text-align: center; } .carousel{ display: grid; grid-template-columns: .25fr .5fr .25fr; justify-content: center; } .carouselLeftNav{ display: flex; z-index: 2; } .carouselRightButton { display: flex; z-index: 2; } #left, #right { margin-top: 11rem; border: solid #BF46E1 .1rem; height: 5rem; width: 5rem; padding-top: .2rem; font-size: 3.4rem; color: #BF46E1; border-radius: .25rem; font-weight: bold; background-image: radial-gradient(circle at center, black 80%, #FE80FE); box-shadow: .25rem .25rem .75rem black, -.25rem -.25rem .75rem black; } #left:focus, #right:focus, #left:active, #right:active, #left:focus-within, #right:focus-within{ outline: 0; } #left{ padding-right: .2rem; } #right{ padding-left: .2rem; } #left:hover, #right:hover{ transform: scale(.9); cursor: pointer; animation-name: carouselImageDisplayButtons; animation: carouselImageDisplayButtons 2s infinite; transition:.5s; font-weight: bold; transition-timing-function: ease; } @keyframes carouselImageDisplayButtons { 0% { box-shadow: 0 0 23px rgba(191, 70, 225, 1); background: radial-gradient(circle at center, black 77%, rgba(191, 70, 225, 1)); }50% { box-shadow: 0 0 5px rgba(191, 70, 225, 1); background: radial-gradient(circle at center, black 70%, rgba(191, 70, 225, .6)); } 100% { box-shadow: 0 0 23px rgba(191, 70, 225, 1); background: radial-gradient(circle at center, black 77%, rgba(191, 70, 225, 1)); } } .modal { max-width: 100vw; display: none; position: fixed; z-index:2000; left:0; top:0; width:100%; height: 100%; max-height:100vh; overflow: auto; background-color: rgba(0,0,0,0.4); transition: all 5s; transform: translateX(0%) translateY(0%); } .modal-content { background-color: rgba(264, 264, 264, .90); margin: auto; align-items: center; padding: 2.6rem; border: 1px solid #FE80FE; border-radius: .2rem; width: 80%; font-size: 1.3rem; color: black; max-height: 100vh; z-index:2000; } .modal-content p{ margin-top: .85rem; } .md-modal{ height: 100%; display: flex; align-content: center; } .close { float:right; cursor: pointer; font-size: 2.5rem; font-weight: bold; position: relative; top: -2.6rem; right: -1rem; } .close:hover{ transform: scale(1.2); } #easterEggPageLink:link{ color: white; } #easterEggPageLink:visited{ color: white; } #easterEggPageLink:hover{ color: white; } .hiddenVideo{ display: none; } .easter__egg:hover{ transform: scale(1.02); } .displayVideo{ display: inline; } iframe{ margin-left: auto; margin-right: auto; margin-top: 3rem; margin-bottom: -5rem; width: 650px; height: 475px; } @media only screen and (min-width: 1450px){ .carousel{ grid-template-columns: .2fr .35fr .2fr; } #left, #right { margin-top: 19rem; transform: scale(1.2); } .projectImages{ height: 45rem; width: 48rem; } } @media only screen and (max-width: 1324px){ .bio{ display: block; margin-left: 0; margin-top: 2.25rem; margin-right: 0; } .salutation{ display: flex; justify-content: center; margin-left: 1rem; margin-right: 1rem; margin-bottom: 1rem; text-align: center } .bioImageMobile{ display: flex; justify-content: center; margin: 0; margin-bottom: 1rem; } .bioImage { display: none; } .bio img{ transform: scale(.9); border-radius: 4.2rem .1rem; } #desktopBioImage{ display: none; } } @media only screen and (max-width: 1024px){ footer p, a{ font-size: 90%; } } @media only screen and (max-width: 900px){ .carousel h3{ font-size: 1.5rem; } .projectImages{ height: 22rem; width: 22rem; } #left, #right { transform: scale(.7); } } @media only screen and (max-width: 768px) { *{ display: block; max-width: 100vw; margin: 0; padding: 0; } title{ display: none; } h2{ font-size: 3rem; } body{ background-image: url(../../static/images/keyboardCropped.jpg); background-position: center top; background-attachment: fixed; background-size: 60rem auto; } .btn{ margin-bottom: 2.5rem; } .container{ display: block; margin-left: 0; margin: 0; } header{ margin-left: 0; padding-top: 1rem; } .header__name{ margin-top: 0; } .header__role{ text-align: center; margin-left: .5rem; margin-right: .5rem; } .header__role h2{ font-size: 2.25rem; } .inner{ display: block; } .bio{ display: block; margin-left: 0; margin-top: 2.25rem; margin-right: 0; } .salutation{ display: flex; justify-content: center; margin-left: 1rem; margin-right: 1rem; margin-bottom: 1rem; text-align: center } .salutation p{ padding: .6rem 0rem .6rem 0rem; } .bioImageMobile{ display: flex; justify-content: center; margin: 0; margin-bottom: 1rem; } .bioImage { display: none; } .bio img{ height: 18rem; width: 19rem; border-radius: 4.2rem .1rem; } #desktopBioImage{ display: none; } .skills{ display: block; margin-top: 6rem; } .skills h2{ font-size: 3rem; } .skillsList{ margin-top: 2rem; margin-bottom: 1rem; } .skills ul{ display: grid; margin: 0; grid-template-columns: 1fr 1fr; font-size: 1.5rem; margin-left: 3rem; margin-right: 3rem; grid-gap: 1.1rem; text-align: center } .skills li{ margin-right: 0; } iframe{ margin-bottom: 0rem; } .contactinfo{ margin-top: 6rem; } .contactinfo a { margin-right: -.5rem; margin-left: -.5rem; } .contactinfo img{ height: 4rem; width: 4rem; } .contactinfo h2{ display: flex; text-align: center; font-size: 3rem; margin-left: 2rem; margin-right: 2rem; } .contact__links{ justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; margin-top: 0rem; } .projectDetails { margin-bottom: 4rem; } .projectHead{ margin-top: 1.75rem; margin-bottom: 0; padding-top: 1.5rem; } .content{ margin-right: .5rem; margin-left: .5rem; margin-top: 4rem; text-align: center; } .projectImages { height: 23rem; } #left, #right{ height: 2.75rem; width: 2.75rem; font-size: 1rem; align-items: center; display: flex; justify-content: center; z-index: 2; margin-top: 0rem } .carouselLeftNav, .carouselRightButton{ margin-top: 24rem; } .carouselLeftNav{ margin-right: -10.5rem; } .carouselRightButton { margin-left: -10.5rem; } nav{ display: block; } aside{ display: none; } footer{ display: grid; grid-template-columns: 15% auto 15%; padding-left: 1rem; padding-right: 1rem; flex-wrap: wrap; text-align: center; margin-left: 0rem; } .home__link__footer{ margin-left: 0rem; } } @media only screen and (max-width: 425px){ iframe{ width: 425px; height: auto; margin-bottom: 0rem; } .skills li { display: flex; flex-direction: column; justify-content: center; } footer{ display: flex; flex-direction: row; justify-content: center; } } @media only screen and (max-width: 375px){ iframe{ width: 375px; height: auto; } .carouselLeftNav{ margin-right: -9rem; } .carouselRightButton { margin-left: -9rem; } }
0.437103
0.064831
@tailwind base; @tailwind components; @tailwind utilities; /* Custom utilities */ .max-w-fc { max-width: fit-content; } /* Custom Style */ html { width: 100%; height: 100%; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif; color: #33312D; @apply w-full antialiased bg-gray-100; } @screen md { * { scrollbar-width: thin; scrollbar-color: theme(colors.gray.500) theme(colors.gray.100); } ::-webkit-scrollbar { width: 12px; } ::-webkit-scrollbar-track { background: theme(colors.gray.100); } ::-webkit-scrollbar-thumb { background-color: theme(colors.gray.500); border-radius: 6px; border: 3px solid theme(colors.gray.100); } } h1, h2, h3, h4, h5, h6 { @apply font-bold; } h1 { font-size: 1.75rem; } h2 { font-size: 1.5rem; } h3 { font-size: 1.25rem; } h4 { font-size: 1rem; } h5 { font-size: 0.75rem; } h6 { font-size: 0.5rem; } @screen md { h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.5rem; } h4 { font-size: 1.25rem; } h5 { font-size: 1rem; } h6 { font-size: 0.875rem; } } /* Input */ input:disabled, .disabled { @apply cursor-not-allowed bg-gray-200 text-gray-700; } /* Button */ button:focus { outline: none; } .btn { @apply inline-flex items-center justify-center text-sm font-semibold py-2 px-4 rounded-md cursor-pointer; } .btn:focus { @apply outline-none shadow-inner; } /* Button Styles */ .btn-subtle { @apply bg-gray-200 text-gray-800; } .btn-subtle:hover { @apply bg-gray-300 text-gray-900; } .btn-subtle:focus { @apply bg-gray-400 text-gray-900; } .btn-success { @apply bg-green-500 text-white; background-image: linear-gradient( 135deg, rgba(72, 187, 120, 1) 0%, rgba(56, 161, 105, 1) 100%); } .btn-success:hover { @apply bg-green-600; background-image: linear-gradient( 135deg, rgba(56, 161, 105, 1) 0%, rgba(47, 133, 90, 1) 100%); } .btn-success:focus { @apply bg-green-800; background-image: none; } .btn-warning { @apply bg-yellow-500 text-white; background-image: linear-gradient( 135deg, rgba(237, 137, 54, 1) 0%, rgba(221, 107, 32, 1) 100%); } .btn-warning:hover { @apply bg-yellow-600; background-image: linear-gradient( 135deg, rgba(221, 107, 32, 1) 0%, rgba(192, 86, 33, 1) 100%); } .btn-warning:focus { @apply bg-yellow-800; background-image: none; } .btn-danger { @apply bg-red-500 text-white; background-image: linear-gradient( 135deg, rgba(245, 101, 101, 1) 0%, rgba(229, 62, 62, 1) 100%); } .btn-danger:hover { @apply bg-red-600; background-image: linear-gradient( 135deg, rgba(229, 62, 62, 1) 0%, rgba(197, 48, 48, 1) 100%); } .btn-danger:focus { @apply bg-red-800; background-image: none; } button:disabled, .disabled { @apply cursor-not-allowed bg-gray-300 text-gray-500 shadow-none border-transparent; background-image: none; } button:disabled:hover, .disabled:hover, button:disabled:focus, .disabled:focus { @apply bg-gray-300 text-gray-500 border-transparent shadow-none; background-image: none; } .btn-normal { @apply py-1 px-4 text-sm; } .btn-large { @apply py-2 px-5 text-base; } .button-xl { @apply py-2 px-5 text-base; }
src/tailwind.css
@tailwind base; @tailwind components; @tailwind utilities; /* Custom utilities */ .max-w-fc { max-width: fit-content; } /* Custom Style */ html { width: 100%; height: 100%; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif; color: #33312D; @apply w-full antialiased bg-gray-100; } @screen md { * { scrollbar-width: thin; scrollbar-color: theme(colors.gray.500) theme(colors.gray.100); } ::-webkit-scrollbar { width: 12px; } ::-webkit-scrollbar-track { background: theme(colors.gray.100); } ::-webkit-scrollbar-thumb { background-color: theme(colors.gray.500); border-radius: 6px; border: 3px solid theme(colors.gray.100); } } h1, h2, h3, h4, h5, h6 { @apply font-bold; } h1 { font-size: 1.75rem; } h2 { font-size: 1.5rem; } h3 { font-size: 1.25rem; } h4 { font-size: 1rem; } h5 { font-size: 0.75rem; } h6 { font-size: 0.5rem; } @screen md { h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.5rem; } h4 { font-size: 1.25rem; } h5 { font-size: 1rem; } h6 { font-size: 0.875rem; } } /* Input */ input:disabled, .disabled { @apply cursor-not-allowed bg-gray-200 text-gray-700; } /* Button */ button:focus { outline: none; } .btn { @apply inline-flex items-center justify-center text-sm font-semibold py-2 px-4 rounded-md cursor-pointer; } .btn:focus { @apply outline-none shadow-inner; } /* Button Styles */ .btn-subtle { @apply bg-gray-200 text-gray-800; } .btn-subtle:hover { @apply bg-gray-300 text-gray-900; } .btn-subtle:focus { @apply bg-gray-400 text-gray-900; } .btn-success { @apply bg-green-500 text-white; background-image: linear-gradient( 135deg, rgba(72, 187, 120, 1) 0%, rgba(56, 161, 105, 1) 100%); } .btn-success:hover { @apply bg-green-600; background-image: linear-gradient( 135deg, rgba(56, 161, 105, 1) 0%, rgba(47, 133, 90, 1) 100%); } .btn-success:focus { @apply bg-green-800; background-image: none; } .btn-warning { @apply bg-yellow-500 text-white; background-image: linear-gradient( 135deg, rgba(237, 137, 54, 1) 0%, rgba(221, 107, 32, 1) 100%); } .btn-warning:hover { @apply bg-yellow-600; background-image: linear-gradient( 135deg, rgba(221, 107, 32, 1) 0%, rgba(192, 86, 33, 1) 100%); } .btn-warning:focus { @apply bg-yellow-800; background-image: none; } .btn-danger { @apply bg-red-500 text-white; background-image: linear-gradient( 135deg, rgba(245, 101, 101, 1) 0%, rgba(229, 62, 62, 1) 100%); } .btn-danger:hover { @apply bg-red-600; background-image: linear-gradient( 135deg, rgba(229, 62, 62, 1) 0%, rgba(197, 48, 48, 1) 100%); } .btn-danger:focus { @apply bg-red-800; background-image: none; } button:disabled, .disabled { @apply cursor-not-allowed bg-gray-300 text-gray-500 shadow-none border-transparent; background-image: none; } button:disabled:hover, .disabled:hover, button:disabled:focus, .disabled:focus { @apply bg-gray-300 text-gray-500 border-transparent shadow-none; background-image: none; } .btn-normal { @apply py-1 px-4 text-sm; } .btn-large { @apply py-2 px-5 text-base; } .button-xl { @apply py-2 px-5 text-base; }
0.439507
0.071884
.classpageListContainer{ background-color: white; width: 204px !important; height: auto; max-height: 265px !important; border: 1px solid #999999; -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .htmlPanelNoClasspageContainer{ height: auto; padding: 10px; text-align: left; } .htmlPanelContentContainer{ max-height: 194px; height: auto; /* overflow-y: auto; */ /* padding: 10px; */ text-align: center; clear: both; } .newClasspageLink{ text-align: left; float: left; text-decoration: none !important; padding: 9px 5px 8px 32px !important; color: #515151; font-size: 12px; cursor: pointer; width: 82%; background: url(images/Classpage/plus.png) 14px 9px no-repeat; } .newClasspageLink:hover{ background-color: #cfe3f1 !important; color: #515151; opacity: 1; width:100%; } .classpageListTitle{ float: left; text-decoration: none; padding: 10px 10px 10px 16px; color: rgb(81,81,81); font-size: 12px; } .classpageBottomLine{ /* margin-left: 17px; */ background-color:#CCC; width: 100%; height:1px; float: left; } .loadingText{ font-style: italic; color: rgb(153, 153, 153); text-align: center; } .htmlPanelClasspageList{ text-align: left; width: 204px !important; height: auto; max-height: 205px !important; /* min-height: 194px; */ } .scrollPanelClasspageList{ text-align: left; width: 204px; height: auto; max-height: 194px !important; /* min-height: 194px; */ overflow-y: auto !important; overflow-x: hidden !important; } .plus{ font-weight: bold; font-size: 18px !important; vertical-align: middle; padding-right: 3px; } .plusImg{ background: url('images/Classpage/plus.png') no-repeat; } .gooruGuide{ text-decoration: none; color: #1076bb; cursor: pointer; } .gooruGuide:hover{ text-decoration: none; color: #87BADD; cursor: pointer; } .noClasspageYet{ margin-bottom: 20px; } .classpageLoadingOnPagination { font-family: Arial, Helvetica, sans-serif; color: #999; padding: 5px 5px 5px 15px; font-style: italic; } .classpageTitleHeader { font-family: Arial, Helvetica, sans-serif; color: #515151; padding: 5px 5px 5px 15px; font-size: 12px; white-space: nowrap !important; overflow: hidden; text-overflow: ellipsis; width: 184px; } .classpageTitleHeaderActive { font-weight: bold; font-family: Arial, Helvetica, sans-serif; color: rgb(81,81,81); padding: 5px 5px 5px 15px; font-size:12px; white-space: nowrap !important; overflow: hidden; text-overflow: ellipsis; width: 95%; } .classpageTitleHeader:hover,.classpageTitleStudyHeader:hover, .classpageTitleHeaderActive:hover { background-color: #CFE3F1; cursor: pointer; } .classpageTitleStudyHeader { font-family: Arial, Helvetica, sans-serif; color: #515151; padding: 5px 5px 5px 15px; font-size: 12px; white-space: nowrap !important; overflow: hidden; text-overflow: ellipsis; width: 90%; } .inputContainer{ padding: 8px; padding-top:12px; } .tooltipContentTitle { padding-bottom: 10px; } .classCodeTxtBox { width: 118px; border: 1px #E3E3E3 solid !important; background-color: #FFF !important; font-size: 12px !important; outline: 0; display: inline-block; padding: 6px; font-family: Tahoma, sans-serif !important; text-transform: uppercase; }
src/main/java/org/ednovo/gooru/client/mvp/classpages/ClasspageListPopup.css
.classpageListContainer{ background-color: white; width: 204px !important; height: auto; max-height: 265px !important; border: 1px solid #999999; -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .htmlPanelNoClasspageContainer{ height: auto; padding: 10px; text-align: left; } .htmlPanelContentContainer{ max-height: 194px; height: auto; /* overflow-y: auto; */ /* padding: 10px; */ text-align: center; clear: both; } .newClasspageLink{ text-align: left; float: left; text-decoration: none !important; padding: 9px 5px 8px 32px !important; color: #515151; font-size: 12px; cursor: pointer; width: 82%; background: url(images/Classpage/plus.png) 14px 9px no-repeat; } .newClasspageLink:hover{ background-color: #cfe3f1 !important; color: #515151; opacity: 1; width:100%; } .classpageListTitle{ float: left; text-decoration: none; padding: 10px 10px 10px 16px; color: rgb(81,81,81); font-size: 12px; } .classpageBottomLine{ /* margin-left: 17px; */ background-color:#CCC; width: 100%; height:1px; float: left; } .loadingText{ font-style: italic; color: rgb(153, 153, 153); text-align: center; } .htmlPanelClasspageList{ text-align: left; width: 204px !important; height: auto; max-height: 205px !important; /* min-height: 194px; */ } .scrollPanelClasspageList{ text-align: left; width: 204px; height: auto; max-height: 194px !important; /* min-height: 194px; */ overflow-y: auto !important; overflow-x: hidden !important; } .plus{ font-weight: bold; font-size: 18px !important; vertical-align: middle; padding-right: 3px; } .plusImg{ background: url('images/Classpage/plus.png') no-repeat; } .gooruGuide{ text-decoration: none; color: #1076bb; cursor: pointer; } .gooruGuide:hover{ text-decoration: none; color: #87BADD; cursor: pointer; } .noClasspageYet{ margin-bottom: 20px; } .classpageLoadingOnPagination { font-family: Arial, Helvetica, sans-serif; color: #999; padding: 5px 5px 5px 15px; font-style: italic; } .classpageTitleHeader { font-family: Arial, Helvetica, sans-serif; color: #515151; padding: 5px 5px 5px 15px; font-size: 12px; white-space: nowrap !important; overflow: hidden; text-overflow: ellipsis; width: 184px; } .classpageTitleHeaderActive { font-weight: bold; font-family: Arial, Helvetica, sans-serif; color: rgb(81,81,81); padding: 5px 5px 5px 15px; font-size:12px; white-space: nowrap !important; overflow: hidden; text-overflow: ellipsis; width: 95%; } .classpageTitleHeader:hover,.classpageTitleStudyHeader:hover, .classpageTitleHeaderActive:hover { background-color: #CFE3F1; cursor: pointer; } .classpageTitleStudyHeader { font-family: Arial, Helvetica, sans-serif; color: #515151; padding: 5px 5px 5px 15px; font-size: 12px; white-space: nowrap !important; overflow: hidden; text-overflow: ellipsis; width: 90%; } .inputContainer{ padding: 8px; padding-top:12px; } .tooltipContentTitle { padding-bottom: 10px; } .classCodeTxtBox { width: 118px; border: 1px #E3E3E3 solid !important; background-color: #FFF !important; font-size: 12px !important; outline: 0; display: inline-block; padding: 6px; font-family: Tahoma, sans-serif !important; text-transform: uppercase; }
0.225929
0.059592
html { margin: 0px auto; padding: 0px; overflow-x: hidden; } body { margin: 0px auto; min-height: 100vh; } /* Under line animantion CSS - Soursed from: https://www.youtube.com/watch?v=5PzWwyVB2-c */ #link { display: inline-block; position: relative; text-decoration: none; } #link::before { content: ''; position: absolute; width: 100%; transform: scaleX(0); height: 2px; bottom: 0; left: 0; background-color: #111111; transform-origin: bottom right; transition: transform 0.25s ease-out; } #link:hover::before { transform: scaleX(1); transform-origin: bottom left; } hr { border-color: rgb(110, 110, 110); /*rgba(11, 11, 11, 1) */ border-width: 0.5px; width: 99%; } /*Nav Bar*/ nav img { max-height: 50px; } .nav-links{ display: flex; /*justify-content: space-around;*/ width: 100%; margin: 0 auto; padding: 0; height: 80px; } .nav-links li { display: inline-block; list-style-type: none; /*Remove bullet points*/ text-decoration: none; font-family: 'Open Sans', sans-serif; width: calc(100% / 5); /*Width / no. links*/ height: 100%; text-align: center; } .nav-links li a{ display: inline-block; color: black; font-size: 16px; font-family: 'Open Sans', sans-serif; text-decoration: none; /*Remove underline*/ padding-top: 29px; /* border-right: solid 2px black; */ } /* By giving the Onslow College logo an ID it allows me to over ride the padding given on the a tags so that I can center the logo */ #logo { padding-top: 12.5px; /* Over riding the padding on a tags */ } /* Main Image CSS */ .main { position: relative; text-align: center; padding: 0; margin: 0 auto; } /* "Onslow College Enviro Group - Main Text" */ .main h1 { color: white; font-size: 65px; font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2em; position: absolute; bottom: 50%; left: 15%; } .main br { margin-right: 100%; } .dark-layer { background-color: rgb(0, 0, 0, 0.2); position: relative; } .main img { width: 100%; /* Something I would improve on is going out and taking my own high quality images so that I am able to scale them to the size that I require for my website */ position: relative; z-index: -1; } p { font-size: 16px; } /* Background Image Div CSS*/ .background { background-image: url(../img/background.png); background-repeat: no-repeat; background-size: 100vw auto; overflow: hidden; margin: 0; } /* About Us CSS */ .about-us { padding: 0 5%; } .about-us h2 { color: black; font-size: 40px; font-family: 'Noto Sans', sans-serif; font-weight: 400; line-height: 1.2em; margin-bottom: 21px; text-align: center; } .about-us h3 { color: #3b758c; font-size: 24px; font-family: 'Noto Sans', sans-serif; font-weight: 400; line-height: 1.2em; text-align: left; margin-top: 0px; } .about-us p { color: black; font-size: 18px; font-family: 'Open Sans', sans-serif; font-weight: 400; line-height: 1.5em; text-align: left; margin-bottom: 33.2px; } /* Our Projects CSS */ .our-projects { padding: 0 5%; } .our-projects h2 { color: black; font-size: 40px; font-family: 'Noto Sans', sans-serif; font-weight: 400; line-height: 1.2em; margin-bottom: 21px; text-align: center; } #our-projects-blurb { display: block; position: relative; text-align: center; } .our-projects p { color: black; font-size: 18px; font-family: 'Open Sans', sans-serif; font-weight: 400; line-height: 1.2em; text-align: left; /* z-index: 1; */ } #breaker { display: table; background: rgba(169, 212, 217, 1); /* #3b758c - rgba(59, 117, 140, 0.5) */ width: 20vw; height: 3px; margin: 0px auto; } /* Home Page - Projects CSS */ #top-box { margin-top: 13vh; } .box { position: relative; left: 50%; width: 100%; transform: translate(-50%, -50%); margin: 5vh 0 0 0; box-sizing:border-box; display: flex; } .box .imgbox { width: 150px; flex: 0 0 150px; } #project-img { /* max-width: 100%;s */ border-radius: 4px; } .box .imgbox img { /* max-width: 100%; */ border-radius: 30px; width: 30px; } .box .content { padding-left: 20px; } .box .content h3 { font-family: 'Noto Sans', sans-serif; font-size: 28px; font-weight: 400; color: #1c2836; margin: 0 0 0 0; } .box .content p { font-family: 'Open Sans', sans-serif; font-size: 18px; line-height: 1.4em; margin-bottom: 0px; } /* Individual Project Page CSS */ #project-title { width: 100%; left: 50%; top: 0px; transform: translate(-50%, 0); } .project-location { display: flex; position: absolute; color: white; bottom: 20px; width: 100%; margin: 0 15%; } .project-location .fa-map-marker-alt { font-size: 28px; } .project-location a { position: absolute; font-family: 'Open Sans', sans-serif; font-size: 22px; font-weight: 400; color: white; margin: 0 15px; } .project-location #link::before { background-color: white; } #filler { position: relative; font-family: 'Open Sans', sans-serif; font-size: 22px; margin: 0px -5px; } .project-article { font-family: 'Open Sans', sans-serif; font-size: 20px; margin: 4% 15%; } .project-article p { font-size: 20px; margin-bottom: 0px; } .project-article ul { padding: 0 0 0 20px; margin-top: 10px; } .project-article li { padding: 0 10px; } /* Get Involved CSS */ .get-involved { padding: 0 5%; margin: 0 0 33.2px 0; } .get-involved h2 { color: black; font-size: 40px; font-family: 'Noto Sans', sans-serif; font-weight: 400; line-height: 1.2em; margin-bottom: 21px; text-align: center; } .get-involved p { color: black; font-size: 18px; font-family: 'Open Sans', sans-serif; font-weight: 400; line-height: 1.5em; text-align: center; margin: 1rem 25%; } #info { /* Used on Get Involved page */ margin: 1.8em 25%; } .get-involved input[type=text], input[type=email] { display: inline-block; width: 50%; font-size: 20px; line-height: 1.2em; border: 2px solid #aaa; border-radius: 5px; outline-color: #02c171; transition: 0.3s; margin: 8px 25%; padding: 8px; } #comment { /* padding: 8px 8px 50px 8px; */ } .get-involved button { display: inline-block; font-family: 'Open Sans', sans-serif; font-size: 20px; line-height: 1.2em; background-color: #02c171; border: 1px solid #02c171; border-radius: 4px; outline: none; color: white; margin: 8px 0 8px calc(75% - 89px); padding: 8px 1.5em; } .get-involved button:hover { text-decoration: underline; } /* Footer CSS */ footer { position: relative; text-align: center; } #footer-divider { margin: 0px auto; width: 100%; } footer p { font-family: 'Open Sans', sans-serif; text-align: center; color: black; width: 100%; margin: 16px 0 0 0; left: 50%; } footer a { left: calc(50% - width) } #footer-breaker { border-color: rgba(170, 170, 170, 0.2); width: 98%; margin: 0px auto; } /* Back to top icon from fontawesome */ i.fa-chevron-up{ display: inline-block; color: #444; font-size: 40px; left: 50%; width: 100%; margin: 16px 0 0 0; text-align: center; } /* Title: font-family: 'Montserrat', sans-serif; 400, 700, 800 Headers: font-family: 'Noto Sans', sans-serif; 400, 700 Body: font-family: 'Open Sans', sans-serif; 400, 700 /* Comments: - Going back and redoing the CSS I would define what font each text element has at the top, that way I woundnt have to go through each h1, h2/h3 and p elements in the css providing the correct font family. - In my next website I will reasearch more into what the background of each cell (e.g. about us, get involved, etc...) could look like, rather than making a background img like I did for this project. */
css/styles.css
html { margin: 0px auto; padding: 0px; overflow-x: hidden; } body { margin: 0px auto; min-height: 100vh; } /* Under line animantion CSS - Soursed from: https://www.youtube.com/watch?v=5PzWwyVB2-c */ #link { display: inline-block; position: relative; text-decoration: none; } #link::before { content: ''; position: absolute; width: 100%; transform: scaleX(0); height: 2px; bottom: 0; left: 0; background-color: #111111; transform-origin: bottom right; transition: transform 0.25s ease-out; } #link:hover::before { transform: scaleX(1); transform-origin: bottom left; } hr { border-color: rgb(110, 110, 110); /*rgba(11, 11, 11, 1) */ border-width: 0.5px; width: 99%; } /*Nav Bar*/ nav img { max-height: 50px; } .nav-links{ display: flex; /*justify-content: space-around;*/ width: 100%; margin: 0 auto; padding: 0; height: 80px; } .nav-links li { display: inline-block; list-style-type: none; /*Remove bullet points*/ text-decoration: none; font-family: 'Open Sans', sans-serif; width: calc(100% / 5); /*Width / no. links*/ height: 100%; text-align: center; } .nav-links li a{ display: inline-block; color: black; font-size: 16px; font-family: 'Open Sans', sans-serif; text-decoration: none; /*Remove underline*/ padding-top: 29px; /* border-right: solid 2px black; */ } /* By giving the Onslow College logo an ID it allows me to over ride the padding given on the a tags so that I can center the logo */ #logo { padding-top: 12.5px; /* Over riding the padding on a tags */ } /* Main Image CSS */ .main { position: relative; text-align: center; padding: 0; margin: 0 auto; } /* "Onslow College Enviro Group - Main Text" */ .main h1 { color: white; font-size: 65px; font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2em; position: absolute; bottom: 50%; left: 15%; } .main br { margin-right: 100%; } .dark-layer { background-color: rgb(0, 0, 0, 0.2); position: relative; } .main img { width: 100%; /* Something I would improve on is going out and taking my own high quality images so that I am able to scale them to the size that I require for my website */ position: relative; z-index: -1; } p { font-size: 16px; } /* Background Image Div CSS*/ .background { background-image: url(../img/background.png); background-repeat: no-repeat; background-size: 100vw auto; overflow: hidden; margin: 0; } /* About Us CSS */ .about-us { padding: 0 5%; } .about-us h2 { color: black; font-size: 40px; font-family: 'Noto Sans', sans-serif; font-weight: 400; line-height: 1.2em; margin-bottom: 21px; text-align: center; } .about-us h3 { color: #3b758c; font-size: 24px; font-family: 'Noto Sans', sans-serif; font-weight: 400; line-height: 1.2em; text-align: left; margin-top: 0px; } .about-us p { color: black; font-size: 18px; font-family: 'Open Sans', sans-serif; font-weight: 400; line-height: 1.5em; text-align: left; margin-bottom: 33.2px; } /* Our Projects CSS */ .our-projects { padding: 0 5%; } .our-projects h2 { color: black; font-size: 40px; font-family: 'Noto Sans', sans-serif; font-weight: 400; line-height: 1.2em; margin-bottom: 21px; text-align: center; } #our-projects-blurb { display: block; position: relative; text-align: center; } .our-projects p { color: black; font-size: 18px; font-family: 'Open Sans', sans-serif; font-weight: 400; line-height: 1.2em; text-align: left; /* z-index: 1; */ } #breaker { display: table; background: rgba(169, 212, 217, 1); /* #3b758c - rgba(59, 117, 140, 0.5) */ width: 20vw; height: 3px; margin: 0px auto; } /* Home Page - Projects CSS */ #top-box { margin-top: 13vh; } .box { position: relative; left: 50%; width: 100%; transform: translate(-50%, -50%); margin: 5vh 0 0 0; box-sizing:border-box; display: flex; } .box .imgbox { width: 150px; flex: 0 0 150px; } #project-img { /* max-width: 100%;s */ border-radius: 4px; } .box .imgbox img { /* max-width: 100%; */ border-radius: 30px; width: 30px; } .box .content { padding-left: 20px; } .box .content h3 { font-family: 'Noto Sans', sans-serif; font-size: 28px; font-weight: 400; color: #1c2836; margin: 0 0 0 0; } .box .content p { font-family: 'Open Sans', sans-serif; font-size: 18px; line-height: 1.4em; margin-bottom: 0px; } /* Individual Project Page CSS */ #project-title { width: 100%; left: 50%; top: 0px; transform: translate(-50%, 0); } .project-location { display: flex; position: absolute; color: white; bottom: 20px; width: 100%; margin: 0 15%; } .project-location .fa-map-marker-alt { font-size: 28px; } .project-location a { position: absolute; font-family: 'Open Sans', sans-serif; font-size: 22px; font-weight: 400; color: white; margin: 0 15px; } .project-location #link::before { background-color: white; } #filler { position: relative; font-family: 'Open Sans', sans-serif; font-size: 22px; margin: 0px -5px; } .project-article { font-family: 'Open Sans', sans-serif; font-size: 20px; margin: 4% 15%; } .project-article p { font-size: 20px; margin-bottom: 0px; } .project-article ul { padding: 0 0 0 20px; margin-top: 10px; } .project-article li { padding: 0 10px; } /* Get Involved CSS */ .get-involved { padding: 0 5%; margin: 0 0 33.2px 0; } .get-involved h2 { color: black; font-size: 40px; font-family: 'Noto Sans', sans-serif; font-weight: 400; line-height: 1.2em; margin-bottom: 21px; text-align: center; } .get-involved p { color: black; font-size: 18px; font-family: 'Open Sans', sans-serif; font-weight: 400; line-height: 1.5em; text-align: center; margin: 1rem 25%; } #info { /* Used on Get Involved page */ margin: 1.8em 25%; } .get-involved input[type=text], input[type=email] { display: inline-block; width: 50%; font-size: 20px; line-height: 1.2em; border: 2px solid #aaa; border-radius: 5px; outline-color: #02c171; transition: 0.3s; margin: 8px 25%; padding: 8px; } #comment { /* padding: 8px 8px 50px 8px; */ } .get-involved button { display: inline-block; font-family: 'Open Sans', sans-serif; font-size: 20px; line-height: 1.2em; background-color: #02c171; border: 1px solid #02c171; border-radius: 4px; outline: none; color: white; margin: 8px 0 8px calc(75% - 89px); padding: 8px 1.5em; } .get-involved button:hover { text-decoration: underline; } /* Footer CSS */ footer { position: relative; text-align: center; } #footer-divider { margin: 0px auto; width: 100%; } footer p { font-family: 'Open Sans', sans-serif; text-align: center; color: black; width: 100%; margin: 16px 0 0 0; left: 50%; } footer a { left: calc(50% - width) } #footer-breaker { border-color: rgba(170, 170, 170, 0.2); width: 98%; margin: 0px auto; } /* Back to top icon from fontawesome */ i.fa-chevron-up{ display: inline-block; color: #444; font-size: 40px; left: 50%; width: 100%; margin: 16px 0 0 0; text-align: center; } /* Title: font-family: 'Montserrat', sans-serif; 400, 700, 800 Headers: font-family: 'Noto Sans', sans-serif; 400, 700 Body: font-family: 'Open Sans', sans-serif; 400, 700 /* Comments: - Going back and redoing the CSS I would define what font each text element has at the top, that way I woundnt have to go through each h1, h2/h3 and p elements in the css providing the correct font family. - In my next website I will reasearch more into what the background of each cell (e.g. about us, get involved, etc...) could look like, rather than making a background img like I did for this project. */
0.561335
0.057071
@font-face { font-family: 'Proxima Nova Rg'; src: url('../Fonts/ProximaNova-Regular.eot'); src: url('../Fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'), url('../Fonts/ProximaNova-Regular.woff') format('woff'), url('../Fonts/ProximaNova-Regular.ttf') format('truetype'); font-weight: normal; font-style: normal; } @font-face { font-family: 'Mission Script'; src: url('../Fonts/Mission-Script.eot'); src: url('../Fonts/Mission-Script.eot?#iefix') format('embedded-opentype'), url('../Fonts/Mission-Script.woff') format('woff'), url('../Fonts/Mission-Script.ttf') format('truetype'); font-weight: normal; font-style: normal; } body{ font-family: 'Proxima Nova Alt Rg'; } div#container { max-width: 1174px; width: 100%; margin: 0 auto; } header#header, footer#main-footer { float: left; width: 100%; } header#header { padding-top: 15px; padding-bottom: 15px; background: transparent; } ul.main-nav li a { color: #fff; font-size: 16px; text-transform: uppercase; } ul.main-nav li { display: inline-block; padding: 0 17px; } ul.main-nav{ list-style: none; padding: 0; margin: 0; text-align: right; margin-top: 22px; } ul.main-nav li a:hover { text-decoration: none; color: #1077d4; transition: all ease 0.3s; } footer#main-footer { background: #e7e7e7; padding-top: 91px; padding-bottom: 0; } .footer p { color: #000; text-align: center; font-weight: 400; font-size: 18px; line-height: normal; margin-bottom: 0; text-shadow: 0px 1px #8b8b8b; } .footer p a { text-decoration: none; color: #0078b2; } .footer-menu ul li a span { text-decoration: none; color: #0078b2; } ::-webkit-input-placeholder { /* Chrome/Opera/Safari */ color: #666; } ::-moz-placeholder { /* Firefox 19+ */ color: #666; } :-ms-input-placeholder { /* IE 10+ */ color: #666; } :-moz-placeholder { /* Firefox 18- */ color: #666; } .logo-img { text-align: center; padding-bottom: 32px; border-bottom: 1px solid #cfcfcf; margin-bottom: 11px; float: left; width: 100%; } .footer-menu h3 { font-size: 16px; font-weight: bold; font-family: 'Proxima Nova Alt Rg'; } .footer-menu ul li a { font-family: 'Proxima Nova Alt Rg'; color: #5c5c5c; font-size: 16px; } .footer-menu ul { list-style: none; padding: 0; margin: 0; } .footer-menu ul li a { font-family: 'Proxima Nova Alt Rg'; color: #5c5c5c; font-size: 16px; text-decoration: none; text-shadow: 0px 1px #8b8b8b; } .footer-menu ul li a:hover { transition: all ease 0.3s; color: #0078b2; } .footer-menu ul li { margin-bottom: 9px; } .footer-menu { margin-top: 62px; margin-bottom: 55px; } .copy-right { float: left; width: 100%; padding: 20px 0; border-top: 1px solid #cfcfcf; } .row.footer-links { max-width: 93%; margin: 0 auto; width: 100%; } .home-slider { float: left; width: 100%; } .slider.float-left { width: 100%; } header#header { position: fixed; top: 0; z-index: 999; } .home-slider ol.carousel-indicators li { border-radius: 50%; max-width: 10px !important; height: 12px; border: 1px solid #fff; background: #fff !important; } .home-slider ol.carousel-indicators li.active { background: #0078b2 !important; border: 1px solid #0078b2; } header.dark-header { background-color: rgba(0,0,0,0.49) !important; } .location-search { width: 100%; margin: 0 auto; max-width: 67%; padding: 35px 22px; position: absolute; top: 23%; left: 0; right: 0; } .location-search form label, form input { width: 100%; } .location-search form label { font-family: 'Proxima Nova Alt Rg'; color: #454545; font-size: 17px; margin-bottom: 0; } .location-search form input[type="text"] { height: 38px; border: 1px solid #b9b9b9; color: #b9b9b9; } .location-search form input[type="text"] { height: 38px; border: 2px solid #b9b9b9; color: #a9a9a9; padding: 3px 16px; font-family: 'Montserrat'; font-size: 13px; background: #fff; margin-bottom: 20px; } .location-search form input[type="text"]:placeholder{ color: #a9a9a9; } .location-search form input[type="text"]:focus{ outline: none !important; border-color: #e03544; box-shadow: 0 0 10px #e03544; } .location-search form input[type="submit"] { background: #e03544; height: 38px; border: 2px solid #e03544; color: #fff; padding: 3px 16px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; max-width: 217px; margin: 0 auto !important; display: block; } .location-search form input[type="submit"]:hover { border: 2px solid rgb(289, 52, 65) !important; color: #fff; cursor: pointer; background: rgb(289, 52, 65) !important; transition: background ease 0.3s; text-decoration: none; } .location-search form { padding: 35px 22px; background: rgba(255,255,255,0.6); float: left; width: 100%; } .how-works { float: left; width: 100%; background: #0078b2; padding: 27px 0; } .how-works h1 { font-family: 'Montserrat' !important; color: #fff; font-weight: 200; font-size: 38px; margin: 0; padding: 0; text-align:end; } .how-works p { font-family: 'Montserrat' !important; color: #fff; font-weight: 300; font-size: 16px; margin: 0; text-align: center; padding-top: 9px; } p.btn a { border-color: #fff; color: #fff; text-decoration: none; } p.btn { border-color: #fff; color: #fff; text-decoration: none; } p.btn:hover{ background: #fff; } p.btn:hover a { color: #0078b2; } h1.mns-headings { text-align: center; font-family: 'Proxima Nova Alt Rg'; font-size: 30px; font-weight: bold; margin-top: 54px; } p.mns-para { text-align: center; font-family: 'Proxima Nova Alt Rg'; font-size: 18px; color: #262626; margin-bottom: 22px; } .attraction { float: left; width: 100%; } .atrc { float: left; text-align: center; width: 100%; border-top: 1px solid #c3cad5; } .atrc ul { list-style: none; padding: 0; margin: 0; text-align: center; } .col-xs-12.col-sm-4.col-md-2.col-lg-2.float-left.europe { background: url(../img/europe.png); background-size: cover; } .col-xs-12.col-sm-4.col-md-2.col-lg-2.float-left.asia { background: url(../img/asia.png); background-size: cover; } .col-xs-12.col-sm-4.col-md-2.col-lg-2.float-left.north-america { background: url(../img/north-america.png); background-size: cover; } .col-xs-12.col-sm-4.col-md-2.col-lg-2.float-left.latin-america { background: url(../img/latin-america.png); background-size: cover; } .col-xs-12.col-sm-4.col-md-2.col-lg-2.float-left.australia { background: url(../img/australia.png); background-size: cover; } .col-xs-12.col-sm-4.col-md-2.col-lg-2.float-left.africa { background: url(../img/africa.png); background-size: cover; } .atrc ul li a { font-family: 'Proxima Nova Alt Rg'; color: #fff; font-size: 16px; text-decoration: none; } .atrc h5 { color: #fff; } .atrc .col-xs-12.col-sm-4.col-md-2.col-lg-2.float-left { padding: 26px 0; } .why { width: 100%; float: left; background: #e7f1f5; padding-bottom: 51px; padding-top: 12px; } .traveler p { font-family: 'Montserrat'; font-size: 16px; color: #6b6b6b; padding: 0 19px; } .traveler{ text-align: center; padding-top: 36px; } .traveler h3 { text-align: center; font-family: 'Proxima Nova Alt Rg'; font-size: 22px; margin-top: 14px; color: #0078b2; font-weight: bold; } .destinations { float: left; width: 100%; } .destinations img { width: 100%; margin-bottom: 6px; } .max-h1 { max-height: 227.5px; height: 100%; min-height: 227.5px; } .max-h2 { min-height: 460px; max-height: 460px; height: 100%; } .frontend-box { float: left; width: 100%; } .img img { width: 100%; min-height: 216px; height: 100%; } .frontend-box-inner > a { text-decoration: none; } .course-detail-front { background: #f9f9f9; border: 1px solid #cfcfcf; padding: 11px 14px; float: left; width: 100%; border-bottom:4px solid #0078b2; } .days-des { position: absolute; top: 152px; } .course-detail-front h5 { text-align: left; font-size: 19px; font-family: 'Montserrat'; color: #0078b2 !important; padding-left: 11px; text-transform: uppercase; margin-bottom: 0; padding-top: 6px; } .course-detail-front > a { text-decoration: none; } .course-detail-front > a > ul { list-style: none; padding: 0; margin: 0; text-align: center; } .course-detail-front > a > ul li { display: inline-block; padding: 0 9px; } .course-detail-front > a > ul li i { color: #c3c3c3; } .price-review { float: left; width: 100%; } .course-price { float: left; width: 48%; } .reviews { float: right; width: 48%; padding-left: 15px; } .reviews ul { list-style: none; margin: 0; padding: 0; } .reviews ul li i { font-size: 13px; } .reviews ul li { display: inline-block; padding: 0 1px; } .reviews ul li i { color: #0078b2; } .price-review p { margin-bottom: 0; line-height: normal; font-family: 'Proxima Nova Alt Rg'; padding-top: 15px; } .course-price p { color: #262626; font-size: 15px; font-weight: 600; } .reviews p { font-family: 'Montserrat'; font-size: 13px; color: #262623; font-weight: 500; } p.view-detail { text-align: center; } p.view-detail { background: #e03544; padding: 8px 27px; border-radius: 7px; } p.view-detail { background: transparent !important; border: none !important; color: #0078b2 !important; border-radius: 7px !important; text-decoration: none !important; } p.view-detail a { text-decoration: none !important; } .popular { float: left; width: 100%; padding-bottom: 78px; } /* hover*/ .frontend-box:hover { outline: none !important; border-color: #a9a9a9; box-shadow: 0px 1px 19px #a9a9a9; transition: all ease 0.3s; cursor: pointer; } .frontend-box:hover li.selected i { color: #e03544 !important; transition: all ease 0.3s; } .frontend-box:hover p.view-detail { background: #e03544 !important; transition: all ease 0.3s; padding: 8px 27px !important; border-radius: 7px !important; color: #fff !important; } .frontend-box:hover p.view-detail a{ color: #fff !important; } .frontend-box:hover .course-detail-front { transition: all ease 0.3s; border-bottom-color: #e03544; } ul.main-nav li a i { font-size: 28px; } .atrc ul li a:hover { text-decoration: none; color: #1077d4; transition: all ease 0.3s; } /**/ .hover-box { position: relative; width: 100%; overflow:hidden; } .overlay { position: absolute; bottom: 100%; left: 0; right: 0; /*background-color: #008CBA;*/ background-color: rgba(0, 120, 178, 0.8); overflow: hidden; width: 100%; height: 0; transition: .5s ease; text-align: center; } .text { /*white-space: nowrap;*/ color: white; font-size: 20px; position: absolute; overflow: hidden; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-transform: uppercase; width: 90%; } .destinations img { width: 100%; margin-bottom: 6px; height: 100%; display: block; } .hover-box:hover .overlay { bottom: 0; height: 100%; } .caro-sli { width: 100%; } .caro-sli img { width: 100%; } a.sale-tag { background: #008ace !important; transition: all ease 0.3s; padding: 3px 14px !important; border-radius: 5px; color: #fff !important; text-transform: uppercase; position: absolute; right: 21px; top: 12px; border: 2px solid #008ace ; } .img { border-bottom: 2px solid #e03544 !important; } a.continent { background: #008ace !important; transition: all ease 0.3s; padding: 3px 17px !important; border-radius: 0; color: #fff !important; text-transform: uppercase; text-decoration: none; position: absolute; top: 183px; border-radius: 5px; right: 17px; border: 2px solid #008ace ; } .course-detail-front { padding: 0; } .course-detail-front ul { list-style: none; margin: 0; padding: 0; }ul.aval { float: left; width: 100%; /*background: #f1f1f1;*/ padding: 11px 0; } ul.aval li:nth-child(2) a { color: #000 ; } ul.aval li { display: inline-block; padding-left: 17px; width: 49%; } ul.aval li:first-child a { color: #00b260; font-family: 'Proxima Nova Alt Rg' !important; text-transform: uppercase; font-size: 13px; } ul.aval li a { font-size: 14px; background: #e03544 !important; transition: all ease 0.3s; padding: 9px 53px !important; border-radius: 5px; color: #fff !important; text-transform: uppercase; } .saving a { color: #00b260; font-family: 'Proxima Nova Alt Rg' !important; text-transform: uppercase; font-size: 13px; padding-top: 10px !important; display: block; } .saving a i { padding-right: 7px; } ul.aval li { width: 100% !important; text-align: center; margin-bottom: 10px; padding-left: 0; } .price-days-saving { margin-bottom: 12px; } .time-days, .type { float: left; width: 50%; } .col-xs-12.col-sm-6.col-md-3.col-lg-3.float-left { padding: 0 5px; } span.lat { color: #0078b2 !important; font-size: 15px; float: right; padding-right: 7px; } span.fir { color: #797979; font-size: 14px; } .time-days ul li { display: inline-block; } li.form span { color: #797979; text-transform: capitalize; } li.form span { color: #797979; text-transform: capitalize; transform: rotate(-89deg); display: block; font-size: 14px; line-height: normal; } span.date { color: #262626 !important; font-weight: bold; font-size: 18px; text-align: center; display: block; } span.days { color: #262626 !important; font-weight: bold; font-size: 16px; text-align: center; display: block; text-transform: uppercase; } .popular { margin: 0 auto; width: 100%; max-width: 96%; float: none; clear: both; padding-top: 1px; } .course-detail-front h5 a { text-align: left; font-size: 16px; font-family: 'Montserrat'; color: #0078b2 !important; text-transform: uppercase; } .price-days-saving { width: 100%; float: left; margin-top: 16px; margin-bottom: 19px; } .dayz, .saving, .pri { float: left; width: 33.333%; } .price-days-saving span { color: #262626 !important; font-weight: bold; font-size: 15px; display: block; text-transform: uppercase; font-style: italic; } p.arrow { float: left; width: 100%; background: #f1f1f1; text-align: center; margin: 0; font-size: 20px; line-height: normal; padding-top: 2px; } .desc-trip { float: left; width: 100%; display: none; } p.arrow:hover { cursor: pointer; } .img { border-bottom: 2px solid #0078b2 !important; } /*.frontend-box:hover ul.aval li:last-child a,*/ /*.frontend-box:hover a.sale-tag, .frontend-box:hover a.adventure-tag, .frontend-box:hover a.continent{ background:#e03544 !important; transition: all ease 0.3s; text-decoration: none; border: 2px solid #e03544 !important; cursor: pointer; }*/ .frontend-box:hover a.sale-tag:hover, .frontend-box:hover a.adventure-tag:hover, .frontend-box:hover a.continent:hover{ /*background: rgb(289, 52, 65) !important;*/ background: #0078b2 !important; transition: background ease 0.3s; text-decoration: none; border-color: #0078b2 !important; } .frontend-box:hover .img { border-bottom: 2px solid #e03544 !important; transition: all ease 0.3s; text-decoration: none; cursor: pointer; } /**/ #sidebar-wrapper { margin-right: -250px; right: 0; width: 250px; background: #0078b2 !important; position: fixed; height: 100%; overflow-y: auto; z-index: 1000; transition: all 0.5s ease-in 0s; -webkit-transition: all 0.5s ease-in 0s; -moz-transition: all 0.5s ease-in 0s; -ms-transition: all 0.5s ease-in 0s; -o-transition: all 0.5s ease-in 0s; top: 0; } .sidebar-nav { position: absolute; top: 0; width: 250px; list-style: none; margin: 0; padding: 0; } .sidebar-nav li { line-height: 50px; text-indent: 20px; } .sidebar-nav li a { text-decoration: none; color: #fff; font-family: 'Segoe UI'; font-size: 16px; text-transform: uppercase; } .sidebar-nav li a:hover { color: #fff; background: rgba(255,255,255,0.2); text-decoration: none; } .sidebar-nav li a:active, .sidebar-nav li a:focus { text-decoration: none; } .sidebar-nav > .sidebar-brand { height: 55px; line-height: 55px; font-size: 18px; } .sidebar-nav > .sidebar-brand a { color: #999999; } .sidebar-nav > .sidebar-brand a:hover { color: #fff; background: none; } #menu-toggle { top: 4.2%; right: -3px; position: fixed; z-index: 9999; background: #0078b2 !important; border-color: #0078b2; font-size: 20px; padding: 8px 13px 6px 13px; line-height: normal; } #sidebar-wrapper.active { right: 250px; width: 250px; transition: all 0.5s ease-out 0s; -webkit-transition: all 0.5s ease-out 0s; -moz-transition: all 0.5s ease-out 0s; -ms-transition: all 0.5s ease-out 0s; -o-transition: all 0.5s ease-out 0s; } .toggle { margin: 5px 5px 0 0; } div#sidebar-wrapper li a { background: inherit !important; } div#sidebar-wrapper li a:hover { background: inherit !important; color: #e03544; } .secondmenu{ display: none; } ul.revi li { display: inline-block; color: #000 !important; font-size: 14px; } ul.revi li i { color: #e03544; } p.des { color: #797979; font-size: 16px; line-height: normal; font-style: italic; padding: 0 11px; } ul.comaprison li { width: 100%; float: left; } ul.comaprison li strong { float: left; width: 42%; } ul.comaprison li span { float: right; text-shadow: 0 0 #585858; color: #585858; width: 58%; } ul.comaprison { padding: 0 11px; } ul.revi { padding: 0 11px; } a.adventure-tag { background:#008ace !important; transition: all ease 0.3s; padding: 3px 20px !important; border-radius: 5px; color: #fff !important; text-transform: uppercase; position: absolute; left: 21px; top: 12px; border: 2px solid #008ace ; } li.summer-sale { color: #e03544; font-size: 61px; font-family: 'Mission Script'; text-shadow: 1px 2px 0px #fff; } li.save { color: #0078b3; font-size: 40px; font-family: 'Montserrat'; font-weight: bolder; text-shadow: 1px 2px 0px #fff; } li.tours { color: #e03544; font-size: 24px; text-shadow: 1px 2px 0px #ccc; font-family: 'Montserrat'; } ul.slider-text li { line-height: normal; text-align: center; } li.thr { color: #fff; font-size: 40px; font-family: 'Montserrat'; font-weight: bolder; text-shadow: 1px 2px 0px #000; text-transform: uppercase; } ul.slider-text { list-style: none; padding: 0; margin: 0; margin-bottom: 25px; } ul.aval li:first-child a i { padding-right: 7px; } ul.aval li:last-child a:hover { background: rgb(289, 52, 65) !important; transition: background ease 0.3s; text-decoration: none; } ul.comaprison li strong { text-transform: uppercase; } div.deals { background: url(../img/deals-banner.png); height: 100%; min-height: 448px; background-repeat: no-repeat; background-size: cover; } .deals-search form { padding: 15px 22px; } .deals-search { top: 166px !important; } div#banner { float: left; width: 100%; height: 100%; min-height: 448px; background-repeat: no-repeat; background-size: cover; } .savings-offers { color: #ffffff ; background-color: #e03544; width: 200px ; height: auto ; line-height: normal ; transform: rotate(-45deg); top: -10px ; left: -77px ; overflow: hidden; position: absolute ; padding: 26px 3px 10px 3px; text-align: center; } .savings-offers span { display: block; font-family: 'Proxima Nova Rg'; } .savings-offers span:first-child { font-size: 13px; font-weight: 600; } .savings-offers span:last-child { font-weight: bold; } .deals-sections { float: left; width: 100%; margin: 88px 0 8px 0; } .pink { background: #fceaec; } .blue { background: #e5f1f7; } .deals-se p:last-child a { background: #e03544; border: 2px solid #e03544; color: #fff; padding: 7px 16px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; }.deals-se h4 { font-family: 'Proxima Nova Alt Rg'; font-size: 24px; font-weight: bold; margin-top: 30px; } .deals-se { text-align: center; padding: 18px 0 10px 0; }.deals-se p:last-child a:hover, p.site a:hover { border-color: rgb(289, 52, 65) !important; color: #fff; background: rgb(289, 52, 65) !important; transition: background ease 0.3s; } .deals-se img { height: 80px; } .top-offers { float: left; width: 100%; margin-bottom: 40px; } .offer-img-title { float: left; width: 100%; } .offer-img { width: 34%; float: left; } .offer-title { float: left; width: 66%; } .offer-title h5 a { color: #0078b2; font-family: 'Proxima Nova Rg'; text-decoration: none; font-size: 18px; font-weight: 600; } .offer-title h5 { margin-top: 30px; margin-bottom: 0; } .offer-title span a { color: #e03544; font-weight: 700; text-decoration: none; } div#offes-show { background: #f9f9f9; border: 1px solid #cfcfcf; padding-top: 14px; padding-bottom: 14px; margin-bottom: 12px; } p.head { color: #262626; font-size: 17px; font-weight: 600; line-height: normal; margin-bottom: 0; } .offer-details { text-align: center; margin-top: 30px; } .offer-details p a { color: #0078b2; font-family: 'Proxima Nova Rg'; text-decoration: none; font-size: 16px; font-weight: 600; } p.site a { background: #e03544; border: 2px solid #e03544; color: #fff; padding: 7px 0; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; display: block; } p.cross { color: #262626; font-size: 20px; line-height: normal; text-decoration: line-through; font-family: 'Proxima Nova Rg'; padding-top: 11px; } p.rel-p { color: #e03544; font-size: 20px; line-height: normal; font-family: 'Proxima Nova Rg'; padding-top: 11px; } div#inner-de .col-sm-1.col-md-1.col-lg-1 { padding: 0; } p.site { margin-bottom: 0; padding-top: 5px !important; } p.lbl { text-align: center; margin-bottom: 0; color: #aaaaaa; } div.login { background: url(../img/login-banner.png); background-size: cover; height: 100%; background-repeat: no-repeat; min-height: 924px; } .login-form-main { margin: 0 auto; width: 100%; max-width: 497px; padding-top: 100px; } p.rem { float: left; width: 100%; } .wel h1, .wel p { color: #fff; } .login-form { background: #f9f9f9; padding: 25px 40px; float: left; width: 100%; } .sign-diff p { background: #2a457e; border-radius: 11px; text-align: center; float: left; width: 100%; } .sign-diff p i { background: #223661; padding: 15px 18px; border-radius: 11px 0 0 11px; color: #fff; font-size: 20px; float: left; } .sign-diff p a { color: #fff; text-align: center; width: 100%; text-decoration: none; font-size: 22px; line-height: 49px; } .or hr.fir { float: left; width: 46%; border-color: #9f9f9f; } .or hr.sec { float: right; width: 46%; border-color: #9f9f9f; } .or span { text-align: center; } .or { text-align: center; color: #000; font-weight: 600; font-size: 20px; float: left; width: 100%; margin-bottom: 8px; } .login-form input { background: #ebebeb; border: 1px solid #bbb; border-radius: 3px; height: 40px; padding: 5px 8px; margin-bottom: 10px; }.login-form label { color: #262626; font-size: 14px; font-weight: 600; } p.rem input { width: 3%; float: left; height: inherit; margin-top: 2px; } p.rem label { float: left; width: 96%; line-height: normal; padding-left: 5px; color: #a4a4a4; font-weight: 100; } .login-form input[type="submit"] { background: #e03544; border: 2px solid #e03544; color: #fff; padding: 7px 16px; font-family: 'Montserrat'; font-size: 15px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; cursor: pointer; font-weight: 400; } .login-form-main form > p span { color: #262626; font-size: 14px; font-weight: 600; text-align: center; display: block; } .sign-up-diff p a { background: #0475ab; text-align: center; color: #fff; display: block; border-radius: 8px; padding: 20px 0; text-decoration: none; font-family: 'Montserrat'; } .sign-up-diff p a span { display: block; line-height: normal; font-size: 15px; font-weight: 400; } .sign-up-diff { float: left; width: 100%; } .sign-up-diff p a span.b { font-size: 31px; font-weight: 400; } div.sign-up { background: url(../img/sign-up-banner.png) !important; min-height: 1024px; } input.sib { background: #0475ab !important; border-color: #0475ab !important; }.sind p a { background: #e03544; } div.magazine { background: url(../img/magazine-banner.png); } header#header { background-color: rgba(0, 120, 178, 0.85); } ul.main-nav li a.current_page_item, .footer-menu ul li a.current_page, ul.main-nav li a:hover, .footer-menu ul li a:hover { color: #e03544; } .all-posts { margin-top: 22px; margin-bottom: 40px; float: left; width: 100%; } .post { width: 100%; float: left; } .post-content, .post-date, .post-image, .post-excerpt, .post-title { width: 100%; float: left; } .all-posts hr { float: left; width: 100%; border-color: #cacaca; margin: 50px 0; } .post-categories span a { color: #262626; font-size: 14px; font-family: 'Montserrat'; text-decoration: none; font-weight: 400; } .post-date p { color: #e03544; font-size: 14px; font-family: 'Montserrat'; text-decoration: none; font-weight: 400; margin-top: 4px; }.post-title h2 a { color: #0078b2; text-decoration: none; font-size: 24px; font-family: 'Montserrat'; font-weight: 400; } .post-title h2 { margin-bottom: 10px; } .post-image p a img { width: 100%; } .post-excerpt p { color: #6b6b6b; font-size: 14px; font-family: 'Montserrat'; margin-bottom: 0px; line-height: 23px; } .post-sidebar div > h2 { text-align: center; font-family: 'Proxima Nova Alt Rg'; font-size: 28px; font-weight: bold; margin-bottom: 0; } .post-sidebar div > p { text-align: center; font-family: 'Proxima Nova Alt Rg'; font-size: 16px; color: #262626; } .search-posts { background: #fceaec; float: left; width: 100%; padding: 40px 42px; } .search-posts .form button.btn.btn-primary { background: #e03544; border-color: #bbb; } .search-posts .form input { border-color: #bbbbbb !important; border-width: 1px; } .post-sidebar { float: left; width: 100%; margin-top: 40px; } .most-popular { float: left; width: 100%; padding: 40px 35px; background: #e5f1f7; margin: 33px 0; } ul.articles { margin: 0; list-style: none; background: #fff; border: 1px solid #e3e3e3; border-radius: 5px; padding: 0px 0; float: left; width: 100%; } ul.articles li { border-bottom: 1px solid #e3e3e3; display: block; width: 100%; float: left; padding: 19px; } ul.articles li img { width: 25%; float: left; } ul.articles li p { float: left; width: 75%; padding-left: 10px; color: #575757; font-size: 14px; font-family: 'Montserrat'; margin-bottom: 0px; line-height: 23px; } ul.articles li:last-child { border: none; } .categories { float: left; width: 100%; padding: 40px 35px; background: #e5f1f7; margin-bottom: 35px; } ul.categories-name { padding: 0; list-style: none; margin: 0; border: 1px solid #e3e3e3; background: #fff; border-radius: 5px; } ul.categories-name li { border-bottom: 1px solid #e3e3e3; } ul.categories-name li:last-child { border: none; } ul.categories-name li a { color: #575757; text-align: center; display: block; text-decoration: none; padding: 10px 0; font-weight: 500; font-size: 16px; } .deals-search form input[type="text"] { margin-bottom: 10px; } .deals-search form { padding-top: 3px; }div#-postdetails { margin-top: 160px; } div#-postdetails .post-excerpt p { margin-bottom: 20px; } .sharing { background: #0078b2; padding: 19px 0; text-align: center; border-radius: 5px; margin-bottom: 25px; } .sharing-inner p { color: #fff; margin-bottom: 0 !important; font-family: 'Montserrat'; } .sharing-inner p a { color: #fff; padding: 0 6px; font-size: 15px; } .sharing-inner p span { padding-left: 18px; } .about-auther { float: left; width: 100%; background: #e5f1f7; padding: 16px 13px; } .auther-img { float: left; width: 14%; } .auther-text { float: left; width: 86%; } .auther-text h2 { font-family: 'Proxima Nova Alt Rg'; font-size: 28px; font-weight: bold; } .auther-text p { color: #6b6b6b; font-size: 14px; font-family: 'Montserrat'; margin-bottom: 15px; line-height: 23px; } div#-postdetails .post-excerpt p:last-child { margin-bottom: 0; } .post-comment form input { border: 1px solid #bebebe; border-radius: 4px; background: #f2f2f2; height: 40px; margin-bottom: 18px; padding: 0 10px; color: #a4a4a4; } .web .input-field { float: left; width: 31.33%; } .com { float: left; width: 100%; } .com textarea { border: 1px solid #bebebe; border-radius: 4px; background: #f2f2f2; height: 200px; margin-bottom: 10px; padding: 7px 10px; width: 100%; color: #a4a4a4; } .submit input { background: #e03544 !important; border: 2px solid #e03544 !important; color: #fff !important; padding: 7px 16px !important; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px !important; text-align: center; text-transform: uppercase; text-decoration: none; width: 25%; cursor: pointer; } .post-comment form input::placeholder, .post-comment form textarea::placeholder{ color: #a4a4a4; } .post-comment h5 { color: #0078b2; font-family: 'Montserrat'; font-weight: 400; font-size: 18px; } .review { background: #fceaec; float: left; width: 100%; padding-top: 136px; }.form-filter h4 { text-align: center; font-family: 'Proxima Nova Alt Rg'; font-size: 30px; font-weight: bold; }.filter-frm { margin: 0 auto; width: 100%; max-width: 40%; } .filter-frm input { background: #fff; border-color: #fff; } button.btn.btn-primary { background: #e03544; border-color: #e03544; cursor: pointer; } .form-filter { margin: 0 auto; width: 100%; max-width: 79%; padding-bottom: 35px; } .form-filter p { color: #776567; text-align: center; }.form-filter form { margin-bottom: 25px; margin-top: 10px !important; } div#review-shows { background: #f9f9f9; border: 1px solid #cfcfcf; padding-top: 14px; padding-bottom: 14px; margin-bottom: 35px; } .about-com h5 { color: #0078b2; text-decoration: none; font-size: 16px; font-weight: 600; font-family: 'Montserrat'; margin-top: 8px; } span.lab { color: #262626; text-decoration: none; font-size: 15px; font-family: 'Montserrat'; line-height: normal; text-transform: uppercase; font-weight: 500; float: left; width: 50%; } .about-com p { margin-bottom: 0; float: left; width: 100%; } span.def { color: #262626; text-decoration: none; font-size: 16px; line-height: normal; font-family: 'Proxima Nova Alt Rg'; float: left; width: 50%; } .com-rating ul { list-style: none; margin: 0; padding: 0; } .com-rating ul li { display: inline-block; padding: 0 1px; } .com-rating ul li a i { color: #e03544; font-size: 26px; } .com-rating p span { color: #262626; text-decoration: none; font-size: 14px; font-family: 'Montserrat'; line-height: normal; text-transform: uppercase; font-weight: 500; } .com-rating { float: right; } .review-p a { color: #e03544; } .review-p a { font-family: 'Montserrat'; font-weight: 500; text-decoration: none; } .review-p { margin-top: 15px; } .review-p span a { background: #e03544; border: 2px solid #e03544; color: #fff; padding: 7px 48px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; } .company-img img { width: 100%; } .review-p p { margin-bottom: 30px; } .traveling-reviews { float: left; width: 100%; margin-top: 50px; } img.maxp { width: 100%; } .text p { font-size: 14px !important; text-align: center; } .text h2 { font-size: 18px !important; text-align: center; } .latest-articles { float: left; width: 100%; } .subscribe-connect { float: left; width: 100%; margin-top: 30px; } .pinks { float: left; background: #fceaec; width: 100%; padding-bottom: 30px; } .pinks h1 { margin-top: 30px !important; } .pinks h1 { margin-bottom: 0; margin-top: 30px !important; line-height: normal; } .p-social-icons ul { list-style: none; text-align: center; margin: 0; padding: 0; } .p-social-icons ul li { display: inline-block; width: 32px; margin: 0 5px; } .p-social-icons ul li a { border: 1px solid #7d7d7d; color: #7d7d7d; border-radius: 50%; display: block; padding: 3px 0; } .p-social-icons ul li a:hover { background: #e03544; color: #fff; border-color: #e03544; transition: all ease 0.3s; } .subscribe-form { margin: 0 auto; width: 100%; max-width: 82%; } form.subscribe { background: #fff; float: left; width: 100%; } form.subscribe input[type=text] { border: 1px solid #fff; height: 40px; padding: 6px 11px; font-size: 14px; width: 75%; float: left; } form.subscribe input[type="submit"] { background: #e03544; border: 1px solid #e03544; color: #fff; text-transform: uppercase; font-weight: 700; font-size: 18px; height: 41px; float: left; width: 25%; cursor: pointer; } form.subscribe { background: #fff; float: left; padding: 2px 0; width: 100%; } form.subscribe input:focus { outline: none; } input:focus { outline: none; } .rpost h3 a { color: #0078b2; text-decoration: none; font-size: 18px; font-family: 'Montserrat'; font-weight: 400; } p.d { color: #e03544 !important; font-size: 14px !important; font-family: 'Montserrat' !important; text-decoration: none; font-weight: 400; } .rpost h3 { margin-bottom: 0; margin-top: 10px; } .rpost p { color: #6b6b6b; font-size: 14px; font-family: 'Montserrat'; margin-bottom: 0px; line-height: 23px; padding: 0 4px; } p.btn-btn a { border: 1px solid #e03544; color: #e03544; padding: 9px 32px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; font-weight: 500; text-decoration: none; } p.btn-btn { margin-top: 30px; margin-bottom: 27px; } .rpost { background: #f9f9f9; border: 1px solid #cfcfcf; text-align: center; } p.btn-btn a:hover { background: rgb(289, 52, 65); color: #fff; transition: background ease 0.3s; } .post-blogs { float: left; width: 100%; margin-bottom: 60px; } .travel-guide-top-destinations { float: left; width: 100%; margin-top: 70px; } .bluet { float: left; width: 100%; background: #e7f1f5; padding-bottom: 20px; padding-left: 15px; padding-right: 15px; } .bluet h1 { margin-top: 35px; margin-bottom: 0; } .bluet.ex h1, .bluet.ex p { text-align: left; } .bluet .hover-box img { width: 100%; } .bluet .row { margin-bottom: 15px; } /**/ .guide .main-img img { width: 100%; } .relates-guide-img ul { padding: 0; list-style: none; } .relates-guide-img ul li { display: block; width: 32%; float: left; } .relates-guide-img ul li .hover-box img { width: 100%; } .relates-guide-img ul li:nth-child(2) { margin: 0 10px; } .relates-guide-img { margin-top: 8px; } /**/ .latest-articles { margin-top: 100px; } .tour-comparator { background: url(../img/tour-compatator.png); } .tour-comparators { float: left; width: 100%; margin-top: 40px; } .compare { float: left; width: 100%; padding: 24px 17px; background: #e5f1f7; } .compare .frontend-box::after { content: "\f00d"; font-family: FontAwesome; color: #fff; position: absolute; top: -20px; background: #0078b2; border-radius: 50%; padding: 1px 4px; line-height: normal; font-size: 15px; height: 18px; right: 16px; font-weight: 100; } .choose-trip { background: #fceaec; float: left; width: 100%; padding-top: 14px; } .choose-trip h1 { margin-top: 13px; font-size: 22px; margin-bottom: 0; } .choose-trip p { font-size: 16px; } div#comp-id { border: 1px solid #cfcfcf; padding: 8px 0; } .comparision { float: left; width: 100%; padding: 0 24px; margin-bottom: 29px; } .comparision .saving { margin-left: 12px; } .comparision p.des { margin-bottom: 0; } .comparision .saving a { font-weight: 800; } .rt-ti { float: left; width: 100%; } .tit-rg { float: left; width: 80%; } .tr-vich-ig { float: left; width: 20%; text-align: center; padding-top: 11px; } .popular_guides .hover-box a img { width: 100%; } .deals-details .relates-guide-img ul li:nth-child(2) { margin: 0 8px; } .deals-details .bluet.ex, .deals-details2 .bluet.ex { margin-bottom: 30px; } .deals-details, .deals-details2, .deals-details3 { float: left; width: 100%; } .popular_guides { float: left; width: 100%; } .deals-details { margin-top: 155px; } .tour-comparators { border-bottom: 1px solid #cfcfcf; padding-bottom: 70px; } .deals-details3 { border-bottom: 1px solid #cfcfcf; padding-bottom: 70px; } .deals-t h1 { font-family: 'Proxima Nova Alt Rg'; font-size: 30px; font-weight: bold; } .deals-t h1 { font-family: 'Proxima Nova Alt Rg'; font-size: 30px; font-weight: bold; } .deals-book p a { background: #e03544; border: 2px solid #e03544; color: #fff; padding: 7px 0px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; display: block; } .deals-book p { width: 100%; } .deals-t { float: left; width: 75%; } .deals-book { float: left; width: 25%; } .details-des > p { color: #797979; font-size: 17px; line-height: normal; float: left; width: 100%; } .details-des > p span { color: #e03544; font-weight: 400; font-family: 'Montserrat'; } .all-feat { float: left; width: 100%; background: #f9f9f9; border: 1px solid #cfcfcf; padding: 25px 12px; } .all-feat ul { list-style: none; padding: 0; margin: 0; } .all-feat ul li { margin-bottom: 12px; } ul#comaprison-id li strong { float: left; width: 42%; font-size: 15px !important; } ul#comaprison-id li span { float: left; width: 58%; float: initial; text-shadow: 0 0 #585858; color: #585858; } ul#comaprison-id li span { float: initial; } span.rd { color: #292b2c; text-decoration: line-through; } p.lnth { display: inline; padding-left: 11px; color: #e03544; text-shadow: 0 0 #e03544; } span.dsys { color: #0078b2 !important; text-shadow: 0 0 #0078b2 !important; } ul#comaprison-id li span ul li { display: inline-block !important; width: inherit !important; float: inherit !important; } ul#comaprison-id li .saving a { padding: 0 !important; font-weight: bold; } .book-info li:first-child a { background: #e03544; border: 2px solid #e03544; color: #fff; padding: 7px 60px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; display: block; } .book-info li:last-child a { background: #0078b2; border: 2px solid #0078b2; color: #fff; padding: 7px 60px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; display: block; } .book-info li { display: inline-block; padding: 0 10px; } .book-info ul { text-align: center; } .book-info ul { margin-top: 20px; } .routes_place-menu ul { padding: 11px 0; list-style: none; margin: 0; background: #0078b2; text-align: center; border-radius: 4px; } .routes_place-menu li { display: inline-block; line-height: normal !important; border-right: 1px solid #005178; padding: 0px 0px; width: 25%; } .routes_place-menu li a { color: #fff; line-height: normal; text-decoration: none; } .routes_place-menu li:last-child { border: none; } .bluet.ex p { text-align: left; margin-bottom: 10px; } /**/ .tg {border-collapse:collapse;border-spacing:0;} .tg td{font-family:'Proxima Nova Alt Rg';font-size:16px;padding:12px 15px;border-style:solid;border-width:1px;border-color:#d9d9d9;overflow:hidden;word-break:normal;} .tg th{font-family:'Proxima Nova Alt Rg';font-size:20px;font-weight:normal;padding:12px 15px;border-style:solid;border-width:1px;border-color:#d9d9d9;overflow:hidden;word-break:normal;} .tg .tg-qz94{background-color:#f9f9f9} .tg .tg-4u1e{background-color:#a2a2a2} .tg .tg-qb4h{background-color:#f9f9f9;vertical-align:top} th.tg-4u1e { color: #fff ; } .check-check-out { margin-top: 48px; } /**/ .fullrates ul { list-style: none; padding: 0; margin: 0; float: left; width: 100%; } .fullrates ul.progress-bar-rating-main li { float: left; } li.raing-t p { font-family: 'Proxima Nova Rg'; font-size: 18px; color: #0078b2; line-height: normal; text-shadow: 0 0 #0078b2; } ul.course-ratings li i { color: #e03544; font-size: 17px; } .fullrates .progress-bar { background-color: #e03544; height: 6px; } .fullrates .progress { background: inherit; border: 1px solid #9B9B9B; border-radius: 0; float: left; width: 66%; margin-top: 9px; margin-left: 9px; } li.progress-bar-rating ul { float: left; width: 20%; padding-left: 11px; } li.raing-t { width: 28%; } li.progress-bar-rating-star { width: 25%; } li.progress-bar-rating { width: 45%; } ul.course-ratings li { float: initial !important; display: inline-block; } li.progress-bar-rating ul li p { margin-bottom: 0; line-height: normal; color: #e03544; font-size: 16px; } .reviews-ratings { float: left; width: 100%; background: #f9f9f9; border: 1px solid #cfcfcf; padding: 25px 12px; } .reviews-ratings h4 { color: #0078b2; font-size: 20px; font-weight: bold; margin-bottom: 30px; } .fullrates { float: left; width: 100%; border-right: 1px solid #cfcfcf; } .overall ul { list-style: none; padding: 0; margin: 0; } .overall ul li { float: left !important; width: 100% !important; text-align: center; } .overall li.progress-bar-rating ul { width: 100%; } .overall ul.course-ratings li { float: initial !important; width: inherit !important; display: inline-block !important; } .overall ul.course-ratings li i { font-size: 20px; } .overall ul.course-ratings { margin-bottom: 5px; } .overall li.raing-t p { margin-bottom: 8px; } a.rec { background: #00b260; border: 2px solid #00b260; color: #fff; padding: 10px 15px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; } .overall li.progress-bar-rating ul li p { margin-bottom: 18px; } .overall { float: left; width: 100%; padding-top: 15px; } /**/ .adventure-tours { float: left; width: 100%; background: #e5f1f7; padding-bottom: 23px; margin-bottom: 45px; } .adventure-tours p.mns-para { color: #6b6b6b; text-align: justify; padding-top: 6px; } .trip-finder-main { float: left; width: 100%; } .range-slider { margin: 60px 0 0 0%; } .range-slider { width: 100%; } .range-slider__range { -webkit-appearance: none; width: 100%; height: 19px; border-radius: 4px; background: #fff; outline: none; padding: 0; margin: 0; border: 1px solid #bbb; } .range-slider__range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 25px; border-radius: 0%; background: #fff; cursor: pointer; -webkit-transition: background .15s ease-in-out; transition: background .15s ease-in-out; border:1px solid #bbb !important; } .range-slider__range::-webkit-slider-thumb:hover { background: #fff; } .range-slider__range:active::-webkit-slider-thumb { background: #fff; } .range-slider__range::-moz-range-thumb { width: 20px; height: 25px; border-radius: 0%; background: #2c3e50; cursor: pointer; -webkit-transition: background .15s ease-in-out; transition: background .15s ease-in-out; border:1px solid #bbb !important; } .range-slider__range::-moz-range-thumb:hover { background: #1abc9c; } .range-slider__range:active::-moz-range-thumb { background: #1abc9c; } ::-moz-range-track { background: #d7dcdf; border: 0; } input::-moz-focus-inner, input::-moz-focus-outer { border: 0; } .range-slider span { text-shadow: 0 0 #585858; color: #585858; } .ran-max { float: right; width: 50%; text-align: end; } div#all-feat2 ul#comaprison-id li span { float: initial; font-size: 15px; } div#all-feat2 ul#comaprison-id li strong { font-size: 14px !important; } .trips-de h2 { line-height: normal; color: #292b2c; font-size: 22px; font-weight: bold; margin-bottom: 0; } p.destin a { background: #0078b2; border: 2px solid #0078b2; color: #fff; padding: 7px 24px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; } div#detail-tr img { width: 100%; } .trips-de p { text-shadow: 0 0 #585858; color: #585858; font-style: italic; margin-bottom: 28px; } div#all-feat2 { margin-bottom: 22px; } p.destin { font-style: normal; } .trips-de span { line-height: 1.5; color: #292b2c; font-size: 18px; } .trip-finder-main { border-bottom: 1px solid #e4e4e4; padding-bottom: 55px; } div#related-guides { padding: 19px 11px; margin-top: 0; } div#related-guides ul.articles li p { float: left; width: 68%; font-size: 13px; font-family: 'Montserrat'; margin-bottom: 0px; line-height: 23px; text-shadow: 0 0 #585858; color: #585858; padding-left: 5px; font-weight: 400; } div#related-guides ul.articles li img { width: 32%; float: left; } div#related-guides ul.articles li { border-bottom: 1px solid #e3e3e3; display: block; width: 100%; float: left; padding: 6px; } div#related-guides h2 { line-height: normal; color: #292b2c; font-size: 22px; font-weight: bold; margin-bottom: 6px; } div#related-guides > p { margin-bottom: 0; float: left; width: 100%; margin-top: 5px; } div#related-guides p a { color: #0078b2 !important; text-shadow: 0 0 #0078b2 !important; } div#fir-ro { margin-top: 6px; padding-bottom: 20px; border-bottom: 1px solid #cfcfcf; margin-bottom: 27px; } div#fir-ro p { text-shadow: 0 0 #585858; color: #585858; font-size: 15px; margin-bottom: 0; margin-top: 16px; } div#fir-ro p i { padding-right: 5px; font-size: 20px; } div#fir-ro .input-group.custom-search-form.filter-frm { margin: inherit; max-width: 100%; } div#fir-ro .input-group.custom-search-form.filter-frm input { border: 1px solid #e3e3e3; background: #f4f4f4; color: #8e8e8e; } .fa-arrow:before { content: "\f078 "; } p.compare-selected a { background: #e03544 !important; border: 2px solid #e03544 !important; color: #fff !important; padding: 7px 16px !important; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px !important; text-align: center; text-transform: uppercase; text-decoration: none; display: block; } p.compare-selected { margin-top: 0 !important; width: 100%; } div#fir-ro .input-group-btn { position: relative; font-size: 0; white-space: nowrap; width: 25%; float: left; } div#fir-ro .input-group.custom-search-form.filter-frm input { border: 1px solid #e3e3e3; background: #f4f4f4; color: #8e8e8e; width: 75%; float: left; } .drop-me { float: left; width: 100%; max-width: 100%; } .dro { float: left; width: 100%; max-width: 100%; } div#fir-ro button.btn.btn-primary { padding: .5rem 0; } .drop ul li { padding-left: 13px; border-bottom: 1px solid #e3e3e3; } .drop ul li a { color: #8e8e8e; } .drop ul { border: 1px solid #e3e3e3; background: #f4f4f4; color: #8e8e8e; padding: 0; list-style: none; position: absolute; width: 86%; z-index: 99; } .main-box { background: #fceaec; padding: 20px 16px; margin-bottom: 15px; float: left; width: 100%; } .main-box .header h3 { line-height: normal; color: #292b2c; font-size: 22px; font-weight: bold; margin-bottom: 0; } .main-box .header h3::after { content: "\f107 "; float: right; font-family: FontAwesome; line-height: 26px; } .main-box .bodys { border-top: 1px solid #eea8b0; margin-top: 5px; float: left; width: 100%; padding-top: 14px; } li.collapse { display: none; } .collapse.in { display: block; } .sameus { float: left; width: 100%; } .sameus p { float: left; width: 17%; text-shadow: 0 0 #585858; color: #585858; margin-bottom: 0; padding-top: 8px; }.sameus span.input-group-addon { background: #e03544; color: #fff; padding-top: 6px; padding-bottom: 8px; } .sameus input.form-control { background: #fff; border: 2px solid #d8d8d8; padding-top: 6px; padding-bottom: 8px; } .form-group { float: right; width: 82%; } .range-slider { margin-top: 0; } span.com { float: right !important; } span.com a { background: #e03544 !important; border: 2px solid #e03544 !important; color: #fff !important; padding: 7px 16px !important; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px !important; text-align: center; text-transform: uppercase; text-decoration: none; } .header-ar h3::after { display: none; } @media all and (max-width:986px ){ .mainmenu{ display: none; } .secondmenu{ display: block; } } @media all and (max-width:786px ){ .mainmenu{ display: none; } } @media all and (max-width:768px ){ .location-search { top: 25%; } .how-works h1 { text-align: center; } .how-works p { text-align: center; }p.btn { margin: 0 auto; display: table; margin-top: 17px; } .footer-menu { padding-left: 0 !important; } } @media all and (max-width:667px ){ .caro-sli img { width: 100%; min-height: 547px; height: 100%; } } @media all and (max-width:667px ){ .location-search { top: 33%; } .col-xs-12.col-sm-6.col-md-5.col-lg-5.float-left { padding-left: 15px !important; padding-right: 15px !important; } .col-xs-12.col-sm-6.col-md-7.col-lg-7.float-left, .col-xs-12.col-sm-12.col-md-12.col-lg-12.float-left, .col-xs-16.col-sm-6.col-md-6.col-lg-6.float-left, .col-xs-6.col-sm-6.col-md-6.col-lg-6.float-left { padding-right: 15px !important; padding-left: 15px !important; } .footer-menu { margin: 0 !important; margin-top: 25px !important; } } div.tour-comparators a.find-trip-button{ background: #0078b2; border: 2px solid #0078b2; color: #fff; padding: 15px 38px; font-family: 'Montserrat'; font-size: 20px; border-radius: 6px; text-align: center; text-transform: uppercase; text-decoration: none; margin: 0 auto; width: 100%; } div.tour-comparators a.find-trip-button:hover{ background: #e03544 !important; transition: all ease 0.7s; color: #fff !important; border: 2px solid #e03544; } div.tour-comparators div.find-trip{ margin: 45px auto; } /* loader gif icon */ .se-pre-con { position: fixed; left: 0px; top: 0px; width: 100%; height: 100%; z-index: 9999; background: url(public/img/loader_home.gif) center no-repeat #b9b9b9; opacity: 0.8; }
frontend/css/style.css
@font-face { font-family: 'Proxima Nova Rg'; src: url('../Fonts/ProximaNova-Regular.eot'); src: url('../Fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'), url('../Fonts/ProximaNova-Regular.woff') format('woff'), url('../Fonts/ProximaNova-Regular.ttf') format('truetype'); font-weight: normal; font-style: normal; } @font-face { font-family: 'Mission Script'; src: url('../Fonts/Mission-Script.eot'); src: url('../Fonts/Mission-Script.eot?#iefix') format('embedded-opentype'), url('../Fonts/Mission-Script.woff') format('woff'), url('../Fonts/Mission-Script.ttf') format('truetype'); font-weight: normal; font-style: normal; } body{ font-family: 'Proxima Nova Alt Rg'; } div#container { max-width: 1174px; width: 100%; margin: 0 auto; } header#header, footer#main-footer { float: left; width: 100%; } header#header { padding-top: 15px; padding-bottom: 15px; background: transparent; } ul.main-nav li a { color: #fff; font-size: 16px; text-transform: uppercase; } ul.main-nav li { display: inline-block; padding: 0 17px; } ul.main-nav{ list-style: none; padding: 0; margin: 0; text-align: right; margin-top: 22px; } ul.main-nav li a:hover { text-decoration: none; color: #1077d4; transition: all ease 0.3s; } footer#main-footer { background: #e7e7e7; padding-top: 91px; padding-bottom: 0; } .footer p { color: #000; text-align: center; font-weight: 400; font-size: 18px; line-height: normal; margin-bottom: 0; text-shadow: 0px 1px #8b8b8b; } .footer p a { text-decoration: none; color: #0078b2; } .footer-menu ul li a span { text-decoration: none; color: #0078b2; } ::-webkit-input-placeholder { /* Chrome/Opera/Safari */ color: #666; } ::-moz-placeholder { /* Firefox 19+ */ color: #666; } :-ms-input-placeholder { /* IE 10+ */ color: #666; } :-moz-placeholder { /* Firefox 18- */ color: #666; } .logo-img { text-align: center; padding-bottom: 32px; border-bottom: 1px solid #cfcfcf; margin-bottom: 11px; float: left; width: 100%; } .footer-menu h3 { font-size: 16px; font-weight: bold; font-family: 'Proxima Nova Alt Rg'; } .footer-menu ul li a { font-family: 'Proxima Nova Alt Rg'; color: #5c5c5c; font-size: 16px; } .footer-menu ul { list-style: none; padding: 0; margin: 0; } .footer-menu ul li a { font-family: 'Proxima Nova Alt Rg'; color: #5c5c5c; font-size: 16px; text-decoration: none; text-shadow: 0px 1px #8b8b8b; } .footer-menu ul li a:hover { transition: all ease 0.3s; color: #0078b2; } .footer-menu ul li { margin-bottom: 9px; } .footer-menu { margin-top: 62px; margin-bottom: 55px; } .copy-right { float: left; width: 100%; padding: 20px 0; border-top: 1px solid #cfcfcf; } .row.footer-links { max-width: 93%; margin: 0 auto; width: 100%; } .home-slider { float: left; width: 100%; } .slider.float-left { width: 100%; } header#header { position: fixed; top: 0; z-index: 999; } .home-slider ol.carousel-indicators li { border-radius: 50%; max-width: 10px !important; height: 12px; border: 1px solid #fff; background: #fff !important; } .home-slider ol.carousel-indicators li.active { background: #0078b2 !important; border: 1px solid #0078b2; } header.dark-header { background-color: rgba(0,0,0,0.49) !important; } .location-search { width: 100%; margin: 0 auto; max-width: 67%; padding: 35px 22px; position: absolute; top: 23%; left: 0; right: 0; } .location-search form label, form input { width: 100%; } .location-search form label { font-family: 'Proxima Nova Alt Rg'; color: #454545; font-size: 17px; margin-bottom: 0; } .location-search form input[type="text"] { height: 38px; border: 1px solid #b9b9b9; color: #b9b9b9; } .location-search form input[type="text"] { height: 38px; border: 2px solid #b9b9b9; color: #a9a9a9; padding: 3px 16px; font-family: 'Montserrat'; font-size: 13px; background: #fff; margin-bottom: 20px; } .location-search form input[type="text"]:placeholder{ color: #a9a9a9; } .location-search form input[type="text"]:focus{ outline: none !important; border-color: #e03544; box-shadow: 0 0 10px #e03544; } .location-search form input[type="submit"] { background: #e03544; height: 38px; border: 2px solid #e03544; color: #fff; padding: 3px 16px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; max-width: 217px; margin: 0 auto !important; display: block; } .location-search form input[type="submit"]:hover { border: 2px solid rgb(289, 52, 65) !important; color: #fff; cursor: pointer; background: rgb(289, 52, 65) !important; transition: background ease 0.3s; text-decoration: none; } .location-search form { padding: 35px 22px; background: rgba(255,255,255,0.6); float: left; width: 100%; } .how-works { float: left; width: 100%; background: #0078b2; padding: 27px 0; } .how-works h1 { font-family: 'Montserrat' !important; color: #fff; font-weight: 200; font-size: 38px; margin: 0; padding: 0; text-align:end; } .how-works p { font-family: 'Montserrat' !important; color: #fff; font-weight: 300; font-size: 16px; margin: 0; text-align: center; padding-top: 9px; } p.btn a { border-color: #fff; color: #fff; text-decoration: none; } p.btn { border-color: #fff; color: #fff; text-decoration: none; } p.btn:hover{ background: #fff; } p.btn:hover a { color: #0078b2; } h1.mns-headings { text-align: center; font-family: 'Proxima Nova Alt Rg'; font-size: 30px; font-weight: bold; margin-top: 54px; } p.mns-para { text-align: center; font-family: 'Proxima Nova Alt Rg'; font-size: 18px; color: #262626; margin-bottom: 22px; } .attraction { float: left; width: 100%; } .atrc { float: left; text-align: center; width: 100%; border-top: 1px solid #c3cad5; } .atrc ul { list-style: none; padding: 0; margin: 0; text-align: center; } .col-xs-12.col-sm-4.col-md-2.col-lg-2.float-left.europe { background: url(../img/europe.png); background-size: cover; } .col-xs-12.col-sm-4.col-md-2.col-lg-2.float-left.asia { background: url(../img/asia.png); background-size: cover; } .col-xs-12.col-sm-4.col-md-2.col-lg-2.float-left.north-america { background: url(../img/north-america.png); background-size: cover; } .col-xs-12.col-sm-4.col-md-2.col-lg-2.float-left.latin-america { background: url(../img/latin-america.png); background-size: cover; } .col-xs-12.col-sm-4.col-md-2.col-lg-2.float-left.australia { background: url(../img/australia.png); background-size: cover; } .col-xs-12.col-sm-4.col-md-2.col-lg-2.float-left.africa { background: url(../img/africa.png); background-size: cover; } .atrc ul li a { font-family: 'Proxima Nova Alt Rg'; color: #fff; font-size: 16px; text-decoration: none; } .atrc h5 { color: #fff; } .atrc .col-xs-12.col-sm-4.col-md-2.col-lg-2.float-left { padding: 26px 0; } .why { width: 100%; float: left; background: #e7f1f5; padding-bottom: 51px; padding-top: 12px; } .traveler p { font-family: 'Montserrat'; font-size: 16px; color: #6b6b6b; padding: 0 19px; } .traveler{ text-align: center; padding-top: 36px; } .traveler h3 { text-align: center; font-family: 'Proxima Nova Alt Rg'; font-size: 22px; margin-top: 14px; color: #0078b2; font-weight: bold; } .destinations { float: left; width: 100%; } .destinations img { width: 100%; margin-bottom: 6px; } .max-h1 { max-height: 227.5px; height: 100%; min-height: 227.5px; } .max-h2 { min-height: 460px; max-height: 460px; height: 100%; } .frontend-box { float: left; width: 100%; } .img img { width: 100%; min-height: 216px; height: 100%; } .frontend-box-inner > a { text-decoration: none; } .course-detail-front { background: #f9f9f9; border: 1px solid #cfcfcf; padding: 11px 14px; float: left; width: 100%; border-bottom:4px solid #0078b2; } .days-des { position: absolute; top: 152px; } .course-detail-front h5 { text-align: left; font-size: 19px; font-family: 'Montserrat'; color: #0078b2 !important; padding-left: 11px; text-transform: uppercase; margin-bottom: 0; padding-top: 6px; } .course-detail-front > a { text-decoration: none; } .course-detail-front > a > ul { list-style: none; padding: 0; margin: 0; text-align: center; } .course-detail-front > a > ul li { display: inline-block; padding: 0 9px; } .course-detail-front > a > ul li i { color: #c3c3c3; } .price-review { float: left; width: 100%; } .course-price { float: left; width: 48%; } .reviews { float: right; width: 48%; padding-left: 15px; } .reviews ul { list-style: none; margin: 0; padding: 0; } .reviews ul li i { font-size: 13px; } .reviews ul li { display: inline-block; padding: 0 1px; } .reviews ul li i { color: #0078b2; } .price-review p { margin-bottom: 0; line-height: normal; font-family: 'Proxima Nova Alt Rg'; padding-top: 15px; } .course-price p { color: #262626; font-size: 15px; font-weight: 600; } .reviews p { font-family: 'Montserrat'; font-size: 13px; color: #262623; font-weight: 500; } p.view-detail { text-align: center; } p.view-detail { background: #e03544; padding: 8px 27px; border-radius: 7px; } p.view-detail { background: transparent !important; border: none !important; color: #0078b2 !important; border-radius: 7px !important; text-decoration: none !important; } p.view-detail a { text-decoration: none !important; } .popular { float: left; width: 100%; padding-bottom: 78px; } /* hover*/ .frontend-box:hover { outline: none !important; border-color: #a9a9a9; box-shadow: 0px 1px 19px #a9a9a9; transition: all ease 0.3s; cursor: pointer; } .frontend-box:hover li.selected i { color: #e03544 !important; transition: all ease 0.3s; } .frontend-box:hover p.view-detail { background: #e03544 !important; transition: all ease 0.3s; padding: 8px 27px !important; border-radius: 7px !important; color: #fff !important; } .frontend-box:hover p.view-detail a{ color: #fff !important; } .frontend-box:hover .course-detail-front { transition: all ease 0.3s; border-bottom-color: #e03544; } ul.main-nav li a i { font-size: 28px; } .atrc ul li a:hover { text-decoration: none; color: #1077d4; transition: all ease 0.3s; } /**/ .hover-box { position: relative; width: 100%; overflow:hidden; } .overlay { position: absolute; bottom: 100%; left: 0; right: 0; /*background-color: #008CBA;*/ background-color: rgba(0, 120, 178, 0.8); overflow: hidden; width: 100%; height: 0; transition: .5s ease; text-align: center; } .text { /*white-space: nowrap;*/ color: white; font-size: 20px; position: absolute; overflow: hidden; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-transform: uppercase; width: 90%; } .destinations img { width: 100%; margin-bottom: 6px; height: 100%; display: block; } .hover-box:hover .overlay { bottom: 0; height: 100%; } .caro-sli { width: 100%; } .caro-sli img { width: 100%; } a.sale-tag { background: #008ace !important; transition: all ease 0.3s; padding: 3px 14px !important; border-radius: 5px; color: #fff !important; text-transform: uppercase; position: absolute; right: 21px; top: 12px; border: 2px solid #008ace ; } .img { border-bottom: 2px solid #e03544 !important; } a.continent { background: #008ace !important; transition: all ease 0.3s; padding: 3px 17px !important; border-radius: 0; color: #fff !important; text-transform: uppercase; text-decoration: none; position: absolute; top: 183px; border-radius: 5px; right: 17px; border: 2px solid #008ace ; } .course-detail-front { padding: 0; } .course-detail-front ul { list-style: none; margin: 0; padding: 0; }ul.aval { float: left; width: 100%; /*background: #f1f1f1;*/ padding: 11px 0; } ul.aval li:nth-child(2) a { color: #000 ; } ul.aval li { display: inline-block; padding-left: 17px; width: 49%; } ul.aval li:first-child a { color: #00b260; font-family: 'Proxima Nova Alt Rg' !important; text-transform: uppercase; font-size: 13px; } ul.aval li a { font-size: 14px; background: #e03544 !important; transition: all ease 0.3s; padding: 9px 53px !important; border-radius: 5px; color: #fff !important; text-transform: uppercase; } .saving a { color: #00b260; font-family: 'Proxima Nova Alt Rg' !important; text-transform: uppercase; font-size: 13px; padding-top: 10px !important; display: block; } .saving a i { padding-right: 7px; } ul.aval li { width: 100% !important; text-align: center; margin-bottom: 10px; padding-left: 0; } .price-days-saving { margin-bottom: 12px; } .time-days, .type { float: left; width: 50%; } .col-xs-12.col-sm-6.col-md-3.col-lg-3.float-left { padding: 0 5px; } span.lat { color: #0078b2 !important; font-size: 15px; float: right; padding-right: 7px; } span.fir { color: #797979; font-size: 14px; } .time-days ul li { display: inline-block; } li.form span { color: #797979; text-transform: capitalize; } li.form span { color: #797979; text-transform: capitalize; transform: rotate(-89deg); display: block; font-size: 14px; line-height: normal; } span.date { color: #262626 !important; font-weight: bold; font-size: 18px; text-align: center; display: block; } span.days { color: #262626 !important; font-weight: bold; font-size: 16px; text-align: center; display: block; text-transform: uppercase; } .popular { margin: 0 auto; width: 100%; max-width: 96%; float: none; clear: both; padding-top: 1px; } .course-detail-front h5 a { text-align: left; font-size: 16px; font-family: 'Montserrat'; color: #0078b2 !important; text-transform: uppercase; } .price-days-saving { width: 100%; float: left; margin-top: 16px; margin-bottom: 19px; } .dayz, .saving, .pri { float: left; width: 33.333%; } .price-days-saving span { color: #262626 !important; font-weight: bold; font-size: 15px; display: block; text-transform: uppercase; font-style: italic; } p.arrow { float: left; width: 100%; background: #f1f1f1; text-align: center; margin: 0; font-size: 20px; line-height: normal; padding-top: 2px; } .desc-trip { float: left; width: 100%; display: none; } p.arrow:hover { cursor: pointer; } .img { border-bottom: 2px solid #0078b2 !important; } /*.frontend-box:hover ul.aval li:last-child a,*/ /*.frontend-box:hover a.sale-tag, .frontend-box:hover a.adventure-tag, .frontend-box:hover a.continent{ background:#e03544 !important; transition: all ease 0.3s; text-decoration: none; border: 2px solid #e03544 !important; cursor: pointer; }*/ .frontend-box:hover a.sale-tag:hover, .frontend-box:hover a.adventure-tag:hover, .frontend-box:hover a.continent:hover{ /*background: rgb(289, 52, 65) !important;*/ background: #0078b2 !important; transition: background ease 0.3s; text-decoration: none; border-color: #0078b2 !important; } .frontend-box:hover .img { border-bottom: 2px solid #e03544 !important; transition: all ease 0.3s; text-decoration: none; cursor: pointer; } /**/ #sidebar-wrapper { margin-right: -250px; right: 0; width: 250px; background: #0078b2 !important; position: fixed; height: 100%; overflow-y: auto; z-index: 1000; transition: all 0.5s ease-in 0s; -webkit-transition: all 0.5s ease-in 0s; -moz-transition: all 0.5s ease-in 0s; -ms-transition: all 0.5s ease-in 0s; -o-transition: all 0.5s ease-in 0s; top: 0; } .sidebar-nav { position: absolute; top: 0; width: 250px; list-style: none; margin: 0; padding: 0; } .sidebar-nav li { line-height: 50px; text-indent: 20px; } .sidebar-nav li a { text-decoration: none; color: #fff; font-family: 'Segoe UI'; font-size: 16px; text-transform: uppercase; } .sidebar-nav li a:hover { color: #fff; background: rgba(255,255,255,0.2); text-decoration: none; } .sidebar-nav li a:active, .sidebar-nav li a:focus { text-decoration: none; } .sidebar-nav > .sidebar-brand { height: 55px; line-height: 55px; font-size: 18px; } .sidebar-nav > .sidebar-brand a { color: #999999; } .sidebar-nav > .sidebar-brand a:hover { color: #fff; background: none; } #menu-toggle { top: 4.2%; right: -3px; position: fixed; z-index: 9999; background: #0078b2 !important; border-color: #0078b2; font-size: 20px; padding: 8px 13px 6px 13px; line-height: normal; } #sidebar-wrapper.active { right: 250px; width: 250px; transition: all 0.5s ease-out 0s; -webkit-transition: all 0.5s ease-out 0s; -moz-transition: all 0.5s ease-out 0s; -ms-transition: all 0.5s ease-out 0s; -o-transition: all 0.5s ease-out 0s; } .toggle { margin: 5px 5px 0 0; } div#sidebar-wrapper li a { background: inherit !important; } div#sidebar-wrapper li a:hover { background: inherit !important; color: #e03544; } .secondmenu{ display: none; } ul.revi li { display: inline-block; color: #000 !important; font-size: 14px; } ul.revi li i { color: #e03544; } p.des { color: #797979; font-size: 16px; line-height: normal; font-style: italic; padding: 0 11px; } ul.comaprison li { width: 100%; float: left; } ul.comaprison li strong { float: left; width: 42%; } ul.comaprison li span { float: right; text-shadow: 0 0 #585858; color: #585858; width: 58%; } ul.comaprison { padding: 0 11px; } ul.revi { padding: 0 11px; } a.adventure-tag { background:#008ace !important; transition: all ease 0.3s; padding: 3px 20px !important; border-radius: 5px; color: #fff !important; text-transform: uppercase; position: absolute; left: 21px; top: 12px; border: 2px solid #008ace ; } li.summer-sale { color: #e03544; font-size: 61px; font-family: 'Mission Script'; text-shadow: 1px 2px 0px #fff; } li.save { color: #0078b3; font-size: 40px; font-family: 'Montserrat'; font-weight: bolder; text-shadow: 1px 2px 0px #fff; } li.tours { color: #e03544; font-size: 24px; text-shadow: 1px 2px 0px #ccc; font-family: 'Montserrat'; } ul.slider-text li { line-height: normal; text-align: center; } li.thr { color: #fff; font-size: 40px; font-family: 'Montserrat'; font-weight: bolder; text-shadow: 1px 2px 0px #000; text-transform: uppercase; } ul.slider-text { list-style: none; padding: 0; margin: 0; margin-bottom: 25px; } ul.aval li:first-child a i { padding-right: 7px; } ul.aval li:last-child a:hover { background: rgb(289, 52, 65) !important; transition: background ease 0.3s; text-decoration: none; } ul.comaprison li strong { text-transform: uppercase; } div.deals { background: url(../img/deals-banner.png); height: 100%; min-height: 448px; background-repeat: no-repeat; background-size: cover; } .deals-search form { padding: 15px 22px; } .deals-search { top: 166px !important; } div#banner { float: left; width: 100%; height: 100%; min-height: 448px; background-repeat: no-repeat; background-size: cover; } .savings-offers { color: #ffffff ; background-color: #e03544; width: 200px ; height: auto ; line-height: normal ; transform: rotate(-45deg); top: -10px ; left: -77px ; overflow: hidden; position: absolute ; padding: 26px 3px 10px 3px; text-align: center; } .savings-offers span { display: block; font-family: 'Proxima Nova Rg'; } .savings-offers span:first-child { font-size: 13px; font-weight: 600; } .savings-offers span:last-child { font-weight: bold; } .deals-sections { float: left; width: 100%; margin: 88px 0 8px 0; } .pink { background: #fceaec; } .blue { background: #e5f1f7; } .deals-se p:last-child a { background: #e03544; border: 2px solid #e03544; color: #fff; padding: 7px 16px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; }.deals-se h4 { font-family: 'Proxima Nova Alt Rg'; font-size: 24px; font-weight: bold; margin-top: 30px; } .deals-se { text-align: center; padding: 18px 0 10px 0; }.deals-se p:last-child a:hover, p.site a:hover { border-color: rgb(289, 52, 65) !important; color: #fff; background: rgb(289, 52, 65) !important; transition: background ease 0.3s; } .deals-se img { height: 80px; } .top-offers { float: left; width: 100%; margin-bottom: 40px; } .offer-img-title { float: left; width: 100%; } .offer-img { width: 34%; float: left; } .offer-title { float: left; width: 66%; } .offer-title h5 a { color: #0078b2; font-family: 'Proxima Nova Rg'; text-decoration: none; font-size: 18px; font-weight: 600; } .offer-title h5 { margin-top: 30px; margin-bottom: 0; } .offer-title span a { color: #e03544; font-weight: 700; text-decoration: none; } div#offes-show { background: #f9f9f9; border: 1px solid #cfcfcf; padding-top: 14px; padding-bottom: 14px; margin-bottom: 12px; } p.head { color: #262626; font-size: 17px; font-weight: 600; line-height: normal; margin-bottom: 0; } .offer-details { text-align: center; margin-top: 30px; } .offer-details p a { color: #0078b2; font-family: 'Proxima Nova Rg'; text-decoration: none; font-size: 16px; font-weight: 600; } p.site a { background: #e03544; border: 2px solid #e03544; color: #fff; padding: 7px 0; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; display: block; } p.cross { color: #262626; font-size: 20px; line-height: normal; text-decoration: line-through; font-family: 'Proxima Nova Rg'; padding-top: 11px; } p.rel-p { color: #e03544; font-size: 20px; line-height: normal; font-family: 'Proxima Nova Rg'; padding-top: 11px; } div#inner-de .col-sm-1.col-md-1.col-lg-1 { padding: 0; } p.site { margin-bottom: 0; padding-top: 5px !important; } p.lbl { text-align: center; margin-bottom: 0; color: #aaaaaa; } div.login { background: url(../img/login-banner.png); background-size: cover; height: 100%; background-repeat: no-repeat; min-height: 924px; } .login-form-main { margin: 0 auto; width: 100%; max-width: 497px; padding-top: 100px; } p.rem { float: left; width: 100%; } .wel h1, .wel p { color: #fff; } .login-form { background: #f9f9f9; padding: 25px 40px; float: left; width: 100%; } .sign-diff p { background: #2a457e; border-radius: 11px; text-align: center; float: left; width: 100%; } .sign-diff p i { background: #223661; padding: 15px 18px; border-radius: 11px 0 0 11px; color: #fff; font-size: 20px; float: left; } .sign-diff p a { color: #fff; text-align: center; width: 100%; text-decoration: none; font-size: 22px; line-height: 49px; } .or hr.fir { float: left; width: 46%; border-color: #9f9f9f; } .or hr.sec { float: right; width: 46%; border-color: #9f9f9f; } .or span { text-align: center; } .or { text-align: center; color: #000; font-weight: 600; font-size: 20px; float: left; width: 100%; margin-bottom: 8px; } .login-form input { background: #ebebeb; border: 1px solid #bbb; border-radius: 3px; height: 40px; padding: 5px 8px; margin-bottom: 10px; }.login-form label { color: #262626; font-size: 14px; font-weight: 600; } p.rem input { width: 3%; float: left; height: inherit; margin-top: 2px; } p.rem label { float: left; width: 96%; line-height: normal; padding-left: 5px; color: #a4a4a4; font-weight: 100; } .login-form input[type="submit"] { background: #e03544; border: 2px solid #e03544; color: #fff; padding: 7px 16px; font-family: 'Montserrat'; font-size: 15px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; cursor: pointer; font-weight: 400; } .login-form-main form > p span { color: #262626; font-size: 14px; font-weight: 600; text-align: center; display: block; } .sign-up-diff p a { background: #0475ab; text-align: center; color: #fff; display: block; border-radius: 8px; padding: 20px 0; text-decoration: none; font-family: 'Montserrat'; } .sign-up-diff p a span { display: block; line-height: normal; font-size: 15px; font-weight: 400; } .sign-up-diff { float: left; width: 100%; } .sign-up-diff p a span.b { font-size: 31px; font-weight: 400; } div.sign-up { background: url(../img/sign-up-banner.png) !important; min-height: 1024px; } input.sib { background: #0475ab !important; border-color: #0475ab !important; }.sind p a { background: #e03544; } div.magazine { background: url(../img/magazine-banner.png); } header#header { background-color: rgba(0, 120, 178, 0.85); } ul.main-nav li a.current_page_item, .footer-menu ul li a.current_page, ul.main-nav li a:hover, .footer-menu ul li a:hover { color: #e03544; } .all-posts { margin-top: 22px; margin-bottom: 40px; float: left; width: 100%; } .post { width: 100%; float: left; } .post-content, .post-date, .post-image, .post-excerpt, .post-title { width: 100%; float: left; } .all-posts hr { float: left; width: 100%; border-color: #cacaca; margin: 50px 0; } .post-categories span a { color: #262626; font-size: 14px; font-family: 'Montserrat'; text-decoration: none; font-weight: 400; } .post-date p { color: #e03544; font-size: 14px; font-family: 'Montserrat'; text-decoration: none; font-weight: 400; margin-top: 4px; }.post-title h2 a { color: #0078b2; text-decoration: none; font-size: 24px; font-family: 'Montserrat'; font-weight: 400; } .post-title h2 { margin-bottom: 10px; } .post-image p a img { width: 100%; } .post-excerpt p { color: #6b6b6b; font-size: 14px; font-family: 'Montserrat'; margin-bottom: 0px; line-height: 23px; } .post-sidebar div > h2 { text-align: center; font-family: 'Proxima Nova Alt Rg'; font-size: 28px; font-weight: bold; margin-bottom: 0; } .post-sidebar div > p { text-align: center; font-family: 'Proxima Nova Alt Rg'; font-size: 16px; color: #262626; } .search-posts { background: #fceaec; float: left; width: 100%; padding: 40px 42px; } .search-posts .form button.btn.btn-primary { background: #e03544; border-color: #bbb; } .search-posts .form input { border-color: #bbbbbb !important; border-width: 1px; } .post-sidebar { float: left; width: 100%; margin-top: 40px; } .most-popular { float: left; width: 100%; padding: 40px 35px; background: #e5f1f7; margin: 33px 0; } ul.articles { margin: 0; list-style: none; background: #fff; border: 1px solid #e3e3e3; border-radius: 5px; padding: 0px 0; float: left; width: 100%; } ul.articles li { border-bottom: 1px solid #e3e3e3; display: block; width: 100%; float: left; padding: 19px; } ul.articles li img { width: 25%; float: left; } ul.articles li p { float: left; width: 75%; padding-left: 10px; color: #575757; font-size: 14px; font-family: 'Montserrat'; margin-bottom: 0px; line-height: 23px; } ul.articles li:last-child { border: none; } .categories { float: left; width: 100%; padding: 40px 35px; background: #e5f1f7; margin-bottom: 35px; } ul.categories-name { padding: 0; list-style: none; margin: 0; border: 1px solid #e3e3e3; background: #fff; border-radius: 5px; } ul.categories-name li { border-bottom: 1px solid #e3e3e3; } ul.categories-name li:last-child { border: none; } ul.categories-name li a { color: #575757; text-align: center; display: block; text-decoration: none; padding: 10px 0; font-weight: 500; font-size: 16px; } .deals-search form input[type="text"] { margin-bottom: 10px; } .deals-search form { padding-top: 3px; }div#-postdetails { margin-top: 160px; } div#-postdetails .post-excerpt p { margin-bottom: 20px; } .sharing { background: #0078b2; padding: 19px 0; text-align: center; border-radius: 5px; margin-bottom: 25px; } .sharing-inner p { color: #fff; margin-bottom: 0 !important; font-family: 'Montserrat'; } .sharing-inner p a { color: #fff; padding: 0 6px; font-size: 15px; } .sharing-inner p span { padding-left: 18px; } .about-auther { float: left; width: 100%; background: #e5f1f7; padding: 16px 13px; } .auther-img { float: left; width: 14%; } .auther-text { float: left; width: 86%; } .auther-text h2 { font-family: 'Proxima Nova Alt Rg'; font-size: 28px; font-weight: bold; } .auther-text p { color: #6b6b6b; font-size: 14px; font-family: 'Montserrat'; margin-bottom: 15px; line-height: 23px; } div#-postdetails .post-excerpt p:last-child { margin-bottom: 0; } .post-comment form input { border: 1px solid #bebebe; border-radius: 4px; background: #f2f2f2; height: 40px; margin-bottom: 18px; padding: 0 10px; color: #a4a4a4; } .web .input-field { float: left; width: 31.33%; } .com { float: left; width: 100%; } .com textarea { border: 1px solid #bebebe; border-radius: 4px; background: #f2f2f2; height: 200px; margin-bottom: 10px; padding: 7px 10px; width: 100%; color: #a4a4a4; } .submit input { background: #e03544 !important; border: 2px solid #e03544 !important; color: #fff !important; padding: 7px 16px !important; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px !important; text-align: center; text-transform: uppercase; text-decoration: none; width: 25%; cursor: pointer; } .post-comment form input::placeholder, .post-comment form textarea::placeholder{ color: #a4a4a4; } .post-comment h5 { color: #0078b2; font-family: 'Montserrat'; font-weight: 400; font-size: 18px; } .review { background: #fceaec; float: left; width: 100%; padding-top: 136px; }.form-filter h4 { text-align: center; font-family: 'Proxima Nova Alt Rg'; font-size: 30px; font-weight: bold; }.filter-frm { margin: 0 auto; width: 100%; max-width: 40%; } .filter-frm input { background: #fff; border-color: #fff; } button.btn.btn-primary { background: #e03544; border-color: #e03544; cursor: pointer; } .form-filter { margin: 0 auto; width: 100%; max-width: 79%; padding-bottom: 35px; } .form-filter p { color: #776567; text-align: center; }.form-filter form { margin-bottom: 25px; margin-top: 10px !important; } div#review-shows { background: #f9f9f9; border: 1px solid #cfcfcf; padding-top: 14px; padding-bottom: 14px; margin-bottom: 35px; } .about-com h5 { color: #0078b2; text-decoration: none; font-size: 16px; font-weight: 600; font-family: 'Montserrat'; margin-top: 8px; } span.lab { color: #262626; text-decoration: none; font-size: 15px; font-family: 'Montserrat'; line-height: normal; text-transform: uppercase; font-weight: 500; float: left; width: 50%; } .about-com p { margin-bottom: 0; float: left; width: 100%; } span.def { color: #262626; text-decoration: none; font-size: 16px; line-height: normal; font-family: 'Proxima Nova Alt Rg'; float: left; width: 50%; } .com-rating ul { list-style: none; margin: 0; padding: 0; } .com-rating ul li { display: inline-block; padding: 0 1px; } .com-rating ul li a i { color: #e03544; font-size: 26px; } .com-rating p span { color: #262626; text-decoration: none; font-size: 14px; font-family: 'Montserrat'; line-height: normal; text-transform: uppercase; font-weight: 500; } .com-rating { float: right; } .review-p a { color: #e03544; } .review-p a { font-family: 'Montserrat'; font-weight: 500; text-decoration: none; } .review-p { margin-top: 15px; } .review-p span a { background: #e03544; border: 2px solid #e03544; color: #fff; padding: 7px 48px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; } .company-img img { width: 100%; } .review-p p { margin-bottom: 30px; } .traveling-reviews { float: left; width: 100%; margin-top: 50px; } img.maxp { width: 100%; } .text p { font-size: 14px !important; text-align: center; } .text h2 { font-size: 18px !important; text-align: center; } .latest-articles { float: left; width: 100%; } .subscribe-connect { float: left; width: 100%; margin-top: 30px; } .pinks { float: left; background: #fceaec; width: 100%; padding-bottom: 30px; } .pinks h1 { margin-top: 30px !important; } .pinks h1 { margin-bottom: 0; margin-top: 30px !important; line-height: normal; } .p-social-icons ul { list-style: none; text-align: center; margin: 0; padding: 0; } .p-social-icons ul li { display: inline-block; width: 32px; margin: 0 5px; } .p-social-icons ul li a { border: 1px solid #7d7d7d; color: #7d7d7d; border-radius: 50%; display: block; padding: 3px 0; } .p-social-icons ul li a:hover { background: #e03544; color: #fff; border-color: #e03544; transition: all ease 0.3s; } .subscribe-form { margin: 0 auto; width: 100%; max-width: 82%; } form.subscribe { background: #fff; float: left; width: 100%; } form.subscribe input[type=text] { border: 1px solid #fff; height: 40px; padding: 6px 11px; font-size: 14px; width: 75%; float: left; } form.subscribe input[type="submit"] { background: #e03544; border: 1px solid #e03544; color: #fff; text-transform: uppercase; font-weight: 700; font-size: 18px; height: 41px; float: left; width: 25%; cursor: pointer; } form.subscribe { background: #fff; float: left; padding: 2px 0; width: 100%; } form.subscribe input:focus { outline: none; } input:focus { outline: none; } .rpost h3 a { color: #0078b2; text-decoration: none; font-size: 18px; font-family: 'Montserrat'; font-weight: 400; } p.d { color: #e03544 !important; font-size: 14px !important; font-family: 'Montserrat' !important; text-decoration: none; font-weight: 400; } .rpost h3 { margin-bottom: 0; margin-top: 10px; } .rpost p { color: #6b6b6b; font-size: 14px; font-family: 'Montserrat'; margin-bottom: 0px; line-height: 23px; padding: 0 4px; } p.btn-btn a { border: 1px solid #e03544; color: #e03544; padding: 9px 32px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; font-weight: 500; text-decoration: none; } p.btn-btn { margin-top: 30px; margin-bottom: 27px; } .rpost { background: #f9f9f9; border: 1px solid #cfcfcf; text-align: center; } p.btn-btn a:hover { background: rgb(289, 52, 65); color: #fff; transition: background ease 0.3s; } .post-blogs { float: left; width: 100%; margin-bottom: 60px; } .travel-guide-top-destinations { float: left; width: 100%; margin-top: 70px; } .bluet { float: left; width: 100%; background: #e7f1f5; padding-bottom: 20px; padding-left: 15px; padding-right: 15px; } .bluet h1 { margin-top: 35px; margin-bottom: 0; } .bluet.ex h1, .bluet.ex p { text-align: left; } .bluet .hover-box img { width: 100%; } .bluet .row { margin-bottom: 15px; } /**/ .guide .main-img img { width: 100%; } .relates-guide-img ul { padding: 0; list-style: none; } .relates-guide-img ul li { display: block; width: 32%; float: left; } .relates-guide-img ul li .hover-box img { width: 100%; } .relates-guide-img ul li:nth-child(2) { margin: 0 10px; } .relates-guide-img { margin-top: 8px; } /**/ .latest-articles { margin-top: 100px; } .tour-comparator { background: url(../img/tour-compatator.png); } .tour-comparators { float: left; width: 100%; margin-top: 40px; } .compare { float: left; width: 100%; padding: 24px 17px; background: #e5f1f7; } .compare .frontend-box::after { content: "\f00d"; font-family: FontAwesome; color: #fff; position: absolute; top: -20px; background: #0078b2; border-radius: 50%; padding: 1px 4px; line-height: normal; font-size: 15px; height: 18px; right: 16px; font-weight: 100; } .choose-trip { background: #fceaec; float: left; width: 100%; padding-top: 14px; } .choose-trip h1 { margin-top: 13px; font-size: 22px; margin-bottom: 0; } .choose-trip p { font-size: 16px; } div#comp-id { border: 1px solid #cfcfcf; padding: 8px 0; } .comparision { float: left; width: 100%; padding: 0 24px; margin-bottom: 29px; } .comparision .saving { margin-left: 12px; } .comparision p.des { margin-bottom: 0; } .comparision .saving a { font-weight: 800; } .rt-ti { float: left; width: 100%; } .tit-rg { float: left; width: 80%; } .tr-vich-ig { float: left; width: 20%; text-align: center; padding-top: 11px; } .popular_guides .hover-box a img { width: 100%; } .deals-details .relates-guide-img ul li:nth-child(2) { margin: 0 8px; } .deals-details .bluet.ex, .deals-details2 .bluet.ex { margin-bottom: 30px; } .deals-details, .deals-details2, .deals-details3 { float: left; width: 100%; } .popular_guides { float: left; width: 100%; } .deals-details { margin-top: 155px; } .tour-comparators { border-bottom: 1px solid #cfcfcf; padding-bottom: 70px; } .deals-details3 { border-bottom: 1px solid #cfcfcf; padding-bottom: 70px; } .deals-t h1 { font-family: 'Proxima Nova Alt Rg'; font-size: 30px; font-weight: bold; } .deals-t h1 { font-family: 'Proxima Nova Alt Rg'; font-size: 30px; font-weight: bold; } .deals-book p a { background: #e03544; border: 2px solid #e03544; color: #fff; padding: 7px 0px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; display: block; } .deals-book p { width: 100%; } .deals-t { float: left; width: 75%; } .deals-book { float: left; width: 25%; } .details-des > p { color: #797979; font-size: 17px; line-height: normal; float: left; width: 100%; } .details-des > p span { color: #e03544; font-weight: 400; font-family: 'Montserrat'; } .all-feat { float: left; width: 100%; background: #f9f9f9; border: 1px solid #cfcfcf; padding: 25px 12px; } .all-feat ul { list-style: none; padding: 0; margin: 0; } .all-feat ul li { margin-bottom: 12px; } ul#comaprison-id li strong { float: left; width: 42%; font-size: 15px !important; } ul#comaprison-id li span { float: left; width: 58%; float: initial; text-shadow: 0 0 #585858; color: #585858; } ul#comaprison-id li span { float: initial; } span.rd { color: #292b2c; text-decoration: line-through; } p.lnth { display: inline; padding-left: 11px; color: #e03544; text-shadow: 0 0 #e03544; } span.dsys { color: #0078b2 !important; text-shadow: 0 0 #0078b2 !important; } ul#comaprison-id li span ul li { display: inline-block !important; width: inherit !important; float: inherit !important; } ul#comaprison-id li .saving a { padding: 0 !important; font-weight: bold; } .book-info li:first-child a { background: #e03544; border: 2px solid #e03544; color: #fff; padding: 7px 60px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; display: block; } .book-info li:last-child a { background: #0078b2; border: 2px solid #0078b2; color: #fff; padding: 7px 60px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; display: block; } .book-info li { display: inline-block; padding: 0 10px; } .book-info ul { text-align: center; } .book-info ul { margin-top: 20px; } .routes_place-menu ul { padding: 11px 0; list-style: none; margin: 0; background: #0078b2; text-align: center; border-radius: 4px; } .routes_place-menu li { display: inline-block; line-height: normal !important; border-right: 1px solid #005178; padding: 0px 0px; width: 25%; } .routes_place-menu li a { color: #fff; line-height: normal; text-decoration: none; } .routes_place-menu li:last-child { border: none; } .bluet.ex p { text-align: left; margin-bottom: 10px; } /**/ .tg {border-collapse:collapse;border-spacing:0;} .tg td{font-family:'Proxima Nova Alt Rg';font-size:16px;padding:12px 15px;border-style:solid;border-width:1px;border-color:#d9d9d9;overflow:hidden;word-break:normal;} .tg th{font-family:'Proxima Nova Alt Rg';font-size:20px;font-weight:normal;padding:12px 15px;border-style:solid;border-width:1px;border-color:#d9d9d9;overflow:hidden;word-break:normal;} .tg .tg-qz94{background-color:#f9f9f9} .tg .tg-4u1e{background-color:#a2a2a2} .tg .tg-qb4h{background-color:#f9f9f9;vertical-align:top} th.tg-4u1e { color: #fff ; } .check-check-out { margin-top: 48px; } /**/ .fullrates ul { list-style: none; padding: 0; margin: 0; float: left; width: 100%; } .fullrates ul.progress-bar-rating-main li { float: left; } li.raing-t p { font-family: 'Proxima Nova Rg'; font-size: 18px; color: #0078b2; line-height: normal; text-shadow: 0 0 #0078b2; } ul.course-ratings li i { color: #e03544; font-size: 17px; } .fullrates .progress-bar { background-color: #e03544; height: 6px; } .fullrates .progress { background: inherit; border: 1px solid #9B9B9B; border-radius: 0; float: left; width: 66%; margin-top: 9px; margin-left: 9px; } li.progress-bar-rating ul { float: left; width: 20%; padding-left: 11px; } li.raing-t { width: 28%; } li.progress-bar-rating-star { width: 25%; } li.progress-bar-rating { width: 45%; } ul.course-ratings li { float: initial !important; display: inline-block; } li.progress-bar-rating ul li p { margin-bottom: 0; line-height: normal; color: #e03544; font-size: 16px; } .reviews-ratings { float: left; width: 100%; background: #f9f9f9; border: 1px solid #cfcfcf; padding: 25px 12px; } .reviews-ratings h4 { color: #0078b2; font-size: 20px; font-weight: bold; margin-bottom: 30px; } .fullrates { float: left; width: 100%; border-right: 1px solid #cfcfcf; } .overall ul { list-style: none; padding: 0; margin: 0; } .overall ul li { float: left !important; width: 100% !important; text-align: center; } .overall li.progress-bar-rating ul { width: 100%; } .overall ul.course-ratings li { float: initial !important; width: inherit !important; display: inline-block !important; } .overall ul.course-ratings li i { font-size: 20px; } .overall ul.course-ratings { margin-bottom: 5px; } .overall li.raing-t p { margin-bottom: 8px; } a.rec { background: #00b260; border: 2px solid #00b260; color: #fff; padding: 10px 15px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; } .overall li.progress-bar-rating ul li p { margin-bottom: 18px; } .overall { float: left; width: 100%; padding-top: 15px; } /**/ .adventure-tours { float: left; width: 100%; background: #e5f1f7; padding-bottom: 23px; margin-bottom: 45px; } .adventure-tours p.mns-para { color: #6b6b6b; text-align: justify; padding-top: 6px; } .trip-finder-main { float: left; width: 100%; } .range-slider { margin: 60px 0 0 0%; } .range-slider { width: 100%; } .range-slider__range { -webkit-appearance: none; width: 100%; height: 19px; border-radius: 4px; background: #fff; outline: none; padding: 0; margin: 0; border: 1px solid #bbb; } .range-slider__range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 25px; border-radius: 0%; background: #fff; cursor: pointer; -webkit-transition: background .15s ease-in-out; transition: background .15s ease-in-out; border:1px solid #bbb !important; } .range-slider__range::-webkit-slider-thumb:hover { background: #fff; } .range-slider__range:active::-webkit-slider-thumb { background: #fff; } .range-slider__range::-moz-range-thumb { width: 20px; height: 25px; border-radius: 0%; background: #2c3e50; cursor: pointer; -webkit-transition: background .15s ease-in-out; transition: background .15s ease-in-out; border:1px solid #bbb !important; } .range-slider__range::-moz-range-thumb:hover { background: #1abc9c; } .range-slider__range:active::-moz-range-thumb { background: #1abc9c; } ::-moz-range-track { background: #d7dcdf; border: 0; } input::-moz-focus-inner, input::-moz-focus-outer { border: 0; } .range-slider span { text-shadow: 0 0 #585858; color: #585858; } .ran-max { float: right; width: 50%; text-align: end; } div#all-feat2 ul#comaprison-id li span { float: initial; font-size: 15px; } div#all-feat2 ul#comaprison-id li strong { font-size: 14px !important; } .trips-de h2 { line-height: normal; color: #292b2c; font-size: 22px; font-weight: bold; margin-bottom: 0; } p.destin a { background: #0078b2; border: 2px solid #0078b2; color: #fff; padding: 7px 24px; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px; text-align: center; text-transform: uppercase; text-decoration: none; } div#detail-tr img { width: 100%; } .trips-de p { text-shadow: 0 0 #585858; color: #585858; font-style: italic; margin-bottom: 28px; } div#all-feat2 { margin-bottom: 22px; } p.destin { font-style: normal; } .trips-de span { line-height: 1.5; color: #292b2c; font-size: 18px; } .trip-finder-main { border-bottom: 1px solid #e4e4e4; padding-bottom: 55px; } div#related-guides { padding: 19px 11px; margin-top: 0; } div#related-guides ul.articles li p { float: left; width: 68%; font-size: 13px; font-family: 'Montserrat'; margin-bottom: 0px; line-height: 23px; text-shadow: 0 0 #585858; color: #585858; padding-left: 5px; font-weight: 400; } div#related-guides ul.articles li img { width: 32%; float: left; } div#related-guides ul.articles li { border-bottom: 1px solid #e3e3e3; display: block; width: 100%; float: left; padding: 6px; } div#related-guides h2 { line-height: normal; color: #292b2c; font-size: 22px; font-weight: bold; margin-bottom: 6px; } div#related-guides > p { margin-bottom: 0; float: left; width: 100%; margin-top: 5px; } div#related-guides p a { color: #0078b2 !important; text-shadow: 0 0 #0078b2 !important; } div#fir-ro { margin-top: 6px; padding-bottom: 20px; border-bottom: 1px solid #cfcfcf; margin-bottom: 27px; } div#fir-ro p { text-shadow: 0 0 #585858; color: #585858; font-size: 15px; margin-bottom: 0; margin-top: 16px; } div#fir-ro p i { padding-right: 5px; font-size: 20px; } div#fir-ro .input-group.custom-search-form.filter-frm { margin: inherit; max-width: 100%; } div#fir-ro .input-group.custom-search-form.filter-frm input { border: 1px solid #e3e3e3; background: #f4f4f4; color: #8e8e8e; } .fa-arrow:before { content: "\f078 "; } p.compare-selected a { background: #e03544 !important; border: 2px solid #e03544 !important; color: #fff !important; padding: 7px 16px !important; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px !important; text-align: center; text-transform: uppercase; text-decoration: none; display: block; } p.compare-selected { margin-top: 0 !important; width: 100%; } div#fir-ro .input-group-btn { position: relative; font-size: 0; white-space: nowrap; width: 25%; float: left; } div#fir-ro .input-group.custom-search-form.filter-frm input { border: 1px solid #e3e3e3; background: #f4f4f4; color: #8e8e8e; width: 75%; float: left; } .drop-me { float: left; width: 100%; max-width: 100%; } .dro { float: left; width: 100%; max-width: 100%; } div#fir-ro button.btn.btn-primary { padding: .5rem 0; } .drop ul li { padding-left: 13px; border-bottom: 1px solid #e3e3e3; } .drop ul li a { color: #8e8e8e; } .drop ul { border: 1px solid #e3e3e3; background: #f4f4f4; color: #8e8e8e; padding: 0; list-style: none; position: absolute; width: 86%; z-index: 99; } .main-box { background: #fceaec; padding: 20px 16px; margin-bottom: 15px; float: left; width: 100%; } .main-box .header h3 { line-height: normal; color: #292b2c; font-size: 22px; font-weight: bold; margin-bottom: 0; } .main-box .header h3::after { content: "\f107 "; float: right; font-family: FontAwesome; line-height: 26px; } .main-box .bodys { border-top: 1px solid #eea8b0; margin-top: 5px; float: left; width: 100%; padding-top: 14px; } li.collapse { display: none; } .collapse.in { display: block; } .sameus { float: left; width: 100%; } .sameus p { float: left; width: 17%; text-shadow: 0 0 #585858; color: #585858; margin-bottom: 0; padding-top: 8px; }.sameus span.input-group-addon { background: #e03544; color: #fff; padding-top: 6px; padding-bottom: 8px; } .sameus input.form-control { background: #fff; border: 2px solid #d8d8d8; padding-top: 6px; padding-bottom: 8px; } .form-group { float: right; width: 82%; } .range-slider { margin-top: 0; } span.com { float: right !important; } span.com a { background: #e03544 !important; border: 2px solid #e03544 !important; color: #fff !important; padding: 7px 16px !important; font-family: 'Montserrat'; font-size: 13px; border-radius: 4px !important; text-align: center; text-transform: uppercase; text-decoration: none; } .header-ar h3::after { display: none; } @media all and (max-width:986px ){ .mainmenu{ display: none; } .secondmenu{ display: block; } } @media all and (max-width:786px ){ .mainmenu{ display: none; } } @media all and (max-width:768px ){ .location-search { top: 25%; } .how-works h1 { text-align: center; } .how-works p { text-align: center; }p.btn { margin: 0 auto; display: table; margin-top: 17px; } .footer-menu { padding-left: 0 !important; } } @media all and (max-width:667px ){ .caro-sli img { width: 100%; min-height: 547px; height: 100%; } } @media all and (max-width:667px ){ .location-search { top: 33%; } .col-xs-12.col-sm-6.col-md-5.col-lg-5.float-left { padding-left: 15px !important; padding-right: 15px !important; } .col-xs-12.col-sm-6.col-md-7.col-lg-7.float-left, .col-xs-12.col-sm-12.col-md-12.col-lg-12.float-left, .col-xs-16.col-sm-6.col-md-6.col-lg-6.float-left, .col-xs-6.col-sm-6.col-md-6.col-lg-6.float-left { padding-right: 15px !important; padding-left: 15px !important; } .footer-menu { margin: 0 !important; margin-top: 25px !important; } } div.tour-comparators a.find-trip-button{ background: #0078b2; border: 2px solid #0078b2; color: #fff; padding: 15px 38px; font-family: 'Montserrat'; font-size: 20px; border-radius: 6px; text-align: center; text-transform: uppercase; text-decoration: none; margin: 0 auto; width: 100%; } div.tour-comparators a.find-trip-button:hover{ background: #e03544 !important; transition: all ease 0.7s; color: #fff !important; border: 2px solid #e03544; } div.tour-comparators div.find-trip{ margin: 45px auto; } /* loader gif icon */ .se-pre-con { position: fixed; left: 0px; top: 0px; width: 100%; height: 100%; z-index: 9999; background: url(public/img/loader_home.gif) center no-repeat #b9b9b9; opacity: 0.8; }
0.357007
0.085978
@charset "utf-8"; html{overflow:hidden;} body{background:#e2e9ef;} .main-wrap{position:relative;margin:0 auto;background:url('img/top-bg.png') repeat-x 0 0;} .header{height:61px;border-bottom:1px solid #4a86b8;} .header-logo{float:left;height:60px;width:592px;background:url('img/logo-bg.png') no-repeat 0 0;} .logo{float:left;height:60px;width:60px;background:url('img/1_01.png') no-repeat 0 0;} .logo-text{float:left;height:60px;width:113px;background:url('img/name.png') no-repeat 0 0;} .header-buttons{float:right;height:60px;background:url('img/button-bg.png') no-repeat 0 0;} .header-buttons a, .header-buttons span{color:#fafafa;vertical-align:middle;margin-top: 8px;margin-right: 8px;} .header-buttons a:hover{text-decoration:none;} #user{display:inline-block;background:url('img/1_03.gif') no-repeat 0 0;padding:1px 0 1px 18px;height:16px;line-height:16px;} #message{display:inline-block;background:url('img/news.gif') no-repeat 0 1px;padding:1px 0 1px 18px;height:16px;line-height:16px;} #home{display:inline-block;background:url('img/home.gif') no-repeat 0 0;padding:1px 0 1px 18px;height:16px;line-height:16px;} #help{display:inline-block;background:url('img/1_06.gif') no-repeat 0 0;padding:1px 0 1px 18px;height:16px;line-height:16px;} #logout{display:inline-block;background:url('img/1_08.gif') no-repeat 0 0;padding:1px 0 1px 18px;height:16px;line-height:16px;} .aside{overflow:auto;width:200px;background:#fff;position:absolute;top:62px;left:0;} .main{margin:0 0 0 200px;border-left:1px solid #adc6d2;background:#fff;position:relative;} .uare-bg{border:1px solid #f4f4f4;border-bottom:1px solid #d5d5d5;height:27px;background:url('img/uare-bg.png') repeat-x 0 0;} .uarehere{float:left;height:13px;width:336px;padding:7px;background:url('img/uarehere.png') no-repeat 0 0;} .uareright{float:right;height:27px;width:380px;background:url('img/uareright.png') no-repeat 0 0;} .menu-toggle{width:4px;position:absolute;top:28px;left:0;cursor:pointer;} .main-in{padding-left:4px;padding-top:3px;background:url('img/fade-bar.png') repeat-y 0 0;overflow:auto;position: relative;} body .popwin-btns{padding:3px 0 0;}
js/requirejs/policy/page/page.css
@charset "utf-8"; html{overflow:hidden;} body{background:#e2e9ef;} .main-wrap{position:relative;margin:0 auto;background:url('img/top-bg.png') repeat-x 0 0;} .header{height:61px;border-bottom:1px solid #4a86b8;} .header-logo{float:left;height:60px;width:592px;background:url('img/logo-bg.png') no-repeat 0 0;} .logo{float:left;height:60px;width:60px;background:url('img/1_01.png') no-repeat 0 0;} .logo-text{float:left;height:60px;width:113px;background:url('img/name.png') no-repeat 0 0;} .header-buttons{float:right;height:60px;background:url('img/button-bg.png') no-repeat 0 0;} .header-buttons a, .header-buttons span{color:#fafafa;vertical-align:middle;margin-top: 8px;margin-right: 8px;} .header-buttons a:hover{text-decoration:none;} #user{display:inline-block;background:url('img/1_03.gif') no-repeat 0 0;padding:1px 0 1px 18px;height:16px;line-height:16px;} #message{display:inline-block;background:url('img/news.gif') no-repeat 0 1px;padding:1px 0 1px 18px;height:16px;line-height:16px;} #home{display:inline-block;background:url('img/home.gif') no-repeat 0 0;padding:1px 0 1px 18px;height:16px;line-height:16px;} #help{display:inline-block;background:url('img/1_06.gif') no-repeat 0 0;padding:1px 0 1px 18px;height:16px;line-height:16px;} #logout{display:inline-block;background:url('img/1_08.gif') no-repeat 0 0;padding:1px 0 1px 18px;height:16px;line-height:16px;} .aside{overflow:auto;width:200px;background:#fff;position:absolute;top:62px;left:0;} .main{margin:0 0 0 200px;border-left:1px solid #adc6d2;background:#fff;position:relative;} .uare-bg{border:1px solid #f4f4f4;border-bottom:1px solid #d5d5d5;height:27px;background:url('img/uare-bg.png') repeat-x 0 0;} .uarehere{float:left;height:13px;width:336px;padding:7px;background:url('img/uarehere.png') no-repeat 0 0;} .uareright{float:right;height:27px;width:380px;background:url('img/uareright.png') no-repeat 0 0;} .menu-toggle{width:4px;position:absolute;top:28px;left:0;cursor:pointer;} .main-in{padding-left:4px;padding-top:3px;background:url('img/fade-bar.png') repeat-y 0 0;overflow:auto;position: relative;} body .popwin-btns{padding:3px 0 0;}
0.148109
0.076201
.vchip_product_itm{ background: #fff; margin-top: 30px; width: 100%; height:auto; padding: 10px; -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.18); -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.18); -ms-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.18); -o-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.18); box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.18); } .vchip_product_content{ padding:10px 10px 7px 22px; } h3.h3-heding{ text-transform: uppercase; font-size: 15px; font-weight: 600; color: #e91e63; padding-left: 14px ; outline: 0; top:0px; font-weight: bolder; } .ellipsed { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } span.ellipsed,a.ellipsed,h3.ellipsed{ cursor: pointer; } /*h2 { border-bottom: 10px solid red; font-family: 'Raleway', sans-serif; font-size: 65px; font-weight: 900; margin: 0 auto; padding: 20px 0 3px; text-align: center; text-transform: uppercase; width: 40.2%; }*/ #workshop img { height: 300px !important; width: 100%; } #workshop .row.text-center p { font-size: 17px; font-weight: 600; letter-spacing: -0.3px; margin: 3px 0 30px; text-transform: uppercase; } #workshop .h3, h3{ font-family: 'Raleway', sans-serif; font-size: 20px; text-transform: uppercase; padding: 10px; } #workshop .btn-default { background: transparent none repeat scroll 0 0; border: 2px solid #fff; border-radius: 50px; text-shadow: 0 1px 0 #fff; font-family: 'Raleway', sans-serif; } #workshop .glyphicon { color: white;} .caption-text p { margin: 18px auto 13px; /*text-align: center;*/ width: 91%; } #workshop .btn-default:focus, .btn-default:hover { background-color: red; background-position: 0 -15px; } #workshop .cuadro_intro_hover{ padding: 0px; position: relative; overflow: hidden; height: 300px; } #workshop .cuadro_intro_hover:hover .caption{ opacity: 1; transform: translateY(-150px); -webkit-transform:translateY(-150px); -moz-transform:translateY(-150px); -ms-transform:translateY(-150px); -o-transform:translateY(-150px); } #workshop .cuadro_intro_hover img{ z-index: 4; } #workshop .cuadro_intro_hover .caption{ position: absolute; top:250px; -webkit-transition:all 0.3s ease-in-out; -moz-transition:all 0.3s ease-in-out; -o-transition:all 0.3s ease-in-out; -ms-transition:all 0.3s ease-in-out; transition:all 0.3s ease-in-out; width: 100%; } #workshop .cuadro_intro_hover .blur{ background-color: rgba(0,0,0,0.7); height: 300px; z-index: 5; position: absolute; width: 100%; } #workshop .cuadro_intro_hover .caption-text{ z-index: 10; color: #fff; position: absolute; height: 300px; /*text-align: center;*/ top:-20px; width: 100%; } p.link:before{ height: 1px; width: 40px; background: #fff; content: ''; position: absolute; padding-left: 10px; margin-top: -10px; z-index: 1 } p.link{padding: 10px; background-color: black; } p.link>a{ text-transform: uppercase; color: red; display: inline-block; width: 100%; position: relative; -webkit-backface-visibility: hidden; font-weight: 700; font-size: 14px; line-height: 26px; margin-bottom: 0; text-shadow: none; } /*details*/ .v_bg_white{background-color: #fff;} .workshop_tital{ /*padding: 20px;*/ border: 1px solid #ddd; } h3{margin:0px;} .workshop_detail{ padding: 20px; display: inline-block; width: 100%; border: 1px solid #ddd; position: relative; } .workshop_detail .detail_img img{ border:4px solid #0065B3 !important; height: 300px; width: 100%; margin: 0 auto; text-align: center;} @media(max-width: 781px){ .workshop_detail .detail_img img{ height: auto; width: 100%; margin-bottom: 10px; } } ul.ul_custom ,ul.ul_custom li { padding: 0; margin: 0; list-style: none; } ul.ul_custom { margin: 2em 0; } ul.ul_custom li { margin: 1em; margin-left: 3em; } ul.ul_custom ul { padding: 0px; } ul.ul_custom li:before { content: '\f006'; font-family: 'FontAwesome'; float: left; margin-left: -1.5em; color: #0074D9; } .workshop_duration{ background-color: #E8FAEB; text-align: center; padding: 20px; margin-bottom: 30px; } /**/ #topic .workshop_detail section { display: none; /*padding: 20px 0 0;*/ border-top: 1px solid #ddd; } #topic .workshop_detail input { display: none; } #topic .workshop_detail label { display: inline-block; margin: 0 0 -1px; padding: 15px 25px; font-weight: 600; text-align: center; color: #bbb; border: 1px solid transparent; } @media(max-width: 600px){ #topic .workshop_detail label { padding: 5px 15px; } } @media(max-width: 452px){ #topic .workshop_detail label { padding: 5px 10px; } } #topic .workshop_detail label:before { font-family: fontawesome; font-weight: normal; margin-right: 10px; } #topic .workshop_detail label:hover { color: #888; cursor: pointer; } #topic .workshop_detail input:checked + label { color: #555; border: 1px solid #ddd; border-top: 2px solid blue; border-bottom: 1px solid #fff; } #tab1:checked ~ #content1, #tab2:checked ~ #content2, #tab3:checked ~ #content3, #tab4:checked ~ #content4 { display: block; } .clint_img img{ width: 100% height:auto; max-width: 480px;} @media(max-width: 500px){ .clint_img img{ width: 100%; height: 100%; } } .MultiCarousel { float: left; overflow: hidden; padding: 15px; width: 100%; position:relative; } .MultiCarousel .MultiCarousel-inner { transition: 1s ease all; float: left; } .MultiCarousel .MultiCarousel-inner .item { float: left;} .MultiCarousel .MultiCarousel-inner .item > div { text-align: center; padding:10px; margin:10px; background:#f1f1f1; color:#666; border:1px solid #ccc;} .MultiCarousel .MultiCarousel-inner .item .more-iteam img{ width: 100%; height: 200px; } .MultiCarousel .MultiCarousel-inner .item .more-iteam > a{ padding: 10px 30px; background-color: #000;} .MultiCarousel .leftLst, .MultiCarousel .rightLst { position:absolute; border-radius:50%;top:0; } .MultiCarousel .leftLst { left:0; } .MultiCarousel .rightLst { right:0; } .MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over { pointer-events: none; background:#ccc; } .hr{margin-top: 6px; margin-bottom: 6px; border: 0; border-top: 3px solid #0867b1; width: 50px; } .vid {position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; margin-bottom: 25px;} .vid iframe, .vid object,.vid embed {position: absolute; top: 0; left: 0; width: 100%; height: 100%;} .video-mobile-headline{display: none; margin:0px;} @media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) { .video-container{padding-bottom:10px;} .flex-video { padding-top: 0;} } /*testimobial*/ /* #testimonial4{ overflow: hidden; min-height: 375px; position: relative; background: #1583c9; }*/ #testimonial4 .carousel-inner{ width: 75%; margin: auto; } #testimonial4 .carousel-inner:hover{ cursor: -moz-grab; cursor: -webkit-grab; } #testimonial4 .carousel-inner:active{ cursor: -moz-grabbing; cursor: -webkit-grabbing; } #testimonial4 .carousel-inner .item{ overflow: hidden; } .testimonial4_indicators .carousel-indicators{ left: 0; margin: 0; width: 100%; font-size: 0; height: 20px; bottom: -15px; padding: 0 5px; cursor: e-resize; overflow-x: auto; overflow-y: hidden; position: absolute; text-align: center; white-space: nowrap; } .testimonial4_indicators .carousel-indicators li{ padding: 0; width: 10px; height: 10px; border: none; text-indent: 0; margin: 2px 3px; cursor: pointer; display: inline-block; background: #ddd; -webkit-border-radius: 100%; border-radius: 100%; border:1px solid #ddd; } .testimonial4_indicators .carousel-indicators .active{ padding: 0; width: 10px; height: 10px; border: none; margin: 2px 3px; background-color: #0867b1; -webkit-border-radius: 100%; border-radius: 100%; border:1px solid #0867b1; } .testimonial4_indicators .carousel-indicators::-webkit-scrollbar{ height: 3px; } .testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb{ background: #eeeeee; -webkit-border-radius: 0; border-radius: 0; } .testimonial4_control_button .carousel-control{ top: 175px; opacity: 1; width: 40px; bottom: auto; height: 40px; font-size: 15px; cursor: pointer; font-weight: 700; overflow: hidden; line-height: 38px; text-shadow: none; text-align: center; position: absolute; background: transparent; border: 1px solid #899096; text-transform: uppercase; -webkit-border-radius: 100%; border-radius: 100%; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: all 0.6s cubic-bezier(0.3,1,0,1); transition: all 0.6s cubic-bezier(0.3,1,0,1); color: #899096; } .testimonial4_control_button .carousel-control.left{ left: 7%; right: auto; } .testimonial4_control_button .carousel-control.right{ right: 7%; left: auto; } .testimonial4_control_button .carousel-control.left:hover, .testimonial4_control_button .carousel-control.right:hover{ color: #000; background: #eee; border: 2px solid #000; } .testimonial4_header{ top: 0; left: 0; bottom: 0; width: 550px; display: block; margin: 30px auto; text-align: center; position: relative; } .testimonial4_header h4{ color: #000; font-size: 30px; font-weight: 600; position: relative; letter-spacing: 1px; text-transform: uppercase; } .testimonial4_slide{ top: 0; left: 0; right: 0; bottom: 0; width: 70%; margin: auto; padding: 20px; position: relative; text-align: center; } .testimonial4_slide img { top: 0; left: 0; right: 0; width: 50px; height: 50px; margin: auto; display: block; color: #f2f2f2; font-size: 18px; line-height: 46px; text-align: center; position: relative; } .testimonial4_slide p { font-size: 16px; margin: 40px 0 20px 0; } .testimonial4_slide h4 { font-size: 24px; font-weight: bold; } @media only screen and (max-width: 480px){ .testimonial4_control_button .carousel-control{ display: none; } .testimonial4_header{ width: 95%; } .testimonial4_header h4{ font-size: 20px; } .testimonial4_slide{ width: 98%; padding: 5px; } } @media (min-width: 481px) and (max-width: 767px){ .testimonial4_control_button .carousel-control.left{ left: 2%; } .testimonial4_control_button .carousel-control.right{ right: 2%; } .testimonial4_header{ width: 95%; } .testimonial4_slide{ width: 98%; padding: 5px; } } @media (min-width: 768px) and (max-width: 991px){ .testimonial4_control_button .carousel-control.left{ left: 5%; } .testimonial4_control_button .carousel-control.right{ right: 5%; } } @-webkit-keyframes psBoxShadowEffect_2{ 0% { opacity: 0.3; } 40% { opacity: 0.5; -webkit-box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(255,255,255,0.5); } 100% { -webkit-box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 5px 5px #ffffff, 0 0 0 5px rgba(255,255,255,0.5); -webkit-transform: scale(1.5); opacity: 0; } } @keyframes psBoxShadowEffect_2{ 0% { opacity: 0.3; } 40% { opacity: 0.5; box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(255,255,255,0.5); } 100% { box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 5px 5px #ffffff, 0 0 0 5px rgba(255,255,255,0.5); transform: scale(1.5); opacity: 0; } } /*img hover*/ .hover-img { font-family: 'Playfair Display', Arial, sans-serif; position: relative; float: left; overflow: hidden; margin: 10px 1%; min-width: 230px; max-width: 315px; max-height: 315px; width: 100%; color: #000000; text-align: right; font-size: 16px; background-color: #000000; } .hover-img * { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } .hover-img img { max-width: 100%; width: 100%; height: 220px; backface-visibility: hidden; } .hover-img figcaption { position: absolute; top: 0; bottom: 0; right: 0; z-index: 1; opacity: 1; padding: 30px 0 30px 10px; background-color: #ddd; width: 40%; -webkit-transform: translateX(150%); transform: translateX(150%); } .hover-img figcaption:before { position: absolute; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); right: 100%; content: ''; width: 0; height: 0; border-style: solid; border-width: 120px 120px 120px 0; border-color: transparent #ddd transparent transparent; } .hover-img:after { position: absolute; bottom: 50%; right: 40%; content: ''; width: 0; height: 0; border-style: solid; border-width: 120px 120px 0 120px; border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent; -webkit-transform: translateY(-50%); transform: translateY(-50%); -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } .hover-img h3, .hover-img p { line-height: 1.5em; -webkit-transform: translateX(-30px); transform: translateX(-30px); margin: 0; } .hover-img h3 { margin: 0 0 5px; line-height: 1.1em; font-weight: 900; font-size: 1.4em; opacity: 0.75; } .hover-img p { font-size: 0.8em; } .hover-img i { position: absolute; bottom: 0; left: 0; padding: 20px 30px; font-size: 44px; color: #ffffff; opacity: 0; } .hover-img a { position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 1; color: #fff; cursor: pointer; } .hover-img:hover img, .hover-img.hover img { zoom: 1; filter: alpha(opacity=50); -webkit-opacity: 0.5; opacity: 0.5; } .hover-img:hover:after, .hover-img.hover:after, .hover-img:hover figcaption, .hover-img.hover figcahover-imgsnip1401:hover i, .hover-img.hover i { -webkit-transform: translateX(0); transform: translateX(0); opacity: 1; } .workshop_tital h2 { color: #e91e63; letter-spacing: 0px !important; text-transform: uppercase; font-size: 22px !important; font-weight: 600 !important; }
public/css/workshop.css
.vchip_product_itm{ background: #fff; margin-top: 30px; width: 100%; height:auto; padding: 10px; -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.18); -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.18); -ms-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.18); -o-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.18); box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.18); } .vchip_product_content{ padding:10px 10px 7px 22px; } h3.h3-heding{ text-transform: uppercase; font-size: 15px; font-weight: 600; color: #e91e63; padding-left: 14px ; outline: 0; top:0px; font-weight: bolder; } .ellipsed { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } span.ellipsed,a.ellipsed,h3.ellipsed{ cursor: pointer; } /*h2 { border-bottom: 10px solid red; font-family: 'Raleway', sans-serif; font-size: 65px; font-weight: 900; margin: 0 auto; padding: 20px 0 3px; text-align: center; text-transform: uppercase; width: 40.2%; }*/ #workshop img { height: 300px !important; width: 100%; } #workshop .row.text-center p { font-size: 17px; font-weight: 600; letter-spacing: -0.3px; margin: 3px 0 30px; text-transform: uppercase; } #workshop .h3, h3{ font-family: 'Raleway', sans-serif; font-size: 20px; text-transform: uppercase; padding: 10px; } #workshop .btn-default { background: transparent none repeat scroll 0 0; border: 2px solid #fff; border-radius: 50px; text-shadow: 0 1px 0 #fff; font-family: 'Raleway', sans-serif; } #workshop .glyphicon { color: white;} .caption-text p { margin: 18px auto 13px; /*text-align: center;*/ width: 91%; } #workshop .btn-default:focus, .btn-default:hover { background-color: red; background-position: 0 -15px; } #workshop .cuadro_intro_hover{ padding: 0px; position: relative; overflow: hidden; height: 300px; } #workshop .cuadro_intro_hover:hover .caption{ opacity: 1; transform: translateY(-150px); -webkit-transform:translateY(-150px); -moz-transform:translateY(-150px); -ms-transform:translateY(-150px); -o-transform:translateY(-150px); } #workshop .cuadro_intro_hover img{ z-index: 4; } #workshop .cuadro_intro_hover .caption{ position: absolute; top:250px; -webkit-transition:all 0.3s ease-in-out; -moz-transition:all 0.3s ease-in-out; -o-transition:all 0.3s ease-in-out; -ms-transition:all 0.3s ease-in-out; transition:all 0.3s ease-in-out; width: 100%; } #workshop .cuadro_intro_hover .blur{ background-color: rgba(0,0,0,0.7); height: 300px; z-index: 5; position: absolute; width: 100%; } #workshop .cuadro_intro_hover .caption-text{ z-index: 10; color: #fff; position: absolute; height: 300px; /*text-align: center;*/ top:-20px; width: 100%; } p.link:before{ height: 1px; width: 40px; background: #fff; content: ''; position: absolute; padding-left: 10px; margin-top: -10px; z-index: 1 } p.link{padding: 10px; background-color: black; } p.link>a{ text-transform: uppercase; color: red; display: inline-block; width: 100%; position: relative; -webkit-backface-visibility: hidden; font-weight: 700; font-size: 14px; line-height: 26px; margin-bottom: 0; text-shadow: none; } /*details*/ .v_bg_white{background-color: #fff;} .workshop_tital{ /*padding: 20px;*/ border: 1px solid #ddd; } h3{margin:0px;} .workshop_detail{ padding: 20px; display: inline-block; width: 100%; border: 1px solid #ddd; position: relative; } .workshop_detail .detail_img img{ border:4px solid #0065B3 !important; height: 300px; width: 100%; margin: 0 auto; text-align: center;} @media(max-width: 781px){ .workshop_detail .detail_img img{ height: auto; width: 100%; margin-bottom: 10px; } } ul.ul_custom ,ul.ul_custom li { padding: 0; margin: 0; list-style: none; } ul.ul_custom { margin: 2em 0; } ul.ul_custom li { margin: 1em; margin-left: 3em; } ul.ul_custom ul { padding: 0px; } ul.ul_custom li:before { content: '\f006'; font-family: 'FontAwesome'; float: left; margin-left: -1.5em; color: #0074D9; } .workshop_duration{ background-color: #E8FAEB; text-align: center; padding: 20px; margin-bottom: 30px; } /**/ #topic .workshop_detail section { display: none; /*padding: 20px 0 0;*/ border-top: 1px solid #ddd; } #topic .workshop_detail input { display: none; } #topic .workshop_detail label { display: inline-block; margin: 0 0 -1px; padding: 15px 25px; font-weight: 600; text-align: center; color: #bbb; border: 1px solid transparent; } @media(max-width: 600px){ #topic .workshop_detail label { padding: 5px 15px; } } @media(max-width: 452px){ #topic .workshop_detail label { padding: 5px 10px; } } #topic .workshop_detail label:before { font-family: fontawesome; font-weight: normal; margin-right: 10px; } #topic .workshop_detail label:hover { color: #888; cursor: pointer; } #topic .workshop_detail input:checked + label { color: #555; border: 1px solid #ddd; border-top: 2px solid blue; border-bottom: 1px solid #fff; } #tab1:checked ~ #content1, #tab2:checked ~ #content2, #tab3:checked ~ #content3, #tab4:checked ~ #content4 { display: block; } .clint_img img{ width: 100% height:auto; max-width: 480px;} @media(max-width: 500px){ .clint_img img{ width: 100%; height: 100%; } } .MultiCarousel { float: left; overflow: hidden; padding: 15px; width: 100%; position:relative; } .MultiCarousel .MultiCarousel-inner { transition: 1s ease all; float: left; } .MultiCarousel .MultiCarousel-inner .item { float: left;} .MultiCarousel .MultiCarousel-inner .item > div { text-align: center; padding:10px; margin:10px; background:#f1f1f1; color:#666; border:1px solid #ccc;} .MultiCarousel .MultiCarousel-inner .item .more-iteam img{ width: 100%; height: 200px; } .MultiCarousel .MultiCarousel-inner .item .more-iteam > a{ padding: 10px 30px; background-color: #000;} .MultiCarousel .leftLst, .MultiCarousel .rightLst { position:absolute; border-radius:50%;top:0; } .MultiCarousel .leftLst { left:0; } .MultiCarousel .rightLst { right:0; } .MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over { pointer-events: none; background:#ccc; } .hr{margin-top: 6px; margin-bottom: 6px; border: 0; border-top: 3px solid #0867b1; width: 50px; } .vid {position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; margin-bottom: 25px;} .vid iframe, .vid object,.vid embed {position: absolute; top: 0; left: 0; width: 100%; height: 100%;} .video-mobile-headline{display: none; margin:0px;} @media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) { .video-container{padding-bottom:10px;} .flex-video { padding-top: 0;} } /*testimobial*/ /* #testimonial4{ overflow: hidden; min-height: 375px; position: relative; background: #1583c9; }*/ #testimonial4 .carousel-inner{ width: 75%; margin: auto; } #testimonial4 .carousel-inner:hover{ cursor: -moz-grab; cursor: -webkit-grab; } #testimonial4 .carousel-inner:active{ cursor: -moz-grabbing; cursor: -webkit-grabbing; } #testimonial4 .carousel-inner .item{ overflow: hidden; } .testimonial4_indicators .carousel-indicators{ left: 0; margin: 0; width: 100%; font-size: 0; height: 20px; bottom: -15px; padding: 0 5px; cursor: e-resize; overflow-x: auto; overflow-y: hidden; position: absolute; text-align: center; white-space: nowrap; } .testimonial4_indicators .carousel-indicators li{ padding: 0; width: 10px; height: 10px; border: none; text-indent: 0; margin: 2px 3px; cursor: pointer; display: inline-block; background: #ddd; -webkit-border-radius: 100%; border-radius: 100%; border:1px solid #ddd; } .testimonial4_indicators .carousel-indicators .active{ padding: 0; width: 10px; height: 10px; border: none; margin: 2px 3px; background-color: #0867b1; -webkit-border-radius: 100%; border-radius: 100%; border:1px solid #0867b1; } .testimonial4_indicators .carousel-indicators::-webkit-scrollbar{ height: 3px; } .testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb{ background: #eeeeee; -webkit-border-radius: 0; border-radius: 0; } .testimonial4_control_button .carousel-control{ top: 175px; opacity: 1; width: 40px; bottom: auto; height: 40px; font-size: 15px; cursor: pointer; font-weight: 700; overflow: hidden; line-height: 38px; text-shadow: none; text-align: center; position: absolute; background: transparent; border: 1px solid #899096; text-transform: uppercase; -webkit-border-radius: 100%; border-radius: 100%; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: all 0.6s cubic-bezier(0.3,1,0,1); transition: all 0.6s cubic-bezier(0.3,1,0,1); color: #899096; } .testimonial4_control_button .carousel-control.left{ left: 7%; right: auto; } .testimonial4_control_button .carousel-control.right{ right: 7%; left: auto; } .testimonial4_control_button .carousel-control.left:hover, .testimonial4_control_button .carousel-control.right:hover{ color: #000; background: #eee; border: 2px solid #000; } .testimonial4_header{ top: 0; left: 0; bottom: 0; width: 550px; display: block; margin: 30px auto; text-align: center; position: relative; } .testimonial4_header h4{ color: #000; font-size: 30px; font-weight: 600; position: relative; letter-spacing: 1px; text-transform: uppercase; } .testimonial4_slide{ top: 0; left: 0; right: 0; bottom: 0; width: 70%; margin: auto; padding: 20px; position: relative; text-align: center; } .testimonial4_slide img { top: 0; left: 0; right: 0; width: 50px; height: 50px; margin: auto; display: block; color: #f2f2f2; font-size: 18px; line-height: 46px; text-align: center; position: relative; } .testimonial4_slide p { font-size: 16px; margin: 40px 0 20px 0; } .testimonial4_slide h4 { font-size: 24px; font-weight: bold; } @media only screen and (max-width: 480px){ .testimonial4_control_button .carousel-control{ display: none; } .testimonial4_header{ width: 95%; } .testimonial4_header h4{ font-size: 20px; } .testimonial4_slide{ width: 98%; padding: 5px; } } @media (min-width: 481px) and (max-width: 767px){ .testimonial4_control_button .carousel-control.left{ left: 2%; } .testimonial4_control_button .carousel-control.right{ right: 2%; } .testimonial4_header{ width: 95%; } .testimonial4_slide{ width: 98%; padding: 5px; } } @media (min-width: 768px) and (max-width: 991px){ .testimonial4_control_button .carousel-control.left{ left: 5%; } .testimonial4_control_button .carousel-control.right{ right: 5%; } } @-webkit-keyframes psBoxShadowEffect_2{ 0% { opacity: 0.3; } 40% { opacity: 0.5; -webkit-box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(255,255,255,0.5); } 100% { -webkit-box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 5px 5px #ffffff, 0 0 0 5px rgba(255,255,255,0.5); -webkit-transform: scale(1.5); opacity: 0; } } @keyframes psBoxShadowEffect_2{ 0% { opacity: 0.3; } 40% { opacity: 0.5; box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(255,255,255,0.5); } 100% { box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 5px 5px #ffffff, 0 0 0 5px rgba(255,255,255,0.5); transform: scale(1.5); opacity: 0; } } /*img hover*/ .hover-img { font-family: 'Playfair Display', Arial, sans-serif; position: relative; float: left; overflow: hidden; margin: 10px 1%; min-width: 230px; max-width: 315px; max-height: 315px; width: 100%; color: #000000; text-align: right; font-size: 16px; background-color: #000000; } .hover-img * { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } .hover-img img { max-width: 100%; width: 100%; height: 220px; backface-visibility: hidden; } .hover-img figcaption { position: absolute; top: 0; bottom: 0; right: 0; z-index: 1; opacity: 1; padding: 30px 0 30px 10px; background-color: #ddd; width: 40%; -webkit-transform: translateX(150%); transform: translateX(150%); } .hover-img figcaption:before { position: absolute; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); right: 100%; content: ''; width: 0; height: 0; border-style: solid; border-width: 120px 120px 120px 0; border-color: transparent #ddd transparent transparent; } .hover-img:after { position: absolute; bottom: 50%; right: 40%; content: ''; width: 0; height: 0; border-style: solid; border-width: 120px 120px 0 120px; border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent; -webkit-transform: translateY(-50%); transform: translateY(-50%); -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } .hover-img h3, .hover-img p { line-height: 1.5em; -webkit-transform: translateX(-30px); transform: translateX(-30px); margin: 0; } .hover-img h3 { margin: 0 0 5px; line-height: 1.1em; font-weight: 900; font-size: 1.4em; opacity: 0.75; } .hover-img p { font-size: 0.8em; } .hover-img i { position: absolute; bottom: 0; left: 0; padding: 20px 30px; font-size: 44px; color: #ffffff; opacity: 0; } .hover-img a { position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 1; color: #fff; cursor: pointer; } .hover-img:hover img, .hover-img.hover img { zoom: 1; filter: alpha(opacity=50); -webkit-opacity: 0.5; opacity: 0.5; } .hover-img:hover:after, .hover-img.hover:after, .hover-img:hover figcaption, .hover-img.hover figcahover-imgsnip1401:hover i, .hover-img.hover i { -webkit-transform: translateX(0); transform: translateX(0); opacity: 1; } .workshop_tital h2 { color: #e91e63; letter-spacing: 0px !important; text-transform: uppercase; font-size: 22px !important; font-weight: 600 !important; }
0.231962
0.090655
@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap"); @import url('https://fonts.googleapis.com/css2?family=Dosis:wght@700&display=swap'); body { margin: 0; padding: 0; background-color: #000e14; background-image: linear-gradient(62deg, #000e14 0%, #001929 100%); background-repeat: no-repeat; } header { display: -webkit-box; display: -ms-flexbox; display: block; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-top: 1.5em; margin-bottom: 2em; } header h1 { color: white; display: block; text-align: center; font-size: 2em; font-family: 'Dosis', sans-serif; text-shadow: 0 0 3px #fff; margin-top: -15px; } header img { border-radius: 40%; display: block; border: 2px solid #fff; text-align: center; } .profile-picture { margin-top: 2em; display: block; margin-left: auto; margin-right: auto; margin-top: auto; height: auto; max-width: 180px; } section { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } section ul { margin: 0; padding: 0; } section ul li { margin-bottom: 3.14em; list-style-type: none; text-align: center; } section ul li a { text-decoration: none; } section ul li .btn-yt { font-family: 'Dosis', sans-serif; color: white; background-color: #db0000; padding: 1.2em 6.5em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-yt:hover { background: #660a0a; border-radius: 0.5em; } section ul li .btn-starbot { font-family: "Dosis", sans-serif; color: white; background-color: #ffbf00; padding: 1.2em 6.5em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-starbot:hover { background: #bd8e04; border-radius: 0.5em; } section ul li .btn-tiktok { font-family: "Dosis", sans-serif; color: white; background-color: #8a257e; padding: 1.2em 6em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-tiktok:hover { background: #5e1956; border-radius: 0.5em; } section ul li .btn-ig { font-family: "Dosis", sans-serif; color: white; background-color: #a5207d; padding: 1.2em 5.7em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-ig:hover { background: #66134d; border-radius: 0.5em; } section ul li .btn-steam { font-family: "Dosis", sans-serif; color: white; background-color: #808080; padding: 1.2em 6.8em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-steam:hover { background: #666464; border-radius: 0.5em; } section ul li .btn-github { font-family: "Dosis", sans-serif; color: white; background-color: #171717; padding: 1.2em 6.7em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-github:hover { background: #121212; border-radius: 0.5em; } section ul li .btn-discord { font-family: "Dosis", sans-serif; color: white; background-color: #4f53ff; padding: 1.2em 6.5em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-discord:hover { background: #2e31e9; border-radius: 0.5em; } section ul li .btn-namemc { font-family: "Dosis", sans-serif; color: white; background-color: #45293f; padding: 1.2em 6.8em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-namemc:hover { background: #2b1a28; border-radius: 0.5em; } section ul li .btn-mcserver { font-family: "Dosis", sans-serif; color: white; background-color: #6bcf00; padding: 1.2em 5.2em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-mcserver:hover { background: #428000; border-radius: 0.5em; } section ul li .btn-mcplanet { font-family: "Dosis", sans-serif; color: white; background-color: #006b91; padding: 1.2em 6.5em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-mcplanet:hover { background: #014c66; border-radius: 0.5em; } section ul li .btn-laby { font-family: "Dosis", sans-serif; color: white; background-color: #002a6e; padding: 1.2em 6.5em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-laby:hover { background: #00122e; border-radius: 0.5em; } section ul li .btn-more { font-family: "Dosis", sans-serif; color: #5786de; padding: 0.8em 2em; border-radius: 0.8em; -webkit-transition: 0.6s; transition: 0.6s; } section ul li .btn-more:hover { color: #1c4085; background: #d4e3ff; border-radius: 2.9em; } .btn-twitch { font-family: "Dosis", sans-serif; color: white; background-color: #5200a3; padding: 1.2em 7em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } .btn-twitch:hover { background: #47008c; border-radius: 0.5em; } .btn-replit { font-family: "Dosis", sans-serif; color: white; background-color: #8a5a6e; padding: 1.2em 7em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } .btn-replit:hover { background: #5e3d4b; border-radius: 0.5em; } .btn-twitter { font-family: "Dosis", sans-serif; color: white; background-color: #1da1f2; padding: 1.2em 7em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } .btn-twitter:hover { background: #0d6ca7; border-radius: 0.5em; } footer { margin-top: 15.5em; padding: 2.2em; background-color: #000508; } .footer-text-main { color: #525252; font-family: "Ubuntu", sans-serif; text-align: center; padding: 0; margin: 0; margin-top: 1em; } .footer-odkazy { color: gray; padding: 0; margin: 0; text-align: center; list-style-type: none; font-size: 0.7em; text-transform: uppercase; } .footer-odkazy li { display: inline-block; } .footer-odkazy-text { font-family: "Ubuntu", sans-serif; text-decoration: underline; color: #333333; display: inline-block; } /*# sourceMappingURL=css.css.map */
css/css.css
@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap"); @import url('https://fonts.googleapis.com/css2?family=Dosis:wght@700&display=swap'); body { margin: 0; padding: 0; background-color: #000e14; background-image: linear-gradient(62deg, #000e14 0%, #001929 100%); background-repeat: no-repeat; } header { display: -webkit-box; display: -ms-flexbox; display: block; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-top: 1.5em; margin-bottom: 2em; } header h1 { color: white; display: block; text-align: center; font-size: 2em; font-family: 'Dosis', sans-serif; text-shadow: 0 0 3px #fff; margin-top: -15px; } header img { border-radius: 40%; display: block; border: 2px solid #fff; text-align: center; } .profile-picture { margin-top: 2em; display: block; margin-left: auto; margin-right: auto; margin-top: auto; height: auto; max-width: 180px; } section { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } section ul { margin: 0; padding: 0; } section ul li { margin-bottom: 3.14em; list-style-type: none; text-align: center; } section ul li a { text-decoration: none; } section ul li .btn-yt { font-family: 'Dosis', sans-serif; color: white; background-color: #db0000; padding: 1.2em 6.5em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-yt:hover { background: #660a0a; border-radius: 0.5em; } section ul li .btn-starbot { font-family: "Dosis", sans-serif; color: white; background-color: #ffbf00; padding: 1.2em 6.5em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-starbot:hover { background: #bd8e04; border-radius: 0.5em; } section ul li .btn-tiktok { font-family: "Dosis", sans-serif; color: white; background-color: #8a257e; padding: 1.2em 6em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-tiktok:hover { background: #5e1956; border-radius: 0.5em; } section ul li .btn-ig { font-family: "Dosis", sans-serif; color: white; background-color: #a5207d; padding: 1.2em 5.7em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-ig:hover { background: #66134d; border-radius: 0.5em; } section ul li .btn-steam { font-family: "Dosis", sans-serif; color: white; background-color: #808080; padding: 1.2em 6.8em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-steam:hover { background: #666464; border-radius: 0.5em; } section ul li .btn-github { font-family: "Dosis", sans-serif; color: white; background-color: #171717; padding: 1.2em 6.7em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-github:hover { background: #121212; border-radius: 0.5em; } section ul li .btn-discord { font-family: "Dosis", sans-serif; color: white; background-color: #4f53ff; padding: 1.2em 6.5em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-discord:hover { background: #2e31e9; border-radius: 0.5em; } section ul li .btn-namemc { font-family: "Dosis", sans-serif; color: white; background-color: #45293f; padding: 1.2em 6.8em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-namemc:hover { background: #2b1a28; border-radius: 0.5em; } section ul li .btn-mcserver { font-family: "Dosis", sans-serif; color: white; background-color: #6bcf00; padding: 1.2em 5.2em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-mcserver:hover { background: #428000; border-radius: 0.5em; } section ul li .btn-mcplanet { font-family: "Dosis", sans-serif; color: white; background-color: #006b91; padding: 1.2em 6.5em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-mcplanet:hover { background: #014c66; border-radius: 0.5em; } section ul li .btn-laby { font-family: "Dosis", sans-serif; color: white; background-color: #002a6e; padding: 1.2em 6.5em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } section ul li .btn-laby:hover { background: #00122e; border-radius: 0.5em; } section ul li .btn-more { font-family: "Dosis", sans-serif; color: #5786de; padding: 0.8em 2em; border-radius: 0.8em; -webkit-transition: 0.6s; transition: 0.6s; } section ul li .btn-more:hover { color: #1c4085; background: #d4e3ff; border-radius: 2.9em; } .btn-twitch { font-family: "Dosis", sans-serif; color: white; background-color: #5200a3; padding: 1.2em 7em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } .btn-twitch:hover { background: #47008c; border-radius: 0.5em; } .btn-replit { font-family: "Dosis", sans-serif; color: white; background-color: #8a5a6e; padding: 1.2em 7em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } .btn-replit:hover { background: #5e3d4b; border-radius: 0.5em; } .btn-twitter { font-family: "Dosis", sans-serif; color: white; background-color: #1da1f2; padding: 1.2em 7em; border-radius: 0.8em; -webkit-transition: 0.3s; transition: 0.3s; } .btn-twitter:hover { background: #0d6ca7; border-radius: 0.5em; } footer { margin-top: 15.5em; padding: 2.2em; background-color: #000508; } .footer-text-main { color: #525252; font-family: "Ubuntu", sans-serif; text-align: center; padding: 0; margin: 0; margin-top: 1em; } .footer-odkazy { color: gray; padding: 0; margin: 0; text-align: center; list-style-type: none; font-size: 0.7em; text-transform: uppercase; } .footer-odkazy li { display: inline-block; } .footer-odkazy-text { font-family: "Ubuntu", sans-serif; text-decoration: underline; color: #333333; display: inline-block; } /*# sourceMappingURL=css.css.map */
0.333286
0.084455
body { margin: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } img { border: 0; max-width: 100%; } .logo { background: rgb(112,207,245); } .footer { margin-top: 70px; margin-bottom: 40px; } h1 { font-size: 200%; padding: 0px; margin: 0; } h1,h2,h3,h4,figcaption,p,input,textarea { font-family: 'Economica', sans-serif; } p { font-family: 'Cutive Mono', sans-serif; } ul { font-family: 'Cutive Mono', cursive; } .mockup { height: 450px; width: auto; } .logo img { display: block; margin-left: auto; margin-right: auto; } .text-center { text-align: center; } nav { text-align: right; -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4); -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4); box-shadow: 0 1px 3px rgba(0,0,0,0.4); } nav ul { display: inline-block; } nav ul li { display: inline-block; position: relative; } nav ul li a { display: block; padding: 8px 25px; color: black; text-decoration: underline; } a:hover { /* display: block; */ color: black; background: rgb(112,207,245); } /* Nav seksjon ferdig */ .heading { margin-top: 10px; margin-bottom: 20px; } .topheader { margin-top: 35px; } .kontakt > input,textarea { margin: 5px; border-radius: 5px; font-size: 110%; } .two-col { -webkit-column-gap: 4em; -moz-column-gap: 4em; column-gap: 4em; -webkit-column-rule: 1px solid grey; -moz-column-rule: 1px solid grey; column-rule: 1px solid grey; margin-bottom: 50px; } @media screen and (min-width:800px){ .two-col { -webkit-columns: 2 200px; -moz-columns: 2 200px; columns: 2 200px; } .container { padding: 10px; margin: 0 auto; width: 85%; } } @media screen and (max-width:800px){ .two-col { -webkit-columns: 1 200px; -moz-columns: 1 200px; columns: 1 200px; } .container { padding: 20px; margin: 0 auto; width: 85%; } } /* tilpasset mobil */ @media screen and (max-width: 600px) { .container { padding: 20px; margin: 0 auto; width: 85%; } } .oppgave { border-radius: 25px; background: rgb(112,207,245); padding: 20px; width: 200px; height: 300px; margin: auto; text-align: center; -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4); -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4); box-shadow: 0 1px 3px rgba(0,0,0,0.4); } .oppgave p,a{ color: black; text-decoration-color: black; text-decoration: underline; } p a { font-style: italic; } .oppgave img { height: auto; width: auto; } .img-center { display: block; margin-left: auto; margin-right: auto; } .img-large { width: 300px; } .hide { display: none; opacity: 0; transition: visibility 0s, opacity 0.5s linear; } .active { background: rgb(112,207,245); text-decoration-color: white; } .not-active { background: lightcoral; } .not-active:hover { background: lightcoral; } /* UML Diagram tree */ .tree { -webkit-transform-origin: 50%; transform-origin: 50%; margin: auto; } .tree ul { position: relative; padding: 1em 0; white-space: nowrap; margin: 0 auto; text-align: center; } .tree ul::after { content: ''; display: table; clear: both; } .tree li { display: inline-block; vertical-align: top; text-align: center; list-style-type: none; position: relative; padding: 1em .5em 0 .5em; } .tree li::before, .tree li::after { content: ''; position: absolute; top: 0; right: 50%; border-top: 1px solid #ccc; width: 50%; height: 1em; } .tree li::after { right: auto; left: 50%; border-left: 1px solid #ccc; } .tree li:only-child::after, .tree li:only-child::before { display: none; } .tree li:only-child { padding-top: 0; } .tree li:first-child::before, .tree li:last-child::after { border: 0 none; } .tree li:last-child::before { border-right: 1px solid #ccc; border-radius: 0 5px 0 0; } .tree li:first-child::after { border-radius: 5px 0 0 0; } .tree ul ul::before { content: ''; position: absolute; top: 0; left: 50%; border-left: 1px solid #ccc; width: 0; height: 1em; } .tree li a,span { border: 1px solid #ccc; padding: .5em .75em; text-decoration: none; display: inline-block; border-radius: 5px; color: #333; position: relative; top: 1px; } .tree li a:hover + ul li::after, .tree li a:hover + ul li::before, .tree li a:hover + ul::before, .tree li a:hover + ul ul::before { border-color:rgb(112,207,245); } .tree li a { max-width: 100%; -moz-transition: all 0.3s; -webkit-transition: all 0.3s; transition: all 0.3s; } .tree li a:hover{ -moz-transform: scale(1.2); -webkit-transform: scale(1.2); transform: scale(1.2); } .hovedtype { background: rgb(112,207,245); } .tree { width: 100%; } /* UML Diagram tree ferdig */ .tooltip .tooltiptext { visibility: hidden; width: 120px; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding:10px; margin-top: 35px; position: absolute; } .tooltip:hover .tooltiptext { visibility: visible; font-size: 10px; }
innlevering/css/style.css
body { margin: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } img { border: 0; max-width: 100%; } .logo { background: rgb(112,207,245); } .footer { margin-top: 70px; margin-bottom: 40px; } h1 { font-size: 200%; padding: 0px; margin: 0; } h1,h2,h3,h4,figcaption,p,input,textarea { font-family: 'Economica', sans-serif; } p { font-family: 'Cutive Mono', sans-serif; } ul { font-family: 'Cutive Mono', cursive; } .mockup { height: 450px; width: auto; } .logo img { display: block; margin-left: auto; margin-right: auto; } .text-center { text-align: center; } nav { text-align: right; -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4); -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4); box-shadow: 0 1px 3px rgba(0,0,0,0.4); } nav ul { display: inline-block; } nav ul li { display: inline-block; position: relative; } nav ul li a { display: block; padding: 8px 25px; color: black; text-decoration: underline; } a:hover { /* display: block; */ color: black; background: rgb(112,207,245); } /* Nav seksjon ferdig */ .heading { margin-top: 10px; margin-bottom: 20px; } .topheader { margin-top: 35px; } .kontakt > input,textarea { margin: 5px; border-radius: 5px; font-size: 110%; } .two-col { -webkit-column-gap: 4em; -moz-column-gap: 4em; column-gap: 4em; -webkit-column-rule: 1px solid grey; -moz-column-rule: 1px solid grey; column-rule: 1px solid grey; margin-bottom: 50px; } @media screen and (min-width:800px){ .two-col { -webkit-columns: 2 200px; -moz-columns: 2 200px; columns: 2 200px; } .container { padding: 10px; margin: 0 auto; width: 85%; } } @media screen and (max-width:800px){ .two-col { -webkit-columns: 1 200px; -moz-columns: 1 200px; columns: 1 200px; } .container { padding: 20px; margin: 0 auto; width: 85%; } } /* tilpasset mobil */ @media screen and (max-width: 600px) { .container { padding: 20px; margin: 0 auto; width: 85%; } } .oppgave { border-radius: 25px; background: rgb(112,207,245); padding: 20px; width: 200px; height: 300px; margin: auto; text-align: center; -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4); -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4); box-shadow: 0 1px 3px rgba(0,0,0,0.4); } .oppgave p,a{ color: black; text-decoration-color: black; text-decoration: underline; } p a { font-style: italic; } .oppgave img { height: auto; width: auto; } .img-center { display: block; margin-left: auto; margin-right: auto; } .img-large { width: 300px; } .hide { display: none; opacity: 0; transition: visibility 0s, opacity 0.5s linear; } .active { background: rgb(112,207,245); text-decoration-color: white; } .not-active { background: lightcoral; } .not-active:hover { background: lightcoral; } /* UML Diagram tree */ .tree { -webkit-transform-origin: 50%; transform-origin: 50%; margin: auto; } .tree ul { position: relative; padding: 1em 0; white-space: nowrap; margin: 0 auto; text-align: center; } .tree ul::after { content: ''; display: table; clear: both; } .tree li { display: inline-block; vertical-align: top; text-align: center; list-style-type: none; position: relative; padding: 1em .5em 0 .5em; } .tree li::before, .tree li::after { content: ''; position: absolute; top: 0; right: 50%; border-top: 1px solid #ccc; width: 50%; height: 1em; } .tree li::after { right: auto; left: 50%; border-left: 1px solid #ccc; } .tree li:only-child::after, .tree li:only-child::before { display: none; } .tree li:only-child { padding-top: 0; } .tree li:first-child::before, .tree li:last-child::after { border: 0 none; } .tree li:last-child::before { border-right: 1px solid #ccc; border-radius: 0 5px 0 0; } .tree li:first-child::after { border-radius: 5px 0 0 0; } .tree ul ul::before { content: ''; position: absolute; top: 0; left: 50%; border-left: 1px solid #ccc; width: 0; height: 1em; } .tree li a,span { border: 1px solid #ccc; padding: .5em .75em; text-decoration: none; display: inline-block; border-radius: 5px; color: #333; position: relative; top: 1px; } .tree li a:hover + ul li::after, .tree li a:hover + ul li::before, .tree li a:hover + ul::before, .tree li a:hover + ul ul::before { border-color:rgb(112,207,245); } .tree li a { max-width: 100%; -moz-transition: all 0.3s; -webkit-transition: all 0.3s; transition: all 0.3s; } .tree li a:hover{ -moz-transform: scale(1.2); -webkit-transform: scale(1.2); transform: scale(1.2); } .hovedtype { background: rgb(112,207,245); } .tree { width: 100%; } /* UML Diagram tree ferdig */ .tooltip .tooltiptext { visibility: hidden; width: 120px; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding:10px; margin-top: 35px; position: absolute; } .tooltip:hover .tooltiptext { visibility: visible; font-size: 10px; }
0.449876
0.115561
/* Offical Style for Discuz!NT(R) URL: http://NT.discuz.net (C) 2001-2008 Comsenz Inc. */ /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Common Style ~~~~ */ * { word-wrap: break-word; } body { background:#392622 url(images/bodyback.jpg) repeat-x 0 0; text-align:center; } body, td, input, textarea, select, button { color: #855F4E; font: 12px/1.6em Helvetica, Arial, sans-serif; } body, ul, dl, dd, p, h1, h2, h3, h4, h5, h6, form, fieldset { margin: 0; padding: 0; } h1, h2, h3, h4, h5, h6 { font-size: 1em; } #menu li, .popupmenu_popup li, #announcement li, .portalbox li, .tabs li, .postmessage fieldset li, .side li, .formbox li, .notice li,.pannellist li,.helpcontent li,.user li,#forumtemplate li,.navfocuslist li,.avatarlist li { list-style: none; } a { color: #640000; text-decoration: none; } a:hover { color: #855F4E; text-decoration: underline; } a img { border: none; } em, cite, strong, th { font-style: normal; font-weight: normal; } table { empty-cells: show; border-collapse: collapse; } /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Layout & Block Style ~~~~ */ .wrap { width: 98%; text-align: left; margin: 0 auto; } #header { width: 100%; overflow: hidden; padding:6px 0; } #header h2 { float: left; padding: 5px 0; } #menu { height: 36px; background: #FFF url(images/menu_bg.gif) repeat-x; } #menu ul { float: right; padding: 6px 10px 0; } #menu li { float: left; } #menu li a { float: left; text-decoration: none; color: #FFF; padding: 4px 8px 3px; background: url(images/menu_itemline.gif) no-repeat 0 6px; } #menu li.hover { background-color: #aaa; border: 1px solid; border-color: #aaa #aaa #aaa; } #menu li.hover a { padding: 3px 7px; background-image: none; } #menu cite a { font-weight: bold; background-image: none; } .frameswitch { float: left; height: 36px; line-height: 36px; padding-left: 10px; color:#FFF; } #menu a.frameoff, #menu a.frameon { float: left; border: none; padding-left: 16px; margin-left: 0; background: no-repeat 0 50%; } #menu a.frameoff { background-image: url(images/frame_off.gif); } #menu a.frameon { background-image: url(images/frame_on.gif); } #foruminfo { width: 100%; overflow: hidden; margin: 10px 0; color: #FFF; } #userinfo, #foruminfo #nav { float: left; } #forumstats, #headsearch { float: right; text-align: right; } #foruminfo p { margin: 0; line-height:24px; } #foruminfo a{ color: #FFF; } #foruminfo em { color: #FFF; } #foruminfo cite { font-weight: bold; } #foruminfo strong a { font-weight: bold; color: #FFF; } #forumstats form{ float:right; } #forumstats p { clear:both; } #nav { margin: 10px 5px; } #foruminfo #nav { margin: 0; } #userinfo #nav { float: none; padding: 0; } #nav a { font-weight: bold; color: #FFF; } #announcement { border-top: 1px dashed #E8E8E8; line-height: 36px; height: 36px; overflow: hidden; } #announcement div { border: 1px solid #FFF; padding: 0 10px; line-height: 35px !important; height: 36px; overflow-y: hidden;} #announcement li { float: left; margin-right: 20px; padding-left: 10px; background: url(images/arrow_right.gif) no-repeat 0 50%; white-space: nowrap; } #announcement li em { font-size: 0.83em; margin-left: 5px; color: #666; } .portalbox { width: 100%; background: #EDE0BE; margin-bottom: 10px; border-collapse: separate; } .portalbox td { padding: 10px; vertical-align: top; } .portalbox h3 { margin: 0 0 5px; font-size: 1em; white-space: nowrap; } .portalbox strong { font-weight: bold; margin-top: 4px;} .portalbox em { color: #999; } .portalbox em a { color: #999; } #supeitems li { float: left; height: 1.6em; overflow: hidden; } #hottags a { white-space: nowrap; margin-right: 0.5em; } #hottags h3 { clear:both; } #hottags li,#categories li {float:left; margin-right:0.5em; white-space:nowrap;} .headactions { float: right; line-height: 1em; padding: 10px 10px 0 0; } .headactions img { vertical-align: middle; cursor: pointer; padding: 0 5px; } .mainbox .headactions { color: #FFF; } .mainbox .headactions a, .mainbox .headactions span, .mainbox .headactions strong {padding-right: 10px; margin-right: 8px; color: #FFF; } .mainbox .headactions strong { font-weight: bold; background-image: url(images/arrow_left.gif); } .pages_btns { clear: both; width: 100%; padding: 0 0 8px; overflow: hidden; } .postbtn, .replybtn { float: right; } .postbtn { margin-left: 10px; cursor: pointer; } .pages_btns .pages em { line-height: 26px; } .pages, .threadflow { float: left; border:1px solid #7D6647; background:#EDE0BE; height: 24px; line-height: 26px; color: #999; overflow: hidden; } .pages a, .pages strong, .pages em, .pages kbd, #multipage .pages em,.pages span { float: left; padding: 0 8px; line-height:26px; } .pages a:hover { background-color: #FFF; } .pages span { font-weight: bold; color: #FFF; background: url(images/page_bg.gif) repeat-x 0 0; } .pages a.prev, .pages a.next { line-height: 24px; font-family: Verdana, Arial, Helvetica, sans-serif; } .pages a.next { padding: 0 15px; } .pages kbd { margin: 0; } * html .pages kbd { padding: 1px 8px; } .pages kbd input { border: 1px solid #E0E0DC; margin-top: 3px !important; * > margin-top: 1px !important; margin: 1px 4px 0 3px; padding: 0 2px; height: 17px; } .pages kbd>input { margin-bottom: 2px; } .threadflow { margin-right: 5px; padding: 0 5px; } .tabs { padding-bottom: 26px; margin-bottom: 15px; background: #EDE0BE; border-top: 1px solid #FFF; border-bottom: 1px solid #D4D4B3; } .tabs li { float: left; line-height: 27px; border-right: 1px solid #000; padding: 0 10px; } .tabs li.current { background: #392622; height: 27px; font-weight: bold; text-align:center; } .tabs li a { float: left; } #headfilter { border: solid #E0E0DC; border-width: 1px 1px 0; } #headfilter .tabs { border-bottom-color: #FFF; margin-bottom: 0; } #footfilter { padding: 10px; he\ight: 44px; height: 24px; line-height: 24px; background: #EDE0BE; border-color: #E8E8E8; font-family: Simsun, "Times New Roman"; } #footfilter form { float: right; } #footfilter * { vertical-align: middle; } .legend { border: 1px solid #7D6647; background: #EDE0BE; padding: 10px; margin: 10px auto; width: 500px; text-align: center; line-height: 35px; } .legend label { padding: 0 20px; } .legend img { vertical-align: middle; margin-right: 10px; } .avatarlist { overflow: hidden; padding: 5px 0; } * html .avatarlist { height: 1%; } .avatarlist dl { float: left; width: 70px; border: 1px solid #E8E8E8; padding: 5px; margin-right: 5px; text-align: center; } .avatarlist dt { width: 70px; height: 70px; } .avatarlist dl img { width: 64px; height: 64px; } .avatarlist dd { height: 22px; line-height: 22px; overflow: hidden; } .taglist { width: 100%; padding: 10px 0; overflow: hidden; } .taglist li { float: left; display: inline; width: 10em; height: 24px; overflow: hidden; margin: 0 10px; } .taglist li em { font-size: 10px; color: #999; } .attriblist * { color: #000; } .attriblist dt { float: left; margin-right: 10px; } .attriblist .name { font-weight: bold; } #forumlinks {} #forumlinks td { padding: 5px 5px 5px 55px; background: url(images/forumlink.gif) no-repeat 18px 50%; color: #999; } #forumlinks .forumlink_logo { float: right; } #online {} #online h4 { font-weight: normal; color: #666; } #online h4 strong { font-weight: bold; } .onlineusernumber { line-height:28px; } #online dl { padding: 5px 5px 5px 55px; } #onlinelist { background: url(images/online.gif) no-repeat 10px 10px; border-top: 1px solid #BEA052; } #online dt { padding: 5px; } #online dt img { margin-bottom: -3px; } #online dd { border-top: 1px solid #BEA052; } #bdayslist { padding: 10px 0 10px 55px; border-top: 1px solid #E8E8E8; background: url(images/bdays_cake.gif) no-repeat 10px 5px; } .userlist { overflow: hidden; padding: 5px 5px 0; } * html .userlist { height: 1%; } .userlist li { float: left; width:128px; height: 20px; overflow: hidden; } .userlist li img { vertical-align: middle; } #onlinelist .userlist li { height: auto; margin:4px auto ;} #recommendlist { } #recommendlist li { float: left; white-space: nowrap; width: 24.9%; overflow: hidden; text-indent: 12px; background: url(images/arrow_right.gif) no-repeat 2px 7px; } #recommendlist.rules li { width: 49%; } .recommendrules { padding: 0px;} #seccode { cursor: pointer; } .autosave { behavior: url(#default#userdata); } #menu a.notabs { background: none; } .headactions a.notabs { background: none; margin-right: 0px; padding-right: 0px; } .absmiddle { vertical-align: middle; } .mainbox ins { display: block; text-align: center; text-decoration: none; margin-bottom: 1px; background: #F7F7F7; border-bottom: 1px solid #E8E8E8; line-height: 26px; } ins.logininfo { background: #E8F3FD; padding: 2px 5px; line-height: 22px; color: #666; text-align: left; border: none; } /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Box Style ~~~~ */ /*Main Box*/ .mainbox { border:1px solid #7D6647; background:#EDE0BE; margin-bottom: 10px; } .mainbox h1, .mainbox h3, .mainbox h6 { line-height: 31px; padding-left: 1em; background: #AABE04 url(images/header_bg.jpg); background-repeat: repeat-x; background-position: 0 0; color: #FFF; } .mainbox h1 a, .mainbox h3 a { color: #FFF; } .mainbox table { width: 100%; } .forumlist table, .threadlist table { border-collapse: separate; } .mainbox thead th, .mainbox thead td,.divoption { padding: 2px 5px; line-height: 22px; color: #FFF; } .mainbox thead.category tr { background: #F5F8FD url(images/title_bg.jpg); } .mainbox thead.separation th, .mainbox thead.separation td { border-top: 1px solid #E0E0DC; } .mainbox tbody th, .mainbox tbody td { border-top: 1px solid #BEA052; padding: 5px; } .mainbox tbody cite, .mainbox tbody em { line-height: 1.3em; } .forumlist tbody strong, .threadlist tbody strong , .formbox tbody strong { color: #090; } /*Tabel Footer: Button Operation*/ .footoperation { background: #EFE0BE; padding: 5px; border-top: 1px solid #BEA052; } .threadlist .footoperation { padding-left: 61px; } .footoperation * { vertical-align: middle; } .footoperation label { margin-right: 1em; cursor: pointer; } .footoperation button,.sbutton{ line-height: 1em; display: inline; width: 0; overflow: visible; padding: 3px 5px 2px; border: 1px solid #E0E0DC; background: #FFF; cursor: pointer; margin-left: 2px; } .footoperation>button { width: auto; } /*Forum & Thread List*/ .forumlist tbody th, .forumlist tbody td, .threadlist tbody th, .threadlist tbody td { color: #666; padding: 1px 5px; } .forumlist tbody th { height: 40px; } .forumlist th, .threadlist th { text-align: left; } .forumlist th { padding-left: 55px !important; } .forumlist tbody th { background-image: url(images/forum.gif); background-repeat: no-repeat; background-position: 13px 50%; } .forumlist tbody th.new { background-image: url(images/forum_new.gif); } .moderators a strong { font-weight: bold; c } .threadlist th label { float: right; } .threadpages { background: url(images/multipage.gif) no-repeat 10px 100%; font-size: 11px; margin-left: 5px; white-space: nowrap; } .threadpages a { padding-left: 8px; } .threadpages a:hover { text-decoration: underline; } .threadlist th a.new { color: #090; text-transform: uppercase; font-size: 9px; white-space: nowrap; } .threadlist th input { float: left; margin-right: 5px; } .threadlist th em, .threadlist th em a { color: #999; } .threadlist th img.icon { float: left; margin-left: -22px; } .threadlist th img.attach, .threadlist th img.icon { margin-bottom: -3px; } .threadlist .target { float: left; display: block; width: 20px; height: 20px; margin-left: -28px; text-indent: -9999px; overflow: hidden; } * html .threadlist .target { margin-left: -14px; margin-right: 5px; } .forumlist tbody tr:hover th, .forumlist tbody tr:hover td, .threadlist tbody tr:hover th, .threadlist tbody tr:hover td { background-color: #F0E4C4; } .forumlist td.lastpost { width: 260px; } .forumlist td.lastpost p { overflow:hidden; height:20px; white-space:nowrap; width: 260px; text-overflow:ellipsis; } .threadlist td.folder { text-align: center; width: 30px; } .threadlist td.icon { text-align: center; padding: 3px 0; width: 16px; } .threadlist td.author { width: 120px; } .threadlist td.lastpost { text-align: right; width: 120px; padding-right: 15px; } .threadlist td.lastpost cite a { color: #999; } .forumlist cite, .threadlist cite { display: block; } .threadlist td.author em, .threadlist td.lastpost em { font-size: 0.83em; } label.highlight { width: 40px; margin-right: 30px; } label.highlight, label.highlight input { float: left; } label.highlight em { float: right; width: 16px; height:16px; } .quickmanage label.highlight { width: 40px; margin: 3px 18px 3px 0; } .optionbar {overflow:hidden; float: left; margin-right: 0.5em; border: 1px solid #E0E0DC; background: #2F589C url(images/header_bg.jpg); background-repeat: repeat-x; background-position: 0 100%; height: 12px; } .optionbar div { float: left; border: 1px solid #FFF; height: 10px; overflow: hidden; } .topicstats td { vertical-align:top; } .topicstats li{ overflow:hidden; height:28px; line-height:28px; border-bottom:1px solid #d1e1ef; padding:0 4px; } .topicstats li em { float:right; line-height:28px; padding-right:8px; } .pagediv div { padding-left:80px; } .pagediv .openlist { border-top:1px solid #E0E0DC; } /*Viewthread*/ .viewthread { padding-bottom: 1px; } .viewthread table, #pmprompt table, #forumlinks, #pmlist, #specialpost, #newpost, #editpost { table-layout: fixed; } .threadline { border-top:1px solid #E0E0DC; border-bottom:1px solid #E0E0DC; background:#fefefe; height:5px; line-height:5px;} .viewthread td.postcontent, .viewthread td.postauthor { vertical-align: top; padding: 0 1px; border: none; overflow: hidden; } .postinfo { color: #666; border-bottom: 1px solid #E0E0DC; padding: 0 5px; line-height: 26px; height: 26px; overflow: hidden; text-align:right; } .postinfo strong, .postinfo em { float: left; line-height: 26px !important; cursor: pointer; padding: 0 3px; } .postinfo strong { margin-left: 5px; color: #009900; font-weight: bold; } * html .postinfo strong { margin-top: -2px; } .postinfo strong sup { font-weight: normal; margin-left: 1px; color: #009900; } .postinfo a { color: #666; padding:0 4px; } .postinfo label { cursor: pointer; } .postmessage { padding: 10px; overflow-x: hidden; } .postmessage *, .pmmessage *, .register * { line-height: normal; } .defaultpost { height: auto !important; height:120px; min-height:120px !important; } .postmessage h2 {font-size: 1.17em; margin-bottom: 0.5em; } .t_msgfont, .t_msgfont td { font-size: 13px; line-height: 1.6em; } .t_smallfont, .t_smallfont td { font-size: 12px; line-height: 1.6em; } .t_bigfont, .t_bigfont td { font-size: 14.7px; line-height: 1.6em; } .t_msgfont *, .t_smallfont *, .t_bigfont * { line-height: normal; } .t_msgfont a, .t_smallfont a, .t_bigfont a { color: #009900; } .postratings { float: right; } .signatures { overflow: hidden; height: expression(signature(this)); max-height: 8em; margin: 10px; padding-top: 20px; color: #009900; line-height: 1.6em; } .signatures * { line-height: normal; } .signatures strong { font-weight: bold; } .postactions { border-top: 1px solid #E8E8E8; background: #F7F7F7; line-height: 30px; height: 30px; padding: 0 10px; } .postactions strong { cursor: pointer; } .postactions input { float: right; margin: 5px 0 0 5px; } .postactions p { float: right; } .postactions p a { padding:0 4px; } .postmessage .box { border-width: 0; margin: 5px 0; } .postmessage .typeoption { width: 500px; } .typeoption tbody th { width: 100px; } .typeoption tbody td, .typeoption tbody th { border-top: 0px; border-bottom: 1px dashed #E8E8E8; } .postmessage .box tbody th, .postmessage .box tbody td { border-top-color: #E8E8E8; } .postmessage fieldset { font-size: 12px; width: 500px; padding: 10px; border: 1px solid #E8E8E8; margin-top: 2em; } .postmessage fieldset li { color: #CCC; line-height: 1.6em; } .postmessage fieldset li cite, .postmessage fieldset li em { margin: auto 10px; } .t_msgfont li, .t_bigfont li, .t_smallfont li, .faq li { margin-left: 2em; } dl.t_attachlist { border-bottom:1px dashed #DDD; margin-top:10px; padding:10px; } .postattach { width: 500px; margin: 10px 0; } .postattachlist { width: 500px; font-size: 12px; margin-top: 2em; } .t_attach { border: 1px solid #E8E8E8; background: #FFF; font-size: 12px; padding: 5px; } .t_table { border-bottom: 1px solid #CCC; border-right: 1px solid #CCC; empty-cells: show; border-collapse: collapse;} .t_table td { padding: 4px; border-left: 1px solid #CCC; border-top: 1px solid #CCC; empty-cells: show; border-collapse: collapse; } .viewthread tbody .t_table td { border-top: 1px solid #CCC; } .navnextpage { background:#F7F7F7; height:26px; line-height:26px; } .navnextpage a { padding:0 3px; font-weight:bold; } .ntprint { z-index: 1000; position: absolute; cursor:pointer; right:200px; } .lastediter,.ratelog {margin-left:30px; margin-top:10px;} .ratelog img {vertical-align:middle;} .ratelog td { border-top:none; border-bottom:1px solid #CCC; } .postertext { padding-left: 30px; padding-top: 15px; padding-bottom: 5px; background:url(images/sigline.gif) no-repeat 0 0; margin: 5px 10px; } /* Discuz! Code */ /*CODE & Quote*/ .msgheader { margin: 0 2em; border-left: 1px solid #E0E0DC; border-right: 1px solid #E0E0DC; border-top: 5px solid #E0E0DC; background: #F0F0E8; padding: 4px; } .msgborder { margin: 0 2em; padding: 10px; border-left: 1px solid #E0E0DC; border-right: 1px solid #E0E0DC; border-bottom: 1px solid #E0E0DC; word-break: break-all; background-color: #F0F0E8; } p.posttags { margin: 2em 0em 0.5em 0em; } p.posttags a, .footoperation span.posttags a { color: #F00; font-weight: bold; } p.posttags .postkeywords a, { color: #009900; } .postmessage strong { font-weight: bold; } .postmessage em { color:#009900; } .postmessage span.t_tag { cursor: pointer; border-bottom: 1px solid #F00; white-space: nowrap; } .mainbox td.postauthor { width: 180px; background: #F0F0E8; padding: 5px; overflow: hidden; } .postauthor cite { font-weight: bold; display: block; border-bottom: 1px solid #E0E0DC; height: 21px; overflow: hidden; margin-bottom: 5px; } .postauthor cite label a { float: right; padding: 3px; } div.avatar { margin: 5px; text-align: center; width: 160px; overflow: hidden } .postauthor dt { float: left; margin-right: 0.5em; color: #009900; } .postauthor dd, .postauthor dt { height: 1.6em; line-height: 1.6em; } .postauthor dd { overflow: hidden; } .postauthor p { margin: 0 10px; } .postauthor p.customstatus { color: #009900; } .postauthor p em, .postauthor dt em { color: #009900; } .postauthor ul { margin: 5px 10px; line-height: 1.6em; overflow: hidden; } .postauthor li { text-indent: 22px; width: 49.5%; height: 1.6em; overflow: hidden; float: left; background-position: 0 50%; background-repeat: no-repeat; } .postauthor li.pm { background-image: url(images/buddy_sendpm.gif); } .postauthor li.albumpic { background-image: url(images/album.gif); } .postauthor li.space { background-image: url(images/space.gif); } .postauthor li.online { background-image: url(images/user_online.gif); color: #009900; } .postauthor li.offline { background-image: url(images/user_offline.gif); } .postauthor li.magic { background-image: images/magic.gif);} ul.otherinfo { margin:0; } ul.otherinfo li { float:none; width:100%; text-indent: 12px; } ul.tools img { float:left; } .postauthor dl.profile, .postauthor div.bio { margin: 5px 10px; padding-top: 5px; } /*Common Box*/ .box { background: #EDE0BE; border: 1px solid #7D6647; padding: 1px; margin-bottom: 10px; } .box h4 { line-height: 30px; padding: 0 10px; } .box table { width: 100%; } .box td { border-top: 1px solid #BEA052; } .box .box li { list-style: none;} .postattachlist h4, .tradethumblist h4, .specialthread_4 h4, .typeoption h4 { border-top: 1px solid #E8E8E8; } #pmprompt { border-color: #EDEDCE; } #pmprompt h4 { background: #FFFFF2; border-top: none; } #pmprompt th, #pmprompt td { border-top-color: #EDEDCE; } #posteditor_bottom .box thead th,#posteditor_bottom .box thead td { color:#000; } /*List*/ td.user { width: 120px; } td.nums { width: 80px; text-align: center; } td.time { width: 120px; } td.selector { width: 20px; text-align: center; } .dropmenu { padding-right: 15px !important; background-image: url(images/arrow_down.gif) !important; background-position: 100% 50% !important; background-repeat: no-repeat !important; cursor: pointer; } .popupmenu_popup { text-align: left; line-height: 1.4em; padding: 10px; overflow: hidden; border: 1px solid #E0E0DC; background: #FFF url("images/portalbox_bg.gif"); background-repeat: repeat-x; background-position: 0 1px; } .headermenu_popup { width: 170px; } .headermenu_popup li { float: left; width: 7em; line-height: 24px; height: 24px; overflow: hidden; border-bottom: 1px solid #E8E8E8; } .newspecialmenu { width: 100px; } .newspecialmenu li { background: url(images/folder_s.gif) no-repeat 3px 50%; float: left; } .newspecialmenu li.poll { background-image: url(images/pollsmall.gif); } .newspecialmenu li.trade { background-image: url(images/tradesmall.gif); } .newspecialmenu li.reward { background-image: url(images/rewardsmall.gif); } .newspecialmenu li.activity { background-image: url(images/activitysmall.gif); } .newspecialmenu li.debate { background-image: url(images/debatesmall.gif); } .newspecialmenu li.video { background-image: url(images/videosmall.gif); } .newspecialmenu a { float: left; width: 75px; border-bottom: 1px solid #E8E8E8; padding: 5px 0 5px 25px; } .newspecialmenu a:hover { text-decoration: none; border-bottom-color: #E0E0DC; } #styleswitcher_menu { overflow: visible; } #styleswitcher_menu, #styleswitcher_menu ul li, #styleswitcher_menu ul li.current a, #styleswitcher_menu ul li a { white-space: nowrap; } #styleswitcher_menu ul li.current { font-weight: bold; } #styleswitcher_menu ul li.current a { color: #666; } #styleswitcher_menu li.current { font-weight: bold; } #forumjump_menu, #visited_forums_menu { padding: 10px 30px 10px 20px; } #forumlist_menu dl, #forumjump_menu dl { padding: 5px 0; } #forumlist_menu dt a, #forumjump_menu dt a { font-weight: bold; color: #666; } #forumlist_menu dd, #forumjump_menu dd { padding-left: 1em; } #forumlist_menu li.sub, #forumjump_menu li.sub { padding-left: 1em; } #forumlist_menu li.current a, #forumjump_menu li.current a, #visited_forums_menu li.current a { font-weight: bold; } #forumlist_menu li a, #forumjump_menu li a, #visited_forums_menu li a { font-weight: normal; } .userinfopanel { border: 1px solid #E8E8E8; width: 140px; background: #FFF url("images/portalbox_bg.gif"); background-repeat: repeat-x; background-position: 0 0; padding: 10px; } .imicons { text-align: center; border: 1px solid #E8E8E8; background: #FFF; padding: 4px 1px; } .imicons img { vertical-align: middle; } .userinfopanel p { text-align: left; margin: 0; } .userinfopanel dl { border-bottom: 1px solid #E8E8E8; margin: 5px 0; padding: 5px 0; } .postauthor cite a { float: left; padding: 5px; border: solid #E8F3FD; border-width: 1px 1px 0; height: 10px; overflow: hidden; } .postauthor cite a.hover { border-color: #E8E8E8; background-color: #FFF; } .popupmenu_popup .postauthor { width: 180px; } /*QuickSearch*/ #search { padding-left: 78px; } #searchbar { border: 1px solid #ccc; height: 24px; margin-right: 0px; line-height: 22px; width: 222px; background:#FFF;} #searchbar dt,#searchbar dd { float: left; } #searchbar .s2{ background: #FFF url(images/dot-down.gif) no-repeat right center; width: 80px; color: #000; text-align: center; line-height: 24px; } #searchbar .text{ width: 116px; text-indent: 2px; border: 0; padding: 0.2em 0; } *html #searchbar .text { width: 108px; } *+html #searchbar .text { width: 108px; } #searchbar .textinput {border-right:1px solid #CCC;} #searchbar .s3{ width: 24px; height: 24px; background: #fff url(images/button-search.gif) no-repeat 100% 0; border: 0; } .searchmenu { background-color: #F5FAFE; padding: 4px; width: 75px; text-align: center; border: 1px solid #ccc; border-top: 0;} #divsearchoption { color:#000; } /*QuickSearch*/ /*Message*/ .message { margin: 3em 10em 5em !important; } .message h1 { line-height: 26px; padding-left: 1em; margin-bottom: 1em; } .message p { margin: 1.5em 1em; } /*Message*/ .avatarlist { overflow: hidden; padding: 5px 0; } * html .avatarlist { height: 1%; } .avatarlist dl { float: left; width: 54px; border: 1px solid #E8E8E8; padding: 5px; margin-right: 5px; text-align: center; } .avatarlist dt { width: 54px; height: 54px; } .avatarlist dl img { width: 48px; height: 48px; } .avatarlist dd { height: 22px; line-height: 22px; overflow: hidden; } .specialthread .postcontent h1 { background: #FFF; font-size: 1.5em; color: #000; padding: 10px 5px; border-bottom: 1px solid #E8E8E8; font-weight:normal; } .specialthread .postcontent label { float: right; display: inline; margin: 12px 12px 0; border: 1px solid #E8E8E8; padding: 3px 5px; background: #E8F3FD no-repeat 3px 50%; } .specialthread .postcontent label strong { color: #090; } .specialthread .postauthor { width: 180px; } .specialpostcontainer { padding: 0 1px; } .specialpost { border-bottom: 4px solid #F5FAFE; text-align: right; } .specialpost .postinfo h2 { float: left; font-weight: normal; padding-left: 8px; font-size: 0.83em; } .specialpost .postinfo h2 em {} .specialpost .postinfo { border-color: #E8F3FD; height: 1.8em; } .specialpost strong { border: none; } .specialpost .postinfo h2 a { font-size: 12px; } .specialpost .postmessage { text-align: left; min-height: 30px; border-bottom: 1px solid #E8E8E8; } * html .specialpost .postmessage { height: 30px; overflow: visible; } p.imicons { margin: 8px auto; width: 160px;} /*controlpannel*/ .controlpannel{ clear: both; margin-bottom: 8px; } /*\*/ * html .controlpannel { /**/ height: 1%; }*>.controlpannel { overflow: hidden; } .pannelmenu{ float: left; width: 10%; position: relative; margin-top: 18px; } .pannelmenu a{ display: block; margin-bottom: 5px; text-decoration: none; height: 30px; line-height: 30px; color: #FFF; text-align: left; } .pannelmenu a.current { position: relative; left: 1px; color: #000; cursor: default; border: 1px solid #7D6647; background: #EDE0BE; border-right: 0px; padding: 1px; padding-right: 0px; height: 26px; line-height: 26px; } *+html .pannelmenu a.current { left: 0; } *html .pannelmenu a.current { left: 0; } .pannelmenu a:hover { text-decoration: none; color: #FFF; } .current span{ display: block; padding-left: 15px; height: 23px; line-height: 23px; } .pannelcontent{ float: left; width: 90%; } .pannelcontent .pcontent{ border: 1px solid #7D6647; background: #EDE0BE; padding: 1px; } .pcontent .panneldetail{ padding: 20px 4px 10px 4px; background: #EDE0BE url(images/content-bg.jpg) repeat-x left top; } .panneltabs{ padding-bottom: 28px; } .panneltabs a { float: left; padding: 0 5px; margin-right: 5px; text-decoration: none; height: 28px; line-height: 28px; font-weight: bold; } .panneltabs a:hover { color: #666; background: #fff; } .panneltabs a.current,.panneltabs a.current:hover { color: #000; cursor: default; border-bottom: 1px solid #FFF; background:#FFFFFF url(images/currentbg.jpg) no-repeat right top; height: 27px; line-height: 27px; text-align: center; padding: 0 5px; margin-right: 5px; } .panneltabs a.addbutton { color: #090; cursor: default; } .jsmenu{ text-align: left; padding: 0 2px; background: url(images/jsmenu.gif) no-repeat 100% 50%; padding-right:15px; } .mallmenu { width: 200px; } .mallmenu a { float:left; display:block; width:46%; text-align:center; } .pannelbody { clear: both; background: #FFF; padding: 20px; border-bottom: 4px solid #F0F0E8; border-right: 2px solid #F0F0E8; min-height: 450px; } /*\*/ * html .pannelbody { /**/ height: 1%; }*>.pannelbody { overflow: hidden; } .pannellist { position:relative ;height: auto!important; height: 480px; margin-bottom: 8px; } .messagetable{ background: #FFF; } .messagetableon{ background: #F7F7F0; } .pannellist td,.pannellist th{ text-align: center; border-bottom: 1px dashed #ccc; line-height: 220%; } .pannellist .forumpages td { border-bottom: 1px solid #BDDAF7; } .pannellist a:link,.pannellist a:visited{ text-decoration:none;} .pannellist a:hover,.pannellist a:active{ color:#333; text-decoration:none;} .mallcount td { text-align:left; } .pannelmessage{ height: 40px; line-height: 40px; } .pannelleft{ float: left; width: 48%; padding-left: 10px; line-height: 36px; } .pannelleft a { padding: 0 5px; } .pannelright{ float: right; width: 48%; text-align: right; } .pannelbody label{ float: left; width: 120px; font-weight: bold; line-height: 220%; } .labelshort{ width: 60px; } .pannelbody .labellong{ width: 150px; } .labellong2{ width: 160px; line-height: 400%; } .pannelbody br{ clear: left; } .pannelbody ul{ margin-bottom: 10px; line-height: 200%; } .notetitle{ font-weight: bold; color: #F90; background: #FFF url(images/message_1.gif) no-repeat left center; padding-left: 25px; } .notetime{ color: #999; font-weight: lighter; padding-left: 25px; } .notecontent{ overflow: hidden; word-wrap: break-word; word-break: break-all; background: #F5FAFE; font-size: 14px; color: #666; padding: 10px; } .paychange{ color: #666; padding: 2px 10px 2px 0; } .paychange em{ font-weight: bold; color: #F90; } .notecontent a{ font-weight: bold; padding: 0 3px; } .pannelbody li{ color: #333; } .usermessagesname{ color: #090; font-weight: bold; } .compartline{ margin: 0 auto; height: 15px; line-height: 15px; border-top: 1px dashed #CCC; } .usermessagephoto{ padding: 10px; } /*\*/ * html .usermessagephoto { /**/ height: 1%; }*>.usermessagephoto { overflow: hidden; } .photoimg { border-bottom: 1px dashed #ccc; padding:10px; } /*\*/ * html .photoimg { /**/ height: 1%; }*>.photoimg { overflow: hidden; } .photoimg img{ float: left; margin:10px; margin-top:0; } .photoimgediter{ float: right; width: 85%; } ul#photo{ margin: 0 auto; padding: 6px; white-space: nowrap; } /*\*/ * html ul#photo { /**/ height: 1%; }*>ul#photo { overflow: hidden; } #photo li{ float: left; width: 20%; height: auto!important; height: 240px; min-height: 240px; overflow: hidden; } .photodetail h4{ font-weight:bold;} .pictureimg {text-align:center;} .photoediter { margin-top: 15px; } /*\*/ * html .photoediter{ /**/ height: 1%; }*>.photoediter{ overflow: hidden; } .photoediter .photoshow { float: left; width: 20%; text-align: center; } .photoediter .photomessage { float: right; width: 68%; } .avatarlist { background: #fff; padding: 10px; border: 1px solid #999; border-bottom: 0; width: 450px; height: 400px; overflow-y:auto;overflow-x:hidden;} .avatarlist li{ float: left; width: 24%; margin: 0 1px; height: 120px; } .avatarbutton { display: block; position: absoulte; left: 0px; bottom: 0px; text-align: center; border: 1px solid #999; border-top: 0; padding: 5px 0; } .avatarbackground { background-color: #F5F5F5; } #BOX_overlay label { width: 40px; } #avatarbox label {float:none;cursor: pointer;} #avatarbox input[type=radio]{ margin-bottom: -3px;} .newmessage { padding:10px 0; text-align:right; } a.submitbutton { padding:7px 22px; text-align:center; background:url(images/userbutton3.gif) no-repeat left center; text-decoration:none; } .submitbutton strong{color:#000;} a.otherbutton { padding:7px 16px; text-align:center; background:url(images/userbutton2.gif) no-repeat left center; text-decoration:none; color:#333;} a.selectall { padding:7px 10px; text-align:center; background:url(images/usersubmit.gif) no-repeat left center; text-decoration:none; color:#333;} #neworeditalbum form { text-align:left;} /*controlpannel*/ /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Form Style ~~~~ */ fieldset { border: none; } input, textarea { border-width: 1px; background: #FFF; border-color: #DDD; padding: 2px; } input[type="radio"], input[type="checkbox"] { border: none; background: none; } .radio, .checkbox{ border: none; background: none; } .invitecodelist input { border: none; font-family: "Courier New", Courier, monospace; font-size: 13px; cursor: pointer; } button { border: 1px solid; border-color: #E8E8E8 #999 #999 #E8E8E8; background: #F0F0E8; height: 2em; line-height: 2em; cursor: pointer; } #postsubmit, button.submit { margin-right: 1em; background:url(images/buttonbg.gif) no-repeat 0 0; color: #FFF; width:77px; height:27px; font-weight:bold; border:0;} button.insmsg { margin: 1em 0; border: 1px solid #EDEDCE; background: #FFFFF2; color: #090; } .wrap .regbox .register td{text-align:center;} .formbox th { width: 180px; text-align: left; } .formbox th, .formbox td { padding: 5px; } .formbox th, .formbox td { border-bottom: 1px solid #BEA052; } .formbox label { cursor: pointer; } .lighttxt, .formbox *.tips { color: #999; } .formbox th ul { padding: 5px 0; } #threadtypes table td, #threadtypes table th { border-top: 1px solid #E8E8E8; border-bottom: 0;} .mainbox #ColorPicker tbody td { border:none; } .hintinfo { background:#FDFFF2 url(images/hint.gif) no-repeat 7px 3px; border:1px dotted #DBDDD3; padding:2px 2px 2px 25px; margin:15px 0;} /*Login Form*/ #loginform * { vertical-align: middle; } #loginform button { line-height: 21px; height: 21px; padding: 0 4px; margin-left: 3px; } /*QuickPost*/ #quickpost { overflow: hidden; padding-bottom: 0; } * html #quickpost { height: 1%; overflow: visible; } #quickpost h5 { margin: 0.5em 1em; } .postoptions, .postform, .smilies { float: left; } .postoptions { width: 16%; } .smilies { width:25%;} .postoptions p { margin: 2px 0.7em; } .postform { width: 58%; padding-bottom: 10px; } .postform p label { vertical-align: top; font-weight: bold; } .postform h5 input { width: 60%; } .postform p, .postform div { margin: 0 1em; } .postform h4 * { vertical-align: middle; } .postform h4 input { width: 60%; } .postform textarea { width: 90%; height: 120px; } .postform .btns { margin-top: 0.5em; line-height: 30px; color: #999; margin-right:30px; } .postform .btns button { vertical-align: middle; } .postform button { border: none; background: transparent; color: #FFF; padding: 0; cursor: pointer; } .postform #postsubmit { float: left; display: inline; margin-left: 2.3em; } .btns em { color: #999; } #adlinkbtn,#closebtn,.buybutton { float:right; display:block; width:55px; height:22px; line-height:22px; border-left:1px solid #DDD; border-top:1px solid #DDD; border-right:1px solid #6E6E6E; border-bottom:1px solid #6E6E6E; text-align:center; margin-left:10px; margin-top:4px; color:#000; text-decoration:none; } .buybutton { float:left; margin-left:0; margin-right:10px; } .formcode img { vertical-align:middle;} /*Smiles start*/ .smilies td { border:none; } .smiliepanel { border-bottom: 1px solid #E0E0DC; padding-bottom: 24px; } .scrollbar { float: left; overflow: hidden; width: 190px; height: 25px; } .scrollbar table { width: auto;} .mainbox .smilies tbody td,.mainbox .editorsmiles tbody td { padding:0; border:none; } .scrollbar td div,.lian { cursor: pointer; padding: 0 4px; border: 1px solid #E0E0DC; margin-right: 5px; text-decoration: none; height: 23px; line-height: 23px; background: #F7F7F0; color: #666; width:60px; text-align:center; } .scrollbar .lian { font-weight: bold; border-bottom: 1px solid #FFF; background: #FFF !important; white-space: nowrap; } .navcontrol { width:240px;} #scrlcontrol { float: right; text-align: right; padding-top: 4px; } .autosave{ color:#333; word-break: break-all; word-wrap:break-word; width:98%; height:118px; behavior: url(#default#userdata);} .smiles{ background: #FFF; margin-left: 2px; color: #FFF; font-weight: bold; padding: 3px; } #showsmilie{ overflow:hidden; background: #fff; border: 1px solid #E0E0DC; border-top: 0; overflow-y: auto; height: 102px; width:240px;} #showsmilie td { padding:5px; } #showsmilie p {text-algin:center;} .p_bar{ clear: both; margin-top: 10px; margin-left: 1px; min-height: 24px; height: 24px; line-height: 20px; } .p_bar a{ float: left; display: block; width: 20px; height: 20px; margin-right: 4px; text-align: center; } a.p_curpage{ border: 1px solid #E0E0DC; font-weight: bold; background: #FFF; } .editorsmiles { margin:10px 0; } .editorsmiles .scrollbar{ width:130px; } .editorsmiles #showsmilie { width:179px; height:130px; } /*Smiles end*/ /*Ajax Form*/ .ajaxform {} .ajaxform th, .ajaxform td { border-bottom: 1px solid #E8E8E8; padding: 5px; } .ajaxform thead th { font-weight: bold; } .btns th, .btns td { border: none !important; } #ajaxwaitid { position: absolute; display: none; z-index: 100; width: 100px; height: 1.6em; top: 0px; right: 0px; line-height: 1.6em; overflow: hidden; background: #dd0000; color: #ffffff;} .postform .special, #postform .special { font-weight: bold; } .postform #message { max-width:640px; height:125px;} #newpost em { color: #999 } /*debate*/ .talkbox { margin:10px 25px; margin-top:0; } /*\*/ * html .talkbox { /**/ height: 1%; }*>.talkbox { overflow: hidden; } .specialtitle {overflow:hidden; margin-bottom: 10px; } .squaretitle,.sidetitle { overflow:hidden; float:left; width:48%; padding:10px 0; text-align:center; font-weight:bold; font-size:13px; background: #FFF url("images/portalbox_bg.gif") repeat-x 0 0; border:1px solid #E8E8E8; } .sidetitle { float:right; } .balance { clear:both; margin-top:10px; position:relative; border:1px solid #D4D4B3; font-weight:bold; color:#000; font-size:14px; background:#F7F7F7;} .balance span.scalevalue1 { position:absolute; top:5px; left:6px; } .balance span.scalevalue { position:absolute; top:5px; right:6px; } .balance em { padding-left:6px; font-weight:bold; } .balance b { color:#ffcc00; font-size:18px;} .squareboll { padding:6px 0; height:16px; background:#F0F0E8; } *html .squareboll { margin-top:-1px; } .talkinner { clear:both; } #positivepostform,#negativepostform,#positivepostform2, #negativepostform2{ background:#99c8db; padding:10px; margin:4px; } #negativepostform,#negativepostform2 { background:#ff8388; } #positivepostform,.buttoncontrol,#negativepostform { margin: 10px 0;} .buttoncontrol { text-align:center; } .buttoncontrol button,.submitbutton { background:#77b6d0; } .oppositionbox .buttoncontrol button,.oppositionbox .submitbutton { background:#ff5a60;} .talkinner table { text-align:left; } .squarebox,.oppositionbox { float:left; width:48%; position:relative; } .oppositionbox { float:right; } .talkinner h2 { margin:10px 0; padding:6px 0; } .square { margin-bottom:10px; background:#F0F0E8; } .oppositionbox .square { background:#ff5a60;} /*\*/ * html .talkbox .square { /**/ height: 1%; }*>.talkbox .square { overflow: hidden; } .debatemessage { overflow:hidden; width:98%; background:#F0F0E8; padding:4px; } .oppositionbox .debatemessage { background:#F7F7F7; } .debatemessage .msgheader { background:none; border:none; border-bottom:1px dashed #EEE; } .debatemessage .msgborder { background:none; border:none; padding:4px;} .supportbox { width:90px; text-align:center; vertical-align:top; } .supportbox p{ width:60px; height:90px; margin:12px auto; } .supportbox span,.comment span { display:block; } .supportbox span.talknum,.comment span.talknum { line-height:40px; font-size:40px; color:#ffcc00;} span.cliktalk { line-height:20px; height:20px; } .supportbox span.cliktalk a,.comment span.cliktalk a,.othertalk a { border:1px solid #DDD; padding:2px 4px; text-decoration:none; background:#DDD; color:#000; } .comment { padding:6px 12px; vertical-align:top; } .talkinner h3{ padding:6px 0; font-weight:normal; color:#000; } .talkinner h3 span { float:right; padding-right:6px; } .box .talkinner tbody td { border:none; } .talkinner .othertalk { text-align:right; padding:4px 0; } .debatepages { margin-bottom:8px;} .debatepages a,.debatepages span{ border:1px solid #CCC; padding:2px 4px; margin-bottom:2px; margin-right:2px; background:#77b6d0; color:#000; text-decoration:none; } .debatepages span { background:#FFF; font-weight:bold; } .oppositionbox .debatepages a { background:#ff5a60;} /*end debate*/ /*shop*/ .imageviewer { float:left; width:35%; text-align:center; } /*\*/ * html .imageviewer { /**/ height: 1%; }*>.imageviewer { overflow: hidden; } .imageviewer ul { margin:10px;} .imageviewer li { list-style:none; line-height:25px;} .itemsummary { float:left; width:350px; margin:10px; margin-left:80px; } /*\*/ * html .itemsummary { /**/ height: 1%; }*>.itemsummary { overflow: hidden; } #priceinfo em {color:#FF5500; font-family:Verdana; font-size:24px; font-style:normal;} .itemsummary li {border-bottom:1px dashed #DDDDDD; height:24px; line-height:24px; list-style:none; margin-top:2px;} .itemsummary li span {color:#000; display:block; float:left; width:80px;} .buttonbuynow { height:39px; margin:20px auto 5px; position:relative; width:168px;} .buttonbuynow a {background:transparent url(images/button_buynow.gif) no-repeat scroll 0 0; height:39px; left:0pt; position:absolute; text-decoration:none; text-indent:-9999px; top:0pt; width:168px;} #otherinfobox li { display:block; float:left; width:350px;} #otherinfobox .amount, #otherinfobox .viewtimes, #otherinfobox .neworold,#otherinfobox .location { width:158px; } ul.goodsinfo { margin:10px 30px; } ul.goodsinfo span {padding-right:10px; font-weight:bold; color:#000;} .othergoods {border:1px solid #DDD; margin:10px;} /*\*/ * html .othergoods { /**/ height: 1%; }*>.othergoods { overflow: hidden; } .othergoods h3 {background:transparent url(images/othergoodsbg.gif) repeat-x 0pt 1px; height:28px; line-height:28px; padding:7px 8px; color:#000;} .othergoods li { float:left; width:16%; text-align:center;} .othergoods li em {color:#FF5500; display:block; font-weight:bold; margin:8px 0pt;} .openshop {padding: 5px; background: #F1F1F1; clear: both; text-align: center;} .authormessage { font-weight:bold; color:#000; font-size:13px; border-bottom:1px dashed #CCC; line-height:30px;} .authorname { color:#00486D; line-height:25px;} .moregoods { text-align:center; margin:5px 0;} #othermessage,#pricelist,#messagebox { clear:both; background:url(images/otherinfobg.gif) repeat-x 0 0; } /*\*/ * html #messagebox { /**/ height: 1%; }*>#messagebox { overflow: hidden; } #othermessage h3,#pricelist h3,#messagebox h3 { height:25px; border-bottom:1px solid #DDD; line-height:25px; padding-left:25px; color:#000; background:none; } #othermessage ul { margin:25px;overflow:hidden; } #othermessage li { float:left; width:48%; list-style:none;} #othermessage li span { margin-right:5px; font-weight:bold;} .alipaywarningmsg {background:#FFFFED url(images/alipay_logo_small2.gif) no-repeat scroll 5px 8px; border:1px solid #DDCF8F; margin:10px 20px 0pt; padding:5px 0pt 5px 80px;} #summaryinfo{ margin:1em auto 0pt; width:96%; } /*\*/ * html #summaryinfo { /**/ height: 1%; }*>#summaryinfo { overflow: hidden; } #summaryinfo li {float:left; height:33px; line-height:33px; list-style-type:none; margin-right:2em;} #summaryinfo p {background-color:#EEF8FE; border:1px dashed #69C9FC; float:right; line-height:1.5em; margin:0pt; padding:5px 5px 2px; text-align:left; width:40%;} #summaryinfo em {color:#FF5500; font-family:verdana; font-weight:bold;} .salerlist { clear:both; margin:1em auto; width:96%; text-align:center; border-bottom:1px solid #000; } /*\*/ * html .salerlist { /**/ height: 1%; }*>.salerlist { overflow: hidden; } .salerlist th{ border-bottom:2px solid #333; font-weight:bold; color:#000;} #messagebox dl {margin:3pt auto; overflow:hidden; text-align:left; width:96%;} #messagebox dt { border-top:1px dashed #DDDDDD; color:#FF6500; margin:3px 0pt 0pt; position:relative;} #messagebox dd { color:#333;line-height:1.5em; margin:8px 0pt 0pt; } .creditbox h2 { overflow:hidden; border-bottom:1px solid #E8E8E8; height:26px; line-height:26px; padding-left:10px; } .listpage {clear:both; width:97%; padding: 3px; margin: 3px; text-align: right;} .listpage a {border: 1px solid #D1E1EF; padding: 2px 5px; margin: 2px; color: #000099; text-decoration: none} .listpage a:hover {border: #000099 1px solid; } .listpage a:active {border: #000099 1px solid; color: #000; } .listpage span.current {border: #000099 1px solid; padding:2px 5px; font-weight: bold; margin: 2px; color: #000; background: #E8F3FD;} .listpage span.disabled {border: #eee 1px solid; padding: 2px 5px; margin: 2px; color: #ddd; } /*\*/ * html .tradeinfo { /**/ height: 1%; }*>.tradeinfo { overflow: hidden; } .tradeinfo h1 {background:#E8F3FD; border-bottom:1px solid #E8E8E8; color:#000000; font-size:1.5em; margin-bottom:1em; padding:10px 5px;} .tradeinfo h2 {background:#E8F3FD; border-bottom:1px solid #E8E8E8; color:#999; padding:3px 5px; font-weight:normal; } .navformcommend,.navtopiccommend{ text-align: left; border-bottom: 1px solid #E0E0DC; color: #666; line-height: 24px; background-image: url(images/portalbox_bg.gif); padding-left: 15px; font-weight: bold; } .shoppicture { width:100px; } #tradepost th,#tradepost th { width:150px; } .shopsearch { position:relative; height:35px; border-bottom:1px solid #E8E8E8; margin-bottom:20px; } .shopsearch .mysearch { float:left; } .shopsearch strong { position:absolute; top:9px; right:10px; border:1px solid #E8E8E8; padding:3px 5px; border-bottom:1px solid #FFF; background:#FFF; font-weight:bold; } /*end shop*/ /*goodscategorylist*/ #categoryselector {clear:both; background:#FFF; height:279px; width:740px;} #categoryselector ul { float:left; border:1px solid #CCC; height:277px; margin:0pt 2px 0pt 0pt; overflow:auto; padding:0pt; width:186px;} #categoryselector ul.blank {background-color:#F6F6F6;} #categoryselector li {border:1px solid #FFF;color:#444;cursor:pointer;height:20px;line-height:20px;list-style-type:none;margin:0pt 1px ! important;padding:0pt;text-indent:3px;width:156px !important;} #categoryselector li.isfather {background: url(images/category_arrow.gif) no-repeat 99% 50%;} #categoryselector li.selected {background-color:#CAFFC0;border:1px solid #0A9800;color:#006623;} #categoryselector #categorylevel0 li {width:186px !important;} #categoryselector #categorylevel3 {width:166px;} /*goodscategorylist*/ /*userinfo*/ .usermessage li a{ font-weight:bold; color:#0D7DBF; text-decoration:underline; } .userspace,.userphoto,.usermail,.userpm,.userban { width:100%; background:url(images/dotspace.gif) no-repeat 0 50%; padding-left:25px; line-height:30px;} .userphoto { background:url(images/dotphoto.gif) no-repeat 0 50%;} .usermail { background:url(images/email.gif) no-repeat 0 50%;} .userpm { background:url(images/draftbox.gif) no-repeat 0 50%;} .userban { background:url(images/page_link.gif) no-repeat 0 50%; } .usertitle { width:120px; } .navname { font-weight:bold; font-size:14px; color:#09C; } .userlink a { text-decoration:underline; color:#0D7DBF; font-weight:bold;} /*userinfo*/ /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Advertisments ~~~~ */ #ad_headerbanner { float: right; margin-top: 4px; } .ad_text { border: 1px solid #E0E0DC; margin-bottom: 10px; padding: 6px; background: #FFF url(images/portalbox_bg.gif); background-repeat: repeat-x; } .ad_text table { width: 100%; border-collapse: collapse; } .ad_text td { background-repeat: repeat-x; background-position: 0 0; padding: 2px 10px; } .ad_textlink1 { float: left; white-space: nowrap; } .ad_textlink2 { margin: 10px; } .ad_textlink1,.ad_textlink2 { padding-left: 25px; background: url(images/ad_icon.gif) no-repeat 0 50%; } .ad_pip { clear: right; float: right; display: inline; margin: 10px 10px 10px; } .ad_topicrelated { clear: both; float: right; display: inline; margin: 0 10px 10px; padding: 10px 10px 10px 30px; border: 1px solid #78A73D; background: #CAEEC0; } .ad_column { text-align: center; margin-bottom: 10px; } .ad_footerbanner { text-align: center; clear: both; margin:5px; } /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ User useravata ~~~~ */ .avataonline { float: left; height: 30px; line-height: 30px; padding-left: 28px; background: url(images/avataronline.gif) no-repeat 10px 40%; color:#FFF; } .avataonline a { color:#FFF; } #viewpro_menu { margin: 10px auto auto -30px; text-align: center; } #viewpro_menu img { height:48px; width: 48px; margin: 2px auto; } #viewpro_menu li { text-align: left; } .userinfolist { float: left; } li.popuser { text-indent: 20px; padding: 4px; background: url(images/usericon.gif) no-repeat 0 50%; } li.poplink { text-indent: 20px; padding: 4px; background: url(images/homelink.gif) no-repeat 0 50%; color: #999; } /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Search Result ~~~~ */ .searchtab,.statstab {border-bottom: 1px solid #E0E0DC; padding-bottom: 27px; padding-left: 5px; margin-bottom:10px;} .searchtab a,.statstab a { float: left; padding: 0 8px; font-weight: bold; border: 1px solid #E0E0DC; margin-right: 4px; text-decoration: none; height: 26px; line-height: 26px; background: #F7F7F0; color: #666;} .searchtab a.currenttab,.statstab a.currenttab { color: #FFF !important; cursor: default; border-bottom: 1px solid #392622; background: #392622 !important; } .searchtab a:hover,.statstab a:hover { color: #666; background: transparent; } /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Show Template ~~~~ */ /*\*/ * html ul#forumtemplate{ /**/ height: 1%; }*>ul#forumtemplate{ overflow: hidden; } ul#forumtemplate li{ float: left; width: 45%; text-align: center; padding: 10px; height: 260px; } ul#forumtemplate img{ margin: 1px; border: 1px solid #ccc; } .templatebutton { padding:10px; text-align:center; } /*frame start*/ #frameback{ height: 26px !important; height: 27px; border-bottom: 1px solid #FFF; background-color: #DEEFFA; line-height: 26px; } #frameback strong{ padding-left: 35px; border-left: 1px solid #F5FAFD; background: url(images/back.gif) no-repeat 25%; } #frameback em{ padding-left: 30px; background: url(images/back2.gif) no-repeat 13%; margin-left: 10px; } .framemenu{clear:both; margin-left:8px; text-align:left;} .framemenu img{vertical-align:middle;} .framemenu li span{ color: #000; } .framemenu strong{ font-weight: normal; color: #09C; font-family: Verdana, Arial, Helvetica, sans-serif; } .framemenu span{ color: #09C; } .framemenuLine{ width: 200px; margin: 0 auto; background: url(images/space.gif) repeat-x left center; } #newpmcount{ color: #09C; font-family: Verdana, Arial, Helvetica, sans-serif; } .forumdropmenu{ background:#DEEFFA; padding: 2px; text-align: left; border-left: 1px solid #D7E3F2; border-right: 1px solid #E6EEF7; border-bottom: 1px solid #E6EEF7; } .framehead{ clear: both; line-height: 22px; } .frameheadleft{ float: left; text-align: left; width: 49%; } .frameheadright{ float: right; text-align: right; width: 49%; } .framehead p{ height: 20px; line-height: 20px; } #forumfocus{ clear: both; margin-bottom: 8px; } /*\*/ * html #forumfocus{ /**/ height: 1%; }*>#forumfocus{ overflow: hidden; } .focuslistleft{ float: left; width: 48%; } .focuslistright{ float: right; width: 48%; } .navfocuslist li{ text-align: left; line-height: 24px; border-top: 1px solid #D1E1EF; color: #036; margin-bottom: 1px; } .navfocuslist li img{ padding: 2px; } .framelistselect{ clear: both; background-color: #F5FAFE; line-height: 28px; border-top: 1px solid #E6EEF7; color: #09C; height: 30px; } .listspace{padding-left:26px;} /*frame end*/ /*help*/ .helpmenu strong{ font-weight:bold; } .helpcontent h2 {background: #F7F7F0; font-size:14px; color:#333; padding:5px 0; padding-left:15px; } .helpcontent ul{margin:15px;} .mainbox .helpcontent tbody td,.mainbox .helpcontent tbody th { border:none; padding:0px; } .helpsubtitle,.infotitle { font-weight:bold; } /*help*/ /*footer*/ #ad_footerbanner { padding-bottom:10px; text-align:center;} #footer { border-top: 1px solid #D4D4B3; color: #fff; padding: 12px 0; margin-top:4px; } #footlinks { float: right; margin-top: -3px; text-align: right; } #footer img { float: left; margin: 0 10px 0 0; } #copyright, #debuginfo { font: 0.83em/1.5em Verdana, Arial, Helvetica, sans-serif; } #copyright strong, #copyright em { font-weight: bold; } #debuginfo { color: #999; } #footer a { color:#FFF; } .scrolltop { cursor: pointer; } /*footer*/
webapp/templates/darkred/dnt.css
/* Offical Style for Discuz!NT(R) URL: http://NT.discuz.net (C) 2001-2008 Comsenz Inc. */ /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Common Style ~~~~ */ * { word-wrap: break-word; } body { background:#392622 url(images/bodyback.jpg) repeat-x 0 0; text-align:center; } body, td, input, textarea, select, button { color: #855F4E; font: 12px/1.6em Helvetica, Arial, sans-serif; } body, ul, dl, dd, p, h1, h2, h3, h4, h5, h6, form, fieldset { margin: 0; padding: 0; } h1, h2, h3, h4, h5, h6 { font-size: 1em; } #menu li, .popupmenu_popup li, #announcement li, .portalbox li, .tabs li, .postmessage fieldset li, .side li, .formbox li, .notice li,.pannellist li,.helpcontent li,.user li,#forumtemplate li,.navfocuslist li,.avatarlist li { list-style: none; } a { color: #640000; text-decoration: none; } a:hover { color: #855F4E; text-decoration: underline; } a img { border: none; } em, cite, strong, th { font-style: normal; font-weight: normal; } table { empty-cells: show; border-collapse: collapse; } /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Layout & Block Style ~~~~ */ .wrap { width: 98%; text-align: left; margin: 0 auto; } #header { width: 100%; overflow: hidden; padding:6px 0; } #header h2 { float: left; padding: 5px 0; } #menu { height: 36px; background: #FFF url(images/menu_bg.gif) repeat-x; } #menu ul { float: right; padding: 6px 10px 0; } #menu li { float: left; } #menu li a { float: left; text-decoration: none; color: #FFF; padding: 4px 8px 3px; background: url(images/menu_itemline.gif) no-repeat 0 6px; } #menu li.hover { background-color: #aaa; border: 1px solid; border-color: #aaa #aaa #aaa; } #menu li.hover a { padding: 3px 7px; background-image: none; } #menu cite a { font-weight: bold; background-image: none; } .frameswitch { float: left; height: 36px; line-height: 36px; padding-left: 10px; color:#FFF; } #menu a.frameoff, #menu a.frameon { float: left; border: none; padding-left: 16px; margin-left: 0; background: no-repeat 0 50%; } #menu a.frameoff { background-image: url(images/frame_off.gif); } #menu a.frameon { background-image: url(images/frame_on.gif); } #foruminfo { width: 100%; overflow: hidden; margin: 10px 0; color: #FFF; } #userinfo, #foruminfo #nav { float: left; } #forumstats, #headsearch { float: right; text-align: right; } #foruminfo p { margin: 0; line-height:24px; } #foruminfo a{ color: #FFF; } #foruminfo em { color: #FFF; } #foruminfo cite { font-weight: bold; } #foruminfo strong a { font-weight: bold; color: #FFF; } #forumstats form{ float:right; } #forumstats p { clear:both; } #nav { margin: 10px 5px; } #foruminfo #nav { margin: 0; } #userinfo #nav { float: none; padding: 0; } #nav a { font-weight: bold; color: #FFF; } #announcement { border-top: 1px dashed #E8E8E8; line-height: 36px; height: 36px; overflow: hidden; } #announcement div { border: 1px solid #FFF; padding: 0 10px; line-height: 35px !important; height: 36px; overflow-y: hidden;} #announcement li { float: left; margin-right: 20px; padding-left: 10px; background: url(images/arrow_right.gif) no-repeat 0 50%; white-space: nowrap; } #announcement li em { font-size: 0.83em; margin-left: 5px; color: #666; } .portalbox { width: 100%; background: #EDE0BE; margin-bottom: 10px; border-collapse: separate; } .portalbox td { padding: 10px; vertical-align: top; } .portalbox h3 { margin: 0 0 5px; font-size: 1em; white-space: nowrap; } .portalbox strong { font-weight: bold; margin-top: 4px;} .portalbox em { color: #999; } .portalbox em a { color: #999; } #supeitems li { float: left; height: 1.6em; overflow: hidden; } #hottags a { white-space: nowrap; margin-right: 0.5em; } #hottags h3 { clear:both; } #hottags li,#categories li {float:left; margin-right:0.5em; white-space:nowrap;} .headactions { float: right; line-height: 1em; padding: 10px 10px 0 0; } .headactions img { vertical-align: middle; cursor: pointer; padding: 0 5px; } .mainbox .headactions { color: #FFF; } .mainbox .headactions a, .mainbox .headactions span, .mainbox .headactions strong {padding-right: 10px; margin-right: 8px; color: #FFF; } .mainbox .headactions strong { font-weight: bold; background-image: url(images/arrow_left.gif); } .pages_btns { clear: both; width: 100%; padding: 0 0 8px; overflow: hidden; } .postbtn, .replybtn { float: right; } .postbtn { margin-left: 10px; cursor: pointer; } .pages_btns .pages em { line-height: 26px; } .pages, .threadflow { float: left; border:1px solid #7D6647; background:#EDE0BE; height: 24px; line-height: 26px; color: #999; overflow: hidden; } .pages a, .pages strong, .pages em, .pages kbd, #multipage .pages em,.pages span { float: left; padding: 0 8px; line-height:26px; } .pages a:hover { background-color: #FFF; } .pages span { font-weight: bold; color: #FFF; background: url(images/page_bg.gif) repeat-x 0 0; } .pages a.prev, .pages a.next { line-height: 24px; font-family: Verdana, Arial, Helvetica, sans-serif; } .pages a.next { padding: 0 15px; } .pages kbd { margin: 0; } * html .pages kbd { padding: 1px 8px; } .pages kbd input { border: 1px solid #E0E0DC; margin-top: 3px !important; * > margin-top: 1px !important; margin: 1px 4px 0 3px; padding: 0 2px; height: 17px; } .pages kbd>input { margin-bottom: 2px; } .threadflow { margin-right: 5px; padding: 0 5px; } .tabs { padding-bottom: 26px; margin-bottom: 15px; background: #EDE0BE; border-top: 1px solid #FFF; border-bottom: 1px solid #D4D4B3; } .tabs li { float: left; line-height: 27px; border-right: 1px solid #000; padding: 0 10px; } .tabs li.current { background: #392622; height: 27px; font-weight: bold; text-align:center; } .tabs li a { float: left; } #headfilter { border: solid #E0E0DC; border-width: 1px 1px 0; } #headfilter .tabs { border-bottom-color: #FFF; margin-bottom: 0; } #footfilter { padding: 10px; he\ight: 44px; height: 24px; line-height: 24px; background: #EDE0BE; border-color: #E8E8E8; font-family: Simsun, "Times New Roman"; } #footfilter form { float: right; } #footfilter * { vertical-align: middle; } .legend { border: 1px solid #7D6647; background: #EDE0BE; padding: 10px; margin: 10px auto; width: 500px; text-align: center; line-height: 35px; } .legend label { padding: 0 20px; } .legend img { vertical-align: middle; margin-right: 10px; } .avatarlist { overflow: hidden; padding: 5px 0; } * html .avatarlist { height: 1%; } .avatarlist dl { float: left; width: 70px; border: 1px solid #E8E8E8; padding: 5px; margin-right: 5px; text-align: center; } .avatarlist dt { width: 70px; height: 70px; } .avatarlist dl img { width: 64px; height: 64px; } .avatarlist dd { height: 22px; line-height: 22px; overflow: hidden; } .taglist { width: 100%; padding: 10px 0; overflow: hidden; } .taglist li { float: left; display: inline; width: 10em; height: 24px; overflow: hidden; margin: 0 10px; } .taglist li em { font-size: 10px; color: #999; } .attriblist * { color: #000; } .attriblist dt { float: left; margin-right: 10px; } .attriblist .name { font-weight: bold; } #forumlinks {} #forumlinks td { padding: 5px 5px 5px 55px; background: url(images/forumlink.gif) no-repeat 18px 50%; color: #999; } #forumlinks .forumlink_logo { float: right; } #online {} #online h4 { font-weight: normal; color: #666; } #online h4 strong { font-weight: bold; } .onlineusernumber { line-height:28px; } #online dl { padding: 5px 5px 5px 55px; } #onlinelist { background: url(images/online.gif) no-repeat 10px 10px; border-top: 1px solid #BEA052; } #online dt { padding: 5px; } #online dt img { margin-bottom: -3px; } #online dd { border-top: 1px solid #BEA052; } #bdayslist { padding: 10px 0 10px 55px; border-top: 1px solid #E8E8E8; background: url(images/bdays_cake.gif) no-repeat 10px 5px; } .userlist { overflow: hidden; padding: 5px 5px 0; } * html .userlist { height: 1%; } .userlist li { float: left; width:128px; height: 20px; overflow: hidden; } .userlist li img { vertical-align: middle; } #onlinelist .userlist li { height: auto; margin:4px auto ;} #recommendlist { } #recommendlist li { float: left; white-space: nowrap; width: 24.9%; overflow: hidden; text-indent: 12px; background: url(images/arrow_right.gif) no-repeat 2px 7px; } #recommendlist.rules li { width: 49%; } .recommendrules { padding: 0px;} #seccode { cursor: pointer; } .autosave { behavior: url(#default#userdata); } #menu a.notabs { background: none; } .headactions a.notabs { background: none; margin-right: 0px; padding-right: 0px; } .absmiddle { vertical-align: middle; } .mainbox ins { display: block; text-align: center; text-decoration: none; margin-bottom: 1px; background: #F7F7F7; border-bottom: 1px solid #E8E8E8; line-height: 26px; } ins.logininfo { background: #E8F3FD; padding: 2px 5px; line-height: 22px; color: #666; text-align: left; border: none; } /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Box Style ~~~~ */ /*Main Box*/ .mainbox { border:1px solid #7D6647; background:#EDE0BE; margin-bottom: 10px; } .mainbox h1, .mainbox h3, .mainbox h6 { line-height: 31px; padding-left: 1em; background: #AABE04 url(images/header_bg.jpg); background-repeat: repeat-x; background-position: 0 0; color: #FFF; } .mainbox h1 a, .mainbox h3 a { color: #FFF; } .mainbox table { width: 100%; } .forumlist table, .threadlist table { border-collapse: separate; } .mainbox thead th, .mainbox thead td,.divoption { padding: 2px 5px; line-height: 22px; color: #FFF; } .mainbox thead.category tr { background: #F5F8FD url(images/title_bg.jpg); } .mainbox thead.separation th, .mainbox thead.separation td { border-top: 1px solid #E0E0DC; } .mainbox tbody th, .mainbox tbody td { border-top: 1px solid #BEA052; padding: 5px; } .mainbox tbody cite, .mainbox tbody em { line-height: 1.3em; } .forumlist tbody strong, .threadlist tbody strong , .formbox tbody strong { color: #090; } /*Tabel Footer: Button Operation*/ .footoperation { background: #EFE0BE; padding: 5px; border-top: 1px solid #BEA052; } .threadlist .footoperation { padding-left: 61px; } .footoperation * { vertical-align: middle; } .footoperation label { margin-right: 1em; cursor: pointer; } .footoperation button,.sbutton{ line-height: 1em; display: inline; width: 0; overflow: visible; padding: 3px 5px 2px; border: 1px solid #E0E0DC; background: #FFF; cursor: pointer; margin-left: 2px; } .footoperation>button { width: auto; } /*Forum & Thread List*/ .forumlist tbody th, .forumlist tbody td, .threadlist tbody th, .threadlist tbody td { color: #666; padding: 1px 5px; } .forumlist tbody th { height: 40px; } .forumlist th, .threadlist th { text-align: left; } .forumlist th { padding-left: 55px !important; } .forumlist tbody th { background-image: url(images/forum.gif); background-repeat: no-repeat; background-position: 13px 50%; } .forumlist tbody th.new { background-image: url(images/forum_new.gif); } .moderators a strong { font-weight: bold; c } .threadlist th label { float: right; } .threadpages { background: url(images/multipage.gif) no-repeat 10px 100%; font-size: 11px; margin-left: 5px; white-space: nowrap; } .threadpages a { padding-left: 8px; } .threadpages a:hover { text-decoration: underline; } .threadlist th a.new { color: #090; text-transform: uppercase; font-size: 9px; white-space: nowrap; } .threadlist th input { float: left; margin-right: 5px; } .threadlist th em, .threadlist th em a { color: #999; } .threadlist th img.icon { float: left; margin-left: -22px; } .threadlist th img.attach, .threadlist th img.icon { margin-bottom: -3px; } .threadlist .target { float: left; display: block; width: 20px; height: 20px; margin-left: -28px; text-indent: -9999px; overflow: hidden; } * html .threadlist .target { margin-left: -14px; margin-right: 5px; } .forumlist tbody tr:hover th, .forumlist tbody tr:hover td, .threadlist tbody tr:hover th, .threadlist tbody tr:hover td { background-color: #F0E4C4; } .forumlist td.lastpost { width: 260px; } .forumlist td.lastpost p { overflow:hidden; height:20px; white-space:nowrap; width: 260px; text-overflow:ellipsis; } .threadlist td.folder { text-align: center; width: 30px; } .threadlist td.icon { text-align: center; padding: 3px 0; width: 16px; } .threadlist td.author { width: 120px; } .threadlist td.lastpost { text-align: right; width: 120px; padding-right: 15px; } .threadlist td.lastpost cite a { color: #999; } .forumlist cite, .threadlist cite { display: block; } .threadlist td.author em, .threadlist td.lastpost em { font-size: 0.83em; } label.highlight { width: 40px; margin-right: 30px; } label.highlight, label.highlight input { float: left; } label.highlight em { float: right; width: 16px; height:16px; } .quickmanage label.highlight { width: 40px; margin: 3px 18px 3px 0; } .optionbar {overflow:hidden; float: left; margin-right: 0.5em; border: 1px solid #E0E0DC; background: #2F589C url(images/header_bg.jpg); background-repeat: repeat-x; background-position: 0 100%; height: 12px; } .optionbar div { float: left; border: 1px solid #FFF; height: 10px; overflow: hidden; } .topicstats td { vertical-align:top; } .topicstats li{ overflow:hidden; height:28px; line-height:28px; border-bottom:1px solid #d1e1ef; padding:0 4px; } .topicstats li em { float:right; line-height:28px; padding-right:8px; } .pagediv div { padding-left:80px; } .pagediv .openlist { border-top:1px solid #E0E0DC; } /*Viewthread*/ .viewthread { padding-bottom: 1px; } .viewthread table, #pmprompt table, #forumlinks, #pmlist, #specialpost, #newpost, #editpost { table-layout: fixed; } .threadline { border-top:1px solid #E0E0DC; border-bottom:1px solid #E0E0DC; background:#fefefe; height:5px; line-height:5px;} .viewthread td.postcontent, .viewthread td.postauthor { vertical-align: top; padding: 0 1px; border: none; overflow: hidden; } .postinfo { color: #666; border-bottom: 1px solid #E0E0DC; padding: 0 5px; line-height: 26px; height: 26px; overflow: hidden; text-align:right; } .postinfo strong, .postinfo em { float: left; line-height: 26px !important; cursor: pointer; padding: 0 3px; } .postinfo strong { margin-left: 5px; color: #009900; font-weight: bold; } * html .postinfo strong { margin-top: -2px; } .postinfo strong sup { font-weight: normal; margin-left: 1px; color: #009900; } .postinfo a { color: #666; padding:0 4px; } .postinfo label { cursor: pointer; } .postmessage { padding: 10px; overflow-x: hidden; } .postmessage *, .pmmessage *, .register * { line-height: normal; } .defaultpost { height: auto !important; height:120px; min-height:120px !important; } .postmessage h2 {font-size: 1.17em; margin-bottom: 0.5em; } .t_msgfont, .t_msgfont td { font-size: 13px; line-height: 1.6em; } .t_smallfont, .t_smallfont td { font-size: 12px; line-height: 1.6em; } .t_bigfont, .t_bigfont td { font-size: 14.7px; line-height: 1.6em; } .t_msgfont *, .t_smallfont *, .t_bigfont * { line-height: normal; } .t_msgfont a, .t_smallfont a, .t_bigfont a { color: #009900; } .postratings { float: right; } .signatures { overflow: hidden; height: expression(signature(this)); max-height: 8em; margin: 10px; padding-top: 20px; color: #009900; line-height: 1.6em; } .signatures * { line-height: normal; } .signatures strong { font-weight: bold; } .postactions { border-top: 1px solid #E8E8E8; background: #F7F7F7; line-height: 30px; height: 30px; padding: 0 10px; } .postactions strong { cursor: pointer; } .postactions input { float: right; margin: 5px 0 0 5px; } .postactions p { float: right; } .postactions p a { padding:0 4px; } .postmessage .box { border-width: 0; margin: 5px 0; } .postmessage .typeoption { width: 500px; } .typeoption tbody th { width: 100px; } .typeoption tbody td, .typeoption tbody th { border-top: 0px; border-bottom: 1px dashed #E8E8E8; } .postmessage .box tbody th, .postmessage .box tbody td { border-top-color: #E8E8E8; } .postmessage fieldset { font-size: 12px; width: 500px; padding: 10px; border: 1px solid #E8E8E8; margin-top: 2em; } .postmessage fieldset li { color: #CCC; line-height: 1.6em; } .postmessage fieldset li cite, .postmessage fieldset li em { margin: auto 10px; } .t_msgfont li, .t_bigfont li, .t_smallfont li, .faq li { margin-left: 2em; } dl.t_attachlist { border-bottom:1px dashed #DDD; margin-top:10px; padding:10px; } .postattach { width: 500px; margin: 10px 0; } .postattachlist { width: 500px; font-size: 12px; margin-top: 2em; } .t_attach { border: 1px solid #E8E8E8; background: #FFF; font-size: 12px; padding: 5px; } .t_table { border-bottom: 1px solid #CCC; border-right: 1px solid #CCC; empty-cells: show; border-collapse: collapse;} .t_table td { padding: 4px; border-left: 1px solid #CCC; border-top: 1px solid #CCC; empty-cells: show; border-collapse: collapse; } .viewthread tbody .t_table td { border-top: 1px solid #CCC; } .navnextpage { background:#F7F7F7; height:26px; line-height:26px; } .navnextpage a { padding:0 3px; font-weight:bold; } .ntprint { z-index: 1000; position: absolute; cursor:pointer; right:200px; } .lastediter,.ratelog {margin-left:30px; margin-top:10px;} .ratelog img {vertical-align:middle;} .ratelog td { border-top:none; border-bottom:1px solid #CCC; } .postertext { padding-left: 30px; padding-top: 15px; padding-bottom: 5px; background:url(images/sigline.gif) no-repeat 0 0; margin: 5px 10px; } /* Discuz! Code */ /*CODE & Quote*/ .msgheader { margin: 0 2em; border-left: 1px solid #E0E0DC; border-right: 1px solid #E0E0DC; border-top: 5px solid #E0E0DC; background: #F0F0E8; padding: 4px; } .msgborder { margin: 0 2em; padding: 10px; border-left: 1px solid #E0E0DC; border-right: 1px solid #E0E0DC; border-bottom: 1px solid #E0E0DC; word-break: break-all; background-color: #F0F0E8; } p.posttags { margin: 2em 0em 0.5em 0em; } p.posttags a, .footoperation span.posttags a { color: #F00; font-weight: bold; } p.posttags .postkeywords a, { color: #009900; } .postmessage strong { font-weight: bold; } .postmessage em { color:#009900; } .postmessage span.t_tag { cursor: pointer; border-bottom: 1px solid #F00; white-space: nowrap; } .mainbox td.postauthor { width: 180px; background: #F0F0E8; padding: 5px; overflow: hidden; } .postauthor cite { font-weight: bold; display: block; border-bottom: 1px solid #E0E0DC; height: 21px; overflow: hidden; margin-bottom: 5px; } .postauthor cite label a { float: right; padding: 3px; } div.avatar { margin: 5px; text-align: center; width: 160px; overflow: hidden } .postauthor dt { float: left; margin-right: 0.5em; color: #009900; } .postauthor dd, .postauthor dt { height: 1.6em; line-height: 1.6em; } .postauthor dd { overflow: hidden; } .postauthor p { margin: 0 10px; } .postauthor p.customstatus { color: #009900; } .postauthor p em, .postauthor dt em { color: #009900; } .postauthor ul { margin: 5px 10px; line-height: 1.6em; overflow: hidden; } .postauthor li { text-indent: 22px; width: 49.5%; height: 1.6em; overflow: hidden; float: left; background-position: 0 50%; background-repeat: no-repeat; } .postauthor li.pm { background-image: url(images/buddy_sendpm.gif); } .postauthor li.albumpic { background-image: url(images/album.gif); } .postauthor li.space { background-image: url(images/space.gif); } .postauthor li.online { background-image: url(images/user_online.gif); color: #009900; } .postauthor li.offline { background-image: url(images/user_offline.gif); } .postauthor li.magic { background-image: images/magic.gif);} ul.otherinfo { margin:0; } ul.otherinfo li { float:none; width:100%; text-indent: 12px; } ul.tools img { float:left; } .postauthor dl.profile, .postauthor div.bio { margin: 5px 10px; padding-top: 5px; } /*Common Box*/ .box { background: #EDE0BE; border: 1px solid #7D6647; padding: 1px; margin-bottom: 10px; } .box h4 { line-height: 30px; padding: 0 10px; } .box table { width: 100%; } .box td { border-top: 1px solid #BEA052; } .box .box li { list-style: none;} .postattachlist h4, .tradethumblist h4, .specialthread_4 h4, .typeoption h4 { border-top: 1px solid #E8E8E8; } #pmprompt { border-color: #EDEDCE; } #pmprompt h4 { background: #FFFFF2; border-top: none; } #pmprompt th, #pmprompt td { border-top-color: #EDEDCE; } #posteditor_bottom .box thead th,#posteditor_bottom .box thead td { color:#000; } /*List*/ td.user { width: 120px; } td.nums { width: 80px; text-align: center; } td.time { width: 120px; } td.selector { width: 20px; text-align: center; } .dropmenu { padding-right: 15px !important; background-image: url(images/arrow_down.gif) !important; background-position: 100% 50% !important; background-repeat: no-repeat !important; cursor: pointer; } .popupmenu_popup { text-align: left; line-height: 1.4em; padding: 10px; overflow: hidden; border: 1px solid #E0E0DC; background: #FFF url("images/portalbox_bg.gif"); background-repeat: repeat-x; background-position: 0 1px; } .headermenu_popup { width: 170px; } .headermenu_popup li { float: left; width: 7em; line-height: 24px; height: 24px; overflow: hidden; border-bottom: 1px solid #E8E8E8; } .newspecialmenu { width: 100px; } .newspecialmenu li { background: url(images/folder_s.gif) no-repeat 3px 50%; float: left; } .newspecialmenu li.poll { background-image: url(images/pollsmall.gif); } .newspecialmenu li.trade { background-image: url(images/tradesmall.gif); } .newspecialmenu li.reward { background-image: url(images/rewardsmall.gif); } .newspecialmenu li.activity { background-image: url(images/activitysmall.gif); } .newspecialmenu li.debate { background-image: url(images/debatesmall.gif); } .newspecialmenu li.video { background-image: url(images/videosmall.gif); } .newspecialmenu a { float: left; width: 75px; border-bottom: 1px solid #E8E8E8; padding: 5px 0 5px 25px; } .newspecialmenu a:hover { text-decoration: none; border-bottom-color: #E0E0DC; } #styleswitcher_menu { overflow: visible; } #styleswitcher_menu, #styleswitcher_menu ul li, #styleswitcher_menu ul li.current a, #styleswitcher_menu ul li a { white-space: nowrap; } #styleswitcher_menu ul li.current { font-weight: bold; } #styleswitcher_menu ul li.current a { color: #666; } #styleswitcher_menu li.current { font-weight: bold; } #forumjump_menu, #visited_forums_menu { padding: 10px 30px 10px 20px; } #forumlist_menu dl, #forumjump_menu dl { padding: 5px 0; } #forumlist_menu dt a, #forumjump_menu dt a { font-weight: bold; color: #666; } #forumlist_menu dd, #forumjump_menu dd { padding-left: 1em; } #forumlist_menu li.sub, #forumjump_menu li.sub { padding-left: 1em; } #forumlist_menu li.current a, #forumjump_menu li.current a, #visited_forums_menu li.current a { font-weight: bold; } #forumlist_menu li a, #forumjump_menu li a, #visited_forums_menu li a { font-weight: normal; } .userinfopanel { border: 1px solid #E8E8E8; width: 140px; background: #FFF url("images/portalbox_bg.gif"); background-repeat: repeat-x; background-position: 0 0; padding: 10px; } .imicons { text-align: center; border: 1px solid #E8E8E8; background: #FFF; padding: 4px 1px; } .imicons img { vertical-align: middle; } .userinfopanel p { text-align: left; margin: 0; } .userinfopanel dl { border-bottom: 1px solid #E8E8E8; margin: 5px 0; padding: 5px 0; } .postauthor cite a { float: left; padding: 5px; border: solid #E8F3FD; border-width: 1px 1px 0; height: 10px; overflow: hidden; } .postauthor cite a.hover { border-color: #E8E8E8; background-color: #FFF; } .popupmenu_popup .postauthor { width: 180px; } /*QuickSearch*/ #search { padding-left: 78px; } #searchbar { border: 1px solid #ccc; height: 24px; margin-right: 0px; line-height: 22px; width: 222px; background:#FFF;} #searchbar dt,#searchbar dd { float: left; } #searchbar .s2{ background: #FFF url(images/dot-down.gif) no-repeat right center; width: 80px; color: #000; text-align: center; line-height: 24px; } #searchbar .text{ width: 116px; text-indent: 2px; border: 0; padding: 0.2em 0; } *html #searchbar .text { width: 108px; } *+html #searchbar .text { width: 108px; } #searchbar .textinput {border-right:1px solid #CCC;} #searchbar .s3{ width: 24px; height: 24px; background: #fff url(images/button-search.gif) no-repeat 100% 0; border: 0; } .searchmenu { background-color: #F5FAFE; padding: 4px; width: 75px; text-align: center; border: 1px solid #ccc; border-top: 0;} #divsearchoption { color:#000; } /*QuickSearch*/ /*Message*/ .message { margin: 3em 10em 5em !important; } .message h1 { line-height: 26px; padding-left: 1em; margin-bottom: 1em; } .message p { margin: 1.5em 1em; } /*Message*/ .avatarlist { overflow: hidden; padding: 5px 0; } * html .avatarlist { height: 1%; } .avatarlist dl { float: left; width: 54px; border: 1px solid #E8E8E8; padding: 5px; margin-right: 5px; text-align: center; } .avatarlist dt { width: 54px; height: 54px; } .avatarlist dl img { width: 48px; height: 48px; } .avatarlist dd { height: 22px; line-height: 22px; overflow: hidden; } .specialthread .postcontent h1 { background: #FFF; font-size: 1.5em; color: #000; padding: 10px 5px; border-bottom: 1px solid #E8E8E8; font-weight:normal; } .specialthread .postcontent label { float: right; display: inline; margin: 12px 12px 0; border: 1px solid #E8E8E8; padding: 3px 5px; background: #E8F3FD no-repeat 3px 50%; } .specialthread .postcontent label strong { color: #090; } .specialthread .postauthor { width: 180px; } .specialpostcontainer { padding: 0 1px; } .specialpost { border-bottom: 4px solid #F5FAFE; text-align: right; } .specialpost .postinfo h2 { float: left; font-weight: normal; padding-left: 8px; font-size: 0.83em; } .specialpost .postinfo h2 em {} .specialpost .postinfo { border-color: #E8F3FD; height: 1.8em; } .specialpost strong { border: none; } .specialpost .postinfo h2 a { font-size: 12px; } .specialpost .postmessage { text-align: left; min-height: 30px; border-bottom: 1px solid #E8E8E8; } * html .specialpost .postmessage { height: 30px; overflow: visible; } p.imicons { margin: 8px auto; width: 160px;} /*controlpannel*/ .controlpannel{ clear: both; margin-bottom: 8px; } /*\*/ * html .controlpannel { /**/ height: 1%; }*>.controlpannel { overflow: hidden; } .pannelmenu{ float: left; width: 10%; position: relative; margin-top: 18px; } .pannelmenu a{ display: block; margin-bottom: 5px; text-decoration: none; height: 30px; line-height: 30px; color: #FFF; text-align: left; } .pannelmenu a.current { position: relative; left: 1px; color: #000; cursor: default; border: 1px solid #7D6647; background: #EDE0BE; border-right: 0px; padding: 1px; padding-right: 0px; height: 26px; line-height: 26px; } *+html .pannelmenu a.current { left: 0; } *html .pannelmenu a.current { left: 0; } .pannelmenu a:hover { text-decoration: none; color: #FFF; } .current span{ display: block; padding-left: 15px; height: 23px; line-height: 23px; } .pannelcontent{ float: left; width: 90%; } .pannelcontent .pcontent{ border: 1px solid #7D6647; background: #EDE0BE; padding: 1px; } .pcontent .panneldetail{ padding: 20px 4px 10px 4px; background: #EDE0BE url(images/content-bg.jpg) repeat-x left top; } .panneltabs{ padding-bottom: 28px; } .panneltabs a { float: left; padding: 0 5px; margin-right: 5px; text-decoration: none; height: 28px; line-height: 28px; font-weight: bold; } .panneltabs a:hover { color: #666; background: #fff; } .panneltabs a.current,.panneltabs a.current:hover { color: #000; cursor: default; border-bottom: 1px solid #FFF; background:#FFFFFF url(images/currentbg.jpg) no-repeat right top; height: 27px; line-height: 27px; text-align: center; padding: 0 5px; margin-right: 5px; } .panneltabs a.addbutton { color: #090; cursor: default; } .jsmenu{ text-align: left; padding: 0 2px; background: url(images/jsmenu.gif) no-repeat 100% 50%; padding-right:15px; } .mallmenu { width: 200px; } .mallmenu a { float:left; display:block; width:46%; text-align:center; } .pannelbody { clear: both; background: #FFF; padding: 20px; border-bottom: 4px solid #F0F0E8; border-right: 2px solid #F0F0E8; min-height: 450px; } /*\*/ * html .pannelbody { /**/ height: 1%; }*>.pannelbody { overflow: hidden; } .pannellist { position:relative ;height: auto!important; height: 480px; margin-bottom: 8px; } .messagetable{ background: #FFF; } .messagetableon{ background: #F7F7F0; } .pannellist td,.pannellist th{ text-align: center; border-bottom: 1px dashed #ccc; line-height: 220%; } .pannellist .forumpages td { border-bottom: 1px solid #BDDAF7; } .pannellist a:link,.pannellist a:visited{ text-decoration:none;} .pannellist a:hover,.pannellist a:active{ color:#333; text-decoration:none;} .mallcount td { text-align:left; } .pannelmessage{ height: 40px; line-height: 40px; } .pannelleft{ float: left; width: 48%; padding-left: 10px; line-height: 36px; } .pannelleft a { padding: 0 5px; } .pannelright{ float: right; width: 48%; text-align: right; } .pannelbody label{ float: left; width: 120px; font-weight: bold; line-height: 220%; } .labelshort{ width: 60px; } .pannelbody .labellong{ width: 150px; } .labellong2{ width: 160px; line-height: 400%; } .pannelbody br{ clear: left; } .pannelbody ul{ margin-bottom: 10px; line-height: 200%; } .notetitle{ font-weight: bold; color: #F90; background: #FFF url(images/message_1.gif) no-repeat left center; padding-left: 25px; } .notetime{ color: #999; font-weight: lighter; padding-left: 25px; } .notecontent{ overflow: hidden; word-wrap: break-word; word-break: break-all; background: #F5FAFE; font-size: 14px; color: #666; padding: 10px; } .paychange{ color: #666; padding: 2px 10px 2px 0; } .paychange em{ font-weight: bold; color: #F90; } .notecontent a{ font-weight: bold; padding: 0 3px; } .pannelbody li{ color: #333; } .usermessagesname{ color: #090; font-weight: bold; } .compartline{ margin: 0 auto; height: 15px; line-height: 15px; border-top: 1px dashed #CCC; } .usermessagephoto{ padding: 10px; } /*\*/ * html .usermessagephoto { /**/ height: 1%; }*>.usermessagephoto { overflow: hidden; } .photoimg { border-bottom: 1px dashed #ccc; padding:10px; } /*\*/ * html .photoimg { /**/ height: 1%; }*>.photoimg { overflow: hidden; } .photoimg img{ float: left; margin:10px; margin-top:0; } .photoimgediter{ float: right; width: 85%; } ul#photo{ margin: 0 auto; padding: 6px; white-space: nowrap; } /*\*/ * html ul#photo { /**/ height: 1%; }*>ul#photo { overflow: hidden; } #photo li{ float: left; width: 20%; height: auto!important; height: 240px; min-height: 240px; overflow: hidden; } .photodetail h4{ font-weight:bold;} .pictureimg {text-align:center;} .photoediter { margin-top: 15px; } /*\*/ * html .photoediter{ /**/ height: 1%; }*>.photoediter{ overflow: hidden; } .photoediter .photoshow { float: left; width: 20%; text-align: center; } .photoediter .photomessage { float: right; width: 68%; } .avatarlist { background: #fff; padding: 10px; border: 1px solid #999; border-bottom: 0; width: 450px; height: 400px; overflow-y:auto;overflow-x:hidden;} .avatarlist li{ float: left; width: 24%; margin: 0 1px; height: 120px; } .avatarbutton { display: block; position: absoulte; left: 0px; bottom: 0px; text-align: center; border: 1px solid #999; border-top: 0; padding: 5px 0; } .avatarbackground { background-color: #F5F5F5; } #BOX_overlay label { width: 40px; } #avatarbox label {float:none;cursor: pointer;} #avatarbox input[type=radio]{ margin-bottom: -3px;} .newmessage { padding:10px 0; text-align:right; } a.submitbutton { padding:7px 22px; text-align:center; background:url(images/userbutton3.gif) no-repeat left center; text-decoration:none; } .submitbutton strong{color:#000;} a.otherbutton { padding:7px 16px; text-align:center; background:url(images/userbutton2.gif) no-repeat left center; text-decoration:none; color:#333;} a.selectall { padding:7px 10px; text-align:center; background:url(images/usersubmit.gif) no-repeat left center; text-decoration:none; color:#333;} #neworeditalbum form { text-align:left;} /*controlpannel*/ /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Form Style ~~~~ */ fieldset { border: none; } input, textarea { border-width: 1px; background: #FFF; border-color: #DDD; padding: 2px; } input[type="radio"], input[type="checkbox"] { border: none; background: none; } .radio, .checkbox{ border: none; background: none; } .invitecodelist input { border: none; font-family: "Courier New", Courier, monospace; font-size: 13px; cursor: pointer; } button { border: 1px solid; border-color: #E8E8E8 #999 #999 #E8E8E8; background: #F0F0E8; height: 2em; line-height: 2em; cursor: pointer; } #postsubmit, button.submit { margin-right: 1em; background:url(images/buttonbg.gif) no-repeat 0 0; color: #FFF; width:77px; height:27px; font-weight:bold; border:0;} button.insmsg { margin: 1em 0; border: 1px solid #EDEDCE; background: #FFFFF2; color: #090; } .wrap .regbox .register td{text-align:center;} .formbox th { width: 180px; text-align: left; } .formbox th, .formbox td { padding: 5px; } .formbox th, .formbox td { border-bottom: 1px solid #BEA052; } .formbox label { cursor: pointer; } .lighttxt, .formbox *.tips { color: #999; } .formbox th ul { padding: 5px 0; } #threadtypes table td, #threadtypes table th { border-top: 1px solid #E8E8E8; border-bottom: 0;} .mainbox #ColorPicker tbody td { border:none; } .hintinfo { background:#FDFFF2 url(images/hint.gif) no-repeat 7px 3px; border:1px dotted #DBDDD3; padding:2px 2px 2px 25px; margin:15px 0;} /*Login Form*/ #loginform * { vertical-align: middle; } #loginform button { line-height: 21px; height: 21px; padding: 0 4px; margin-left: 3px; } /*QuickPost*/ #quickpost { overflow: hidden; padding-bottom: 0; } * html #quickpost { height: 1%; overflow: visible; } #quickpost h5 { margin: 0.5em 1em; } .postoptions, .postform, .smilies { float: left; } .postoptions { width: 16%; } .smilies { width:25%;} .postoptions p { margin: 2px 0.7em; } .postform { width: 58%; padding-bottom: 10px; } .postform p label { vertical-align: top; font-weight: bold; } .postform h5 input { width: 60%; } .postform p, .postform div { margin: 0 1em; } .postform h4 * { vertical-align: middle; } .postform h4 input { width: 60%; } .postform textarea { width: 90%; height: 120px; } .postform .btns { margin-top: 0.5em; line-height: 30px; color: #999; margin-right:30px; } .postform .btns button { vertical-align: middle; } .postform button { border: none; background: transparent; color: #FFF; padding: 0; cursor: pointer; } .postform #postsubmit { float: left; display: inline; margin-left: 2.3em; } .btns em { color: #999; } #adlinkbtn,#closebtn,.buybutton { float:right; display:block; width:55px; height:22px; line-height:22px; border-left:1px solid #DDD; border-top:1px solid #DDD; border-right:1px solid #6E6E6E; border-bottom:1px solid #6E6E6E; text-align:center; margin-left:10px; margin-top:4px; color:#000; text-decoration:none; } .buybutton { float:left; margin-left:0; margin-right:10px; } .formcode img { vertical-align:middle;} /*Smiles start*/ .smilies td { border:none; } .smiliepanel { border-bottom: 1px solid #E0E0DC; padding-bottom: 24px; } .scrollbar { float: left; overflow: hidden; width: 190px; height: 25px; } .scrollbar table { width: auto;} .mainbox .smilies tbody td,.mainbox .editorsmiles tbody td { padding:0; border:none; } .scrollbar td div,.lian { cursor: pointer; padding: 0 4px; border: 1px solid #E0E0DC; margin-right: 5px; text-decoration: none; height: 23px; line-height: 23px; background: #F7F7F0; color: #666; width:60px; text-align:center; } .scrollbar .lian { font-weight: bold; border-bottom: 1px solid #FFF; background: #FFF !important; white-space: nowrap; } .navcontrol { width:240px;} #scrlcontrol { float: right; text-align: right; padding-top: 4px; } .autosave{ color:#333; word-break: break-all; word-wrap:break-word; width:98%; height:118px; behavior: url(#default#userdata);} .smiles{ background: #FFF; margin-left: 2px; color: #FFF; font-weight: bold; padding: 3px; } #showsmilie{ overflow:hidden; background: #fff; border: 1px solid #E0E0DC; border-top: 0; overflow-y: auto; height: 102px; width:240px;} #showsmilie td { padding:5px; } #showsmilie p {text-algin:center;} .p_bar{ clear: both; margin-top: 10px; margin-left: 1px; min-height: 24px; height: 24px; line-height: 20px; } .p_bar a{ float: left; display: block; width: 20px; height: 20px; margin-right: 4px; text-align: center; } a.p_curpage{ border: 1px solid #E0E0DC; font-weight: bold; background: #FFF; } .editorsmiles { margin:10px 0; } .editorsmiles .scrollbar{ width:130px; } .editorsmiles #showsmilie { width:179px; height:130px; } /*Smiles end*/ /*Ajax Form*/ .ajaxform {} .ajaxform th, .ajaxform td { border-bottom: 1px solid #E8E8E8; padding: 5px; } .ajaxform thead th { font-weight: bold; } .btns th, .btns td { border: none !important; } #ajaxwaitid { position: absolute; display: none; z-index: 100; width: 100px; height: 1.6em; top: 0px; right: 0px; line-height: 1.6em; overflow: hidden; background: #dd0000; color: #ffffff;} .postform .special, #postform .special { font-weight: bold; } .postform #message { max-width:640px; height:125px;} #newpost em { color: #999 } /*debate*/ .talkbox { margin:10px 25px; margin-top:0; } /*\*/ * html .talkbox { /**/ height: 1%; }*>.talkbox { overflow: hidden; } .specialtitle {overflow:hidden; margin-bottom: 10px; } .squaretitle,.sidetitle { overflow:hidden; float:left; width:48%; padding:10px 0; text-align:center; font-weight:bold; font-size:13px; background: #FFF url("images/portalbox_bg.gif") repeat-x 0 0; border:1px solid #E8E8E8; } .sidetitle { float:right; } .balance { clear:both; margin-top:10px; position:relative; border:1px solid #D4D4B3; font-weight:bold; color:#000; font-size:14px; background:#F7F7F7;} .balance span.scalevalue1 { position:absolute; top:5px; left:6px; } .balance span.scalevalue { position:absolute; top:5px; right:6px; } .balance em { padding-left:6px; font-weight:bold; } .balance b { color:#ffcc00; font-size:18px;} .squareboll { padding:6px 0; height:16px; background:#F0F0E8; } *html .squareboll { margin-top:-1px; } .talkinner { clear:both; } #positivepostform,#negativepostform,#positivepostform2, #negativepostform2{ background:#99c8db; padding:10px; margin:4px; } #negativepostform,#negativepostform2 { background:#ff8388; } #positivepostform,.buttoncontrol,#negativepostform { margin: 10px 0;} .buttoncontrol { text-align:center; } .buttoncontrol button,.submitbutton { background:#77b6d0; } .oppositionbox .buttoncontrol button,.oppositionbox .submitbutton { background:#ff5a60;} .talkinner table { text-align:left; } .squarebox,.oppositionbox { float:left; width:48%; position:relative; } .oppositionbox { float:right; } .talkinner h2 { margin:10px 0; padding:6px 0; } .square { margin-bottom:10px; background:#F0F0E8; } .oppositionbox .square { background:#ff5a60;} /*\*/ * html .talkbox .square { /**/ height: 1%; }*>.talkbox .square { overflow: hidden; } .debatemessage { overflow:hidden; width:98%; background:#F0F0E8; padding:4px; } .oppositionbox .debatemessage { background:#F7F7F7; } .debatemessage .msgheader { background:none; border:none; border-bottom:1px dashed #EEE; } .debatemessage .msgborder { background:none; border:none; padding:4px;} .supportbox { width:90px; text-align:center; vertical-align:top; } .supportbox p{ width:60px; height:90px; margin:12px auto; } .supportbox span,.comment span { display:block; } .supportbox span.talknum,.comment span.talknum { line-height:40px; font-size:40px; color:#ffcc00;} span.cliktalk { line-height:20px; height:20px; } .supportbox span.cliktalk a,.comment span.cliktalk a,.othertalk a { border:1px solid #DDD; padding:2px 4px; text-decoration:none; background:#DDD; color:#000; } .comment { padding:6px 12px; vertical-align:top; } .talkinner h3{ padding:6px 0; font-weight:normal; color:#000; } .talkinner h3 span { float:right; padding-right:6px; } .box .talkinner tbody td { border:none; } .talkinner .othertalk { text-align:right; padding:4px 0; } .debatepages { margin-bottom:8px;} .debatepages a,.debatepages span{ border:1px solid #CCC; padding:2px 4px; margin-bottom:2px; margin-right:2px; background:#77b6d0; color:#000; text-decoration:none; } .debatepages span { background:#FFF; font-weight:bold; } .oppositionbox .debatepages a { background:#ff5a60;} /*end debate*/ /*shop*/ .imageviewer { float:left; width:35%; text-align:center; } /*\*/ * html .imageviewer { /**/ height: 1%; }*>.imageviewer { overflow: hidden; } .imageviewer ul { margin:10px;} .imageviewer li { list-style:none; line-height:25px;} .itemsummary { float:left; width:350px; margin:10px; margin-left:80px; } /*\*/ * html .itemsummary { /**/ height: 1%; }*>.itemsummary { overflow: hidden; } #priceinfo em {color:#FF5500; font-family:Verdana; font-size:24px; font-style:normal;} .itemsummary li {border-bottom:1px dashed #DDDDDD; height:24px; line-height:24px; list-style:none; margin-top:2px;} .itemsummary li span {color:#000; display:block; float:left; width:80px;} .buttonbuynow { height:39px; margin:20px auto 5px; position:relative; width:168px;} .buttonbuynow a {background:transparent url(images/button_buynow.gif) no-repeat scroll 0 0; height:39px; left:0pt; position:absolute; text-decoration:none; text-indent:-9999px; top:0pt; width:168px;} #otherinfobox li { display:block; float:left; width:350px;} #otherinfobox .amount, #otherinfobox .viewtimes, #otherinfobox .neworold,#otherinfobox .location { width:158px; } ul.goodsinfo { margin:10px 30px; } ul.goodsinfo span {padding-right:10px; font-weight:bold; color:#000;} .othergoods {border:1px solid #DDD; margin:10px;} /*\*/ * html .othergoods { /**/ height: 1%; }*>.othergoods { overflow: hidden; } .othergoods h3 {background:transparent url(images/othergoodsbg.gif) repeat-x 0pt 1px; height:28px; line-height:28px; padding:7px 8px; color:#000;} .othergoods li { float:left; width:16%; text-align:center;} .othergoods li em {color:#FF5500; display:block; font-weight:bold; margin:8px 0pt;} .openshop {padding: 5px; background: #F1F1F1; clear: both; text-align: center;} .authormessage { font-weight:bold; color:#000; font-size:13px; border-bottom:1px dashed #CCC; line-height:30px;} .authorname { color:#00486D; line-height:25px;} .moregoods { text-align:center; margin:5px 0;} #othermessage,#pricelist,#messagebox { clear:both; background:url(images/otherinfobg.gif) repeat-x 0 0; } /*\*/ * html #messagebox { /**/ height: 1%; }*>#messagebox { overflow: hidden; } #othermessage h3,#pricelist h3,#messagebox h3 { height:25px; border-bottom:1px solid #DDD; line-height:25px; padding-left:25px; color:#000; background:none; } #othermessage ul { margin:25px;overflow:hidden; } #othermessage li { float:left; width:48%; list-style:none;} #othermessage li span { margin-right:5px; font-weight:bold;} .alipaywarningmsg {background:#FFFFED url(images/alipay_logo_small2.gif) no-repeat scroll 5px 8px; border:1px solid #DDCF8F; margin:10px 20px 0pt; padding:5px 0pt 5px 80px;} #summaryinfo{ margin:1em auto 0pt; width:96%; } /*\*/ * html #summaryinfo { /**/ height: 1%; }*>#summaryinfo { overflow: hidden; } #summaryinfo li {float:left; height:33px; line-height:33px; list-style-type:none; margin-right:2em;} #summaryinfo p {background-color:#EEF8FE; border:1px dashed #69C9FC; float:right; line-height:1.5em; margin:0pt; padding:5px 5px 2px; text-align:left; width:40%;} #summaryinfo em {color:#FF5500; font-family:verdana; font-weight:bold;} .salerlist { clear:both; margin:1em auto; width:96%; text-align:center; border-bottom:1px solid #000; } /*\*/ * html .salerlist { /**/ height: 1%; }*>.salerlist { overflow: hidden; } .salerlist th{ border-bottom:2px solid #333; font-weight:bold; color:#000;} #messagebox dl {margin:3pt auto; overflow:hidden; text-align:left; width:96%;} #messagebox dt { border-top:1px dashed #DDDDDD; color:#FF6500; margin:3px 0pt 0pt; position:relative;} #messagebox dd { color:#333;line-height:1.5em; margin:8px 0pt 0pt; } .creditbox h2 { overflow:hidden; border-bottom:1px solid #E8E8E8; height:26px; line-height:26px; padding-left:10px; } .listpage {clear:both; width:97%; padding: 3px; margin: 3px; text-align: right;} .listpage a {border: 1px solid #D1E1EF; padding: 2px 5px; margin: 2px; color: #000099; text-decoration: none} .listpage a:hover {border: #000099 1px solid; } .listpage a:active {border: #000099 1px solid; color: #000; } .listpage span.current {border: #000099 1px solid; padding:2px 5px; font-weight: bold; margin: 2px; color: #000; background: #E8F3FD;} .listpage span.disabled {border: #eee 1px solid; padding: 2px 5px; margin: 2px; color: #ddd; } /*\*/ * html .tradeinfo { /**/ height: 1%; }*>.tradeinfo { overflow: hidden; } .tradeinfo h1 {background:#E8F3FD; border-bottom:1px solid #E8E8E8; color:#000000; font-size:1.5em; margin-bottom:1em; padding:10px 5px;} .tradeinfo h2 {background:#E8F3FD; border-bottom:1px solid #E8E8E8; color:#999; padding:3px 5px; font-weight:normal; } .navformcommend,.navtopiccommend{ text-align: left; border-bottom: 1px solid #E0E0DC; color: #666; line-height: 24px; background-image: url(images/portalbox_bg.gif); padding-left: 15px; font-weight: bold; } .shoppicture { width:100px; } #tradepost th,#tradepost th { width:150px; } .shopsearch { position:relative; height:35px; border-bottom:1px solid #E8E8E8; margin-bottom:20px; } .shopsearch .mysearch { float:left; } .shopsearch strong { position:absolute; top:9px; right:10px; border:1px solid #E8E8E8; padding:3px 5px; border-bottom:1px solid #FFF; background:#FFF; font-weight:bold; } /*end shop*/ /*goodscategorylist*/ #categoryselector {clear:both; background:#FFF; height:279px; width:740px;} #categoryselector ul { float:left; border:1px solid #CCC; height:277px; margin:0pt 2px 0pt 0pt; overflow:auto; padding:0pt; width:186px;} #categoryselector ul.blank {background-color:#F6F6F6;} #categoryselector li {border:1px solid #FFF;color:#444;cursor:pointer;height:20px;line-height:20px;list-style-type:none;margin:0pt 1px ! important;padding:0pt;text-indent:3px;width:156px !important;} #categoryselector li.isfather {background: url(images/category_arrow.gif) no-repeat 99% 50%;} #categoryselector li.selected {background-color:#CAFFC0;border:1px solid #0A9800;color:#006623;} #categoryselector #categorylevel0 li {width:186px !important;} #categoryselector #categorylevel3 {width:166px;} /*goodscategorylist*/ /*userinfo*/ .usermessage li a{ font-weight:bold; color:#0D7DBF; text-decoration:underline; } .userspace,.userphoto,.usermail,.userpm,.userban { width:100%; background:url(images/dotspace.gif) no-repeat 0 50%; padding-left:25px; line-height:30px;} .userphoto { background:url(images/dotphoto.gif) no-repeat 0 50%;} .usermail { background:url(images/email.gif) no-repeat 0 50%;} .userpm { background:url(images/draftbox.gif) no-repeat 0 50%;} .userban { background:url(images/page_link.gif) no-repeat 0 50%; } .usertitle { width:120px; } .navname { font-weight:bold; font-size:14px; color:#09C; } .userlink a { text-decoration:underline; color:#0D7DBF; font-weight:bold;} /*userinfo*/ /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Advertisments ~~~~ */ #ad_headerbanner { float: right; margin-top: 4px; } .ad_text { border: 1px solid #E0E0DC; margin-bottom: 10px; padding: 6px; background: #FFF url(images/portalbox_bg.gif); background-repeat: repeat-x; } .ad_text table { width: 100%; border-collapse: collapse; } .ad_text td { background-repeat: repeat-x; background-position: 0 0; padding: 2px 10px; } .ad_textlink1 { float: left; white-space: nowrap; } .ad_textlink2 { margin: 10px; } .ad_textlink1,.ad_textlink2 { padding-left: 25px; background: url(images/ad_icon.gif) no-repeat 0 50%; } .ad_pip { clear: right; float: right; display: inline; margin: 10px 10px 10px; } .ad_topicrelated { clear: both; float: right; display: inline; margin: 0 10px 10px; padding: 10px 10px 10px 30px; border: 1px solid #78A73D; background: #CAEEC0; } .ad_column { text-align: center; margin-bottom: 10px; } .ad_footerbanner { text-align: center; clear: both; margin:5px; } /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ User useravata ~~~~ */ .avataonline { float: left; height: 30px; line-height: 30px; padding-left: 28px; background: url(images/avataronline.gif) no-repeat 10px 40%; color:#FFF; } .avataonline a { color:#FFF; } #viewpro_menu { margin: 10px auto auto -30px; text-align: center; } #viewpro_menu img { height:48px; width: 48px; margin: 2px auto; } #viewpro_menu li { text-align: left; } .userinfolist { float: left; } li.popuser { text-indent: 20px; padding: 4px; background: url(images/usericon.gif) no-repeat 0 50%; } li.poplink { text-indent: 20px; padding: 4px; background: url(images/homelink.gif) no-repeat 0 50%; color: #999; } /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Search Result ~~~~ */ .searchtab,.statstab {border-bottom: 1px solid #E0E0DC; padding-bottom: 27px; padding-left: 5px; margin-bottom:10px;} .searchtab a,.statstab a { float: left; padding: 0 8px; font-weight: bold; border: 1px solid #E0E0DC; margin-right: 4px; text-decoration: none; height: 26px; line-height: 26px; background: #F7F7F0; color: #666;} .searchtab a.currenttab,.statstab a.currenttab { color: #FFF !important; cursor: default; border-bottom: 1px solid #392622; background: #392622 !important; } .searchtab a:hover,.statstab a:hover { color: #666; background: transparent; } /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Show Template ~~~~ */ /*\*/ * html ul#forumtemplate{ /**/ height: 1%; }*>ul#forumtemplate{ overflow: hidden; } ul#forumtemplate li{ float: left; width: 45%; text-align: center; padding: 10px; height: 260px; } ul#forumtemplate img{ margin: 1px; border: 1px solid #ccc; } .templatebutton { padding:10px; text-align:center; } /*frame start*/ #frameback{ height: 26px !important; height: 27px; border-bottom: 1px solid #FFF; background-color: #DEEFFA; line-height: 26px; } #frameback strong{ padding-left: 35px; border-left: 1px solid #F5FAFD; background: url(images/back.gif) no-repeat 25%; } #frameback em{ padding-left: 30px; background: url(images/back2.gif) no-repeat 13%; margin-left: 10px; } .framemenu{clear:both; margin-left:8px; text-align:left;} .framemenu img{vertical-align:middle;} .framemenu li span{ color: #000; } .framemenu strong{ font-weight: normal; color: #09C; font-family: Verdana, Arial, Helvetica, sans-serif; } .framemenu span{ color: #09C; } .framemenuLine{ width: 200px; margin: 0 auto; background: url(images/space.gif) repeat-x left center; } #newpmcount{ color: #09C; font-family: Verdana, Arial, Helvetica, sans-serif; } .forumdropmenu{ background:#DEEFFA; padding: 2px; text-align: left; border-left: 1px solid #D7E3F2; border-right: 1px solid #E6EEF7; border-bottom: 1px solid #E6EEF7; } .framehead{ clear: both; line-height: 22px; } .frameheadleft{ float: left; text-align: left; width: 49%; } .frameheadright{ float: right; text-align: right; width: 49%; } .framehead p{ height: 20px; line-height: 20px; } #forumfocus{ clear: both; margin-bottom: 8px; } /*\*/ * html #forumfocus{ /**/ height: 1%; }*>#forumfocus{ overflow: hidden; } .focuslistleft{ float: left; width: 48%; } .focuslistright{ float: right; width: 48%; } .navfocuslist li{ text-align: left; line-height: 24px; border-top: 1px solid #D1E1EF; color: #036; margin-bottom: 1px; } .navfocuslist li img{ padding: 2px; } .framelistselect{ clear: both; background-color: #F5FAFE; line-height: 28px; border-top: 1px solid #E6EEF7; color: #09C; height: 30px; } .listspace{padding-left:26px;} /*frame end*/ /*help*/ .helpmenu strong{ font-weight:bold; } .helpcontent h2 {background: #F7F7F0; font-size:14px; color:#333; padding:5px 0; padding-left:15px; } .helpcontent ul{margin:15px;} .mainbox .helpcontent tbody td,.mainbox .helpcontent tbody th { border:none; padding:0px; } .helpsubtitle,.infotitle { font-weight:bold; } /*help*/ /*footer*/ #ad_footerbanner { padding-bottom:10px; text-align:center;} #footer { border-top: 1px solid #D4D4B3; color: #fff; padding: 12px 0; margin-top:4px; } #footlinks { float: right; margin-top: -3px; text-align: right; } #footer img { float: left; margin: 0 10px 0 0; } #copyright, #debuginfo { font: 0.83em/1.5em Verdana, Arial, Helvetica, sans-serif; } #copyright strong, #copyright em { font-weight: bold; } #debuginfo { color: #999; } #footer a { color:#FFF; } .scrolltop { cursor: pointer; } /*footer*/
0.376623
0.098382
body { background-color: #2d1e3c; } h1 { font-family: 'Didact Gothic', sans-serif; font-weight: normal; color: #f32672; text-align: center; font-size: 3em; margin: 0; margin-top: 20px; } h2 { font-family: 'Didact Gothic', sans-serif; font-weight: normal; color: white; text-align: center; font-size: 1.5em; margin: 0; margin-top: 20px; } h3 { font-family: 'Didact Gothic', sans-serif; font-weight: normal; color: white; text-align: center; font-size: 1em; margin: 0; display: none; margin-bottom: 15px; } h6 { font-family: 'Source Sans Pro'; font-weight: 300; color: white; text-align: center; font-size: 1.2em; margin: 0; margin-top: 20px; } button { border: none; } button:focus { outline: none; } .sleep-btn { font-family: 'Didact Gothic', sans-serif; background-color: #f32672; color: white; padding: 0.8em; border-radius: 10px; cursor: pointer; } #canvas { display: flex; flex-direction: column; flex-wrap: wrap; } #lower { margin-top: 20px; display: flex; flex-direction: row; justify-content: space-around; flex-wrap: wrap; } #now { text-align: center; margin: 0; width: auto; padding: 0; background: rgba(81, 51, 108, 0.5); margin: 1%; padding: 1%; transition-property: all; transition-timing-function: ease-in-out; transition-duration: 0.2s; height: 100%; padding-left: 3%; padding-right: 3%; margin-right: 2%; margin-right: 2%; margin-bottom: 2%; } #later { text-align: center; margin: 0; width: auto; padding: 0; background: rgba(81, 51, 108, 0.5); margin: 1%; padding: 1%; transition-property: all; transition-timing-function: ease-in-out; transition-duration: 0.2s; height: 100%; padding-left: 3%; padding-right: 3%; margin-right: 2%; margin-right: 2%; margin-bottom: 2%; } #heading { text-align: center; margin: 0; width: 100%; padding: 0; } #sleepnow, #sleeplater { margin-top: 20px; margin-bottom: 20px; } #timewake { color: white; font-family: 'Source Sans Pro'; font-weight: 300; } #times1, #times2 { display: none; flex-direction: row; align-items: center; justify-content: center; flex-wrap: wrap; } .time { margin: 5px; color: white; border: 1px solid #f32672; font-family: 'Didact Gothic', sans-serif; padding: 10px; transition-property: all; transition-duration: 0.1s; transition-timing-function: ease-in; } .time:hover { color: #f32672; border: 1px solid #f32672; background-color: white; font-family: 'Didact Gothic', sans-serif; padding: 10px; cursor: pointer; } select { -webkit-appearance: none; -moz-appearance: none; appearance: none; background: transparent; border: none; color: white; margin-top: 20px; font-family: 'Source Sans Pro'; text-align: center; margin-right: 5px; border-bottom: 1px solid #f32672; border-radius: 0; padding: 10px; text-align-last: center; } select:hover { cursor: pointer; } select:focus { outline: none; border-bottom: 1px solid #f32672; border-radius: 0; } #foot { margin-top: 20px; font-size: 1em; position: fixed; bottom: 0; background: rgba(81, 51, 108, 0.5); width: 100%; padding: 10px; font-family: 'Didact Gothic', sans-serif; color: white; } #foot>span { float: right; margin-right: 20px; } #foot>span>a { text-decoration: none; color: white; } #foot>span>a:hover { color: #f32672; } #foot>a { text-decoration: none; color: white; } #foot>a:hover { color: #f32672; } .link { cursor: pointer; } #now:hover, #later:hover { -webkit-box-shadow: -2px 11px 57px 4px rgba(36, 36, 36, 1); -moz-box-shadow: -2px 11px 57px 4px rgba(36, 36, 36, 1); box-shadow: -2px 11px 57px 4px rgba(36, 36, 36, 1); transform: scale(1.01); }
css/style.css
body { background-color: #2d1e3c; } h1 { font-family: 'Didact Gothic', sans-serif; font-weight: normal; color: #f32672; text-align: center; font-size: 3em; margin: 0; margin-top: 20px; } h2 { font-family: 'Didact Gothic', sans-serif; font-weight: normal; color: white; text-align: center; font-size: 1.5em; margin: 0; margin-top: 20px; } h3 { font-family: 'Didact Gothic', sans-serif; font-weight: normal; color: white; text-align: center; font-size: 1em; margin: 0; display: none; margin-bottom: 15px; } h6 { font-family: 'Source Sans Pro'; font-weight: 300; color: white; text-align: center; font-size: 1.2em; margin: 0; margin-top: 20px; } button { border: none; } button:focus { outline: none; } .sleep-btn { font-family: 'Didact Gothic', sans-serif; background-color: #f32672; color: white; padding: 0.8em; border-radius: 10px; cursor: pointer; } #canvas { display: flex; flex-direction: column; flex-wrap: wrap; } #lower { margin-top: 20px; display: flex; flex-direction: row; justify-content: space-around; flex-wrap: wrap; } #now { text-align: center; margin: 0; width: auto; padding: 0; background: rgba(81, 51, 108, 0.5); margin: 1%; padding: 1%; transition-property: all; transition-timing-function: ease-in-out; transition-duration: 0.2s; height: 100%; padding-left: 3%; padding-right: 3%; margin-right: 2%; margin-right: 2%; margin-bottom: 2%; } #later { text-align: center; margin: 0; width: auto; padding: 0; background: rgba(81, 51, 108, 0.5); margin: 1%; padding: 1%; transition-property: all; transition-timing-function: ease-in-out; transition-duration: 0.2s; height: 100%; padding-left: 3%; padding-right: 3%; margin-right: 2%; margin-right: 2%; margin-bottom: 2%; } #heading { text-align: center; margin: 0; width: 100%; padding: 0; } #sleepnow, #sleeplater { margin-top: 20px; margin-bottom: 20px; } #timewake { color: white; font-family: 'Source Sans Pro'; font-weight: 300; } #times1, #times2 { display: none; flex-direction: row; align-items: center; justify-content: center; flex-wrap: wrap; } .time { margin: 5px; color: white; border: 1px solid #f32672; font-family: 'Didact Gothic', sans-serif; padding: 10px; transition-property: all; transition-duration: 0.1s; transition-timing-function: ease-in; } .time:hover { color: #f32672; border: 1px solid #f32672; background-color: white; font-family: 'Didact Gothic', sans-serif; padding: 10px; cursor: pointer; } select { -webkit-appearance: none; -moz-appearance: none; appearance: none; background: transparent; border: none; color: white; margin-top: 20px; font-family: 'Source Sans Pro'; text-align: center; margin-right: 5px; border-bottom: 1px solid #f32672; border-radius: 0; padding: 10px; text-align-last: center; } select:hover { cursor: pointer; } select:focus { outline: none; border-bottom: 1px solid #f32672; border-radius: 0; } #foot { margin-top: 20px; font-size: 1em; position: fixed; bottom: 0; background: rgba(81, 51, 108, 0.5); width: 100%; padding: 10px; font-family: 'Didact Gothic', sans-serif; color: white; } #foot>span { float: right; margin-right: 20px; } #foot>span>a { text-decoration: none; color: white; } #foot>span>a:hover { color: #f32672; } #foot>a { text-decoration: none; color: white; } #foot>a:hover { color: #f32672; } .link { cursor: pointer; } #now:hover, #later:hover { -webkit-box-shadow: -2px 11px 57px 4px rgba(36, 36, 36, 1); -moz-box-shadow: -2px 11px 57px 4px rgba(36, 36, 36, 1); box-shadow: -2px 11px 57px 4px rgba(36, 36, 36, 1); transform: scale(1.01); }
0.389663
0.095645
@font-face { font-family: 'acre-medium'; src: url('/static/main/fonts/acre_medium_macroman/acre-medium-webfont.woff2') format('woff2'), url('/static/main/fonts/acre_medium_macroman/acre-medium-webfont.woff') format('woff'); font-weight: normal; font-style: normal; } html{ background-color: #343a40; } body { background: url('/static/main/img/bg2-7.jpg') no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } *{ font-family: 'acre-medium', sans-serif; font-size: 1.05rem; color: #4f5153; } h1, h2, h3, h4, h5, h6{ font-family: 'acre-medium', sans-serif; text-align: center; } p>a{ color: #9a9da0; font-weight: bold; } img{ max-width: 100%; height: auto; margin-top: 1rem; margin-bottom: 1rem; } p{ text-align: justify; } .bg-white{ background: white; } .bg-white-textured{ background: url('/static/main/img/seamless.png') } /* forms -------------------------------------------------------------------- */ form{ display: block; width: 100%; margin: 0 auto; } select{ color: black; display: block; width: 100%; padding: 12px 20px; margin: 8px 0; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } input{ color: black; display: block; width: 100%; padding: 12px 20px; margin: 8px 0; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } textarea{ color: black; display: block; width: 100%; padding: 12px 20px; margin: 8px 0; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; height: 5rem; } label{ font-weight: bold; font-size: 120%; } input[type="submit"]{ color: black; } /*// Extra small devices (portrait phones, less than 576px)*/ /*// No media query since this is the default in Bootstrap*/ /*// Small devices (landscape phones, 576px and up)*/ @media (min-width: 576px) { } /*// Medium devices (tablets, 768px and up)*/ @media (min-width: 768px) { } /*// Large devices (desktops, 992px and up)*/ @media (min-width: 992px) { } /*// Extra large devices (large desktops, 1200px and up)*/ @media (min-width: 1200px) { } /*// Extra small devices (portrait phones, less than 576px)*/ @media (max-width: 575px) { } /*// Small devices (landscape phones, less than 768px)*/ @media (max-width: 767px) { } /*// Medium devices (tablets, less than 992px)*/ @media (max-width: 991px) { } /*// Large devices (desktops, less than 1200px)*/ @media (max-width: 1199px) { }
main/static/main/css/custom.css
@font-face { font-family: 'acre-medium'; src: url('/static/main/fonts/acre_medium_macroman/acre-medium-webfont.woff2') format('woff2'), url('/static/main/fonts/acre_medium_macroman/acre-medium-webfont.woff') format('woff'); font-weight: normal; font-style: normal; } html{ background-color: #343a40; } body { background: url('/static/main/img/bg2-7.jpg') no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } *{ font-family: 'acre-medium', sans-serif; font-size: 1.05rem; color: #4f5153; } h1, h2, h3, h4, h5, h6{ font-family: 'acre-medium', sans-serif; text-align: center; } p>a{ color: #9a9da0; font-weight: bold; } img{ max-width: 100%; height: auto; margin-top: 1rem; margin-bottom: 1rem; } p{ text-align: justify; } .bg-white{ background: white; } .bg-white-textured{ background: url('/static/main/img/seamless.png') } /* forms -------------------------------------------------------------------- */ form{ display: block; width: 100%; margin: 0 auto; } select{ color: black; display: block; width: 100%; padding: 12px 20px; margin: 8px 0; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } input{ color: black; display: block; width: 100%; padding: 12px 20px; margin: 8px 0; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } textarea{ color: black; display: block; width: 100%; padding: 12px 20px; margin: 8px 0; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; height: 5rem; } label{ font-weight: bold; font-size: 120%; } input[type="submit"]{ color: black; } /*// Extra small devices (portrait phones, less than 576px)*/ /*// No media query since this is the default in Bootstrap*/ /*// Small devices (landscape phones, 576px and up)*/ @media (min-width: 576px) { } /*// Medium devices (tablets, 768px and up)*/ @media (min-width: 768px) { } /*// Large devices (desktops, 992px and up)*/ @media (min-width: 992px) { } /*// Extra large devices (large desktops, 1200px and up)*/ @media (min-width: 1200px) { } /*// Extra small devices (portrait phones, less than 576px)*/ @media (max-width: 575px) { } /*// Small devices (landscape phones, less than 768px)*/ @media (max-width: 767px) { } /*// Medium devices (tablets, less than 992px)*/ @media (max-width: 991px) { } /*// Large devices (desktops, less than 1200px)*/ @media (max-width: 1199px) { }
0.164718
0.047802
@CHARSET "utf-8"; #banner-principal{ float:left; background-image:url("../images/headers/banner-5.png"); background-repeat:no-repeat; height:233px; width:100%; } #logo{ height:230px; float:left; background-image:url("../img/registro-logo.png"); width:241px; margin-top:47px; margin-left:100px; } #menu{ float: left; background-image:url("../img/fondo-menu.png"); width: 100%; height: 38px; margin-bottom: 20px; } #menu-ul{ margin-left:234px; float:left; padding: 0px; margin-top:0px; margin-bottom:5px; height:37px; } #seleccionitem{ padding:0px; } #seleccionitem li{ display:inline; color:#FFF; border-right:1px #FFF solid; } #seleccionitem li a{ font-family: Arial; font-size:10px; font-weight:bold; text-decoration: none; color:#FFF; padding-left:15px; padding-right:15px; padding-top:4px; padding-bottom:6px; } #seleccionitem li a:hover { color: #F15B41; background-color:#FFF; } #footers{ float: left; background-image:url("../img/fondo-menu.png"); width: 100%; height: 30px; margin-bottom: 20px; } .container{ height: 100%; margin-bottom: 100px; width: 100%; } /* Animated rotating icon */ .icon-spin { display: inline-block; -moz-animation: spin 2s infinite linear; -o-animation: spin 2s infinite linear; -webkit-animation: spin 2s infinite linear; animation: spin 2s infinite linear; } @-moz-keyframes spin { 0% { -moz-transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); } } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); } } @-o-keyframes spin { 0% { -o-transform: rotate(0deg); } 100% { -o-transform: rotate(359deg); } } @-ms-keyframes spin { 0% { -ms-transform: rotate(0deg); } 100% { -ms-transform: rotate(359deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } #target{ float: left; } #iconFormulario-step4 { height: 31px; width: 145px; background-color: #ef620a; -webkit-border-radius: 4px 0px 0px 4px; -moz-border-radius: 4px 0px 0px 4px; border-radius: 4px 0px 0px 4px; color: white; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 0px #cbc9c9; display: inline-block; padding-left: 5px; padding-top: 5px; float: left; } .inputtext { width: 320px; height: 24px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .inputselect { width: 331px; height: 36px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } #iconFormulario-step4-1 { height: 31px; width: 135px; background-color: #ef620a; -webkit-border-radius: 4px 4px 4px 4px; -moz-border-radius: 4px 4px 4px 4px; border-radius: 4px 4px 4px 0px; color: white; border: solid 0px #cbc9c9; display: inline-block; padding-left: 5px; padding-top: 5px; float: left; } .control-label-1{ height: 31px; width: 135px; background-color: #ef620a; -webkit-border-radius: 4px 4px 4px 4px; -moz-border-radius: 4px 4px 4px 4px; border-radius: 4px 4px 0px 0px; color: white; border: solid 0px #cbc9c9; display: inline-block; padding-left: 5px; padding-top: 5px; float: left; margin-bottom: 0; } .control-label-2{ height: 31px; width: 125px; background-color: #ef620a; -webkit-border-radius: 4px 0px 0px 4px; -moz-border-radius: 4px 0px 0px 4px; border-radius: 4px 0px 0px 4px; color: white; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 0px #cbc9c9; display: inline-block; padding-left: 5px; padding-top: 5px; float: left; } .ptm{ width: 390px; height: 150px; -webkit-border-radius: 0px 4px 4px 4px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 4px/0px 0px 4px 4px; -webkit-box-shadow: 1px 2px 0px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 0px rgba(0,0,0,.09); border-radius: 0px 4px 4px 4px/5px 5px 4px 4px; background-color: #fff; box-shadow: 1px 2px 0px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .ptm-popup{ width: 390px; height: 150px; -webkit-border-radius: 0px 4px 4px 4px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 4px/0px 0px 4px 4px; -webkit-box-shadow: 1px 2px 0px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 0px rgba(0,0,0,.09); border-radius: 0px 4px 4px 4px/5px 5px 4px 4px; background-color: #fff; box-shadow: 1px 2px 0px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .form-control-1{ width: 258px; height: 24px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; float: left; } .row-step4{ width: 66%; float:left; background-color: #282828; margin-left: 20%; } #title-box-header{ width: 915px; float:left; background-color: #282828; margin-bottom: 0px; } #title-box-header-navigation{ width: 915px; float:left; background-color: #282828; margin-bottom: 20px; height: 26px; } #title-box-type{ background-color: #282828; float: left; width: 204px; margin-right: 10px; } .head-title{ color: #999; font-size: 1.9em; font-weight: normal; height: 90px; line-height: 46px; text-indent: 34px; text-align: left; } .description-box-type{ color: #b8b8b8; font-size: 1.23em; line-height: 22px; min-height: 180px; overflow: hidden; padding: 0 37px; } .head-title strong { color: #f05a22; display: block; font-size: 1.56em; font-weight: normal; line-height: 31px; text-indent: 31px; } .head-title-navigation strong { color: #0C7E7F; display: block; font-size: 0.90em; font-weight: normal; line-height: 31px; text-indent: 31px; } #space{ height: 20px; float: left; width: 100%; background-color: #323232; } #description-box-type{ background-color: #282828; float: left; width: 500px; height: 60px; padding-left: 28px; padding-top: 28px; margin-bottom: 10px; margin-top: 10px; border-left: 2px solid #FFFFFF; color: #ffffff; } #part-1-form{ padding: 5px; background-color: #282828; width: 905px; float: left; } #principal-data{ width: 500px; float: left; } .form-group-1{ background-color: #282828; padding-bottom: 10px; } .form-group-step2{ background-color: #282828; padding-bottom: 10px; float: right; width: 100%; padding-left: 5px; } .form-group-step2-popup{ padding-top: 10px; float: left; width: 585px; padding-left: 5px; } #iconFormulario-step2 { height: 31px; width: 145px; background-color: #ef620a; -webkit-border-radius: 4px 0px 0px 4px; -moz-border-radius: 4px 0px 0px 4px; border-radius: 4px 0px 0px 4px; color: white; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 0px #cbc9c9; display: inline-block; padding-left: 5px; padding-top: 5px; float: left; } #iconFormulario-step2-popup { height: 31px; width: 145px; background-color: #ef620a; -webkit-border-radius: 4px 0px 0px 4px; -moz-border-radius: 4px 0px 0px 4px; border-radius: 4px 0px 0px 4px; color: white; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 0px #cbc9c9; display: inline-block; padding-left: 5px; padding-top: 5px; float: left; } .inputtext-step2 { width: 336px; height: 24px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .inputtextarea-step2 { width: 336px; height: 100px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .inputtextarea-step2-popup { width: 336px; height: 100px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .inputtextarea-step2-popup-1 { width: 336px; height: 50px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .inputtext-step2-popup { width: 390px; height: 24px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .box-content-button-step2{ background: #f15b40 none repeat scroll 0 0; border-radius: 3px; color: #fff; display: inline-block; font-size: 1em; font-weight: bold; margin: 7px; padding: 5px 15px; } .box-content-button-step2 .button{ background: #f15b40 none repeat scroll 0 0; border-radius: 3px; color: #fff; display: inline-block; font-size: 1em; font-weight: bold; margin: 7px; padding: -2px 15px; height: 9px; float: left; } .datagrid-step4{ float: left; padding-bottom: 10px; padding-top: 10px; width: 400px; } #secondary-data{ width: 400px; float: left; } .form-group-2{ background-color: #282828; padding-bottom: 10px; width: 400px; float: left; } #promocion{ border: 1px #fff solid; padding: 0px; color: #FFFFFF; background-color: #EF620A; width: 100px; height: 100px; text-align: center; margin-left: 30px; margin-bottom: 30px; float: left; border-radius: 3px; } #evento{ border: 1px #fff solid; padding: 0px; color: #FFFFFF; background-color: #EF620A; width: 100px; height: 100px; text-align: center; margin-left: 20px; margin-bottom: 30px; float: left; border-radius: 3px; } #itinerario{ border: 1px #fff solid; padding: 0px; color: #FFFFFF; background-color: #EF620A; width: 100px; height: 100px; text-align: center; margin-left: 20px; margin-bottom: 30px; float: left; border-radius: 3px; } .row-step41{ width: 100%; float:left; } .h1-agregar{ font-size: 43px; margin: 0; padding: 0 } .button-step4 { -moz-user-select: none; border: 0 none; cursor: pointer; display: inline-block; margin: 0 0 0 5px; outline: 0 none; padding: 0 10px 0 3px; text-decoration: none !important; vertical-align: middle; text-decoration:none; color: #FFFFFF; } #itinerario-detalle{ padding-left: 10px; width: 400px; float: left; } .add-registro{ font-size: 36px; color: #98BB2D; cursor: pointer } .remove-registro{ font-size: 20px; color: red; cursor: pointer } .tabla-itinerario-detalle{ width: 100%; } .servicio-usuario-detalle{ padding-left: 10px; width: 700px; float: left; border-bottom: 1px #FFFFFF solid; margin-left: 100px; margin-right: 100px; } .tabla-servicio-usuario-detalle{ width: 70%; margin: 0 auto; } .vinculo-servicio a{ color: #FFFFFF; text-decoration: none; } .servicio-usuario-detalle h2{ color: #F05A22; } .text-add-registro{ color: #FFFFFF; } .sessionName{ float: right; width: 250px; text-align: left; padding-top: 10px; padding-right: 10px; color: white; font-weight: bold; } .iconoInvitacion{ width: 155px; float: right; margin-left: 50%; margin-top: 46px; position: absolute; z-index: 3; }
public/css/masterPagesRegistro.css
@CHARSET "utf-8"; #banner-principal{ float:left; background-image:url("../images/headers/banner-5.png"); background-repeat:no-repeat; height:233px; width:100%; } #logo{ height:230px; float:left; background-image:url("../img/registro-logo.png"); width:241px; margin-top:47px; margin-left:100px; } #menu{ float: left; background-image:url("../img/fondo-menu.png"); width: 100%; height: 38px; margin-bottom: 20px; } #menu-ul{ margin-left:234px; float:left; padding: 0px; margin-top:0px; margin-bottom:5px; height:37px; } #seleccionitem{ padding:0px; } #seleccionitem li{ display:inline; color:#FFF; border-right:1px #FFF solid; } #seleccionitem li a{ font-family: Arial; font-size:10px; font-weight:bold; text-decoration: none; color:#FFF; padding-left:15px; padding-right:15px; padding-top:4px; padding-bottom:6px; } #seleccionitem li a:hover { color: #F15B41; background-color:#FFF; } #footers{ float: left; background-image:url("../img/fondo-menu.png"); width: 100%; height: 30px; margin-bottom: 20px; } .container{ height: 100%; margin-bottom: 100px; width: 100%; } /* Animated rotating icon */ .icon-spin { display: inline-block; -moz-animation: spin 2s infinite linear; -o-animation: spin 2s infinite linear; -webkit-animation: spin 2s infinite linear; animation: spin 2s infinite linear; } @-moz-keyframes spin { 0% { -moz-transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); } } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); } } @-o-keyframes spin { 0% { -o-transform: rotate(0deg); } 100% { -o-transform: rotate(359deg); } } @-ms-keyframes spin { 0% { -ms-transform: rotate(0deg); } 100% { -ms-transform: rotate(359deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } #target{ float: left; } #iconFormulario-step4 { height: 31px; width: 145px; background-color: #ef620a; -webkit-border-radius: 4px 0px 0px 4px; -moz-border-radius: 4px 0px 0px 4px; border-radius: 4px 0px 0px 4px; color: white; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 0px #cbc9c9; display: inline-block; padding-left: 5px; padding-top: 5px; float: left; } .inputtext { width: 320px; height: 24px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .inputselect { width: 331px; height: 36px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } #iconFormulario-step4-1 { height: 31px; width: 135px; background-color: #ef620a; -webkit-border-radius: 4px 4px 4px 4px; -moz-border-radius: 4px 4px 4px 4px; border-radius: 4px 4px 4px 0px; color: white; border: solid 0px #cbc9c9; display: inline-block; padding-left: 5px; padding-top: 5px; float: left; } .control-label-1{ height: 31px; width: 135px; background-color: #ef620a; -webkit-border-radius: 4px 4px 4px 4px; -moz-border-radius: 4px 4px 4px 4px; border-radius: 4px 4px 0px 0px; color: white; border: solid 0px #cbc9c9; display: inline-block; padding-left: 5px; padding-top: 5px; float: left; margin-bottom: 0; } .control-label-2{ height: 31px; width: 125px; background-color: #ef620a; -webkit-border-radius: 4px 0px 0px 4px; -moz-border-radius: 4px 0px 0px 4px; border-radius: 4px 0px 0px 4px; color: white; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 0px #cbc9c9; display: inline-block; padding-left: 5px; padding-top: 5px; float: left; } .ptm{ width: 390px; height: 150px; -webkit-border-radius: 0px 4px 4px 4px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 4px/0px 0px 4px 4px; -webkit-box-shadow: 1px 2px 0px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 0px rgba(0,0,0,.09); border-radius: 0px 4px 4px 4px/5px 5px 4px 4px; background-color: #fff; box-shadow: 1px 2px 0px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .ptm-popup{ width: 390px; height: 150px; -webkit-border-radius: 0px 4px 4px 4px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 4px/0px 0px 4px 4px; -webkit-box-shadow: 1px 2px 0px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 0px rgba(0,0,0,.09); border-radius: 0px 4px 4px 4px/5px 5px 4px 4px; background-color: #fff; box-shadow: 1px 2px 0px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .form-control-1{ width: 258px; height: 24px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; float: left; } .row-step4{ width: 66%; float:left; background-color: #282828; margin-left: 20%; } #title-box-header{ width: 915px; float:left; background-color: #282828; margin-bottom: 0px; } #title-box-header-navigation{ width: 915px; float:left; background-color: #282828; margin-bottom: 20px; height: 26px; } #title-box-type{ background-color: #282828; float: left; width: 204px; margin-right: 10px; } .head-title{ color: #999; font-size: 1.9em; font-weight: normal; height: 90px; line-height: 46px; text-indent: 34px; text-align: left; } .description-box-type{ color: #b8b8b8; font-size: 1.23em; line-height: 22px; min-height: 180px; overflow: hidden; padding: 0 37px; } .head-title strong { color: #f05a22; display: block; font-size: 1.56em; font-weight: normal; line-height: 31px; text-indent: 31px; } .head-title-navigation strong { color: #0C7E7F; display: block; font-size: 0.90em; font-weight: normal; line-height: 31px; text-indent: 31px; } #space{ height: 20px; float: left; width: 100%; background-color: #323232; } #description-box-type{ background-color: #282828; float: left; width: 500px; height: 60px; padding-left: 28px; padding-top: 28px; margin-bottom: 10px; margin-top: 10px; border-left: 2px solid #FFFFFF; color: #ffffff; } #part-1-form{ padding: 5px; background-color: #282828; width: 905px; float: left; } #principal-data{ width: 500px; float: left; } .form-group-1{ background-color: #282828; padding-bottom: 10px; } .form-group-step2{ background-color: #282828; padding-bottom: 10px; float: right; width: 100%; padding-left: 5px; } .form-group-step2-popup{ padding-top: 10px; float: left; width: 585px; padding-left: 5px; } #iconFormulario-step2 { height: 31px; width: 145px; background-color: #ef620a; -webkit-border-radius: 4px 0px 0px 4px; -moz-border-radius: 4px 0px 0px 4px; border-radius: 4px 0px 0px 4px; color: white; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 0px #cbc9c9; display: inline-block; padding-left: 5px; padding-top: 5px; float: left; } #iconFormulario-step2-popup { height: 31px; width: 145px; background-color: #ef620a; -webkit-border-radius: 4px 0px 0px 4px; -moz-border-radius: 4px 0px 0px 4px; border-radius: 4px 0px 0px 4px; color: white; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 0px #cbc9c9; display: inline-block; padding-left: 5px; padding-top: 5px; float: left; } .inputtext-step2 { width: 336px; height: 24px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .inputtextarea-step2 { width: 336px; height: 100px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .inputtextarea-step2-popup { width: 336px; height: 100px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .inputtextarea-step2-popup-1 { width: 336px; height: 50px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .inputtext-step2-popup { width: 390px; height: 24px; -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; background-color: #fff; -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); box-shadow: 1px 2px 5px rgba(0,0,0,.09); border: solid 1px #cbc9c9; margin-left: 0px; margin-top: 0px; padding: 0 0 10px 10px; } .box-content-button-step2{ background: #f15b40 none repeat scroll 0 0; border-radius: 3px; color: #fff; display: inline-block; font-size: 1em; font-weight: bold; margin: 7px; padding: 5px 15px; } .box-content-button-step2 .button{ background: #f15b40 none repeat scroll 0 0; border-radius: 3px; color: #fff; display: inline-block; font-size: 1em; font-weight: bold; margin: 7px; padding: -2px 15px; height: 9px; float: left; } .datagrid-step4{ float: left; padding-bottom: 10px; padding-top: 10px; width: 400px; } #secondary-data{ width: 400px; float: left; } .form-group-2{ background-color: #282828; padding-bottom: 10px; width: 400px; float: left; } #promocion{ border: 1px #fff solid; padding: 0px; color: #FFFFFF; background-color: #EF620A; width: 100px; height: 100px; text-align: center; margin-left: 30px; margin-bottom: 30px; float: left; border-radius: 3px; } #evento{ border: 1px #fff solid; padding: 0px; color: #FFFFFF; background-color: #EF620A; width: 100px; height: 100px; text-align: center; margin-left: 20px; margin-bottom: 30px; float: left; border-radius: 3px; } #itinerario{ border: 1px #fff solid; padding: 0px; color: #FFFFFF; background-color: #EF620A; width: 100px; height: 100px; text-align: center; margin-left: 20px; margin-bottom: 30px; float: left; border-radius: 3px; } .row-step41{ width: 100%; float:left; } .h1-agregar{ font-size: 43px; margin: 0; padding: 0 } .button-step4 { -moz-user-select: none; border: 0 none; cursor: pointer; display: inline-block; margin: 0 0 0 5px; outline: 0 none; padding: 0 10px 0 3px; text-decoration: none !important; vertical-align: middle; text-decoration:none; color: #FFFFFF; } #itinerario-detalle{ padding-left: 10px; width: 400px; float: left; } .add-registro{ font-size: 36px; color: #98BB2D; cursor: pointer } .remove-registro{ font-size: 20px; color: red; cursor: pointer } .tabla-itinerario-detalle{ width: 100%; } .servicio-usuario-detalle{ padding-left: 10px; width: 700px; float: left; border-bottom: 1px #FFFFFF solid; margin-left: 100px; margin-right: 100px; } .tabla-servicio-usuario-detalle{ width: 70%; margin: 0 auto; } .vinculo-servicio a{ color: #FFFFFF; text-decoration: none; } .servicio-usuario-detalle h2{ color: #F05A22; } .text-add-registro{ color: #FFFFFF; } .sessionName{ float: right; width: 250px; text-align: left; padding-top: 10px; padding-right: 10px; color: white; font-weight: bold; } .iconoInvitacion{ width: 155px; float: right; margin-left: 50%; margin-top: 46px; position: absolute; z-index: 3; }
0.179999
0.091707
* { font-family: "NotoSansCJKtc", Times, serif; } button { outline: none; } main { color: #3f3a3a; } hr { border-color: #3f3a3a; } .product-container { width: 100vw; } /* product basics */ .product-basics img { width: 100%; } .basic-info { position: relative; padding: 17px 24px; } .basic-info #product-title { line-height: 24px; font-size: 20px; letter-spacing: 4px; } .basic-info #product-id { line-height: 19px; font-size: 16px; color: #bababa; margin-top: 10px; letter-spacing: 3.2px; } .basic-info #product-price { line-height: 24px; font-size: 20px; margin-top: 20px; margin-bottom: 10px; } /* purchase options */ .purchase-options label { font-size: 14px; letter-spacing: 2.8px; vertical-align: middle; line-height: 17px; width: 62px; } .purchase-options *:disabled { opacity: 0.2; cursor: not-allowed !important; } .purchase-options #colors { margin-top: 28px; display: flex; height: 36px; align-items: center; } .purchase-options #colors .color { background-color: blue; height: 100%; width: 36px; border: 6px solid white; margin-right: 15px; outline: solid 1px #bbbbbb28; } .color-selected { outline: solid 1px #979797 !important; } .purchase-options #sizes { margin-top: 30px; display: flex; height: 34px; align-items: center; } .purchase-options #sizes .size { font-size: 20px; width: 34px; height: 100%; margin-right: 20px; border-radius: 50%; background-color: #ececec; text-align: center; line-height: 34px; } .size-selected { background-color: black !important; color: white !important; } #quantity-label { display: none; } .quantity { display: flex; justify-content: space-between; align-items: center; height: 44px; border: 1px solid #979797; margin-top: 30px; padding: 0 30px; font-size: 20px; } .quantity .btn { border: none; background-color: transparent; font-size: 20px; font-weight: 700; padding: 1px 6px; } .quantity-number { color: #8b572a; } .add-to-cart { text-align: center; vertical-align: middle; width: 100%; height: 44px; border: none; margin-top: 10px; font-size: 16px; line-height: 30px; letter-spacing: 3.2px; background-color: black; color: #fff; } .purchase-options #colors .color:hover, .purchase-options #sizes .size:hover, .quantity .btn:hover, .add-to-cart:hover { cursor: pointer; } .basic-description { margin-top: 28px; } .basic-description * { font-size: 14px; line-height: 24px; } .basic-description .texture, .basic-description .wash { margin-top: 24px; } /* product details */ .detail { padding: 17px 24px; position: relative; width: 100vw; } .detail .title { color: #8b572a; line-height: 30px; letter-spacing: 3.2px; width: 150px; border: none; position: absolute; top: 0; background-color: white; } .detail hr { margin-bottom: 15px; } .story { margin-top: 26px; line-height: 24px; font-size: 14px; } .detail-images { padding-bottom: 49px; } .detail-images img { width: 100%; margin-top: 20px; } .add-to-cart-confirm { position: absolute; width: 94%; bottom: 28%; left: calc(50vw - 94% / 2); text-align: center; line-height: 50px; margin-top: 10px; color: #ffffff; background-color: #8b572aea; padding: 0 10px; border-radius: 5px; z-index: 5; display: none; } .show-confirmation { display: block; animation: fadeout 1.5s ease-in-out; } @keyframes fadeout { 0% { opacity: 0.5; } 20% { opacity: 1; } 40% { opacity: 1; } 60% { opacity: 1; } 80% { opacity: 0.5; } 100% { opacity: 0; } } /* ========= MEDIA QUERIES ========= */ @media screen and (min-width: 1024px) { .product-container { max-width: 960px; padding-top: 65px; margin: 0 auto; } .product-basics { display: flex; } .product-basics img { width: 560px; } .product-basics .basic-info { /* width: 400px; */ padding: 0; margin-left: 42px; } .basic-info #product-title { font-size: 32px; letter-spacing: 6.4px; line-height: 38px; } .basic-info #product-id { font-size: 20px; letter-spacing: 4px; line-height: 24px; margin-top: 16px; } .basic-info #product-price { font-size: 30px; line-height: 36px; margin-top: 40px; margin-bottom: 20px; } .purchase-options label { font-size: 20px; letter-spacing: 4px; line-height: 24px; width: 93px; } .quantity-container { margin-top: 26px; display: flex; height: 44px; align-items: center; } #quantity-label { display: unset; } .quantity-container .quantity { margin: 0; padding: 0 10px; width: auto; flex-grow: 1; } .add-to-cart { margin-top: 29px; } .add-to-cart-confirm { position: fixed; max-width: 960px; height: 50px; top: 135px; left: calc(50vw - 960px / 2); font-size: 20px; font-weight: bold; } .basic-description { margin-top: 40px; } .basic-description * { font-size: 20px; line-height: 30px; } .basic-description .texture, .basic-description .wash { margin-top: 30px; } .detail { padding: 0; margin-top: 67.3px; position: relative; width: 100%; } .detail .title { font-size: 20px; letter-spacing: 4px; top: -15px; } .detail .story { font-size: 20px; line-height: 30px; margin-top: 40px; } .detail-images img { margin-top: 30px; } }
students/laurajhwu/css/product.css
* { font-family: "NotoSansCJKtc", Times, serif; } button { outline: none; } main { color: #3f3a3a; } hr { border-color: #3f3a3a; } .product-container { width: 100vw; } /* product basics */ .product-basics img { width: 100%; } .basic-info { position: relative; padding: 17px 24px; } .basic-info #product-title { line-height: 24px; font-size: 20px; letter-spacing: 4px; } .basic-info #product-id { line-height: 19px; font-size: 16px; color: #bababa; margin-top: 10px; letter-spacing: 3.2px; } .basic-info #product-price { line-height: 24px; font-size: 20px; margin-top: 20px; margin-bottom: 10px; } /* purchase options */ .purchase-options label { font-size: 14px; letter-spacing: 2.8px; vertical-align: middle; line-height: 17px; width: 62px; } .purchase-options *:disabled { opacity: 0.2; cursor: not-allowed !important; } .purchase-options #colors { margin-top: 28px; display: flex; height: 36px; align-items: center; } .purchase-options #colors .color { background-color: blue; height: 100%; width: 36px; border: 6px solid white; margin-right: 15px; outline: solid 1px #bbbbbb28; } .color-selected { outline: solid 1px #979797 !important; } .purchase-options #sizes { margin-top: 30px; display: flex; height: 34px; align-items: center; } .purchase-options #sizes .size { font-size: 20px; width: 34px; height: 100%; margin-right: 20px; border-radius: 50%; background-color: #ececec; text-align: center; line-height: 34px; } .size-selected { background-color: black !important; color: white !important; } #quantity-label { display: none; } .quantity { display: flex; justify-content: space-between; align-items: center; height: 44px; border: 1px solid #979797; margin-top: 30px; padding: 0 30px; font-size: 20px; } .quantity .btn { border: none; background-color: transparent; font-size: 20px; font-weight: 700; padding: 1px 6px; } .quantity-number { color: #8b572a; } .add-to-cart { text-align: center; vertical-align: middle; width: 100%; height: 44px; border: none; margin-top: 10px; font-size: 16px; line-height: 30px; letter-spacing: 3.2px; background-color: black; color: #fff; } .purchase-options #colors .color:hover, .purchase-options #sizes .size:hover, .quantity .btn:hover, .add-to-cart:hover { cursor: pointer; } .basic-description { margin-top: 28px; } .basic-description * { font-size: 14px; line-height: 24px; } .basic-description .texture, .basic-description .wash { margin-top: 24px; } /* product details */ .detail { padding: 17px 24px; position: relative; width: 100vw; } .detail .title { color: #8b572a; line-height: 30px; letter-spacing: 3.2px; width: 150px; border: none; position: absolute; top: 0; background-color: white; } .detail hr { margin-bottom: 15px; } .story { margin-top: 26px; line-height: 24px; font-size: 14px; } .detail-images { padding-bottom: 49px; } .detail-images img { width: 100%; margin-top: 20px; } .add-to-cart-confirm { position: absolute; width: 94%; bottom: 28%; left: calc(50vw - 94% / 2); text-align: center; line-height: 50px; margin-top: 10px; color: #ffffff; background-color: #8b572aea; padding: 0 10px; border-radius: 5px; z-index: 5; display: none; } .show-confirmation { display: block; animation: fadeout 1.5s ease-in-out; } @keyframes fadeout { 0% { opacity: 0.5; } 20% { opacity: 1; } 40% { opacity: 1; } 60% { opacity: 1; } 80% { opacity: 0.5; } 100% { opacity: 0; } } /* ========= MEDIA QUERIES ========= */ @media screen and (min-width: 1024px) { .product-container { max-width: 960px; padding-top: 65px; margin: 0 auto; } .product-basics { display: flex; } .product-basics img { width: 560px; } .product-basics .basic-info { /* width: 400px; */ padding: 0; margin-left: 42px; } .basic-info #product-title { font-size: 32px; letter-spacing: 6.4px; line-height: 38px; } .basic-info #product-id { font-size: 20px; letter-spacing: 4px; line-height: 24px; margin-top: 16px; } .basic-info #product-price { font-size: 30px; line-height: 36px; margin-top: 40px; margin-bottom: 20px; } .purchase-options label { font-size: 20px; letter-spacing: 4px; line-height: 24px; width: 93px; } .quantity-container { margin-top: 26px; display: flex; height: 44px; align-items: center; } #quantity-label { display: unset; } .quantity-container .quantity { margin: 0; padding: 0 10px; width: auto; flex-grow: 1; } .add-to-cart { margin-top: 29px; } .add-to-cart-confirm { position: fixed; max-width: 960px; height: 50px; top: 135px; left: calc(50vw - 960px / 2); font-size: 20px; font-weight: bold; } .basic-description { margin-top: 40px; } .basic-description * { font-size: 20px; line-height: 30px; } .basic-description .texture, .basic-description .wash { margin-top: 30px; } .detail { padding: 0; margin-top: 67.3px; position: relative; width: 100%; } .detail .title { font-size: 20px; letter-spacing: 4px; top: -15px; } .detail .story { font-size: 20px; line-height: 30px; margin-top: 40px; } .detail-images img { margin-top: 30px; } }
0.455925
0.08389
* { margin: 0px; border: 0px; padding: 0px; text-decoration: none; font-family: 'Open Sans', sans-serif; } body { overflow-x: hidden!important; background-color: #000000!important; } body::-webkit-scrollbar-track-piece { background-color: #000000!important; } body::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3)!important; background-color: #F5F5F5!important; visibility: hidden!important; } body::-webkit-scrollbar { width: 10px!important; background-color: #F5F5F5!important; visibility: hidden!important; } body::-webkit-scrollbar-thumb { background-color: #013BA6!important; height: 100px!important; } .movie-box img { display: block; margin-left: auto; margin-right: auto; z-index: 2; } img:hover { } #close { border-radius: 50%; width: 50px; height: 50px; background-position: center; } #close:hover { cursor: pointer; /* -webkit-box-shadow: 0px 0px 30px 2px rgba(255, 255, 255, 1); -moz-box-shadow: 0px 0px 30px 2px rgba(255, 255, 255, 1); box-shadow: 0px 0px 30px 2px rgba(255, 255, 255, 1); border-radius: 50%; */ } .title { font-family: 'Open Sans', sans-serif; font-weight: 700; color: #ffffff; text-align: center; font-size: 32px; z-index: 2; } .hover-luz:hover { -webkit-box-shadow: 0px 0px 30px 2px rgba(255, 255, 255, 1); -moz-box-shadow: 0px 0px 30px 2px rgba(255, 255, 255, 1); box-shadow: 0px 0px 30px 2px rgba(255, 255, 255, 1); } .hover-pointer:hover { cursor: pointer; } .movie-box { -webkit-box-shadow: inset 0px 0px 30px 30px rgba(0, 0, 0, 1); -moz-box-shadow: inset 0px 0px 30px 30px rgba(0, 0, 0, 1); box-shadow: inset 0px 0px 30px 30px rgba(0, 0, 0, 1); padding-top:22px; padding-bottom:22px; background: #000; min-height: 340px; } .movie-box img:hover { cursor: pointer; } .movie-box-::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#dc4225,#292484); background-image:-moz-linear-gradient(-45deg,#dc4225,#292484); background-image:-o-linear-gradient(-45deg,#dc4225,#292484); background-image:linear-gradient(-45deg,#dc4225,#292484); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Drama::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#417711,#d38312); background-image:-moz-linear-gradient(-45deg,#417711,#d38312); background-image:-o-linear-gradient(-45deg,#417711,#d38312); background-image:linear-gradient(-45deg,#417711,#d38312); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Comedy::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#002f4b,#417711); background-image:-moz-linear-gradient(-45deg,#002f4b,#417711); background-image:-o-linear-gradient(-45deg,#002f4b,#417711); background-image:linear-gradient(-45deg,#002f4b,#417711); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Sci-Fi::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#dc4225,#d38312); background-image:-moz-linear-gradient(-45deg,#dc4225,#d38312); background-image:-o-linear-gradient(-45deg,#dc4225,#d38312); background-image:linear-gradient(-45deg,#dc4225,#d38312); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Crime::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#417711,#e0be00); background-image:-moz-linear-gradient(-45deg,#417711,#e0be00); background-image:-o-linear-gradient(-45deg,#417711,#e0be00); background-image:linear-gradient(-45deg,#417711,#e0be00); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Biography::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#002f4b,#dc4225); background-image:-moz-linear-gradient(-45deg,#002f4b,#dc4225); background-image:-o-linear-gradient(-45deg,#002f4b,#dc4225); background-image:linear-gradient(-45deg,#002f4b,#dc4225); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Action::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#292484,#e0be00); background-image:-moz-linear-gradient(-45deg,#292484,#e0be00); background-image:-o-linear-gradient(-45deg,#292484,#e0be00); background-image:linear-gradient(-45deg,#292484,#e0be00); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Action::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#d38312,#292484); background-image:-moz-linear-gradient(-45deg,#d38312,#292484); background-image:-o-linear-gradient(-45deg,#d38312,#292484); background-image:linear-gradient(-45deg,#d38312,#292484); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Animation::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#a83279,#dc4225); background-image:-moz-linear-gradient(-45deg,#a83279,#dc4225); background-image:-o-linear-gradient(-45deg,#a83279,#dc4225); background-image:linear-gradient(-45deg,#a83279,#dc4225); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Documentary::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#002f4b,#dc4225); background-image:-moz-linear-gradient(-45deg,#002f4b,#dc4225); background-image:-o-linear-gradient(-45deg,#002f4b,#dc4225); background-image:linear-gradient(-45deg,#002f4b,#dc4225); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } #images{padding:0px;margin:0px;position:fixed;float:left;z-index:10000;clear:both;top:50%;left:50%;margin-top:-200px;margin-left:-400px;} /*VIDEOJS*/ video{margin:0 auto;display:block;max-width:100%;} video{display:inline-block;*display:inline;*zoom:1;} #fullscreen_detail { color:#fff; } #fullscreen_player { } .fullscreen_player_in {position:fixed;background-color: rgba(0, 0, 0, 0.85);width:100%;height:100%;margin:0;padding:0;z-index:99999;} .fullscreen_player_out {} .fullscreen_detail_in { position: fixed; background-color: rgba(0, 0, 0, 1); width: 100%; height: 100%; margin: 0; padding: 0; z-index: 9999; top: 0px; left: 0px; } .fullscreen_detail_out {} .video-js .vjs-text-track-display {text-align:center;position:absolute;bottom:14%;left:1em;right:1em;text-shadow:-1px -1px 6px #333333,1px 1px 6px #333333,1px 1px 6px #333333,-1px -1px 6px #333333;font-weight:bold;font-family:'Lato',sans-serif;font-smooth:always;-webkit-font-smoothing: antialiased;} .video-js .vjs-text-track {display:none;color:#f1da36;text-align:center;margin-bottom:0.1em;background:rgba(0,0,0,0);} .video-js .vjs-subtitles {color:#f1da36;} .video-js .vjs-captions {color:#f1da36;} .vjs-tt-cue{display:block;font-size:40px;line-height:40px;} .bg-overlay { width: 100%; height: 110%; background-color: #000000; z-index: 1; display: block; position: fixed; top: 0px; opacity: 0.3; } .movie_rating_star { text-align:center; color: #ffd700; margin-top: 5px; visibility: hidden; } .movie_rating_star_details { text-align:center; color: #ffd700; margin-top: 5px; } div[id^="movie-rating-star-"] { visibility:hidden; } .glyphicon-star::before { -webkit-text-shadow: 0px 0px 10px rgba(255, 255, 255, 1); -moz-text-shadow: 0px 0px 10px rgba(255, 255, 255, 1); text-shadow: 0px 0px 10px rgba(255, 255, 255, 1); } .title_movie_background { background-size: cover; background-repeat: no-repeat; background-position: center; min-height: 300px; display: table; width: 100%; margin: 0; z-index: 5; } .title_movie_background_black { background-color: rgba(0, 0, 0, 0.25); min-height: 300px; display: table; width: 100%; margin: 0; z-index: 10; } .title_movie { display: table-cell; vertical-align: middle; font-size:50px; color: #fff; font-family: inherit; font-weight: bold; text-align: center; line-height: 50px; letter-spacing: -1px; text-shadow: 0px 0px 10px black; } .title_movie span { color: #ffd700; font-size: 20px; } #fullscreen_detail { overflow-x: hidden!important; } #fullscreen_player { overflow-x: hidden!important; } #fullscreen_detail::-webkit-scrollbar-track-piece { background-color: #000000; } #fullscreen_detail::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #F5F5F5; visibility: hidden; } #fullscreen_detail::-webkit-scrollbar { width: 10px; background-color: #F5F5F5; visibility: hidden; } #fullscreen_detail::-webkit-scrollbar-thumb { background-color: #013BA6; height: 100px; } #fullscreen_player::-webkit-scrollbar-track-piece { background-color: #000000; } #fullscreen_player::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #F5F5F5; visibility: hidden; } #fullscreen_player::-webkit-scrollbar { width: 10px; background-color: #F5F5F5; visibility: hidden; } #fullscreen_player::-webkit-scrollbar-thumb { background-color: #013BA6; height: 100px; } body::-webkit-scrollbar-track-piece:horizontal {display: none!important;} body::-webkit-scrollbar-track:horizontal {display: none!important;} body::-webkit-scrollbar:horizontal {display: none!important;} body::-webkit-scrollbar-thumb:horizontal {display: none!important;} #fullscreen_detail::-webkit-scrollbar-track-piece:horizontal {display: none!important;} #fullscreen_detail::-webkit-scrollbar-track:horizontal {display: none!important;} #fullscreen_detail::-webkit-scrollbar:horizontal display: none!important;{} #fullscreen_detail::-webkit-scrollbar-thumb:horizontal {display: none!important;} #fullscreen_player::-webkit-scrollbar-track-piece:horizontal {display: none!important;} #fullscreen_player::-webkit-scrollbar-track:horizontal {display: none!important;} #fullscreen_player::-webkit-scrollba:horizontalr {display: none!important;} #fullscreen_player::-webkit-scrollbar-thumb:horizontal {display: none!important;} /*new detail ui*/ #bg-yts { background-size: cover; background-position: center; background-repeat: no-repeat; min-height: 700px; height: auto; -webkit-box-shadow: inset 0px 0px 250px 50px rgba(0, 0, 0, 1); -moz-box-shadow: inset 0px 0px 250px 50px rgba(0, 0, 0, 1); box-shadow: inset 0px 0px 250px 50px rgba(0, 0, 0, 1); } #head-detail { width: 100%; max-width: 1280px; margin: 0 auto; top: 250px; position: relative; } #poster-yts { height: auto; min-height: 440px; line-height: 400px; text-align: center; position: relative; } #poster-yts img{ vertical-align: middle; height: 345px; margin-left: auto; margin-right: auto; } p.title-yts-p { text-align: center; font-size: 60px; color: #fff; font-family: 'Open Sans', sans-serif; font-weight: bold; text-align: center; line-height: 50px; letter-spacing: -1px; text-shadow: 0px 0px 10px black; min-height: 50px; height: auto; padding-top: 60px; display: block; clear: both; text-transform: uppercase; } #details { height: 500px; float: right; position: relative; } @media (max-width: 991px) { #details { display: none; } #bg-yts-play { top: 290px!important; } } p.little-title-p { color: #fff; font-family: 'Open Sans', sans-serif; text-align: center; font-size: 13px; height: 20px; position: relative; } .title-yts-p { width: 100%; text-align: center; } .title-yts-p span { color: #ffd700; font-size: 20px; } #bg-yts-play { position: absolute; left: 50%; margin-left: -80px; top: 250px; z-index: 2; } #bg-yts-play:hover { cursor: pointer; } #dl_status_active-error { background: #ff005a; border-radius: 0px; border: 0; font-weight: bold; margin: 0 auto; min-width: 800px; width: 100%; } #dl_status_active-error:hover { background: #BF0043; } /*PRELOADER*/ #preloader { width: 100%; height: 100%; position: fixed; top: 0px; left: 0px; background-color: rgba(0, 0, 0, 0.75); z-index: 100000; } .cssload-container { position: absolute; top: 50%; left: 50%; } .cssload-whirlpool,.cssload-whirlpool::after,.cssload-whirlpool::before{position:absolute;top:50%;left:50%;border:1px solid rgba(1,59,166,.2);border-left-color:#0c2aed;border-radius:774px;-o-border-radius:774px;-ms-border-radius:774px;-webkit-border-radius:774px;-moz-border-radius:774px} .cssload-whirlpool{margin:-19px 0 0 -19px;height:39px;width:39px;animation:cssload-rotate 1.15s linear infinite;-o-animation:cssload-rotate 1.15s linear infinite;-ms-animation:cssload-rotate 1.15s linear infinite;-webkit-animation:cssload-rotate 1.15s linear infinite;-moz-animation:cssload-rotate 1.15s linear infinite} .cssload-whirlpool::before{content:"";margin:-18px 0 0 -18px;height:34px;width:34px;animation:cssload-rotate 1.15s linear infinite;-o-animation:cssload-rotate 1.15s linear infinite;-ms-animation:cssload-rotate 1.15s linear infinite;-webkit-animation:cssload-rotate 1.15s linear infinite;-moz-animation:cssload-rotate 1.15s linear infinite} .cssload-whirlpool::after{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:cssload-rotate 2.3s linear infinite;-o-animation:cssload-rotate 2.3s linear infinite;-ms-animation:cssload-rotate 2.3s linear infinite;-webkit-animation:cssload-rotate 2.3s linear infinite;-moz-animation:cssload-rotate 2.3s linear infinite}@keyframes cssload-rotate{100%{transform:rotate(360deg)}}@-o-keyframes cssload-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes cssload-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes cssload-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes cssload-rotate{100%{-moz-transform:rotate(360deg)}} #navbar-playflix { /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */ background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */ } .steps { font-size: 14px; } .steps > a { color: #ffffff!important; text-decoration: none; } .steps > a:hover { color: #ffffff!important; text-decoration: none; } .steps > a:visited { color: #ffffff!important; text-decoration: none; } img.chrome { width: 206px; margin: 0 auto; margin-top: 14px; } #steps { top: 80%; position: relative; color: #ffffff; font-size: 14px; line-height: 14px; text-align: center; padding: 0px 150px; } .steps-b-r { border-right: 1px rgba(255, 255, 255, 0.25) solid; } #playflix_slogan_steps { position: relative; top: -60px; } #playflix_slogan_steps > span { color: #ffffff; font-family: avalon; font-size: 20px; line-height: 20px; text-transform: uppercase; border: 2px #013BA6 solid; padding: 15px; } #steps_reload-img { margin-top: 15px; } #steps_enjoy-img { margin-top: 10px; } .fa-refresh, .fa-smile-o { font-size: 62px!important; margin-top: 14px; } .fa-smile-o { font-size: 62px!important; margin-top: 3px; } @media (max-width: 768px) { #playflix-isologotipo { display: none; } } @media (min-width: 769px) { #playflix-iso { display: none; } } @media (max-width: 991px) { #icon-facebook { } #icon-twitter { } #icon-github { display: none; } #icon-reddit { display: none; } }
css/playflix.css
* { margin: 0px; border: 0px; padding: 0px; text-decoration: none; font-family: 'Open Sans', sans-serif; } body { overflow-x: hidden!important; background-color: #000000!important; } body::-webkit-scrollbar-track-piece { background-color: #000000!important; } body::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3)!important; background-color: #F5F5F5!important; visibility: hidden!important; } body::-webkit-scrollbar { width: 10px!important; background-color: #F5F5F5!important; visibility: hidden!important; } body::-webkit-scrollbar-thumb { background-color: #013BA6!important; height: 100px!important; } .movie-box img { display: block; margin-left: auto; margin-right: auto; z-index: 2; } img:hover { } #close { border-radius: 50%; width: 50px; height: 50px; background-position: center; } #close:hover { cursor: pointer; /* -webkit-box-shadow: 0px 0px 30px 2px rgba(255, 255, 255, 1); -moz-box-shadow: 0px 0px 30px 2px rgba(255, 255, 255, 1); box-shadow: 0px 0px 30px 2px rgba(255, 255, 255, 1); border-radius: 50%; */ } .title { font-family: 'Open Sans', sans-serif; font-weight: 700; color: #ffffff; text-align: center; font-size: 32px; z-index: 2; } .hover-luz:hover { -webkit-box-shadow: 0px 0px 30px 2px rgba(255, 255, 255, 1); -moz-box-shadow: 0px 0px 30px 2px rgba(255, 255, 255, 1); box-shadow: 0px 0px 30px 2px rgba(255, 255, 255, 1); } .hover-pointer:hover { cursor: pointer; } .movie-box { -webkit-box-shadow: inset 0px 0px 30px 30px rgba(0, 0, 0, 1); -moz-box-shadow: inset 0px 0px 30px 30px rgba(0, 0, 0, 1); box-shadow: inset 0px 0px 30px 30px rgba(0, 0, 0, 1); padding-top:22px; padding-bottom:22px; background: #000; min-height: 340px; } .movie-box img:hover { cursor: pointer; } .movie-box-::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#dc4225,#292484); background-image:-moz-linear-gradient(-45deg,#dc4225,#292484); background-image:-o-linear-gradient(-45deg,#dc4225,#292484); background-image:linear-gradient(-45deg,#dc4225,#292484); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Drama::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#417711,#d38312); background-image:-moz-linear-gradient(-45deg,#417711,#d38312); background-image:-o-linear-gradient(-45deg,#417711,#d38312); background-image:linear-gradient(-45deg,#417711,#d38312); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Comedy::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#002f4b,#417711); background-image:-moz-linear-gradient(-45deg,#002f4b,#417711); background-image:-o-linear-gradient(-45deg,#002f4b,#417711); background-image:linear-gradient(-45deg,#002f4b,#417711); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Sci-Fi::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#dc4225,#d38312); background-image:-moz-linear-gradient(-45deg,#dc4225,#d38312); background-image:-o-linear-gradient(-45deg,#dc4225,#d38312); background-image:linear-gradient(-45deg,#dc4225,#d38312); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Crime::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#417711,#e0be00); background-image:-moz-linear-gradient(-45deg,#417711,#e0be00); background-image:-o-linear-gradient(-45deg,#417711,#e0be00); background-image:linear-gradient(-45deg,#417711,#e0be00); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Biography::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#002f4b,#dc4225); background-image:-moz-linear-gradient(-45deg,#002f4b,#dc4225); background-image:-o-linear-gradient(-45deg,#002f4b,#dc4225); background-image:linear-gradient(-45deg,#002f4b,#dc4225); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Action::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#292484,#e0be00); background-image:-moz-linear-gradient(-45deg,#292484,#e0be00); background-image:-o-linear-gradient(-45deg,#292484,#e0be00); background-image:linear-gradient(-45deg,#292484,#e0be00); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Action::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#d38312,#292484); background-image:-moz-linear-gradient(-45deg,#d38312,#292484); background-image:-o-linear-gradient(-45deg,#d38312,#292484); background-image:linear-gradient(-45deg,#d38312,#292484); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Animation::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#a83279,#dc4225); background-image:-moz-linear-gradient(-45deg,#a83279,#dc4225); background-image:-o-linear-gradient(-45deg,#a83279,#dc4225); background-image:linear-gradient(-45deg,#a83279,#dc4225); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } .movie-box-Documentary::after { /*background-color: #292484;*/ background-image:-webkit-linear-gradient(-45deg,#002f4b,#dc4225); background-image:-moz-linear-gradient(-45deg,#002f4b,#dc4225); background-image:-o-linear-gradient(-45deg,#002f4b,#dc4225); background-image:linear-gradient(-45deg,#002f4b,#dc4225); opacity: .2; content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index:-1; } #images{padding:0px;margin:0px;position:fixed;float:left;z-index:10000;clear:both;top:50%;left:50%;margin-top:-200px;margin-left:-400px;} /*VIDEOJS*/ video{margin:0 auto;display:block;max-width:100%;} video{display:inline-block;*display:inline;*zoom:1;} #fullscreen_detail { color:#fff; } #fullscreen_player { } .fullscreen_player_in {position:fixed;background-color: rgba(0, 0, 0, 0.85);width:100%;height:100%;margin:0;padding:0;z-index:99999;} .fullscreen_player_out {} .fullscreen_detail_in { position: fixed; background-color: rgba(0, 0, 0, 1); width: 100%; height: 100%; margin: 0; padding: 0; z-index: 9999; top: 0px; left: 0px; } .fullscreen_detail_out {} .video-js .vjs-text-track-display {text-align:center;position:absolute;bottom:14%;left:1em;right:1em;text-shadow:-1px -1px 6px #333333,1px 1px 6px #333333,1px 1px 6px #333333,-1px -1px 6px #333333;font-weight:bold;font-family:'Lato',sans-serif;font-smooth:always;-webkit-font-smoothing: antialiased;} .video-js .vjs-text-track {display:none;color:#f1da36;text-align:center;margin-bottom:0.1em;background:rgba(0,0,0,0);} .video-js .vjs-subtitles {color:#f1da36;} .video-js .vjs-captions {color:#f1da36;} .vjs-tt-cue{display:block;font-size:40px;line-height:40px;} .bg-overlay { width: 100%; height: 110%; background-color: #000000; z-index: 1; display: block; position: fixed; top: 0px; opacity: 0.3; } .movie_rating_star { text-align:center; color: #ffd700; margin-top: 5px; visibility: hidden; } .movie_rating_star_details { text-align:center; color: #ffd700; margin-top: 5px; } div[id^="movie-rating-star-"] { visibility:hidden; } .glyphicon-star::before { -webkit-text-shadow: 0px 0px 10px rgba(255, 255, 255, 1); -moz-text-shadow: 0px 0px 10px rgba(255, 255, 255, 1); text-shadow: 0px 0px 10px rgba(255, 255, 255, 1); } .title_movie_background { background-size: cover; background-repeat: no-repeat; background-position: center; min-height: 300px; display: table; width: 100%; margin: 0; z-index: 5; } .title_movie_background_black { background-color: rgba(0, 0, 0, 0.25); min-height: 300px; display: table; width: 100%; margin: 0; z-index: 10; } .title_movie { display: table-cell; vertical-align: middle; font-size:50px; color: #fff; font-family: inherit; font-weight: bold; text-align: center; line-height: 50px; letter-spacing: -1px; text-shadow: 0px 0px 10px black; } .title_movie span { color: #ffd700; font-size: 20px; } #fullscreen_detail { overflow-x: hidden!important; } #fullscreen_player { overflow-x: hidden!important; } #fullscreen_detail::-webkit-scrollbar-track-piece { background-color: #000000; } #fullscreen_detail::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #F5F5F5; visibility: hidden; } #fullscreen_detail::-webkit-scrollbar { width: 10px; background-color: #F5F5F5; visibility: hidden; } #fullscreen_detail::-webkit-scrollbar-thumb { background-color: #013BA6; height: 100px; } #fullscreen_player::-webkit-scrollbar-track-piece { background-color: #000000; } #fullscreen_player::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #F5F5F5; visibility: hidden; } #fullscreen_player::-webkit-scrollbar { width: 10px; background-color: #F5F5F5; visibility: hidden; } #fullscreen_player::-webkit-scrollbar-thumb { background-color: #013BA6; height: 100px; } body::-webkit-scrollbar-track-piece:horizontal {display: none!important;} body::-webkit-scrollbar-track:horizontal {display: none!important;} body::-webkit-scrollbar:horizontal {display: none!important;} body::-webkit-scrollbar-thumb:horizontal {display: none!important;} #fullscreen_detail::-webkit-scrollbar-track-piece:horizontal {display: none!important;} #fullscreen_detail::-webkit-scrollbar-track:horizontal {display: none!important;} #fullscreen_detail::-webkit-scrollbar:horizontal display: none!important;{} #fullscreen_detail::-webkit-scrollbar-thumb:horizontal {display: none!important;} #fullscreen_player::-webkit-scrollbar-track-piece:horizontal {display: none!important;} #fullscreen_player::-webkit-scrollbar-track:horizontal {display: none!important;} #fullscreen_player::-webkit-scrollba:horizontalr {display: none!important;} #fullscreen_player::-webkit-scrollbar-thumb:horizontal {display: none!important;} /*new detail ui*/ #bg-yts { background-size: cover; background-position: center; background-repeat: no-repeat; min-height: 700px; height: auto; -webkit-box-shadow: inset 0px 0px 250px 50px rgba(0, 0, 0, 1); -moz-box-shadow: inset 0px 0px 250px 50px rgba(0, 0, 0, 1); box-shadow: inset 0px 0px 250px 50px rgba(0, 0, 0, 1); } #head-detail { width: 100%; max-width: 1280px; margin: 0 auto; top: 250px; position: relative; } #poster-yts { height: auto; min-height: 440px; line-height: 400px; text-align: center; position: relative; } #poster-yts img{ vertical-align: middle; height: 345px; margin-left: auto; margin-right: auto; } p.title-yts-p { text-align: center; font-size: 60px; color: #fff; font-family: 'Open Sans', sans-serif; font-weight: bold; text-align: center; line-height: 50px; letter-spacing: -1px; text-shadow: 0px 0px 10px black; min-height: 50px; height: auto; padding-top: 60px; display: block; clear: both; text-transform: uppercase; } #details { height: 500px; float: right; position: relative; } @media (max-width: 991px) { #details { display: none; } #bg-yts-play { top: 290px!important; } } p.little-title-p { color: #fff; font-family: 'Open Sans', sans-serif; text-align: center; font-size: 13px; height: 20px; position: relative; } .title-yts-p { width: 100%; text-align: center; } .title-yts-p span { color: #ffd700; font-size: 20px; } #bg-yts-play { position: absolute; left: 50%; margin-left: -80px; top: 250px; z-index: 2; } #bg-yts-play:hover { cursor: pointer; } #dl_status_active-error { background: #ff005a; border-radius: 0px; border: 0; font-weight: bold; margin: 0 auto; min-width: 800px; width: 100%; } #dl_status_active-error:hover { background: #BF0043; } /*PRELOADER*/ #preloader { width: 100%; height: 100%; position: fixed; top: 0px; left: 0px; background-color: rgba(0, 0, 0, 0.75); z-index: 100000; } .cssload-container { position: absolute; top: 50%; left: 50%; } .cssload-whirlpool,.cssload-whirlpool::after,.cssload-whirlpool::before{position:absolute;top:50%;left:50%;border:1px solid rgba(1,59,166,.2);border-left-color:#0c2aed;border-radius:774px;-o-border-radius:774px;-ms-border-radius:774px;-webkit-border-radius:774px;-moz-border-radius:774px} .cssload-whirlpool{margin:-19px 0 0 -19px;height:39px;width:39px;animation:cssload-rotate 1.15s linear infinite;-o-animation:cssload-rotate 1.15s linear infinite;-ms-animation:cssload-rotate 1.15s linear infinite;-webkit-animation:cssload-rotate 1.15s linear infinite;-moz-animation:cssload-rotate 1.15s linear infinite} .cssload-whirlpool::before{content:"";margin:-18px 0 0 -18px;height:34px;width:34px;animation:cssload-rotate 1.15s linear infinite;-o-animation:cssload-rotate 1.15s linear infinite;-ms-animation:cssload-rotate 1.15s linear infinite;-webkit-animation:cssload-rotate 1.15s linear infinite;-moz-animation:cssload-rotate 1.15s linear infinite} .cssload-whirlpool::after{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:cssload-rotate 2.3s linear infinite;-o-animation:cssload-rotate 2.3s linear infinite;-ms-animation:cssload-rotate 2.3s linear infinite;-webkit-animation:cssload-rotate 2.3s linear infinite;-moz-animation:cssload-rotate 2.3s linear infinite}@keyframes cssload-rotate{100%{transform:rotate(360deg)}}@-o-keyframes cssload-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes cssload-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes cssload-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes cssload-rotate{100%{-moz-transform:rotate(360deg)}} #navbar-playflix { /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */ background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */ } .steps { font-size: 14px; } .steps > a { color: #ffffff!important; text-decoration: none; } .steps > a:hover { color: #ffffff!important; text-decoration: none; } .steps > a:visited { color: #ffffff!important; text-decoration: none; } img.chrome { width: 206px; margin: 0 auto; margin-top: 14px; } #steps { top: 80%; position: relative; color: #ffffff; font-size: 14px; line-height: 14px; text-align: center; padding: 0px 150px; } .steps-b-r { border-right: 1px rgba(255, 255, 255, 0.25) solid; } #playflix_slogan_steps { position: relative; top: -60px; } #playflix_slogan_steps > span { color: #ffffff; font-family: avalon; font-size: 20px; line-height: 20px; text-transform: uppercase; border: 2px #013BA6 solid; padding: 15px; } #steps_reload-img { margin-top: 15px; } #steps_enjoy-img { margin-top: 10px; } .fa-refresh, .fa-smile-o { font-size: 62px!important; margin-top: 14px; } .fa-smile-o { font-size: 62px!important; margin-top: 3px; } @media (max-width: 768px) { #playflix-isologotipo { display: none; } } @media (min-width: 769px) { #playflix-iso { display: none; } } @media (max-width: 991px) { #icon-facebook { } #icon-twitter { } #icon-github { display: none; } #icon-reddit { display: none; } }
0.249447
0.074332
* Layout.scss * Version: 1 * Author: <NAME> * Author URL: http://kieranglover.co.uk * Github: https://github.com/kierglover * Made available under a MIT License: * http://www.opensource.org/licenses/mit-license.php * Layout.scss Copyright <NAME> 2016. Generated with Sass. */ @import url(https://fonts.googleapis.com/css?family=Lato); @import url(https://fonts.googleapis.com/css?family=Roboto); .col-centered { display: inline-block; float: none; /* reset the text-align */ text-align: center; /* inline-block space fix */ margin-right: -4px; padding-left: 320px; padding-right: 320px; } .col-justified { margin-top: 50px; text-align: justify; } .col-quote { display: inline-block; float: none; /* reset the text-align */ text-align: center; /* inline-block space fix */ margin-right: -4px; padding-left: 250px; padding-right: 250px; } .carousel-caption { padding-bottom: 100px; } .carousel-caption h3 { padding-bottom: 50px; font-family: 'Roboto',sans-serif; font-weight: normal; letter-spacing: 1px; } .carousel-caption p { padding-top: 50px; } .image { margin-top: 90px; position: relative; background-size: cover; width: 365px; height: 506px; font-family: 'Roboto', sans-serif; color: #fff; font-size: 30px; } .image img { width: 100%; vertical-align: top; } .image:after, .image:before { position: absolute; opacity: 0; transition: all 0.5s; -webkit-transition: all 0.5s; } .image:after { content: '\A'; width: 365px; height: 506px; top: 0; left: 0; background: rgba(0, 0, 0, 0.6); } .image:before { content: attr(data-content); width: 100%; color: #fff; z-index: 1; bottom: 50%; padding: 4px 10px; font-family: 'Roboto', sans-serif; text-align: center; box-sizing: border-box; -moz-box-sizing: border-box; } .image:hover:after, .image:hover:before { opacity: 1; } /*! * Hover.css (http://ianlunn.github.io/Hover/) * Version: 2.0.1 * Author: <NAME> @IanLunn * Author URL: http://ianlunn.co.uk/ * Github: https://github.com/IanLunn/Hover * Made available under a MIT License: * http://www.opensource.org/licenses/mit-license.php * Hover.css Copyright Ian Lunn 2014. Generated with Sass. */ .hvr-grow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-grow:active, .hvr-grow:focus, .hvr-grow:hover { -webkit-transform: scale(1.1); transform: scale(1.1); } .hvr-shrink { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-shrink:active, .hvr-shrink:focus, .hvr-shrink:hover { -webkit-transform: scale(0.9); transform: scale(0.9); } @-webkit-keyframes hvr-pulse { 25% { -webkit-transform: scale(1.1); transform: scale(1.1); } 75% { -webkit-transform: scale(0.9); transform: scale(0.9); } } @keyframes hvr-pulse { 25% { -webkit-transform: scale(1.1); transform: scale(1.1); } 75% { -webkit-transform: scale(0.9); transform: scale(0.9); } } .hvr-pulse { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-pulse:active, .hvr-pulse:focus, .hvr-pulse:hover { -webkit-animation-name: hvr-pulse; animation-name: hvr-pulse; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; } @-webkit-keyframes hvr-pulse-grow { to { -webkit-transform: scale(1.1); transform: scale(1.1); } } @keyframes hvr-pulse-grow { to { -webkit-transform: scale(1.1); transform: scale(1.1); } } .hvr-pulse-grow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-pulse-grow:active, .hvr-pulse-grow:focus, .hvr-pulse-grow:hover { -webkit-animation-name: hvr-pulse-grow; animation-name: hvr-pulse-grow; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-direction: alternate; animation-direction: alternate; } @-webkit-keyframes hvr-pulse-shrink { to { -webkit-transform: scale(0.9); transform: scale(0.9); } } @keyframes hvr-pulse-shrink { to { -webkit-transform: scale(0.9); transform: scale(0.9); } } .hvr-pulse-shrink { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-pulse-shrink:active, .hvr-pulse-shrink:focus, .hvr-pulse-shrink:hover { -webkit-animation-name: hvr-pulse-shrink; animation-name: hvr-pulse-shrink; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-direction: alternate; animation-direction: alternate; } @-webkit-keyframes hvr-push { 50% { -webkit-transform: scale(0.8); transform: scale(0.8); } 100% { -webkit-transform: scale(1); transform: scale(1); } } @keyframes hvr-push { 50% { -webkit-transform: scale(0.8); transform: scale(0.8); } 100% { -webkit-transform: scale(1); transform: scale(1); } } .hvr-push { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-push:active, .hvr-push:focus, .hvr-push:hover { -webkit-animation-name: hvr-push; animation-name: hvr-push; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-pop { 50% { -webkit-transform: scale(1.2); transform: scale(1.2); } } @keyframes hvr-pop { 50% { -webkit-transform: scale(1.2); transform: scale(1.2); } } .hvr-pop { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-pop:active, .hvr-pop:focus, .hvr-pop:hover { -webkit-animation-name: hvr-pop; animation-name: hvr-pop; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } .hvr-bounce-in { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .5s; transition-duration: .5s; } .hvr-bounce-in:active, .hvr-bounce-in:focus, .hvr-bounce-in:hover { -webkit-transform: scale(1.2); transform: scale(1.2); -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); } .hvr-bounce-out { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .5s; transition-duration: .5s; } .hvr-bounce-out:active, .hvr-bounce-out:focus, .hvr-bounce-out:hover { -webkit-transform: scale(0.8); transform: scale(0.8); -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); } .hvr-rotate { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-rotate:active, .hvr-rotate:focus, .hvr-rotate:hover { -webkit-transform: rotate(4deg); transform: rotate(4deg); } .hvr-grow-rotate { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-grow-rotate:active, .hvr-grow-rotate:focus, .hvr-grow-rotate:hover { -webkit-transform: scale(1.1) rotate(4deg); transform: scale(1.1) rotate(4deg); } .hvr-float { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-float:active, .hvr-float:focus, .hvr-float:hover { -webkit-transform: translateY(-8px); transform: translateY(-8px); } .hvr-sink { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-sink:active, .hvr-sink:focus, .hvr-sink:hover { -webkit-transform: translateY(8px); transform: translateY(8px); } @-webkit-keyframes hvr-bob { 0% { -webkit-transform: translateY(-8px); transform: translateY(-8px); } 50% { -webkit-transform: translateY(-4px); transform: translateY(-4px); } 100% { -webkit-transform: translateY(-8px); transform: translateY(-8px); } } @keyframes hvr-bob { 0% { -webkit-transform: translateY(-8px); transform: translateY(-8px); } 50% { -webkit-transform: translateY(-4px); transform: translateY(-4px); } 100% { -webkit-transform: translateY(-8px); transform: translateY(-8px); } } @-webkit-keyframes hvr-bob-float { 100% { -webkit-transform: translateY(-8px); transform: translateY(-8px); } } @keyframes hvr-bob-float { 100% { -webkit-transform: translateY(-8px); transform: translateY(-8px); } } .hvr-bob { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-bob:active, .hvr-bob:focus, .hvr-bob:hover { -webkit-animation-name: hvr-bob-float,hvr-bob; animation-name: hvr-bob-float,hvr-bob; -webkit-animation-duration: .3s,1.5s; animation-duration: .3s,1.5s; -webkit-animation-delay: 0s,.3s; animation-delay: 0s,.3s; -webkit-animation-timing-function: ease-out,ease-in-out; animation-timing-function: ease-out,ease-in-out; -webkit-animation-iteration-count: 1,infinite; animation-iteration-count: 1,infinite; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-animation-direction: normal,alternate; animation-direction: normal,alternate; } @-webkit-keyframes hvr-hang { 0% { -webkit-transform: translateY(8px); transform: translateY(8px); } 50% { -webkit-transform: translateY(4px); transform: translateY(4px); } 100% { -webkit-transform: translateY(8px); transform: translateY(8px); } } @keyframes hvr-hang { 0% { -webkit-transform: translateY(8px); transform: translateY(8px); } 50% { -webkit-transform: translateY(4px); transform: translateY(4px); } 100% { -webkit-transform: translateY(8px); transform: translateY(8px); } } @-webkit-keyframes hvr-hang-sink { 100% { -webkit-transform: translateY(8px); transform: translateY(8px); } } @keyframes hvr-hang-sink { 100% { -webkit-transform: translateY(8px); transform: translateY(8px); } } .hvr-hang { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-hang:active, .hvr-hang:focus, .hvr-hang:hover { -webkit-animation-name: hvr-hang-sink,hvr-hang; animation-name: hvr-hang-sink,hvr-hang; -webkit-animation-duration: .3s,1.5s; animation-duration: .3s,1.5s; -webkit-animation-delay: 0s,.3s; animation-delay: 0s,.3s; -webkit-animation-timing-function: ease-out,ease-in-out; animation-timing-function: ease-out,ease-in-out; -webkit-animation-iteration-count: 1,infinite; animation-iteration-count: 1,infinite; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-animation-direction: normal,alternate; animation-direction: normal,alternate; } .hvr-skew { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-skew:active, .hvr-skew:focus, .hvr-skew:hover { -webkit-transform: skew(-10deg); transform: skew(-10deg); } .hvr-skew-forward { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transform-origin: 0 100%; transform-origin: 0 100%; } .hvr-skew-forward:active, .hvr-skew-forward:focus, .hvr-skew-forward:hover { -webkit-transform: skew(-10deg); transform: skew(-10deg); } .hvr-skew-backward { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transform-origin: 0 100%; transform-origin: 0 100%; } .hvr-skew-backward:active, .hvr-skew-backward:focus, .hvr-skew-backward:hover { -webkit-transform: skew(10deg); transform: skew(10deg); } @-webkit-keyframes hvr-wobble-vertical { 16.65% { -webkit-transform: translateY(8px); transform: translateY(8px); } 33.3% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } 49.95% { -webkit-transform: translateY(4px); transform: translateY(4px); } 66.6% { -webkit-transform: translateY(-2px); transform: translateY(-2px); } 83.25% { -webkit-transform: translateY(1px); transform: translateY(1px); } 100% { -webkit-transform: translateY(0); transform: translateY(0); } } @keyframes hvr-wobble-vertical { 16.65% { -webkit-transform: translateY(8px); transform: translateY(8px); } 33.3% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } 49.95% { -webkit-transform: translateY(4px); transform: translateY(4px); } 66.6% { -webkit-transform: translateY(-2px); transform: translateY(-2px); } 83.25% { -webkit-transform: translateY(1px); transform: translateY(1px); } 100% { -webkit-transform: translateY(0); transform: translateY(0); } } .hvr-wobble-vertical { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-wobble-vertical:active, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:hover { -webkit-animation-name: hvr-wobble-vertical; animation-name: hvr-wobble-vertical; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-wobble-horizontal { 16.65% { -webkit-transform: translateX(8px); transform: translateX(8px); } 33.3% { -webkit-transform: translateX(-6px); transform: translateX(-6px); } 49.95% { -webkit-transform: translateX(4px); transform: translateX(4px); } 66.6% { -webkit-transform: translateX(-2px); transform: translateX(-2px); } 83.25% { -webkit-transform: translateX(1px); transform: translateX(1px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes hvr-wobble-horizontal { 16.65% { -webkit-transform: translateX(8px); transform: translateX(8px); } 33.3% { -webkit-transform: translateX(-6px); transform: translateX(-6px); } 49.95% { -webkit-transform: translateX(4px); transform: translateX(4px); } 66.6% { -webkit-transform: translateX(-2px); transform: translateX(-2px); } 83.25% { -webkit-transform: translateX(1px); transform: translateX(1px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } .hvr-wobble-horizontal { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-wobble-horizontal:active, .hvr-wobble-horizontal:focus, .hvr-wobble-horizontal:hover { -webkit-animation-name: hvr-wobble-horizontal; animation-name: hvr-wobble-horizontal; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-wobble-to-bottom-right { 16.65% { -webkit-transform: translate(8px, 8px); transform: translate(8px, 8px); } 33.3% { -webkit-transform: translate(-6px, -6px); transform: translate(-6px, -6px); } 49.95% { -webkit-transform: translate(4px, 4px); transform: translate(4px, 4px); } 66.6% { -webkit-transform: translate(-2px, -2px); transform: translate(-2px, -2px); } 83.25% { -webkit-transform: translate(1px, 1px); transform: translate(1px, 1px); } 100% { -webkit-transform: translate(0, 0); transform: translate(0, 0); } } @keyframes hvr-wobble-to-bottom-right { 16.65% { -webkit-transform: translate(8px, 8px); transform: translate(8px, 8px); } 33.3% { -webkit-transform: translate(-6px, -6px); transform: translate(-6px, -6px); } 49.95% { -webkit-transform: translate(4px, 4px); transform: translate(4px, 4px); } 66.6% { -webkit-transform: translate(-2px, -2px); transform: translate(-2px, -2px); } 83.25% { -webkit-transform: translate(1px, 1px); transform: translate(1px, 1px); } 100% { -webkit-transform: translate(0, 0); transform: translate(0, 0); } } .hvr-wobble-to-bottom-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-wobble-to-bottom-right:active, .hvr-wobble-to-bottom-right:focus, .hvr-wobble-to-bottom-right:hover { -webkit-animation-name: hvr-wobble-to-bottom-right; animation-name: hvr-wobble-to-bottom-right; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-wobble-to-top-right { 16.65% { -webkit-transform: translate(8px, -8px); transform: translate(8px, -8px); } 33.3% { -webkit-transform: translate(-6px, 6px); transform: translate(-6px, 6px); } 49.95% { -webkit-transform: translate(4px, -4px); transform: translate(4px, -4px); } 66.6% { -webkit-transform: translate(-2px, 2px); transform: translate(-2px, 2px); } 83.25% { -webkit-transform: translate(1px, -1px); transform: translate(1px, -1px); } 100% { -webkit-transform: translate(0, 0); transform: translate(0, 0); } } @keyframes hvr-wobble-to-top-right { 16.65% { -webkit-transform: translate(8px, -8px); transform: translate(8px, -8px); } 33.3% { -webkit-transform: translate(-6px, 6px); transform: translate(-6px, 6px); } 49.95% { -webkit-transform: translate(4px, -4px); transform: translate(4px, -4px); } 66.6% { -webkit-transform: translate(-2px, 2px); transform: translate(-2px, 2px); } 83.25% { -webkit-transform: translate(1px, -1px); transform: translate(1px, -1px); } 100% { -webkit-transform: translate(0, 0); transform: translate(0, 0); } } .hvr-wobble-to-top-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-wobble-to-top-right:active, .hvr-wobble-to-top-right:focus, .hvr-wobble-to-top-right:hover { -webkit-animation-name: hvr-wobble-to-top-right; animation-name: hvr-wobble-to-top-right; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-wobble-top { 16.65% { -webkit-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); transform: skew(0); } } @keyframes hvr-wobble-top { 16.65% { -webkit-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); transform: skew(0); } } .hvr-wobble-top { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transform-origin: 0 100%; transform-origin: 0 100%; } .hvr-wobble-top:active, .hvr-wobble-top:focus, .hvr-wobble-top:hover { -webkit-animation-name: hvr-wobble-top; animation-name: hvr-wobble-top; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-wobble-bottom { 16.65% { -webkit-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); transform: skew(0); } } @keyframes hvr-wobble-bottom { 16.65% { -webkit-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); transform: skew(0); } } .hvr-wobble-bottom { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transform-origin: 100% 0; transform-origin: 100% 0; } .hvr-wobble-bottom:active, .hvr-wobble-bottom:focus, .hvr-wobble-bottom:hover { -webkit-animation-name: hvr-wobble-bottom; animation-name: hvr-wobble-bottom; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-wobble-skew { 16.65% { -webkit-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); transform: skew(0); } } @keyframes hvr-wobble-skew { 16.65% { -webkit-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); transform: skew(0); } } .hvr-wobble-skew { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-wobble-skew:active, .hvr-wobble-skew:focus, .hvr-wobble-skew:hover { -webkit-animation-name: hvr-wobble-skew; animation-name: hvr-wobble-skew; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-buzz { 50% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 100% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } } @keyframes hvr-buzz { 50% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 100% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } } .hvr-buzz { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-buzz:active, .hvr-buzz:focus, .hvr-buzz:hover { -webkit-animation-name: hvr-buzz; animation-name: hvr-buzz; -webkit-animation-duration: .15s; animation-duration: .15s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; } @-webkit-keyframes hvr-buzz-out { 10% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 20% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 30% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 40% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 50% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 60% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 70% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 80% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 90% { -webkit-transform: translateX(1px) rotate(0); transform: translateX(1px) rotate(0); } 100% { -webkit-transform: translateX(-1px) rotate(0); transform: translateX(-1px) rotate(0); } } @keyframes hvr-buzz-out { 10% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 20% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 30% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 40% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 50% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 60% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 70% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 80% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 90% { -webkit-transform: translateX(1px) rotate(0); transform: translateX(1px) rotate(0); } 100% { -webkit-transform: translateX(-1px) rotate(0); transform: translateX(-1px) rotate(0); } } .hvr-buzz-out { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-buzz-out:active, .hvr-buzz-out:focus, .hvr-buzz-out:hover { -webkit-animation-name: hvr-buzz-out; animation-name: hvr-buzz-out; -webkit-animation-duration: .75s; animation-duration: .75s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } .hvr-fade { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; overflow: hidden; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: color,background-color; transition-property: color,background-color; } .hvr-fade:active, .hvr-fade:focus, .hvr-fade:hover { background-color: #2098d1; color: #fff; } @-webkit-keyframes hvr-back-pulse { 50% { background-color: rgba(32, 152, 209, 0.75); } } @keyframes hvr-back-pulse { 50% { background-color: rgba(32, 152, 209, 0.75); } } .hvr-back-pulse { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; overflow: hidden; -webkit-transition-duration: .5s; transition-duration: .5s; -webkit-transition-property: color,background-color; transition-property: color,background-color; } .hvr-back-pulse:active, .hvr-back-pulse:focus, .hvr-back-pulse:hover { -webkit-animation-name: hvr-back-pulse; animation-name: hvr-back-pulse; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-delay: .5s; animation-delay: .5s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; background-color: #2098d1; background-color: #2098d1; color: #fff; } .hvr-sweep-to-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-sweep-to-right:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: 0 50%; transform-origin: 0 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-sweep-to-right:active, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:hover { color: #fff; } .hvr-sweep-to-right:active:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:hover:before { -webkit-transform: scaleX(1); transform: scaleX(1); } .hvr-sweep-to-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-sweep-to-left:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: 100% 50%; transform-origin: 100% 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-sweep-to-left:active, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:hover { color: #fff; } .hvr-sweep-to-left:active:before, .hvr-sweep-to-left:focus:before, .hvr-sweep-to-left:hover:before { -webkit-transform: scaleX(1); transform: scaleX(1); } .hvr-sweep-to-bottom { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-sweep-to-bottom:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleY(0); transform: scaleY(0); -webkit-transform-origin: 50% 0; transform-origin: 50% 0; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-sweep-to-bottom:active, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:hover { color: #fff; } .hvr-sweep-to-bottom:active:before, .hvr-sweep-to-bottom:focus:before, .hvr-sweep-to-bottom:hover:before { -webkit-transform: scaleY(1); transform: scaleY(1); } .hvr-sweep-to-top { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-sweep-to-top:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleY(0); transform: scaleY(0); -webkit-transform-origin: 50% 100%; transform-origin: 50% 100%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-sweep-to-top:active, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:hover { color: #fff; } .hvr-sweep-to-top:active:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:hover:before { -webkit-transform: scaleY(1); transform: scaleY(1); } .hvr-bounce-to-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .5s; transition-duration: .5s; } .hvr-bounce-to-right:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: 0 50%; transform-origin: 0 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .5s; transition-duration: .5s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-bounce-to-right:active, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:hover { color: #fff; } .hvr-bounce-to-right:active:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:hover:before { -webkit-transform: scaleX(1); transform: scaleX(1); -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); } .hvr-bounce-to-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .5s; transition-duration: .5s; } .hvr-bounce-to-left:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: 100% 50%; transform-origin: 100% 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .5s; transition-duration: .5s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-bounce-to-left:active, .hvr-bounce-to-left:focus, .hvr-bounce-to-left:hover { color: #fff; } .hvr-bounce-to-left:active:before, .hvr-bounce-to-left:focus:before, .hvr-bounce-to-left:hover:before { -webkit-transform: scaleX(1); transform: scaleX(1); -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); } .hvr-bounce-to-bottom { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .5s; transition-duration: .5s; } .hvr-bounce-to-bottom:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleY(0); transform: scaleY(0); -webkit-transform-origin: 50% 0; transform-origin: 50% 0; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .5s; transition-duration: .5s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-bounce-to-bottom:active, .hvr-bounce-to-bottom:focus, .hvr-bounce-to-bottom:hover { color: #fff; } .hvr-bounce-to-bottom:active:before, .hvr-bounce-to-bottom:focus:before, .hvr-bounce-to-bottom:hover:before { -webkit-transform: scaleY(1); transform: scaleY(1); -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); } .hvr-bounce-to-top { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .5s; transition-duration: .5s; } .hvr-bounce-to-top:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleY(0); transform: scaleY(0); -webkit-transform-origin: 50% 100%; transform-origin: 50% 100%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .5s; transition-duration: .5s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-bounce-to-top:active, .hvr-bounce-to-top:focus, .hvr-bounce-to-top:hover { color: #fff; } .hvr-bounce-to-top:active:before, .hvr-bounce-to-top:focus:before, .hvr-bounce-to-top:hover:before { -webkit-transform: scaleY(1); transform: scaleY(1); -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); } .hvr-radial-out { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; background: #e1e1e1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-radial-out:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; border-radius: 100%; -webkit-transform: scale(0); transform: scale(0); -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-radial-out:active, .hvr-radial-out:focus, .hvr-radial-out:hover { color: #fff; } .hvr-radial-out:active:before, .hvr-radial-out:focus:before, .hvr-radial-out:hover:before { -webkit-transform: scale(2); transform: scale(2); } .hvr-radial-in { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; background: #2098d1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-radial-in:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #e1e1e1; border-radius: 100%; -webkit-transform: scale(2); transform: scale(2); -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-radial-in:active, .hvr-radial-in:focus, .hvr-radial-in:hover { color: #fff; } .hvr-radial-in:active:before, .hvr-radial-in:focus:before, .hvr-radial-in:hover:before { -webkit-transform: scale(0); transform: scale(0); } .hvr-rectangle-in { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; background: #2098d1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-rectangle-in:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #e1e1e1; -webkit-transform: scale(1); transform: scale(1); -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-rectangle-in:active, .hvr-rectangle-in:focus, .hvr-rectangle-in:hover { color: #fff; } .hvr-rectangle-in:active:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:hover:before { -webkit-transform: scale(0); transform: scale(0); } .hvr-rectangle-out { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; background: #e1e1e1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-rectangle-out:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scale(0); transform: scale(0); -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-rectangle-out:active, .hvr-rectangle-out:focus, .hvr-rectangle-out:hover { color: #fff; } .hvr-rectangle-out:active:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:hover:before { -webkit-transform: scale(1); transform: scale(1); } .hvr-shutter-in-horizontal { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; background: #2098d1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-shutter-in-horizontal:before { content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 0; right: 0; background: #e1e1e1; -webkit-transform: scaleX(1); transform: scaleX(1); -webkit-transform-origin: 50%; transform-origin: 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-shutter-in-horizontal:active, .hvr-shutter-in-horizontal:focus, .hvr-shutter-in-horizontal:hover { color: #fff; } .hvr-shutter-in-horizontal:active:before, .hvr-shutter-in-horizontal:focus:before, .hvr-shutter-in-horizontal:hover:before { -webkit-transform: scaleX(0); transform: scaleX(0); } .hvr-shutter-out-horizontal { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; background: #e1e1e1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-shutter-out-horizontal:before { content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 0; right: 0; background: #2098d1; -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: 50%; transform-origin: 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-shutter-out-horizontal:active, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:hover { color: #fff; } .hvr-shutter-out-horizontal:active:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:hover:before { -webkit-transform: scaleX(1); transform: scaleX(1); } .hvr-shutter-in-vertical { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; background: #2098d1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-shutter-in-vertical:before { content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 0; right: 0; background: #e1e1e1; -webkit-transform: scaleY(1); transform: scaleY(1); -webkit-transform-origin: 50%; transform-origin: 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-shutter-in-vertical:active, .hvr-shutter-in-vertical:focus, .hvr-shutter-in-vertical:hover { color: #fff; } .hvr-shutter-in-vertical:active:before, .hvr-shutter-in-vertical:focus:before, .hvr-shutter-in-vertical:hover:before { -webkit-transform: scaleY(0); transform: scaleY(0); } .hvr-shutter-out-vertical { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; background: #e1e1e1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-shutter-out-vertical:before { content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 0; right: 0; background: #2098d1; -webkit-transform: scaleY(0); transform: scaleY(0); -webkit-transform-origin: 50%; transform-origin: 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-shutter-out-vertical:active, .hvr-shutter-out-vertical:focus, .hvr-shutter-out-vertical:hover { color: #fff; } .hvr-shutter-out-vertical:active:before, .hvr-shutter-out-vertical:focus:before, .hvr-shutter-out-vertical:hover:before { -webkit-transform: scaleY(1); transform: scaleY(1); } .hvr-border-fade { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: box-shadow; transition-property: box-shadow; box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px transparent; } .hvr-border-fade:active, .hvr-border-fade:focus, .hvr-border-fade:hover { box-shadow: inset 0 0 0 4px #2098d1, 0 0 1px transparent; } .hvr-hollow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: background; transition-property: background; box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px transparent; } .hvr-hollow:active, .hvr-hollow:focus, .hvr-hollow:hover { background: 0 0; } .hvr-trim { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-trim:before { content: ''; position: absolute; border: #fff solid 4px; top: 4px; left: 4px; right: 4px; bottom: 4px; opacity: 0; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: opacity; transition-property: opacity; } .hvr-trim:active:before, .hvr-trim:focus:before, .hvr-trim:hover:before { opacity: 1; } @-webkit-keyframes hvr-ripple-out { 100% { top: -12px; right: -12px; bottom: -12px; left: -12px; opacity: 0; } } @keyframes hvr-ripple-out { 100% { top: -12px; right: -12px; bottom: -12px; left: -12px; opacity: 0; } } .hvr-ripple-out { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-ripple-out:before { content: ''; position: absolute; border: #e1e1e1 solid 6px; top: 0; right: 0; bottom: 0; left: 0; -webkit-animation-duration: 1s; animation-duration: 1s; } .hvr-ripple-out:active:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:hover:before { -webkit-animation-name: hvr-ripple-out; animation-name: hvr-ripple-out; } @-webkit-keyframes hvr-ripple-in { 100% { top: 0; right: 0; bottom: 0; left: 0; opacity: 1; } } @keyframes hvr-ripple-in { 100% { top: 0; right: 0; bottom: 0; left: 0; opacity: 1; } } .hvr-ripple-in { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-ripple-in:before { content: ''; position: absolute; border: #e1e1e1 solid 4px; top: -12px; right: -12px; bottom: -12px; left: -12px; opacity: 0; -webkit-animation-duration: 1s; animation-duration: 1s; } .hvr-ripple-in:active:before, .hvr-ripple-in:focus:before, .hvr-ripple-in:hover:before { -webkit-animation-name: hvr-ripple-in; animation-name: hvr-ripple-in; } .hvr-outline-out { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-outline-out:before { content: ''; position: absolute; border: #e1e1e1 solid 4px; top: 0; right: 0; bottom: 0; left: 0; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: top,right,bottom,left; transition-property: top,right,bottom,left; } .hvr-outline-out:active:before, .hvr-outline-out:focus:before, .hvr-outline-out:hover:before { top: -8px; right: -8px; bottom: -8px; left: -8px; } .hvr-outline-in { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-outline-in:before { pointer-events: none; content: ''; position: absolute; border: #e1e1e1 solid 4px; top: -16px; right: -16px; bottom: -16px; left: -16px; opacity: 0; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: top,right,bottom,left; transition-property: top,right,bottom,left; } .hvr-outline-in:active:before, .hvr-outline-in:focus:before, .hvr-outline-in:hover:before { top: -8px; right: -8px; bottom: -8px; left: -8px; opacity: 1; } .hvr-round-corners { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: border-radius; transition-property: border-radius; } .hvr-round-corners:active, .hvr-round-corners:focus, .hvr-round-corners:hover { border-radius: 1em; } .hvr-underline-from-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-underline-from-left:before { content: ""; position: absolute; z-index: -1; left: 0; right: 100%; bottom: 0; background: #2098d1; height: 4px; -webkit-transition-property: right; transition-property: right; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-underline-from-left:active:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:hover:before { right: 0; } .hvr-underline-from-center { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-underline-from-center:before { content: ""; position: absolute; z-index: -1; left: 50%; right: 50%; bottom: 0; background: #2098d1; height: 4px; -webkit-transition-property: left,right; transition-property: left,right; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-underline-from-center:active:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:hover:before { left: 0; right: 0; } .hvr-underline-from-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-underline-from-right:before { content: ""; position: absolute; z-index: -1; left: 100%; right: 0; bottom: 0; background: #2098d1; height: 4px; -webkit-transition-property: left; transition-property: left; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-underline-from-right:active:before, .hvr-underline-from-right:focus:before, .hvr-underline-from-right:hover:before { left: 0; } .hvr-overline-from-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-overline-from-left:before { content: ""; position: absolute; z-index: -1; left: 0; right: 100%; top: 0; background: #2098d1; height: 4px; -webkit-transition-property: right; transition-property: right; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-overline-from-left:active:before, .hvr-overline-from-left:focus:before, .hvr-overline-from-left:hover:before { right: 0; } .hvr-overline-from-center { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-overline-from-center:before { content: ""; position: absolute; z-index: -1; left: 50%; right: 50%; top: 0; background: #2098d1; height: 4px; -webkit-transition-property: left,right; transition-property: left,right; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-overline-from-center:active:before, .hvr-overline-from-center:focus:before, .hvr-overline-from-center:hover:before { left: 0; right: 0; } .hvr-overline-from-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-overline-from-right:before { content: ""; position: absolute; z-index: -1; left: 100%; right: 0; top: 0; background: #2098d1; height: 4px; -webkit-transition-property: left; transition-property: left; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-overline-from-right:active:before, .hvr-overline-from-right:focus:before, .hvr-overline-from-right:hover:before { left: 0; } .hvr-reveal { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-reveal:before { content: ""; position: absolute; z-index: -1; left: 0; right: 0; top: 0; bottom: 0; border-color: #2098d1; border-style: solid; border-width: 0; -webkit-transition-property: border-width; transition-property: border-width; -webkit-transition-duration: .1s; transition-duration: .1s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-reveal:active:before, .hvr-reveal:focus:before, .hvr-reveal:hover:before { -webkit-transform: translateY(0); transform: translateY(0); border-width: 4px; } .hvr-underline-reveal { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-underline-reveal:before { content: ""; position: absolute; z-index: -1; left: 0; right: 0; bottom: 0; background: #2098d1; height: 4px; -webkit-transform: translateY(4px); transform: translateY(4px); -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-underline-reveal:active:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:hover:before { -webkit-transform: translateY(0); transform: translateY(0); } .hvr-overline-reveal { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-overline-reveal:before { content: ""; position: absolute; z-index: -1; left: 0; right: 0; top: 0; background: #2098d1; height: 4px; -webkit-transform: translateY(-4px); transform: translateY(-4px); -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-overline-reveal:active:before, .hvr-overline-reveal:focus:before, .hvr-overline-reveal:hover:before { -webkit-transform: translateY(0); transform: translateY(0); } .hvr-glow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: box-shadow; transition-property: box-shadow; } .hvr-glow:active, .hvr-glow:focus, .hvr-glow:hover { box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); } .hvr-shadow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: box-shadow; transition-property: box-shadow; } .hvr-shadow:active, .hvr-shadow:focus, .hvr-shadow:hover { box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5); } .hvr-grow-shadow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: box-shadow,transform; transition-property: box-shadow,transform; } .hvr-grow-shadow:active, .hvr-grow-shadow:focus, .hvr-grow-shadow:hover { box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5); -webkit-transform: scale(1.1); transform: scale(1.1); } .hvr-box-shadow-outset { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: box-shadow; transition-property: box-shadow; } .hvr-box-shadow-outset:active, .hvr-box-shadow-outset:focus, .hvr-box-shadow-outset:hover { box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6); } .hvr-box-shadow-inset { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: box-shadow; transition-property: box-shadow; box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px transparent; } .hvr-box-shadow-inset:active, .hvr-box-shadow-inset:focus, .hvr-box-shadow-inset:hover { box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px transparent; } .hvr-float-shadow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-float-shadow:before { pointer-events: none; position: absolute; z-index: -1; content: ''; top: 100%; left: 5%; height: 10px; width: 90%; opacity: 0; background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0, transparent 80%); background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0, transparent 80%); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform,opacity; transition-property: transform,opacity; } .hvr-float-shadow:active, .hvr-float-shadow:focus, .hvr-float-shadow:hover { -webkit-transform: translateY(-5px); transform: translateY(-5px); } .hvr-float-shadow:active:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:hover:before { opacity: 1; -webkit-transform: translateY(5px); transform: translateY(5px); } .hvr-shadow-radial { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-shadow-radial:after, .hvr-shadow-radial:before { pointer-events: none; position: absolute; content: ''; left: 0; width: 100%; box-sizing: border-box; height: 5px; opacity: 0; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: opacity; transition-property: opacity; } .hvr-shadow-radial:before { bottom: 100%; background: -webkit-radial-gradient(50% 150%, ellipse, rgba(0, 0, 0, 0.6) 0, transparent 80%); background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0, transparent 80%); } .hvr-shadow-radial:after { top: 100%; background: -webkit-radial-gradient(50% -50%, ellipse, rgba(0, 0, 0, 0.6) 0, transparent 80%); background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0, transparent 80%); } .hvr-shadow-radial:active:after, .hvr-shadow-radial:active:before, .hvr-shadow-radial:focus:after, .hvr-shadow-radial:focus:before, .hvr-shadow-radial:hover:after, .hvr-shadow-radial:hover:before { opacity: 1; } .hvr-bubble-top { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-bubble-top:before { pointer-events: none; position: absolute; z-index: -1; content: ''; border-style: solid; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; left: calc(50% - 10px); top: 0; border-width: 0 10px 10px; border-color: transparent transparent #e1e1e1; } .hvr-bubble-top:active:before, .hvr-bubble-top:focus:before, .hvr-bubble-top:hover:before { -webkit-transform: translateY(-10px); transform: translateY(-10px); } .hvr-bubble-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-bubble-right:before { pointer-events: none; position: absolute; z-index: -1; content: ''; border-style: solid; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; top: calc(50% - 10px); right: 0; border-width: 10px 0 10px 10px; border-color: transparent transparent transparent #e1e1e1; } .hvr-bubble-right:active:before, .hvr-bubble-right:focus:before, .hvr-bubble-right:hover:before { -webkit-transform: translateX(10px); transform: translateX(10px); } .hvr-bubble-bottom { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-bubble-bottom:before { pointer-events: none; position: absolute; z-index: -1; content: ''; border-style: solid; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; left: calc(50% - 10px); bottom: 0; border-width: 10px 10px 0; border-color: #e1e1e1 transparent transparent; } .hvr-bubble-bottom:active:before, .hvr-bubble-bottom:focus:before, .hvr-bubble-bottom:hover:before { -webkit-transform: translateY(10px); transform: translateY(10px); } .hvr-bubble-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-bubble-left:before { pointer-events: none; position: absolute; z-index: -1; content: ''; border-style: solid; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; top: calc(50% - 10px); left: 0; border-width: 10px 10px 10px 0; border-color: transparent #e1e1e1 transparent transparent; } .hvr-bubble-left:active:before, .hvr-bubble-left:focus:before, .hvr-bubble-left:hover:before { -webkit-transform: translateX(-10px); transform: translateX(-10px); } .hvr-bubble-float-top { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-top:before { position: absolute; z-index: -1; content: ''; left: calc(50% - 10px); top: 0; border-style: solid; border-width: 0 10px 10px; border-color: transparent transparent #e1e1e1; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-top:active, .hvr-bubble-float-top:focus, .hvr-bubble-float-top:hover { -webkit-transform: translateY(10px); transform: translateY(10px); } .hvr-bubble-float-top:active:before, .hvr-bubble-float-top:focus:before, .hvr-bubble-float-top:hover:before { -webkit-transform: translateY(-10px); transform: translateY(-10px); } .hvr-bubble-float-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-right:before { position: absolute; z-index: -1; top: calc(50% - 10px); right: 0; content: ''; border-style: solid; border-width: 10px 0 10px 10px; border-color: transparent transparent transparent #e1e1e1; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-right:active, .hvr-bubble-float-right:focus, .hvr-bubble-float-right:hover { -webkit-transform: translateX(-10px); transform: translateX(-10px); } .hvr-bubble-float-right:active:before, .hvr-bubble-float-right:focus:before, .hvr-bubble-float-right:hover:before { -webkit-transform: translateX(10px); transform: translateX(10px); } .hvr-bubble-float-bottom { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-bottom:before { position: absolute; z-index: -1; content: ''; left: calc(50% - 10px); bottom: 0; border-style: solid; border-width: 10px 10px 0; border-color: #e1e1e1 transparent transparent; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-bottom:active, .hvr-bubble-float-bottom:focus, .hvr-bubble-float-bottom:hover { -webkit-transform: translateY(-10px); transform: translateY(-10px); } .hvr-bubble-float-bottom:active:before, .hvr-bubble-float-bottom:focus:before, .hvr-bubble-float-bottom:hover:before { -webkit-transform: translateY(10px); transform: translateY(10px); } .hvr-bubble-float-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-left:before { position: absolute; z-index: -1; content: ''; top: calc(50% - 10px); left: 0; border-style: solid; border-width: 10px 10px 10px 0; border-color: transparent #e1e1e1 transparent transparent; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-left:active, .hvr-bubble-float-left:focus, .hvr-bubble-float-left:hover { -webkit-transform: translateX(10px); transform: translateX(10px); } .hvr-bubble-float-left:active:before, .hvr-bubble-float-left:focus:before, .hvr-bubble-float-left:hover:before { -webkit-transform: translateX(-10px); transform: translateX(-10px); } .hvr-icon-back { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-left: 2.2em; -webkit-transition-duration: .1s; transition-duration: .1s; } .hvr-icon-back:before { content: "\f137"; position: absolute; left: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .1s; transition-duration: .1s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-back:active:before, .hvr-icon-back:focus:before, .hvr-icon-back:hover:before { -webkit-transform: translateX(-4px); transform: translateX(-4px); } .hvr-icon-forward { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .1s; transition-duration: .1s; } .hvr-icon-forward:before { content: "\f138"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .1s; transition-duration: .1s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-forward:active:before, .hvr-icon-forward:focus:before, .hvr-icon-forward:hover:before { -webkit-transform: translateX(4px); transform: translateX(4px); } @-webkit-keyframes hvr-icon-down { 0%,100%,50% { -webkit-transform: translateY(0); transform: translateY(0); } 25%,75% { -webkit-transform: translateY(6px); transform: translateY(6px); } } @keyframes hvr-icon-down { 0%,100%,50% { -webkit-transform: translateY(0); transform: translateY(0); } 25%,75% { -webkit-transform: translateY(6px); transform: translateY(6px); } } .hvr-icon-down { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-down:before { content: "\f01a"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-down:active:before, .hvr-icon-down:focus:before, .hvr-icon-down:hover:before { -webkit-animation-name: hvr-icon-down; animation-name: hvr-icon-down; -webkit-animation-duration: .75s; animation-duration: .75s; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } @-webkit-keyframes hvr-icon-up { 0%,100%,50% { -webkit-transform: translateY(0); transform: translateY(0); } 25%,75% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } } @keyframes hvr-icon-up { 0%,100%,50% { -webkit-transform: translateY(0); transform: translateY(0); } 25%,75% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } } .hvr-icon-up { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-up:before { content: "\f01b"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-up:active:before, .hvr-icon-up:focus:before, .hvr-icon-up:hover:before { -webkit-animation-name: hvr-icon-up; animation-name: hvr-icon-up; -webkit-animation-duration: .75s; animation-duration: .75s; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } .hvr-icon-spin { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-spin:before { content: "\f021"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transition-duration: 1s; transition-duration: 1s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .hvr-icon-spin:active:before, .hvr-icon-spin:focus:before, .hvr-icon-spin:hover:before { -webkit-transform: rotate(360deg); transform: rotate(360deg); } @-webkit-keyframes hvr-icon-drop { 0% { opacity: 0; } 50% { opacity: 0; -webkit-transform: translateY(-100%); transform: translateY(-100%); } 100%,51% { opacity: 1; } } @keyframes hvr-icon-drop { 0% { opacity: 0; } 50% { opacity: 0; -webkit-transform: translateY(-100%); transform: translateY(-100%); } 100%,51% { opacity: 1; } } .hvr-icon-drop { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-drop:before { content: "\f041"; position: absolute; right: 1em; opacity: 1; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-drop:active:before, .hvr-icon-drop:focus:before, .hvr-icon-drop:hover:before { opacity: 0; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-animation-name: hvr-icon-drop; animation-name: hvr-icon-drop; -webkit-animation-duration: .5s; animation-duration: .5s; -webkit-animation-delay: .3s; animation-delay: .3s; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); } .hvr-icon-fade { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-fade:before { content: "\f00c"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .5s; transition-duration: .5s; -webkit-transition-property: color; transition-property: color; } .hvr-icon-fade:active:before, .hvr-icon-fade:focus:before, .hvr-icon-fade:hover:before { color: #0F9E5E; } @-webkit-keyframes hvr-icon-float-away { 0% { opacity: 1; } 100% { opacity: 0; -webkit-transform: translateY(-1em); transform: translateY(-1em); } } @keyframes hvr-icon-float-away { 0% { opacity: 1; } 100% { opacity: 0; -webkit-transform: translateY(-1em); transform: translateY(-1em); } } .hvr-icon-float-away { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-float-away:after, .hvr-icon-float-away:before { content: "\f055"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; } .hvr-icon-float-away:after { opacity: 0; -webkit-animation-duration: .5s; animation-duration: .5s; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; } .hvr-icon-float-away:active:after, .hvr-icon-float-away:focus:after, .hvr-icon-float-away:hover:after { -webkit-animation-name: hvr-icon-float-away; animation-name: hvr-icon-float-away; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } @-webkit-keyframes hvr-icon-sink-away { 0% { opacity: 1; } 100% { opacity: 0; -webkit-transform: translateY(1em); transform: translateY(1em); } } @keyframes hvr-icon-sink-away { 0% { opacity: 1; } 100% { opacity: 0; -webkit-transform: translateY(1em); transform: translateY(1em); } } .hvr-icon-sink-away { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-sink-away:after, .hvr-icon-sink-away:before { content: "\f056"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-sink-away:after { opacity: 0; -webkit-animation-duration: .5s; animation-duration: .5s; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; } .hvr-icon-sink-away:active:after, .hvr-icon-sink-away:focus:after, .hvr-icon-sink-away:hover:after { -webkit-animation-name: hvr-icon-sink-away; animation-name: hvr-icon-sink-away; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } .hvr-icon-grow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-grow:before { content: "\f118"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-grow:active:before, .hvr-icon-grow:focus:before, .hvr-icon-grow:hover:before { -webkit-transform: scale(1.3) translateZ(0); transform: scale(1.3) translateZ(0); } .hvr-icon-shrink { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-shrink:before { content: "\f119"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-shrink:active:before, .hvr-icon-shrink:focus:before, .hvr-icon-shrink:hover:before { -webkit-transform: scale(0.8); transform: scale(0.8); } @-webkit-keyframes hvr-icon-pulse { 25% { -webkit-transform: scale(1.3); transform: scale(1.3); } 75% { -webkit-transform: scale(0.8); transform: scale(0.8); } } @keyframes hvr-icon-pulse { 25% { -webkit-transform: scale(1.3); transform: scale(1.3); } 75% { -webkit-transform: scale(0.8); transform: scale(0.8); } } .hvr-icon-pulse { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-pulse:before { content: "\f015"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-pulse:active:before, .hvr-icon-pulse:focus:before, .hvr-icon-pulse:hover:before { -webkit-animation-name: hvr-icon-pulse; animation-name: hvr-icon-pulse; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; } @-webkit-keyframes hvr-icon-pulse-grow { to { -webkit-transform: scale(1.3); transform: scale(1.3); } } @keyframes hvr-icon-pulse-grow { to { -webkit-transform: scale(1.3); transform: scale(1.3); } } .hvr-icon-pulse-grow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-pulse-grow:before { content: "\f015"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-pulse-grow:active:before, .hvr-icon-pulse-grow:focus:before, .hvr-icon-pulse-grow:hover:before { -webkit-animation-name: hvr-icon-pulse-grow; animation-name: hvr-icon-pulse-grow; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-direction: alternate; animation-direction: alternate; } @-webkit-keyframes hvr-icon-pulse-shrink { to { -webkit-transform: scale(0.8); transform: scale(0.8); } } @keyframes hvr-icon-pulse-shrink { to { -webkit-transform: scale(0.8); transform: scale(0.8); } } .hvr-icon-pulse-shrink { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-pulse-shrink:before { content: "\f015"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-pulse-shrink:active:before, .hvr-icon-pulse-shrink:focus:before, .hvr-icon-pulse-shrink:hover:before { -webkit-animation-name: hvr-icon-pulse-shrink; animation-name: hvr-icon-pulse-shrink; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-direction: alternate; animation-direction: alternate; } @-webkit-keyframes hvr-icon-push { 50% { -webkit-transform: scale(0.5); transform: scale(0.5); } } @keyframes hvr-icon-push { 50% { -webkit-transform: scale(0.5); transform: scale(0.5); } } .hvr-icon-push { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-push:before { content: "\f006"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-push:active:before, .hvr-icon-push:focus:before, .hvr-icon-push:hover:before { -webkit-animation-name: hvr-icon-push; animation-name: hvr-icon-push; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-icon-pop { 50% { -webkit-transform: scale(1.5); transform: scale(1.5); } } @keyframes hvr-icon-pop { 50% { -webkit-transform: scale(1.5); transform: scale(1.5); } } .hvr-icon-pop { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-pop:before { content: "\f005"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-pop:active:before, .hvr-icon-pop:focus:before, .hvr-icon-pop:hover:before { -webkit-animation-name: hvr-icon-pop; animation-name: hvr-icon-pop; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } .hvr-icon-bounce { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-bounce:before { content: "\f087"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-bounce:active:before, .hvr-icon-bounce:focus:before, .hvr-icon-bounce:hover:before { -webkit-transform: scale(1.5); transform: scale(1.5); -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); } .hvr-icon-rotate { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-rotate:before { content: "\f0c6"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-rotate:active:before, .hvr-icon-rotate:focus:before, .hvr-icon-rotate:hover:before { -webkit-transform: rotate(20deg); transform: rotate(20deg); } .hvr-icon-grow-rotate { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-grow-rotate:before { content: "\f095"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-grow-rotate:active:before, .hvr-icon-grow-rotate:focus:before, .hvr-icon-grow-rotate:hover:before { -webkit-transform: scale(1.5) rotate(12deg); transform: scale(1.5) rotate(12deg); } .hvr-icon-float { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-float:before { content: "\f01b"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-float:active:before, .hvr-icon-float:focus:before, .hvr-icon-float:hover:before { -webkit-transform: translateY(-4px); transform: translateY(-4px); } .hvr-icon-sink { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-sink:before { content: "\f01a"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-sink:active:before, .hvr-icon-sink:focus:before, .hvr-icon-sink:hover:before { -webkit-transform: translateY(4px); transform: translateY(4px); } @-webkit-keyframes hvr-icon-bob { 0% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } 50% { -webkit-transform: translateY(-2px); transform: translateY(-2px); } 100% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } } @keyframes hvr-icon-bob { 0% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } 50% { -webkit-transform: translateY(-2px); transform: translateY(-2px); } 100% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } } @-webkit-keyframes hvr-icon-bob-float { 100% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } } @keyframes hvr-icon-bob-float { 100% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } } .hvr-icon-bob { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-bob:before { content: "\f077"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-bob:active:before, .hvr-icon-bob:focus:before, .hvr-icon-bob:hover:before { -webkit-animation-name: hvr-icon-bob-float,hvr-icon-bob; animation-name: hvr-icon-bob-float,hvr-icon-bob; -webkit-animation-duration: .3s,1.5s; animation-duration: .3s,1.5s; -webkit-animation-delay: 0s,.3s; animation-delay: 0s,.3s; -webkit-animation-timing-function: ease-out,ease-in-out; animation-timing-function: ease-out,ease-in-out; -webkit-animation-iteration-count: 1,infinite; animation-iteration-count: 1,infinite; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-animation-direction: normal,alternate; animation-direction: normal,alternate; } @-webkit-keyframes hvr-icon-hang { 0% { -webkit-transform: translateY(6px); transform: translateY(6px); } 50% { -webkit-transform: translateY(2px); transform: translateY(2px); } 100% { -webkit-transform: translateY(6px); transform: translateY(6px); } } @keyframes hvr-icon-hang { 0% { -webkit-transform: translateY(6px); transform: translateY(6px); } 50% { -webkit-transform: translateY(2px); transform: translateY(2px); } 100% { -webkit-transform: translateY(6px); transform: translateY(6px); } } @-webkit-keyframes hvr-icon-hang-sink { 100% { -webkit-transform: translateY(6px); transform: translateY(6px); } } @keyframes hvr-icon-hang-sink { 100% { -webkit-transform: translateY(6px); transform: translateY(6px); } } .hvr-icon-hang { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-hang:before { content: "\f078"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-hang:active:before, .hvr-icon-hang:focus:before, .hvr-icon-hang:hover:before { -webkit-animation-name: hvr-icon-hang-sink,hvr-icon-hang; animation-name: hvr-icon-hang-sink,hvr-icon-hang; -webkit-animation-duration: .3s,1.5s; animation-duration: .3s,1.5s; -webkit-animation-delay: 0s,.3s; animation-delay: 0s,.3s; -webkit-animation-timing-function: ease-out,ease-in-out; animation-timing-function: ease-out,ease-in-out; -webkit-animation-iteration-count: 1,infinite; animation-iteration-count: 1,infinite; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-animation-direction: normal,alternate; animation-direction: normal,alternate; } @-webkit-keyframes hvr-icon-wobble-horizontal { 16.65% { -webkit-transform: translateX(6px); transform: translateX(6px); } 33.3% { -webkit-transform: translateX(-5px); transform: translateX(-5px); } 49.95% { -webkit-transform: translateX(4px); transform: translateX(4px); } 66.6% { -webkit-transform: translateX(-2px); transform: translateX(-2px); } 83.25% { -webkit-transform: translateX(1px); transform: translateX(1px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes hvr-icon-wobble-horizontal { 16.65% { -webkit-transform: translateX(6px); transform: translateX(6px); } 33.3% { -webkit-transform: translateX(-5px); transform: translateX(-5px); } 49.95% { -webkit-transform: translateX(4px); transform: translateX(4px); } 66.6% { -webkit-transform: translateX(-2px); transform: translateX(-2px); } 83.25% { -webkit-transform: translateX(1px); transform: translateX(1px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } .hvr-icon-wobble-horizontal { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-wobble-horizontal:before { content: "\f061"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-wobble-horizontal:active:before, .hvr-icon-wobble-horizontal:focus:before, .hvr-icon-wobble-horizontal:hover:before { -webkit-animation-name: hvr-icon-wobble-horizontal; animation-name: hvr-icon-wobble-horizontal; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-icon-wobble-vertical { 16.65% { -webkit-transform: translateY(6px); transform: translateY(6px); } 33.3% { -webkit-transform: translateY(-5px); transform: translateY(-5px); } 49.95% { -webkit-transform: translateY(4px); transform: translateY(4px); } 66.6% { -webkit-transform: translateY(-2px); transform: translateY(-2px); } 83.25% { -webkit-transform: translateY(1px); transform: translateY(1px); } 100% { -webkit-transform: translateY(0); transform: translateY(0); } } @keyframes hvr-icon-wobble-vertical { 16.65% { -webkit-transform: translateY(6px); transform: translateY(6px); } 33.3% { -webkit-transform: translateY(-5px); transform: translateY(-5px); } 49.95% { -webkit-transform: translateY(4px); transform: translateY(4px); } 66.6% { -webkit-transform: translateY(-2px); transform: translateY(-2px); } 83.25% { -webkit-transform: translateY(1px); transform: translateY(1px); } 100% { -webkit-transform: translateY(0); transform: translateY(0); } } .hvr-icon-wobble-vertical { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-wobble-vertical:before { content: "\f062"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-wobble-vertical:active:before, .hvr-icon-wobble-vertical:focus:before, .hvr-icon-wobble-vertical:hover:before { -webkit-animation-name: hvr-icon-wobble-vertical; animation-name: hvr-icon-wobble-vertical; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-icon-buzz { 50% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 100% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } } @keyframes hvr-icon-buzz { 50% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 100% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } } .hvr-icon-buzz { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-buzz:before { content: "\f017"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-buzz:active:before, .hvr-icon-buzz:focus:before, .hvr-icon-buzz:hover:before { -webkit-animation-name: hvr-icon-buzz; animation-name: hvr-icon-buzz; -webkit-animation-duration: .15s; animation-duration: .15s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; } @-webkit-keyframes hvr-icon-buzz-out { 10% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 20% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 30% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 40% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 50% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 60% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 70% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 80% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 90% { -webkit-transform: translateX(1px) rotate(0); transform: translateX(1px) rotate(0); } 100% { -webkit-transform: translateX(-1px) rotate(0); transform: translateX(-1px) rotate(0); } } @keyframes hvr-icon-buzz-out { 10% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 20% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 30% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 40% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 50% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 60% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 70% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 80% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 90% { -webkit-transform: translateX(1px) rotate(0); transform: translateX(1px) rotate(0); } 100% { -webkit-transform: translateX(-1px) rotate(0); transform: translateX(-1px) rotate(0); } } .hvr-icon-buzz-out { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-buzz-out:before { content: "\f023"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-buzz-out:active:before, .hvr-icon-buzz-out:focus:before, .hvr-icon-buzz-out:hover:before { -webkit-animation-name: hvr-icon-buzz-out; animation-name: hvr-icon-buzz-out; -webkit-animation-duration: .75s; animation-duration: .75s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } .hvr-curl-top-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-curl-top-left:before { pointer-events: none; position: absolute; content: ''; height: 0; width: 0; top: 0; left: 0; background: #fff; background: linear-gradient(135deg, #fff 45%, #aaa 50%, #ccc 56%, #fff 80%); filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#ffffff', endColorstr='#000000'); z-index: 1000; box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: width,height; transition-property: width,height; } .hvr-curl-top-left:active:before, .hvr-curl-top-left:focus:before, .hvr-curl-top-left:hover:before { width: 25px; height: 25px; } .hvr-curl-top-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-curl-top-right:before { pointer-events: none; position: absolute; content: ''; height: 0; width: 0; top: 0; right: 0; background: #fff; background: linear-gradient(225deg, #fff 45%, #aaa 50%, #ccc 56%, #fff 80%); box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: width,height; transition-property: width,height; } .hvr-curl-top-right:active:before, .hvr-curl-top-right:focus:before, .hvr-curl-top-right:hover:before { width: 25px; height: 25px; } .hvr-curl-bottom-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-curl-bottom-right:before { pointer-events: none; position: absolute; content: ''; height: 0; width: 0; bottom: 0; right: 0; background: #fff; background: linear-gradient(315deg, #fff 45%, #aaa 50%, #ccc 56%, #fff 80%); box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: width,height; transition-property: width,height; } .hvr-curl-bottom-right:active:before, .hvr-curl-bottom-right:focus:before, .hvr-curl-bottom-right:hover:before { width: 25px; height: 25px; } .hvr-curl-bottom-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-curl-bottom-left:before { pointer-events: none; position: absolute; content: ''; height: 0; width: 0; bottom: 0; left: 0; background: #fff; background: linear-gradient(45deg, #fff 45%, #aaa 50%, #ccc 56%, #fff 80%); box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.4); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: width,height; transition-property: width,height; } .hvr-curl-bottom-left:active:before, .hvr-curl-bottom-left:focus:before, .hvr-curl-bottom-left:hover:before { width: 25px; height: 25px; } /*! * animate.css -http://daneden.me/animate * Version - 3.5.1 * Licensed under the MIT license - http://opensource.org/licenses/MIT * * Copyright (c) 2016 <NAME> */ .animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; } .animated.infinite { -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; } .animated.hinge { -webkit-animation-duration: 2s; animation-duration: 2s; } .animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY { -webkit-animation-duration: .75s; animation-duration: .75s; } @-webkit-keyframes bounce { 0%,20%,53%,80%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); -webkit-transform: translateZ(0); transform: translateZ(0); } 40%,43% { -webkit-transform: translate3d(0, -30px, 0); transform: translate3d(0, -30px, 0); } 40%,43%,70% { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); } 70% { -webkit-transform: translate3d(0, -15px, 0); transform: translate3d(0, -15px, 0); } 90% { -webkit-transform: translate3d(0, -4px, 0); transform: translate3d(0, -4px, 0); } } @keyframes bounce { 0%,20%,53%,80%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); -webkit-transform: translateZ(0); transform: translateZ(0); } 40%,43% { -webkit-transform: translate3d(0, -30px, 0); transform: translate3d(0, -30px, 0); } 40%,43%,70% { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); } 70% { -webkit-transform: translate3d(0, -15px, 0); transform: translate3d(0, -15px, 0); } 90% { -webkit-transform: translate3d(0, -4px, 0); transform: translate3d(0, -4px, 0); } } .bounce { -webkit-animation-name: bounce; animation-name: bounce; -webkit-transform-origin: center bottom; transform-origin: center bottom; } @-webkit-keyframes flash { 0%,50%,to { opacity: 1; } 25%,75% { opacity: 0; } } @keyframes flash { 0%,50%,to { opacity: 1; } 25%,75% { opacity: 0; } } .flash { -webkit-animation-name: flash; animation-name: flash; } @-webkit-keyframes pulse { 0% { -webkit-transform: scaleX(1); transform: scaleX(1); } 50% { -webkit-transform: scale3d(1.05, 1.05, 1.05); transform: scale3d(1.05, 1.05, 1.05); } to { -webkit-transform: scaleX(1); transform: scaleX(1); } } @keyframes pulse { 0% { -webkit-transform: scaleX(1); transform: scaleX(1); } 50% { -webkit-transform: scale3d(1.05, 1.05, 1.05); transform: scale3d(1.05, 1.05, 1.05); } to { -webkit-transform: scaleX(1); transform: scaleX(1); } } .pulse { -webkit-animation-name: pulse; animation-name: pulse; } @-webkit-keyframes rubberBand { 0% { -webkit-transform: scaleX(1); transform: scaleX(1); } 30% { -webkit-transform: scale3d(1.25, 0.75, 1); transform: scale3d(1.25, 0.75, 1); } 40% { -webkit-transform: scale3d(0.75, 1.25, 1); transform: scale3d(0.75, 1.25, 1); } 50% { -webkit-transform: scale3d(1.15, 0.85, 1); transform: scale3d(1.15, 0.85, 1); } 65% { -webkit-transform: scale3d(0.95, 1.05, 1); transform: scale3d(0.95, 1.05, 1); } 75% { -webkit-transform: scale3d(1.05, 0.95, 1); transform: scale3d(1.05, 0.95, 1); } to { -webkit-transform: scaleX(1); transform: scaleX(1); } } @keyframes rubberBand { 0% { -webkit-transform: scaleX(1); transform: scaleX(1); } 30% { -webkit-transform: scale3d(1.25, 0.75, 1); transform: scale3d(1.25, 0.75, 1); } 40% { -webkit-transform: scale3d(0.75, 1.25, 1); transform: scale3d(0.75, 1.25, 1); } 50% { -webkit-transform: scale3d(1.15, 0.85, 1); transform: scale3d(1.15, 0.85, 1); } 65% { -webkit-transform: scale3d(0.95, 1.05, 1); transform: scale3d(0.95, 1.05, 1); } 75% { -webkit-transform: scale3d(1.05, 0.95, 1); transform: scale3d(1.05, 0.95, 1); } to { -webkit-transform: scaleX(1); transform: scaleX(1); } } .rubberBand { -webkit-animation-name: rubberBand; animation-name: rubberBand; } @-webkit-keyframes shake { 0%,to { -webkit-transform: translateZ(0); transform: translateZ(0); } 10%,30%,50%,70%,90% { -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 20%,40%,60%,80% { -webkit-transform: translate3d(10px, 0, 0); transform: translate3d(10px, 0, 0); } } @keyframes shake { 0%,to { -webkit-transform: translateZ(0); transform: translateZ(0); } 10%,30%,50%,70%,90% { -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 20%,40%,60%,80% { -webkit-transform: translate3d(10px, 0, 0); transform: translate3d(10px, 0, 0); } } .shake { -webkit-animation-name: shake; animation-name: shake; } @-webkit-keyframes headShake { 0% { -webkit-transform: translateX(0); transform: translateX(0); } 6.5% { -webkit-transform: translateX(-6px) rotateY(-9deg); transform: translateX(-6px) rotateY(-9deg); } 18.5% { -webkit-transform: translateX(5px) rotateY(7deg); transform: translateX(5px) rotateY(7deg); } 31.5% { -webkit-transform: translateX(-3px) rotateY(-5deg); transform: translateX(-3px) rotateY(-5deg); } 43.5% { -webkit-transform: translateX(2px) rotateY(3deg); transform: translateX(2px) rotateY(3deg); } 50% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes headShake { 0% { -webkit-transform: translateX(0); transform: translateX(0); } 6.5% { -webkit-transform: translateX(-6px) rotateY(-9deg); transform: translateX(-6px) rotateY(-9deg); } 18.5% { -webkit-transform: translateX(5px) rotateY(7deg); transform: translateX(5px) rotateY(7deg); } 31.5% { -webkit-transform: translateX(-3px) rotateY(-5deg); transform: translateX(-3px) rotateY(-5deg); } 43.5% { -webkit-transform: translateX(2px) rotateY(3deg); transform: translateX(2px) rotateY(3deg); } 50% { -webkit-transform: translateX(0); transform: translateX(0); } } .headShake { -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-name: headShake; animation-name: headShake; } @-webkit-keyframes swing { 20% { -webkit-transform: rotate(15deg); transform: rotate(15deg); } 40% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); } 60% { -webkit-transform: rotate(5deg); transform: rotate(5deg); } 80% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); } to { -webkit-transform: rotate(0deg); transform: rotate(0deg); } } @keyframes swing { 20% { -webkit-transform: rotate(15deg); transform: rotate(15deg); } 40% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); } 60% { -webkit-transform: rotate(5deg); transform: rotate(5deg); } 80% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); } to { -webkit-transform: rotate(0deg); transform: rotate(0deg); } } .swing { -webkit-transform-origin: top center; transform-origin: top center; -webkit-animation-name: swing; animation-name: swing; } @-webkit-keyframes tada { 0% { -webkit-transform: scaleX(1); transform: scaleX(1); } 10%,20% { -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg); transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg); } 30%,50%,70%,90% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); } 40%,60%,80% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); } to { -webkit-transform: scaleX(1); transform: scaleX(1); } } @keyframes tada { 0% { -webkit-transform: scaleX(1); transform: scaleX(1); } 10%,20% { -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg); transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg); } 30%,50%,70%,90% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); } 40%,60%,80% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); } to { -webkit-transform: scaleX(1); transform: scaleX(1); } } .tada { -webkit-animation-name: tada; animation-name: tada; } @-webkit-keyframes wobble { 0% { -webkit-transform: none; transform: none; } 15% { -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg); transform: translate3d(-25%, 0, 0) rotate(-5deg); } 30% { -webkit-transform: translate3d(20%, 0, 0) rotate(3deg); transform: translate3d(20%, 0, 0) rotate(3deg); } 45% { -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg); transform: translate3d(-15%, 0, 0) rotate(-3deg); } 60% { -webkit-transform: translate3d(10%, 0, 0) rotate(2deg); transform: translate3d(10%, 0, 0) rotate(2deg); } 75% { -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg); transform: translate3d(-5%, 0, 0) rotate(-1deg); } to { -webkit-transform: none; transform: none; } } @keyframes wobble { 0% { -webkit-transform: none; transform: none; } 15% { -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg); transform: translate3d(-25%, 0, 0) rotate(-5deg); } 30% { -webkit-transform: translate3d(20%, 0, 0) rotate(3deg); transform: translate3d(20%, 0, 0) rotate(3deg); } 45% { -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg); transform: translate3d(-15%, 0, 0) rotate(-3deg); } 60% { -webkit-transform: translate3d(10%, 0, 0) rotate(2deg); transform: translate3d(10%, 0, 0) rotate(2deg); } 75% { -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg); transform: translate3d(-5%, 0, 0) rotate(-1deg); } to { -webkit-transform: none; transform: none; } } .wobble { -webkit-animation-name: wobble; animation-name: wobble; } @-webkit-keyframes jello { 0%,11.1%,to { -webkit-transform: none; transform: none; } 22.2% { -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); transform: skewX(-12.5deg) skewY(-12.5deg); } 33.3% { -webkit-transform: skewX(6.25deg) skewY(6.25deg); transform: skewX(6.25deg) skewY(6.25deg); } 44.4% { -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); transform: skewX(-3.125deg) skewY(-3.125deg); } 55.5% { -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); transform: skewX(1.5625deg) skewY(1.5625deg); } 66.6% { -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); transform: skewX(-0.78125deg) skewY(-0.78125deg); } 77.7% { -webkit-transform: skewX(0.39063deg) skewY(0.39063deg); transform: skewX(0.39063deg) skewY(0.39063deg); } 88.8% { -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg); transform: skewX(-0.19531deg) skewY(-0.19531deg); } } @keyframes jello { 0%,11.1%,to { -webkit-transform: none; transform: none; } 22.2% { -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); transform: skewX(-12.5deg) skewY(-12.5deg); } 33.3% { -webkit-transform: skewX(6.25deg) skewY(6.25deg); transform: skewX(6.25deg) skewY(6.25deg); } 44.4% { -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); transform: skewX(-3.125deg) skewY(-3.125deg); } 55.5% { -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); transform: skewX(1.5625deg) skewY(1.5625deg); } 66.6% { -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); transform: skewX(-0.78125deg) skewY(-0.78125deg); } 77.7% { -webkit-transform: skewX(0.39063deg) skewY(0.39063deg); transform: skewX(0.39063deg) skewY(0.39063deg); } 88.8% { -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg); transform: skewX(-0.19531deg) skewY(-0.19531deg); } } .jello { -webkit-animation-name: jello; animation-name: jello; -webkit-transform-origin: center; transform-origin: center; } @-webkit-keyframes bounceIn { 0%,20%,40%,60%,80%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 20% { -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } 40% { -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 60% { opacity: 1; -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03); } 80% { -webkit-transform: scale3d(0.97, 0.97, 0.97); transform: scale3d(0.97, 0.97, 0.97); } to { opacity: 1; -webkit-transform: scaleX(1); transform: scaleX(1); } } @keyframes bounceIn { 0%,20%,40%,60%,80%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 20% { -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } 40% { -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 60% { opacity: 1; -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03); } 80% { -webkit-transform: scale3d(0.97, 0.97, 0.97); transform: scale3d(0.97, 0.97, 0.97); } to { opacity: 1; -webkit-transform: scaleX(1); transform: scaleX(1); } } .bounceIn { -webkit-animation-name: bounceIn; animation-name: bounceIn; } @-webkit-keyframes bounceInDown { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(0, -3000px, 0); transform: translate3d(0, -3000px, 0); } 60% { opacity: 1; -webkit-transform: translate3d(0, 25px, 0); transform: translate3d(0, 25px, 0); } 75% { -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); } 90% { -webkit-transform: translate3d(0, 5px, 0); transform: translate3d(0, 5px, 0); } to { -webkit-transform: none; transform: none; } } @keyframes bounceInDown { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(0, -3000px, 0); transform: translate3d(0, -3000px, 0); } 60% { opacity: 1; -webkit-transform: translate3d(0, 25px, 0); transform: translate3d(0, 25px, 0); } 75% { -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); } 90% { -webkit-transform: translate3d(0, 5px, 0); transform: translate3d(0, 5px, 0); } to { -webkit-transform: none; transform: none; } } .bounceInDown { -webkit-animation-name: bounceInDown; animation-name: bounceInDown; } @-webkit-keyframes bounceInLeft { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(-3000px, 0, 0); transform: translate3d(-3000px, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(25px, 0, 0); transform: translate3d(25px, 0, 0); } 75% { -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 90% { -webkit-transform: translate3d(5px, 0, 0); transform: translate3d(5px, 0, 0); } to { -webkit-transform: none; transform: none; } } @keyframes bounceInLeft { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(-3000px, 0, 0); transform: translate3d(-3000px, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(25px, 0, 0); transform: translate3d(25px, 0, 0); } 75% { -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 90% { -webkit-transform: translate3d(5px, 0, 0); transform: translate3d(5px, 0, 0); } to { -webkit-transform: none; transform: none; } } .bounceInLeft { -webkit-animation-name: bounceInLeft; animation-name: bounceInLeft; } @-webkit-keyframes bounceInRight { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(3000px, 0, 0); transform: translate3d(3000px, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(-25px, 0, 0); transform: translate3d(-25px, 0, 0); } 75% { -webkit-transform: translate3d(10px, 0, 0); transform: translate3d(10px, 0, 0); } 90% { -webkit-transform: translate3d(-5px, 0, 0); transform: translate3d(-5px, 0, 0); } to { -webkit-transform: none; transform: none; } } @keyframes bounceInRight { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(3000px, 0, 0); transform: translate3d(3000px, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(-25px, 0, 0); transform: translate3d(-25px, 0, 0); } 75% { -webkit-transform: translate3d(10px, 0, 0); transform: translate3d(10px, 0, 0); } 90% { -webkit-transform: translate3d(-5px, 0, 0); transform: translate3d(-5px, 0, 0); } to { -webkit-transform: none; transform: none; } } .bounceInRight { -webkit-animation-name: bounceInRight; animation-name: bounceInRight; } @-webkit-keyframes bounceInUp { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(0, 3000px, 0); transform: translate3d(0, 3000px, 0); } 60% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); } 75% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); } 90% { -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0); } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } @keyframes bounceInUp { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(0, 3000px, 0); transform: translate3d(0, 3000px, 0); } 60% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); } 75% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); } 90% { -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0); } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } .bounceInUp { -webkit-animation-name: bounceInUp; animation-name: bounceInUp; } @-webkit-keyframes bounceOut { 20% { -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 50%,55% { opacity: 1; -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } to { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } } @keyframes bounceOut { 20% { -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 50%,55% { opacity: 1; -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } to { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } } .bounceOut { -webkit-animation-name: bounceOut; animation-name: bounceOut; } @-webkit-keyframes bounceOutDown { 20% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); } 40%,45% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); } to { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } } @keyframes bounceOutDown { 20% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); } 40%,45% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); } to { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } } .bounceOutDown { -webkit-animation-name: bounceOutDown; animation-name: bounceOutDown; } @-webkit-keyframes bounceOutLeft { 20% { opacity: 1; -webkit-transform: translate3d(20px, 0, 0); transform: translate3d(20px, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } } @keyframes bounceOutLeft { 20% { opacity: 1; -webkit-transform: translate3d(20px, 0, 0); transform: translate3d(20px, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } } .bounceOutLeft { -webkit-animation-name: bounceOutLeft; animation-name: bounceOutLeft; } @-webkit-keyframes bounceOutRight { 20% { opacity: 1; -webkit-transform: translate3d(-20px, 0, 0); transform: translate3d(-20px, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } } @keyframes bounceOutRight { 20% { opacity: 1; -webkit-transform: translate3d(-20px, 0, 0); transform: translate3d(-20px, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } } .bounceOutRight { -webkit-animation-name: bounceOutRight; animation-name: bounceOutRight; } @-webkit-keyframes bounceOutUp { 20% { -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); } 40%,45% { opacity: 1; -webkit-transform: translate3d(0, 20px, 0); transform: translate3d(0, 20px, 0); } to { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } } @keyframes bounceOutUp { 20% { -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); } 40%,45% { opacity: 1; -webkit-transform: translate3d(0, 20px, 0); transform: translate3d(0, 20px, 0); } to { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } } .bounceOutUp { -webkit-animation-name: bounceOutUp; animation-name: bounceOutUp; } @-webkit-keyframes fadeIn { 0% { opacity: 0; } to { opacity: 1; } } @keyframes fadeIn { 0% { opacity: 0; } to { opacity: 1; } } .fadeIn { -webkit-animation-name: fadeIn; animation-name: fadeIn; } @-webkit-keyframes fadeInDown { 0% { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInDown { 0% { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInDown { -webkit-animation-name: fadeInDown; animation-name: fadeInDown; } @-webkit-keyframes fadeInDownBig { 0% { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInDownBig { 0% { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInDownBig { -webkit-animation-name: fadeInDownBig; animation-name: fadeInDownBig; } @-webkit-keyframes fadeInLeft { 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInLeft { 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInLeft { -webkit-animation-name: fadeInLeft; animation-name: fadeInLeft; } @-webkit-keyframes fadeInLeftBig { 0% { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInLeftBig { 0% { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInLeftBig { -webkit-animation-name: fadeInLeftBig; animation-name: fadeInLeftBig; } @-webkit-keyframes fadeInRight { 0% { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInRight { 0% { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInRight { -webkit-animation-name: fadeInRight; animation-name: fadeInRight; } @-webkit-keyframes fadeInRightBig { 0% { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInRightBig { 0% { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInRightBig { -webkit-animation-name: fadeInRightBig; animation-name: fadeInRightBig; } @-webkit-keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInUp { -webkit-animation-name: fadeInUp; animation-name: fadeInUp; } @-webkit-keyframes fadeInUpBig { 0% { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInUpBig { 0% { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInUpBig { -webkit-animation-name: fadeInUpBig; animation-name: fadeInUpBig; } @-webkit-keyframes fadeOut { 0% { opacity: 1; } to { opacity: 0; } } @keyframes fadeOut { 0% { opacity: 1; } to { opacity: 0; } } .fadeOut { -webkit-animation-name: fadeOut; animation-name: fadeOut; } @-webkit-keyframes fadeOutDown { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } } @keyframes fadeOutDown { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } } .fadeOutDown { -webkit-animation-name: fadeOutDown; animation-name: fadeOutDown; } @-webkit-keyframes fadeOutDownBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } } @keyframes fadeOutDownBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } } .fadeOutDownBig { -webkit-animation-name: fadeOutDownBig; animation-name: fadeOutDownBig; } @-webkit-keyframes fadeOutLeft { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } @keyframes fadeOutLeft { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } .fadeOutLeft { -webkit-animation-name: fadeOutLeft; animation-name: fadeOutLeft; } @-webkit-keyframes fadeOutLeftBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } } @keyframes fadeOutLeftBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } } .fadeOutLeftBig { -webkit-animation-name: fadeOutLeftBig; animation-name: fadeOutLeftBig; } @-webkit-keyframes fadeOutRight { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } } @keyframes fadeOutRight { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } } .fadeOutRight { -webkit-animation-name: fadeOutRight; animation-name: fadeOutRight; } @-webkit-keyframes fadeOutRightBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } } @keyframes fadeOutRightBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } } .fadeOutRightBig { -webkit-animation-name: fadeOutRightBig; animation-name: fadeOutRightBig; } @-webkit-keyframes fadeOutUp { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } } @keyframes fadeOutUp { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } } .fadeOutUp { -webkit-animation-name: fadeOutUp; animation-name: fadeOutUp; } @-webkit-keyframes fadeOutUpBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } } @keyframes fadeOutUpBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } } .fadeOutUpBig { -webkit-animation-name: fadeOutUpBig; animation-name: fadeOutUpBig; } @-webkit-keyframes flip { 0% { -webkit-transform: perspective(400px) rotateY(-1turn); transform: perspective(400px) rotateY(-1turn); } 0%,40% { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 40% { -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg); transform: perspective(400px) translateZ(150px) rotateY(-190deg); } 50% { -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg); transform: perspective(400px) translateZ(150px) rotateY(-170deg); } 50%,80% { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 80% { -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95); transform: perspective(400px) scale3d(0.95, 0.95, 0.95); } to { -webkit-transform: perspective(400px); transform: perspective(400px); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } } @keyframes flip { 0% { -webkit-transform: perspective(400px) rotateY(-1turn); transform: perspective(400px) rotateY(-1turn); } 0%,40% { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 40% { -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg); transform: perspective(400px) translateZ(150px) rotateY(-190deg); } 50% { -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg); transform: perspective(400px) translateZ(150px) rotateY(-170deg); } 50%,80% { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 80% { -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95); transform: perspective(400px) scale3d(0.95, 0.95, 0.95); } to { -webkit-transform: perspective(400px); transform: perspective(400px); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } } .animated.flip { -webkit-backface-visibility: visible; backface-visibility: visible; -webkit-animation-name: flip; animation-name: flip; } @-webkit-keyframes flipInX { 0% { -webkit-transform: perspective(400px) rotateX(90deg); transform: perspective(400px) rotateX(90deg); opacity: 0; } 0%,40% { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 40% { -webkit-transform: perspective(400px) rotateX(-20deg); transform: perspective(400px) rotateX(-20deg); } 60% { -webkit-transform: perspective(400px) rotateX(10deg); transform: perspective(400px) rotateX(10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotateX(-5deg); transform: perspective(400px) rotateX(-5deg); } to { -webkit-transform: perspective(400px); transform: perspective(400px); } } @keyframes flipInX { 0% { -webkit-transform: perspective(400px) rotateX(90deg); transform: perspective(400px) rotateX(90deg); opacity: 0; } 0%,40% { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 40% { -webkit-transform: perspective(400px) rotateX(-20deg); transform: perspective(400px) rotateX(-20deg); } 60% { -webkit-transform: perspective(400px) rotateX(10deg); transform: perspective(400px) rotateX(10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotateX(-5deg); transform: perspective(400px) rotateX(-5deg); } to { -webkit-transform: perspective(400px); transform: perspective(400px); } } .flipInX { -webkit-backface-visibility: visible !important; backface-visibility: visible !important; -webkit-animation-name: flipInX; animation-name: flipInX; } @-webkit-keyframes flipInY { 0% { -webkit-transform: perspective(400px) rotateY(90deg); transform: perspective(400px) rotateY(90deg); opacity: 0; } 0%,40% { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 40% { -webkit-transform: perspective(400px) rotateY(-20deg); transform: perspective(400px) rotateY(-20deg); } 60% { -webkit-transform: perspective(400px) rotateY(10deg); transform: perspective(400px) rotateY(10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotateY(-5deg); transform: perspective(400px) rotateY(-5deg); } to { -webkit-transform: perspective(400px); transform: perspective(400px); } } @keyframes flipInY { 0% { -webkit-transform: perspective(400px) rotateY(90deg); transform: perspective(400px) rotateY(90deg); opacity: 0; } 0%,40% { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 40% { -webkit-transform: perspective(400px) rotateY(-20deg); transform: perspective(400px) rotateY(-20deg); } 60% { -webkit-transform: perspective(400px) rotateY(10deg); transform: perspective(400px) rotateY(10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotateY(-5deg); transform: perspective(400px) rotateY(-5deg); } to { -webkit-transform: perspective(400px); transform: perspective(400px); } } .flipInY { -webkit-backface-visibility: visible !important; backface-visibility: visible !important; -webkit-animation-name: flipInY; animation-name: flipInY; } @-webkit-keyframes flipOutX { 0% { -webkit-transform: perspective(400px); transform: perspective(400px); } 30% { -webkit-transform: perspective(400px) rotateX(-20deg); transform: perspective(400px) rotateX(-20deg); opacity: 1; } to { -webkit-transform: perspective(400px) rotateX(90deg); transform: perspective(400px) rotateX(90deg); opacity: 0; } } @keyframes flipOutX { 0% { -webkit-transform: perspective(400px); transform: perspective(400px); } 30% { -webkit-transform: perspective(400px) rotateX(-20deg); transform: perspective(400px) rotateX(-20deg); opacity: 1; } to { -webkit-transform: perspective(400px) rotateX(90deg); transform: perspective(400px) rotateX(90deg); opacity: 0; } } .flipOutX { -webkit-animation-name: flipOutX; animation-name: flipOutX; -webkit-backface-visibility: visible !important; backface-visibility: visible !important; } @-webkit-keyframes flipOutY { 0% { -webkit-transform: perspective(400px); transform: perspective(400px); } 30% { -webkit-transform: perspective(400px) rotateY(-15deg); transform: perspective(400px) rotateY(-15deg); opacity: 1; } to { -webkit-transform: perspective(400px) rotateY(90deg); transform: perspective(400px) rotateY(90deg); opacity: 0; } } @keyframes flipOutY { 0% { -webkit-transform: perspective(400px); transform: perspective(400px); } 30% { -webkit-transform: perspective(400px) rotateY(-15deg); transform: perspective(400px) rotateY(-15deg); opacity: 1; } to { -webkit-transform: perspective(400px) rotateY(90deg); transform: perspective(400px) rotateY(90deg); opacity: 0; } } .flipOutY { -webkit-backface-visibility: visible !important; backface-visibility: visible !important; -webkit-animation-name: flipOutY; animation-name: flipOutY; } @-webkit-keyframes lightSpeedIn { 0% { -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); transform: translate3d(100%, 0, 0) skewX(-30deg); opacity: 0; } 60% { -webkit-transform: skewX(20deg); transform: skewX(20deg); } 60%,80% { opacity: 1; } 80% { -webkit-transform: skewX(-5deg); transform: skewX(-5deg); } to { -webkit-transform: none; transform: none; opacity: 1; } } @keyframes lightSpeedIn { 0% { -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); transform: translate3d(100%, 0, 0) skewX(-30deg); opacity: 0; } 60% { -webkit-transform: skewX(20deg); transform: skewX(20deg); } 60%,80% { opacity: 1; } 80% { -webkit-transform: skewX(-5deg); transform: skewX(-5deg); } to { -webkit-transform: none; transform: none; opacity: 1; } } .lightSpeedIn { -webkit-animation-name: lightSpeedIn; animation-name: lightSpeedIn; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } @-webkit-keyframes lightSpeedOut { 0% { opacity: 1; } to { -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); transform: translate3d(100%, 0, 0) skewX(30deg); opacity: 0; } } @keyframes lightSpeedOut { 0% { opacity: 1; } to { -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); transform: translate3d(100%, 0, 0) skewX(30deg); opacity: 0; } } .lightSpeedOut { -webkit-animation-name: lightSpeedOut; animation-name: lightSpeedOut; -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } @-webkit-keyframes rotateIn { 0% { transform-origin: center; -webkit-transform: rotate(-200deg); transform: rotate(-200deg); opacity: 0; } 0%,to { -webkit-transform-origin: center; } to { transform-origin: center; -webkit-transform: none; transform: none; opacity: 1; } } @keyframes rotateIn { 0% { transform-origin: center; -webkit-transform: rotate(-200deg); transform: rotate(-200deg); opacity: 0; } 0%,to { -webkit-transform-origin: center; } to { transform-origin: center; -webkit-transform: none; transform: none; opacity: 1; } } .rotateIn { -webkit-animation-name: rotateIn; animation-name: rotateIn; } @-webkit-keyframes rotateInDownLeft { 0% { transform-origin: left bottom; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); opacity: 0; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: none; transform: none; opacity: 1; } } @keyframes rotateInDownLeft { 0% { transform-origin: left bottom; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); opacity: 0; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: none; transform: none; opacity: 1; } } .rotateInDownLeft { -webkit-animation-name: rotateInDownLeft; animation-name: rotateInDownLeft; } @-webkit-keyframes rotateInDownRight { 0% { transform-origin: right bottom; -webkit-transform: rotate(45deg); transform: rotate(45deg); opacity: 0; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: none; transform: none; opacity: 1; } } @keyframes rotateInDownRight { 0% { transform-origin: right bottom; -webkit-transform: rotate(45deg); transform: rotate(45deg); opacity: 0; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: none; transform: none; opacity: 1; } } .rotateInDownRight { -webkit-animation-name: rotateInDownRight; animation-name: rotateInDownRight; } @-webkit-keyframes rotateInUpLeft { 0% { transform-origin: left bottom; -webkit-transform: rotate(45deg); transform: rotate(45deg); opacity: 0; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: none; transform: none; opacity: 1; } } @keyframes rotateInUpLeft { 0% { transform-origin: left bottom; -webkit-transform: rotate(45deg); transform: rotate(45deg); opacity: 0; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: none; transform: none; opacity: 1; } } .rotateInUpLeft { -webkit-animation-name: rotateInUpLeft; animation-name: rotateInUpLeft; } @-webkit-keyframes rotateInUpRight { 0% { transform-origin: right bottom; -webkit-transform: rotate(-90deg); transform: rotate(-90deg); opacity: 0; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: none; transform: none; opacity: 1; } } @keyframes rotateInUpRight { 0% { transform-origin: right bottom; -webkit-transform: rotate(-90deg); transform: rotate(-90deg); opacity: 0; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: none; transform: none; opacity: 1; } } .rotateInUpRight { -webkit-animation-name: rotateInUpRight; animation-name: rotateInUpRight; } @-webkit-keyframes rotateOut { 0% { transform-origin: center; opacity: 1; } 0%,to { -webkit-transform-origin: center; } to { transform-origin: center; -webkit-transform: rotate(200deg); transform: rotate(200deg); opacity: 0; } } @keyframes rotateOut { 0% { transform-origin: center; opacity: 1; } 0%,to { -webkit-transform-origin: center; } to { transform-origin: center; -webkit-transform: rotate(200deg); transform: rotate(200deg); opacity: 0; } } .rotateOut { -webkit-animation-name: rotateOut; animation-name: rotateOut; } @-webkit-keyframes rotateOutDownLeft { 0% { transform-origin: left bottom; opacity: 1; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: rotate(45deg); transform: rotate(45deg); opacity: 0; } } @keyframes rotateOutDownLeft { 0% { transform-origin: left bottom; opacity: 1; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: rotate(45deg); transform: rotate(45deg); opacity: 0; } } .rotateOutDownLeft { -webkit-animation-name: rotateOutDownLeft; animation-name: rotateOutDownLeft; } @-webkit-keyframes rotateOutDownRight { 0% { transform-origin: right bottom; opacity: 1; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); opacity: 0; } } @keyframes rotateOutDownRight { 0% { transform-origin: right bottom; opacity: 1; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); opacity: 0; } } .rotateOutDownRight { -webkit-animation-name: rotateOutDownRight; animation-name: rotateOutDownRight; } @-webkit-keyframes rotateOutUpLeft { 0% { transform-origin: left bottom; opacity: 1; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); opacity: 0; } } @keyframes rotateOutUpLeft { 0% { transform-origin: left bottom; opacity: 1; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); opacity: 0; } } .rotateOutUpLeft { -webkit-animation-name: rotateOutUpLeft; animation-name: rotateOutUpLeft; } @-webkit-keyframes rotateOutUpRight { 0% { transform-origin: right bottom; opacity: 1; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: rotate(90deg); transform: rotate(90deg); opacity: 0; } } @keyframes rotateOutUpRight { 0% { transform-origin: right bottom; opacity: 1; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: rotate(90deg); transform: rotate(90deg); opacity: 0; } } .rotateOutUpRight { -webkit-animation-name: rotateOutUpRight; animation-name: rotateOutUpRight; } @-webkit-keyframes hinge { 0% { transform-origin: top left; } 0%,20%,60% { -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 20%,60% { -webkit-transform: rotate(80deg); transform: rotate(80deg); transform-origin: top left; } 40%,80% { -webkit-transform: rotate(60deg); transform: rotate(60deg); -webkit-transform-origin: top left; transform-origin: top left; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; opacity: 1; } to { -webkit-transform: translate3d(0, 700px, 0); transform: translate3d(0, 700px, 0); opacity: 0; } } @keyframes hinge { 0% { transform-origin: top left; } 0%,20%,60% { -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 20%,60% { -webkit-transform: rotate(80deg); transform: rotate(80deg); transform-origin: top left; } 40%,80% { -webkit-transform: rotate(60deg); transform: rotate(60deg); -webkit-transform-origin: top left; transform-origin: top left; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; opacity: 1; } to { -webkit-transform: translate3d(0, 700px, 0); transform: translate3d(0, 700px, 0); opacity: 0; } } .hinge { -webkit-animation-name: hinge; animation-name: hinge; } @-webkit-keyframes rollIn { 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg); transform: translate3d(-100%, 0, 0) rotate(-120deg); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes rollIn { 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg); transform: translate3d(-100%, 0, 0) rotate(-120deg); } to { opacity: 1; -webkit-transform: none; transform: none; } } .rollIn { -webkit-animation-name: rollIn; animation-name: rollIn; } @-webkit-keyframes rollOut { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(100%, 0, 0) rotate(120deg); transform: translate3d(100%, 0, 0) rotate(120deg); } } @keyframes rollOut { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(100%, 0, 0) rotate(120deg); transform: translate3d(100%, 0, 0) rotate(120deg); } } .rollOut { -webkit-animation-name: rollOut; animation-name: rollOut; } @-webkit-keyframes zoomIn { 0% { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 50% { opacity: 1; } } @keyframes zoomIn { 0% { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 50% { opacity: 1; } } .zoomIn { -webkit-animation-name: zoomIn; animation-name: zoomIn; } @-webkit-keyframes zoomInDown { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomInDown { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .zoomInDown { -webkit-animation-name: zoomInDown; animation-name: zoomInDown; } @-webkit-keyframes zoomInLeft { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomInLeft { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .zoomInLeft { -webkit-animation-name: zoomInLeft; animation-name: zoomInLeft; } @-webkit-keyframes zoomInRight { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomInRight { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .zoomInRight { -webkit-animation-name: zoomInRight; animation-name: zoomInRight; } @-webkit-keyframes zoomInUp { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomInUp { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .zoomInUp { -webkit-animation-name: zoomInUp; animation-name: zoomInUp; } @-webkit-keyframes zoomOut { 0% { opacity: 1; } 50% { -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 50%,to { opacity: 0; } } @keyframes zoomOut { 0% { opacity: 1; } 50% { -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 50%,to { opacity: 0; } } .zoomOut { -webkit-animation-name: zoomOut; animation-name: zoomOut; } @-webkit-keyframes zoomOutDown { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } to { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); -webkit-transform-origin: center bottom; transform-origin: center bottom; -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomOutDown { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } to { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); -webkit-transform-origin: center bottom; transform-origin: center bottom; -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .zoomOutDown { -webkit-animation-name: zoomOutDown; animation-name: zoomOutDown; } @-webkit-keyframes zoomOutLeft { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); } to { opacity: 0; -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); transform: scale(0.1) translate3d(-2000px, 0, 0); -webkit-transform-origin: left center; transform-origin: left center; } } @keyframes zoomOutLeft { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); } to { opacity: 0; -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); transform: scale(0.1) translate3d(-2000px, 0, 0); -webkit-transform-origin: left center; transform-origin: left center; } } .zoomOutLeft { -webkit-animation-name: zoomOutLeft; animation-name: zoomOutLeft; } @-webkit-keyframes zoomOutRight { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); } to { opacity: 0; -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); transform: scale(0.1) translate3d(2000px, 0, 0); -webkit-transform-origin: right center; transform-origin: right center; } } @keyframes zoomOutRight { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); } to { opacity: 0; -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); transform: scale(0.1) translate3d(2000px, 0, 0); -webkit-transform-origin: right center; transform-origin: right center; } } .zoomOutRight { -webkit-animation-name: zoomOutRight; animation-name: zoomOutRight; } @-webkit-keyframes zoomOutUp { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } to { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); -webkit-transform-origin: center bottom; transform-origin: center bottom; -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomOutUp { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } to { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); -webkit-transform-origin: center bottom; transform-origin: center bottom; -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .zoomOutUp { -webkit-animation-name: zoomOutUp; animation-name: zoomOutUp; } @-webkit-keyframes slideInDown { 0% { -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } @keyframes slideInDown { 0% { -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } .slideInDown { -webkit-animation-name: slideInDown; animation-name: slideInDown; } @-webkit-keyframes slideInLeft { 0% { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } @keyframes slideInLeft { 0% { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } .slideInLeft { -webkit-animation-name: slideInLeft; animation-name: slideInLeft; } @-webkit-keyframes slideInRight { 0% { -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } @keyframes slideInRight { 0% { -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } .slideInRight { -webkit-animation-name: slideInRight; animation-name: slideInRight; } @-webkit-keyframes slideInUp { 0% { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } @keyframes slideInUp { 0% { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } .slideInUp { -webkit-animation-name: slideInUp; animation-name: slideInUp; } @-webkit-keyframes slideOutDown { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } } @keyframes slideOutDown { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } } .slideOutDown { -webkit-animation-name: slideOutDown; animation-name: slideOutDown; } @-webkit-keyframes slideOutLeft { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } @keyframes slideOutLeft { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } .slideOutLeft { -webkit-animation-name: slideOutLeft; animation-name: slideOutLeft; } @-webkit-keyframes slideOutRight { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } } @keyframes slideOutRight { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } } .slideOutRight { -webkit-animation-name: slideOutRight; animation-name: slideOutRight; } @-webkit-keyframes slideOutUp { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } } @keyframes slideOutUp { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } } .slideOutUp { -webkit-animation-name: slideOutUp; animation-name: slideOutUp; } .form-control:-moz-placeholder { color: #979797; } .form-control::-moz-placeholder { color: #979797; opacity: 1; } .form-control:-ms-input-placeholder { color: #979797; } .form-control::-webkit-input-placeholder { color: #979797; } .form-control.placeholder { color: #979797; } .form-control { border: 2px solid #979797; color: #34495e; font-family: "Lato", sans-serif; font-size: 15px; line-height: 1.467; padding: 8px 12px; height: 42px; -webkit-appearance: none; border-radius: 6px; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: border .25s linear, color .25s linear, background-color .25s linear; transition: border .25s linear, color .25s linear, background-color .25s linear; } .form-group.focus .form-control, .form-control:focus { border-color: #2A2D3B; outline: 0; -webkit-box-shadow: none; box-shadow: none; } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { background-color: #f4f6f6; border-color: #2A2D3B; color: #d5dbdb; cursor: default; opacity: 0.7; filter: alpha(opacity=70); } .form-control.flat { border-color: transparent; } .form-control.flat:hover { border-color: #2A2D3B; } .form-control.flat:focus { border-color: #2A2D3B; } .btn-link { font-family: 'Roboto', sans-serif; font-weight: normal; margin-bottom: 100px; color: #2A2D3B; } .btn-link:hover { color: #979797; -webkit-transition: .25s linear; transition: .25s linear; } .navbar-default { padding-left: 15px; padding-right: 15px; padding-top: 15px; padding-bottom: 15px; font-family: "Lato", sans-serif; background: #fff; border: none; } .navbar-left { margin-top: 8px; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #2A2D3B; } .navbar-default .navbar-text { color: #979BA3; } .navbar-default .navbar-nav > li > a { color: #979BA3; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #2A2D3B; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #2A2D3B; background: transparent; } .navbar-default .navbar-nav > .open > a:hover { color: #2A2D3B; background: transparent; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background: transparent; } .navbar-default .navbar-toggle .icon-bar { background-color: #2A2D3B; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #2A2D3B; } .navbar-default .navbar-link { color: #2A2D3B; } .navbar-default .navbar-link:hover { color: #2A2D3B; } .navbar-default .navbar-nav > .open > a { background-color: transparent; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; font-size: 14px; text-align: right; list-style: none; color: #979BA3; } .dropdown-menu > .active > a { color: #fff; text-decoration: none; background-color: #979BA3; outline: 0; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { background-color: transparent; } .dropdown-menu { text-align: left; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #2A2D3B; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { background-color: #2A2D3B; } } /* FONTS */ body { width: 100%; height: 100%; padding-left: 15px; padding-right: 15px; padding-top: 15px; padding-bottom: 15px; } html { width: 100%; height: 100%; } /* INTRO */ .intro-section { height: 100%; background: url(/img/header-bg-overlay.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; text-align: center; padding-top: 20%; } .intro-section-about { height: 100%; background: url(/img/about-page-bg-overlay.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; text-align: center; padding-top: 20%; } .intro-section-locations { height: 100%; background: url(/img/locations-header.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; text-align: center; padding-top: 20%; } .intro-section-sculpting { height: 100%; background: url(/img/sculpting-bg-header.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; text-align: center; padding-top: 20%; } .intro-section-theology { height: 100%; background: url(/img/theology-bg-overlay.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; text-align: center; padding-top: 20%; } .intro-section-anatomy { height: 100%; background: url(/img/anatomy-bg-overlay.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; text-align: center; padding-top: 20%; } .intro-section-item { height: 100%; background: url(/img/item-template-bg-overlay.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; text-align: center; padding-top: 20%; } /* ABOUT */ .about-section { height: 100%; padding-top: 50px; text-align: center; background: #fff; } .transi-logo { width: 215px; height: 130px; } .services-section { height: 100%; padding-top: 150px; text-align: center; background: #fff; } .contact-section { height: 100%; padding-top: 150px; text-align: center; background: #eee; } figure { margin: 0; padding: 0; border: 0; vertical-align: baseline; } /* FIND OUT MORE */ .grey-bg { background-color: #979BA3; width: 100%; height: 320px; margin-top: 0px; padding-top: 100px; padding-bottom: 100px; text-align: center; } .light-grey-bg { background-color: #F5F5F5; width: 100%; height: 320px; margin-top: 25px; text-align: center; } /* HEADINGS */ .h1-navy { color: #2A2D3B; font-size: 48px; font-weight: normal; letter-spacing: 5px; font-family: "Roboto", sans-serif; } .h1-white { color: #fff; font-size: 48px; font-weight: normal; letter-spacing: 5px; font-family: "Roboto", sans-serif; } /* IMG */ .portrait { padding-top: 100px; width: 375.601px; height: 563px; margin: 10px; } .sculpting { background-image: url(/img/sculpting.jpg); background-size: cover; margin: 5px; width: 375px; height: 631px; } /* Layout */ .col-centered { display: inline-block; float: none; /* reset the text-align */ text-align: center; /* inline-block space fix */ margin-right: -4px; padding-left: 320px; padding-right: 320px; } /* OTHER */ .h2-navy { color: #2A2D3B; text-transform: uppercase; font-family: "Roboto", sans-serif; margin-top: 50px; font-size: 30px; font-weight: normal; } .h2-quote { color: #666666; text-transform: uppercase; font-family: "Roboto", sans-serif; margin-top: 50px; font-size: 30px; font-weight: normal; } hr { color: #979797; width: 230px; margin: 14px auto 14px auto; } hr.long { color: #979797; width: 100%; } a, a:visited, a:hover, a:link, a:active { text-decoration: none; color: #fff; } a.navy { padding: 10px; font-family: 'Lato', sans-serif; font-size: 14px; text-decoration: none; color: #2A2D3B; } .lead-first-para { font-family: 'Lato', sans-serif; color: #666666; font-size: 14px; margin-top: 50px; margin-bottom: 50px; font-weight: normal; } .lead-white { font-family: 'Lato', sans-serif; color: #fff; font-size: 14px; padding-top: 50px; font-weight: normal; } .lead-other-para { font-family: 'Lato', sans-serif; color: #666666; font-size: 14px; margin-top: 10px; margin-bottom: 50px; font-weight: normal; } .lead-italic { font-family: 'Lato', sans-serif; color: #fff; font-size: 14px; font-style: italic; } .cta-white { font-family: "Roboto", sans-serif; font-size: 18px; text-transform: uppercase; margin-top: 50px; letter-spacing: 1px; color: #fff; } .cta-navy { font-family: "Roboto", sans-serif; font-size: 18px; text-transform: uppercase; margin-top: 50px; letter-spacing: 1px; color: #2A2D3B; } .fa { padding: 5px; } #about-page-cta { font-family: 'Lato',sans-serif; font-size: 18px; padding-top: 25px; padding-bottom: 50px; } .archive-list { text-align: left; } .archive-item { margin-top: 10px; margin-bottom: 10px; } /* LOCATIONS */ #map { padding-left: 15px; padding-right: 15px; padding-top: 15px; padding-bottom: 15px; height: 400px; width: 480px; } #map-two { padding-left: 15px; padding-right: 15px; padding-top: 15px; padding-bottom: 15px; margin-top: 50px; height: 400px; } #archive { margin-top: 50px; } /* FOOTER */ footer { padding-left: 15px; padding-right: 15px; padding-top: 15px; padding-bottom: 15px; background-color: #2A2D3B; color: #fff; padding-top: 50px; padding-bottom: 50px; } /* MEDIA QUARIES */ /*================================================== = Bootstrap 3 Media Queries = ==================================================*/ /*========== Mobile First Method ==========*/ /* Custom, iPhone Retina */ /* Extra Small Devices, Phones */ /* Small Devices, Tablets */ /* Medium Devices, Desktops */ /* Large Devices, Wide Screens */ /*========== Non-Mobile First Method ==========*/ /* Large Devices, Wide Screens */ /* Medium Devices, Desktops */ /* Small Devices, Tablets */ @media only screen and (max-width: 768px) { body { padding: 0px; } .col-centered { padding: 0 !important; margin: 0 !important; } #portrait { display: none; } #map { display: none; } .intro-section { background: #000; height: 75%; } } /* Extra Small Devices, Phones */ /* Custom, iPhone Retina */ /*# sourceMappingURL=main.css.map */
css/main.css
* Layout.scss * Version: 1 * Author: <NAME> * Author URL: http://kieranglover.co.uk * Github: https://github.com/kierglover * Made available under a MIT License: * http://www.opensource.org/licenses/mit-license.php * Layout.scss Copyright <NAME> 2016. Generated with Sass. */ @import url(https://fonts.googleapis.com/css?family=Lato); @import url(https://fonts.googleapis.com/css?family=Roboto); .col-centered { display: inline-block; float: none; /* reset the text-align */ text-align: center; /* inline-block space fix */ margin-right: -4px; padding-left: 320px; padding-right: 320px; } .col-justified { margin-top: 50px; text-align: justify; } .col-quote { display: inline-block; float: none; /* reset the text-align */ text-align: center; /* inline-block space fix */ margin-right: -4px; padding-left: 250px; padding-right: 250px; } .carousel-caption { padding-bottom: 100px; } .carousel-caption h3 { padding-bottom: 50px; font-family: 'Roboto',sans-serif; font-weight: normal; letter-spacing: 1px; } .carousel-caption p { padding-top: 50px; } .image { margin-top: 90px; position: relative; background-size: cover; width: 365px; height: 506px; font-family: 'Roboto', sans-serif; color: #fff; font-size: 30px; } .image img { width: 100%; vertical-align: top; } .image:after, .image:before { position: absolute; opacity: 0; transition: all 0.5s; -webkit-transition: all 0.5s; } .image:after { content: '\A'; width: 365px; height: 506px; top: 0; left: 0; background: rgba(0, 0, 0, 0.6); } .image:before { content: attr(data-content); width: 100%; color: #fff; z-index: 1; bottom: 50%; padding: 4px 10px; font-family: 'Roboto', sans-serif; text-align: center; box-sizing: border-box; -moz-box-sizing: border-box; } .image:hover:after, .image:hover:before { opacity: 1; } /*! * Hover.css (http://ianlunn.github.io/Hover/) * Version: 2.0.1 * Author: <NAME> @IanLunn * Author URL: http://ianlunn.co.uk/ * Github: https://github.com/IanLunn/Hover * Made available under a MIT License: * http://www.opensource.org/licenses/mit-license.php * Hover.css Copyright Ian Lunn 2014. Generated with Sass. */ .hvr-grow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-grow:active, .hvr-grow:focus, .hvr-grow:hover { -webkit-transform: scale(1.1); transform: scale(1.1); } .hvr-shrink { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-shrink:active, .hvr-shrink:focus, .hvr-shrink:hover { -webkit-transform: scale(0.9); transform: scale(0.9); } @-webkit-keyframes hvr-pulse { 25% { -webkit-transform: scale(1.1); transform: scale(1.1); } 75% { -webkit-transform: scale(0.9); transform: scale(0.9); } } @keyframes hvr-pulse { 25% { -webkit-transform: scale(1.1); transform: scale(1.1); } 75% { -webkit-transform: scale(0.9); transform: scale(0.9); } } .hvr-pulse { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-pulse:active, .hvr-pulse:focus, .hvr-pulse:hover { -webkit-animation-name: hvr-pulse; animation-name: hvr-pulse; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; } @-webkit-keyframes hvr-pulse-grow { to { -webkit-transform: scale(1.1); transform: scale(1.1); } } @keyframes hvr-pulse-grow { to { -webkit-transform: scale(1.1); transform: scale(1.1); } } .hvr-pulse-grow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-pulse-grow:active, .hvr-pulse-grow:focus, .hvr-pulse-grow:hover { -webkit-animation-name: hvr-pulse-grow; animation-name: hvr-pulse-grow; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-direction: alternate; animation-direction: alternate; } @-webkit-keyframes hvr-pulse-shrink { to { -webkit-transform: scale(0.9); transform: scale(0.9); } } @keyframes hvr-pulse-shrink { to { -webkit-transform: scale(0.9); transform: scale(0.9); } } .hvr-pulse-shrink { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-pulse-shrink:active, .hvr-pulse-shrink:focus, .hvr-pulse-shrink:hover { -webkit-animation-name: hvr-pulse-shrink; animation-name: hvr-pulse-shrink; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-direction: alternate; animation-direction: alternate; } @-webkit-keyframes hvr-push { 50% { -webkit-transform: scale(0.8); transform: scale(0.8); } 100% { -webkit-transform: scale(1); transform: scale(1); } } @keyframes hvr-push { 50% { -webkit-transform: scale(0.8); transform: scale(0.8); } 100% { -webkit-transform: scale(1); transform: scale(1); } } .hvr-push { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-push:active, .hvr-push:focus, .hvr-push:hover { -webkit-animation-name: hvr-push; animation-name: hvr-push; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-pop { 50% { -webkit-transform: scale(1.2); transform: scale(1.2); } } @keyframes hvr-pop { 50% { -webkit-transform: scale(1.2); transform: scale(1.2); } } .hvr-pop { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-pop:active, .hvr-pop:focus, .hvr-pop:hover { -webkit-animation-name: hvr-pop; animation-name: hvr-pop; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } .hvr-bounce-in { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .5s; transition-duration: .5s; } .hvr-bounce-in:active, .hvr-bounce-in:focus, .hvr-bounce-in:hover { -webkit-transform: scale(1.2); transform: scale(1.2); -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); } .hvr-bounce-out { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .5s; transition-duration: .5s; } .hvr-bounce-out:active, .hvr-bounce-out:focus, .hvr-bounce-out:hover { -webkit-transform: scale(0.8); transform: scale(0.8); -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); } .hvr-rotate { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-rotate:active, .hvr-rotate:focus, .hvr-rotate:hover { -webkit-transform: rotate(4deg); transform: rotate(4deg); } .hvr-grow-rotate { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-grow-rotate:active, .hvr-grow-rotate:focus, .hvr-grow-rotate:hover { -webkit-transform: scale(1.1) rotate(4deg); transform: scale(1.1) rotate(4deg); } .hvr-float { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-float:active, .hvr-float:focus, .hvr-float:hover { -webkit-transform: translateY(-8px); transform: translateY(-8px); } .hvr-sink { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-sink:active, .hvr-sink:focus, .hvr-sink:hover { -webkit-transform: translateY(8px); transform: translateY(8px); } @-webkit-keyframes hvr-bob { 0% { -webkit-transform: translateY(-8px); transform: translateY(-8px); } 50% { -webkit-transform: translateY(-4px); transform: translateY(-4px); } 100% { -webkit-transform: translateY(-8px); transform: translateY(-8px); } } @keyframes hvr-bob { 0% { -webkit-transform: translateY(-8px); transform: translateY(-8px); } 50% { -webkit-transform: translateY(-4px); transform: translateY(-4px); } 100% { -webkit-transform: translateY(-8px); transform: translateY(-8px); } } @-webkit-keyframes hvr-bob-float { 100% { -webkit-transform: translateY(-8px); transform: translateY(-8px); } } @keyframes hvr-bob-float { 100% { -webkit-transform: translateY(-8px); transform: translateY(-8px); } } .hvr-bob { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-bob:active, .hvr-bob:focus, .hvr-bob:hover { -webkit-animation-name: hvr-bob-float,hvr-bob; animation-name: hvr-bob-float,hvr-bob; -webkit-animation-duration: .3s,1.5s; animation-duration: .3s,1.5s; -webkit-animation-delay: 0s,.3s; animation-delay: 0s,.3s; -webkit-animation-timing-function: ease-out,ease-in-out; animation-timing-function: ease-out,ease-in-out; -webkit-animation-iteration-count: 1,infinite; animation-iteration-count: 1,infinite; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-animation-direction: normal,alternate; animation-direction: normal,alternate; } @-webkit-keyframes hvr-hang { 0% { -webkit-transform: translateY(8px); transform: translateY(8px); } 50% { -webkit-transform: translateY(4px); transform: translateY(4px); } 100% { -webkit-transform: translateY(8px); transform: translateY(8px); } } @keyframes hvr-hang { 0% { -webkit-transform: translateY(8px); transform: translateY(8px); } 50% { -webkit-transform: translateY(4px); transform: translateY(4px); } 100% { -webkit-transform: translateY(8px); transform: translateY(8px); } } @-webkit-keyframes hvr-hang-sink { 100% { -webkit-transform: translateY(8px); transform: translateY(8px); } } @keyframes hvr-hang-sink { 100% { -webkit-transform: translateY(8px); transform: translateY(8px); } } .hvr-hang { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-hang:active, .hvr-hang:focus, .hvr-hang:hover { -webkit-animation-name: hvr-hang-sink,hvr-hang; animation-name: hvr-hang-sink,hvr-hang; -webkit-animation-duration: .3s,1.5s; animation-duration: .3s,1.5s; -webkit-animation-delay: 0s,.3s; animation-delay: 0s,.3s; -webkit-animation-timing-function: ease-out,ease-in-out; animation-timing-function: ease-out,ease-in-out; -webkit-animation-iteration-count: 1,infinite; animation-iteration-count: 1,infinite; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-animation-direction: normal,alternate; animation-direction: normal,alternate; } .hvr-skew { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-skew:active, .hvr-skew:focus, .hvr-skew:hover { -webkit-transform: skew(-10deg); transform: skew(-10deg); } .hvr-skew-forward { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transform-origin: 0 100%; transform-origin: 0 100%; } .hvr-skew-forward:active, .hvr-skew-forward:focus, .hvr-skew-forward:hover { -webkit-transform: skew(-10deg); transform: skew(-10deg); } .hvr-skew-backward { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transform-origin: 0 100%; transform-origin: 0 100%; } .hvr-skew-backward:active, .hvr-skew-backward:focus, .hvr-skew-backward:hover { -webkit-transform: skew(10deg); transform: skew(10deg); } @-webkit-keyframes hvr-wobble-vertical { 16.65% { -webkit-transform: translateY(8px); transform: translateY(8px); } 33.3% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } 49.95% { -webkit-transform: translateY(4px); transform: translateY(4px); } 66.6% { -webkit-transform: translateY(-2px); transform: translateY(-2px); } 83.25% { -webkit-transform: translateY(1px); transform: translateY(1px); } 100% { -webkit-transform: translateY(0); transform: translateY(0); } } @keyframes hvr-wobble-vertical { 16.65% { -webkit-transform: translateY(8px); transform: translateY(8px); } 33.3% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } 49.95% { -webkit-transform: translateY(4px); transform: translateY(4px); } 66.6% { -webkit-transform: translateY(-2px); transform: translateY(-2px); } 83.25% { -webkit-transform: translateY(1px); transform: translateY(1px); } 100% { -webkit-transform: translateY(0); transform: translateY(0); } } .hvr-wobble-vertical { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-wobble-vertical:active, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:hover { -webkit-animation-name: hvr-wobble-vertical; animation-name: hvr-wobble-vertical; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-wobble-horizontal { 16.65% { -webkit-transform: translateX(8px); transform: translateX(8px); } 33.3% { -webkit-transform: translateX(-6px); transform: translateX(-6px); } 49.95% { -webkit-transform: translateX(4px); transform: translateX(4px); } 66.6% { -webkit-transform: translateX(-2px); transform: translateX(-2px); } 83.25% { -webkit-transform: translateX(1px); transform: translateX(1px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes hvr-wobble-horizontal { 16.65% { -webkit-transform: translateX(8px); transform: translateX(8px); } 33.3% { -webkit-transform: translateX(-6px); transform: translateX(-6px); } 49.95% { -webkit-transform: translateX(4px); transform: translateX(4px); } 66.6% { -webkit-transform: translateX(-2px); transform: translateX(-2px); } 83.25% { -webkit-transform: translateX(1px); transform: translateX(1px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } .hvr-wobble-horizontal { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-wobble-horizontal:active, .hvr-wobble-horizontal:focus, .hvr-wobble-horizontal:hover { -webkit-animation-name: hvr-wobble-horizontal; animation-name: hvr-wobble-horizontal; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-wobble-to-bottom-right { 16.65% { -webkit-transform: translate(8px, 8px); transform: translate(8px, 8px); } 33.3% { -webkit-transform: translate(-6px, -6px); transform: translate(-6px, -6px); } 49.95% { -webkit-transform: translate(4px, 4px); transform: translate(4px, 4px); } 66.6% { -webkit-transform: translate(-2px, -2px); transform: translate(-2px, -2px); } 83.25% { -webkit-transform: translate(1px, 1px); transform: translate(1px, 1px); } 100% { -webkit-transform: translate(0, 0); transform: translate(0, 0); } } @keyframes hvr-wobble-to-bottom-right { 16.65% { -webkit-transform: translate(8px, 8px); transform: translate(8px, 8px); } 33.3% { -webkit-transform: translate(-6px, -6px); transform: translate(-6px, -6px); } 49.95% { -webkit-transform: translate(4px, 4px); transform: translate(4px, 4px); } 66.6% { -webkit-transform: translate(-2px, -2px); transform: translate(-2px, -2px); } 83.25% { -webkit-transform: translate(1px, 1px); transform: translate(1px, 1px); } 100% { -webkit-transform: translate(0, 0); transform: translate(0, 0); } } .hvr-wobble-to-bottom-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-wobble-to-bottom-right:active, .hvr-wobble-to-bottom-right:focus, .hvr-wobble-to-bottom-right:hover { -webkit-animation-name: hvr-wobble-to-bottom-right; animation-name: hvr-wobble-to-bottom-right; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-wobble-to-top-right { 16.65% { -webkit-transform: translate(8px, -8px); transform: translate(8px, -8px); } 33.3% { -webkit-transform: translate(-6px, 6px); transform: translate(-6px, 6px); } 49.95% { -webkit-transform: translate(4px, -4px); transform: translate(4px, -4px); } 66.6% { -webkit-transform: translate(-2px, 2px); transform: translate(-2px, 2px); } 83.25% { -webkit-transform: translate(1px, -1px); transform: translate(1px, -1px); } 100% { -webkit-transform: translate(0, 0); transform: translate(0, 0); } } @keyframes hvr-wobble-to-top-right { 16.65% { -webkit-transform: translate(8px, -8px); transform: translate(8px, -8px); } 33.3% { -webkit-transform: translate(-6px, 6px); transform: translate(-6px, 6px); } 49.95% { -webkit-transform: translate(4px, -4px); transform: translate(4px, -4px); } 66.6% { -webkit-transform: translate(-2px, 2px); transform: translate(-2px, 2px); } 83.25% { -webkit-transform: translate(1px, -1px); transform: translate(1px, -1px); } 100% { -webkit-transform: translate(0, 0); transform: translate(0, 0); } } .hvr-wobble-to-top-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-wobble-to-top-right:active, .hvr-wobble-to-top-right:focus, .hvr-wobble-to-top-right:hover { -webkit-animation-name: hvr-wobble-to-top-right; animation-name: hvr-wobble-to-top-right; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-wobble-top { 16.65% { -webkit-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); transform: skew(0); } } @keyframes hvr-wobble-top { 16.65% { -webkit-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); transform: skew(0); } } .hvr-wobble-top { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transform-origin: 0 100%; transform-origin: 0 100%; } .hvr-wobble-top:active, .hvr-wobble-top:focus, .hvr-wobble-top:hover { -webkit-animation-name: hvr-wobble-top; animation-name: hvr-wobble-top; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-wobble-bottom { 16.65% { -webkit-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); transform: skew(0); } } @keyframes hvr-wobble-bottom { 16.65% { -webkit-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); transform: skew(0); } } .hvr-wobble-bottom { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transform-origin: 100% 0; transform-origin: 100% 0; } .hvr-wobble-bottom:active, .hvr-wobble-bottom:focus, .hvr-wobble-bottom:hover { -webkit-animation-name: hvr-wobble-bottom; animation-name: hvr-wobble-bottom; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-wobble-skew { 16.65% { -webkit-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); transform: skew(0); } } @keyframes hvr-wobble-skew { 16.65% { -webkit-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); transform: skew(0); } } .hvr-wobble-skew { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-wobble-skew:active, .hvr-wobble-skew:focus, .hvr-wobble-skew:hover { -webkit-animation-name: hvr-wobble-skew; animation-name: hvr-wobble-skew; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-buzz { 50% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 100% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } } @keyframes hvr-buzz { 50% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 100% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } } .hvr-buzz { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-buzz:active, .hvr-buzz:focus, .hvr-buzz:hover { -webkit-animation-name: hvr-buzz; animation-name: hvr-buzz; -webkit-animation-duration: .15s; animation-duration: .15s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; } @-webkit-keyframes hvr-buzz-out { 10% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 20% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 30% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 40% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 50% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 60% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 70% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 80% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 90% { -webkit-transform: translateX(1px) rotate(0); transform: translateX(1px) rotate(0); } 100% { -webkit-transform: translateX(-1px) rotate(0); transform: translateX(-1px) rotate(0); } } @keyframes hvr-buzz-out { 10% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 20% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 30% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 40% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 50% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 60% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 70% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 80% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 90% { -webkit-transform: translateX(1px) rotate(0); transform: translateX(1px) rotate(0); } 100% { -webkit-transform: translateX(-1px) rotate(0); transform: translateX(-1px) rotate(0); } } .hvr-buzz-out { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .hvr-buzz-out:active, .hvr-buzz-out:focus, .hvr-buzz-out:hover { -webkit-animation-name: hvr-buzz-out; animation-name: hvr-buzz-out; -webkit-animation-duration: .75s; animation-duration: .75s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } .hvr-fade { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; overflow: hidden; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: color,background-color; transition-property: color,background-color; } .hvr-fade:active, .hvr-fade:focus, .hvr-fade:hover { background-color: #2098d1; color: #fff; } @-webkit-keyframes hvr-back-pulse { 50% { background-color: rgba(32, 152, 209, 0.75); } } @keyframes hvr-back-pulse { 50% { background-color: rgba(32, 152, 209, 0.75); } } .hvr-back-pulse { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; overflow: hidden; -webkit-transition-duration: .5s; transition-duration: .5s; -webkit-transition-property: color,background-color; transition-property: color,background-color; } .hvr-back-pulse:active, .hvr-back-pulse:focus, .hvr-back-pulse:hover { -webkit-animation-name: hvr-back-pulse; animation-name: hvr-back-pulse; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-delay: .5s; animation-delay: .5s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; background-color: #2098d1; background-color: #2098d1; color: #fff; } .hvr-sweep-to-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-sweep-to-right:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: 0 50%; transform-origin: 0 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-sweep-to-right:active, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:hover { color: #fff; } .hvr-sweep-to-right:active:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:hover:before { -webkit-transform: scaleX(1); transform: scaleX(1); } .hvr-sweep-to-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-sweep-to-left:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: 100% 50%; transform-origin: 100% 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-sweep-to-left:active, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:hover { color: #fff; } .hvr-sweep-to-left:active:before, .hvr-sweep-to-left:focus:before, .hvr-sweep-to-left:hover:before { -webkit-transform: scaleX(1); transform: scaleX(1); } .hvr-sweep-to-bottom { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-sweep-to-bottom:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleY(0); transform: scaleY(0); -webkit-transform-origin: 50% 0; transform-origin: 50% 0; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-sweep-to-bottom:active, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:hover { color: #fff; } .hvr-sweep-to-bottom:active:before, .hvr-sweep-to-bottom:focus:before, .hvr-sweep-to-bottom:hover:before { -webkit-transform: scaleY(1); transform: scaleY(1); } .hvr-sweep-to-top { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-sweep-to-top:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleY(0); transform: scaleY(0); -webkit-transform-origin: 50% 100%; transform-origin: 50% 100%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-sweep-to-top:active, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:hover { color: #fff; } .hvr-sweep-to-top:active:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:hover:before { -webkit-transform: scaleY(1); transform: scaleY(1); } .hvr-bounce-to-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .5s; transition-duration: .5s; } .hvr-bounce-to-right:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: 0 50%; transform-origin: 0 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .5s; transition-duration: .5s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-bounce-to-right:active, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:hover { color: #fff; } .hvr-bounce-to-right:active:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:hover:before { -webkit-transform: scaleX(1); transform: scaleX(1); -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); } .hvr-bounce-to-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .5s; transition-duration: .5s; } .hvr-bounce-to-left:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: 100% 50%; transform-origin: 100% 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .5s; transition-duration: .5s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-bounce-to-left:active, .hvr-bounce-to-left:focus, .hvr-bounce-to-left:hover { color: #fff; } .hvr-bounce-to-left:active:before, .hvr-bounce-to-left:focus:before, .hvr-bounce-to-left:hover:before { -webkit-transform: scaleX(1); transform: scaleX(1); -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); } .hvr-bounce-to-bottom { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .5s; transition-duration: .5s; } .hvr-bounce-to-bottom:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleY(0); transform: scaleY(0); -webkit-transform-origin: 50% 0; transform-origin: 50% 0; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .5s; transition-duration: .5s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-bounce-to-bottom:active, .hvr-bounce-to-bottom:focus, .hvr-bounce-to-bottom:hover { color: #fff; } .hvr-bounce-to-bottom:active:before, .hvr-bounce-to-bottom:focus:before, .hvr-bounce-to-bottom:hover:before { -webkit-transform: scaleY(1); transform: scaleY(1); -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); } .hvr-bounce-to-top { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .5s; transition-duration: .5s; } .hvr-bounce-to-top:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scaleY(0); transform: scaleY(0); -webkit-transform-origin: 50% 100%; transform-origin: 50% 100%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .5s; transition-duration: .5s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-bounce-to-top:active, .hvr-bounce-to-top:focus, .hvr-bounce-to-top:hover { color: #fff; } .hvr-bounce-to-top:active:before, .hvr-bounce-to-top:focus:before, .hvr-bounce-to-top:hover:before { -webkit-transform: scaleY(1); transform: scaleY(1); -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); } .hvr-radial-out { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; background: #e1e1e1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-radial-out:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; border-radius: 100%; -webkit-transform: scale(0); transform: scale(0); -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-radial-out:active, .hvr-radial-out:focus, .hvr-radial-out:hover { color: #fff; } .hvr-radial-out:active:before, .hvr-radial-out:focus:before, .hvr-radial-out:hover:before { -webkit-transform: scale(2); transform: scale(2); } .hvr-radial-in { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; background: #2098d1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-radial-in:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #e1e1e1; border-radius: 100%; -webkit-transform: scale(2); transform: scale(2); -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-radial-in:active, .hvr-radial-in:focus, .hvr-radial-in:hover { color: #fff; } .hvr-radial-in:active:before, .hvr-radial-in:focus:before, .hvr-radial-in:hover:before { -webkit-transform: scale(0); transform: scale(0); } .hvr-rectangle-in { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; background: #2098d1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-rectangle-in:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #e1e1e1; -webkit-transform: scale(1); transform: scale(1); -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-rectangle-in:active, .hvr-rectangle-in:focus, .hvr-rectangle-in:hover { color: #fff; } .hvr-rectangle-in:active:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:hover:before { -webkit-transform: scale(0); transform: scale(0); } .hvr-rectangle-out { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; background: #e1e1e1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-rectangle-out:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: #2098d1; -webkit-transform: scale(0); transform: scale(0); -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-rectangle-out:active, .hvr-rectangle-out:focus, .hvr-rectangle-out:hover { color: #fff; } .hvr-rectangle-out:active:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:hover:before { -webkit-transform: scale(1); transform: scale(1); } .hvr-shutter-in-horizontal { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; background: #2098d1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-shutter-in-horizontal:before { content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 0; right: 0; background: #e1e1e1; -webkit-transform: scaleX(1); transform: scaleX(1); -webkit-transform-origin: 50%; transform-origin: 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-shutter-in-horizontal:active, .hvr-shutter-in-horizontal:focus, .hvr-shutter-in-horizontal:hover { color: #fff; } .hvr-shutter-in-horizontal:active:before, .hvr-shutter-in-horizontal:focus:before, .hvr-shutter-in-horizontal:hover:before { -webkit-transform: scaleX(0); transform: scaleX(0); } .hvr-shutter-out-horizontal { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; background: #e1e1e1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-shutter-out-horizontal:before { content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 0; right: 0; background: #2098d1; -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: 50%; transform-origin: 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-shutter-out-horizontal:active, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:hover { color: #fff; } .hvr-shutter-out-horizontal:active:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:hover:before { -webkit-transform: scaleX(1); transform: scaleX(1); } .hvr-shutter-in-vertical { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; background: #2098d1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-shutter-in-vertical:before { content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 0; right: 0; background: #e1e1e1; -webkit-transform: scaleY(1); transform: scaleY(1); -webkit-transform-origin: 50%; transform-origin: 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-shutter-in-vertical:active, .hvr-shutter-in-vertical:focus, .hvr-shutter-in-vertical:hover { color: #fff; } .hvr-shutter-in-vertical:active:before, .hvr-shutter-in-vertical:focus:before, .hvr-shutter-in-vertical:hover:before { -webkit-transform: scaleY(0); transform: scaleY(0); } .hvr-shutter-out-vertical { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; background: #e1e1e1; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-shutter-out-vertical:before { content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 0; right: 0; background: #2098d1; -webkit-transform: scaleY(0); transform: scaleY(0); -webkit-transform-origin: 50%; transform-origin: 50%; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-shutter-out-vertical:active, .hvr-shutter-out-vertical:focus, .hvr-shutter-out-vertical:hover { color: #fff; } .hvr-shutter-out-vertical:active:before, .hvr-shutter-out-vertical:focus:before, .hvr-shutter-out-vertical:hover:before { -webkit-transform: scaleY(1); transform: scaleY(1); } .hvr-border-fade { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: box-shadow; transition-property: box-shadow; box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px transparent; } .hvr-border-fade:active, .hvr-border-fade:focus, .hvr-border-fade:hover { box-shadow: inset 0 0 0 4px #2098d1, 0 0 1px transparent; } .hvr-hollow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: background; transition-property: background; box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px transparent; } .hvr-hollow:active, .hvr-hollow:focus, .hvr-hollow:hover { background: 0 0; } .hvr-trim { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-trim:before { content: ''; position: absolute; border: #fff solid 4px; top: 4px; left: 4px; right: 4px; bottom: 4px; opacity: 0; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: opacity; transition-property: opacity; } .hvr-trim:active:before, .hvr-trim:focus:before, .hvr-trim:hover:before { opacity: 1; } @-webkit-keyframes hvr-ripple-out { 100% { top: -12px; right: -12px; bottom: -12px; left: -12px; opacity: 0; } } @keyframes hvr-ripple-out { 100% { top: -12px; right: -12px; bottom: -12px; left: -12px; opacity: 0; } } .hvr-ripple-out { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-ripple-out:before { content: ''; position: absolute; border: #e1e1e1 solid 6px; top: 0; right: 0; bottom: 0; left: 0; -webkit-animation-duration: 1s; animation-duration: 1s; } .hvr-ripple-out:active:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:hover:before { -webkit-animation-name: hvr-ripple-out; animation-name: hvr-ripple-out; } @-webkit-keyframes hvr-ripple-in { 100% { top: 0; right: 0; bottom: 0; left: 0; opacity: 1; } } @keyframes hvr-ripple-in { 100% { top: 0; right: 0; bottom: 0; left: 0; opacity: 1; } } .hvr-ripple-in { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-ripple-in:before { content: ''; position: absolute; border: #e1e1e1 solid 4px; top: -12px; right: -12px; bottom: -12px; left: -12px; opacity: 0; -webkit-animation-duration: 1s; animation-duration: 1s; } .hvr-ripple-in:active:before, .hvr-ripple-in:focus:before, .hvr-ripple-in:hover:before { -webkit-animation-name: hvr-ripple-in; animation-name: hvr-ripple-in; } .hvr-outline-out { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-outline-out:before { content: ''; position: absolute; border: #e1e1e1 solid 4px; top: 0; right: 0; bottom: 0; left: 0; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: top,right,bottom,left; transition-property: top,right,bottom,left; } .hvr-outline-out:active:before, .hvr-outline-out:focus:before, .hvr-outline-out:hover:before { top: -8px; right: -8px; bottom: -8px; left: -8px; } .hvr-outline-in { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-outline-in:before { pointer-events: none; content: ''; position: absolute; border: #e1e1e1 solid 4px; top: -16px; right: -16px; bottom: -16px; left: -16px; opacity: 0; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: top,right,bottom,left; transition-property: top,right,bottom,left; } .hvr-outline-in:active:before, .hvr-outline-in:focus:before, .hvr-outline-in:hover:before { top: -8px; right: -8px; bottom: -8px; left: -8px; opacity: 1; } .hvr-round-corners { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: border-radius; transition-property: border-radius; } .hvr-round-corners:active, .hvr-round-corners:focus, .hvr-round-corners:hover { border-radius: 1em; } .hvr-underline-from-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-underline-from-left:before { content: ""; position: absolute; z-index: -1; left: 0; right: 100%; bottom: 0; background: #2098d1; height: 4px; -webkit-transition-property: right; transition-property: right; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-underline-from-left:active:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:hover:before { right: 0; } .hvr-underline-from-center { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-underline-from-center:before { content: ""; position: absolute; z-index: -1; left: 50%; right: 50%; bottom: 0; background: #2098d1; height: 4px; -webkit-transition-property: left,right; transition-property: left,right; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-underline-from-center:active:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:hover:before { left: 0; right: 0; } .hvr-underline-from-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-underline-from-right:before { content: ""; position: absolute; z-index: -1; left: 100%; right: 0; bottom: 0; background: #2098d1; height: 4px; -webkit-transition-property: left; transition-property: left; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-underline-from-right:active:before, .hvr-underline-from-right:focus:before, .hvr-underline-from-right:hover:before { left: 0; } .hvr-overline-from-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-overline-from-left:before { content: ""; position: absolute; z-index: -1; left: 0; right: 100%; top: 0; background: #2098d1; height: 4px; -webkit-transition-property: right; transition-property: right; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-overline-from-left:active:before, .hvr-overline-from-left:focus:before, .hvr-overline-from-left:hover:before { right: 0; } .hvr-overline-from-center { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-overline-from-center:before { content: ""; position: absolute; z-index: -1; left: 50%; right: 50%; top: 0; background: #2098d1; height: 4px; -webkit-transition-property: left,right; transition-property: left,right; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-overline-from-center:active:before, .hvr-overline-from-center:focus:before, .hvr-overline-from-center:hover:before { left: 0; right: 0; } .hvr-overline-from-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-overline-from-right:before { content: ""; position: absolute; z-index: -1; left: 100%; right: 0; top: 0; background: #2098d1; height: 4px; -webkit-transition-property: left; transition-property: left; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-overline-from-right:active:before, .hvr-overline-from-right:focus:before, .hvr-overline-from-right:hover:before { left: 0; } .hvr-reveal { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-reveal:before { content: ""; position: absolute; z-index: -1; left: 0; right: 0; top: 0; bottom: 0; border-color: #2098d1; border-style: solid; border-width: 0; -webkit-transition-property: border-width; transition-property: border-width; -webkit-transition-duration: .1s; transition-duration: .1s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-reveal:active:before, .hvr-reveal:focus:before, .hvr-reveal:hover:before { -webkit-transform: translateY(0); transform: translateY(0); border-width: 4px; } .hvr-underline-reveal { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-underline-reveal:before { content: ""; position: absolute; z-index: -1; left: 0; right: 0; bottom: 0; background: #2098d1; height: 4px; -webkit-transform: translateY(4px); transform: translateY(4px); -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-underline-reveal:active:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:hover:before { -webkit-transform: translateY(0); transform: translateY(0); } .hvr-overline-reveal { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; overflow: hidden; } .hvr-overline-reveal:before { content: ""; position: absolute; z-index: -1; left: 0; right: 0; top: 0; background: #2098d1; height: 4px; -webkit-transform: translateY(-4px); transform: translateY(-4px); -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-overline-reveal:active:before, .hvr-overline-reveal:focus:before, .hvr-overline-reveal:hover:before { -webkit-transform: translateY(0); transform: translateY(0); } .hvr-glow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: box-shadow; transition-property: box-shadow; } .hvr-glow:active, .hvr-glow:focus, .hvr-glow:hover { box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); } .hvr-shadow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: box-shadow; transition-property: box-shadow; } .hvr-shadow:active, .hvr-shadow:focus, .hvr-shadow:hover { box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5); } .hvr-grow-shadow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: box-shadow,transform; transition-property: box-shadow,transform; } .hvr-grow-shadow:active, .hvr-grow-shadow:focus, .hvr-grow-shadow:hover { box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5); -webkit-transform: scale(1.1); transform: scale(1.1); } .hvr-box-shadow-outset { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: box-shadow; transition-property: box-shadow; } .hvr-box-shadow-outset:active, .hvr-box-shadow-outset:focus, .hvr-box-shadow-outset:hover { box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6); } .hvr-box-shadow-inset { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: box-shadow; transition-property: box-shadow; box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px transparent; } .hvr-box-shadow-inset:active, .hvr-box-shadow-inset:focus, .hvr-box-shadow-inset:hover { box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px transparent; } .hvr-float-shadow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-float-shadow:before { pointer-events: none; position: absolute; z-index: -1; content: ''; top: 100%; left: 5%; height: 10px; width: 90%; opacity: 0; background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0, transparent 80%); background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0, transparent 80%); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform,opacity; transition-property: transform,opacity; } .hvr-float-shadow:active, .hvr-float-shadow:focus, .hvr-float-shadow:hover { -webkit-transform: translateY(-5px); transform: translateY(-5px); } .hvr-float-shadow:active:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:hover:before { opacity: 1; -webkit-transform: translateY(5px); transform: translateY(5px); } .hvr-shadow-radial { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-shadow-radial:after, .hvr-shadow-radial:before { pointer-events: none; position: absolute; content: ''; left: 0; width: 100%; box-sizing: border-box; height: 5px; opacity: 0; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: opacity; transition-property: opacity; } .hvr-shadow-radial:before { bottom: 100%; background: -webkit-radial-gradient(50% 150%, ellipse, rgba(0, 0, 0, 0.6) 0, transparent 80%); background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0, transparent 80%); } .hvr-shadow-radial:after { top: 100%; background: -webkit-radial-gradient(50% -50%, ellipse, rgba(0, 0, 0, 0.6) 0, transparent 80%); background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0, transparent 80%); } .hvr-shadow-radial:active:after, .hvr-shadow-radial:active:before, .hvr-shadow-radial:focus:after, .hvr-shadow-radial:focus:before, .hvr-shadow-radial:hover:after, .hvr-shadow-radial:hover:before { opacity: 1; } .hvr-bubble-top { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-bubble-top:before { pointer-events: none; position: absolute; z-index: -1; content: ''; border-style: solid; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; left: calc(50% - 10px); top: 0; border-width: 0 10px 10px; border-color: transparent transparent #e1e1e1; } .hvr-bubble-top:active:before, .hvr-bubble-top:focus:before, .hvr-bubble-top:hover:before { -webkit-transform: translateY(-10px); transform: translateY(-10px); } .hvr-bubble-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-bubble-right:before { pointer-events: none; position: absolute; z-index: -1; content: ''; border-style: solid; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; top: calc(50% - 10px); right: 0; border-width: 10px 0 10px 10px; border-color: transparent transparent transparent #e1e1e1; } .hvr-bubble-right:active:before, .hvr-bubble-right:focus:before, .hvr-bubble-right:hover:before { -webkit-transform: translateX(10px); transform: translateX(10px); } .hvr-bubble-bottom { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-bubble-bottom:before { pointer-events: none; position: absolute; z-index: -1; content: ''; border-style: solid; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; left: calc(50% - 10px); bottom: 0; border-width: 10px 10px 0; border-color: #e1e1e1 transparent transparent; } .hvr-bubble-bottom:active:before, .hvr-bubble-bottom:focus:before, .hvr-bubble-bottom:hover:before { -webkit-transform: translateY(10px); transform: translateY(10px); } .hvr-bubble-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-bubble-left:before { pointer-events: none; position: absolute; z-index: -1; content: ''; border-style: solid; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; top: calc(50% - 10px); left: 0; border-width: 10px 10px 10px 0; border-color: transparent #e1e1e1 transparent transparent; } .hvr-bubble-left:active:before, .hvr-bubble-left:focus:before, .hvr-bubble-left:hover:before { -webkit-transform: translateX(-10px); transform: translateX(-10px); } .hvr-bubble-float-top { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-top:before { position: absolute; z-index: -1; content: ''; left: calc(50% - 10px); top: 0; border-style: solid; border-width: 0 10px 10px; border-color: transparent transparent #e1e1e1; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-top:active, .hvr-bubble-float-top:focus, .hvr-bubble-float-top:hover { -webkit-transform: translateY(10px); transform: translateY(10px); } .hvr-bubble-float-top:active:before, .hvr-bubble-float-top:focus:before, .hvr-bubble-float-top:hover:before { -webkit-transform: translateY(-10px); transform: translateY(-10px); } .hvr-bubble-float-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-right:before { position: absolute; z-index: -1; top: calc(50% - 10px); right: 0; content: ''; border-style: solid; border-width: 10px 0 10px 10px; border-color: transparent transparent transparent #e1e1e1; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-right:active, .hvr-bubble-float-right:focus, .hvr-bubble-float-right:hover { -webkit-transform: translateX(-10px); transform: translateX(-10px); } .hvr-bubble-float-right:active:before, .hvr-bubble-float-right:focus:before, .hvr-bubble-float-right:hover:before { -webkit-transform: translateX(10px); transform: translateX(10px); } .hvr-bubble-float-bottom { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-bottom:before { position: absolute; z-index: -1; content: ''; left: calc(50% - 10px); bottom: 0; border-style: solid; border-width: 10px 10px 0; border-color: #e1e1e1 transparent transparent; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-bottom:active, .hvr-bubble-float-bottom:focus, .hvr-bubble-float-bottom:hover { -webkit-transform: translateY(-10px); transform: translateY(-10px); } .hvr-bubble-float-bottom:active:before, .hvr-bubble-float-bottom:focus:before, .hvr-bubble-float-bottom:hover:before { -webkit-transform: translateY(10px); transform: translateY(10px); } .hvr-bubble-float-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-left:before { position: absolute; z-index: -1; content: ''; top: calc(50% - 10px); left: 0; border-style: solid; border-width: 10px 10px 10px 0; border-color: transparent #e1e1e1 transparent transparent; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; } .hvr-bubble-float-left:active, .hvr-bubble-float-left:focus, .hvr-bubble-float-left:hover { -webkit-transform: translateX(10px); transform: translateX(10px); } .hvr-bubble-float-left:active:before, .hvr-bubble-float-left:focus:before, .hvr-bubble-float-left:hover:before { -webkit-transform: translateX(-10px); transform: translateX(-10px); } .hvr-icon-back { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-left: 2.2em; -webkit-transition-duration: .1s; transition-duration: .1s; } .hvr-icon-back:before { content: "\f137"; position: absolute; left: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .1s; transition-duration: .1s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-back:active:before, .hvr-icon-back:focus:before, .hvr-icon-back:hover:before { -webkit-transform: translateX(-4px); transform: translateX(-4px); } .hvr-icon-forward { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .1s; transition-duration: .1s; } .hvr-icon-forward:before { content: "\f138"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .1s; transition-duration: .1s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-forward:active:before, .hvr-icon-forward:focus:before, .hvr-icon-forward:hover:before { -webkit-transform: translateX(4px); transform: translateX(4px); } @-webkit-keyframes hvr-icon-down { 0%,100%,50% { -webkit-transform: translateY(0); transform: translateY(0); } 25%,75% { -webkit-transform: translateY(6px); transform: translateY(6px); } } @keyframes hvr-icon-down { 0%,100%,50% { -webkit-transform: translateY(0); transform: translateY(0); } 25%,75% { -webkit-transform: translateY(6px); transform: translateY(6px); } } .hvr-icon-down { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-down:before { content: "\f01a"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-down:active:before, .hvr-icon-down:focus:before, .hvr-icon-down:hover:before { -webkit-animation-name: hvr-icon-down; animation-name: hvr-icon-down; -webkit-animation-duration: .75s; animation-duration: .75s; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } @-webkit-keyframes hvr-icon-up { 0%,100%,50% { -webkit-transform: translateY(0); transform: translateY(0); } 25%,75% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } } @keyframes hvr-icon-up { 0%,100%,50% { -webkit-transform: translateY(0); transform: translateY(0); } 25%,75% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } } .hvr-icon-up { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-up:before { content: "\f01b"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-up:active:before, .hvr-icon-up:focus:before, .hvr-icon-up:hover:before { -webkit-animation-name: hvr-icon-up; animation-name: hvr-icon-up; -webkit-animation-duration: .75s; animation-duration: .75s; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } .hvr-icon-spin { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-spin:before { content: "\f021"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transition-duration: 1s; transition-duration: 1s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .hvr-icon-spin:active:before, .hvr-icon-spin:focus:before, .hvr-icon-spin:hover:before { -webkit-transform: rotate(360deg); transform: rotate(360deg); } @-webkit-keyframes hvr-icon-drop { 0% { opacity: 0; } 50% { opacity: 0; -webkit-transform: translateY(-100%); transform: translateY(-100%); } 100%,51% { opacity: 1; } } @keyframes hvr-icon-drop { 0% { opacity: 0; } 50% { opacity: 0; -webkit-transform: translateY(-100%); transform: translateY(-100%); } 100%,51% { opacity: 1; } } .hvr-icon-drop { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-drop:before { content: "\f041"; position: absolute; right: 1em; opacity: 1; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-drop:active:before, .hvr-icon-drop:focus:before, .hvr-icon-drop:hover:before { opacity: 0; -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-animation-name: hvr-icon-drop; animation-name: hvr-icon-drop; -webkit-animation-duration: .5s; animation-duration: .5s; -webkit-animation-delay: .3s; animation-delay: .3s; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); } .hvr-icon-fade { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-fade:before { content: "\f00c"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .5s; transition-duration: .5s; -webkit-transition-property: color; transition-property: color; } .hvr-icon-fade:active:before, .hvr-icon-fade:focus:before, .hvr-icon-fade:hover:before { color: #0F9E5E; } @-webkit-keyframes hvr-icon-float-away { 0% { opacity: 1; } 100% { opacity: 0; -webkit-transform: translateY(-1em); transform: translateY(-1em); } } @keyframes hvr-icon-float-away { 0% { opacity: 1; } 100% { opacity: 0; -webkit-transform: translateY(-1em); transform: translateY(-1em); } } .hvr-icon-float-away { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-float-away:after, .hvr-icon-float-away:before { content: "\f055"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; } .hvr-icon-float-away:after { opacity: 0; -webkit-animation-duration: .5s; animation-duration: .5s; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; } .hvr-icon-float-away:active:after, .hvr-icon-float-away:focus:after, .hvr-icon-float-away:hover:after { -webkit-animation-name: hvr-icon-float-away; animation-name: hvr-icon-float-away; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } @-webkit-keyframes hvr-icon-sink-away { 0% { opacity: 1; } 100% { opacity: 0; -webkit-transform: translateY(1em); transform: translateY(1em); } } @keyframes hvr-icon-sink-away { 0% { opacity: 1; } 100% { opacity: 0; -webkit-transform: translateY(1em); transform: translateY(1em); } } .hvr-icon-sink-away { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-sink-away:after, .hvr-icon-sink-away:before { content: "\f056"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-sink-away:after { opacity: 0; -webkit-animation-duration: .5s; animation-duration: .5s; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; } .hvr-icon-sink-away:active:after, .hvr-icon-sink-away:focus:after, .hvr-icon-sink-away:hover:after { -webkit-animation-name: hvr-icon-sink-away; animation-name: hvr-icon-sink-away; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } .hvr-icon-grow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-grow:before { content: "\f118"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-grow:active:before, .hvr-icon-grow:focus:before, .hvr-icon-grow:hover:before { -webkit-transform: scale(1.3) translateZ(0); transform: scale(1.3) translateZ(0); } .hvr-icon-shrink { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-shrink:before { content: "\f119"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-shrink:active:before, .hvr-icon-shrink:focus:before, .hvr-icon-shrink:hover:before { -webkit-transform: scale(0.8); transform: scale(0.8); } @-webkit-keyframes hvr-icon-pulse { 25% { -webkit-transform: scale(1.3); transform: scale(1.3); } 75% { -webkit-transform: scale(0.8); transform: scale(0.8); } } @keyframes hvr-icon-pulse { 25% { -webkit-transform: scale(1.3); transform: scale(1.3); } 75% { -webkit-transform: scale(0.8); transform: scale(0.8); } } .hvr-icon-pulse { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-pulse:before { content: "\f015"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-pulse:active:before, .hvr-icon-pulse:focus:before, .hvr-icon-pulse:hover:before { -webkit-animation-name: hvr-icon-pulse; animation-name: hvr-icon-pulse; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; } @-webkit-keyframes hvr-icon-pulse-grow { to { -webkit-transform: scale(1.3); transform: scale(1.3); } } @keyframes hvr-icon-pulse-grow { to { -webkit-transform: scale(1.3); transform: scale(1.3); } } .hvr-icon-pulse-grow { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-pulse-grow:before { content: "\f015"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-pulse-grow:active:before, .hvr-icon-pulse-grow:focus:before, .hvr-icon-pulse-grow:hover:before { -webkit-animation-name: hvr-icon-pulse-grow; animation-name: hvr-icon-pulse-grow; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-direction: alternate; animation-direction: alternate; } @-webkit-keyframes hvr-icon-pulse-shrink { to { -webkit-transform: scale(0.8); transform: scale(0.8); } } @keyframes hvr-icon-pulse-shrink { to { -webkit-transform: scale(0.8); transform: scale(0.8); } } .hvr-icon-pulse-shrink { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; } .hvr-icon-pulse-shrink:before { content: "\f015"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-pulse-shrink:active:before, .hvr-icon-pulse-shrink:focus:before, .hvr-icon-pulse-shrink:hover:before { -webkit-animation-name: hvr-icon-pulse-shrink; animation-name: hvr-icon-pulse-shrink; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-direction: alternate; animation-direction: alternate; } @-webkit-keyframes hvr-icon-push { 50% { -webkit-transform: scale(0.5); transform: scale(0.5); } } @keyframes hvr-icon-push { 50% { -webkit-transform: scale(0.5); transform: scale(0.5); } } .hvr-icon-push { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-push:before { content: "\f006"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-push:active:before, .hvr-icon-push:focus:before, .hvr-icon-push:hover:before { -webkit-animation-name: hvr-icon-push; animation-name: hvr-icon-push; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-icon-pop { 50% { -webkit-transform: scale(1.5); transform: scale(1.5); } } @keyframes hvr-icon-pop { 50% { -webkit-transform: scale(1.5); transform: scale(1.5); } } .hvr-icon-pop { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-pop:before { content: "\f005"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-pop:active:before, .hvr-icon-pop:focus:before, .hvr-icon-pop:hover:before { -webkit-animation-name: hvr-icon-pop; animation-name: hvr-icon-pop; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } .hvr-icon-bounce { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-bounce:before { content: "\f087"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-bounce:active:before, .hvr-icon-bounce:focus:before, .hvr-icon-bounce:hover:before { -webkit-transform: scale(1.5); transform: scale(1.5); -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); } .hvr-icon-rotate { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-rotate:before { content: "\f0c6"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-rotate:active:before, .hvr-icon-rotate:focus:before, .hvr-icon-rotate:hover:before { -webkit-transform: rotate(20deg); transform: rotate(20deg); } .hvr-icon-grow-rotate { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-grow-rotate:before { content: "\f095"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-grow-rotate:active:before, .hvr-icon-grow-rotate:focus:before, .hvr-icon-grow-rotate:hover:before { -webkit-transform: scale(1.5) rotate(12deg); transform: scale(1.5) rotate(12deg); } .hvr-icon-float { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-float:before { content: "\f01b"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-float:active:before, .hvr-icon-float:focus:before, .hvr-icon-float:hover:before { -webkit-transform: translateY(-4px); transform: translateY(-4px); } .hvr-icon-sink { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-sink:before { content: "\f01a"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-icon-sink:active:before, .hvr-icon-sink:focus:before, .hvr-icon-sink:hover:before { -webkit-transform: translateY(4px); transform: translateY(4px); } @-webkit-keyframes hvr-icon-bob { 0% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } 50% { -webkit-transform: translateY(-2px); transform: translateY(-2px); } 100% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } } @keyframes hvr-icon-bob { 0% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } 50% { -webkit-transform: translateY(-2px); transform: translateY(-2px); } 100% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } } @-webkit-keyframes hvr-icon-bob-float { 100% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } } @keyframes hvr-icon-bob-float { 100% { -webkit-transform: translateY(-6px); transform: translateY(-6px); } } .hvr-icon-bob { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-bob:before { content: "\f077"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-bob:active:before, .hvr-icon-bob:focus:before, .hvr-icon-bob:hover:before { -webkit-animation-name: hvr-icon-bob-float,hvr-icon-bob; animation-name: hvr-icon-bob-float,hvr-icon-bob; -webkit-animation-duration: .3s,1.5s; animation-duration: .3s,1.5s; -webkit-animation-delay: 0s,.3s; animation-delay: 0s,.3s; -webkit-animation-timing-function: ease-out,ease-in-out; animation-timing-function: ease-out,ease-in-out; -webkit-animation-iteration-count: 1,infinite; animation-iteration-count: 1,infinite; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-animation-direction: normal,alternate; animation-direction: normal,alternate; } @-webkit-keyframes hvr-icon-hang { 0% { -webkit-transform: translateY(6px); transform: translateY(6px); } 50% { -webkit-transform: translateY(2px); transform: translateY(2px); } 100% { -webkit-transform: translateY(6px); transform: translateY(6px); } } @keyframes hvr-icon-hang { 0% { -webkit-transform: translateY(6px); transform: translateY(6px); } 50% { -webkit-transform: translateY(2px); transform: translateY(2px); } 100% { -webkit-transform: translateY(6px); transform: translateY(6px); } } @-webkit-keyframes hvr-icon-hang-sink { 100% { -webkit-transform: translateY(6px); transform: translateY(6px); } } @keyframes hvr-icon-hang-sink { 100% { -webkit-transform: translateY(6px); transform: translateY(6px); } } .hvr-icon-hang { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-hang:before { content: "\f078"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-hang:active:before, .hvr-icon-hang:focus:before, .hvr-icon-hang:hover:before { -webkit-animation-name: hvr-icon-hang-sink,hvr-icon-hang; animation-name: hvr-icon-hang-sink,hvr-icon-hang; -webkit-animation-duration: .3s,1.5s; animation-duration: .3s,1.5s; -webkit-animation-delay: 0s,.3s; animation-delay: 0s,.3s; -webkit-animation-timing-function: ease-out,ease-in-out; animation-timing-function: ease-out,ease-in-out; -webkit-animation-iteration-count: 1,infinite; animation-iteration-count: 1,infinite; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-animation-direction: normal,alternate; animation-direction: normal,alternate; } @-webkit-keyframes hvr-icon-wobble-horizontal { 16.65% { -webkit-transform: translateX(6px); transform: translateX(6px); } 33.3% { -webkit-transform: translateX(-5px); transform: translateX(-5px); } 49.95% { -webkit-transform: translateX(4px); transform: translateX(4px); } 66.6% { -webkit-transform: translateX(-2px); transform: translateX(-2px); } 83.25% { -webkit-transform: translateX(1px); transform: translateX(1px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes hvr-icon-wobble-horizontal { 16.65% { -webkit-transform: translateX(6px); transform: translateX(6px); } 33.3% { -webkit-transform: translateX(-5px); transform: translateX(-5px); } 49.95% { -webkit-transform: translateX(4px); transform: translateX(4px); } 66.6% { -webkit-transform: translateX(-2px); transform: translateX(-2px); } 83.25% { -webkit-transform: translateX(1px); transform: translateX(1px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } .hvr-icon-wobble-horizontal { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-wobble-horizontal:before { content: "\f061"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-wobble-horizontal:active:before, .hvr-icon-wobble-horizontal:focus:before, .hvr-icon-wobble-horizontal:hover:before { -webkit-animation-name: hvr-icon-wobble-horizontal; animation-name: hvr-icon-wobble-horizontal; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-icon-wobble-vertical { 16.65% { -webkit-transform: translateY(6px); transform: translateY(6px); } 33.3% { -webkit-transform: translateY(-5px); transform: translateY(-5px); } 49.95% { -webkit-transform: translateY(4px); transform: translateY(4px); } 66.6% { -webkit-transform: translateY(-2px); transform: translateY(-2px); } 83.25% { -webkit-transform: translateY(1px); transform: translateY(1px); } 100% { -webkit-transform: translateY(0); transform: translateY(0); } } @keyframes hvr-icon-wobble-vertical { 16.65% { -webkit-transform: translateY(6px); transform: translateY(6px); } 33.3% { -webkit-transform: translateY(-5px); transform: translateY(-5px); } 49.95% { -webkit-transform: translateY(4px); transform: translateY(4px); } 66.6% { -webkit-transform: translateY(-2px); transform: translateY(-2px); } 83.25% { -webkit-transform: translateY(1px); transform: translateY(1px); } 100% { -webkit-transform: translateY(0); transform: translateY(0); } } .hvr-icon-wobble-vertical { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-wobble-vertical:before { content: "\f062"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-wobble-vertical:active:before, .hvr-icon-wobble-vertical:focus:before, .hvr-icon-wobble-vertical:hover:before { -webkit-animation-name: hvr-icon-wobble-vertical; animation-name: hvr-icon-wobble-vertical; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } @-webkit-keyframes hvr-icon-buzz { 50% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 100% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } } @keyframes hvr-icon-buzz { 50% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 100% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } } .hvr-icon-buzz { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-buzz:before { content: "\f017"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-buzz:active:before, .hvr-icon-buzz:focus:before, .hvr-icon-buzz:hover:before { -webkit-animation-name: hvr-icon-buzz; animation-name: hvr-icon-buzz; -webkit-animation-duration: .15s; animation-duration: .15s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; } @-webkit-keyframes hvr-icon-buzz-out { 10% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 20% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 30% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 40% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 50% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 60% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 70% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 80% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 90% { -webkit-transform: translateX(1px) rotate(0); transform: translateX(1px) rotate(0); } 100% { -webkit-transform: translateX(-1px) rotate(0); transform: translateX(-1px) rotate(0); } } @keyframes hvr-icon-buzz-out { 10% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 20% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 30% { -webkit-transform: translateX(3px) rotate(2deg); transform: translateX(3px) rotate(2deg); } 40% { -webkit-transform: translateX(-3px) rotate(-2deg); transform: translateX(-3px) rotate(-2deg); } 50% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 60% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 70% { -webkit-transform: translateX(2px) rotate(1deg); transform: translateX(2px) rotate(1deg); } 80% { -webkit-transform: translateX(-2px) rotate(-1deg); transform: translateX(-2px) rotate(-1deg); } 90% { -webkit-transform: translateX(1px) rotate(0); transform: translateX(1px) rotate(0); } 100% { -webkit-transform: translateX(-1px) rotate(0); transform: translateX(-1px) rotate(0); } } .hvr-icon-buzz-out { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; padding-right: 2.2em; -webkit-transition-duration: .3s; transition-duration: .3s; } .hvr-icon-buzz-out:before { content: "\f023"; position: absolute; right: 1em; padding: 0 1px; font-family: FontAwesome; -webkit-transform: translateZ(0); transform: translateZ(0); } .hvr-icon-buzz-out:active:before, .hvr-icon-buzz-out:focus:before, .hvr-icon-buzz-out:hover:before { -webkit-animation-name: hvr-icon-buzz-out; animation-name: hvr-icon-buzz-out; -webkit-animation-duration: .75s; animation-duration: .75s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } .hvr-curl-top-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-curl-top-left:before { pointer-events: none; position: absolute; content: ''; height: 0; width: 0; top: 0; left: 0; background: #fff; background: linear-gradient(135deg, #fff 45%, #aaa 50%, #ccc 56%, #fff 80%); filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#ffffff', endColorstr='#000000'); z-index: 1000; box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: width,height; transition-property: width,height; } .hvr-curl-top-left:active:before, .hvr-curl-top-left:focus:before, .hvr-curl-top-left:hover:before { width: 25px; height: 25px; } .hvr-curl-top-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-curl-top-right:before { pointer-events: none; position: absolute; content: ''; height: 0; width: 0; top: 0; right: 0; background: #fff; background: linear-gradient(225deg, #fff 45%, #aaa 50%, #ccc 56%, #fff 80%); box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: width,height; transition-property: width,height; } .hvr-curl-top-right:active:before, .hvr-curl-top-right:focus:before, .hvr-curl-top-right:hover:before { width: 25px; height: 25px; } .hvr-curl-bottom-right { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-curl-bottom-right:before { pointer-events: none; position: absolute; content: ''; height: 0; width: 0; bottom: 0; right: 0; background: #fff; background: linear-gradient(315deg, #fff 45%, #aaa 50%, #ccc 56%, #fff 80%); box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: width,height; transition-property: width,height; } .hvr-curl-bottom-right:active:before, .hvr-curl-bottom-right:focus:before, .hvr-curl-bottom-right:hover:before { width: 25px; height: 25px; } .hvr-curl-bottom-left { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; } .hvr-curl-bottom-left:before { pointer-events: none; position: absolute; content: ''; height: 0; width: 0; bottom: 0; left: 0; background: #fff; background: linear-gradient(45deg, #fff 45%, #aaa 50%, #ccc 56%, #fff 80%); box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.4); -webkit-transition-duration: .3s; transition-duration: .3s; -webkit-transition-property: width,height; transition-property: width,height; } .hvr-curl-bottom-left:active:before, .hvr-curl-bottom-left:focus:before, .hvr-curl-bottom-left:hover:before { width: 25px; height: 25px; } /*! * animate.css -http://daneden.me/animate * Version - 3.5.1 * Licensed under the MIT license - http://opensource.org/licenses/MIT * * Copyright (c) 2016 <NAME> */ .animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; } .animated.infinite { -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; } .animated.hinge { -webkit-animation-duration: 2s; animation-duration: 2s; } .animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY { -webkit-animation-duration: .75s; animation-duration: .75s; } @-webkit-keyframes bounce { 0%,20%,53%,80%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); -webkit-transform: translateZ(0); transform: translateZ(0); } 40%,43% { -webkit-transform: translate3d(0, -30px, 0); transform: translate3d(0, -30px, 0); } 40%,43%,70% { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); } 70% { -webkit-transform: translate3d(0, -15px, 0); transform: translate3d(0, -15px, 0); } 90% { -webkit-transform: translate3d(0, -4px, 0); transform: translate3d(0, -4px, 0); } } @keyframes bounce { 0%,20%,53%,80%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); -webkit-transform: translateZ(0); transform: translateZ(0); } 40%,43% { -webkit-transform: translate3d(0, -30px, 0); transform: translate3d(0, -30px, 0); } 40%,43%,70% { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); } 70% { -webkit-transform: translate3d(0, -15px, 0); transform: translate3d(0, -15px, 0); } 90% { -webkit-transform: translate3d(0, -4px, 0); transform: translate3d(0, -4px, 0); } } .bounce { -webkit-animation-name: bounce; animation-name: bounce; -webkit-transform-origin: center bottom; transform-origin: center bottom; } @-webkit-keyframes flash { 0%,50%,to { opacity: 1; } 25%,75% { opacity: 0; } } @keyframes flash { 0%,50%,to { opacity: 1; } 25%,75% { opacity: 0; } } .flash { -webkit-animation-name: flash; animation-name: flash; } @-webkit-keyframes pulse { 0% { -webkit-transform: scaleX(1); transform: scaleX(1); } 50% { -webkit-transform: scale3d(1.05, 1.05, 1.05); transform: scale3d(1.05, 1.05, 1.05); } to { -webkit-transform: scaleX(1); transform: scaleX(1); } } @keyframes pulse { 0% { -webkit-transform: scaleX(1); transform: scaleX(1); } 50% { -webkit-transform: scale3d(1.05, 1.05, 1.05); transform: scale3d(1.05, 1.05, 1.05); } to { -webkit-transform: scaleX(1); transform: scaleX(1); } } .pulse { -webkit-animation-name: pulse; animation-name: pulse; } @-webkit-keyframes rubberBand { 0% { -webkit-transform: scaleX(1); transform: scaleX(1); } 30% { -webkit-transform: scale3d(1.25, 0.75, 1); transform: scale3d(1.25, 0.75, 1); } 40% { -webkit-transform: scale3d(0.75, 1.25, 1); transform: scale3d(0.75, 1.25, 1); } 50% { -webkit-transform: scale3d(1.15, 0.85, 1); transform: scale3d(1.15, 0.85, 1); } 65% { -webkit-transform: scale3d(0.95, 1.05, 1); transform: scale3d(0.95, 1.05, 1); } 75% { -webkit-transform: scale3d(1.05, 0.95, 1); transform: scale3d(1.05, 0.95, 1); } to { -webkit-transform: scaleX(1); transform: scaleX(1); } } @keyframes rubberBand { 0% { -webkit-transform: scaleX(1); transform: scaleX(1); } 30% { -webkit-transform: scale3d(1.25, 0.75, 1); transform: scale3d(1.25, 0.75, 1); } 40% { -webkit-transform: scale3d(0.75, 1.25, 1); transform: scale3d(0.75, 1.25, 1); } 50% { -webkit-transform: scale3d(1.15, 0.85, 1); transform: scale3d(1.15, 0.85, 1); } 65% { -webkit-transform: scale3d(0.95, 1.05, 1); transform: scale3d(0.95, 1.05, 1); } 75% { -webkit-transform: scale3d(1.05, 0.95, 1); transform: scale3d(1.05, 0.95, 1); } to { -webkit-transform: scaleX(1); transform: scaleX(1); } } .rubberBand { -webkit-animation-name: rubberBand; animation-name: rubberBand; } @-webkit-keyframes shake { 0%,to { -webkit-transform: translateZ(0); transform: translateZ(0); } 10%,30%,50%,70%,90% { -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 20%,40%,60%,80% { -webkit-transform: translate3d(10px, 0, 0); transform: translate3d(10px, 0, 0); } } @keyframes shake { 0%,to { -webkit-transform: translateZ(0); transform: translateZ(0); } 10%,30%,50%,70%,90% { -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 20%,40%,60%,80% { -webkit-transform: translate3d(10px, 0, 0); transform: translate3d(10px, 0, 0); } } .shake { -webkit-animation-name: shake; animation-name: shake; } @-webkit-keyframes headShake { 0% { -webkit-transform: translateX(0); transform: translateX(0); } 6.5% { -webkit-transform: translateX(-6px) rotateY(-9deg); transform: translateX(-6px) rotateY(-9deg); } 18.5% { -webkit-transform: translateX(5px) rotateY(7deg); transform: translateX(5px) rotateY(7deg); } 31.5% { -webkit-transform: translateX(-3px) rotateY(-5deg); transform: translateX(-3px) rotateY(-5deg); } 43.5% { -webkit-transform: translateX(2px) rotateY(3deg); transform: translateX(2px) rotateY(3deg); } 50% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes headShake { 0% { -webkit-transform: translateX(0); transform: translateX(0); } 6.5% { -webkit-transform: translateX(-6px) rotateY(-9deg); transform: translateX(-6px) rotateY(-9deg); } 18.5% { -webkit-transform: translateX(5px) rotateY(7deg); transform: translateX(5px) rotateY(7deg); } 31.5% { -webkit-transform: translateX(-3px) rotateY(-5deg); transform: translateX(-3px) rotateY(-5deg); } 43.5% { -webkit-transform: translateX(2px) rotateY(3deg); transform: translateX(2px) rotateY(3deg); } 50% { -webkit-transform: translateX(0); transform: translateX(0); } } .headShake { -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-name: headShake; animation-name: headShake; } @-webkit-keyframes swing { 20% { -webkit-transform: rotate(15deg); transform: rotate(15deg); } 40% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); } 60% { -webkit-transform: rotate(5deg); transform: rotate(5deg); } 80% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); } to { -webkit-transform: rotate(0deg); transform: rotate(0deg); } } @keyframes swing { 20% { -webkit-transform: rotate(15deg); transform: rotate(15deg); } 40% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); } 60% { -webkit-transform: rotate(5deg); transform: rotate(5deg); } 80% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); } to { -webkit-transform: rotate(0deg); transform: rotate(0deg); } } .swing { -webkit-transform-origin: top center; transform-origin: top center; -webkit-animation-name: swing; animation-name: swing; } @-webkit-keyframes tada { 0% { -webkit-transform: scaleX(1); transform: scaleX(1); } 10%,20% { -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg); transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg); } 30%,50%,70%,90% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); } 40%,60%,80% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); } to { -webkit-transform: scaleX(1); transform: scaleX(1); } } @keyframes tada { 0% { -webkit-transform: scaleX(1); transform: scaleX(1); } 10%,20% { -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg); transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg); } 30%,50%,70%,90% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); } 40%,60%,80% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); } to { -webkit-transform: scaleX(1); transform: scaleX(1); } } .tada { -webkit-animation-name: tada; animation-name: tada; } @-webkit-keyframes wobble { 0% { -webkit-transform: none; transform: none; } 15% { -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg); transform: translate3d(-25%, 0, 0) rotate(-5deg); } 30% { -webkit-transform: translate3d(20%, 0, 0) rotate(3deg); transform: translate3d(20%, 0, 0) rotate(3deg); } 45% { -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg); transform: translate3d(-15%, 0, 0) rotate(-3deg); } 60% { -webkit-transform: translate3d(10%, 0, 0) rotate(2deg); transform: translate3d(10%, 0, 0) rotate(2deg); } 75% { -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg); transform: translate3d(-5%, 0, 0) rotate(-1deg); } to { -webkit-transform: none; transform: none; } } @keyframes wobble { 0% { -webkit-transform: none; transform: none; } 15% { -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg); transform: translate3d(-25%, 0, 0) rotate(-5deg); } 30% { -webkit-transform: translate3d(20%, 0, 0) rotate(3deg); transform: translate3d(20%, 0, 0) rotate(3deg); } 45% { -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg); transform: translate3d(-15%, 0, 0) rotate(-3deg); } 60% { -webkit-transform: translate3d(10%, 0, 0) rotate(2deg); transform: translate3d(10%, 0, 0) rotate(2deg); } 75% { -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg); transform: translate3d(-5%, 0, 0) rotate(-1deg); } to { -webkit-transform: none; transform: none; } } .wobble { -webkit-animation-name: wobble; animation-name: wobble; } @-webkit-keyframes jello { 0%,11.1%,to { -webkit-transform: none; transform: none; } 22.2% { -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); transform: skewX(-12.5deg) skewY(-12.5deg); } 33.3% { -webkit-transform: skewX(6.25deg) skewY(6.25deg); transform: skewX(6.25deg) skewY(6.25deg); } 44.4% { -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); transform: skewX(-3.125deg) skewY(-3.125deg); } 55.5% { -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); transform: skewX(1.5625deg) skewY(1.5625deg); } 66.6% { -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); transform: skewX(-0.78125deg) skewY(-0.78125deg); } 77.7% { -webkit-transform: skewX(0.39063deg) skewY(0.39063deg); transform: skewX(0.39063deg) skewY(0.39063deg); } 88.8% { -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg); transform: skewX(-0.19531deg) skewY(-0.19531deg); } } @keyframes jello { 0%,11.1%,to { -webkit-transform: none; transform: none; } 22.2% { -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); transform: skewX(-12.5deg) skewY(-12.5deg); } 33.3% { -webkit-transform: skewX(6.25deg) skewY(6.25deg); transform: skewX(6.25deg) skewY(6.25deg); } 44.4% { -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); transform: skewX(-3.125deg) skewY(-3.125deg); } 55.5% { -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); transform: skewX(1.5625deg) skewY(1.5625deg); } 66.6% { -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); transform: skewX(-0.78125deg) skewY(-0.78125deg); } 77.7% { -webkit-transform: skewX(0.39063deg) skewY(0.39063deg); transform: skewX(0.39063deg) skewY(0.39063deg); } 88.8% { -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg); transform: skewX(-0.19531deg) skewY(-0.19531deg); } } .jello { -webkit-animation-name: jello; animation-name: jello; -webkit-transform-origin: center; transform-origin: center; } @-webkit-keyframes bounceIn { 0%,20%,40%,60%,80%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 20% { -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } 40% { -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 60% { opacity: 1; -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03); } 80% { -webkit-transform: scale3d(0.97, 0.97, 0.97); transform: scale3d(0.97, 0.97, 0.97); } to { opacity: 1; -webkit-transform: scaleX(1); transform: scaleX(1); } } @keyframes bounceIn { 0%,20%,40%,60%,80%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 20% { -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } 40% { -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 60% { opacity: 1; -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03); } 80% { -webkit-transform: scale3d(0.97, 0.97, 0.97); transform: scale3d(0.97, 0.97, 0.97); } to { opacity: 1; -webkit-transform: scaleX(1); transform: scaleX(1); } } .bounceIn { -webkit-animation-name: bounceIn; animation-name: bounceIn; } @-webkit-keyframes bounceInDown { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(0, -3000px, 0); transform: translate3d(0, -3000px, 0); } 60% { opacity: 1; -webkit-transform: translate3d(0, 25px, 0); transform: translate3d(0, 25px, 0); } 75% { -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); } 90% { -webkit-transform: translate3d(0, 5px, 0); transform: translate3d(0, 5px, 0); } to { -webkit-transform: none; transform: none; } } @keyframes bounceInDown { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(0, -3000px, 0); transform: translate3d(0, -3000px, 0); } 60% { opacity: 1; -webkit-transform: translate3d(0, 25px, 0); transform: translate3d(0, 25px, 0); } 75% { -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); } 90% { -webkit-transform: translate3d(0, 5px, 0); transform: translate3d(0, 5px, 0); } to { -webkit-transform: none; transform: none; } } .bounceInDown { -webkit-animation-name: bounceInDown; animation-name: bounceInDown; } @-webkit-keyframes bounceInLeft { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(-3000px, 0, 0); transform: translate3d(-3000px, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(25px, 0, 0); transform: translate3d(25px, 0, 0); } 75% { -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 90% { -webkit-transform: translate3d(5px, 0, 0); transform: translate3d(5px, 0, 0); } to { -webkit-transform: none; transform: none; } } @keyframes bounceInLeft { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(-3000px, 0, 0); transform: translate3d(-3000px, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(25px, 0, 0); transform: translate3d(25px, 0, 0); } 75% { -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 90% { -webkit-transform: translate3d(5px, 0, 0); transform: translate3d(5px, 0, 0); } to { -webkit-transform: none; transform: none; } } .bounceInLeft { -webkit-animation-name: bounceInLeft; animation-name: bounceInLeft; } @-webkit-keyframes bounceInRight { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(3000px, 0, 0); transform: translate3d(3000px, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(-25px, 0, 0); transform: translate3d(-25px, 0, 0); } 75% { -webkit-transform: translate3d(10px, 0, 0); transform: translate3d(10px, 0, 0); } 90% { -webkit-transform: translate3d(-5px, 0, 0); transform: translate3d(-5px, 0, 0); } to { -webkit-transform: none; transform: none; } } @keyframes bounceInRight { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(3000px, 0, 0); transform: translate3d(3000px, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(-25px, 0, 0); transform: translate3d(-25px, 0, 0); } 75% { -webkit-transform: translate3d(10px, 0, 0); transform: translate3d(10px, 0, 0); } 90% { -webkit-transform: translate3d(-5px, 0, 0); transform: translate3d(-5px, 0, 0); } to { -webkit-transform: none; transform: none; } } .bounceInRight { -webkit-animation-name: bounceInRight; animation-name: bounceInRight; } @-webkit-keyframes bounceInUp { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(0, 3000px, 0); transform: translate3d(0, 3000px, 0); } 60% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); } 75% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); } 90% { -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0); } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } @keyframes bounceInUp { 0%,60%,75%,90%,to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(0, 3000px, 0); transform: translate3d(0, 3000px, 0); } 60% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); } 75% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); } 90% { -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0); } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } .bounceInUp { -webkit-animation-name: bounceInUp; animation-name: bounceInUp; } @-webkit-keyframes bounceOut { 20% { -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 50%,55% { opacity: 1; -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } to { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } } @keyframes bounceOut { 20% { -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 50%,55% { opacity: 1; -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } to { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } } .bounceOut { -webkit-animation-name: bounceOut; animation-name: bounceOut; } @-webkit-keyframes bounceOutDown { 20% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); } 40%,45% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); } to { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } } @keyframes bounceOutDown { 20% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); } 40%,45% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); } to { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } } .bounceOutDown { -webkit-animation-name: bounceOutDown; animation-name: bounceOutDown; } @-webkit-keyframes bounceOutLeft { 20% { opacity: 1; -webkit-transform: translate3d(20px, 0, 0); transform: translate3d(20px, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } } @keyframes bounceOutLeft { 20% { opacity: 1; -webkit-transform: translate3d(20px, 0, 0); transform: translate3d(20px, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } } .bounceOutLeft { -webkit-animation-name: bounceOutLeft; animation-name: bounceOutLeft; } @-webkit-keyframes bounceOutRight { 20% { opacity: 1; -webkit-transform: translate3d(-20px, 0, 0); transform: translate3d(-20px, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } } @keyframes bounceOutRight { 20% { opacity: 1; -webkit-transform: translate3d(-20px, 0, 0); transform: translate3d(-20px, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } } .bounceOutRight { -webkit-animation-name: bounceOutRight; animation-name: bounceOutRight; } @-webkit-keyframes bounceOutUp { 20% { -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); } 40%,45% { opacity: 1; -webkit-transform: translate3d(0, 20px, 0); transform: translate3d(0, 20px, 0); } to { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } } @keyframes bounceOutUp { 20% { -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); } 40%,45% { opacity: 1; -webkit-transform: translate3d(0, 20px, 0); transform: translate3d(0, 20px, 0); } to { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } } .bounceOutUp { -webkit-animation-name: bounceOutUp; animation-name: bounceOutUp; } @-webkit-keyframes fadeIn { 0% { opacity: 0; } to { opacity: 1; } } @keyframes fadeIn { 0% { opacity: 0; } to { opacity: 1; } } .fadeIn { -webkit-animation-name: fadeIn; animation-name: fadeIn; } @-webkit-keyframes fadeInDown { 0% { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInDown { 0% { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInDown { -webkit-animation-name: fadeInDown; animation-name: fadeInDown; } @-webkit-keyframes fadeInDownBig { 0% { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInDownBig { 0% { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInDownBig { -webkit-animation-name: fadeInDownBig; animation-name: fadeInDownBig; } @-webkit-keyframes fadeInLeft { 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInLeft { 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInLeft { -webkit-animation-name: fadeInLeft; animation-name: fadeInLeft; } @-webkit-keyframes fadeInLeftBig { 0% { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInLeftBig { 0% { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInLeftBig { -webkit-animation-name: fadeInLeftBig; animation-name: fadeInLeftBig; } @-webkit-keyframes fadeInRight { 0% { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInRight { 0% { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInRight { -webkit-animation-name: fadeInRight; animation-name: fadeInRight; } @-webkit-keyframes fadeInRightBig { 0% { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInRightBig { 0% { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInRightBig { -webkit-animation-name: fadeInRightBig; animation-name: fadeInRightBig; } @-webkit-keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInUp { -webkit-animation-name: fadeInUp; animation-name: fadeInUp; } @-webkit-keyframes fadeInUpBig { 0% { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInUpBig { 0% { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } .fadeInUpBig { -webkit-animation-name: fadeInUpBig; animation-name: fadeInUpBig; } @-webkit-keyframes fadeOut { 0% { opacity: 1; } to { opacity: 0; } } @keyframes fadeOut { 0% { opacity: 1; } to { opacity: 0; } } .fadeOut { -webkit-animation-name: fadeOut; animation-name: fadeOut; } @-webkit-keyframes fadeOutDown { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } } @keyframes fadeOutDown { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } } .fadeOutDown { -webkit-animation-name: fadeOutDown; animation-name: fadeOutDown; } @-webkit-keyframes fadeOutDownBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } } @keyframes fadeOutDownBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } } .fadeOutDownBig { -webkit-animation-name: fadeOutDownBig; animation-name: fadeOutDownBig; } @-webkit-keyframes fadeOutLeft { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } @keyframes fadeOutLeft { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } .fadeOutLeft { -webkit-animation-name: fadeOutLeft; animation-name: fadeOutLeft; } @-webkit-keyframes fadeOutLeftBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } } @keyframes fadeOutLeftBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } } .fadeOutLeftBig { -webkit-animation-name: fadeOutLeftBig; animation-name: fadeOutLeftBig; } @-webkit-keyframes fadeOutRight { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } } @keyframes fadeOutRight { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } } .fadeOutRight { -webkit-animation-name: fadeOutRight; animation-name: fadeOutRight; } @-webkit-keyframes fadeOutRightBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } } @keyframes fadeOutRightBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } } .fadeOutRightBig { -webkit-animation-name: fadeOutRightBig; animation-name: fadeOutRightBig; } @-webkit-keyframes fadeOutUp { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } } @keyframes fadeOutUp { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } } .fadeOutUp { -webkit-animation-name: fadeOutUp; animation-name: fadeOutUp; } @-webkit-keyframes fadeOutUpBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } } @keyframes fadeOutUpBig { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } } .fadeOutUpBig { -webkit-animation-name: fadeOutUpBig; animation-name: fadeOutUpBig; } @-webkit-keyframes flip { 0% { -webkit-transform: perspective(400px) rotateY(-1turn); transform: perspective(400px) rotateY(-1turn); } 0%,40% { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 40% { -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg); transform: perspective(400px) translateZ(150px) rotateY(-190deg); } 50% { -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg); transform: perspective(400px) translateZ(150px) rotateY(-170deg); } 50%,80% { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 80% { -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95); transform: perspective(400px) scale3d(0.95, 0.95, 0.95); } to { -webkit-transform: perspective(400px); transform: perspective(400px); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } } @keyframes flip { 0% { -webkit-transform: perspective(400px) rotateY(-1turn); transform: perspective(400px) rotateY(-1turn); } 0%,40% { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 40% { -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg); transform: perspective(400px) translateZ(150px) rotateY(-190deg); } 50% { -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg); transform: perspective(400px) translateZ(150px) rotateY(-170deg); } 50%,80% { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 80% { -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95); transform: perspective(400px) scale3d(0.95, 0.95, 0.95); } to { -webkit-transform: perspective(400px); transform: perspective(400px); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } } .animated.flip { -webkit-backface-visibility: visible; backface-visibility: visible; -webkit-animation-name: flip; animation-name: flip; } @-webkit-keyframes flipInX { 0% { -webkit-transform: perspective(400px) rotateX(90deg); transform: perspective(400px) rotateX(90deg); opacity: 0; } 0%,40% { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 40% { -webkit-transform: perspective(400px) rotateX(-20deg); transform: perspective(400px) rotateX(-20deg); } 60% { -webkit-transform: perspective(400px) rotateX(10deg); transform: perspective(400px) rotateX(10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotateX(-5deg); transform: perspective(400px) rotateX(-5deg); } to { -webkit-transform: perspective(400px); transform: perspective(400px); } } @keyframes flipInX { 0% { -webkit-transform: perspective(400px) rotateX(90deg); transform: perspective(400px) rotateX(90deg); opacity: 0; } 0%,40% { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 40% { -webkit-transform: perspective(400px) rotateX(-20deg); transform: perspective(400px) rotateX(-20deg); } 60% { -webkit-transform: perspective(400px) rotateX(10deg); transform: perspective(400px) rotateX(10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotateX(-5deg); transform: perspective(400px) rotateX(-5deg); } to { -webkit-transform: perspective(400px); transform: perspective(400px); } } .flipInX { -webkit-backface-visibility: visible !important; backface-visibility: visible !important; -webkit-animation-name: flipInX; animation-name: flipInX; } @-webkit-keyframes flipInY { 0% { -webkit-transform: perspective(400px) rotateY(90deg); transform: perspective(400px) rotateY(90deg); opacity: 0; } 0%,40% { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 40% { -webkit-transform: perspective(400px) rotateY(-20deg); transform: perspective(400px) rotateY(-20deg); } 60% { -webkit-transform: perspective(400px) rotateY(10deg); transform: perspective(400px) rotateY(10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotateY(-5deg); transform: perspective(400px) rotateY(-5deg); } to { -webkit-transform: perspective(400px); transform: perspective(400px); } } @keyframes flipInY { 0% { -webkit-transform: perspective(400px) rotateY(90deg); transform: perspective(400px) rotateY(90deg); opacity: 0; } 0%,40% { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 40% { -webkit-transform: perspective(400px) rotateY(-20deg); transform: perspective(400px) rotateY(-20deg); } 60% { -webkit-transform: perspective(400px) rotateY(10deg); transform: perspective(400px) rotateY(10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotateY(-5deg); transform: perspective(400px) rotateY(-5deg); } to { -webkit-transform: perspective(400px); transform: perspective(400px); } } .flipInY { -webkit-backface-visibility: visible !important; backface-visibility: visible !important; -webkit-animation-name: flipInY; animation-name: flipInY; } @-webkit-keyframes flipOutX { 0% { -webkit-transform: perspective(400px); transform: perspective(400px); } 30% { -webkit-transform: perspective(400px) rotateX(-20deg); transform: perspective(400px) rotateX(-20deg); opacity: 1; } to { -webkit-transform: perspective(400px) rotateX(90deg); transform: perspective(400px) rotateX(90deg); opacity: 0; } } @keyframes flipOutX { 0% { -webkit-transform: perspective(400px); transform: perspective(400px); } 30% { -webkit-transform: perspective(400px) rotateX(-20deg); transform: perspective(400px) rotateX(-20deg); opacity: 1; } to { -webkit-transform: perspective(400px) rotateX(90deg); transform: perspective(400px) rotateX(90deg); opacity: 0; } } .flipOutX { -webkit-animation-name: flipOutX; animation-name: flipOutX; -webkit-backface-visibility: visible !important; backface-visibility: visible !important; } @-webkit-keyframes flipOutY { 0% { -webkit-transform: perspective(400px); transform: perspective(400px); } 30% { -webkit-transform: perspective(400px) rotateY(-15deg); transform: perspective(400px) rotateY(-15deg); opacity: 1; } to { -webkit-transform: perspective(400px) rotateY(90deg); transform: perspective(400px) rotateY(90deg); opacity: 0; } } @keyframes flipOutY { 0% { -webkit-transform: perspective(400px); transform: perspective(400px); } 30% { -webkit-transform: perspective(400px) rotateY(-15deg); transform: perspective(400px) rotateY(-15deg); opacity: 1; } to { -webkit-transform: perspective(400px) rotateY(90deg); transform: perspective(400px) rotateY(90deg); opacity: 0; } } .flipOutY { -webkit-backface-visibility: visible !important; backface-visibility: visible !important; -webkit-animation-name: flipOutY; animation-name: flipOutY; } @-webkit-keyframes lightSpeedIn { 0% { -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); transform: translate3d(100%, 0, 0) skewX(-30deg); opacity: 0; } 60% { -webkit-transform: skewX(20deg); transform: skewX(20deg); } 60%,80% { opacity: 1; } 80% { -webkit-transform: skewX(-5deg); transform: skewX(-5deg); } to { -webkit-transform: none; transform: none; opacity: 1; } } @keyframes lightSpeedIn { 0% { -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); transform: translate3d(100%, 0, 0) skewX(-30deg); opacity: 0; } 60% { -webkit-transform: skewX(20deg); transform: skewX(20deg); } 60%,80% { opacity: 1; } 80% { -webkit-transform: skewX(-5deg); transform: skewX(-5deg); } to { -webkit-transform: none; transform: none; opacity: 1; } } .lightSpeedIn { -webkit-animation-name: lightSpeedIn; animation-name: lightSpeedIn; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } @-webkit-keyframes lightSpeedOut { 0% { opacity: 1; } to { -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); transform: translate3d(100%, 0, 0) skewX(30deg); opacity: 0; } } @keyframes lightSpeedOut { 0% { opacity: 1; } to { -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); transform: translate3d(100%, 0, 0) skewX(30deg); opacity: 0; } } .lightSpeedOut { -webkit-animation-name: lightSpeedOut; animation-name: lightSpeedOut; -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } @-webkit-keyframes rotateIn { 0% { transform-origin: center; -webkit-transform: rotate(-200deg); transform: rotate(-200deg); opacity: 0; } 0%,to { -webkit-transform-origin: center; } to { transform-origin: center; -webkit-transform: none; transform: none; opacity: 1; } } @keyframes rotateIn { 0% { transform-origin: center; -webkit-transform: rotate(-200deg); transform: rotate(-200deg); opacity: 0; } 0%,to { -webkit-transform-origin: center; } to { transform-origin: center; -webkit-transform: none; transform: none; opacity: 1; } } .rotateIn { -webkit-animation-name: rotateIn; animation-name: rotateIn; } @-webkit-keyframes rotateInDownLeft { 0% { transform-origin: left bottom; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); opacity: 0; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: none; transform: none; opacity: 1; } } @keyframes rotateInDownLeft { 0% { transform-origin: left bottom; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); opacity: 0; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: none; transform: none; opacity: 1; } } .rotateInDownLeft { -webkit-animation-name: rotateInDownLeft; animation-name: rotateInDownLeft; } @-webkit-keyframes rotateInDownRight { 0% { transform-origin: right bottom; -webkit-transform: rotate(45deg); transform: rotate(45deg); opacity: 0; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: none; transform: none; opacity: 1; } } @keyframes rotateInDownRight { 0% { transform-origin: right bottom; -webkit-transform: rotate(45deg); transform: rotate(45deg); opacity: 0; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: none; transform: none; opacity: 1; } } .rotateInDownRight { -webkit-animation-name: rotateInDownRight; animation-name: rotateInDownRight; } @-webkit-keyframes rotateInUpLeft { 0% { transform-origin: left bottom; -webkit-transform: rotate(45deg); transform: rotate(45deg); opacity: 0; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: none; transform: none; opacity: 1; } } @keyframes rotateInUpLeft { 0% { transform-origin: left bottom; -webkit-transform: rotate(45deg); transform: rotate(45deg); opacity: 0; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: none; transform: none; opacity: 1; } } .rotateInUpLeft { -webkit-animation-name: rotateInUpLeft; animation-name: rotateInUpLeft; } @-webkit-keyframes rotateInUpRight { 0% { transform-origin: right bottom; -webkit-transform: rotate(-90deg); transform: rotate(-90deg); opacity: 0; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: none; transform: none; opacity: 1; } } @keyframes rotateInUpRight { 0% { transform-origin: right bottom; -webkit-transform: rotate(-90deg); transform: rotate(-90deg); opacity: 0; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: none; transform: none; opacity: 1; } } .rotateInUpRight { -webkit-animation-name: rotateInUpRight; animation-name: rotateInUpRight; } @-webkit-keyframes rotateOut { 0% { transform-origin: center; opacity: 1; } 0%,to { -webkit-transform-origin: center; } to { transform-origin: center; -webkit-transform: rotate(200deg); transform: rotate(200deg); opacity: 0; } } @keyframes rotateOut { 0% { transform-origin: center; opacity: 1; } 0%,to { -webkit-transform-origin: center; } to { transform-origin: center; -webkit-transform: rotate(200deg); transform: rotate(200deg); opacity: 0; } } .rotateOut { -webkit-animation-name: rotateOut; animation-name: rotateOut; } @-webkit-keyframes rotateOutDownLeft { 0% { transform-origin: left bottom; opacity: 1; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: rotate(45deg); transform: rotate(45deg); opacity: 0; } } @keyframes rotateOutDownLeft { 0% { transform-origin: left bottom; opacity: 1; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: rotate(45deg); transform: rotate(45deg); opacity: 0; } } .rotateOutDownLeft { -webkit-animation-name: rotateOutDownLeft; animation-name: rotateOutDownLeft; } @-webkit-keyframes rotateOutDownRight { 0% { transform-origin: right bottom; opacity: 1; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); opacity: 0; } } @keyframes rotateOutDownRight { 0% { transform-origin: right bottom; opacity: 1; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); opacity: 0; } } .rotateOutDownRight { -webkit-animation-name: rotateOutDownRight; animation-name: rotateOutDownRight; } @-webkit-keyframes rotateOutUpLeft { 0% { transform-origin: left bottom; opacity: 1; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); opacity: 0; } } @keyframes rotateOutUpLeft { 0% { transform-origin: left bottom; opacity: 1; } 0%,to { -webkit-transform-origin: left bottom; } to { transform-origin: left bottom; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); opacity: 0; } } .rotateOutUpLeft { -webkit-animation-name: rotateOutUpLeft; animation-name: rotateOutUpLeft; } @-webkit-keyframes rotateOutUpRight { 0% { transform-origin: right bottom; opacity: 1; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: rotate(90deg); transform: rotate(90deg); opacity: 0; } } @keyframes rotateOutUpRight { 0% { transform-origin: right bottom; opacity: 1; } 0%,to { -webkit-transform-origin: right bottom; } to { transform-origin: right bottom; -webkit-transform: rotate(90deg); transform: rotate(90deg); opacity: 0; } } .rotateOutUpRight { -webkit-animation-name: rotateOutUpRight; animation-name: rotateOutUpRight; } @-webkit-keyframes hinge { 0% { transform-origin: top left; } 0%,20%,60% { -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 20%,60% { -webkit-transform: rotate(80deg); transform: rotate(80deg); transform-origin: top left; } 40%,80% { -webkit-transform: rotate(60deg); transform: rotate(60deg); -webkit-transform-origin: top left; transform-origin: top left; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; opacity: 1; } to { -webkit-transform: translate3d(0, 700px, 0); transform: translate3d(0, 700px, 0); opacity: 0; } } @keyframes hinge { 0% { transform-origin: top left; } 0%,20%,60% { -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 20%,60% { -webkit-transform: rotate(80deg); transform: rotate(80deg); transform-origin: top left; } 40%,80% { -webkit-transform: rotate(60deg); transform: rotate(60deg); -webkit-transform-origin: top left; transform-origin: top left; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; opacity: 1; } to { -webkit-transform: translate3d(0, 700px, 0); transform: translate3d(0, 700px, 0); opacity: 0; } } .hinge { -webkit-animation-name: hinge; animation-name: hinge; } @-webkit-keyframes rollIn { 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg); transform: translate3d(-100%, 0, 0) rotate(-120deg); } to { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes rollIn { 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg); transform: translate3d(-100%, 0, 0) rotate(-120deg); } to { opacity: 1; -webkit-transform: none; transform: none; } } .rollIn { -webkit-animation-name: rollIn; animation-name: rollIn; } @-webkit-keyframes rollOut { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(100%, 0, 0) rotate(120deg); transform: translate3d(100%, 0, 0) rotate(120deg); } } @keyframes rollOut { 0% { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(100%, 0, 0) rotate(120deg); transform: translate3d(100%, 0, 0) rotate(120deg); } } .rollOut { -webkit-animation-name: rollOut; animation-name: rollOut; } @-webkit-keyframes zoomIn { 0% { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 50% { opacity: 1; } } @keyframes zoomIn { 0% { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 50% { opacity: 1; } } .zoomIn { -webkit-animation-name: zoomIn; animation-name: zoomIn; } @-webkit-keyframes zoomInDown { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomInDown { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .zoomInDown { -webkit-animation-name: zoomInDown; animation-name: zoomInDown; } @-webkit-keyframes zoomInLeft { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomInLeft { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .zoomInLeft { -webkit-animation-name: zoomInLeft; animation-name: zoomInLeft; } @-webkit-keyframes zoomInRight { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomInRight { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .zoomInRight { -webkit-animation-name: zoomInRight; animation-name: zoomInRight; } @-webkit-keyframes zoomInUp { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomInUp { 0% { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .zoomInUp { -webkit-animation-name: zoomInUp; animation-name: zoomInUp; } @-webkit-keyframes zoomOut { 0% { opacity: 1; } 50% { -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 50%,to { opacity: 0; } } @keyframes zoomOut { 0% { opacity: 1; } 50% { -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 50%,to { opacity: 0; } } .zoomOut { -webkit-animation-name: zoomOut; animation-name: zoomOut; } @-webkit-keyframes zoomOutDown { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } to { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); -webkit-transform-origin: center bottom; transform-origin: center bottom; -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomOutDown { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } to { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); -webkit-transform-origin: center bottom; transform-origin: center bottom; -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .zoomOutDown { -webkit-animation-name: zoomOutDown; animation-name: zoomOutDown; } @-webkit-keyframes zoomOutLeft { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); } to { opacity: 0; -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); transform: scale(0.1) translate3d(-2000px, 0, 0); -webkit-transform-origin: left center; transform-origin: left center; } } @keyframes zoomOutLeft { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); } to { opacity: 0; -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); transform: scale(0.1) translate3d(-2000px, 0, 0); -webkit-transform-origin: left center; transform-origin: left center; } } .zoomOutLeft { -webkit-animation-name: zoomOutLeft; animation-name: zoomOutLeft; } @-webkit-keyframes zoomOutRight { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); } to { opacity: 0; -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); transform: scale(0.1) translate3d(2000px, 0, 0); -webkit-transform-origin: right center; transform-origin: right center; } } @keyframes zoomOutRight { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); } to { opacity: 0; -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); transform: scale(0.1) translate3d(2000px, 0, 0); -webkit-transform-origin: right center; transform-origin: right center; } } .zoomOutRight { -webkit-animation-name: zoomOutRight; animation-name: zoomOutRight; } @-webkit-keyframes zoomOutUp { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } to { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); -webkit-transform-origin: center bottom; transform-origin: center bottom; -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomOutUp { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } to { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); -webkit-transform-origin: center bottom; transform-origin: center bottom; -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .zoomOutUp { -webkit-animation-name: zoomOutUp; animation-name: zoomOutUp; } @-webkit-keyframes slideInDown { 0% { -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } @keyframes slideInDown { 0% { -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } .slideInDown { -webkit-animation-name: slideInDown; animation-name: slideInDown; } @-webkit-keyframes slideInLeft { 0% { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } @keyframes slideInLeft { 0% { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } .slideInLeft { -webkit-animation-name: slideInLeft; animation-name: slideInLeft; } @-webkit-keyframes slideInRight { 0% { -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } @keyframes slideInRight { 0% { -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } .slideInRight { -webkit-animation-name: slideInRight; animation-name: slideInRight; } @-webkit-keyframes slideInUp { 0% { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } @keyframes slideInUp { 0% { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); visibility: visible; } to { -webkit-transform: translateZ(0); transform: translateZ(0); } } .slideInUp { -webkit-animation-name: slideInUp; animation-name: slideInUp; } @-webkit-keyframes slideOutDown { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } } @keyframes slideOutDown { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } } .slideOutDown { -webkit-animation-name: slideOutDown; animation-name: slideOutDown; } @-webkit-keyframes slideOutLeft { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } @keyframes slideOutLeft { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } .slideOutLeft { -webkit-animation-name: slideOutLeft; animation-name: slideOutLeft; } @-webkit-keyframes slideOutRight { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } } @keyframes slideOutRight { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } } .slideOutRight { -webkit-animation-name: slideOutRight; animation-name: slideOutRight; } @-webkit-keyframes slideOutUp { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } } @keyframes slideOutUp { 0% { -webkit-transform: translateZ(0); transform: translateZ(0); } to { visibility: hidden; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } } .slideOutUp { -webkit-animation-name: slideOutUp; animation-name: slideOutUp; } .form-control:-moz-placeholder { color: #979797; } .form-control::-moz-placeholder { color: #979797; opacity: 1; } .form-control:-ms-input-placeholder { color: #979797; } .form-control::-webkit-input-placeholder { color: #979797; } .form-control.placeholder { color: #979797; } .form-control { border: 2px solid #979797; color: #34495e; font-family: "Lato", sans-serif; font-size: 15px; line-height: 1.467; padding: 8px 12px; height: 42px; -webkit-appearance: none; border-radius: 6px; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: border .25s linear, color .25s linear, background-color .25s linear; transition: border .25s linear, color .25s linear, background-color .25s linear; } .form-group.focus .form-control, .form-control:focus { border-color: #2A2D3B; outline: 0; -webkit-box-shadow: none; box-shadow: none; } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { background-color: #f4f6f6; border-color: #2A2D3B; color: #d5dbdb; cursor: default; opacity: 0.7; filter: alpha(opacity=70); } .form-control.flat { border-color: transparent; } .form-control.flat:hover { border-color: #2A2D3B; } .form-control.flat:focus { border-color: #2A2D3B; } .btn-link { font-family: 'Roboto', sans-serif; font-weight: normal; margin-bottom: 100px; color: #2A2D3B; } .btn-link:hover { color: #979797; -webkit-transition: .25s linear; transition: .25s linear; } .navbar-default { padding-left: 15px; padding-right: 15px; padding-top: 15px; padding-bottom: 15px; font-family: "Lato", sans-serif; background: #fff; border: none; } .navbar-left { margin-top: 8px; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #2A2D3B; } .navbar-default .navbar-text { color: #979BA3; } .navbar-default .navbar-nav > li > a { color: #979BA3; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #2A2D3B; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #2A2D3B; background: transparent; } .navbar-default .navbar-nav > .open > a:hover { color: #2A2D3B; background: transparent; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background: transparent; } .navbar-default .navbar-toggle .icon-bar { background-color: #2A2D3B; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #2A2D3B; } .navbar-default .navbar-link { color: #2A2D3B; } .navbar-default .navbar-link:hover { color: #2A2D3B; } .navbar-default .navbar-nav > .open > a { background-color: transparent; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; font-size: 14px; text-align: right; list-style: none; color: #979BA3; } .dropdown-menu > .active > a { color: #fff; text-decoration: none; background-color: #979BA3; outline: 0; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { background-color: transparent; } .dropdown-menu { text-align: left; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #2A2D3B; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { background-color: #2A2D3B; } } /* FONTS */ body { width: 100%; height: 100%; padding-left: 15px; padding-right: 15px; padding-top: 15px; padding-bottom: 15px; } html { width: 100%; height: 100%; } /* INTRO */ .intro-section { height: 100%; background: url(/img/header-bg-overlay.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; text-align: center; padding-top: 20%; } .intro-section-about { height: 100%; background: url(/img/about-page-bg-overlay.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; text-align: center; padding-top: 20%; } .intro-section-locations { height: 100%; background: url(/img/locations-header.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; text-align: center; padding-top: 20%; } .intro-section-sculpting { height: 100%; background: url(/img/sculpting-bg-header.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; text-align: center; padding-top: 20%; } .intro-section-theology { height: 100%; background: url(/img/theology-bg-overlay.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; text-align: center; padding-top: 20%; } .intro-section-anatomy { height: 100%; background: url(/img/anatomy-bg-overlay.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; text-align: center; padding-top: 20%; } .intro-section-item { height: 100%; background: url(/img/item-template-bg-overlay.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; text-align: center; padding-top: 20%; } /* ABOUT */ .about-section { height: 100%; padding-top: 50px; text-align: center; background: #fff; } .transi-logo { width: 215px; height: 130px; } .services-section { height: 100%; padding-top: 150px; text-align: center; background: #fff; } .contact-section { height: 100%; padding-top: 150px; text-align: center; background: #eee; } figure { margin: 0; padding: 0; border: 0; vertical-align: baseline; } /* FIND OUT MORE */ .grey-bg { background-color: #979BA3; width: 100%; height: 320px; margin-top: 0px; padding-top: 100px; padding-bottom: 100px; text-align: center; } .light-grey-bg { background-color: #F5F5F5; width: 100%; height: 320px; margin-top: 25px; text-align: center; } /* HEADINGS */ .h1-navy { color: #2A2D3B; font-size: 48px; font-weight: normal; letter-spacing: 5px; font-family: "Roboto", sans-serif; } .h1-white { color: #fff; font-size: 48px; font-weight: normal; letter-spacing: 5px; font-family: "Roboto", sans-serif; } /* IMG */ .portrait { padding-top: 100px; width: 375.601px; height: 563px; margin: 10px; } .sculpting { background-image: url(/img/sculpting.jpg); background-size: cover; margin: 5px; width: 375px; height: 631px; } /* Layout */ .col-centered { display: inline-block; float: none; /* reset the text-align */ text-align: center; /* inline-block space fix */ margin-right: -4px; padding-left: 320px; padding-right: 320px; } /* OTHER */ .h2-navy { color: #2A2D3B; text-transform: uppercase; font-family: "Roboto", sans-serif; margin-top: 50px; font-size: 30px; font-weight: normal; } .h2-quote { color: #666666; text-transform: uppercase; font-family: "Roboto", sans-serif; margin-top: 50px; font-size: 30px; font-weight: normal; } hr { color: #979797; width: 230px; margin: 14px auto 14px auto; } hr.long { color: #979797; width: 100%; } a, a:visited, a:hover, a:link, a:active { text-decoration: none; color: #fff; } a.navy { padding: 10px; font-family: 'Lato', sans-serif; font-size: 14px; text-decoration: none; color: #2A2D3B; } .lead-first-para { font-family: 'Lato', sans-serif; color: #666666; font-size: 14px; margin-top: 50px; margin-bottom: 50px; font-weight: normal; } .lead-white { font-family: 'Lato', sans-serif; color: #fff; font-size: 14px; padding-top: 50px; font-weight: normal; } .lead-other-para { font-family: 'Lato', sans-serif; color: #666666; font-size: 14px; margin-top: 10px; margin-bottom: 50px; font-weight: normal; } .lead-italic { font-family: 'Lato', sans-serif; color: #fff; font-size: 14px; font-style: italic; } .cta-white { font-family: "Roboto", sans-serif; font-size: 18px; text-transform: uppercase; margin-top: 50px; letter-spacing: 1px; color: #fff; } .cta-navy { font-family: "Roboto", sans-serif; font-size: 18px; text-transform: uppercase; margin-top: 50px; letter-spacing: 1px; color: #2A2D3B; } .fa { padding: 5px; } #about-page-cta { font-family: 'Lato',sans-serif; font-size: 18px; padding-top: 25px; padding-bottom: 50px; } .archive-list { text-align: left; } .archive-item { margin-top: 10px; margin-bottom: 10px; } /* LOCATIONS */ #map { padding-left: 15px; padding-right: 15px; padding-top: 15px; padding-bottom: 15px; height: 400px; width: 480px; } #map-two { padding-left: 15px; padding-right: 15px; padding-top: 15px; padding-bottom: 15px; margin-top: 50px; height: 400px; } #archive { margin-top: 50px; } /* FOOTER */ footer { padding-left: 15px; padding-right: 15px; padding-top: 15px; padding-bottom: 15px; background-color: #2A2D3B; color: #fff; padding-top: 50px; padding-bottom: 50px; } /* MEDIA QUARIES */ /*================================================== = Bootstrap 3 Media Queries = ==================================================*/ /*========== Mobile First Method ==========*/ /* Custom, iPhone Retina */ /* Extra Small Devices, Phones */ /* Small Devices, Tablets */ /* Medium Devices, Desktops */ /* Large Devices, Wide Screens */ /*========== Non-Mobile First Method ==========*/ /* Large Devices, Wide Screens */ /* Medium Devices, Desktops */ /* Small Devices, Tablets */ @media only screen and (max-width: 768px) { body { padding: 0px; } .col-centered { padding: 0 !important; margin: 0 !important; } #portrait { display: none; } #map { display: none; } .intro-section { background: #000; height: 75%; } } /* Extra Small Devices, Phones */ /* Custom, iPhone Retina */ /*# sourceMappingURL=main.css.map */
0.565299
0.082033
@charset "utf-8"; *{ box-sizing: border-box; } html{ height: 100%; } body{ margin: 0; padding: 0; line-height: 1.5; font-size: 15px; height: 100%; color: #66757f; user-select: none; font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif; cursor: default; } a{ color: #55acee; text-decoration: none; cursor: pointer; } a:hover{ text-decoration: underline; } p{ margin: 0; padding: 0; } ::-webkit-scrollbar{ width:8px; height:8px; } ::-webkit-scrollbar-track-piece{ background-color:#eee; } ::-webkit-scrollbar-thumb{ background-color:#ccc; } #wrapper{ height: 100%; } #wrapper>nav{ width: 75px; background-color: #66757f; } #wrapper>nav>p:not(.flex-grow){ height: 55px; margin: 10px; border-radius: 50%; transition: background-color .1s linear; cursor: pointer; } #wrapper>nav>p+p:not(.flex-grow){ margin-top: 0; } #wrapper>nav>p:not(.flex-grow):not(.active):hover{ background-color: #e1e8ed; } #wrapper>nav>p:not(.flex-grow):active{ background-color: #ccd6dd; } #wrapper>nav>p:first-child{ border-radius: 10%; margin-bottom: 20px; border: 1px solid #55acee; } #wrapper>nav>p:first-child>svg{ fill: #55acee; } #wrapper>nav>p:first-child:hover>svg{ fill: #55acee; } #wrapper>nav>p.active{ background-color: #55acee; } #wrapper>nav>p>svg{ fill: #e1e8ed; transition: fill .1s linear; } #wrapper>nav>p:not(.active):hover>svg{ fill: #66757f; } #wrapper>main{ border-left: 1px solid #ccd6dd; background-color: #e1e8ed; overflow-y: auto; } #wrapper>main>header{ border-bottom: 1px solid #ccd6dd; background-color: #fff; height: 40px; position: sticky; top: 0; } #wrapper>main>header>h1{ margin: 0 10px; font-size: 18px; } section{ background-color: #fff; margin: 10px; } section h2{ margin: 0; padding: 5px 10px; font-size: 16px; } section p{ margin: 0; padding: 0 10px 5px calc(10px + 1em); } section dl{ margin: 0; padding: 0 10px 5px; } section dd{ margin: 0 0 0 15px; border: 1px solid #ccd6dd; padding: 5px 10px; } section.license dd{ white-space: pre-wrap; font-size: 13px; display: none; } section.license input:checked+dd{ display: block; } div#modal{ position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 100; background-color: rgba(0, 0, 0, .6); } #modal>div{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: #fff; border: 1px solid #66757f; padding: 0 15px 15px; } #modal>div h2{ margin: 0 -15px 15px; padding: 5px 15px; font-size: 18px; border-bottom: 1px solid #ccd6dd; } #modal>div p{ padding: 0 10px 5px calc(10px + 1em); } #add_window p{ white-space: nowrap; } #detail{ width: 80%; height: 70%; overflow-y: auto; } #detail>h2{ position: sticky; top: 0; background-color: #fff; } #detail img,#detail video{ width: auto; max-width: 100%; height: auto; max-height: 300px; cursor: pointer; } div#detail_media>p{ flex: 1; margin: 0; padding: 0; font-size: 0; text-align: center; } #detail td{ user-select: auto; cursor: auto; } #modal>#loading{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 0; } #notify{ position: fixed; top: 0; right: 0; padding: 10px; width: 300px; z-index: 1000; } #notify:empty{ display: none; } #notify>div{ background-color: #fff; border: 1px solid #ccd6dd; border-radius: .5em; padding: .5em; } #notify>div.error{ background-color: #fee; } #notify>div>h4{ margin: 0; padding: 0; font-size: 15px; } #notify>div.error>h4{ color: #e0245e; } #notify>div>p{ margin: 0 0 0 1em; padding: 0; font-size: 14px; } table{ border:1px solid #ccd6dd; border-collapse: collapse; width: 100%; } table th{ background-color: #ccd6dd; } table tbody tr:hover{ background-color: #e1e8ed; } table tbody tr+tr{ border-top:1px solid #ccd6dd; } th,td{ padding: 3px 5px; border:1px solid #ccd6dd; } input[type="text"],input[type="submit"],input[type="button"]{ border:1px solid #ccd6dd; background-color: #fff; outline: 0; padding: 3px 5px; font-size: 15px; line-height: 1.5; color: #66757f; border-radius: 2px; transition: background-color .1s linear,color .1s linear,border .1s linear; } input[type="text"]:focus{ border:1px solid #55acee; } input[type="text"]:disabled{ background-color: #ccd6dd; } input[type="submit"]{ background-color: #fff; } input[type="submit"]:hover,input[type="button"]:hover{ background-color: #55acee; color: #fff; } input[type="submit"]:active,input[type="button"]:active{ background-color: #66757f; color: #fff; } .flex-h{ display: flex; } .flex-v{ display: flex; flex-direction: column; } .flex-grow{ flex: 1 1 auto; } .flex-center{ align-items: center; } .hidden{ display: none; }
src/lib/style.css
@charset "utf-8"; *{ box-sizing: border-box; } html{ height: 100%; } body{ margin: 0; padding: 0; line-height: 1.5; font-size: 15px; height: 100%; color: #66757f; user-select: none; font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif; cursor: default; } a{ color: #55acee; text-decoration: none; cursor: pointer; } a:hover{ text-decoration: underline; } p{ margin: 0; padding: 0; } ::-webkit-scrollbar{ width:8px; height:8px; } ::-webkit-scrollbar-track-piece{ background-color:#eee; } ::-webkit-scrollbar-thumb{ background-color:#ccc; } #wrapper{ height: 100%; } #wrapper>nav{ width: 75px; background-color: #66757f; } #wrapper>nav>p:not(.flex-grow){ height: 55px; margin: 10px; border-radius: 50%; transition: background-color .1s linear; cursor: pointer; } #wrapper>nav>p+p:not(.flex-grow){ margin-top: 0; } #wrapper>nav>p:not(.flex-grow):not(.active):hover{ background-color: #e1e8ed; } #wrapper>nav>p:not(.flex-grow):active{ background-color: #ccd6dd; } #wrapper>nav>p:first-child{ border-radius: 10%; margin-bottom: 20px; border: 1px solid #55acee; } #wrapper>nav>p:first-child>svg{ fill: #55acee; } #wrapper>nav>p:first-child:hover>svg{ fill: #55acee; } #wrapper>nav>p.active{ background-color: #55acee; } #wrapper>nav>p>svg{ fill: #e1e8ed; transition: fill .1s linear; } #wrapper>nav>p:not(.active):hover>svg{ fill: #66757f; } #wrapper>main{ border-left: 1px solid #ccd6dd; background-color: #e1e8ed; overflow-y: auto; } #wrapper>main>header{ border-bottom: 1px solid #ccd6dd; background-color: #fff; height: 40px; position: sticky; top: 0; } #wrapper>main>header>h1{ margin: 0 10px; font-size: 18px; } section{ background-color: #fff; margin: 10px; } section h2{ margin: 0; padding: 5px 10px; font-size: 16px; } section p{ margin: 0; padding: 0 10px 5px calc(10px + 1em); } section dl{ margin: 0; padding: 0 10px 5px; } section dd{ margin: 0 0 0 15px; border: 1px solid #ccd6dd; padding: 5px 10px; } section.license dd{ white-space: pre-wrap; font-size: 13px; display: none; } section.license input:checked+dd{ display: block; } div#modal{ position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 100; background-color: rgba(0, 0, 0, .6); } #modal>div{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: #fff; border: 1px solid #66757f; padding: 0 15px 15px; } #modal>div h2{ margin: 0 -15px 15px; padding: 5px 15px; font-size: 18px; border-bottom: 1px solid #ccd6dd; } #modal>div p{ padding: 0 10px 5px calc(10px + 1em); } #add_window p{ white-space: nowrap; } #detail{ width: 80%; height: 70%; overflow-y: auto; } #detail>h2{ position: sticky; top: 0; background-color: #fff; } #detail img,#detail video{ width: auto; max-width: 100%; height: auto; max-height: 300px; cursor: pointer; } div#detail_media>p{ flex: 1; margin: 0; padding: 0; font-size: 0; text-align: center; } #detail td{ user-select: auto; cursor: auto; } #modal>#loading{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 0; } #notify{ position: fixed; top: 0; right: 0; padding: 10px; width: 300px; z-index: 1000; } #notify:empty{ display: none; } #notify>div{ background-color: #fff; border: 1px solid #ccd6dd; border-radius: .5em; padding: .5em; } #notify>div.error{ background-color: #fee; } #notify>div>h4{ margin: 0; padding: 0; font-size: 15px; } #notify>div.error>h4{ color: #e0245e; } #notify>div>p{ margin: 0 0 0 1em; padding: 0; font-size: 14px; } table{ border:1px solid #ccd6dd; border-collapse: collapse; width: 100%; } table th{ background-color: #ccd6dd; } table tbody tr:hover{ background-color: #e1e8ed; } table tbody tr+tr{ border-top:1px solid #ccd6dd; } th,td{ padding: 3px 5px; border:1px solid #ccd6dd; } input[type="text"],input[type="submit"],input[type="button"]{ border:1px solid #ccd6dd; background-color: #fff; outline: 0; padding: 3px 5px; font-size: 15px; line-height: 1.5; color: #66757f; border-radius: 2px; transition: background-color .1s linear,color .1s linear,border .1s linear; } input[type="text"]:focus{ border:1px solid #55acee; } input[type="text"]:disabled{ background-color: #ccd6dd; } input[type="submit"]{ background-color: #fff; } input[type="submit"]:hover,input[type="button"]:hover{ background-color: #55acee; color: #fff; } input[type="submit"]:active,input[type="button"]:active{ background-color: #66757f; color: #fff; } .flex-h{ display: flex; } .flex-v{ display: flex; flex-direction: column; } .flex-grow{ flex: 1 1 auto; } .flex-center{ align-items: center; } .hidden{ display: none; }
0.226784
0.052062
* { box-sizing: border-box; margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { background-color: #000; } a { text-decoration: none; } /* Header styles */ .header { display: flex; justify-content: space-between; align-items: center; background-color: #393E46; height: 102px; position: sticky; top: 0; } .header__logo { flex: 1 1 auto; color: #eee; margin-left: 23px; } .header__logo--medium { font-size: 30px; } .header__nav { display: flex; justify-content: space-between; align-items: center; font-size: 18px; } .header__nav__item { flex: 1 1 auto; font-size: 24; color: #eee; padding: 35px 42px; } .header__nav__item:hover { color: #FFD369; font-weight: 500; } /* User info styles */ .user-info { display: flex; align-items: center; gap: 32px; margin: 36px 80px; } .user-info__avatar i { font-size: 80px; } .user-info__text { color: white } .user-info__username a { font-size: 40px; color: #eee; text-decoration: none; } .user-info__username a:visited { color: #eee; } .user-info__staff-info--staff-id, .user-info__staff-info--position { font-size: 24px; } /* Main body styles */ .main { color: white; display: flex; align-items: center; justify-content: center; gap: 32px; } .main__courses, .main__assignments { display: flex; flex-direction: column; justify-content: flex-start; gap: 24px; padding: 25px; height: 500px; width: 350px; border: 2px solid #eee; } .main__courses { background-color: #4D3F47; } .main__assignments { background-color: #2F343E; } ::-webkit-scrollbar { width: 0; /* Remove scrollbar space */ background: transparent; /* Optional: just make scrollbar invisible */ } .courses__title, .assignments__title { font-size: 48px; text-decoration: underline; } .assignments__title a:visited { color: #eee; } .courses__links, .assignments__links { flex: 1 1 auto; display:flex; flex-direction: column; justify-content: flex-start; gap: 16px; font-size: 24px; height: 350px; overflow: auto; } .courses__link:visited, .assignments__link:visited { color: #eee; } .courses__link:hover, .assignments__link:hover { color: #FFD369; font-weight: 550; }
client/Lecturer/dashboard.css
* { box-sizing: border-box; margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { background-color: #000; } a { text-decoration: none; } /* Header styles */ .header { display: flex; justify-content: space-between; align-items: center; background-color: #393E46; height: 102px; position: sticky; top: 0; } .header__logo { flex: 1 1 auto; color: #eee; margin-left: 23px; } .header__logo--medium { font-size: 30px; } .header__nav { display: flex; justify-content: space-between; align-items: center; font-size: 18px; } .header__nav__item { flex: 1 1 auto; font-size: 24; color: #eee; padding: 35px 42px; } .header__nav__item:hover { color: #FFD369; font-weight: 500; } /* User info styles */ .user-info { display: flex; align-items: center; gap: 32px; margin: 36px 80px; } .user-info__avatar i { font-size: 80px; } .user-info__text { color: white } .user-info__username a { font-size: 40px; color: #eee; text-decoration: none; } .user-info__username a:visited { color: #eee; } .user-info__staff-info--staff-id, .user-info__staff-info--position { font-size: 24px; } /* Main body styles */ .main { color: white; display: flex; align-items: center; justify-content: center; gap: 32px; } .main__courses, .main__assignments { display: flex; flex-direction: column; justify-content: flex-start; gap: 24px; padding: 25px; height: 500px; width: 350px; border: 2px solid #eee; } .main__courses { background-color: #4D3F47; } .main__assignments { background-color: #2F343E; } ::-webkit-scrollbar { width: 0; /* Remove scrollbar space */ background: transparent; /* Optional: just make scrollbar invisible */ } .courses__title, .assignments__title { font-size: 48px; text-decoration: underline; } .assignments__title a:visited { color: #eee; } .courses__links, .assignments__links { flex: 1 1 auto; display:flex; flex-direction: column; justify-content: flex-start; gap: 16px; font-size: 24px; height: 350px; overflow: auto; } .courses__link:visited, .assignments__link:visited { color: #eee; } .courses__link:hover, .assignments__link:hover { color: #FFD369; font-weight: 550; }
0.479504
0.105763
@namespace url(http://www.w3.org/1999/xhtml); @-moz-document domain("pantip.com") { /*Page Config*/ body {background:#a1bcd6 !important} br {margin-bottom:7px !important;} a:visited {color:#089 !important;} a {text-decoration:none !important;} a:hover {text-decoration:underline !important;} table, tr, td {border:0 !important;} /*Kratoo List Page*/ iframe[src*="ads.pantip"] ,iframe#topbann ,table[background="../image/menu_leftneo01.jpg"] ,form[action="listerA.php"] ,select[onchange*="window.open"] ,table[bgcolor="#445484"] ,td[bgcolor="#403e68"] ,div.no ,table[background="/cafe/image/bg1gray.gif"] ,td[width="120"] ,td[width="130"] {display:none !important;} /*Content Page*/ img[src="../../image/topic.gif"] ,table[height="38"] ,hr ,td[width="10"] ,td[width="105"] {display:none !important;} td[bgcolor="#442244"] {background:#5f51b1 !important;} td[bgcolor="#222244"] {background:#26549a !important;} td[bgcolor="#224444"] {background:#237649 !important;} td[bgcolor="#224422"] {background:#13874f !important} td[bgcolor="#444422"] {background:#736845 !important} table[border="1"] ul {padding:20px 10px 0 10px !important;} table[bgcolor="#dddddd"] {-moz-box-shadow: #729ac1 0 0 3px;} font[color="#f0f8ff"] {font:normal 8pt Tahoma !important; color:#666 !important} font[color="#f0f8ff"] > a {display:none;} font[color="#c0c080"] {font:normal 13px Tahoma !important; color:#fff !important; background:#000; position:relative; top:-5px; left:-100px; padding:10px 16px;} a[href*="javascript:openProfileWindow"] {opacity:.5;} img[src="/cafe/image/icon_pin.gif"] {display:none;} /* --->Topic*/ td[bgcolor="#204080"] ,td[bgcolor="#105010"] {background:#224467 !important;} td[bgcolor="#105010"] {padding:50px 120px !important;} table[width="95%"] , table[width="80%"] {width:100% !important; border:0 !important;} td[bgcolor="#204080"] ul {padding:25px 20px !important; width:100%} /*Reply Box*/ table[width="720"] {width:100% !important; background:#279 !important;} table[width="720"] textarea {width:600px !important; } table[width="720"] input[value="คลิกที่นี่เพื่อส่งข้อความ"] {padding:30px 70px !important; font:bold 1em Tahoma !important;} table[width="720"] input[value="Preview"] {padding:30px !important; font:normal 1em Tahoma !important;} } /* Update 16-07-2009 */ td[bgcolor="#000000"] { display:none; } td[bgcolor="#222244"] { background:#137; } td[bgcolor="#224422"] { background:#163; } td[bgcolor="#442244"] { background:#215; } td[bgcolor="#444422"] { background:#462; } font[color="#c0d3f3"] { font: normal 11px Tahoma !important; } td[width="75"] { display:none; } td[style="min-width: 500px;"] { padding:20px 40px; } td[style="min-width: 40px;"] { display:none; } td[height="220"], a[href*="http://ads"], img[src*="ads.pantip.com"]{ display:none !important;} td[style*="background-image"] { background:transparent !important; padding-bottom:30px; }
data/usercss/16883.user.css
@namespace url(http://www.w3.org/1999/xhtml); @-moz-document domain("pantip.com") { /*Page Config*/ body {background:#a1bcd6 !important} br {margin-bottom:7px !important;} a:visited {color:#089 !important;} a {text-decoration:none !important;} a:hover {text-decoration:underline !important;} table, tr, td {border:0 !important;} /*Kratoo List Page*/ iframe[src*="ads.pantip"] ,iframe#topbann ,table[background="../image/menu_leftneo01.jpg"] ,form[action="listerA.php"] ,select[onchange*="window.open"] ,table[bgcolor="#445484"] ,td[bgcolor="#403e68"] ,div.no ,table[background="/cafe/image/bg1gray.gif"] ,td[width="120"] ,td[width="130"] {display:none !important;} /*Content Page*/ img[src="../../image/topic.gif"] ,table[height="38"] ,hr ,td[width="10"] ,td[width="105"] {display:none !important;} td[bgcolor="#442244"] {background:#5f51b1 !important;} td[bgcolor="#222244"] {background:#26549a !important;} td[bgcolor="#224444"] {background:#237649 !important;} td[bgcolor="#224422"] {background:#13874f !important} td[bgcolor="#444422"] {background:#736845 !important} table[border="1"] ul {padding:20px 10px 0 10px !important;} table[bgcolor="#dddddd"] {-moz-box-shadow: #729ac1 0 0 3px;} font[color="#f0f8ff"] {font:normal 8pt Tahoma !important; color:#666 !important} font[color="#f0f8ff"] > a {display:none;} font[color="#c0c080"] {font:normal 13px Tahoma !important; color:#fff !important; background:#000; position:relative; top:-5px; left:-100px; padding:10px 16px;} a[href*="javascript:openProfileWindow"] {opacity:.5;} img[src="/cafe/image/icon_pin.gif"] {display:none;} /* --->Topic*/ td[bgcolor="#204080"] ,td[bgcolor="#105010"] {background:#224467 !important;} td[bgcolor="#105010"] {padding:50px 120px !important;} table[width="95%"] , table[width="80%"] {width:100% !important; border:0 !important;} td[bgcolor="#204080"] ul {padding:25px 20px !important; width:100%} /*Reply Box*/ table[width="720"] {width:100% !important; background:#279 !important;} table[width="720"] textarea {width:600px !important; } table[width="720"] input[value="คลิกที่นี่เพื่อส่งข้อความ"] {padding:30px 70px !important; font:bold 1em Tahoma !important;} table[width="720"] input[value="Preview"] {padding:30px !important; font:normal 1em Tahoma !important;} } /* Update 16-07-2009 */ td[bgcolor="#000000"] { display:none; } td[bgcolor="#222244"] { background:#137; } td[bgcolor="#224422"] { background:#163; } td[bgcolor="#442244"] { background:#215; } td[bgcolor="#444422"] { background:#462; } font[color="#c0d3f3"] { font: normal 11px Tahoma !important; } td[width="75"] { display:none; } td[style="min-width: 500px;"] { padding:20px 40px; } td[style="min-width: 40px;"] { display:none; } td[height="220"], a[href*="http://ads"], img[src*="ads.pantip.com"]{ display:none !important;} td[style*="background-image"] { background:transparent !important; padding-bottom:30px; }
0.162646
0.126974
body { margin: 0; font: 400 0.813em Arial; background: lavender; } /* Content */ #content { min-height: calc(100vh - 70px); } /* Header */ #website_purpose { width: 70%; margin: 7% 15% 1% 15%; font-size: 1.1em; } #website_purpose > h4 { font-weight: 400; line-height: 1.5; } /* Main */ #main { display: grid; grid-auto-rows: minmax(40px, auto); grid-template-columns: repeat(2, 1fr); grid-column-gap: 20px; grid-row-gap: 50px; padding: 1% 15%; margin-bottom: 5%; } /* All boxes */ .box { border-radius: 6px; font-size: 1.2em; line-height: 1.6em; } /* HTML */ #box_html_explanation { grid-column: 1 / 2; grid-row: 1 / 5; border: #005769 2px solid; text-align: center; } #box_html_example { grid-column: 2 / 3; grid-row: 1 / 5; } /* CSS */ #box_css_explanation { grid-column: 1 / 2; grid-row: 5 / 9; border: #005769 2px solid; text-align: center; } #box_css_example { grid-column: 2 / 3; grid-row: 5 / 9; } /* JS */ #box_js_explanation { grid-column: 1 / 2; grid-row: 9 / 13; border: #005769 2px solid; text-align: center; } #box_js_example { grid-column: 2 / 3; grid-row: 9 / 13; } /* levels button */ button { cursor: pointer; padding: 10px 0; font-size: 0.95em; border-radius: 3px; border-style: none; background-color: #d68916; color: white; box-shadow: 0 5px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19); } /* Code */ pre { box-shadow: 2px 4px 25px rgba(0,0,0,.15); white-space:pre-line; display:block; border-left:#005769 solid 4px; border-bottom:#005769 solid 1px; font-size: 1em; color: black; background: rgb(253, 253, 253); height: 88%; padding: 2% 0 0 2%; } pre > p { margin: 0; } /* Card */ .card, .cardJS, .cardCSS { position: relative; height: 100%; width: 100%; transform-style: preserve-3d; } .front, .back { width: 100%; height: 100%; justify-content: center; align-items: center; backface-visibility: hidden; } .front { font-size: 1.4em; display: flex; } .back { position: absolute; top: 0; left: 0; transform: rotateY(180deg); background: #fff; } .back > p { margin : 5% 7%; } .card-container { box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); transition: 0.4s; cursor: pointer; } .card-container:hover { box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); } /* Media queries */ /* Extra small devices (phones, 600px and down) */ @media only screen and (max-width: 600px) { #website_purpose { margin: 15% 15% 1% 15%; } #main { grid-template-columns: repeat(1, 1fr); grid-auto-rows: minmax(40px, auto); } button { width: 70%; display: block; margin: 3% 15%; } .box { font-size: 1em; } pre { font-size: 1.2em; } #box_html_explanation { grid-column: 1 / 2; grid-row: 1 / 5; } #box_html_example { grid-column: 1 / 2; grid-row: 5 / 9; } #box_css_explanation { grid-column: 1 / 2; grid-row: 9 / 13; } #box_css_example { grid-column: 1 / 2; grid-row: 13 / 17; } #box_js_explanation { grid-column: 1 / 2; grid-row: 17 / 21; } #box_js_example { grid-column: 1 / 2; grid-row: 21 / 25; } } /* Small devices (portrait tablets and large phones, 600px and up) */ @media only screen and (min-width: 600px) and (max-width : 767px) { #content { margin: 18% 0 0 0; } #main { grid-template-columns: repeat(1, 1fr); grid-auto-rows: minmax(40px, auto); } button { width: 30%; display: inline-block; margin: 5% 9%; } #box_html_explanation { grid-column: 1 / 2; grid-row: 1 / 5; } #box_html_example { grid-column: 1 / 2; grid-row: 5 / 9; } #box_css_explanation { grid-column: 1 / 2; grid-row: 9 / 13; } #box_css_example { grid-column: 1 / 2; grid-row: 13 / 17; } #box_js_explanation { grid-column: 1 / 2; grid-row: 17 / 21; } #box_js_example { grid-column: 1 / 2; grid-row: 21 / 25; } } /* Medium devices (landscape tablets, 768px and up) */ @media only screen and (min-width: 768px) and (max-width : 992px) { #content { margin: 15% 0 0 0; } button { display: inline-block; width: 33%; margin: 2% 8%; } #main { grid-template-columns: repeat(1, 1fr); grid-auto-rows: minmax(40px, auto); } #box_html_explanation { grid-column: 1 / 2; grid-row: 1 / 5; } #box_html_example { grid-column: 1 / 2; grid-row: 5 / 9; } #box_css_explanation { grid-column: 1 / 2; grid-row: 9 / 13; } #box_css_example { grid-column: 1 / 2; grid-row: 13 / 17; } #box_js_explanation { grid-column: 1 / 2; grid-row: 17 / 20; } #box_js_example { grid-column: 1 / 2; grid-row: 20 / 24; } } /* Large devices (laptops/desktops, 992px and up) */ @media only screen and (min-width: 992px) and (max-width : 1200px) { #content { margin: 13% 0 0 0; } button { width: 40%; display: inline-block; margin: 2% 4%; } } /* Extra large devices (large laptops and desktops, 1200px and up) */ @media only screen and (min-width: 1200px) { button { width: 40%; display: inline-block; margin: 2% 4%; } }
public/css/home.css
body { margin: 0; font: 400 0.813em Arial; background: lavender; } /* Content */ #content { min-height: calc(100vh - 70px); } /* Header */ #website_purpose { width: 70%; margin: 7% 15% 1% 15%; font-size: 1.1em; } #website_purpose > h4 { font-weight: 400; line-height: 1.5; } /* Main */ #main { display: grid; grid-auto-rows: minmax(40px, auto); grid-template-columns: repeat(2, 1fr); grid-column-gap: 20px; grid-row-gap: 50px; padding: 1% 15%; margin-bottom: 5%; } /* All boxes */ .box { border-radius: 6px; font-size: 1.2em; line-height: 1.6em; } /* HTML */ #box_html_explanation { grid-column: 1 / 2; grid-row: 1 / 5; border: #005769 2px solid; text-align: center; } #box_html_example { grid-column: 2 / 3; grid-row: 1 / 5; } /* CSS */ #box_css_explanation { grid-column: 1 / 2; grid-row: 5 / 9; border: #005769 2px solid; text-align: center; } #box_css_example { grid-column: 2 / 3; grid-row: 5 / 9; } /* JS */ #box_js_explanation { grid-column: 1 / 2; grid-row: 9 / 13; border: #005769 2px solid; text-align: center; } #box_js_example { grid-column: 2 / 3; grid-row: 9 / 13; } /* levels button */ button { cursor: pointer; padding: 10px 0; font-size: 0.95em; border-radius: 3px; border-style: none; background-color: #d68916; color: white; box-shadow: 0 5px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19); } /* Code */ pre { box-shadow: 2px 4px 25px rgba(0,0,0,.15); white-space:pre-line; display:block; border-left:#005769 solid 4px; border-bottom:#005769 solid 1px; font-size: 1em; color: black; background: rgb(253, 253, 253); height: 88%; padding: 2% 0 0 2%; } pre > p { margin: 0; } /* Card */ .card, .cardJS, .cardCSS { position: relative; height: 100%; width: 100%; transform-style: preserve-3d; } .front, .back { width: 100%; height: 100%; justify-content: center; align-items: center; backface-visibility: hidden; } .front { font-size: 1.4em; display: flex; } .back { position: absolute; top: 0; left: 0; transform: rotateY(180deg); background: #fff; } .back > p { margin : 5% 7%; } .card-container { box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); transition: 0.4s; cursor: pointer; } .card-container:hover { box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); } /* Media queries */ /* Extra small devices (phones, 600px and down) */ @media only screen and (max-width: 600px) { #website_purpose { margin: 15% 15% 1% 15%; } #main { grid-template-columns: repeat(1, 1fr); grid-auto-rows: minmax(40px, auto); } button { width: 70%; display: block; margin: 3% 15%; } .box { font-size: 1em; } pre { font-size: 1.2em; } #box_html_explanation { grid-column: 1 / 2; grid-row: 1 / 5; } #box_html_example { grid-column: 1 / 2; grid-row: 5 / 9; } #box_css_explanation { grid-column: 1 / 2; grid-row: 9 / 13; } #box_css_example { grid-column: 1 / 2; grid-row: 13 / 17; } #box_js_explanation { grid-column: 1 / 2; grid-row: 17 / 21; } #box_js_example { grid-column: 1 / 2; grid-row: 21 / 25; } } /* Small devices (portrait tablets and large phones, 600px and up) */ @media only screen and (min-width: 600px) and (max-width : 767px) { #content { margin: 18% 0 0 0; } #main { grid-template-columns: repeat(1, 1fr); grid-auto-rows: minmax(40px, auto); } button { width: 30%; display: inline-block; margin: 5% 9%; } #box_html_explanation { grid-column: 1 / 2; grid-row: 1 / 5; } #box_html_example { grid-column: 1 / 2; grid-row: 5 / 9; } #box_css_explanation { grid-column: 1 / 2; grid-row: 9 / 13; } #box_css_example { grid-column: 1 / 2; grid-row: 13 / 17; } #box_js_explanation { grid-column: 1 / 2; grid-row: 17 / 21; } #box_js_example { grid-column: 1 / 2; grid-row: 21 / 25; } } /* Medium devices (landscape tablets, 768px and up) */ @media only screen and (min-width: 768px) and (max-width : 992px) { #content { margin: 15% 0 0 0; } button { display: inline-block; width: 33%; margin: 2% 8%; } #main { grid-template-columns: repeat(1, 1fr); grid-auto-rows: minmax(40px, auto); } #box_html_explanation { grid-column: 1 / 2; grid-row: 1 / 5; } #box_html_example { grid-column: 1 / 2; grid-row: 5 / 9; } #box_css_explanation { grid-column: 1 / 2; grid-row: 9 / 13; } #box_css_example { grid-column: 1 / 2; grid-row: 13 / 17; } #box_js_explanation { grid-column: 1 / 2; grid-row: 17 / 20; } #box_js_example { grid-column: 1 / 2; grid-row: 20 / 24; } } /* Large devices (laptops/desktops, 992px and up) */ @media only screen and (min-width: 992px) and (max-width : 1200px) { #content { margin: 13% 0 0 0; } button { width: 40%; display: inline-block; margin: 2% 4%; } } /* Extra large devices (large laptops and desktops, 1200px and up) */ @media only screen and (min-width: 1200px) { button { width: 40%; display: inline-block; margin: 2% 4%; } }
0.281998
0.113875
@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700); body{ margin:0; font-family: "Raleway", Arial, Helvetica, sans-serif; line-height: 1.65; padding: 0; color: #fff; } *{ -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } h1, h2, h3, h4, h5, h6, p, label, .btn, a { font-family: "Libre Franklin"; font-size: 15px; } a, a:active, a:hover, a:focus { outline: none; text-decoration: none; } .wrapper{ padding: 6em 0; } .second-btn { padding: 8px 24px; letter-spacing: 0.075em; } .fa-angle-right { padding: 0 0 0 .5em; } .first-line { width: 50px; background: black; height: 1px; margin: auto; right: 0; left: 0; position: absolute; color: #000; } .second-line { width: 50px; height: 1px; margin: auto; right: 0; left: 0; position: absolute; color: #fff; background: #fff; } .post-capitalize { text-transform: capitalize; } .post-uppercase { text-transform: uppercase; } .main-color { color: #000; } .second-color{ color: #fff; } /******----START Home PAGE----******/ /*** START MENU SECTION ***/ .menu { height: 0; z-index: 1; position: relative; } .menu .container { width: 100%; padding: 0; } .menu .menu-section.on { z-index: 10; height:100%; width: 100%; background-color: rgba(0, 0, 0, .9); position: fixed; display: block; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .menu .menu-section .navbar-header { top: 20px; left: 20px; float: left; position: absolute; } .menu .menu-section .navbar-header a { font-size:2em; font-weight: 300; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; color: rgba(250, 250, 250, .7); } .menu .menu-section .navbar-header a:hover { color: #fff; } /* START SEARCH ICON CONENT */ .menu .menu-section .search-bar { display: none; background: transparent; top: 0; right: 0; position: absolute; } .menu .menu-section .search-bar.active { height: 65px; position: fixed; z-index: 6; width: 100%; display: block; } .menu .menu-section .search-bar.active input{ display: block; } .menu .menu-section .search-bar input { border: 0; height: 100%; font: 40px/40px helvetica; padding: 0 20px; display: none; width: 100%; outline: none; } .menu .menu-section .search { right: 138px; top: 29px; margin-right: 26px; background: transparent; position: absolute; } .menu .menu-section .search:hover { cursor: pointer; background: transparent; } .menu .menu-section .search.active { top: 20px; z-index: 6; position: fixed; right: 0; } .menu .menu-section .search .search-open { font-size: 18px; display: block; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; color: rgba(250, 250, 250, .7); } .menu .menu-section .search .search-open:hover { color: #fff; } .menu .menu-section .search.active .search-open { display: none; } .menu .menu-section .search .search-exit { display: none; } .menu .menu-section .search.active .search-exit { z-index: 6; display: block; color: #000; } .menu .menu-section .search.active .search-exit i { font-size: 26px; } /* END SEARCH ICON CONENT */ /* START SHOPING CART ICON CONTENT */ .menu .menu-section .shopping-icon ul { top: 27px; right: 60px; float: right !important; margin-right: 27px; list-style: none; margin-bottom: 0; padding: 0; position: relative; cursor: pointer; } .menu .menu-section .shopping-icon ul li #cart { font-size: 20px; outline: none; } .menu .menu-section .shopping-icon ul li #cart:hover i { color: #fff; } .menu .menu-section .shopping-icon ul li #cart i { margin-right: 6px; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; color: rgba(250, 250, 250, .7); } .menu .menu-section .shopping-icon ul li #cart .badge { border-radius: 10px; font-size: 12px; line-height: 1; padding: 3px 7px; vertical-align: middle; white-space: nowrap; display: inline-block; text-align: center; color: #fff; } .menu .menu-section .shopping-cart { margin: 20px 0; width: 320px; border-radius: 3px; padding: 20px; right: 64px; top: 47px; display: none; position: absolute; background-color: #fff; } .menu .menu-section .shopping-cart .shopping-cart-header { border-bottom: 1px solid #E8E8E8; padding-bottom: 15px; } .menu .menu-section .shopping-cart .shopping-cart-header .cart-icon { color: rgba(0, 0, 0, .5); font-size: 24px; margin-right: 7px; } .menu .menu-section .shopping-cart .shopping-cart-header .badge { border-radius: 10px; font-size: 12px; line-height: 1; padding: 3px 7px; vertical-align: middle; white-space: nowrap; display: inline-block; text-align: center; color: #fff; } .menu .menu-section .shopping-cart .shopping-cart-header .shopping-cart-total { float: right; } .menu .menu-section .shopping-cart .shopping-cart-header .shopping-cart-total .lighter-text { color: rgba(0, 0, 0, .5); } .menu .menu-section .shopping-cart .shopping-cart-items { padding-top: 20px; padding-left: 0; } .menu .menu-section .shopping-cart .shopping-cart-items li { margin-bottom: 18px; } .menu .menu-section .shopping-cart .shopping-cart-items img { margin-right: 12px; width: 70px; height: 70px; float: left; } .menu .menu-section .shopping-cart .shopping-cart-items .item-name { padding-top: 10px; font-size: 16px; display: inline; color: #000; } .menu .menu-section .shopping-cart .shopping-cart-items .item-price { display: block; } .menu .menu-section .shopping-cart .shopping-cart-items .item-quantity { display: block; color: rgba(0, 0, 0, .5); } .menu .menu-section .shopping-cart .shopping-buttons { border-top: 1px solid #E8E8E8; text-align: center; } .menu .menu-section .shopping-cart .shopping-buttons .home-page-view-cart-btn { margin: 20px 6px 0px 6px; padding: 8px 18px; letter-spacing: 0; text-transform: uppercase; color: #fff; border-radius: 0; outline: none; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .menu .menu-section .shopping-cart .shopping-buttons .home-page-checkout-btn { margin: 20px 6px 0px 6px; padding: 8px 18px; letter-spacing: 0; text-transform: uppercase; color: #fff; border-radius: 0; outline: none; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .menu .menu-section .shopping-cart .shopping-buttons a:hover { background: transparent; outline: none; } .clearfix:after { content: ""; display: table; clear: both; } /* END SHOPING CART ICON CONTENT */ /* START MENU TOGGLE ICON CONTENT */ .menu .menu-section .menu-toggle { width: 40px; height: 20px; top: 35px; right: 30px; position: absolute; cursor: pointer; } .menu .menu-section .menu-toggle:hover .one, .menu .menu-section .menu-toggle:hover .two, .menu .menu-section .menu-toggle:hover .three { background-color: #fff; } .menu .menu-section .menu-toggle.on .one { -moz-transform: rotate(45deg) translate(3px, 3px); -ms-transform: rotate(45deg) translate(3px, 3px); -webkit-transform: rotate(45deg) translate(3px, 3px); transform: rotate(45deg) translate(3px, 3px); } .menu .menu-section .menu-toggle.on .two { opacity: 0; } .menu .menu-section .menu-toggle.on .three { -moz-transform: rotate(-45deg) translate(4px, -4px); -ms-transform: rotate(-45deg) translate(4px, -4px); -webkit-transform: rotate(-45deg) translate(4px, -4px); transform: rotate(-45deg) translate(4px, -4px); } .menu .menu-section .menu-toggle.on:hover .one, .menu .menu-section .menu-toggle.on:hover .three { background-color: #fff; } .menu .menu-section .menu-toggle .one, .menu .menu-section .menu-toggle .two, .menu .menu-section .menu-toggle .three { width: 50%; height: 1px; margin: 4px auto; backface-visibility: hidden; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; background-color: rgba(250, 250, 250, .7); } .menu .menu-section nav ul { font-family: Open Sans; list-style: none; margin: 4em auto; padding: 0; text-align: center; } .menu .menu-section nav ul a { line-height: 1.5; padding: 9px 0; width: 100%; text-decoration: none; display: block; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; line-height: 1.5; padding: 9px 0; color: rgba(250, 250, 250, .6); } .menu .menu-section nav ul a:hover, .menu .menu-section nav ul a:focus { outline: none; color: #fff; background-color: rgba(0, 0, 0, .5); } .menu .menu-section nav ul.hidden { display: none; } /* END MENU TOGGLE ICON CONENT */ /*** END MENU SECTION ***/ /*** Start Tool Box Section ***/ .option-box { position:fixed; top:100px; left:0; z-index:9999; } .option-box .color-option { float:right; background:#333; color:#fff; padding:10px; width:200px; display:none; } .option-box .color-option h2 { margin-top: 10px; margin-bottom: 10px; } .option-box .color-option ul li { width:20px; height:20px; display:inline-block; margin-right:3px; cursor:pointer; } .option-box .gear-check { padding:5px; color:#FFF; cursor:pointer; } /*** End Tool Box Section ***/ /*** START HOME-BACKGROUND SECTION ***/ .home-background { background-image:url('../../images/image-1920×1080.jpg'); background-size: cover; background-position:top; background-attachment: fixed; background-repeat:no-repeat; margin:0; text-align: center; } .home-background .home-background-head-text h1 { font-size: 3.5em; line-height: 1em; margin: 0 0 0.5em 0; padding: 0; font-weight: 100; text-transform: uppercase; color: #fff; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6); } .home-background .home-background-head-text p { font-size: 1em; margin-bottom: 1.75em; font-weight: 100; color: #fff; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6); } .home-background .home-background-head-text .first-btn { border: 1px solid rgba(250,250,250,.7); border-radius: 0; font-weight: 300; background: transparent; outline: none; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; color: rgba(250, 250, 250, .7); outline: none; } .home-background .home-background-head-text .first-btn:hover, .home-background .home-background-head-text .first-btn:focus { outline: none; border: 1px solid #fff; color: #fff; } .home-background .home-background-head-text .arrow-down .fa-angle-down { bottom: 0; right: 0; left: 0; position: absolute; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; cursor: pointer; color: rgba(250, 250, 250, .7); font-size: 40px; width: 27px; margin-right: auto; margin-left: auto; color: rgba(250, 250, 250, .7); } .home-background .home-background-head-text .arrow-down .fa-angle-down:hover { color: #fff; } /*** END HOME-BACKGROUND SECTION ***/ /*** START HOME-PAGE-SECTION-THREE SECTION ***/ .home-page-section-three{ background-color: #fff; } .home-page-section-three .new-releases .home-page-section-three-head { margin-bottom: 5em; text-align: center; } .home-page-section-three .new-releases .home-page-section-three-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; color: #000; } .home-page-section-three .new-releases .home-page-section-three-head .first-line { width: 50px; background: black; height: 1px; margin: auto; color: #000; position: absolute; left: 0; right: 0; } .home-page-section-three .new-releases .parts .book-part .book-cart { background: transparent; position: relative; overflow: hidden; max-width: 220px; height: 372px; margin-left: auto; margin-right: auto; margin-bottom: 3em; border-radius: 10px; border: 1px solid rgba(0,0,0,.1); display: block; -webkit-box-sizing: border-box; box-sizing: border-box; } .home-page-section-three .new-releases .parts .book-part .book-cart img { vertical-align: top; height: 200px; width: 100%; } .home-page-section-three .new-releases .parts .book-part .book-cart .icons { padding: 10px; display: flex; flex-direction: column; justify-content: flex-start; top: 0; bottom: 0; right: 0; left: 0; position: absolute; } .home-page-section-three .new-releases .parts .book-part .book-cart .icons * { -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .home-page-section-three .new-releases .parts .book-part .book-cart .icons a { margin: 2px; opacity: 0; -webkit-transform: translateY(100%); transform: translateY(100%); text-decoration: none; } .home-page-section-three .new-releases .parts .book-part .book-cart .icons a i { font-size: 15.529px; line-height: 30px; width: 33px; display: block; text-align: center; color: #000; background-color: #fff; } .home-page-section-three .new-releases .parts .book-part .book-cart .icons a i:hover { color: #fff; cursor: pointer; } .home-page-section-three .new-releases .parts .book-part .book-cart:hover .icons a{ opacity: 1; -webkit-transform: translate(0px, 0px); transform: translate(0px, 0px); } .home-page-section-three .new-releases .parts .book-part .book-cart:hover .icons a:nth-child(2){ -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } .home-page-section-three .new-releases .parts .book-part .book-cart:hover .icons a:nth-child(3){ -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy { height: 170px; bottom: 0; right: 0; left: 0; position: absolute; background-color: #fff; color: #fff; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc { display: block; color: #fff; padding: 2px 0; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .head { font-size: 1em; margin: 5px 10px 6px 10px; text-transform: capitalize; display: block; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .head-blacky, .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .head-blacky:hover, .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .head-blacky:focus { color: #000; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .book-tags { margin: 0px 10px; font-size: 13px; padding-top: 3px; font-weight: 400; display: block; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag { font-size: 12px; font-weight: 400; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .book-tag-blacky{ color: rgba(0, 0, 0, .5); } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:hover, .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:focus { color: #000; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-price { padding: 5px 11px 4px; font-size: 16px; margin-top: 1px; text-decoration: none; display: block; text-align: center; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-price.main-color { color: #000; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-price .price-number-after { position: relative; display: inline; } .home-page-section-three .new-releases .book-cart-btn { text-align: center; } .home-page-section-three .new-releases .book-cart-btn .new-releases-view-all-btn { border-radius: 0; background: transparent; outline: none; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; padding: 8px 24px; letter-spacing: 0.075em; margin: 3em 0 0 0; } .home-page-section-three .new-releases .book-cart-btn .new-releases-view-all-btn:hover, .home-page-section-three .new-releases .book-cart-btn .new-releases-view-all-btn:focus { color: #fff; } /*** END HOME-PAGE-SECTION-THREE SECTION ***/ /*** START HOME-PAGE-SECTION-FOUR SECTION ***/ .home-page-section-four .bestsellers .home-page-section-four-head { margin-bottom: 5em; text-align: center; } .home-page-section-four .bestsellers .home-page-section-four-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; color: #fff; } .home-page-section-four .bestsellers .home-page-section-four-head .second-line { width: 50px; background-color: #fff; height: 1px; margin: auto; color: #fff; position: absolute; left: 0; right: 0; } .home-page-section-four .bestsellers .parts .book-part .book-cart { background: transparent; position: relative; overflow: hidden; max-width: 220px; height: 372px; margin-left: auto; margin-right: auto; margin-bottom: 3em; border-radius: 10px; border: 1px solid rgba(0,0,0,.1); display: block; -webkit-box-sizing: border-box; box-sizing: border-box; } .home-page-section-four .bestsellers .parts .book-part .book-cart img { vertical-align: top; height: 200px; width: 100%; } .home-page-section-four .bestsellers .parts .book-part .book-cart .icons { padding: 10px; display: flex; flex-direction: column; justify-content: flex-start; top: 0; bottom: 0; right: 0; left: 0; position: absolute; } .home-page-section-four .bestsellers .parts .book-part .book-cart .icons * { -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .home-page-section-four .bestsellers .parts .book-part .book-cart .icons a { margin: 2px; opacity: 0; -webkit-transform: translateY(100%); transform: translateY(100%); text-decoration: none; } .home-page-section-four .bestsellers .parts .book-part .book-cart .icons a i:hover { color: #fff; cursor: pointer; } .home-page-section-four .bestsellers .parts .book-part .book-cart .icons a i { font-size: 15.529px; line-height: 30px; width: 33px; display: block; text-align: center; color: #000; background-color: #fff; } .home-page-section-four .bestsellers .parts .book-part .book-cart:hover .icons a{ opacity: 1; -webkit-transform: translate(0px, 0px); transform: translate(0px, 0px); } .home-page-section-four .bestsellers .parts .book-part .book-cart:hover .icons a:nth-child(2){ -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } .home-page-section-four .bestsellers .parts .book-part .book-cart:hover .icons a:nth-child(3){ -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy { height: 170px; bottom: 0; right: 0; left: 0; position: absolute; background-color: #fff; color: #fff; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc { display: block; color: #fff; padding: 2px 0; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .head { font-size: 1em; margin: 5px 10px 6px 10px; text-transform: capitalize; display: block; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .head-blacky, .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .head-blacky:hover, .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .head-blacky:focus { color: #000; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .book-tags { margin: 0px 10px; font-size: 13px; padding-top: 3px; font-weight: 400; display: block; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag { font-size: 12px; font-weight: 400; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .book-tag-blacky { color: rgba(0, 0, 0, .5); } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:hover, .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:focus { color: #000; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-price { padding: 5px 11px 4px; font-size: 16px; margin-top: 1px; text-decoration: none; display: block; text-align: center; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-price.main-color { color: #000; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-price .price-number-after { position: relative; display: inline; } .home-page-section-four .bestsellers .book-cart-btn { text-align: center; } .home-page-section-four .bestsellers .book-cart-btn .bestsellers-view-all-btn{ padding: 8px 24px; letter-spacing: 0.075em; margin: 3em 0 0 0; border-radius: 0; background: transparent; font-weight: 400; outline: none; text-transform: capitalize; text-align: center; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; border: 1px solid #fff; color: #fff; } .home-page-section-four .bestsellers .book-cart-btn .bestsellers-view-all-btn:hover, .home-page-section-four .bestsellers .book-cart-btn .bestsellers-view-all-btn:focus { background: #fff; } /*** END HOME-PAGE-SECTION-FOUR SECTION ***/ /*** START HOME-PAGE-SECTION-FIVE SECTION ***/ .home-page-section-five { background-color: #fff; } .home-page-section-five .discover .home-page-section-five-head { margin-bottom: 5em; text-align: center; } .home-page-section-five .discover .home-page-section-five-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; color: #000; } .home-page-section-five .discover .home-page-section-five-head .first-line { width: 50px; background: black; height: 1px; margin: auto; color: #000; position: absolute; left: 0; right: 0; } .home-page-section-five .discover .parts .book-part .book-cart{ background: transparent; position: relative; overflow: hidden; max-width: 220px; height: 372px; margin-left: auto; margin-right: auto; margin-bottom: 3em; border-radius: 10px; border: 1px solid rgba(0,0,0,.1); display: block; -webkit-box-sizing: border-box; box-sizing: border-box; } .home-page-section-five .discover .parts .book-part .book-cart img { vertical-align: top; height: 200px; width: 100%; } .home-page-section-five .discover .parts .book-part .book-cart .icons { padding: 10px; display: flex; flex-direction: column; justify-content: flex-start; top: 0; bottom: 0; right: 0; left: 0; position: absolute; } .home-page-section-five .discover .parts .book-part .book-cart .icons * { -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .home-page-section-five .discover .parts .book-part .book-cart .icons a { margin: 2px; opacity: 0; -webkit-transform: translateY(100%); transform: translateY(100%); text-decoration: none; } .home-page-section-five .discover .parts .book-part .book-cart .icons a i:hover { color: #fff; cursor: pointer; } .home-page-section-five .discover .parts .book-part .book-cart .icons a i { font-size: 15.529px; line-height: 30px; width: 33px; display: block; text-align: center; color: #000; background-color: #fff; } .home-page-section-five .discover .parts .book-part .book-cart:hover .icons a{ opacity: 1; -webkit-transform: translate(0px, 0px); transform: translate(0px, 0px); } .home-page-section-five .discover .parts .book-part .book-cart:hover .icons a:nth-child(2){ -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } .home-page-section-five .discover .parts .book-part .book-cart:hover .icons a:nth-child(3){ -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } .home-page-section-five .discover .parts .book-part .book-cart .divy { height: 170px; bottom: 0; right: 0; left: 0; position: absolute; background-color: #fff; color: #fff; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc { display: block; color: #fff; padding: 2px 0; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .head { font-size: 1em; margin: 5px 10px 6px 10px; text-transform: capitalize; display: block; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .head-blacky, .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .head-blacky:hover, .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .head-blacky:focus { color: #000; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .book-tags { margin: 0px 10px; font-size: 13px; padding-top: 3px; font-weight: 400; display: block; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag { font-size: 12px; font-weight: 400; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .book-tag-blacky{ color: rgba(0, 0, 0, .5); } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:hover, .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:focus { color: #000; } .home-page-section-five .discover .parts .book-part .book-cart .divy .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-price { padding: 5px 11px 4px; font-size: 16px; margin-top: 1px; text-decoration: none; display: block; text-align: center; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-price.main-color { color: #000; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-price .price-number-after { position: relative; display: inline; } .home-page-section-five .discover .book-cart-btn { text-align: center; } .home-page-section-five .discover .book-cart-btn .discover-view-all-btn { border-radius: 0; background: transparent; outline: none; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; padding: 8px 24px; letter-spacing: 0.075em; margin: 3em 0 0 0; } .home-page-section-five .discover .book-cart-btn .discover-view-all-btn:hover, .home-page-section-five .discover .book-cart-btn .discover-view-all-btn:focus { color: #fff; } /*** END HOME-PAGE-SECTION-FIVE SECTION ***/ /*** START HOME-PAGE-SECTION-SIX SECTION ***/ .home-page-section-six .comingsoon .home-page-section-six-head { margin-bottom: 5em; text-align: center; } .home-page-section-six .comingsoon .home-page-section-six-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; color: #fff; } .home-page-section-six .comingsoon .home-page-section-six-head .second-line { width: 50px; background-color: #fff; height: 1px; margin: auto; color: #fff; position: absolute; left: 0; right: 0; } .home-page-section-six .comingsoon .parts .book-part .book-cart { background: transparent; position: relative; overflow: hidden; max-width: 220px; height: 372px; margin-left: auto; margin-right: auto; margin-bottom: 3em; border-radius: 10px; border: 1px solid rgba(0,0,0,.1); display: block; -webkit-box-sizing: border-box; box-sizing: border-box; } .home-page-section-six .comingsoon .parts .book-part .book-cart img { vertical-align: top; height: 200px; width: 100%; } .home-page-section-six .comingsoon .parts .book-part .book-cart .icons { padding: 10px; display: flex; flex-direction: column; justify-content: flex-start; top: 0; bottom: 0; right: 0; left: 0; position: absolute; } .home-page-section-six .comingsoon .parts .book-part .book-cart .icons * { -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .home-page-section-six .comingsoon .parts .book-part .book-cart .icons a { margin: 2px; opacity: 0; -webkit-transform: translateY(100%); transform: translateY(100%); text-decoration: none; } .home-page-section-six .comingsoon .parts .book-part .book-cart .icons a i:hover { color: #fff; cursor: pointer; } .home-page-section-six .comingsoon .parts .book-part .book-cart .icons a i { font-size: 15.529px; line-height: 30px; width: 33px; display: block; text-align: center; color: #000; background-color: #fff; } .home-page-section-six .comingsoon .parts .book-part .book-cart:hover .icons a{ opacity: 1; -webkit-transform: translate(0px, 0px); transform: translate(0px, 0px); } .home-page-section-six .comingsoon .parts .book-part .book-cart:hover .icons a:nth-child(2){ -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } .home-page-section-six .comingsoon .parts .book-part .book-cart:hover .icons a:nth-child(3){ -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy { height: 170px; bottom: 0; right: 0; left: 0; position: absolute; background-color: #fff; color: #fff; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc { display: block; color: #fff; padding: 2px 0; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .head { font-size: 1em; margin: 5px 10px 6px 10px; text-transform: capitalize; display: block; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .head-blacky, .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .head-blacky:hover, .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .head-blacky:focus { color: #000; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .book-tags { margin: 0px 10px; font-size: 13px; padding-top: 3px; font-weight: 400; display: block; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag { font-size: 12px; font-weight: 400; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .book-tag-blacky{ color: rgba(0, 0, 0, .5); } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:hover, .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:focus { color: #000; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-price { padding: 5px 11px 4px; font-size: 16px; margin-top: 1px; text-decoration: none; display: block; text-align: center; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-price.main-color { color: #000; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-price .price-number-after { position: relative; display: inline; } .home-page-section-six .comingsoon .book-cart-btn { text-align: center; } .home-page-section-six .comingsoon .book-cart-btn .comingsoon-view-all-btn { padding: 8px 24px; letter-spacing: 0.075em; margin: 3em 0 0 0; border-radius: 0; background: transparent; font-weight: 400; outline: none; text-transform: capitalize; text-align: center; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; border: 1px solid #fff; color: #fff; } .home-page-section-six .comingsoon .book-cart-btn .comingsoon-view-all-btn:hover, .home-page-section-six .comingsoon .book-cart-btn .comingsoon-view-all-btn:focus { background: #fff; } /*** END HOME-PAGE-SECTION-SIX SECTION ***/ /*** START HOME-PAGE-SECTION-SEVEN SECTION ***/ .home-page-section-seven { background-color: #fff; } .home-page-section-seven .ournews .home-page-section-seven-head { margin-bottom: 5em; text-align: center; } .home-page-section-seven .ournews .home-page-section-seven-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; color: #000; } .home-page-section-seven .ournews .home-page-section-seven-head .first-line { width: 50px; background: black; height: 1px; margin: auto; color: #000; position: absolute; left: 0; right: 0; } .home-page-section-seven .ournews .accordian { width: 1000px; height: 350px; overflow: hidden; margin: 0px auto; box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); -moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); } .home-page-section-seven .ournews .accordian ul { width: 2200px; padding: 0; } .home-page-section-seven .ournews .accordian ul li { width: 200px; height: 350px; border-left: 1px solid #888; box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5); transition: 0.5s all; -webkit-transition: 0.5s all; -moz-transition: 0.5s all; float: left; position: relative; display: block; } .home-page-section-seven .ournews .accordian ul:hover li { width: 50px; } .home-page-section-seven .ournews .accordian ul li:hover { width: 800px; } .home-page-section-seven .ournews .accordian ul li img { width: 800px; height: 350px; display: block; } .home-page-section-seven .ournews .accordian ul li .image_title { opacity: 0; height: 50%; width: 800px; bottom: 0; left: 0; position: absolute; background-color: rgba(0, 0, 0, .5); -webkit-transform: translateX(100%); transform: translateX(100%); } .home-page-section-seven .ournews .accordian ul li .image_title h3 { padding: 10px 20px 0; font-size: 16px; opacity: 0; margin: 0; transition:1.8s ease-in-out all; -webkit-transition:1.8s ease-in-out all; -moz-transition:1.8s ease-in-out all; display: inline-block; color: #fff; } .home-page-section-seven .ournews .accordian ul li .image_title i { padding: 10px 20px 0; opacity: 0; transition:1.5s ease-in-out all; -webkit-transition:1.5s ease-in-out all; -moz-transition:1.5s ease-in-out all; display: inline-block; } .home-page-section-seven .ournews .accordian ul li .image_title .ournews-accordian-btn { padding: 5px 15px; margin:10px 20px; opacity: 0; transition:1.8s ease-in-out all; -webkit-transition:1.8s ease-in-out all; -moz-transition:1.8s ease-in-out all; border-radius: 0; background: transparent; text-transform: capitalize; text-decoration: none; border: 1px solid #fff; color: #fff; display: inline-block; } .home-page-section-seven .ournews .accordian ul li .image_title, .home-page-section-seven .ournews .accordian ul li .image_title h3, .home-page-section-seven .ournews .accordian ul li .image_title i, .home-page-section-seven .ournews .accordian ul li .image_title .ournews-accordian-btn { -webkit-transform: translateX(100%); transform: translateX(100%); } .home-page-section-seven .ournews .accordian ul li:hover .image_title, .home-page-section-seven .ournews .accordian ul li:hover .image_title h3, .home-page-section-seven .ournews .accordian ul li:hover .image_title i, .home-page-section-seven .ournews .accordian ul li:hover .image_title .ournews-accordian-btn { -webkit-transform: translate(0px, 0px); transform: translate(0px, 0px); opacity: 1; } .home-page-section-seven .ournews .accordian ul li:hover .image_title { transition: 1.2s all; -webkit-transition: 1.2s all; -moz-transition: 1.2s all; } .home-page-section-seven .ournews .book-cart-btn { text-align: center; } .home-page-section-seven .ournews .book-cart-btn .ournews-view-all-btn { border-radius: 0; background: transparent; outline: none; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; padding: 8px 24px; letter-spacing: 0.075em; margin: 3em 0 0 0; } .home-page-section-seven .ournews .book-cart-btn .ournews-view-all-btn:hover, .home-page-section-seven .ournews .book-cart-btn .ournews-view-all-btn:focus { color: #fff; } /*** END HOME-PAGE-SECTION-SEVEN SECTION ***/ /*** START HOME-PAGE-SECTION-EIGHT SECTION ***/ .home-page-section-eight .home-page-authors .home-page-section-eight-head { margin-bottom: 5em; text-align: center; } .home-page-section-eight .home-page-authors .home-page-section-eight-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; color: #fff; } .home-page-section-eight .home-page-authors .home-page-section-eight-head .second-line { width: 50px; background-color: #fff; height: 1px; margin: auto; color: #fff; position: absolute; left: 0; right: 0; } .home-page-section-eight .home-page-authors .carousel .carousel-indicators { width: 200px; height: 200px; margin: 0 auto; z-index: 0; padding: 0; top: 0; right: 0; left: 0; position: relative; } .home-page-section-eight .home-page-authors .carousel .carousel-indicators li { border-radius: 50%; width: 200px; height: 200px; -webkit-transition: .6s ease-in-out left; transition: .6s ease-in-out left; text-indent: 0; border: 0; overflow: hidden; margin: 0; background: none; padding: 0; display: none; } .home-page-section-eight .home-page-authors .carousel .carousel-indicators .active { width: 200px; height: 200px; display: block; } .home-page-section-eight .home-page-authors .carousel .carousel-indicators li img { border-radius: 50%; height: 200px; width: 200px; margin: 0; padding: 0; } .home-page-section-eight .home-page-authors .carousel .carousel-inner { left: 50%; width: 60%; padding-left: 0; margin-left: -30%; bottom: 0; position: relative; display: block; text-align: center; } .home-page-section-eight .home-page-authors .carousel .carousel-inner .author { margin: 15px 0px; } .home-page-section-eight .home-page-authors .carousel .carousel-inner .author a { font-size: 2em; margin-bottom: 10px; margin-left: auto; margin-right: auto; width: 100%; font-weight: 100; text-decoration: none; display: block; color: #fff; } .home-page-section-eight .home-page-authors .carousel .carousel-control { font-size: 35px; width: 0; top: 35%; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .home-page-section-eight .home-page-authors .carousel .carousel-control.right { right: 30px; } .home-page-section-eight .home-page-authors .carousel .carousel-control.left { left: 0; } .home-page-section-eight .home-page-authors .book-cart-btn { text-align: center; } .home-page-section-eight .home-page-authors .book-cart-btn .home-page-authors-btn { padding: 8px 24px; letter-spacing: 0.075em; margin: 3em 0 0 0; border-radius: 0; background: transparent; font-weight: 400; outline: none; text-transform: capitalize; text-align: center; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; border: 1px solid #fff; color: #fff; } .home-page-section-eight .home-page-authors .book-cart-btn .home-page-authors-btn:hover, .home-page-section-eight .home-page-authors .book-cart-btn .home-page-authors-btn:focus { background: #fff; } /*** END HOME-PAGE-SECTION-EIGHT SECTION ***/ /*** START HOME-PAGE-OUR-CLIENTS SECTION ***/ .home-page-our-clients { padding-top:20px; padding-bottom:20px background-color:#fff; } .home-page-our-clients ul li img { opacity:0.4; filter: alpha(opacity=40); margin-top:20px; margin-bottom:20px; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .home-page-our-clients ul li img:hover {opacity:1} /*** END HOME-PAGE-OUR-CLIENTS SECTION ***/ /*** START HOME-PAGE-YOUR-MESSAGE SECTION ***/ .home-page-your-message { background-color: #222831; } .home-page-your-message .your-message-parts .home-page-your-message-head { margin-bottom: 5em; text-align: center; } .home-page-your-message .your-message-parts .home-page-your-message-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; color: #fff; } .home-page-your-message .your-message-parts .home-page-your-message-head .second-line { width: 50px; background-color: #fff; height: 1px; margin: auto; color: #fff; position: absolute; left: 0; right: 0; } .home-page-your-message .your-message-parts form { padding: 5px 0px 0px; } .home-page-your-message .your-message-parts form .form-group .input-lg { background: transparent; color: #fff; height: 46px; padding: 10px 16px; font-size: 16px; line-height: 1.3333333; border-radius: 3px; } .home-page-your-message .your-message-parts form .form-control:focus { border-color: #fff; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #fff; box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #fff; outline: none; } .home-page-your-message .your-message-parts form .form-group textarea{ height: 110px; background: transparent; color: #fff; padding: 10px 16px; font-size: 16px; line-height: 1.3333333; border-radius: 3px; } .home-page-your-message .e-btn { border: 1px solid #ccc; background: transparent; outline: none; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; color: #fff; } .home-page-your-message .e-btn:hover, .home-page-your-message .e-btn:focus { outline: none; color: #000; background-color: #fff; } /*** END HOME-PAGE-YOUR-MESSAGE SECTION ***/ /*** START FOOTER ***/ .footer{ background-color:#393e46; } .footer .footer-parts .section-head { text-align: center; margin-bottom: 5em; } .footer .footer-parts .section-head h2{ font-weight: 100; font-size: 2.75em; margin: 0 0 .5em 0; } .footer .footer-parts .site-map { padding: 0px 0 35px 0; } .footer .footer-parts .site-map div { margin-bottom: 12px; text-align: center; padding: 0; } .footer .footer-parts .site-map div a { font-size: 1.2em; width: 46px; margin: 0; } .footer .footer-parts .site-map a { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; padding: 0; font-weight: 100; display: inline; text-decoration: none; } .footer-parts .social-media { text-align: center; } .footer .footer-parts .social-media a { margin-right: 25px; margin-top: 20px; display: inline-block; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .footer .footer-parts .site-map a, .footer .footer-parts .social-media a { color: rgba(250, 250, 250, .6); } .footer-parts .site-map a:hover, .footer-parts .social-media a:hover { color: #fff; } .footer .footer-parts .social-media .pinterest{ margin-right: 0; } /*** END FOOTER ***/ /*** START FINAL ***/ .final{ padding: 15px; background-color: #fff; } .copyright { font-size: 1.2em; color:rgba(0, 0, 0, .7); } .final-left, .final-right { text-align: center; } /*** END FINAL ***/ /* Start Scrollup */ #scroll-top { width: 40px; height: 40px; color: #DDD; background-color: #272727; text-align: center; position: fixed; right: 15px; bottom: 10px; z-index: 9999; display: none; cursor: pointer; border-radius: 4px; } #scroll-top i { position: absolute; left: 0; right: 0; bottom: 8px; } /* End Scrollup */ /*** START SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { body{ font-size: 12pt; } .menu .menu-section .navbar-header { top: 2px; left: 5px; } .menu .menu-section .navbar-header a { font-size: 1.5em; } .menu .menu-section .search { right: 102px; top: 16px; } .menu .menu-section .shopping-icon ul { top: 14px; right: 35px; } .menu .menu-section .shopping-cart { right: 0px; top: 35px; } .menu .menu-section .shopping-cart:after { left: 77%; } .menu .menu-section .menu-toggle { top: 22px; right: 15px; } .menu .menu-section nav ul a { font-size: 2em; } .home-background { background-attachment: scroll; } .home-background .home-background-head-text h1 { font-size: 2.5em; } .home-background .home-background-head-text p { font-size: .9em; } .wrapper { padding: 4em 0; } .book-part:last-of-type .book-cart { margin-bottom: 0; } .home-page-section-three .new-releases .home-page-section-three-head { margin-bottom: 3em; } .home-page-section-three .new-releases .home-page-section-three-head h2 { font-size: 2em; } .home-page-section-four .bestsellers .home-page-section-four-head { margin-bottom: 3em; } .home-page-section-four .bestsellers .home-page-section-four-head h2 { font-size: 2em; } .home-page-section-five .discover .home-page-section-five-head { margin-bottom: 3em; } .home-page-section-five .discover .home-page-section-five-head h2 { font-size: 2em; } .home-page-section-six .comingsoon .home-page-section-six-head { margin-bottom: 3em; } .home-page-section-six .comingsoon .home-page-section-six-head h2 { font-size: 2em; } .home-page-section-seven .ournews .home-page-section-seven-head { margin-bottom: 3em; } .home-page-section-seven .ournews .home-page-section-seven-head h2 { font-size: 2em; } .home-page-section-seven .ournews .accordian { width: 300px; } .home-page-section-seven .ournews .accordian ul { width: 1500px; } .home-page-section-seven .ournews .accordian ul li { width: 60px; } .home-page-section-seven .ournews .accordian ul:hover li { width: 15px; } .home-page-section-seven .ournews .accordian ul li:hover { width: 240px; } .home-page-section-seven .ournews .accordian ul li img { width: 240px; } .home-page-section-seven .ournews .accordian ul li .image_title { width: 240px; height: 100%; } .home-page-section-seven .ournews .accordian ul li .image_title h3 { padding: 40px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title i { padding: 5px 20px 10px; } .home-page-section-seven .ournews .accordian ul li .image_title .ournews-accordian-btn { margin:10px 20px; } .home-page-section-eight .home-page-authors .home-page-section-eight-head { margin-bottom: 3em; } .home-page-section-eight .home-page-authors .home-page-section-eight-head h2 { font-size: 2em; } .home-page-your-message .your-message-parts .home-page-your-message-head { margin-bottom: 3em; } .home-page-your-message .your-message-parts .home-page-your-message-head h2 { font-size: 2em; } .footer .footer-parts .section-head { margin-bottom: 3em; } .footer .footer-parts .section-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { body{ font-size: 12pt; } .menu .menu-section .navbar-header { top: 2px; left: 5px; } .menu .menu-section .navbar-header a { font-size: 1.5em; } .menu .menu-section .shopping-icon ul { top: 14px; right: 35px; } .menu .menu-section .search { right: 102px; top: 16px; } .menu .menu-section .shopping-cart { right: 0px; top: 35px; } .menu .menu-section .shopping-cart:after { left: 77%; } .menu .menu-section .menu-toggle { top: 22px; right: 15px; } .menu .menu-section nav ul a { font-size: 3em; } .home-background { background-attachment: scroll; } .home-background .home-background-head-text h1 { font-size: 2.5em; } .home-background .home-background-head-text p { font-size: .9em; } .wrapper{ padding: 4em 0; } .home-page-section-three .new-releases .home-page-section-three-head { margin-bottom: 3em; } .home-page-section-three .new-releases .home-page-section-three-head h2 { font-size: 2em; } .home-page-section-four .bestsellers .home-page-section-four-head { margin-bottom: 3em; } .home-page-section-four .bestsellers .home-page-section-four-head h2 { font-size: 2em; } .home-page-section-five .discover .home-page-section-five-head { margin-bottom: 3em; } .home-page-section-five .discover .home-page-section-five-head h2 { font-size: 2em; } .home-page-section-six .comingsoon .home-page-section-six-head { margin-bottom: 3em; } .home-page-section-six .comingsoon .home-page-section-six-head h2 { font-size: 2em; } .home-page-section-seven .ournews .home-page-section-seven-head { margin-bottom: 3em; } .home-page-section-seven .ournews .home-page-section-seven-head h2 { font-size: 2em; } .home-page-section-seven .ournews .accordian { width: 600px; } .home-page-section-seven .ournews .accordian ul { width: 1800px; } .home-page-section-seven .ournews .accordian ul li { width: 120px; } .home-page-section-seven .ournews .accordian ul:hover li { width: 30px; } .home-page-section-seven .ournews .accordian ul li:hover { width: 480px; } .home-page-section-seven .ournews .accordian ul li img { width: 480px; } .home-page-section-seven .ournews .accordian ul li .image_title { width: 480px; } .home-page-section-seven .ournews .accordian ul li .image_title h3 { padding: 10px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title i { padding: 5px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title .ournews-accordian-btn { margin: 5px 20px 0; } .home-page-section-eight .home-page-authors .home-page-section-eight-head { margin-bottom: 3em; } .home-page-section-eight .home-page-authors .home-page-section-eight-head h2 { font-size: 2em; } .home-page-your-message .your-message-parts .home-page-your-message-head { margin-bottom: 3em; } .home-page-your-message .your-message-parts .home-page-your-message-head h2 { font-size: 2em; } .footer .footer-parts .section-head { margin-bottom: 3em; } .footer .footer-parts .section-head h2 { font-size: 2em; } } @media (min-width: 736px) and (max-width: 980px) { body{ font-size: 12pt; } .menu .menu-section nav ul a { font-size: 3em; } .home-background { background-attachment: scroll; } .wrapper { padding: 4em 0; } .home-page-section-seven .ournews .accordian { width: 700px; } .home-page-section-seven .ournews .accordian ul { width: 1900px; } .home-page-section-seven .ournews .accordian ul li { width: 140px; } .home-page-section-seven .ournews .accordian ul:hover li { width: 35px; } .home-page-section-seven .ournews .accordian ul li:hover { width: 560px; } .home-page-section-seven .ournews .accordian ul li img { width: 560px; } .home-page-section-seven .ournews .accordian ul li .image_title { width: 560px; } .home-page-section-seven .ournews .accordian ul li .image_title h3 { padding: 10px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title i { padding: 5px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title .ournews-accordian-btn { margin: 5px 20px 0; } } @media (min-width: 980px) and (max-width: 1280px) { body{ font-size: 11pt; } .menu .menu-section nav ul a { font-size: 3em; } .wrapper { padding: 4em 0; } .home-page-section-seven .ournews .accordian { width: 700px; } .home-page-section-seven .ournews .accordian ul { width: 1900px; } .home-page-section-seven .ournews .accordian ul li { width: 140px; } .home-page-section-seven .ournews .accordian ul:hover li { width: 35px; } .home-page-section-seven .ournews .accordian ul li:hover { width: 560px; } .home-page-section-seven .ournews .accordian ul li img { width: 560px; } .home-page-section-seven .ournews .accordian ul li .image_title { width: 560px; } .home-page-section-seven .ournews .accordian ul li .image_title h3 { padding: 10px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title i { padding: 5px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title .ournews-accordian-btn { margin: 5px 20px 0; } } @media (min-width: 1280px) and (max-width: 1680px) { body { font-size: 11pt; } .menu .menu-section nav ul a { font-size: 3em; } .home-page-section-seven .ournews .accordian { width: 1000px; } .home-page-section-seven .ournews .accordian ul { width: 2200px; } .home-page-section-seven .ournews .accordian ul li { width: 200px; } .home-page-section-seven .ournews .accordian ul:hover li { width: 50px; } .home-page-section-seven .ournews .accordian ul li:hover { width: 800px; } .home-page-section-seven .ournews .accordian ul li img { width: 800px; } .home-page-section-seven .ournews .accordian ul li .image_title { width: 800px; } .home-page-section-seven .ournews .accordian ul li .image_title h3 { padding: 10px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title i { padding: 10px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title .ournews-accordian-btn { margin:10px 20px; } } @media (min-width: 1680px) and (max-width: 1920px) { .menu .menu-section nav ul a { font-size: 4em; } } /*** END SCREENS SIZSES ***/ /******----END Home PAGE----******/ /*======================================================================*/ /******----START ABOUT PAGE----******/ /* START ABOUT-BAGROUND BACKGROUND SECTION */ .about-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END ABOUT-BAGROUND BACKGROUND SECTION */ /* START ABOUT-SECTION-CONTENT SECTION */ .about-section-content { color:black; text-align:center; } .about-section-content .about-us .about-us-head { margin-bottom: 5em; text-align: center; } .about-section-content .about-us .about-us-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .about-section-content .about-us p { color: rgba(0, 0, 0, .3); margin: 0; } /* END ABOUT-SECTION-CONTENT SECTION */ /* START ABOUTUS-CONTENT SECTION */ .aboutus-content { background: #F6F6F6; padding: 60px 0; } .aboutus-content .aboutus-info { display: inline-block; margin-bottom: 6em; } .aboutus-content .aboutus-info:last-child { margin-bottom: 0; } .aboutus-content .aboutus-info.part-one:hover, .aboutus-content .aboutus-info.part-two:hover, .aboutus-content .aboutus-info.part-three:hover, .aboutus-content .aboutus-info.part-four:hover { box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); -moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); } .aboutus-content .aboutus-info img { width: 50%; } .aboutus-content .aboutus-desc { background: #fff; width: 50%; padding: 35px 50px; height: 400px; } .aboutus-content .aboutus-desc h3 { font-size: 2.8em; color: rgba(0, 0, 0, .7); font-weight: 300; margin: 22px 0; } .aboutus-content .aboutus-desc p { color: rgba(0, 0, 0, .32); font-size: 14px; } .aboutus-content .aboutus-info.part-one img, .aboutus-content .aboutus-info.part-one .aboutus-desc, .aboutus-content .aboutus-info.part-three img, .aboutus-content .aboutus-info.part-three .aboutus-desc { float: left; } .aboutus-content .aboutus-info.part-two img, .aboutus-content .aboutus-info.part-two .aboutus-desc, .aboutus-content .aboutus-info.part-four img, .aboutus-content .aboutus-info.part-four .aboutus-desc {float:right;} /* END ABOUTUS-CONTENT SECTION */ /*** START ABOUT PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .about-section-content .about-us .about-us-head { margin-bottom: 3em; } .about-section-content .about-us .about-us-head h2 { font-size: 2em; } .aboutus-content .aboutus-info { margin-bottom: 3em; } .aboutus-content .aboutus-info img { width: 100%; } .aboutus-content .aboutus-desc { width: 100%; padding: 13px 30px; } .aboutus-content .aboutus-desc h3 { font-size: 2.1em; margin: 15px 0; } } @media (min-width: 480px) and (max-width: 736px) { .about-section-content .about-us .about-us-head { margin-bottom: 3em; } .about-section-content .about-us .about-us-head h2 { font-size: 2em; } .aboutus-content .aboutus-info { margin-bottom: 3em; } .aboutus-content .aboutus-info img { width: 100%; } .aboutus-content .aboutus-desc { width: 100%; padding: 13px 30px; } .aboutus-content .aboutus-desc h3 { font-size: 2.1em; margin: 15px 0; } } @media (min-width: 736px) and (max-width: 980px) { .aboutus-content .aboutus-info { margin-bottom: 4em; } .aboutus-content .aboutus-info img { width: 100%; } .aboutus-content .aboutus-desc { width: 100%; padding: 35px 50px; } .aboutus-content .aboutus-desc h3 { margin: 25px 0; font-size: 2.8em; } } @media (min-width: 980px) and (max-width: 1280px) { .aboutus-content .aboutus-info { margin-bottom: 6em; } .aboutus-content .aboutus-info img { width: 50%; height: 400px; } .aboutus-content .aboutus-desc { width: 50%; padding: 20px 30px; height: 400px; } .aboutus-content .aboutus-desc h3 { font-size: 2.8em; margin: 22px 0; } } @media (min-width: 1280px) and (max-width: 1680px) { .aboutus-content .aboutus-info { margin-bottom: 6em; } .aboutus-content .aboutus-info img { width: 50%; height: 400px; } .aboutus-content .aboutus-desc { width: 50%; padding: 35px 50px; height: 400px; } .aboutus-content .aboutus-desc h3 { margin: 22px 0; } } @media (min-width: 1680px) and (max-width: 1920px) { .aboutus-content .aboutus-info img { height: 400px; } } /*** END ABOUT PAGE SCREENS SIZSES ***/ /******----END ABOUT PAGE----******/ /*======================================================================*/ /******----START AUTHOR'S PROFILE PAGE----******/ /* START AUTHOR-PROFILE-PAGE-BACKGROUND SECTION */ .author-profile-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END AUTHOR-PROFILE-PAGE-BACKGROUND SECTION */ /* START AUTHOR-PROFILE-PAGE-CONTENT SECTION */ .author-profile-page-content .author-profile-content-head { margin-bottom: 5em; text-align: center; } .author-profile-page-content .author-profile-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .author-profile-page-content .author-profile-content-details .author-pic { padding-right: 0; text-align: center; display: block; } .author-profile-page-content .author-profile-content-details .author-pic a img { height: 200px; width: 200px; border-radius: 50%; } .author-profile-page-content .author-profile-content-details .author-profile-body { vertical-align: top; display: inline-block; } .author-profile-page-content .author-profile-content-details .author-profile-body .author-name { margin-top: 10px; margin-bottom: 10px; } .author-profile-page-content .author-profile-content-details .author-profile-body .author-name a { font-size: 18px; color: #2E3841; font-weight: 600; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .author-profile-page-content .author-profile-content-details .author-profile-body .author-details p { color: rgba(0,0,0,0.5); margin: 0; font-size: 14px; } /* END AUTHOR-PROFILE-PAGE-CONTENT SECTION */ /*** START AUTHOR'S PROFILE PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .author-profile-page-content .author-profile-content-head { margin-bottom: 3em; } .author-profile-page-content .author-profile-content-head h2 { font-size: 2em; } .author-profile-page-content .author-profile-content-details .author-profile-body { display: block; margin-top: 25px; text-align: center } } @media (min-width: 480px) and (max-width: 736px) { .author-profile-page-content .author-profile-content-head { margin-bottom: 3em; } .author-profile-page-content .author-profile-content-head h2 { font-size: 2em; } .author-profile-page-content .author-profile-content-details .author-profile-body { display: block; margin-top: 25px; text-align: center } } /*** END AUTHOR'S PROFILE PAGE SCREENS SIZSES ***/ /******----END AUTHOR'S PROFILE PAGE----******/ /*======================================================================*/ /******----START AUTHORS PAGE----******/ /* START AUTHORS-PAGE-BACKGROUND SECTION */ .authors-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END AUTHORS-PAGE-BACKGROUND SECTION */ /* START AUTHORS-NAMES SECTION */ .authors-names { padding: 30px 0px; text-align: center; } .authors-names h3 { display: inline-block; color: #fff; margin-right: 13px; margin-bottom: 0; margin-top: 0; } .authors-names a { display: inline; margin-right: 14px; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; color: rgba(250,250,250,.5); text-decoration: none; outline: none; padding: 1px 2px; } .authors-names a:last-of-type { margin-right: 0; } .authors-names .active { color: #fff; border-bottom: 1px solid; border-top: 1px solid; } .authors-names a:hover, .authors-names a:focus { color: #fff; border-bottom: 1px solid; border-top: 1px solid; } /* END AUTHORS-NAMES SECTION */ /* START AUTHORS-PAGE-CONTENT SECTION */ .authors-page-content .authors-page-content-head { margin-bottom: 5em; text-align: center; } .authors-page-content .authors-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .authors-page-content .all-authors { margin-bottom: 40px; } .authors-page-content .all-authors .author-info { position: relative; margin-right: auto; margin-left: auto; width: 180px; margin-bottom: 2em; -webkit-transition: all 0.35s ease-in-out; transition: all 0.35s ease-in-out; } .authors-page-content .all-authors .author-info .auth-img { display: block; } .authors-page-content .all-authors .author-info .auth-img img { border-radius: 50%; width: 180px; height: 180px; } .authors-page-content .all-authors .author-info h3 { text-align: center; margin: 0; } .authors-page-content .all-authors .author-info h3 .auth-name { color: rgba(0,0,0,.7); font-size: 1.3em; font-weight: 400; padding: 20px 0px 10px 0px; display: block; } .authors-page-content .page-number { width: 100%; text-align: center; margin-bottom: 0; padding: 0; } .authors-page-content .page-number li { display: inline; margin-right: 14px; } .authors-page-content .page-number li:last-of-type { margin-right: 0px; } .authors-page-content .page-number li a { color: rgba(0,0,0,.7); text-decoration: none; font-size: 1.2em; padding: 1px 2px; } .authors-page-content .page-number .fa-angle-double-right, .authors-page-content .page-number .fa-angle-double-left, .authors-page-content .page-number .fa-angle-right, .authors-page-content .page-number .fa-angle-left { font-size: 1.3em; padding:0; } /* END AUTHORS-PAGE-CONTENT SECTION */ /*** START AUTHORS PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .authors-page-content .authors-page-content-head { margin-bottom: 3em; } .authors-page-content .authors-page-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .authors-page-content .authors-page-content-head { margin-bottom: 3em; } .authors-page-content .authors-page-content-head h2 { font-size: 2em; } .author-profile-page-content .author-profile-content-details .author-profile-body { display: block; margin-top: 25px; text-align: center } } /*** END AUTHORS PAGE SCREENS SIZSES ***/ /******----END AUTHORS PAGE----******/ /*======================================================================*/ /******----START BLOG GRID VIEW PAGE----******/ /* START BLOG-GRID-PAGE-BACKGROUND SECTION */ .blog-grid-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END BLOG-GRID-PAGE-BACKGROUND SECTION */ /* START BLOG-GRID-CONTENT SECTION */ .blog-grid-content .blog-grid-content-head { margin-bottom: 5em; text-align: center; } .blog-grid-content .blog-grid-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .blog-grid-content .blog-posts .blog-post-card { margin-bottom: 30px; border: 1px solid #eaeaea; width: 100%; } .blog-grid-content .blog-posts .blog-post-card .post-pic { height: 230px; width: 100%; } .blog-grid-content .blog-posts .blog-post-card .post-pic a img { height: 100%; width: 100%; } .blog-grid-content .blog-posts .blog-post-card .post-body { padding: 30px; background: #fff; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-title { font-weight: 500; color: #3f444a; margin-bottom: 10px; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-title a { font-size: 19px; color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .post-uppercase { text-transform: uppercase; } .blog-grid-content .post-capitalize { text-transform: capitalize; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-writer { font-size: 13px; font-weight: 400; color: #5c6873; margin-bottom: 10px; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-writer a { font-size: 12px; color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel { padding: 5px 0; border-top: 1px solid #eaeaea; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-tags { padding: 0; margin: 3px 0px 5px 0; display: block; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li { font-size: 13px; text-transform: capitalize; display: inline-block; list-style: none; margin: 0 2px; background: #fff; border-radius: 0; padding: 3px 0; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li:hover a { color: #fff; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li a { font-size: 13px; padding: 5px 6px; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-comments { float: left; display: inline-block; font-size: 15px; font-weight: 400; margin: 6px 10px 3px 0; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-comments i { margin-right: 1px; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-comments a { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-share { float: left; display: inline-block; font-size: 15px; font-weight: 400; margin: 6px 10px 3px 0; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-share i { margin-right: 5px; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-share a { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .social-media { display: inline-block; float: left; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .social-media a { color: #2E3841; margin-right: 25px; margin-top: 8px; display: inline-block; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .social-media a:last-child { margin-right: 0; } .blog-grid-content .blog-posts .blog-post-card .post-body p { color: rgba(0,0,0,.5); display: block; clear: both; padding: 10px 0 10px 0; margin: 0; } .blog-grid-content .blog-posts .blog-post-card .read-more a { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .blog-posts .blog-post-card .read-more a:hover { color: #2E3841; } .blog-grid-content .blog-posts .blog-post-card .read-more a i { padding-left: 3px; } .blog-grid-content .page-number { width: 100%; text-align: center; margin-bottom: 0; padding: 0; } .blog-grid-content .page-number li { display: inline; margin-right: 14px; } .blog-grid-content .page-number li:last-of-type { margin-right: 0px; } .blog-grid-content .page-number li a { color: rgba(0,0,0,.7); text-decoration: none; font-size: 1.2em; padding: 1px 2px; } .blog-grid-content .page-number .fa-angle-double-right, .blog-grid-content .page-number .fa-angle-double-left, .blog-grid-content .page-number .fa-angle-right, .blog-grid-content .page-number .fa-angle-left { font-size: 1.3em; padding:0; } .blog-grid-content .sidebar-menu .blog-search { width: 100%; position: relative; } .blog-grid-content .sidebar-menu .blog-search .form-control { border-color: transparent; background-color: #F4F4F4; border-radius: 0; padding-left: 20px; padding-right: 60px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; min-height: 50px; } .blog-grid-content .sidebar-menu .blog-search .search-btn { position: absolute; right: 0; top: 0; font-size: 18px; padding: 10px 16px; background-color: transparent; color: #B0B0B0; display: inline-block; outline: none; } .blog-grid-content .sidebar-menu .blog-search .search-btn:hover, .blog-grid-content .sidebar-menu .blog-search .search-btn:focus { outline: none; } .blog-grid-content .sidebar-menu .blog-categories { margin-top: 40px; } .blog-grid-content .sidebar-menu .blog-categories .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-grid-content .sidebar-menu .blog-categories .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-grid-content .sidebar-menu .blog-categories .blog-categories-submenu { margin: 0; padding: 0; } .blog-grid-content .sidebar-menu .blog-categories .blog-categories-submenu li { list-style: none; padding: 7px 0; border-bottom: 1px solid #EAEAEA; } .blog-grid-content .sidebar-menu .blog-categories .blog-categories-submenu li a { color: #2E3841; font-size: 15px; text-decoration: none; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; font-weight: 300; } .blog-grid-content .sidebar-menu .blog-categories .blog-categories-submenu li a .fa-angle-right { margin-right: 10px; padding-left: 0; } .blog-grid-content .sidebar-menu .recent-posts { margin-top: 40px; } .blog-grid-content .sidebar-menu .recent-posts .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-grid-content .sidebar-menu .recent-posts .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-grid-content .sidebar-menu .recent-posts .recent-post { margin-bottom: 25px; } .blog-grid-content .sidebar-menu .recent-posts .recent-post:last-child { margin-bottom: 0; } .blog-grid-content .sidebar-menu .recent-posts .recent-post-pic { margin-bottom: 5px; width: 100%; } .blog-grid-content .sidebar-menu .recent-posts .recent-post .recent-post-pic a img { width: 100%; height: 160px; } .blog-grid-content .sidebar-menu .recent-posts .recent-post .recent-post-title { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; text-decoration: none; font-size: 16px; } .blog-grid-content .sidebar-menu .recent-posts .recent-post span { display: block; font-size: 14px; font-weight: 100; color: rgba(0,0,0,.5); } .blog-grid-content .sidebar-menu .recent-posts .recent-post span a { color: #2E3841; font-size: 12px; } .blog-grid-content .sidebar-menu .blog-archives { margin-top: 40px; } .blog-grid-content .sidebar-menu .blog-archives .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-grid-content .sidebar-menu .blog-archives .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-grid-content .sidebar-menu .blog-archives .blog-archives-submenu { margin: 0; padding: 0 } .blog-grid-content .sidebar-menu .blog-archives .blog-archives-submenu li { list-style: none; padding: 7px 0; border-bottom: 1px solid #EAEAEA; } .blog-grid-content .sidebar-menu .blog-archives .blog-archives-submenu li a { color: #2E3841; font-size: 15px; text-decoration: none; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; font-weight: 300; } .blog-grid-content .sidebar-menu .blog-archives .blog-archives-submenu li a .fa-angle-right { margin-right: 10px; padding-left: 0; } /* END BLOG-GRID-CONTENT SECTION */ /*** START BLOG GRID VIEW SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .blog-grid-content .blog-grid-content-head { margin-bottom: 3em; } .blog-grid-content .blog-grid-content-head h2 { font-size: 2em; } .blog-grid-content .blog-posts { padding-right: 0px; } .blog-grid-content .page-number { padding-bottom: 60px; } } @media (min-width: 480px) and (max-width: 736px) { .blog-grid-content .blog-grid-content-head { margin-bottom: 3em; } .blog-grid-content .blog-grid-content-head h2 { font-size: 2em; } .blog-grid-content .blog-posts{ padding-right: 0px; } .blog-grid-content .page-number { padding-bottom: 60px; } } @media (min-width: 736px) and (max-width: 980px) { .blog-grid-content .blog-posts { padding-right: 0px; } .blog-grid-content .page-number { padding-bottom: 60px; } } @media (min-width: 980px) and (max-width: 1280px) { .blog-grid-content .blog-posts { padding-right: 45px; } } @media (min-width: 1280px) and (max-width: 1680px) { .blog-grid-content .blog-posts{ padding-right: 45px; } } @media (min-width: 1680px) and (max-width: 1920px) { .blog-grid-content .blog-posts { padding-right: 45px; } } /*** END BLOG GRID VIEW SCREENS SIZSES ***/ /******----END BLOG-GRID-CONTENT PAGE----******/ /*======================================================================*/ /******----START BLOG LIST VIEW PAGE----******/ /* START BLOG-LIST-PAGE-BACKGROUND SECTION */ .blog-list-view-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END BLOG-LIST-PAGE-BACKGROUND SECTION */ /* START BLOG-LIST-CONTENT SECTION */ .blog-list-content .blog-list-content-head { margin-bottom: 5em; text-align: center; } .blog-list-content .blog-list-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .blog-list-content .blog-post-card { margin-bottom: 30px; border: 1px solid #eaeaea; width: 100%; } .blog-list-content .blog-posts .blog-post-card .full-pic { height: 100%; width: 100%; } .blog-list-content .blog-posts .blog-post-card .post-pic a img { height: 100%; width: 100%; } .blog-list-content .blog-posts .blog-post-card .post-body { padding: 30px; background: #fff; } .blog-list-content .blog-posts .blog-post-card .post-body .post-title { font-weight: 500; color: #3f444a; margin-bottom: 10px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-title a { font-size: 19px; color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-list-content .post-uppercase { text-transform: uppercase; } .blog-list-content .post-capitalize { text-transform: capitalize; } .blog-list-content .blog-posts .blog-post-card .post-body .post-writer { font-size: 13px; font-weight: 400; color: #5c6873; margin-bottom: 10px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-writer a { font-size: 12px; color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel { padding: 5px 0; border-top: 1px solid #eaeaea; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel { padding: 5px 0; border-top: 1px solid #eaeaea; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-tags { padding: 0; margin: 3px 0px 5px 0; display: block; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li { font-size: 13px; text-transform: capitalize; display: inline-block; list-style: none; margin: 0 2px; background: #fff; border-radius: 0; padding: 3px 0; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li:hover a { color: #fff; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li a { font-size: 13px; padding: 5px 6px; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-comments { float: left; display: inline-block; font-size: 15px; font-weight: 400; margin: 6px 10px 3px 0; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-comments a { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-comments i { margin-right: 1px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-share { float: left; display: inline-block; font-size: 15px; font-weight: 400; margin: 6px 10px 3px 0; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-share i { margin-right: 5px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-share a { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .social-media { display: inline-block; float: left; margin-left: 5px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .social-media a { color: #2E3841; margin-right: 25px; margin-top: 8px; display: inline-block; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; margin-top: 2px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .social-media a:last-child { margin-right: 0; } .blog-list-content .blog-posts .blog-post-card .post-body p { color: rgba(0,0,0,.5); display: block; clear: both; padding: 10px 0 10px 0; margin: 0; } .blog-list-content .blog-posts .blog-post-card .read-more a { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-list-content .blog-posts .blog-post-card .read-more a:hover { color: #2E3841; } .blog-list-content .blog-posts .blog-post-card .read-more a i { padding-left: 3px; } .blog-list-content .page-number { width: 100%; text-align: center; margin-bottom: 0; padding: 0; } .blog-list-content .page-number li { display: inline; margin-right: 14px; } .blog-list-content .page-number li:last-of-type { margin-right: 0px; } .blog-list-content .page-number li a { color: rgba(0,0,0,.7); text-decoration: none; font-size: 1.2em; padding: 1px 2px; } .blog-list-content .page-number .fa-angle-double-right, .blog-list-content .page-number .fa-angle-double-left, .blog-list-content .page-number .fa-angle-right, .blog-list-content .page-number .fa-angle-left { font-size: 1.3em; padding:0; } .blog-list-content .sidebar-menu .blog-search { width: 100%; position: relative; } .blog-list-content .sidebar-menu .blog-search .form-control { border-color: transparent; background-color: #F4F4F4; border-radius: 0; padding-left: 20px; padding-right: 60px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; min-height: 50px; } .blog-list-content .sidebar-menu .blog-search .search-btn { position: absolute; right: 0; top: 0; font-size: 18px; padding: 10px 16px; background-color: transparent; color: #B0B0B0; display: inline-block; outline: none; } .blog-list-content .sidebar-menu .blog-search .search-btn:hover, .blog-list-content .sidebar-menu .blog-search .search-btn:focus { outline: none; } .blog-list-content .sidebar-menu .blog-categories { margin-top: 40px; } .blog-list-content .sidebar-menu .blog-categories .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-list-content .sidebar-menu .blog-categories .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-list-content .sidebar-menu .blog-categories .blog-categories-submenu { margin: 0; padding: 0; } .blog-list-content .sidebar-menu .blog-categories .blog-categories-submenu li { list-style: none; padding: 7px 0; border-bottom: 1px solid #EAEAEA; } .blog-list-content .sidebar-menu .blog-categories .blog-categories-submenu li a { color: #2E3841; font-size: 15px; text-decoration: none; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; font-weight: 300; } .blog-list-content .sidebar-menu .blog-categories .blog-categories-submenu li a .fa-angle-right { margin-right: 10px; padding-left: 0; } .blog-list-content .sidebar-menu .recent-posts { margin-top: 40px; } .blog-list-content .sidebar-menu .recent-posts .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-list-content .sidebar-menu .recent-posts .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-list-content .sidebar-menu .recent-posts .recent-post { margin-bottom: 25px; } .blog-list-content .sidebar-menu .recent-posts .recent-post:last-child { margin-bottom: 0; } .blog-list-content .sidebar-menu .recent-posts .recent-post-pic { margin-bottom: 5px; width: 100%; } .blog-list-content .sidebar-menu .recent-posts .recent-post .recent-post-pic a img { width: 100%; height: 160px; } .blog-list-content .sidebar-menu .recent-posts .recent-post .recent-post-title { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; text-decoration: none; font-size: 16px; } .blog-list-content .sidebar-menu .recent-posts .recent-post span { display: block; font-size: 14px; font-weight: 100; color: rgba(0,0,0,.5); } .blog-list-content .sidebar-menu .recent-posts .recent-post span a { color: #2E3841; font-size: 12px; } .blog-list-content .sidebar-menu .blog-archives { margin-top: 40px; } .blog-list-content .sidebar-menu .blog-archives .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-list-content .sidebar-menu .blog-archives .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-list-content .sidebar-menu .blog-archives .blog-archives-submenu { margin: 0; padding: 0 } .blog-list-content .sidebar-menu .blog-archives .blog-archives-submenu li { list-style: none; padding: 7px 0; border-bottom: 1px solid #EAEAEA; } .blog-list-content .sidebar-menu .blog-archives .blog-archives-submenu li a { color: #2E3841; font-size: 15px; text-decoration: none; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; font-weight: 300; } .blog-list-content .sidebar-menu .blog-archives .blog-archives-submenu li a .fa-angle-right { margin-right: 10px; padding-left: 0; } /* END BLOG-LIST-CONTENT SECTION */ /*** START BLOG LIST VIEW SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .blog-list-content .blog-list-content-head { margin-bottom: 3em; } .blog-list-content .blog-list-content-head h2 { font-size: 2em; } .blog-list-content .blog-posts { padding-right: 0px; } .blog-list-content .page-number { padding-bottom: 60px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .social-media { margin-left: 0px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .social-media a { margin-top: 8px; } } @media (min-width: 480px) and (max-width: 736px) { .blog-list-content .blog-list-content-head { margin-bottom: 3em; } .blog-list-content .blog-list-content-head h2 { font-size: 2em; } .blog-list-content .blog-posts{ padding-right: 0px; } .blog-list-content .page-number { padding-bottom: 60px; } } @media (min-width: 736px) and (max-width: 980px) { .blog-list-content .blog-posts { padding-right: 0px; } .blog-list-content .page-number { padding-bottom: 60px; } } @media (min-width: 980px) and (max-width: 1280px) { .blog-list-content .blog-posts { padding-right: 45px; } } @media (min-width: 1280px) and (max-width: 1680px) { .blog-list-content .blog-posts { padding-right: 45px; } } @media (min-width: 1680px) and (max-width: 1920px) { .blog-list-content .blog-posts { padding-right: 45px; } } /*** END BLOG LIST VIEW SCREENS SIZSES ***/ /******----END BLOG LIST VIEW PAGE----******/ /*======================================================================*/ /******----START BLOG SINGLE POST PAGE----******/ /* START BLOG-POST-PAGE-BACKGROUND SECTION */ .blog-post-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END BLOG-POST-PAGE-BACKGROUND SECTION */ /* START BLOG-POST-CONTENT SECTION */ .blog-post-content .blog-list-content-head { margin-bottom: 5em; text-align: center; } .blog-post-content .blog-list-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .blog-post-content .blog-post-card { margin-bottom: 30px; border: 1px solid #eaeaea; width: 100%; } .blog-post-content .blog-posts .blog-post-card .full-pic { height: 100%; width: 100%; } .blog-post-content .blog-posts .blog-post-card .post-pic a img { height: 100%; width: 100%; } .blog-post-content .blog-posts .blog-post-card .post-body { padding: 30px; background: #fff; } .blog-post-content .blog-posts .blog-post-card .post-body .post-title { font-weight: 500; color: #3f444a; margin-bottom: 10px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-title a { font-size: 19px; color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .post-uppercase { text-transform: uppercase; } .blog-post-content .post-capitalize { text-transform: capitalize; } .blog-post-content .blog-posts .blog-post-card .post-body .post-writer { font-size: 13px; font-weight: 400; color: #5c6873; margin-bottom: 10px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-writer a { font-size: 12px; color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel { padding: 5px 0; border-top: 1px solid #eaeaea; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel { padding: 5px 0; border-top: 1px solid #eaeaea; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-tags { padding: 0; margin: 3px 0px 5px 0; display: block; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li { font-size: 13px; text-transform: capitalize; display: inline-block; list-style: none; margin: 0 2px; background: #fff; border-radius: 0; padding: 3px 0; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li:hover a { color: #fff; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li a { font-size: 13px; padding: 5px 6px; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-comments { float: left; display: inline-block; font-size: 15px; font-weight: 400; margin: 6px 10px 3px 0; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-comments a { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-comments i { margin-right: 1px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-share { float: left; display: inline-block; font-size: 15px; font-weight: 400; margin: 6px 10px 3px 0; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-share i { margin-right: 5px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-share a { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .social-media { display: inline-block; float: left; margin-left: 5px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .social-media a { color: #2E3841; margin-right: 25px; margin-top: 8px; display: inline-block; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; margin-top: 2px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .social-media a:last-child { margin-right: 0; } .blog-post-content .blog-posts .blog-post-card .post-body p { color: rgba(0,0,0,.5); display: block; clear: both; padding: 10px 0 10px 0; margin: 0; } .blog-post-content .sidebar-menu .blog-search { width: 100%; position: relative; } .blog-post-content .sidebar-menu .blog-search .form-control { border-color: transparent; background-color: #F4F4F4; border-radius: 0; padding-left: 20px; padding-right: 60px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; min-height: 50px; } .blog-post-content .sidebar-menu .blog-search .search-btn { position: absolute; right: 0; top: 0; font-size: 18px; padding: 10px 16px; background-color: transparent; color: #B0B0B0; display: inline-block; outline: none; } .blog-post-content .sidebar-menu .blog-search .search-btn:hover, .blog-post-content .sidebar-menu .blog-search .search-btn:focus { outline: none; } .blog-post-content .sidebar-menu .blog-categories { margin-top: 40px; } .blog-post-content .sidebar-menu .blog-categories .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-post-content .sidebar-menu .blog-categories .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-post-content .sidebar-menu .blog-categories .blog-categories-submenu { margin: 0; padding: 0; } .blog-post-content .sidebar-menu .blog-categories .blog-categories-submenu li { list-style: none; padding: 7px 0; border-bottom: 1px solid #EAEAEA; } .blog-post-content .sidebar-menu .blog-categories .blog-categories-submenu li a { color: #2E3841; font-size: 15px; text-decoration: none; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; font-weight: 300; } .blog-post-content .sidebar-menu .blog-categories .blog-categories-submenu li a .fa-angle-right { margin-right: 10px; padding-left: 0; } .blog-post-content .sidebar-menu .recent-posts { margin-top: 40px; } .blog-post-content .sidebar-menu .recent-posts .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-post-content .sidebar-menu .recent-posts .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-post-content .sidebar-menu .recent-posts .recent-post { margin-bottom: 25px; } .blog-post-content .sidebar-menu .recent-posts .recent-post:last-child { margin-bottom: 0; } .blog-post-content .sidebar-menu .recent-posts .recent-post-pic { margin-bottom: 5px; width: 100%; } .blog-post-content .sidebar-menu .recent-posts .recent-post .recent-post-pic a img { width: 100%; height: 160px; } .blog-post-content .sidebar-menu .recent-posts .recent-post .recent-post-title { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; text-decoration: none; font-size: 16px; } .blog-post-content .sidebar-menu .recent-posts .recent-post span { display: block; font-size: 14px; font-weight: 100; color: rgba(0,0,0,.5); } .blog-post-content .sidebar-menu .recent-posts .recent-post span a { color: #2E3841; font-size: 12px; } .blog-post-content .sidebar-menu .blog-archives { margin-top: 40px; } .blog-post-content .sidebar-menu .blog-archives .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-post-content .sidebar-menu .blog-archives .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-post-content .sidebar-menu .blog-archives .blog-archives-submenu { margin: 0; padding: 0 } .blog-post-content .sidebar-menu .blog-archives .blog-archives-submenu li { list-style: none; padding: 7px 0; border-bottom: 1px solid #EAEAEA; } .blog-post-content .sidebar-menu .blog-archives .blog-archives-submenu li a { color: #2E3841; font-size: 15px; text-decoration: none; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; font-weight: 300; } .blog-post-content .sidebar-menu .blog-archives .blog-archives-submenu li a .fa-angle-right { margin-right: 10px; padding-left: 0; } .blog-post-content .persons-comments { padding-right: 45px; margin-bottom: 60px; } .blog-post-content .persons-comments .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-post-content .persons-comments .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-post-content .persons-comments .person-comment { margin-bottom: 30px; } .blog-post-content .persons-comments .person-comment .comment-pic { padding-right: 20px; display: table-cell; } .blog-post-content .persons-comments .person-comment .comment-pic a img { height: 50px; width: 50px; } .blog-post-content .persons-comments .person-comment .comment-body { display: table-cell; vertical-align: top; } .blog-post-content .persons-comments .person-comment .comment-body .comment-writer { margin-top: 0; margin-bottom: 5px; } .blog-post-content .persons-comments .person-comment .comment-body .comment-writer a { color: #2E3841; font-size: 13px; font-weight: 600; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .persons-comments .person-comment .comment-body p { color: rgba(0,0,0,.5); font-size: 13px; } .blog-post-content .persons-comments .person-comment .comment-body .comment-info { font-size: 13px; font-weight: 400; color: #5c6873; } .blog-post-content .persons-comments .person-comment .comment-body .comment-info .comment-time { font-size: 13px; font-weight: 400; color: #5c6873; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .persons-comments .person-comment .comment-body .comment-info .reply-button { font-size: 13px; font-weight: 400; color: #5c6873; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply { margin-top: 15px; margin-bottom: 0px; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-pic { padding-right: 20px; display: table-cell; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-pic a img { height: 50px; width: 50px; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-body { display: table-cell; vertical-align: top; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-body .comment-reply-writer { margin-top: 0; margin-bottom: 5px; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-body .comment-reply-writer a { color: #2E3841; font-size: 13px; font-weight: 600; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-body .comment-reply-body p { color: rgba(0,0,0,.5); font-size: 13px; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-body .comment-reply-info { font-size: 13px; font-weight: 400; color: #5c6873; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-body .comment-reply-info .comment-reply-time { font-size: 13px; font-weight: 400; color: #5c6873; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-body .comment-reply-info .reply-button { font-size: 13px; font-weight: 400; color: #5c6873; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .persons-comments .comments-btn { background-color: transparent; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; border-radius: 0; outline: none; } .blog-post-content .persons-comments .comments-btn:hover, .blog-post-content .persons-comments .comments-btn:focus { color: #fff; outline: none; } .blog-post-content .post-comment { padding-right: 45px; margin-bottom: 60px; } .blog-post-content .post-comment .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-post-content .post-comment .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-post-content .post-comment .user-details form .form-group h5 { color: #2E3841; } .blog-post-content .post-comment .user-details form .form-group .form-control { border-radius: 0; } .blog-post-content .post-comment .user-details form .form-group .form-control:focus { outline: 0; -webkit-box-shadow: none; box-shadow: none; } .blog-post-content .post-comment .user-details textarea.form-control { height: 180px; } /* END BLOG-POST-CONTENT SECTION */ /*** START BLOG POST VIEW SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .blog-post-content .blog-posts { padding-right: 0px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .social-media { margin-left: 0px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .social-media a { margin-top: 8px; } .blog-post-content .persons-comments { padding-right: 0px; margin-bottom: 60px; } .blog-post-content .post-comment.persons-comments { margin-bottom: 60px; } } @media (min-width: 480px) and (max-width: 736px) { .blog-post-content .blog-posts{ padding-right: 0px; } .blog-post-content .persons-comments { padding-right: 0px; margin-bottom: 60px; } } @media (min-width: 736px) and (max-width: 980px) { .blog-post-content .blog-posts { padding-right: 0px; } .blog-post-content .persons-comments { padding-right: 0px; margin-bottom: 60px; } } @media (min-width: 980px) and (max-width: 1280px) { .blog-post-content .blog-posts { padding-right: 45px; } .blog-post-content .persons-comments { padding-right: 45px; } } @media (min-width: 1280px) and (max-width: 1680px) { .blog-post-content .blog-posts { padding-right: 45px; } .blog-post-content .persons-comments { padding-right: 45px; } } @media (min-width: 1680px) and (max-width: 1920px) { .blog-post-content .blog-posts { padding-right: 45px; } .blog-post-content .persons-comments { padding-right: 45px; } } /*** END BLOG POST VIEW SCREENS SIZSES ***/ /******----END BLOG SINGLE POST PAGE----******/ /*======================================================================*/ /******----START OUR BOOK PAGE----******/ /* START BOOK-PAGE-BACKGROUND SECTION */ .book-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END BOOK-PAGE-BACKGROUND SECTION */ /* START BOOK-PAGE-BACKGROUND SECTION */ .book-content .book-content-head { margin-bottom: 5em; text-align: center; } .book-content .book-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .book-content .book-content-body .book-img { margin-bottom:10px; } .book-content .book-content-body .book-img img { width: 100%; } .book-content .book-content-body .book-details .post-review .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .book-content .book-content-body .book-details .post-review .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .book-content .book-content-body .book-details .book-tags { display: block; font-weight: 400; margin: 0px 10px; font-size: 13px; padding-top: 3px; color: rgba(0, 0, 0, .5); } .book-content .book-content-body .book-details .book-tags .book-tag { font-weight: 400; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; font-size: 12px; } .book-content .book-content-body .book-details .book-tags .book-tag.book-tag-blacky { color: rgba(0, 0, 0, .5); } .book-content .book-content-body .book-details .book-tags .book-tag.book-tag-blacky:hover, .book-content .book-content-body .book-details .book-tags .book-tag.book-tag-blacky:focus { color: #000; } .book-content .book-content-body .book-details .book-tags .price-number-after { position: relative; display: inline; } .book-content .book-content-body .book-details .payment-way img { width: 240px; } .book-content .book-content-body .book-details .social-media a { display: inline-block; margin-right: 37px; transition: .3s ease-in-out all; -webkit-transition: .3s ease-in-out all; -moz-transition: .3s ease-in-out all; color: #2E3841; margin-top: 8px; } .book-content .book-content-body .book-details .nav-tabs { border-bottom: 0px; margin-top: 20px; margin-bottom: 20px; } .book-content .book-content-body .book-details .nav-tabs li a { margin-right: 0px; border-bottom: 1px solid #ddd; } .book-content .book-content-body .book-details .nav-tabs li.active a { border-bottom-color: transparent; } .book-content .book-content-body .book-details .tab-content .tab-pane-about-this-books p { color: rgba(0, 0, 0, .5); font-size: 13px; } .book-content .book-content-body .book-details .tab-content .tab-pane-about-this-books a.more { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; text-transform: capitalize; cursor: pointer; } .book-content .book-content-body .book-details .tab-content .tab-pane-about-this-books a.more:hover { color: #000; } .book-content .book-content-body .book-details .tab-content .tab-pane-about-this-books a.more i { margin-left: 4px; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .book-content .book-content-body .book-details .tab-content .tab-pane-about-this-books a.more i:hover { color:#000; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details dl dt { color: #2E3841; padding-top: 20px; border-top: 1px solid #eaeaea; text-align: center; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details dl dt:first-child { border-top: none; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details dl dd { color: rgba(0, 0, 0, .5); padding-bottom: 20px; text-align: center; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details dl dd .price-number-after { position: relative; display: inline; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details .softcover-details-btn { text-align: center; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details .softcover-details-btn .softcover-book-btn { margin-top: 0; border-radius: 0; background: transparent; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; padding: 8px 24px; letter-spacing: 0.075em; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details .softcover-details-btn .softcover-book-btn:hover, .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details .softcover-details-btn .softcover-book-btn:focus { color: #fff; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details .softcover-details-btn .softcover-book-btn .fa-angle-right { padding: 0 0 0 .5em; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details dl dt { color: #2E3841; padding-top: 20px; border-top: 1px solid #eaeaea; text-align: center; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details dl dt:first-child { border-top: none; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details dl dd { color: rgba(0, 0, 0, .5); padding-bottom: 20px; text-align: center; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details dl dd .price-number-after { position: relative; display: inline; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details .ebook-details-btn { text-align: center; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details .ebook-details-btn .ebook-book-btn { margin-top: 0; border-radius: 0; background: transparent; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; padding: 8px 24px; letter-spacing: 0.075em; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details .ebook-details-btn .ebook-book-btn:hover, .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details .ebook-details-btn .ebook-book-btn:focus { color: #fff; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details .ebook-details-btn .ebook-book-btn .fa-angle-right { padding: 0 0 0 .5em; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment { margin-bottom: 30px; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-pic { padding-right: 20px; display: table-cell; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-pic a img { height: 50px; width: 50px; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-body { display: table-cell; vertical-align: top; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-body .comment-writer { margin-top: 0; margin-bottom: 5px; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-body .comment-writer a { color: #2E3841; font-size: 13px; font-weight: 600; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-body p { color: rgba(0,0,0,.5); font-size: 13px; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-body .comment-info { font-size: 13px; font-weight: 400; color: #5c6873; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-body .comment-info .comment-time { font-size: 13px; font-weight: 400; color: #5c6873; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-body .comment-info .reply-button { font-size: 13px; font-weight: 400; color: #5c6873; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .subheading h4 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .form-group h5 { color: #2E3841; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .form-group .form-control { border-radius: 0; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .form-group .form-control:focus { outline: 0; -webkit-box-shadow: none; box-shadow: none; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .form-group textarea.form-control { height: 180px; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .book-rating { margin-bottom: 15px; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .book-rating .rating-word { color:#2E3841; font-size: 17px; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .book-reviews-btn { background-color: transparent; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; border-radius: 0; outline: none; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .book-reviews-btn:hover, .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .book-reviews-btn:focus { color: #fff; outline: none; } /* END BOOK-PAGE-BACKGROUND SECTION */ /*** START OUR BOOK SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .book-content .book-content-head { margin-bottom: 3em; } .book-content .book-content-head h2 { font-size: 2em; } .book-content .social-media { margin-left: 0px; }.book-content .book-content .social-media a { margin-top: 8px; } } @media (min-width: 480px) and (max-width: 736px) { .book-content .book-content-head { margin-bottom: 3em; } .book-content .book-content-head h2 { font-size: 2em; } } /*** END OUR BOOK SCREENS SIZSES ***/ /******----END OUR BOOK PAGE----******/ /*======================================================================*/ /******----START OUR BOOKS PAGE----******/ /* START BOOKSPAGE-BACKGROUND SECTION */ .bookspage-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END BOOKSPAGE-BACKGROUND SECTION */ /* START BOOKSPAGE-SECTION Section */ .bookspage-content .bookspage-body .bookspage-content-head { margin-bottom: 5em; text-align: center; } .bookspage-content .bookspage-body .bookspage-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .bookspage-content .bookspage-body .books-list { padding-bottom: 2em; } .bookspage-content .bookspage-body .books-list .book-part .book-cart { overflow: hidden; max-width: 220px; height: 372px; margin-left: auto; margin-right: auto; margin-bottom: 3em; border-radius: 10px; border: 1px solid rgba(0,0,0,.1); background: transparent; position: relative; display: block; -webkit-box-sizing: border-box; box-sizing: border-box; } .bookspage-content .bookspage-body .books-list .book-part .book-cart img { vertical-align: top; height: 200px; width: 100%; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .icons { padding: 10px; display: flex; flex-direction: column; justify-content: flex-start; top: 0; bottom: 0; right: 0; left: 0; position: absolute; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .icons * { -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .icons a { margin: 2px; opacity: 0; -webkit-transform: translateY(100%); transform: translateY(100%); text-decoration: none; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .icons a i { font-size: 15.529px; line-height: 30px; width: 33px; display: block; text-align: center; color: #000; background-color: #fff; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .icons a i:hover { color: #fff; cursor: pointer; } .bookspage-content .bookspage-body .books-list .book-part .book-cart:hover .icons a{ opacity: 1; -webkit-transform: translate(0px, 0px); transform: translate(0px, 0px); } .bookspage-content .bookspage-body .books-list .book-part .book-cart:hover .icons a:nth-child(2){ -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } .bookspage-content .bookspage-body .books-list .book-part .book-cart:hover .icons a:nth-child(3){ -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy { height: 170px; bottom: 0; right: 0; left: 0; position: absolute; background-color: #fff; color: #fff; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc { display: block; color: #fff; padding: 2px 0; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .head { font-size: 1em; margin: 5px 10px 6px 10px; text-transform: capitalize; display: block; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .head-blacky, .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .head-blacky:hover, .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .head-blacky:focus { color: #000; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .book-tags { margin: 0px 10px; font-size: 13px; padding-top: 3px; font-weight: 400; display: block; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .book-tags .book-tag { font-size: 12px; font-weight: 400; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .book-tag-blacky { color: rgba(0, 0, 0, .5); } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:hover, .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:focus { color: #000; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-price { padding: 5px 11px 4px; font-size: 16px; margin-top: 1px; text-decoration: none; display: block; text-align: center; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-price.main-color { color: #000; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-price .price-number-after { position: relative; display: inline; } .bookspage-content .book-tag-whitey { color: rgba(250, 250, 250, .5); } .bookspage-content .bookspage-body .page-number { width: 100%; text-align: center; margin-bottom: 0; padding: 0; } .bookspage-content .bookspage-body .page-number li { display: inline; margin-right: 14px; } .bookspage-content .bookspage-body .page-number li:last-of-type { margin-right: 0px; } .bookspage-content .bookspage-body .page-number li a { color: rgba(0,0,0,.7); text-decoration: none; font-size: 1.2em; padding: 1px 2px; } .bookspage-content .bookspage-body .page-number .fa-angle-double-right, .bookspage-content .bookspage-body .page-number .fa-angle-double-left, .bookspage-content .bookspage-body .page-number .fa-angle-right, .bookspage-content .bookspage-body .page-number .fa-angle-left { font-size: 1.3em; padding:0; } /* END BOOKSPAGE-SECTION Section */ /*** START OUR BOOK SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .bookspage-content .bookspage-body .bookspage-content-head { margin-bottom: 3em; } .bookspage-content .bookspage-body .bookspage-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .bookspage-content .bookspage-body .bookspage-content-head { margin-bottom: 3em; } .bookspage-content .bookspage-body .bookspage-content-head h2 { font-size: 2em; } } /*** END OUR BOOK SCREENS SIZSES ***/ /******----END OUR BOOKS PAGE----******/ /*======================================================================*/ /******----START CAREERS PAGE----******/ /* START CAREERS-PAGE-BACKGROUND SECTION */ .careers-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END CAREERS-PAGE-BACKGROUND SECTION */ /* START CAREERS-INFORMATION-CONTENT SECTION */ .careers-information-content .careers-information-content-head { margin-bottom: 5em; text-align: center; } .careers-information-content .careers-information-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .careers-information-content .panel-group .panel-default .panel-heading { padding: 20px 15px } .careers-information-content .panel-group .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .careers-information-content .panel-group .panel-default .panel-heading .panel-title a i { margin-right: 5px; } .careers-information-content .panel-group .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .careers-information-content .panel-group .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .careers-information-content .panel-group .panel-default .heading-four { background-color: rgba(243, 156, 18,1.0); } .careers-information-content .panel-group .panel-default .heading-seven { background-color: rgba(149, 165, 166,1.0); } .careers-information-content .panel-collapse .panel-body p { color: rgba(0,0,0,.4); font-size: 14px; } .careers-information-content .panel-group .panel-default .panel-body h4 { color: rgba(0,0,0,.8); } .careers-information-content .panel-group .panel-default .panel-body p a { text-decoration: none; padding: 3px 0; } .careers-information-content .panel-group .panel-default .panel-body .careers-title li { color: rgba(0,0,0,.4) } /* END CAREERS-INFORMATION-CONTENT SECTION */ /*** START OUR BOOK SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .careers-information-content .careers-information-content-head { margin-bottom: 3em; } .careers-information-content .careers-information-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .careers-information-content .careers-information-content-head { margin-bottom: 3em; } .careers-information-content .careers-information-content-head h2 { font-size: 2em; } } /*** END OUR BOOK SCREENS SIZSES ***/ /******----END CAREERS PAGE----******/ /*======================================================================*/ /******----START CART-EMPTY PAGE----******/ /* START CART-EMPTY-PAGE-BACKGROUND SECTION */ .cart-empty-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END CART-EMPTY-PAGE-BACKGROUND SECTION */ /* START CART-EMPTY-CONTENT SECTION */ .cart-empty-content .cart-empty-content-head { margin-bottom: 5em; text-align: center; } .cart-empty-content .cart-empty-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .cart-empty-content .cart-empty { text-align: center; } .cart-empty-content .cart-empty h3 { color: #3f444a; font-size: 30px; margin: 0; text-transform: uppercase; } .cart-empty-content .add-prdouct { font-size: 30px; } .cart-empty-content .cart-empty a { margin: 0 0 25px; display: inline-block; border-radius: 0; background: transparent; outline: none; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; padding: 8px 24px; letter-spacing: 0.075em; } .cart-empty-content .cart-empty a:hover, .cart-empty-content .cart-empty a:focus { outline: none; color: #fff; } /* END CART-EMPTY-CONTENT SECTION */ /*** START OUR BOOK SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .cart-empty-content .cart-empty-content-head { margin-bottom: 3em; } .cart-empty-content .cart-empty-content-head h2 { font-size: 2em; } .cart-empty-content .cart-empty h3 { font-size: 1.2em; } } @media (min-width: 480px) and (max-width: 736px) { .cart-empty-content .cart-empty-content-head { margin-bottom: 3em; } .cart-empty-content .cart-empty-content-head h2 { font-size: 2em; } .cart-empty-content .cart-empty h3 { font-size: 1.2em; } } /*** END OUR BOOK SCREENS SIZSES ***/ /******----END CART-EMPTY PAGE----******/ /*======================================================================*/ /******----START CART PAGE----******/ /* START CART-PAGE-BACKGROUND SECTION */ .cart-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END CART-PAGE-BACKGROUND SECTION */ /* START CART-PAGE-CONTENT SECTION */ .cart-page-content .cart-page-content-head { margin-bottom: 5em; text-align: center; } .cart-page-content .cart-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } /* Column headers */ .cart-page-content .shopping-cart-page .column-labels label { padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid #eee; color: #000; font-weight: 400; } .cart-page-content .shopping-cart-page .column-labels .product-image { float: left; width: 20%; } .cart-page-content .shopping-cart-page .column-labels .product-details { float: left; width: 37%; } .cart-page-content .shopping-cart-page .column-labels .product-price { float: left; width: 12%; color: #000; } .cart-page-content .shopping-cart-page .column-labels .product-quantity { float: left; width: 10%; } .cart-page-content .shopping-cart-page .column-labels .product-removal { float: left; width: 9%; text-align: center; } .cart-page-content .shopping-cart-page .column-labels .product-line-price { float: left; width: 12%; text-align: right; } /* This is used as the traditional .clearfix class */ .cart-page-content .clearfix .product-removal { float: right; } .cart-page-content .shopping-cart-page:before, .cart-page-content .shopping-cart-page .column-labels:before, .cart-page-content .shopping-cart-page .product:before, .cart-page-content .shopping-cart-page .totals .totals-item:before, .cart-page-content .shopping-cart-page:after, .cart-page-content .shopping-cart-page .column-labels:after, .cart-page-content .shopping-cart-page .product:after, .cart-page-content .shopping-cart-page .totals .totals-item:after { content: ''; display: table; } .cart-page-content .shopping-cart-page:after, .cart-page-content .shopping-cart-page .column-labels:after, .cart-page-content .shopping-cart-page .product:after, .cart-page-content .shopping-cart-page .totals .totals-item:after { clear: both; } .cart-page-content .shopping-cart-page, .cart-page-content .shopping-cart-page .column-labels, .cart-page-content .shopping-cart-page .product, .cart-page-content .shopping-cart-page .totals .totals-item { zoom: 1; } /* Apply dollar signs */ .cart-page-content .shopping-cart-page .product .product-price:before, .cart-page-content .shopping-cart-page .product .product-line-price:before, .cart-page-content .shopping-cart-page .totals .totals-item .totals-value:before { content: '$'; } /* Product entries */ .cart-page-content .shopping-cart-page .product { margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .cart-page-content .shopping-cart-page .product .product-image { text-align: left; float: left; width: 20%; } .cart-page-content .shopping-cart-page .product .product-image img { width: 100px; } .cart-page-content .shopping-cart-page .product .product-details { float: left; width: 37%; } .cart-page-content .shopping-cart-page .product .product-details .product-title { margin-right: 20px; color: #000; } .cart-page-content .shopping-cart-page .product .product-details .product-description { margin: 5px 20px 5px 0; color: rgba(0, 0, 0, .5); font-size: 13px; } .cart-page-content .shopping-cart-page .product .product-price { float: left; width: 12%; color: #000; } .cart-page-content .shopping-cart-page .product .product-quantity { float: left; width: 10%; } .cart-page-content .shopping-cart-page .product .product-quantity input { width: 40px; color: #000; } .cart-page-content .shopping-cart-page .product .product-removal { float: left; width: 9%; text-align: center; } .cart-page-content .shopping-cart-page .product .product-removal a { color: #000; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; cursor:pointer; } .cart-page-content .shopping-cart-page .product .product-line-price { float: left; width: 12%; text-align: right; } /* Totals section */ .cart-page-content .shopping-cart-page .totals .totals-item { float: right; clear: both; width: 100%; margin-bottom: 10px; } .cart-page-content .shopping-cart-page .totals .totals-item label { float: left; clear: both; width: 79%; text-align: right; color: #000; } .cart-page-content .shopping-cart-page .totals .totals-item .totals-value { float: right; width: 21%; text-align: right; } .cart-page-content .shopping-cart-page .cart-page-checkout-btn { float: right; margin-top: 20px; font-size: 18px; border-radius: 0; background: transparent; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; outline: none; padding: 5px 20px; text-transform: capitalize; } .cart-page-content .shopping-cart-page .cart-page-checkout-btn:hover { color: #fff; } /* END CART-PAGE-CONTENT SECTION */ /*** START CART PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .cart-page-content .cart-page-content-head { margin-bottom: 3em; } .cart-page-content .cart-page-content-head h2 { font-size: 2em; } .cart-page-content .shopping-cart-page { margin: 0; padding-top: 20px; border-top: 1px solid #eee; } .cart-page-content .shopping-cart-page .column-labels { display: none; } .cart-page-content .shopping-cart-page .product .product-image { float: right; width: 100%; text-align: center; } .cart-page-content .shopping-cart-page .product .product-image img { margin: 0 0 10px 0px; } .cart-page-content .shopping-cart-page .product .product-details { float: left; margin-bottom: 10px; width: auto; text-align: center; } .cart-page-content .shopping-cart-page .product .product-details .product-title { margin-right: 0; } .cart-page-content .shopping-cart-page .product .product-details .product-description { margin-right: 0; } .cart-page-content .shopping-cart-page .product .product-price { clear: both; width: 70px; color: #000; } .cart-page-content .shopping-cart-page .product .product-quantity { width: 100px; text-align: right; } .cart-page-content .shopping-cart-page .product .product-quantity input { margin-left: 20px; } .cart-page-content .shopping-cart-page .product .product-quantity:before { content: 'x'; } .cart-page-content .shopping-cart-page .product .product-removal { width: auto; float: right; } .cart-page-content .shopping-cart-page .product .product-line-price { float: left; width: 100%; margin-top: 20px; text-align: center; } .cart-page-content .shopping-cart-page .product .product-line-price:before { content: 'Item Total: $'; } .cart-page-content .shopping-cart-page .totals .totals-item label { width: 60%; text-align: left; } .cart-page-content .shopping-cart-page .totals .totals-item .totals-value { width: 40%; } } @media (min-width: 480px) and (max-width: 736px) { .cart-page-content .cart-page-content-head { margin-bottom: 3em; } .cart-page-content .cart-page-content-head h2 { font-size: 2em; } .cart-page-content .shopping-cart-page { margin: 0; padding-top: 20px; border-top: 1px solid #eee; } .cart-page-content .shopping-cart-page .column-labels { display: none; } .cart-page-content .shopping-cart-page .product .product-image { float: right; width: 100%; text-align: center; } .cart-page-content .shopping-cart-page .product .product-image img { margin: 0 0 10px 0px; } .cart-page-content .shopping-cart-page .product .product-details { float: left; margin-bottom: 10px; width: auto; text-align: center; } .cart-page-content .shopping-cart-page .product .product-details .product-title { margin-right: 0; } .cart-page-content .shopping-cart-page .product .product-details .product-description { margin-right: 0; } .cart-page-content .shopping-cart-page .product .product-price { clear: both; width: 70px; color: #000; } .cart-page-content .shopping-cart-page .product .product-quantity { width: 100px; text-align: right; } .cart-page-content .shopping-cart-page .product .product-quantity input { margin-left: 20px; } .cart-page-content .shopping-cart-page .product .product-quantity:before { content: 'x'; } .cart-page-content .shopping-cart-page .product .product-removal { width: auto; float: right; } .cart-page-content .shopping-cart-page .product .product-line-price { float: left; width: 100%; margin-top: 20px; text-align: center; } .cart-page-content .shopping-cart-page .product .product-line-price:before { content: 'Item Total: $'; } .cart-page-content .shopping-cart-page .totals .totals-item label { width: 60%; text-align: left; } .cart-page-content .shopping-cart-page .totals .totals-item .totals-value { width: 40%; } } /*** END CART PAGE SCREENS SIZSES ***/ /******----END CART PAGE----******/ /*======================================================================*/ /******----START CATEGORIES PAGE----******/ /* START CATEGORIES-PAGE-BACKGROUND SECTION */ .categories-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END CART-PAGE-BACKGROUND SECTION */ /* START CART-PAGE-BACKGROUND SECTION */ .categories-page-content .categories-page-content-head { margin-bottom: 5em; text-align: center; } .categories-page-content .categories-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .categories-page-content .category-part .category-cart { height: 280px; position: relative; display: block; background-color: #2266a5; color: #fff; overflow: hidden; -webkit-box-sizing: border-box; box-sizing: border-box; max-width: 220px; background: transparent; margin-left: auto; margin-right: auto; margin-bottom: 3em; border-radius: 10px; border: 1px solid rgba(0,0,0,.1); } .categories-page-content .category-part .category-cart img { height: 220px; vertical-align: top; width: 100%; } .categories-page-content .category-part .category-cart .category-divy { height: 60px; background: #fff; position: absolute; bottom: 0; left: 0; right: 0; color: #fff; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; } .categories-page-content .category-part .category-cart .category-divy span { margin: 18px 11px 0; border-top: 1px solid #E8E8E8; width: 90%; position: absolute; } .categories-page-content .category-part .category-cart .category-divy .category-desc { margin-top: 19px; margin-bottom: 0; color: #fff; display: block; } .categories-page-content .category-part .category-cart .category-divy .category-desc .category-head { transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; text-align:center; font-size: 1em; padding: 8px 10px 10px 10px; text-transform: capitalize; display: block; color: #000; } .categories-page-content .category-part .category-cart:hover .category-divy .category-desc .category-head { color: #fff; } /* END CART-PAGE-BACKGROUND SECTION */ /*** START CATEGORIES PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .categories-page-content .categories-page-content-head { margin-bottom: 3em; } .categories-page-content .categories-page-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .categories-page-content .categories-page-content-head { margin-bottom: 3em; } .categories-page-content .categories-page-content-head h2 { font-size: 2em; } } /*** END CATEGORIES PAGE SCREENS SIZSES ***/ /******----END CATEGORIES PAGE----******/ /*======================================================================*/ /******----START CHECKOUT-COMPLETE PAGE----******/ /* START CHECKOUT-COMPLETE-PAGE-BACKGROUND SECTION */ .checkout-complete-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END CHECKOUT-COMPLETE-PAGE-BACKGROUND SECTION */ /* START CHECKOUT-COMPLETE-CONTENT SECTION */ .checkout-complete-content .checkout-complete-content-head { margin-bottom: 5em; text-align: center; } .checkout-complete-content .checkout-complete-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .checkout-complete-content .order-received { margin-bottom: 50px; padding-bottom: 10px; text-align: center; padding-top: 0px; } .checkout-complete-content .order-received i { font-size: 30px; } .checkout-complete-content .order-received p { font-size: 30px; text-align: center; text-transform: capitalize; display: inline-block; margin: 8px 0 0 0; } .checkout-complete-content .contnet-rp-mb { padding-right: 45px; margin-bottom: 60px; } .checkout-complete-content .order-details .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .checkout-complete-content .order-details .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .checkout-complete-content .order-details .checkout-order-details { margin-bottom: 30px; } .checkout-complete-content .order-details .checkout-order-details .order-details-parts h4 { color: #000; padding-bottom: 10px; margin-top: 0; margin-bottom: 3px; } .checkout-complete-content .order-details .checkout-order-details .order-details-parts p { color: rgba(0, 0, 0, .5); margin: 0 0 22px; } .checkout-complete-content .order-details .checkout-order-details .order-payment-notes { color: rgba(0, 0, 0, .5); margin: 0px 0 22px 0; } .checkout-complete-content .bank-details-content .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .checkout-complete-content .bank-details-content .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .checkout-complete-content .bank-details-content .bank-details .bank-details-parts h4 { color: #000; padding-bottom: 10px; margin-top: 0; margin-bottom: 3px; } .checkout-complete-content .bank-details-content .bank-details .bank-details-parts p { color: rgba(0, 0, 0, .5); margin: 0 0 22px; } /* This is used as the traditional .clearfix class */ .checkout-complete-content .shopping-cart-page:before, .checkout-complete-content .shopping-cart-page .column-labels:before, .checkout-complete-content .shopping-cart-page .product:before, .checkout-complete-content .shopping-cart-page .totals .totals-item:before, .checkout-complete-content .shopping-cart-page:after, .checkout-complete-content .shopping-cart-page .column-labels:after, .checkout-complete-content .shopping-cart-page .product:after, .checkout-complete-content .shopping-cart-page .totals .totals-item:after { content: ''; display: table; } .checkout-complete-content .shopping-cart-page:after, .checkout-complete-content .shopping-cart-page .column-labels:after, .checkout-complete-content .shopping-cart-page .product:after, .checkout-complete-content .shopping-cart-page .totals .totals-item:after { clear: both; } .checkout-complete-content .shopping-cart-page, .checkout-complete-content .shopping-cart-page .column-labels, .checkout-complete-content .shopping-cart-page .product, .checkout-complete-content .shopping-cart-page .totals .totals-item { zoom: 1; } .checkout-complete-content .shopping-cart-page { margin-bottom: 60px; zoom: 1; } .checkout-complete-content .shopping-cart-page .column-labels { padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid #eee; border-top: 1px solid #eee; padding-top: 11px; } /* Column headers */ .checkout-complete-content .shopping-cart-page .column-labels label { padding-bottom: 0px; margin-bottom: 0px; border-bottom: 0px; color: #000; } .checkout-complete-content .shopping-cart-page .column-labels .product-image { float: left; width: 20%; } .checkout-complete-content .shopping-cart-page .column-labels .product-details { width: 56%; float: left; } .checkout-complete-content .shopping-cart-page .column-labels .product-price { float: left; width: 12%; color: #000; } .checkout-complete-content .shopping-cart-page .column-labels .product-line-price { float: left; width: 12%; text-align: right; color: #000; } /* Product entries */ .checkout-complete-content .shopping-cart-page .product { margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .checkout-complete-content .shopping-cart-page .product .product-image { text-align: left; float: left; width: 20%; } .checkout-complete-content .shopping-cart-page .product .product-image img { width: 100px; } .checkout-complete-content .shopping-cart-page .product .product-details { width: 56%; float: left; } .checkout-complete-content .shopping-cart-page .product .product-details .product-title { margin-right: 20px; color: #000; } .checkout-complete-content .shopping-cart-page .product .product-details .product-description { margin: 5px 20px 5px 0; color: rgba(0, 0, 0, .5); font-size: 13px; } .checkout-complete-content .shopping-cart-page .product .product-price { float: left; width: 12%; color: #000; } .checkout-complete-content .shopping-cart-page .product .product-line-price { float: left; width: 12%; text-align: right; } /* Totals section */ .checkout-complete-content .shopping-cart-page .totals .totals-item { float: right; clear: both; width: 100%; margin-bottom: 10px; } .checkout-complete-content .shopping-cart-page .totals .totals-item label { float: left; clear: both; width: 81%; text-align: right; color: #000; } .checkout-complete-content .shopping-cart-page .totals .totals-item .totals-value { float: right; text-align: right; width: 17%; } /* Apply dollar signs */ .checkout-complete-content .shopping-cart-page .product .product-price:before, .checkout-complete-content .shopping-cart-page .product .product-line-price:before, .checkout-complete-content .shopping-cart-page .totals-value:before { content: '$'; } .checkout-complete-content .customer-details-content .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .checkout-complete-content .customer-details-content .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .checkout-complete-content .customer-details-content .customer-details p { color: rgba(0,0,0,0.5); margin: 0; } .checkout-complete-content .billing-address-content .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .checkout-complete-content .billing-address-content .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .checkout-complete-content .billing-address p { color: rgba(0,0,0,0.5); margin: 0; } /* END CHECKOUT-COMPLETE-CONTENT SECTION */ /*** START CHECKOUT-COMPLETE PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .checkout-complete-content .checkout-complete-content-head { margin-bottom: 3em; } .checkout-complete-content .checkout-complete-content-head h2 { font-size: 2em; } .checkout-complete-content .order-received i { font-size: 20px; margin-top: 10px; } .checkout-complete-content .order-received p { font-size: 20px; margin-top: 0px; margin-bottom: 0px; } .checkout-complete-content .contnet-rp-mb { padding-right: 0px; margin-bottom: 60px; } .checkout-complete-content .shopping-cart-page { padding-top: 20px; border-top: 1px solid #eee; } .checkout-complete-content .shopping-cart-page .column-labels { display: none; } .checkout-complete-content .shopping-cart-page .product .product-image { float: right; width: 100%; text-align: center; } .checkout-complete-content .shopping-cart-page .product .product-image img { margin: 0 0 10px 0px; } .checkout-complete-content .shopping-cart-page .product .product-details { float: left; margin-bottom: 10px; width: auto; text-align: center; } .checkout-complete-content .shopping-cart-page .product .product-details .product-title { margin-right: 0; } .checkout-complete-content .shopping-cart-page .product .product-details .product-description { margin-right: 0; } .checkout-complete-content .shopping-cart-page .product .product-price { width: 100%; text-align: center; clear: both; color: #000; } .checkout-complete-content .shopping-cart-page .product .product-line-price { float: left; width: 100%; margin-top: 20px; text-align: center; } .checkout-complete-content .shopping-cart-page .product .product-line-price:before { content: 'Item Total: $'; } .checkout-complete-content .shopping-cart-page .totals .totals-item label { width: 81%; text-align: left; } .checkout-complete-content .shopping-cart-page .totals .totals-item .totals-value { width: 17%; } } @media (min-width: 480px) and (max-width: 736px) { .checkout-complete-content .checkout-complete-content-head { margin-bottom: 3em; } .checkout-complete-content .checkout-complete-content-head h2 { font-size: 2em; } .checkout-complete-content .contnet-rp-mb { padding-right: 0px; margin-bottom: 60px; } } @media (min-width: 736px) and (max-width: 980px) { .checkout-complete-content .customer-details-content { margin-bottom: 0; } .checkout-complete-content .contnet-rp-mb { padding-right: 0px; } } @media (min-width: 980px) and (max-width: 1280px) { .checkout-complete-content .customer-details-content { margin-bottom: 0; } .checkout-complete-content .contnet-rp-mb { padding-right: 45px; } } @media (min-width: 1280px) and (max-width: 1680px) { .checkout-complete-content .customer-details-content { margin-bottom: 0; } .checkout-complete-content .contnet-rp-mb { padding-right: 45px; } } @media (min-width: 1680px) and (max-width: 1920px) { .checkout-complete-content .customer-details-content { margin-bottom: 0; } .checkout-complete-content .contnet-rp-mb { padding-right: 45px; } } /*** END CHECKOUT-COMPLETE PAGE SCREENS SIZSES ***/ /******----END CHECKOUT-COMPLETE PAGE----******/ /*======================================================================*/ /******----START CHECKOUT PAGE----******/ .checkout-page-baground { background-image: url('../../images/image-1920×1080.jpg'); } .checkout-page-content .checkout-page-content-head { margin-bottom: 5em; text-align: center; } .checkout-page-content .checkout-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .checkout-page-content .contnet-rp-mb { padding-right: 45px; margin-bottom: 60px; } .checkout-page-content .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .checkout-page-content .post-capitalize { text-transform: capitalize; } .checkout-page-content .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .checkout-page-content .user-details.first-form .have-account { color: #5c6873; margin-bottom: 10px; margin-top: 0; } .checkout-page-content .user-details.first-form .have-account a { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .checkout-page-content .user-details.first-form .have-account a:hover { color: #5c6873; } .checkout-page-content .user-details.first-form .form-group h5 { color: #2E3841; } .checkout-page-content .user-details.first-form .form-control { border-radius: 0; } .checkout-page-content .user-details.first-form .form-control:focus { outline: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .checkout-page-content .shiptwo-address .another-content h3 { display: inline-block; } .checkout-page-content .shiptwo-address .another-content span { display: block; } .checkout-page-content .shiptwo-address .another-content label { width: 16px; height: 16px; cursor: pointer; position: relative; left: 4px; top: 6px; display: inline-block; } .checkout-page-content .shiptwo-address .another-content label .true { content: ''; width: 9px; height: 6px; position: absolute; top: 3px; left: 2px; background: transparent; opacity: 0; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); margin: 0; } .checkout-page-content .shiptwo-address .another-content label:hover .true { opacity: 0.3; } .checkout-page-content .shiptwo-address .another-content input[type=checkbox] { display: none; } .checkout-page-content .shiptwo-address .another-content input[type=checkbox]:checked { opacity: 1; } .checkout-page-content .shiptwo-address .another-form .form-group h5 { color: #2E3841; } .checkout-page-content .shiptwo-address .another-form .form-control { border-radius: 0; } .checkout-page-content .shiptwo-address .another-form .form-control:focus { outline: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .checkout-page-content .shiptwo-address .order-notes .form-group h5 { color: #2E3841; } .checkout-page-content .shiptwo-address .user-details textarea.form-control { height: 180px; border-radius: 0; } .checkout-page-content .shiptwo-address .user-details textarea.form-control:focus { outline: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .checkout-page-content .your-order .column-labels label { float: left; padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid #eee; color: #000; } .shopping-cart-page:before, .column-labels:before, .product:before, .totals-item:before { content: ''; display: table; } .shopping-cart-page:after, .column-labels:after, .product:after, .totals-item:after { content: ''; display: table; clear: both; } .checkout-page-content .your-order .product .product-line-price:before, .checkout-page-content .your-order .totals-value:before { content: '$'; } .checkout-page-content .your-order .column-labels .product-details{ width: 70%; } .checkout-page-content .your-order .column-labels .product-line-price{ width: 30%; text-align: right; } .checkout-page-content .your-order .product { width: 100%; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .checkout-page-content .your-order .product .product-details { width: 70%; float: left; } .checkout-page-content .your-order .product .product-details .product-title { margin-right: 20px; color: #000; } .checkout-page-content .your-order .product .product-line-price { float: right; width: 30%; text-align: right; } .checkout-page-content .your-order .product .form-control { height: 40px; border-radius: 0px; border-right: 0; width: 70%; display: inline; } .checkout-page-content .your-order .product .form-control:focus { outline: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .checkout-page-content .your-order .product .checkout { margin-top: 0; float: right; width: 30%; padding: 7px 7px 6px; font-size: 15px; letter-spacing: 0.075em; border-radius: 0; background: transparent; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; outline: none; } .checkout-page-content .your-order .product .checkout:hover { color: #fff; } .checkout-page-content .your-order .totals .totals-item { width: 100%; float: left; clear: both; margin-bottom: 10px; } .checkout-page-content .your-order .totals .totals-item label { width: 70%; text-align: left; float: left; clear: both; color: #000; } .checkout-page-content .your-order .totals .totals-item .totals-value { width: 30%; float: right; text-align: right; } .checkout-page-content .payment-method-content .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .checkout-page-content .payment-method-content .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .checkout-page-content .payment-method-content .payment-methods .payment-method label { width: 20px; height: 20px; cursor: pointer; position: relative; left: 0px; top: 9px; background: transparent; border-radius: 50px; } .checkout-page-content .payment-method-content .payment-methods .payment-method label:after { content: ''; width: 10px; height: 10px; position: absolute; top: 4px; left: 4px; opacity: 0; border-radius: 50px; } .checkout-page-content .payment-method-content .payment-methods .payment-method label:hover::after { opacity: 0.3; } .checkout-page-content .payment-method-content .payment-methods .payment-method input[type=radio] { display: none; } .checkout-page-content .payment-method-content .payment-methods .payment-method input[type=radio]:checked + label:after { opacity: 1; } .checkout-page-content .payment-method-content .payment-methods .payment-method h4 { display: inline-block; color: #2E3841; padding-left: 5px; } .checkout-page-content .payment-method-content .payment-methods .payment-method p { color: rgba(0, 0, 0, .5); font-size: 13px; margin-bottom: 21px; } .checkout-page-content .payment-method-content .payment-methods .payment-method .payment-way img { width: 269px; } .checkout-page-content .payment-method-content .payment-methods .payment-method .paypal-info a { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .checkout-page-content .payment-method-content .payment-methods .payment-method .paypal-info a:hover { color: #2E3841; } .checkout-page-content .payment-method-content .payment-methods .order-confirmation a { padding: 8px 24px; letter-spacing: 0.075em; margin: 25px 13px 0 0; border-radius: 0; background: transparent; outline: none; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .checkout-page-content .your-order .product .checkout:hover, .checkout-page-content .payment-method-content .payment-methods .order-confirmation a:hover, .cart-empty-content .cart-empty a:focus, .checkout-page-content .payment-method-content .payment-methods .order-confirmation a:focus, .checkout-page-content .payment-method-content .payment-methods .order-confirmation a:hover, .checkout-page-content .payment-method-content .payment-methods .order-confirmation a:focus { color: #fff; } /*** START CHECKOUT PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .checkout-page-content .checkout-page-content-head { margin-bottom: 3em; } .checkout-page-content .checkout-page-content-head h2 { font-size: 2em; } .checkout-page-content .shopping-cart-page { margin: 0; padding-top: 20px; border-top: 1px solid #eee; } .checkout-page-content .your-order .product-details { width: 50%; text-align: left; margin-bottom: 0px; float: left; } .checkout-page-content .your-order .product-line-price { float: right; width: 50%; text-align: right; margin-top: 0; } .checkout-page-content .your-order .product .form-control { width: 60%; } .checkout-page-content .your-order .product .checkout { width: 40%; padding: 7px 0px 6px; } .checkout-page-content .contnet-rp-mb { padding-right: 0px; } } @media (min-width: 480px) and (max-width: 736px) { .checkout-page-content .checkout-page-content-head { margin-bottom: 3em; } .checkout-page-content .checkout-page-content-head h2 { font-size: 2em; } .checkout-page-content .contnet-rp-mb { padding-right: 0px; } } @media (min-width: 736px) and (max-width: 980px) { .checkout-page-content .contnet-rp-mb { padding-right: 0px; } } @media (min-width: 980px) and (max-width: 1280px) { .checkout-page-content .contnet-rp-mb { padding-right: 45px; } } @media (min-width: 1280px) and (max-width: 1680px) { .checkout-page-content .contnet-rp-mb { padding-right: 45px; } } @media (min-width: 1680px) and (max-width: 1920px) { .checkout-page-content .contnet-rp-mb { padding-right: 45px; } } /*** END CHECKOUT PAGE SCREENS SIZSES ***/ /******----END CHECKOUT PAGE----******/ /*======================================================================*/ /******----START CONATCT PAGE----******/ /* START CONTACT-PAGE-BACKGROUND SECTION */ .contact-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END CONTACT-PAGE-BACKGROUND SECTION */ /* START CONTACT-PAGE-CONTENT SECTION */ .contact-page-content { color: black; text-align: center; } .contact-page-content .company-informations .company-informations-head { margin-bottom: 5em; text-align: center; } .contact-page-content .company-informations .company-informations-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .contact-page-content .company-informations p { color: rgba(0, 0, 0, .3); margin: 0; } /* END CONTACT-PAGE-CONTENT SECTION */ /* START GOOGLEMAP SECTION */ #googleMap { height: 400px; width: 100%; border-color: #fff; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #000; box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #000; } /* END GOOGLEMAP SECTION */ /* START CONTACT-INFO SECTION */ .contact-info .contact-info-head { margin-bottom: 5em; text-align: center; } .contact-info .contact-info-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .contact-info .info-desc p { color: rgba(0, 0, 0, .3); text-align: center; } .contact-info .info-desc .info { display: inline-block; list-style: none; padding: 0; left: 9px; position: relative; margin: 20px 0 0 0; width: 100%; } .contact-info .info-desc .info .contact-details { font-size: 1.2em; margin: 0px 0px 14px; color: #000; text-align: center; padding-left: 0; padding-right: 0; } .contact-info .info-desc .info .contact-details i { margin-right: 8px; } .contact-info .info-desc .info .contact-details a { font-size: 1em; color: #000; } /* END CONTACT-INFO SECTION */ /* START YOUR-MESSAGE SECTION */ .contact-page-your-message { background-color: #222831; } .contact-page-your-message .contact-page-your-message-parts .contact-page-your-message-parts-head { margin-bottom: 5em; text-align: center; } .contact-page-your-message .contact-page-your-message-parts .contact-page-your-message-parts-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .contact-page-your-message .contact-page-your-message-parts form { padding: 5px 0px 0px; } .contact-page-your-message .contact-page-your-message-parts form .form-group .input-lg { height: 46px; padding: 10px 16px; font-size: 16px; line-height: 1.3333333; border-radius: 3px; background: transparent; color: #fff; } .contact-page-your-message .contact-page-your-message-parts form .form-group .form-control:focus { border-color: #fff; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #fff; box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #fff; outline: none; } .contact-page-your-message .contact-page-your-message-parts form .form-group textarea.input-lg{ height: 110px; } .contact-page-your-message .contact-page-your-message-parts form .e-btn { border: 1px solid #ccc; background: transparent; outline: none; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; color: #fff; } .contact-page-your-message .contact-page-your-message-parts form .e-btn:hover, .contact-page-your-message .contact-page-your-message-parts form .e-btn:focus { outline: none; color: #000; background: #fff; } /* END YOUR-MESSAGE SECTION */ /*** START CONATCT PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .contact-page-content .company-informations .company-informations-head { margin-bottom: 3em; } .contact-page-content .company-informations .company-informations-head h2 { font-size: 2em; } .contact-info .contact-info-head { margin-bottom: 3em; } .contact-info .contact-info-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .contact-page-content .company-informations .company-informations-head { margin-bottom: 3em; } .contact-page-content .company-informations .company-informations-head h2 { font-size: 2em; } .contact-info .contact-info-head { margin-bottom: 3em; } .contact-info .contact-info-head h2 { font-size: 2em; } } /*** END CONATCT PAGE SCREENS SIZSES ***/ /****** END CONATCT PAGE ******/ /*======================================================================*/ /******----START SIGNIN-PAGE PAGE----******/ /* START LOGIN-PAGE-BACKGROUND SECTION */ .login-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END LOGIN-PAGE-BACKGROUND SECTION */ /* START LOGIN-PAGE-CONTENT SECTION */ .login-page-content .login-page-content-head { margin-bottom: 5em; text-align: center; } .login-page-content .login-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .login-page-content .customer-signin .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .login-page-content .customer-signin .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .login-page-content .customer-signin .user-details { height: 190px; } .login-page-content .customer-signin .subheading .post-capitalize { text-transform: capitalize; } .login-page-content .customer-signin .have-account { color: #5c6873; margin-bottom: 10px; margin-top: 0; } .login-page-content .customer-signin .user-details { height: 190px; } .login-page-content .customer-signin .user-details .form-group h5 { color: #2E3841; } .login-page-content .customer-signin .user-details .form-group .form-control { border-radius: 0; } .login-page-content .customer-signin .user-details .form-group .form-control:focus { outline: 0; -webkit-box-shadow: none; box-shadow: none; } .login-page-content .customer-signin .user-details .remember-me { display: inline-block; } .login-page-content .customer-signin .user-details .remember-me input[type=checkbox] { display: none; } .login-page-content .customer-signin .user-details .remember-me input[type=checkbox]:checked + label .true { opacity: 1; } .login-page-content .customer-signin .user-details .remember-me label { width: 16px; height: 16px; cursor: pointer; position: relative; left: 0; top: 10px; display: inline-block; } .login-page-content .customer-signin .user-details .remember-me label .true { content: ''; width: 9px; height: 6px; position: absolute; top: 3px; left: 2px; background: transparent; opacity: 0; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); margin: 0; } .login-page-content .customer-signin .user-details .remember-me label:hover .true { opacity: 0.3; } .login-page-content .customer-signin .user-details .remember-me label .remember-text { color: #3f444a; position: relative; display: inline-block; left: 24px; bottom: 4px; width: 108px; } .login-page-content .customer-signin .user-details .signin-button { float: right; } .login-page-content .customer-signin .user-details .signin-button a { margin: 0; text-transform: capitalize; padding: 8px 18px; letter-spacing: 0; color: #fff; border-radius: 0; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .login-page-content .customer-signin .user-details .signin-button a:hover, .login-page-content .customer-signin .user-details .signin-button a:focus { color: #fff; } .login-page-content .customer-signin .socialmedia-signin { border-left: 1px dotted rgba(0,0,0,0.3); margin: 36px 0 60px 15px; } .login-page-content .customer-signin .socialmedia-signin a { margin: 0; display: block; margin: 0px 55px 25px 45px; padding: 8px 20px 8px 50px; position: relative; border-radius: 0; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; letter-spacing: 0.075em; } .login-page-content .customer-signin .socialmedia-signin .s-twitter-btn, .login-page-content .customer-signin .socialmedia-signin .s-twitter-btn:hover, .login-page-content .customer-signin .socialmedia-signin .s-twitter-btn:focus { background-color: #55acee; color: #fff; border: 1px solid #55acee; } .login-page-content .customer-signin .socialmedia-signin .s-facebook-btn, .login-page-content .customer-signin .socialmedia-signin .s-facebook-btn:hover, .login-page-content .customer-signin .socialmedia-signin .s-facebook-btn:focus { background-color: #3b5998; color: #fff; border: 1px solid #3b5998; } .login-page-content .customer-signin .socialmedia-signin .s-google-btn, .login-page-content .customer-signin .socialmedia-signin .s-google-btn:hover, .login-page-content .customer-signin .socialmedia-signin .s-google-btn:focus { background-color: #dd4b39; color: #fff; border: 1px solid #dd4b39; } .login-page-content .customer-signin .socialmedia-signin a i { position: absolute; left: 0; border-right: 1px solid rgba(0,0,0,.2); margin: -9px 0px 0px 0px; font-size: 1.4em; line-height: 1.8em; width: 50px; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all } .login-page-content .customer-register .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; display: inline-block; } .login-page-content .customer-register .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: block; } .login-page-content .customer-register .subheading.another-content input[type=checkbox] { display: none; } .login-page-content .customer-register .subheading.another-content input[type=checkbox]:checked { opacity: 1; } .login-page-content .customer-register .subheading.another-content label { width: 16px; height: 16px; cursor: pointer; position: relative; left: 4px; top: 6px; display: inline-block; } .login-page-content .customer-register .subheading.another-content label:hover .true { opacity: 0.3; } .login-page-content .customer-register .subheading.another-content label .true { content: ''; width: 9px; height: 6px; position: absolute; top: 3px; left: 2px; background: transparent; opacity: 0; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); margin: 0; display: block; } .login-page-content .customer-register .have-account { color: #5c6873; margin-bottom: 10px; margin-top: 0; } .login-page-content .customer-register .user-details form .form-group h5 { color: #2E3841; } .login-page-content .customer-register .user-details form .form-group .form-control { border-radius: 0; } .login-page-content .user-details form .form-group .form-control:focus { outline: 0; -webkit-box-shadow: none; box-shadow: none; } .login-page-content .customer-register .submit-btn { float: right; margin-top: 20px; font-size: 18px; border-radius: 0; background: transparent; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; outline: none; padding: 5px 20px; text-transform: capitalize; margin-right: 15px; } .login-page-content .customer-register .submit-btn:hover { color: #fff; } /* END LOGIN-PAGE-CONTENT SECTION */ /*** START SIGNIN PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .login-page-content .login-page-content-head { margin-bottom: 3em; } .login-page-content .login-page-content-head h2 { font-size: 2em; } .login-page-content .customer-signin .socialmedia-signin { border-left: none; margin: 36px 0 60px 0px; } .login-page-content .customer-signin .socialmedia-signin a { margin: 0px 0px 25px 0px; } .customer-register .another-content { position: relative; } } @media (min-width: 480px) and (max-width: 736px) { .login-page-content .login-page-content-head { margin-bottom: 3em; } .login-page-content .login-page-content-head h2 { font-size: 2em; } .login-page-content .customer-signin .socialmedia-signin { border-left: none; margin: 36px 0 60px 0px; } } @media (min-width: 736px) and (max-width: 980px) { .login-page-content .customer-signin .socialmedia-signin a { margin: 0px 0px 25px 45px; } } /*** END SIGNIN PAGE SCREENS SIZSES ***/ /******----END SIGNIN PAGE PAGE----******/ /*======================================================================*/ /******----START CUSTOMER-ADDRESSES PAGE----******/ /* START MY-ADDRESSES-PAGE-BACKGROUND SECTION */ .my-addresses-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END MY-ADDRESSES-PAGE-BACKGROUND SECTION */ /* START CUSTOMER-ADDRESSES-PAGE-CONTENT SECTION */ .customer-addresses-page-content .customer-addresses-page-content-head { margin-bottom: 5em; text-align: center; } .customer-addresses-page-content .customer-addresses-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .customer-addresses-page-content .my-profile { margin-bottom: 40px; } .customer-addresses-page-content .my-profile .panel-default .panel-heading { color: #fff; padding: 20px 15px; } .customer-addresses-page-content .my-profile .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .customer-addresses-page-content .my-profile .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .customer-addresses-page-content .my-profile .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .customer-addresses-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item { display: inline-block; padding: 10px 15px; border: 0; margin: 0 31px 0 32px; } .customer-addresses-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item a { color: #555; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; } .customer-addresses-page-content .customer-addresses .customer-billing-addresses .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .customer-addresses-page-content .customer-addresses .customer-billing-addresses .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .customer-addresses-page-content .customer-addresses .customer-billing-addresses .customer-details p { color: rgba(0,0,0,0.5); margin: 0; } .customer-addresses-page-content .customer-addresses .customer-billing-addresses .edit-options { font-weight: 400; color: #5c6873; } .customer-addresses-page-content .customer-addresses .customer-billing-addresses .profile-options .edit-button { font-size: 15px; font-weight: 400; } .customer-addresses-page-content .customer-addresses .customer-shipping-addresses .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .customer-addresses-page-content .customer-addresses .customer-shipping-addresses .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .customer-addresses-page-content .customer-addresses .customer-shipping-addresses .customer-details p { color: rgba(0,0,0,0.5); margin: 0; } .customer-addresses-page-content .customer-addresses .customer-shipping-addresses .edit-options { font-weight: 400; color: #5c6873; } .customer-addresses-page-content .customer-addresses .customer-shipping-addresses .profile-options .edit-button { font-size: 15px; font-weight: 400; } /* END CUSTOMER-ADDRESSES-PAGE-CONTENT SECTION */ /*** START CUSTOMER-ADDRESSES PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .customer-addresses-page-content .customer-addresses-page-content-head { margin-bottom: 3em; } .customer-addresses-page-content .customer-addresses-page-content-head h2 { font-size: 2em; } .customer-addresses-page-content .customer-addresses .customer-shipping-addresses .subheading h3 { margin-top: 40px; } } @media (min-width: 480px) and (max-width: 736px) { .customer-addresses-page-content .customer-addresses-page-content-head { margin-bottom: 3em; } .customer-addresses-page-content .customer-addresses-page-content-head h2 { font-size: 2em; } .customer-addresses-page-content .customer-addresses .customer-shipping-addresses .subheading h3 { margin-top: 40px; } } /*** END CUSTOMER-ADDRESSES PAGE SCREENS SIZSES ***/ /******----END CUSTOMER-ADDRESSES PAGE----******/ /*======================================================================*/ /******----START CUSTOMER-DASHBOARD PAGE----******/ /* START CUSTOMER-DASHBOARD-PAGE-BACKGROUND SECTION */ .customer-dashboard-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END CUSTOMER-DASHBOARD-PAGE-BACKGROUND SECTION */ /* START CUSTOMER-DASHBOARD-PAGE-CONTENT SECTION */ .customer-dashboard-page-content .customer-dashboard-page-content-head { margin-bottom: 5em; text-align: center; } .customer-dashboard-page-content .customer-dashboard-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .customer-dashboard-page-content .my-profile { margin-bottom: 40px; } .customer-dashboard-page-content .my-profile .panel-default .panel-heading { color: #fff; background-color: #3498db; padding: 20px 15px; } .customer-dashboard-page-content .my-profile .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .customer-dashboard-page-content .my-profile .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .customer-dashboard-page-content .my-profile .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .customer-dashboard-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item { display: inline-block; padding: 10px 15px; border: 0; margin: 0 31px 0 32px; } .customer-dashboard-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item a { color: #555; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; } .customer-dashboard-page-content .customer-dashboard .customer-pic { padding-right: 0; text-align: center; display: block; } .customer-dashboard-page-content .customer-dashboard .customer-pic a img { height: 200px; width: 200px; border-radius: 50%; } .customer-dashboard-page-content .customer-dashboard .profile-body { vertical-align: top; display: inline-block; } .customer-dashboard-page-content .customer-dashboard .profile-body .customer-name { margin-top: 10px; margin-bottom: 10px; } .customer-dashboard-page-content .customer-dashboard .customer-name a { font-size: 18px; color: #2E3841; font-weight: 600; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .customer-dashboard-page-content .customer-dashboard .customer-details p { color: rgba(0,0,0,0.5); margin: 0; font-size: 14px; } .customer-dashboard-page-content .customer-dashboard .profile-options { font-weight: 400; color: #5c6873; } .customer-dashboard-page-content .customer-dashboard .profile-options a:hover, .customer-dashboard-page-content .customer-dashboard .profile-options a:focus { font-size: 15px; font-weight: 400; } /* END CUSTOMER-DASHBOARD-PAGE-CONTENT SECTION */ /*** START CUSTOMER-DASHBOARD PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .customer-dashboard-page-content .customer-dashboard-page-content-head { margin-bottom: 3em; } .customer-dashboard-page-content .customer-dashboard-page-content-head h2 { font-size: 2em; } .customer-dashboard-page-content .customer-dashboard .profile-body { display: block; margin-top: 25px; text-align: center } } @media (min-width: 480px) and (max-width: 736px) { .customer-dashboard-page-content .customer-dashboard-page-content-head { margin-bottom: 3em; } .customer-dashboard-page-content .customer-dashboard-page-content-head h2 { font-size: 2em; } .customer-dashboard-page-content .customer-dashboard .profile-body { display: block; margin-top: 25px; text-align: center } } /*** END CUSTOMER-DASHBOARD PAGE SCREENS SIZSES ***/ /******----END CUSTOMER-DASHBOARD PAGE----******/ /*======================================================================*/ /******----START CUSTOMER-EDIT-FILE PAGE----******/ /* START CUSTOMER-EDIT-PROFILE-PAGE-BACKGROUND SECTION */ .customer-edit-profile-baground { background-image: url('../../images/image-1920×1080.jpg'); } /* END CUSTOMER-EDIT-PROFILE-PAGE-BACKGROUND SECTION */ /* START CUSTOMER-EDIT-PROFILE-PAGE-CONTENT SECTION */ .customer-edit-profile-page-content .customer-edit-profile-page-content-head { margin-bottom: 5em; text-align: center; } .customer-edit-profile-page-content .customer-edit-profile-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .customer-edit-profile-page-content .my-profile { margin-bottom: 40px; } .customer-edit-profile-page-content .my-profile .panel-default .panel-heading { color: #fff; background-color: #3498db; padding: 20px 15px; } .customer-edit-profile-page-content .my-profile .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .customer-edit-profile-page-content .my-profile .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .customer-edit-profile-page-content .my-profile .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .customer-edit-profile-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item { display: inline-block; padding: 10px 15px; border: 0; margin: 0 31px 0 32px; } .customer-edit-profile-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item a { color: #555; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; } .customer-edit-profile-page-content .user-details form .have-account { color: #5c6873; margin-bottom: 10px; margin-top: 0; } .customer-edit-profile-page-content .user-details form .form-group h5 { color: #2E3841; } .customer-edit-profile-page-content .user-details form .form-group .form-control { border-radius: 0; } .customer-edit-profile-page-content .user-details .form-control:focus { outline: 0; -webkit-box-shadow: none; box-shadow: none; } .customer-edit-profile-page-content .user-details .edit-profile-buttons { float: right; margin-top: 30px; } .customer-edit-profile-page-content .user-details .edit-profile-buttons .submit-btn, .customer-edit-profile-page-content .user-details .edit-profile-buttons .cancel-btn { font-size: 18px; border-radius: 0; background: transparent; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; outline: none; padding: 5px 20px; text-transform: capitalize; float: left; } .customer-edit-profile-page-content .user-details .edit-profile-buttons .submit-btn { margin-right: 10px; } .customer-edit-profile-page-content .user-details .edit-profile-buttons .submit-btn:hover, .customer-edit-profile-page-content .user-details .edit-profile-buttons .cancel-btn:hover, .customer-edit-profile-page-content .user-details .edit-profile-buttons .submit-btn:focus, .customer-edit-profile-page-content .user-details .edit-profile-buttons .cancel-btn:focus { color: #fff; } /* END CUSTOMER-EDIT-PROFILE-PAGE-CONTENT SECTION */ /*** START CUSTOMER-EDIT-FILE PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .customer-edit-profile-page-content .customer-edit-profile-page-content-head { margin-bottom: 3em; } .customer-edit-profile-page-content .customer-edit-profile-page-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .customer-edit-profile-page-content .customer-edit-profile-page-content-head { margin-bottom: 3em; } .customer-edit-profile-page-content .customer-edit-profile-page-content-head h2 { font-size: 2em; } } /*** END CUSTOMER-EDIT-FILE PAGE SCREENS SIZSES ***/ /******----END CUSTOMER-EDIT-FILE PAGE----******/ /*======================================================================*/ /******----START FAQ PAGE----******/ /* START FAQ-PAGE-BACKGROUND SECTION */ .faq-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END FAQ-PAGE-BACKGROUND SECTION */ /* START FAQ-QUESTIONS-CONTENT SECTION */ .faq-questions-content .faq-questions-content-head { margin-bottom: 5em; text-align: center; } .faq-questions-content .faq-questions-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .faq-questions-content .panel-default .panel-heading { padding: 20px 15px } .faq-questions-content .panel-heading .panel-title a { color: #fff; outline: none; } .faq-questions-content .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .faq-questions-content .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .faq-questions-content .panel-default .panel-heading .panel-title a i { margin-right: 5px; } .faq-questions-content .panel-default .panel-body p { color: rgba(0,0,0,.4); font-size: 14px; } .faq-questions-content .panel-default .heading-one { background-color: #3498db; } .faq-questions-content .panel-default .heading-two { background-color: rgba(231, 76, 60,1.0); } .faq-questions-content .panel-default .heading-three { background-color: rgba(26, 188, 156,1.0); } .faq-questions-content .panel-default .heading-four { background-color: rgba(243, 156, 18,1.0); } .faq-questions-content .panel-default .heading-five { background-color: rgba(155, 89, 182,1.0); } .faq-questions-content .panel-default .heading-six { background-color: rgba(52, 73, 94,1.0); } .faq-questions-content .panel-default .heading-seven { background-color: rgba(149, 165, 166,1.0); } .faq-questions-content .panel-default .heading-eight { background-color: rgba(46, 204, 113,1.0); } .faq-questions-content .panel-default .heading-nine { background-color: rgba(241, 196, 15,1.0); } /* END FAQ-QUESTIONS-CONTENT SECTION */ /*** START FAQ PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .faq-questions-content .faq-questions-content-head { margin-bottom: 3em; } .faq-questions-content .faq-questions-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .faq-questions-content .faq-questions-content-head { margin-bottom: 3em; } .faq-questions-content .faq-questions-content-head h2 { font-size: 2em; } } /*** END FAQ PAGE SCREENS SIZSES ***/ /******----END FAQ PAGE----******/ /*======================================================================*/ /******----START FEATURED-AUTHORS PAGE----******/ /* START AUTHORS-BAGROUND BACKGROUND SECTION */ .featured-authors-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END AUTHORS-BAGROUND BACKGROUND SECTION */ /* START AUTHORS-NAMES SECTION */ .featured-authors-names { padding: 30px 0px; text-align: center; } .featured-authors-names h3 { display: inline-block; color: #fff; margin-right: 13px; margin-bottom: 0; margin-top: 0; } .featured-authors-names a { display: inline; margin-right: 14px; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; color: rgba(250,250,250,.5); text-decoration: none; outline: none; padding: 1px 2px; } .featured-authors-names a:last-of-type { margin-right: 0; } .featured-authors-names .active { color: #fff; border-bottom: 1px solid; border-top: 1px solid; } .featured-authors-names a:hover, .featured-authors-names a:focus { color: #fff; border-bottom: 1px solid; border-top: 1px solid; } /* END AUTHORS-NAMES SECTION */ /* START FEATURED-AUTHORS-PAGE-CONTENT SECTION */ .featured-authors-page-content .featured-authors-page-content-head { margin-bottom: 5em; text-align: center; } .featured-authors-page-content .featured-authors-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .featured-authors-page-content .featured-authors .author-info { position: relative; margin-right: auto; margin-left: auto; width: 180px; margin-bottom: 2em; -webkit-transition: all 0.35s ease-in-out; transition: all 0.35s ease-in-out; } .featured-authors-page-content .featured-authors .author-info .auth-img { display: block; } .featured-authors-page-content .featured-authors .author-info .auth-img img { border-radius: 50%; width: 180px; height: 180px; } .featured-authors-page-content .featured-authors .author-info h3 { text-align: center; margin: 0; } .featured-authors-page-content .featured-authors .author-info h3 .auth-name { color: rgba(0,0,0,.7); font-size: 1.3em; font-weight: 400; padding: 20px 0px 10px 0px; display: block; } /* END FEATURED-AUTHORS-PAGE-CONTENT SECTION */ /*** START FEATURED-AUTHORS PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .featured-authors-page-content .featured-authors-page-content-head { margin-bottom: 3em; } .featured-authors-page-content .featured-authors-page-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .featured-authors-page-content .featured-authors-page-content-head { margin-bottom: 3em; } .featured-authors-page-content .featured-authors-page-content-head h2 { font-size: 2em; } } /*** END FEATURED-AUTHORS PAGE SCREENS SIZSES ***/ /******----END FEATURED-AUTHORS-PAGE-CONTENT PAGE----******/ /*======================================================================*/ /******----START ORDERING PAGE----******/ /* START ORDERING-PAGE-BACKGROUND SECTION */ .ordering-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END ORDERING-PAGE-BACKGROUND SECTION */ /* START ORDERING-PAGE-CONTENT SECTION */ .ordering-page-content .ordering-page-content-head { margin-bottom: 5em; text-align: center; } .ordering-page-content .ordering-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .ordering-page-content .panel-default .panel-heading { padding: 20px 15px } .ordering-page-content .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .ordering-page-content .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .ordering-page-content .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .ordering-page-content .panel-default .panel-heading .panel-title a i { margin-right: 5px; } .ordering-page-content .panel-default .panel-body p { color: rgba(0,0,0,.4); font-size: 14px; } .ordering-page-content .panel-default .panel-body .info { margin: 10px 0 0 0; display: inline-block; list-style: none; padding: 0; left: 9px; position: relative; width: 100%; } .ordering-page-content .panel-default .panel-body .info .contact-details { padding-right: 15px; margin: 0; font-size: 1.2em; color: #000; text-align: center; padding-left: 0; } .ordering-page-content .panel-default .panel-body .info .contact-details i { margin-right: 8px; } .ordering-page-content .panel-default .panel-body .info .contact-details a { font-size: 1em; color: #000; } .ordering-page-content .panel-default .heading-one { background-color: #3498db; } .ordering-page-content .panel-default .heading-two { background-color: rgba(231, 76, 60,1.0); } .ordering-page-content .panel-default .heading-three { background-color: rgba(26, 188, 156,1.0); } .ordering-page-content .panel-default .heading-four { background-color: rgba(243, 156, 18,1.0); } .ordering-page-content .panel-default .heading-five { background-color: rgba(155, 89, 182,1.0); } .ordering-page-content .panel-default .heading-six { background-color: rgba(52, 73, 94,1.0); } .ordering-page-content .panel-default .heading-seven { background-color: rgba(149, 165, 166,1.0); } .ordering-page-content .panel-default .heading-eight { background-color: rgba(46, 204, 113,1.0); } /* END ORDERING-PAGE-CONTENT SECTION */ /*** START ORDERING PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .ordering-page-content .ordering-page-content-head { margin-bottom: 3em; } .ordering-page-content .ordering-page-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .ordering-page-content .ordering-page-content-head { margin-bottom: 3em; } .ordering-page-content .ordering-page-content-head h2 { font-size: 2em; } } /*** END ORDERING PAGE SCREENS SIZSES ***/ /******----END ORDERING PAGE----******/ /*======================================================================*/ /******----START ORDERING-HISTORY PAGE----******/ /* START ORDERING-HISTORY-BACkGROUND SECTION */ .ordering-history-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END ORDERING-HISTORY-BACkGROUND SECTION */ /* START ORDER-HISTORY-PAGE-CONTENT SECTION */ .order-history-page-content .order-history-page-content-head { margin-bottom: 5em; text-align: center; } .order-history-page-content .order-history-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .order-history-page-content .my-profile { margin-bottom: 40px; } .order-history-page-content .my-profile .panel-default .panel-heading { color: #fff; background-color: #3498db; padding: 20px 15px; } .order-history-page-content .my-profile .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .order-history-page-content .my-profile .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .order-history-page-content .my-profile .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .order-history-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item { display: inline-block; padding: 10px 15px; border: 0; margin: 0 31px 0 32px; } .order-history-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item a { color: #555; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; } .order-history-page-content .ordering-information .column-labels { zoom: 1; } .order-history-page-content .ordering-information .column-labels:before, .order-history-page-content .ordering-information .column-labels:after { content: ''; display: table; } .order-history-page-content .ordering-information .column-labels:after { clear: both; } .order-history-page-content .ordering-information .column-labels label { color: #3f444a; padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid #eee; } .order-history-page-content .ordering-information .column-labels .product-image { float: left; width: 20%; } .order-history-page-content .ordering-information .column-labels .product-details { width: 30%; float: left; } .order-history-page-content .ordering-information .column-labels .order-number { float: left; width: 10%; } .order-history-page-content .ordering-information .column-labels .order-date { float: left; width: 13%; } .order-history-page-content .ordering-information .column-labels .product-price { float: left; width: 12%; } .order-history-page-content .ordering-information .column-labels .order-payment-method { float: left; width: 15%; } .order-history-page-content .ordering-information .product { margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; zoom: 1; } .order-history-page-content .ordering-information .product:before, .order-history-page-content .ordering-information .product:after { content: ''; display: table; } .order-history-page-content .ordering-information .product:after { clear: both; } .order-history-page-content .ordering-information .product .product-image { float: left; width: 20%; text-align: left; } .order-history-page-content .ordering-information .product .product-image img { width: 100px; } .order-history-page-content .ordering-information .product .product-details { width: 30%; float: left; } .order-history-page-content .ordering-information .product .product-details .product-title { margin-right: 20px; color: #000; } .order-history-page-content .ordering-information .product .product-details .product-description { margin: 5px 20px 5px 0; color: rgba(0, 0, 0, .5); font-size: 13px; } .order-history-page-content .ordering-information .product .order-number { float: left; width: 10%; color: #000; } .order-history-page-content .ordering-information .product .order-date { float: left; width: 13%; color: #000; } .order-history-page-content .ordering-information .product .product-price { float: left; width: 12%; } .order-history-page-content .ordering-information .product .product-price:before { content: '$'; } .order-history-page-content .ordering-information .product .order-payment-method { float: left; width: 15%; color: #000; } /* END ORDER-HISTORY-PAGE-CONTENT SECTION */ /*** START ORDERING-HISTORY SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .order-history-page-content .order-history-page-content-head { margin-bottom: 3em; } .order-history-page-content .order-history-page-content-head h2 { font-size: 2em; } .order-history-page-content .my-profile .panel-default .my-profile-items .list-group-item { display: block; margin: 0; } .order-history-page-content .ordering-information { margin: 0; padding-top: 20px; border-top: 1px solid #eee; } .order-history-page-content .ordering-information .column-labels { display: none; } .order-history-page-content .ordering-information .column-labels .product-details { width: auto; } .order-history-page-content .ordering-information .product .product-image { float: right; width: 100%; text-align: center; } .order-history-page-content .ordering-information .product .product-image img { margin: 0 0 10px 0px; } .order-history-page-content .ordering-information .product .product-details { float: left; margin-bottom: 10px; width: auto; text-align: center; } .order-history-page-content .ordering-information .product .product-details .product-title { margin-right: 0; } .order-history-page-content .ordering-information .product .product-details .product-description { margin-right: 0; } .order-history-page-content .ordering-information .product .order-number { padding: 10px 0; text-align: center; width: 35%; } .order-history-page-content .ordering-information .product .order-date { padding: 10px 0; text-align: center; width: 65%; } .order-history-page-content .ordering-information .product .product-price { width: 35%; padding: 10px 0; text-align: center; clear: both; } .order-history-page-content .ordering-information .product .order-payment-method { width: 65%; padding: 10px 0; text-align: center; } } @media (min-width: 480px) and (max-width: 736px) { .order-history-page-content .order-history-page-content-head { margin-bottom: 3em; } .order-history-page-content .order-history-page-content-head h2 { font-size: 2em; } .order-history-page-content .ordering-information { margin: 0; padding-top: 20px; border-top: 1px solid #eee; } .order-history-page-content .ordering-information .column-labels { display: none; } .order-history-page-content .ordering-information .column-labels .product-details { width: auto; } .order-history-page-content .ordering-information .product .product-image { float: right; width: 100%; text-align: center; } .order-history-page-content .ordering-information .product .product-image img { margin: 0 0 10px 0px; } .order-history-page-content .ordering-information .product .product-details { float: left; margin-bottom: 10px; width: auto; text-align: center; } .order-history-page-content .ordering-information .product .product-details .product-title { margin-right: 0; } .order-history-page-content .ordering-information .product .product-details .product-description { margin-right: 0; } .order-history-page-content .ordering-information .product .order-number { padding: 10px 0; text-align: center; width: 35%; } .order-history-page-content .ordering-information .product .order-date { padding: 10px 0; text-align: center; width: 65%; } .order-history-page-content .ordering-information .product .product-price { width: 35%; padding: 10px 0; text-align: center; clear: both; } .order-history-page-content .ordering-information .product .order-payment-method { width: 65%; padding: 10px 0; text-align: center; } } @media (min-width: 736px) and (max-width: 980px){ .order-history-page-content .ordering-information .column-labels .product-details { width: 25%; } .order-history-page-content .ordering-information .column-labels .order-payment-method { width: 20%; } .order-history-page-content .ordering-information .product .product-details { width: 25%; } .order-history-page-content .ordering-information .product .order-payment-method { width: 20%; } } /*** END ORDERING-HISTORY SCREENS SIZSES ***/ /******----END ORDERING-HISTORY PAGE----******/ /*======================================================================*/ /******----START PRODUCT-WISHLIST PAGE----******/ /* START PRODUCT-WISHLIST-PAGE-BACKGROUND SECTION */ .product-wishlist-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END PRODUCT-WISHLIST-PAGE-BACKGROUND SECTION */ /* START PRODUCT-WISHLIST-PAGE-CONTENT SECTION */ .product-wishlist-page-content .product-wishlist-page-content-head { margin-bottom: 5em; text-align: center; } .product-wishlist-page-content .product-wishlist-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .product-wishlist-page-content .my-profile { margin-bottom: 40px; } .product-wishlist-page-content .my-profile .panel-default .panel-heading { color: #fff; background-color: #3498db; padding: 20px 15px; } .product-wishlist-page-content .my-profile .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .product-wishlist-page-content .my-profile .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .product-wishlist-page-content .my-profile .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .product-wishlist-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item { display: inline-block; padding: 10px 15px; border: 0; margin: 0 31px 0 32px; } .product-wishlist-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item a { color: #555; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; } .product-wishlist-page-content .product-wishlist .shopping-cart-page { zoom: 1; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels { padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid #eee; border-top: 1px solid #eee; padding-top: 11px; zoom: 1; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels label { padding-bottom: 0px; margin-bottom: 0px; border-bottom: 0px; color: #000; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels .product-image { float: left; width: 20%; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels .product-details { width: 40%; float: left; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels .product-stock { float: left; width: 12%; color: #000; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels .product-line-price { text-align: left; float: left; width: 12%; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels .wishlist-buttons { float: left; width: 16%; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product { margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; zoom: 1; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-image { text-align: left; float: left; width: 20%; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-image img { width: 100px; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details { width: 40%; float: left; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details .product-title { margin-right: 20px; color: #000; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details .product-description { margin: 5px 20px 5px 0; color: rgba(0, 0, 0, .5); font-size: 13px; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-stock { float: left; width: 12%; color: #000; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-line-price { text-align: left; float: left; width: 12%; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-line-price:before { content: '$'; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons { float: left; width: 16%; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons .add-cart-btn { padding: 8px 0px; display: block; margin: 0 0 13px 0; border-radius: 0; background: transparent; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; letter-spacing: 0.075em; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons .add-cart-btn:hover, .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons .add-cart-btn:focus { color: #fff; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons .add-cart-btn i { margin-right: 5px; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons .product-wishlist-remove-btn { padding: 8px 0px; display: block; margin-bottom:0; border-radius: 0; background: transparent; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; letter-spacing: 0.075em; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons .product-wishlist-remove-btn:hover, .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons .product-wishlist-remove-btn:focus { color: #fff; } .product-wishlist-page-content .product-wishlist .shopping-cart-page:before, .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels:before, .product-wishlist-page-content .product-wishlist .shopping-cart-page .product:before, .product-wishlist-page-content .product-wishlist .shopping-cart-page:after, .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels:after, .product-wishlist-page-content .product-wishlist .shopping-cart-page .product:after, { content: ''; display: table; } /* END PRODUCT-WISHLIST-PAGE-CONTENT SECTION */ /*** START PRODUCT-WISHLIST SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .product-wishlist-page-content .product-wishlist-page-content-head { margin-bottom: 3em; } .product-wishlist-page-content .product-wishlist-page-content-head h2 { font-size: 2em; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels { display: none; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels .wishlist-buttons { float: left; width: 100%; margin: 25px auto; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-image { float: right; width: 100%; text-align: center; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-image img { margin: 0 0 10px 0px; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details { width: 100%; float: left; margin-bottom: 10px; text-align: center; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details .product-title { margin-right: 0; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details .product-description { margin-right: 0; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-stock { width: 100%; text-align: center; float: left; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-line-price { float: left; width: 100%; margin-top: 20px; text-align: center; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons { float: left; width: 100%; margin: 25px auto; } } @media (min-width: 480px) and (max-width: 736px) { .product-wishlist-page-content .product-wishlist-page-content-head { margin-bottom: 3em; } .product-wishlist-page-content .product-wishlist-page-content-head h2 { font-size: 2em; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels { display: none; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels .wishlist-buttons { float: left; width: 100%; margin: 25px auto; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-image { float: right; width: 100%; text-align: center; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-image img { margin: 0 0 10px 0px; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details { width: 100%; float: left; margin-bottom: 10px; text-align: center; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details .product-title { margin-right: 0; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details .product-description { margin-right: 0; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-stock { width: 100%; text-align: center; float: left; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-line-price { float: left; width: 100%; margin-top: 20px; text-align: center; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons { float: left; width: 100%; margin: 25px auto; } } /*** END PRODUCT-WISHLIST SCREENS SIZSES ***/ /******----END PRODUCT-WISHLIST PAGE----******/ /*======================================================================*/ /******----START STORE'S ALL PAGES PAGE----******/ /* START STORE-PAGES-PAGE-BACKGROUND SECTION */ .store-pages-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END STORE-PAGES-PAGE-BACKGROUND SECTION */ /* START STORE-PAGES-PAGE-CONTENT SECTION */ .store-pages-page-content .store-pages-page-content-head { margin-bottom: 5em; text-align: center; } .store-pages-page-content .store-pages-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .store-pages-page-content .panel-group .panel-default .panel-heading { padding: 20px 15px; } .store-pages-page-content .panel-group .panel-default .heading-four { background-color: rgba(243, 156, 18,1.0); } .store-pages-page-content .panel-group .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .store-pages-page-content .panel-group .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .store-pages-page-content .panel-group .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .store-pages-page-content .panel-group .panel-default .panel-heading .panel-title a i { margin-right: 5px; } .store-pages-page-content .panel-group .panel-default .store-pages-sections h4 { color: rgba(0,0,0,.8); } .store-pages-page-content .panel-group .panel-default .store-pages-sections .careers-title li { color: rgba(0,0,0,.4) } /* END STORE-PAGES-PAGE-CONTENT SECTION */ /*** START STORE'S ALL PAGES PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .store-pages-page-content .store-pages-page-content-head { margin-bottom: 3em; } .store-pages-page-content .store-pages-page-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .store-pages-page-content .store-pages-page-content-head { margin-bottom: 3em; } .store-pages-page-content .store-pages-page-content-head h2 { font-size: 2em; } } /*** END STORE'S ALL PAGES PAGE SCREENS SIZSES ***/ /******----END STORE'S ALL PAGES PAGE----******/ /*======================================================================*/ /******----START PAGES-BACKGROUND----******/ .pages-background { background-size: cover; background-position: top; background-attachment: fixed; background-repeat: no-repeat; text-align: center; padding: 12em 20em; } .pages-background h1 { font-size: 4.2em; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6); } @media (min-width: 0px) and (max-width: 480px) { .pages-background { background-attachment: scroll; padding: 7em 0em; } .pages-background h1 { font-size: 3.2em; } } @media (min-width: 480px) and (max-width: 736px) { .pages-background { background-attachment: scroll; padding: 7em 0em; } .pages-background h1 { font-size: 3.2em; } } @media (min-width: 736px) and (max-width: 980px) { .pages-background { background-attachment: scroll; padding: 12em 0em; } } @media (min-width: 980px) and (max-width: 1280px) { .pages-background { padding: 12em 0em; } } @media (min-width: 1280px) and (max-width: 1680px) { .pages-background { padding: 12em 0em; } } /******---END PAGES-BACKGROUND---******/
front/assets/css/style.css
@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700); body{ margin:0; font-family: "Raleway", Arial, Helvetica, sans-serif; line-height: 1.65; padding: 0; color: #fff; } *{ -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } h1, h2, h3, h4, h5, h6, p, label, .btn, a { font-family: "Libre Franklin"; font-size: 15px; } a, a:active, a:hover, a:focus { outline: none; text-decoration: none; } .wrapper{ padding: 6em 0; } .second-btn { padding: 8px 24px; letter-spacing: 0.075em; } .fa-angle-right { padding: 0 0 0 .5em; } .first-line { width: 50px; background: black; height: 1px; margin: auto; right: 0; left: 0; position: absolute; color: #000; } .second-line { width: 50px; height: 1px; margin: auto; right: 0; left: 0; position: absolute; color: #fff; background: #fff; } .post-capitalize { text-transform: capitalize; } .post-uppercase { text-transform: uppercase; } .main-color { color: #000; } .second-color{ color: #fff; } /******----START Home PAGE----******/ /*** START MENU SECTION ***/ .menu { height: 0; z-index: 1; position: relative; } .menu .container { width: 100%; padding: 0; } .menu .menu-section.on { z-index: 10; height:100%; width: 100%; background-color: rgba(0, 0, 0, .9); position: fixed; display: block; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .menu .menu-section .navbar-header { top: 20px; left: 20px; float: left; position: absolute; } .menu .menu-section .navbar-header a { font-size:2em; font-weight: 300; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; color: rgba(250, 250, 250, .7); } .menu .menu-section .navbar-header a:hover { color: #fff; } /* START SEARCH ICON CONENT */ .menu .menu-section .search-bar { display: none; background: transparent; top: 0; right: 0; position: absolute; } .menu .menu-section .search-bar.active { height: 65px; position: fixed; z-index: 6; width: 100%; display: block; } .menu .menu-section .search-bar.active input{ display: block; } .menu .menu-section .search-bar input { border: 0; height: 100%; font: 40px/40px helvetica; padding: 0 20px; display: none; width: 100%; outline: none; } .menu .menu-section .search { right: 138px; top: 29px; margin-right: 26px; background: transparent; position: absolute; } .menu .menu-section .search:hover { cursor: pointer; background: transparent; } .menu .menu-section .search.active { top: 20px; z-index: 6; position: fixed; right: 0; } .menu .menu-section .search .search-open { font-size: 18px; display: block; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; color: rgba(250, 250, 250, .7); } .menu .menu-section .search .search-open:hover { color: #fff; } .menu .menu-section .search.active .search-open { display: none; } .menu .menu-section .search .search-exit { display: none; } .menu .menu-section .search.active .search-exit { z-index: 6; display: block; color: #000; } .menu .menu-section .search.active .search-exit i { font-size: 26px; } /* END SEARCH ICON CONENT */ /* START SHOPING CART ICON CONTENT */ .menu .menu-section .shopping-icon ul { top: 27px; right: 60px; float: right !important; margin-right: 27px; list-style: none; margin-bottom: 0; padding: 0; position: relative; cursor: pointer; } .menu .menu-section .shopping-icon ul li #cart { font-size: 20px; outline: none; } .menu .menu-section .shopping-icon ul li #cart:hover i { color: #fff; } .menu .menu-section .shopping-icon ul li #cart i { margin-right: 6px; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; color: rgba(250, 250, 250, .7); } .menu .menu-section .shopping-icon ul li #cart .badge { border-radius: 10px; font-size: 12px; line-height: 1; padding: 3px 7px; vertical-align: middle; white-space: nowrap; display: inline-block; text-align: center; color: #fff; } .menu .menu-section .shopping-cart { margin: 20px 0; width: 320px; border-radius: 3px; padding: 20px; right: 64px; top: 47px; display: none; position: absolute; background-color: #fff; } .menu .menu-section .shopping-cart .shopping-cart-header { border-bottom: 1px solid #E8E8E8; padding-bottom: 15px; } .menu .menu-section .shopping-cart .shopping-cart-header .cart-icon { color: rgba(0, 0, 0, .5); font-size: 24px; margin-right: 7px; } .menu .menu-section .shopping-cart .shopping-cart-header .badge { border-radius: 10px; font-size: 12px; line-height: 1; padding: 3px 7px; vertical-align: middle; white-space: nowrap; display: inline-block; text-align: center; color: #fff; } .menu .menu-section .shopping-cart .shopping-cart-header .shopping-cart-total { float: right; } .menu .menu-section .shopping-cart .shopping-cart-header .shopping-cart-total .lighter-text { color: rgba(0, 0, 0, .5); } .menu .menu-section .shopping-cart .shopping-cart-items { padding-top: 20px; padding-left: 0; } .menu .menu-section .shopping-cart .shopping-cart-items li { margin-bottom: 18px; } .menu .menu-section .shopping-cart .shopping-cart-items img { margin-right: 12px; width: 70px; height: 70px; float: left; } .menu .menu-section .shopping-cart .shopping-cart-items .item-name { padding-top: 10px; font-size: 16px; display: inline; color: #000; } .menu .menu-section .shopping-cart .shopping-cart-items .item-price { display: block; } .menu .menu-section .shopping-cart .shopping-cart-items .item-quantity { display: block; color: rgba(0, 0, 0, .5); } .menu .menu-section .shopping-cart .shopping-buttons { border-top: 1px solid #E8E8E8; text-align: center; } .menu .menu-section .shopping-cart .shopping-buttons .home-page-view-cart-btn { margin: 20px 6px 0px 6px; padding: 8px 18px; letter-spacing: 0; text-transform: uppercase; color: #fff; border-radius: 0; outline: none; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .menu .menu-section .shopping-cart .shopping-buttons .home-page-checkout-btn { margin: 20px 6px 0px 6px; padding: 8px 18px; letter-spacing: 0; text-transform: uppercase; color: #fff; border-radius: 0; outline: none; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .menu .menu-section .shopping-cart .shopping-buttons a:hover { background: transparent; outline: none; } .clearfix:after { content: ""; display: table; clear: both; } /* END SHOPING CART ICON CONTENT */ /* START MENU TOGGLE ICON CONTENT */ .menu .menu-section .menu-toggle { width: 40px; height: 20px; top: 35px; right: 30px; position: absolute; cursor: pointer; } .menu .menu-section .menu-toggle:hover .one, .menu .menu-section .menu-toggle:hover .two, .menu .menu-section .menu-toggle:hover .three { background-color: #fff; } .menu .menu-section .menu-toggle.on .one { -moz-transform: rotate(45deg) translate(3px, 3px); -ms-transform: rotate(45deg) translate(3px, 3px); -webkit-transform: rotate(45deg) translate(3px, 3px); transform: rotate(45deg) translate(3px, 3px); } .menu .menu-section .menu-toggle.on .two { opacity: 0; } .menu .menu-section .menu-toggle.on .three { -moz-transform: rotate(-45deg) translate(4px, -4px); -ms-transform: rotate(-45deg) translate(4px, -4px); -webkit-transform: rotate(-45deg) translate(4px, -4px); transform: rotate(-45deg) translate(4px, -4px); } .menu .menu-section .menu-toggle.on:hover .one, .menu .menu-section .menu-toggle.on:hover .three { background-color: #fff; } .menu .menu-section .menu-toggle .one, .menu .menu-section .menu-toggle .two, .menu .menu-section .menu-toggle .three { width: 50%; height: 1px; margin: 4px auto; backface-visibility: hidden; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; background-color: rgba(250, 250, 250, .7); } .menu .menu-section nav ul { font-family: Open Sans; list-style: none; margin: 4em auto; padding: 0; text-align: center; } .menu .menu-section nav ul a { line-height: 1.5; padding: 9px 0; width: 100%; text-decoration: none; display: block; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; line-height: 1.5; padding: 9px 0; color: rgba(250, 250, 250, .6); } .menu .menu-section nav ul a:hover, .menu .menu-section nav ul a:focus { outline: none; color: #fff; background-color: rgba(0, 0, 0, .5); } .menu .menu-section nav ul.hidden { display: none; } /* END MENU TOGGLE ICON CONENT */ /*** END MENU SECTION ***/ /*** Start Tool Box Section ***/ .option-box { position:fixed; top:100px; left:0; z-index:9999; } .option-box .color-option { float:right; background:#333; color:#fff; padding:10px; width:200px; display:none; } .option-box .color-option h2 { margin-top: 10px; margin-bottom: 10px; } .option-box .color-option ul li { width:20px; height:20px; display:inline-block; margin-right:3px; cursor:pointer; } .option-box .gear-check { padding:5px; color:#FFF; cursor:pointer; } /*** End Tool Box Section ***/ /*** START HOME-BACKGROUND SECTION ***/ .home-background { background-image:url('../../images/image-1920×1080.jpg'); background-size: cover; background-position:top; background-attachment: fixed; background-repeat:no-repeat; margin:0; text-align: center; } .home-background .home-background-head-text h1 { font-size: 3.5em; line-height: 1em; margin: 0 0 0.5em 0; padding: 0; font-weight: 100; text-transform: uppercase; color: #fff; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6); } .home-background .home-background-head-text p { font-size: 1em; margin-bottom: 1.75em; font-weight: 100; color: #fff; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6); } .home-background .home-background-head-text .first-btn { border: 1px solid rgba(250,250,250,.7); border-radius: 0; font-weight: 300; background: transparent; outline: none; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; color: rgba(250, 250, 250, .7); outline: none; } .home-background .home-background-head-text .first-btn:hover, .home-background .home-background-head-text .first-btn:focus { outline: none; border: 1px solid #fff; color: #fff; } .home-background .home-background-head-text .arrow-down .fa-angle-down { bottom: 0; right: 0; left: 0; position: absolute; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; cursor: pointer; color: rgba(250, 250, 250, .7); font-size: 40px; width: 27px; margin-right: auto; margin-left: auto; color: rgba(250, 250, 250, .7); } .home-background .home-background-head-text .arrow-down .fa-angle-down:hover { color: #fff; } /*** END HOME-BACKGROUND SECTION ***/ /*** START HOME-PAGE-SECTION-THREE SECTION ***/ .home-page-section-three{ background-color: #fff; } .home-page-section-three .new-releases .home-page-section-three-head { margin-bottom: 5em; text-align: center; } .home-page-section-three .new-releases .home-page-section-three-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; color: #000; } .home-page-section-three .new-releases .home-page-section-three-head .first-line { width: 50px; background: black; height: 1px; margin: auto; color: #000; position: absolute; left: 0; right: 0; } .home-page-section-three .new-releases .parts .book-part .book-cart { background: transparent; position: relative; overflow: hidden; max-width: 220px; height: 372px; margin-left: auto; margin-right: auto; margin-bottom: 3em; border-radius: 10px; border: 1px solid rgba(0,0,0,.1); display: block; -webkit-box-sizing: border-box; box-sizing: border-box; } .home-page-section-three .new-releases .parts .book-part .book-cart img { vertical-align: top; height: 200px; width: 100%; } .home-page-section-three .new-releases .parts .book-part .book-cart .icons { padding: 10px; display: flex; flex-direction: column; justify-content: flex-start; top: 0; bottom: 0; right: 0; left: 0; position: absolute; } .home-page-section-three .new-releases .parts .book-part .book-cart .icons * { -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .home-page-section-three .new-releases .parts .book-part .book-cart .icons a { margin: 2px; opacity: 0; -webkit-transform: translateY(100%); transform: translateY(100%); text-decoration: none; } .home-page-section-three .new-releases .parts .book-part .book-cart .icons a i { font-size: 15.529px; line-height: 30px; width: 33px; display: block; text-align: center; color: #000; background-color: #fff; } .home-page-section-three .new-releases .parts .book-part .book-cart .icons a i:hover { color: #fff; cursor: pointer; } .home-page-section-three .new-releases .parts .book-part .book-cart:hover .icons a{ opacity: 1; -webkit-transform: translate(0px, 0px); transform: translate(0px, 0px); } .home-page-section-three .new-releases .parts .book-part .book-cart:hover .icons a:nth-child(2){ -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } .home-page-section-three .new-releases .parts .book-part .book-cart:hover .icons a:nth-child(3){ -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy { height: 170px; bottom: 0; right: 0; left: 0; position: absolute; background-color: #fff; color: #fff; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc { display: block; color: #fff; padding: 2px 0; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .head { font-size: 1em; margin: 5px 10px 6px 10px; text-transform: capitalize; display: block; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .head-blacky, .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .head-blacky:hover, .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .head-blacky:focus { color: #000; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .book-tags { margin: 0px 10px; font-size: 13px; padding-top: 3px; font-weight: 400; display: block; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag { font-size: 12px; font-weight: 400; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .book-tag-blacky{ color: rgba(0, 0, 0, .5); } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:hover, .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:focus { color: #000; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-price { padding: 5px 11px 4px; font-size: 16px; margin-top: 1px; text-decoration: none; display: block; text-align: center; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-price.main-color { color: #000; } .home-page-section-three .new-releases .parts .book-part .book-cart .divy .book-price .price-number-after { position: relative; display: inline; } .home-page-section-three .new-releases .book-cart-btn { text-align: center; } .home-page-section-three .new-releases .book-cart-btn .new-releases-view-all-btn { border-radius: 0; background: transparent; outline: none; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; padding: 8px 24px; letter-spacing: 0.075em; margin: 3em 0 0 0; } .home-page-section-three .new-releases .book-cart-btn .new-releases-view-all-btn:hover, .home-page-section-three .new-releases .book-cart-btn .new-releases-view-all-btn:focus { color: #fff; } /*** END HOME-PAGE-SECTION-THREE SECTION ***/ /*** START HOME-PAGE-SECTION-FOUR SECTION ***/ .home-page-section-four .bestsellers .home-page-section-four-head { margin-bottom: 5em; text-align: center; } .home-page-section-four .bestsellers .home-page-section-four-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; color: #fff; } .home-page-section-four .bestsellers .home-page-section-four-head .second-line { width: 50px; background-color: #fff; height: 1px; margin: auto; color: #fff; position: absolute; left: 0; right: 0; } .home-page-section-four .bestsellers .parts .book-part .book-cart { background: transparent; position: relative; overflow: hidden; max-width: 220px; height: 372px; margin-left: auto; margin-right: auto; margin-bottom: 3em; border-radius: 10px; border: 1px solid rgba(0,0,0,.1); display: block; -webkit-box-sizing: border-box; box-sizing: border-box; } .home-page-section-four .bestsellers .parts .book-part .book-cart img { vertical-align: top; height: 200px; width: 100%; } .home-page-section-four .bestsellers .parts .book-part .book-cart .icons { padding: 10px; display: flex; flex-direction: column; justify-content: flex-start; top: 0; bottom: 0; right: 0; left: 0; position: absolute; } .home-page-section-four .bestsellers .parts .book-part .book-cart .icons * { -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .home-page-section-four .bestsellers .parts .book-part .book-cart .icons a { margin: 2px; opacity: 0; -webkit-transform: translateY(100%); transform: translateY(100%); text-decoration: none; } .home-page-section-four .bestsellers .parts .book-part .book-cart .icons a i:hover { color: #fff; cursor: pointer; } .home-page-section-four .bestsellers .parts .book-part .book-cart .icons a i { font-size: 15.529px; line-height: 30px; width: 33px; display: block; text-align: center; color: #000; background-color: #fff; } .home-page-section-four .bestsellers .parts .book-part .book-cart:hover .icons a{ opacity: 1; -webkit-transform: translate(0px, 0px); transform: translate(0px, 0px); } .home-page-section-four .bestsellers .parts .book-part .book-cart:hover .icons a:nth-child(2){ -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } .home-page-section-four .bestsellers .parts .book-part .book-cart:hover .icons a:nth-child(3){ -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy { height: 170px; bottom: 0; right: 0; left: 0; position: absolute; background-color: #fff; color: #fff; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc { display: block; color: #fff; padding: 2px 0; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .head { font-size: 1em; margin: 5px 10px 6px 10px; text-transform: capitalize; display: block; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .head-blacky, .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .head-blacky:hover, .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .head-blacky:focus { color: #000; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .book-tags { margin: 0px 10px; font-size: 13px; padding-top: 3px; font-weight: 400; display: block; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag { font-size: 12px; font-weight: 400; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .book-tag-blacky { color: rgba(0, 0, 0, .5); } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:hover, .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:focus { color: #000; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-price { padding: 5px 11px 4px; font-size: 16px; margin-top: 1px; text-decoration: none; display: block; text-align: center; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-price.main-color { color: #000; } .home-page-section-four .bestsellers .parts .book-part .book-cart .divy .book-price .price-number-after { position: relative; display: inline; } .home-page-section-four .bestsellers .book-cart-btn { text-align: center; } .home-page-section-four .bestsellers .book-cart-btn .bestsellers-view-all-btn{ padding: 8px 24px; letter-spacing: 0.075em; margin: 3em 0 0 0; border-radius: 0; background: transparent; font-weight: 400; outline: none; text-transform: capitalize; text-align: center; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; border: 1px solid #fff; color: #fff; } .home-page-section-four .bestsellers .book-cart-btn .bestsellers-view-all-btn:hover, .home-page-section-four .bestsellers .book-cart-btn .bestsellers-view-all-btn:focus { background: #fff; } /*** END HOME-PAGE-SECTION-FOUR SECTION ***/ /*** START HOME-PAGE-SECTION-FIVE SECTION ***/ .home-page-section-five { background-color: #fff; } .home-page-section-five .discover .home-page-section-five-head { margin-bottom: 5em; text-align: center; } .home-page-section-five .discover .home-page-section-five-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; color: #000; } .home-page-section-five .discover .home-page-section-five-head .first-line { width: 50px; background: black; height: 1px; margin: auto; color: #000; position: absolute; left: 0; right: 0; } .home-page-section-five .discover .parts .book-part .book-cart{ background: transparent; position: relative; overflow: hidden; max-width: 220px; height: 372px; margin-left: auto; margin-right: auto; margin-bottom: 3em; border-radius: 10px; border: 1px solid rgba(0,0,0,.1); display: block; -webkit-box-sizing: border-box; box-sizing: border-box; } .home-page-section-five .discover .parts .book-part .book-cart img { vertical-align: top; height: 200px; width: 100%; } .home-page-section-five .discover .parts .book-part .book-cart .icons { padding: 10px; display: flex; flex-direction: column; justify-content: flex-start; top: 0; bottom: 0; right: 0; left: 0; position: absolute; } .home-page-section-five .discover .parts .book-part .book-cart .icons * { -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .home-page-section-five .discover .parts .book-part .book-cart .icons a { margin: 2px; opacity: 0; -webkit-transform: translateY(100%); transform: translateY(100%); text-decoration: none; } .home-page-section-five .discover .parts .book-part .book-cart .icons a i:hover { color: #fff; cursor: pointer; } .home-page-section-five .discover .parts .book-part .book-cart .icons a i { font-size: 15.529px; line-height: 30px; width: 33px; display: block; text-align: center; color: #000; background-color: #fff; } .home-page-section-five .discover .parts .book-part .book-cart:hover .icons a{ opacity: 1; -webkit-transform: translate(0px, 0px); transform: translate(0px, 0px); } .home-page-section-five .discover .parts .book-part .book-cart:hover .icons a:nth-child(2){ -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } .home-page-section-five .discover .parts .book-part .book-cart:hover .icons a:nth-child(3){ -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } .home-page-section-five .discover .parts .book-part .book-cart .divy { height: 170px; bottom: 0; right: 0; left: 0; position: absolute; background-color: #fff; color: #fff; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc { display: block; color: #fff; padding: 2px 0; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .head { font-size: 1em; margin: 5px 10px 6px 10px; text-transform: capitalize; display: block; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .head-blacky, .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .head-blacky:hover, .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .head-blacky:focus { color: #000; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .book-tags { margin: 0px 10px; font-size: 13px; padding-top: 3px; font-weight: 400; display: block; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag { font-size: 12px; font-weight: 400; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .book-tag-blacky{ color: rgba(0, 0, 0, .5); } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:hover, .home-page-section-five .discover .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:focus { color: #000; } .home-page-section-five .discover .parts .book-part .book-cart .divy .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-price { padding: 5px 11px 4px; font-size: 16px; margin-top: 1px; text-decoration: none; display: block; text-align: center; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-price.main-color { color: #000; } .home-page-section-five .discover .parts .book-part .book-cart .divy .book-price .price-number-after { position: relative; display: inline; } .home-page-section-five .discover .book-cart-btn { text-align: center; } .home-page-section-five .discover .book-cart-btn .discover-view-all-btn { border-radius: 0; background: transparent; outline: none; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; padding: 8px 24px; letter-spacing: 0.075em; margin: 3em 0 0 0; } .home-page-section-five .discover .book-cart-btn .discover-view-all-btn:hover, .home-page-section-five .discover .book-cart-btn .discover-view-all-btn:focus { color: #fff; } /*** END HOME-PAGE-SECTION-FIVE SECTION ***/ /*** START HOME-PAGE-SECTION-SIX SECTION ***/ .home-page-section-six .comingsoon .home-page-section-six-head { margin-bottom: 5em; text-align: center; } .home-page-section-six .comingsoon .home-page-section-six-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; color: #fff; } .home-page-section-six .comingsoon .home-page-section-six-head .second-line { width: 50px; background-color: #fff; height: 1px; margin: auto; color: #fff; position: absolute; left: 0; right: 0; } .home-page-section-six .comingsoon .parts .book-part .book-cart { background: transparent; position: relative; overflow: hidden; max-width: 220px; height: 372px; margin-left: auto; margin-right: auto; margin-bottom: 3em; border-radius: 10px; border: 1px solid rgba(0,0,0,.1); display: block; -webkit-box-sizing: border-box; box-sizing: border-box; } .home-page-section-six .comingsoon .parts .book-part .book-cart img { vertical-align: top; height: 200px; width: 100%; } .home-page-section-six .comingsoon .parts .book-part .book-cart .icons { padding: 10px; display: flex; flex-direction: column; justify-content: flex-start; top: 0; bottom: 0; right: 0; left: 0; position: absolute; } .home-page-section-six .comingsoon .parts .book-part .book-cart .icons * { -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .home-page-section-six .comingsoon .parts .book-part .book-cart .icons a { margin: 2px; opacity: 0; -webkit-transform: translateY(100%); transform: translateY(100%); text-decoration: none; } .home-page-section-six .comingsoon .parts .book-part .book-cart .icons a i:hover { color: #fff; cursor: pointer; } .home-page-section-six .comingsoon .parts .book-part .book-cart .icons a i { font-size: 15.529px; line-height: 30px; width: 33px; display: block; text-align: center; color: #000; background-color: #fff; } .home-page-section-six .comingsoon .parts .book-part .book-cart:hover .icons a{ opacity: 1; -webkit-transform: translate(0px, 0px); transform: translate(0px, 0px); } .home-page-section-six .comingsoon .parts .book-part .book-cart:hover .icons a:nth-child(2){ -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } .home-page-section-six .comingsoon .parts .book-part .book-cart:hover .icons a:nth-child(3){ -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy { height: 170px; bottom: 0; right: 0; left: 0; position: absolute; background-color: #fff; color: #fff; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc { display: block; color: #fff; padding: 2px 0; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .head { font-size: 1em; margin: 5px 10px 6px 10px; text-transform: capitalize; display: block; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .head-blacky, .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .head-blacky:hover, .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .head-blacky:focus { color: #000; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .book-tags { margin: 0px 10px; font-size: 13px; padding-top: 3px; font-weight: 400; display: block; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag { font-size: 12px; font-weight: 400; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .book-tag-blacky{ color: rgba(0, 0, 0, .5); } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:hover, .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:focus { color: #000; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-price { padding: 5px 11px 4px; font-size: 16px; margin-top: 1px; text-decoration: none; display: block; text-align: center; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-price.main-color { color: #000; } .home-page-section-six .comingsoon .parts .book-part .book-cart .divy .book-price .price-number-after { position: relative; display: inline; } .home-page-section-six .comingsoon .book-cart-btn { text-align: center; } .home-page-section-six .comingsoon .book-cart-btn .comingsoon-view-all-btn { padding: 8px 24px; letter-spacing: 0.075em; margin: 3em 0 0 0; border-radius: 0; background: transparent; font-weight: 400; outline: none; text-transform: capitalize; text-align: center; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; border: 1px solid #fff; color: #fff; } .home-page-section-six .comingsoon .book-cart-btn .comingsoon-view-all-btn:hover, .home-page-section-six .comingsoon .book-cart-btn .comingsoon-view-all-btn:focus { background: #fff; } /*** END HOME-PAGE-SECTION-SIX SECTION ***/ /*** START HOME-PAGE-SECTION-SEVEN SECTION ***/ .home-page-section-seven { background-color: #fff; } .home-page-section-seven .ournews .home-page-section-seven-head { margin-bottom: 5em; text-align: center; } .home-page-section-seven .ournews .home-page-section-seven-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; color: #000; } .home-page-section-seven .ournews .home-page-section-seven-head .first-line { width: 50px; background: black; height: 1px; margin: auto; color: #000; position: absolute; left: 0; right: 0; } .home-page-section-seven .ournews .accordian { width: 1000px; height: 350px; overflow: hidden; margin: 0px auto; box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); -moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); } .home-page-section-seven .ournews .accordian ul { width: 2200px; padding: 0; } .home-page-section-seven .ournews .accordian ul li { width: 200px; height: 350px; border-left: 1px solid #888; box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5); transition: 0.5s all; -webkit-transition: 0.5s all; -moz-transition: 0.5s all; float: left; position: relative; display: block; } .home-page-section-seven .ournews .accordian ul:hover li { width: 50px; } .home-page-section-seven .ournews .accordian ul li:hover { width: 800px; } .home-page-section-seven .ournews .accordian ul li img { width: 800px; height: 350px; display: block; } .home-page-section-seven .ournews .accordian ul li .image_title { opacity: 0; height: 50%; width: 800px; bottom: 0; left: 0; position: absolute; background-color: rgba(0, 0, 0, .5); -webkit-transform: translateX(100%); transform: translateX(100%); } .home-page-section-seven .ournews .accordian ul li .image_title h3 { padding: 10px 20px 0; font-size: 16px; opacity: 0; margin: 0; transition:1.8s ease-in-out all; -webkit-transition:1.8s ease-in-out all; -moz-transition:1.8s ease-in-out all; display: inline-block; color: #fff; } .home-page-section-seven .ournews .accordian ul li .image_title i { padding: 10px 20px 0; opacity: 0; transition:1.5s ease-in-out all; -webkit-transition:1.5s ease-in-out all; -moz-transition:1.5s ease-in-out all; display: inline-block; } .home-page-section-seven .ournews .accordian ul li .image_title .ournews-accordian-btn { padding: 5px 15px; margin:10px 20px; opacity: 0; transition:1.8s ease-in-out all; -webkit-transition:1.8s ease-in-out all; -moz-transition:1.8s ease-in-out all; border-radius: 0; background: transparent; text-transform: capitalize; text-decoration: none; border: 1px solid #fff; color: #fff; display: inline-block; } .home-page-section-seven .ournews .accordian ul li .image_title, .home-page-section-seven .ournews .accordian ul li .image_title h3, .home-page-section-seven .ournews .accordian ul li .image_title i, .home-page-section-seven .ournews .accordian ul li .image_title .ournews-accordian-btn { -webkit-transform: translateX(100%); transform: translateX(100%); } .home-page-section-seven .ournews .accordian ul li:hover .image_title, .home-page-section-seven .ournews .accordian ul li:hover .image_title h3, .home-page-section-seven .ournews .accordian ul li:hover .image_title i, .home-page-section-seven .ournews .accordian ul li:hover .image_title .ournews-accordian-btn { -webkit-transform: translate(0px, 0px); transform: translate(0px, 0px); opacity: 1; } .home-page-section-seven .ournews .accordian ul li:hover .image_title { transition: 1.2s all; -webkit-transition: 1.2s all; -moz-transition: 1.2s all; } .home-page-section-seven .ournews .book-cart-btn { text-align: center; } .home-page-section-seven .ournews .book-cart-btn .ournews-view-all-btn { border-radius: 0; background: transparent; outline: none; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; padding: 8px 24px; letter-spacing: 0.075em; margin: 3em 0 0 0; } .home-page-section-seven .ournews .book-cart-btn .ournews-view-all-btn:hover, .home-page-section-seven .ournews .book-cart-btn .ournews-view-all-btn:focus { color: #fff; } /*** END HOME-PAGE-SECTION-SEVEN SECTION ***/ /*** START HOME-PAGE-SECTION-EIGHT SECTION ***/ .home-page-section-eight .home-page-authors .home-page-section-eight-head { margin-bottom: 5em; text-align: center; } .home-page-section-eight .home-page-authors .home-page-section-eight-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; color: #fff; } .home-page-section-eight .home-page-authors .home-page-section-eight-head .second-line { width: 50px; background-color: #fff; height: 1px; margin: auto; color: #fff; position: absolute; left: 0; right: 0; } .home-page-section-eight .home-page-authors .carousel .carousel-indicators { width: 200px; height: 200px; margin: 0 auto; z-index: 0; padding: 0; top: 0; right: 0; left: 0; position: relative; } .home-page-section-eight .home-page-authors .carousel .carousel-indicators li { border-radius: 50%; width: 200px; height: 200px; -webkit-transition: .6s ease-in-out left; transition: .6s ease-in-out left; text-indent: 0; border: 0; overflow: hidden; margin: 0; background: none; padding: 0; display: none; } .home-page-section-eight .home-page-authors .carousel .carousel-indicators .active { width: 200px; height: 200px; display: block; } .home-page-section-eight .home-page-authors .carousel .carousel-indicators li img { border-radius: 50%; height: 200px; width: 200px; margin: 0; padding: 0; } .home-page-section-eight .home-page-authors .carousel .carousel-inner { left: 50%; width: 60%; padding-left: 0; margin-left: -30%; bottom: 0; position: relative; display: block; text-align: center; } .home-page-section-eight .home-page-authors .carousel .carousel-inner .author { margin: 15px 0px; } .home-page-section-eight .home-page-authors .carousel .carousel-inner .author a { font-size: 2em; margin-bottom: 10px; margin-left: auto; margin-right: auto; width: 100%; font-weight: 100; text-decoration: none; display: block; color: #fff; } .home-page-section-eight .home-page-authors .carousel .carousel-control { font-size: 35px; width: 0; top: 35%; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .home-page-section-eight .home-page-authors .carousel .carousel-control.right { right: 30px; } .home-page-section-eight .home-page-authors .carousel .carousel-control.left { left: 0; } .home-page-section-eight .home-page-authors .book-cart-btn { text-align: center; } .home-page-section-eight .home-page-authors .book-cart-btn .home-page-authors-btn { padding: 8px 24px; letter-spacing: 0.075em; margin: 3em 0 0 0; border-radius: 0; background: transparent; font-weight: 400; outline: none; text-transform: capitalize; text-align: center; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; border: 1px solid #fff; color: #fff; } .home-page-section-eight .home-page-authors .book-cart-btn .home-page-authors-btn:hover, .home-page-section-eight .home-page-authors .book-cart-btn .home-page-authors-btn:focus { background: #fff; } /*** END HOME-PAGE-SECTION-EIGHT SECTION ***/ /*** START HOME-PAGE-OUR-CLIENTS SECTION ***/ .home-page-our-clients { padding-top:20px; padding-bottom:20px background-color:#fff; } .home-page-our-clients ul li img { opacity:0.4; filter: alpha(opacity=40); margin-top:20px; margin-bottom:20px; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .home-page-our-clients ul li img:hover {opacity:1} /*** END HOME-PAGE-OUR-CLIENTS SECTION ***/ /*** START HOME-PAGE-YOUR-MESSAGE SECTION ***/ .home-page-your-message { background-color: #222831; } .home-page-your-message .your-message-parts .home-page-your-message-head { margin-bottom: 5em; text-align: center; } .home-page-your-message .your-message-parts .home-page-your-message-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; color: #fff; } .home-page-your-message .your-message-parts .home-page-your-message-head .second-line { width: 50px; background-color: #fff; height: 1px; margin: auto; color: #fff; position: absolute; left: 0; right: 0; } .home-page-your-message .your-message-parts form { padding: 5px 0px 0px; } .home-page-your-message .your-message-parts form .form-group .input-lg { background: transparent; color: #fff; height: 46px; padding: 10px 16px; font-size: 16px; line-height: 1.3333333; border-radius: 3px; } .home-page-your-message .your-message-parts form .form-control:focus { border-color: #fff; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #fff; box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #fff; outline: none; } .home-page-your-message .your-message-parts form .form-group textarea{ height: 110px; background: transparent; color: #fff; padding: 10px 16px; font-size: 16px; line-height: 1.3333333; border-radius: 3px; } .home-page-your-message .e-btn { border: 1px solid #ccc; background: transparent; outline: none; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; color: #fff; } .home-page-your-message .e-btn:hover, .home-page-your-message .e-btn:focus { outline: none; color: #000; background-color: #fff; } /*** END HOME-PAGE-YOUR-MESSAGE SECTION ***/ /*** START FOOTER ***/ .footer{ background-color:#393e46; } .footer .footer-parts .section-head { text-align: center; margin-bottom: 5em; } .footer .footer-parts .section-head h2{ font-weight: 100; font-size: 2.75em; margin: 0 0 .5em 0; } .footer .footer-parts .site-map { padding: 0px 0 35px 0; } .footer .footer-parts .site-map div { margin-bottom: 12px; text-align: center; padding: 0; } .footer .footer-parts .site-map div a { font-size: 1.2em; width: 46px; margin: 0; } .footer .footer-parts .site-map a { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; padding: 0; font-weight: 100; display: inline; text-decoration: none; } .footer-parts .social-media { text-align: center; } .footer .footer-parts .social-media a { margin-right: 25px; margin-top: 20px; display: inline-block; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .footer .footer-parts .site-map a, .footer .footer-parts .social-media a { color: rgba(250, 250, 250, .6); } .footer-parts .site-map a:hover, .footer-parts .social-media a:hover { color: #fff; } .footer .footer-parts .social-media .pinterest{ margin-right: 0; } /*** END FOOTER ***/ /*** START FINAL ***/ .final{ padding: 15px; background-color: #fff; } .copyright { font-size: 1.2em; color:rgba(0, 0, 0, .7); } .final-left, .final-right { text-align: center; } /*** END FINAL ***/ /* Start Scrollup */ #scroll-top { width: 40px; height: 40px; color: #DDD; background-color: #272727; text-align: center; position: fixed; right: 15px; bottom: 10px; z-index: 9999; display: none; cursor: pointer; border-radius: 4px; } #scroll-top i { position: absolute; left: 0; right: 0; bottom: 8px; } /* End Scrollup */ /*** START SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { body{ font-size: 12pt; } .menu .menu-section .navbar-header { top: 2px; left: 5px; } .menu .menu-section .navbar-header a { font-size: 1.5em; } .menu .menu-section .search { right: 102px; top: 16px; } .menu .menu-section .shopping-icon ul { top: 14px; right: 35px; } .menu .menu-section .shopping-cart { right: 0px; top: 35px; } .menu .menu-section .shopping-cart:after { left: 77%; } .menu .menu-section .menu-toggle { top: 22px; right: 15px; } .menu .menu-section nav ul a { font-size: 2em; } .home-background { background-attachment: scroll; } .home-background .home-background-head-text h1 { font-size: 2.5em; } .home-background .home-background-head-text p { font-size: .9em; } .wrapper { padding: 4em 0; } .book-part:last-of-type .book-cart { margin-bottom: 0; } .home-page-section-three .new-releases .home-page-section-three-head { margin-bottom: 3em; } .home-page-section-three .new-releases .home-page-section-three-head h2 { font-size: 2em; } .home-page-section-four .bestsellers .home-page-section-four-head { margin-bottom: 3em; } .home-page-section-four .bestsellers .home-page-section-four-head h2 { font-size: 2em; } .home-page-section-five .discover .home-page-section-five-head { margin-bottom: 3em; } .home-page-section-five .discover .home-page-section-five-head h2 { font-size: 2em; } .home-page-section-six .comingsoon .home-page-section-six-head { margin-bottom: 3em; } .home-page-section-six .comingsoon .home-page-section-six-head h2 { font-size: 2em; } .home-page-section-seven .ournews .home-page-section-seven-head { margin-bottom: 3em; } .home-page-section-seven .ournews .home-page-section-seven-head h2 { font-size: 2em; } .home-page-section-seven .ournews .accordian { width: 300px; } .home-page-section-seven .ournews .accordian ul { width: 1500px; } .home-page-section-seven .ournews .accordian ul li { width: 60px; } .home-page-section-seven .ournews .accordian ul:hover li { width: 15px; } .home-page-section-seven .ournews .accordian ul li:hover { width: 240px; } .home-page-section-seven .ournews .accordian ul li img { width: 240px; } .home-page-section-seven .ournews .accordian ul li .image_title { width: 240px; height: 100%; } .home-page-section-seven .ournews .accordian ul li .image_title h3 { padding: 40px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title i { padding: 5px 20px 10px; } .home-page-section-seven .ournews .accordian ul li .image_title .ournews-accordian-btn { margin:10px 20px; } .home-page-section-eight .home-page-authors .home-page-section-eight-head { margin-bottom: 3em; } .home-page-section-eight .home-page-authors .home-page-section-eight-head h2 { font-size: 2em; } .home-page-your-message .your-message-parts .home-page-your-message-head { margin-bottom: 3em; } .home-page-your-message .your-message-parts .home-page-your-message-head h2 { font-size: 2em; } .footer .footer-parts .section-head { margin-bottom: 3em; } .footer .footer-parts .section-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { body{ font-size: 12pt; } .menu .menu-section .navbar-header { top: 2px; left: 5px; } .menu .menu-section .navbar-header a { font-size: 1.5em; } .menu .menu-section .shopping-icon ul { top: 14px; right: 35px; } .menu .menu-section .search { right: 102px; top: 16px; } .menu .menu-section .shopping-cart { right: 0px; top: 35px; } .menu .menu-section .shopping-cart:after { left: 77%; } .menu .menu-section .menu-toggle { top: 22px; right: 15px; } .menu .menu-section nav ul a { font-size: 3em; } .home-background { background-attachment: scroll; } .home-background .home-background-head-text h1 { font-size: 2.5em; } .home-background .home-background-head-text p { font-size: .9em; } .wrapper{ padding: 4em 0; } .home-page-section-three .new-releases .home-page-section-three-head { margin-bottom: 3em; } .home-page-section-three .new-releases .home-page-section-three-head h2 { font-size: 2em; } .home-page-section-four .bestsellers .home-page-section-four-head { margin-bottom: 3em; } .home-page-section-four .bestsellers .home-page-section-four-head h2 { font-size: 2em; } .home-page-section-five .discover .home-page-section-five-head { margin-bottom: 3em; } .home-page-section-five .discover .home-page-section-five-head h2 { font-size: 2em; } .home-page-section-six .comingsoon .home-page-section-six-head { margin-bottom: 3em; } .home-page-section-six .comingsoon .home-page-section-six-head h2 { font-size: 2em; } .home-page-section-seven .ournews .home-page-section-seven-head { margin-bottom: 3em; } .home-page-section-seven .ournews .home-page-section-seven-head h2 { font-size: 2em; } .home-page-section-seven .ournews .accordian { width: 600px; } .home-page-section-seven .ournews .accordian ul { width: 1800px; } .home-page-section-seven .ournews .accordian ul li { width: 120px; } .home-page-section-seven .ournews .accordian ul:hover li { width: 30px; } .home-page-section-seven .ournews .accordian ul li:hover { width: 480px; } .home-page-section-seven .ournews .accordian ul li img { width: 480px; } .home-page-section-seven .ournews .accordian ul li .image_title { width: 480px; } .home-page-section-seven .ournews .accordian ul li .image_title h3 { padding: 10px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title i { padding: 5px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title .ournews-accordian-btn { margin: 5px 20px 0; } .home-page-section-eight .home-page-authors .home-page-section-eight-head { margin-bottom: 3em; } .home-page-section-eight .home-page-authors .home-page-section-eight-head h2 { font-size: 2em; } .home-page-your-message .your-message-parts .home-page-your-message-head { margin-bottom: 3em; } .home-page-your-message .your-message-parts .home-page-your-message-head h2 { font-size: 2em; } .footer .footer-parts .section-head { margin-bottom: 3em; } .footer .footer-parts .section-head h2 { font-size: 2em; } } @media (min-width: 736px) and (max-width: 980px) { body{ font-size: 12pt; } .menu .menu-section nav ul a { font-size: 3em; } .home-background { background-attachment: scroll; } .wrapper { padding: 4em 0; } .home-page-section-seven .ournews .accordian { width: 700px; } .home-page-section-seven .ournews .accordian ul { width: 1900px; } .home-page-section-seven .ournews .accordian ul li { width: 140px; } .home-page-section-seven .ournews .accordian ul:hover li { width: 35px; } .home-page-section-seven .ournews .accordian ul li:hover { width: 560px; } .home-page-section-seven .ournews .accordian ul li img { width: 560px; } .home-page-section-seven .ournews .accordian ul li .image_title { width: 560px; } .home-page-section-seven .ournews .accordian ul li .image_title h3 { padding: 10px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title i { padding: 5px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title .ournews-accordian-btn { margin: 5px 20px 0; } } @media (min-width: 980px) and (max-width: 1280px) { body{ font-size: 11pt; } .menu .menu-section nav ul a { font-size: 3em; } .wrapper { padding: 4em 0; } .home-page-section-seven .ournews .accordian { width: 700px; } .home-page-section-seven .ournews .accordian ul { width: 1900px; } .home-page-section-seven .ournews .accordian ul li { width: 140px; } .home-page-section-seven .ournews .accordian ul:hover li { width: 35px; } .home-page-section-seven .ournews .accordian ul li:hover { width: 560px; } .home-page-section-seven .ournews .accordian ul li img { width: 560px; } .home-page-section-seven .ournews .accordian ul li .image_title { width: 560px; } .home-page-section-seven .ournews .accordian ul li .image_title h3 { padding: 10px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title i { padding: 5px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title .ournews-accordian-btn { margin: 5px 20px 0; } } @media (min-width: 1280px) and (max-width: 1680px) { body { font-size: 11pt; } .menu .menu-section nav ul a { font-size: 3em; } .home-page-section-seven .ournews .accordian { width: 1000px; } .home-page-section-seven .ournews .accordian ul { width: 2200px; } .home-page-section-seven .ournews .accordian ul li { width: 200px; } .home-page-section-seven .ournews .accordian ul:hover li { width: 50px; } .home-page-section-seven .ournews .accordian ul li:hover { width: 800px; } .home-page-section-seven .ournews .accordian ul li img { width: 800px; } .home-page-section-seven .ournews .accordian ul li .image_title { width: 800px; } .home-page-section-seven .ournews .accordian ul li .image_title h3 { padding: 10px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title i { padding: 10px 20px 0; } .home-page-section-seven .ournews .accordian ul li .image_title .ournews-accordian-btn { margin:10px 20px; } } @media (min-width: 1680px) and (max-width: 1920px) { .menu .menu-section nav ul a { font-size: 4em; } } /*** END SCREENS SIZSES ***/ /******----END Home PAGE----******/ /*======================================================================*/ /******----START ABOUT PAGE----******/ /* START ABOUT-BAGROUND BACKGROUND SECTION */ .about-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END ABOUT-BAGROUND BACKGROUND SECTION */ /* START ABOUT-SECTION-CONTENT SECTION */ .about-section-content { color:black; text-align:center; } .about-section-content .about-us .about-us-head { margin-bottom: 5em; text-align: center; } .about-section-content .about-us .about-us-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .about-section-content .about-us p { color: rgba(0, 0, 0, .3); margin: 0; } /* END ABOUT-SECTION-CONTENT SECTION */ /* START ABOUTUS-CONTENT SECTION */ .aboutus-content { background: #F6F6F6; padding: 60px 0; } .aboutus-content .aboutus-info { display: inline-block; margin-bottom: 6em; } .aboutus-content .aboutus-info:last-child { margin-bottom: 0; } .aboutus-content .aboutus-info.part-one:hover, .aboutus-content .aboutus-info.part-two:hover, .aboutus-content .aboutus-info.part-three:hover, .aboutus-content .aboutus-info.part-four:hover { box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); -moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); } .aboutus-content .aboutus-info img { width: 50%; } .aboutus-content .aboutus-desc { background: #fff; width: 50%; padding: 35px 50px; height: 400px; } .aboutus-content .aboutus-desc h3 { font-size: 2.8em; color: rgba(0, 0, 0, .7); font-weight: 300; margin: 22px 0; } .aboutus-content .aboutus-desc p { color: rgba(0, 0, 0, .32); font-size: 14px; } .aboutus-content .aboutus-info.part-one img, .aboutus-content .aboutus-info.part-one .aboutus-desc, .aboutus-content .aboutus-info.part-three img, .aboutus-content .aboutus-info.part-three .aboutus-desc { float: left; } .aboutus-content .aboutus-info.part-two img, .aboutus-content .aboutus-info.part-two .aboutus-desc, .aboutus-content .aboutus-info.part-four img, .aboutus-content .aboutus-info.part-four .aboutus-desc {float:right;} /* END ABOUTUS-CONTENT SECTION */ /*** START ABOUT PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .about-section-content .about-us .about-us-head { margin-bottom: 3em; } .about-section-content .about-us .about-us-head h2 { font-size: 2em; } .aboutus-content .aboutus-info { margin-bottom: 3em; } .aboutus-content .aboutus-info img { width: 100%; } .aboutus-content .aboutus-desc { width: 100%; padding: 13px 30px; } .aboutus-content .aboutus-desc h3 { font-size: 2.1em; margin: 15px 0; } } @media (min-width: 480px) and (max-width: 736px) { .about-section-content .about-us .about-us-head { margin-bottom: 3em; } .about-section-content .about-us .about-us-head h2 { font-size: 2em; } .aboutus-content .aboutus-info { margin-bottom: 3em; } .aboutus-content .aboutus-info img { width: 100%; } .aboutus-content .aboutus-desc { width: 100%; padding: 13px 30px; } .aboutus-content .aboutus-desc h3 { font-size: 2.1em; margin: 15px 0; } } @media (min-width: 736px) and (max-width: 980px) { .aboutus-content .aboutus-info { margin-bottom: 4em; } .aboutus-content .aboutus-info img { width: 100%; } .aboutus-content .aboutus-desc { width: 100%; padding: 35px 50px; } .aboutus-content .aboutus-desc h3 { margin: 25px 0; font-size: 2.8em; } } @media (min-width: 980px) and (max-width: 1280px) { .aboutus-content .aboutus-info { margin-bottom: 6em; } .aboutus-content .aboutus-info img { width: 50%; height: 400px; } .aboutus-content .aboutus-desc { width: 50%; padding: 20px 30px; height: 400px; } .aboutus-content .aboutus-desc h3 { font-size: 2.8em; margin: 22px 0; } } @media (min-width: 1280px) and (max-width: 1680px) { .aboutus-content .aboutus-info { margin-bottom: 6em; } .aboutus-content .aboutus-info img { width: 50%; height: 400px; } .aboutus-content .aboutus-desc { width: 50%; padding: 35px 50px; height: 400px; } .aboutus-content .aboutus-desc h3 { margin: 22px 0; } } @media (min-width: 1680px) and (max-width: 1920px) { .aboutus-content .aboutus-info img { height: 400px; } } /*** END ABOUT PAGE SCREENS SIZSES ***/ /******----END ABOUT PAGE----******/ /*======================================================================*/ /******----START AUTHOR'S PROFILE PAGE----******/ /* START AUTHOR-PROFILE-PAGE-BACKGROUND SECTION */ .author-profile-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END AUTHOR-PROFILE-PAGE-BACKGROUND SECTION */ /* START AUTHOR-PROFILE-PAGE-CONTENT SECTION */ .author-profile-page-content .author-profile-content-head { margin-bottom: 5em; text-align: center; } .author-profile-page-content .author-profile-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .author-profile-page-content .author-profile-content-details .author-pic { padding-right: 0; text-align: center; display: block; } .author-profile-page-content .author-profile-content-details .author-pic a img { height: 200px; width: 200px; border-radius: 50%; } .author-profile-page-content .author-profile-content-details .author-profile-body { vertical-align: top; display: inline-block; } .author-profile-page-content .author-profile-content-details .author-profile-body .author-name { margin-top: 10px; margin-bottom: 10px; } .author-profile-page-content .author-profile-content-details .author-profile-body .author-name a { font-size: 18px; color: #2E3841; font-weight: 600; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .author-profile-page-content .author-profile-content-details .author-profile-body .author-details p { color: rgba(0,0,0,0.5); margin: 0; font-size: 14px; } /* END AUTHOR-PROFILE-PAGE-CONTENT SECTION */ /*** START AUTHOR'S PROFILE PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .author-profile-page-content .author-profile-content-head { margin-bottom: 3em; } .author-profile-page-content .author-profile-content-head h2 { font-size: 2em; } .author-profile-page-content .author-profile-content-details .author-profile-body { display: block; margin-top: 25px; text-align: center } } @media (min-width: 480px) and (max-width: 736px) { .author-profile-page-content .author-profile-content-head { margin-bottom: 3em; } .author-profile-page-content .author-profile-content-head h2 { font-size: 2em; } .author-profile-page-content .author-profile-content-details .author-profile-body { display: block; margin-top: 25px; text-align: center } } /*** END AUTHOR'S PROFILE PAGE SCREENS SIZSES ***/ /******----END AUTHOR'S PROFILE PAGE----******/ /*======================================================================*/ /******----START AUTHORS PAGE----******/ /* START AUTHORS-PAGE-BACKGROUND SECTION */ .authors-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END AUTHORS-PAGE-BACKGROUND SECTION */ /* START AUTHORS-NAMES SECTION */ .authors-names { padding: 30px 0px; text-align: center; } .authors-names h3 { display: inline-block; color: #fff; margin-right: 13px; margin-bottom: 0; margin-top: 0; } .authors-names a { display: inline; margin-right: 14px; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; color: rgba(250,250,250,.5); text-decoration: none; outline: none; padding: 1px 2px; } .authors-names a:last-of-type { margin-right: 0; } .authors-names .active { color: #fff; border-bottom: 1px solid; border-top: 1px solid; } .authors-names a:hover, .authors-names a:focus { color: #fff; border-bottom: 1px solid; border-top: 1px solid; } /* END AUTHORS-NAMES SECTION */ /* START AUTHORS-PAGE-CONTENT SECTION */ .authors-page-content .authors-page-content-head { margin-bottom: 5em; text-align: center; } .authors-page-content .authors-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .authors-page-content .all-authors { margin-bottom: 40px; } .authors-page-content .all-authors .author-info { position: relative; margin-right: auto; margin-left: auto; width: 180px; margin-bottom: 2em; -webkit-transition: all 0.35s ease-in-out; transition: all 0.35s ease-in-out; } .authors-page-content .all-authors .author-info .auth-img { display: block; } .authors-page-content .all-authors .author-info .auth-img img { border-radius: 50%; width: 180px; height: 180px; } .authors-page-content .all-authors .author-info h3 { text-align: center; margin: 0; } .authors-page-content .all-authors .author-info h3 .auth-name { color: rgba(0,0,0,.7); font-size: 1.3em; font-weight: 400; padding: 20px 0px 10px 0px; display: block; } .authors-page-content .page-number { width: 100%; text-align: center; margin-bottom: 0; padding: 0; } .authors-page-content .page-number li { display: inline; margin-right: 14px; } .authors-page-content .page-number li:last-of-type { margin-right: 0px; } .authors-page-content .page-number li a { color: rgba(0,0,0,.7); text-decoration: none; font-size: 1.2em; padding: 1px 2px; } .authors-page-content .page-number .fa-angle-double-right, .authors-page-content .page-number .fa-angle-double-left, .authors-page-content .page-number .fa-angle-right, .authors-page-content .page-number .fa-angle-left { font-size: 1.3em; padding:0; } /* END AUTHORS-PAGE-CONTENT SECTION */ /*** START AUTHORS PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .authors-page-content .authors-page-content-head { margin-bottom: 3em; } .authors-page-content .authors-page-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .authors-page-content .authors-page-content-head { margin-bottom: 3em; } .authors-page-content .authors-page-content-head h2 { font-size: 2em; } .author-profile-page-content .author-profile-content-details .author-profile-body { display: block; margin-top: 25px; text-align: center } } /*** END AUTHORS PAGE SCREENS SIZSES ***/ /******----END AUTHORS PAGE----******/ /*======================================================================*/ /******----START BLOG GRID VIEW PAGE----******/ /* START BLOG-GRID-PAGE-BACKGROUND SECTION */ .blog-grid-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END BLOG-GRID-PAGE-BACKGROUND SECTION */ /* START BLOG-GRID-CONTENT SECTION */ .blog-grid-content .blog-grid-content-head { margin-bottom: 5em; text-align: center; } .blog-grid-content .blog-grid-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .blog-grid-content .blog-posts .blog-post-card { margin-bottom: 30px; border: 1px solid #eaeaea; width: 100%; } .blog-grid-content .blog-posts .blog-post-card .post-pic { height: 230px; width: 100%; } .blog-grid-content .blog-posts .blog-post-card .post-pic a img { height: 100%; width: 100%; } .blog-grid-content .blog-posts .blog-post-card .post-body { padding: 30px; background: #fff; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-title { font-weight: 500; color: #3f444a; margin-bottom: 10px; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-title a { font-size: 19px; color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .post-uppercase { text-transform: uppercase; } .blog-grid-content .post-capitalize { text-transform: capitalize; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-writer { font-size: 13px; font-weight: 400; color: #5c6873; margin-bottom: 10px; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-writer a { font-size: 12px; color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel { padding: 5px 0; border-top: 1px solid #eaeaea; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-tags { padding: 0; margin: 3px 0px 5px 0; display: block; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li { font-size: 13px; text-transform: capitalize; display: inline-block; list-style: none; margin: 0 2px; background: #fff; border-radius: 0; padding: 3px 0; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li:hover a { color: #fff; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li a { font-size: 13px; padding: 5px 6px; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-comments { float: left; display: inline-block; font-size: 15px; font-weight: 400; margin: 6px 10px 3px 0; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-comments i { margin-right: 1px; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-comments a { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-share { float: left; display: inline-block; font-size: 15px; font-weight: 400; margin: 6px 10px 3px 0; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-share i { margin-right: 5px; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .post-share a { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .social-media { display: inline-block; float: left; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .social-media a { color: #2E3841; margin-right: 25px; margin-top: 8px; display: inline-block; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .blog-posts .blog-post-card .post-body .post-panel .social-media a:last-child { margin-right: 0; } .blog-grid-content .blog-posts .blog-post-card .post-body p { color: rgba(0,0,0,.5); display: block; clear: both; padding: 10px 0 10px 0; margin: 0; } .blog-grid-content .blog-posts .blog-post-card .read-more a { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-grid-content .blog-posts .blog-post-card .read-more a:hover { color: #2E3841; } .blog-grid-content .blog-posts .blog-post-card .read-more a i { padding-left: 3px; } .blog-grid-content .page-number { width: 100%; text-align: center; margin-bottom: 0; padding: 0; } .blog-grid-content .page-number li { display: inline; margin-right: 14px; } .blog-grid-content .page-number li:last-of-type { margin-right: 0px; } .blog-grid-content .page-number li a { color: rgba(0,0,0,.7); text-decoration: none; font-size: 1.2em; padding: 1px 2px; } .blog-grid-content .page-number .fa-angle-double-right, .blog-grid-content .page-number .fa-angle-double-left, .blog-grid-content .page-number .fa-angle-right, .blog-grid-content .page-number .fa-angle-left { font-size: 1.3em; padding:0; } .blog-grid-content .sidebar-menu .blog-search { width: 100%; position: relative; } .blog-grid-content .sidebar-menu .blog-search .form-control { border-color: transparent; background-color: #F4F4F4; border-radius: 0; padding-left: 20px; padding-right: 60px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; min-height: 50px; } .blog-grid-content .sidebar-menu .blog-search .search-btn { position: absolute; right: 0; top: 0; font-size: 18px; padding: 10px 16px; background-color: transparent; color: #B0B0B0; display: inline-block; outline: none; } .blog-grid-content .sidebar-menu .blog-search .search-btn:hover, .blog-grid-content .sidebar-menu .blog-search .search-btn:focus { outline: none; } .blog-grid-content .sidebar-menu .blog-categories { margin-top: 40px; } .blog-grid-content .sidebar-menu .blog-categories .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-grid-content .sidebar-menu .blog-categories .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-grid-content .sidebar-menu .blog-categories .blog-categories-submenu { margin: 0; padding: 0; } .blog-grid-content .sidebar-menu .blog-categories .blog-categories-submenu li { list-style: none; padding: 7px 0; border-bottom: 1px solid #EAEAEA; } .blog-grid-content .sidebar-menu .blog-categories .blog-categories-submenu li a { color: #2E3841; font-size: 15px; text-decoration: none; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; font-weight: 300; } .blog-grid-content .sidebar-menu .blog-categories .blog-categories-submenu li a .fa-angle-right { margin-right: 10px; padding-left: 0; } .blog-grid-content .sidebar-menu .recent-posts { margin-top: 40px; } .blog-grid-content .sidebar-menu .recent-posts .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-grid-content .sidebar-menu .recent-posts .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-grid-content .sidebar-menu .recent-posts .recent-post { margin-bottom: 25px; } .blog-grid-content .sidebar-menu .recent-posts .recent-post:last-child { margin-bottom: 0; } .blog-grid-content .sidebar-menu .recent-posts .recent-post-pic { margin-bottom: 5px; width: 100%; } .blog-grid-content .sidebar-menu .recent-posts .recent-post .recent-post-pic a img { width: 100%; height: 160px; } .blog-grid-content .sidebar-menu .recent-posts .recent-post .recent-post-title { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; text-decoration: none; font-size: 16px; } .blog-grid-content .sidebar-menu .recent-posts .recent-post span { display: block; font-size: 14px; font-weight: 100; color: rgba(0,0,0,.5); } .blog-grid-content .sidebar-menu .recent-posts .recent-post span a { color: #2E3841; font-size: 12px; } .blog-grid-content .sidebar-menu .blog-archives { margin-top: 40px; } .blog-grid-content .sidebar-menu .blog-archives .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-grid-content .sidebar-menu .blog-archives .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-grid-content .sidebar-menu .blog-archives .blog-archives-submenu { margin: 0; padding: 0 } .blog-grid-content .sidebar-menu .blog-archives .blog-archives-submenu li { list-style: none; padding: 7px 0; border-bottom: 1px solid #EAEAEA; } .blog-grid-content .sidebar-menu .blog-archives .blog-archives-submenu li a { color: #2E3841; font-size: 15px; text-decoration: none; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; font-weight: 300; } .blog-grid-content .sidebar-menu .blog-archives .blog-archives-submenu li a .fa-angle-right { margin-right: 10px; padding-left: 0; } /* END BLOG-GRID-CONTENT SECTION */ /*** START BLOG GRID VIEW SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .blog-grid-content .blog-grid-content-head { margin-bottom: 3em; } .blog-grid-content .blog-grid-content-head h2 { font-size: 2em; } .blog-grid-content .blog-posts { padding-right: 0px; } .blog-grid-content .page-number { padding-bottom: 60px; } } @media (min-width: 480px) and (max-width: 736px) { .blog-grid-content .blog-grid-content-head { margin-bottom: 3em; } .blog-grid-content .blog-grid-content-head h2 { font-size: 2em; } .blog-grid-content .blog-posts{ padding-right: 0px; } .blog-grid-content .page-number { padding-bottom: 60px; } } @media (min-width: 736px) and (max-width: 980px) { .blog-grid-content .blog-posts { padding-right: 0px; } .blog-grid-content .page-number { padding-bottom: 60px; } } @media (min-width: 980px) and (max-width: 1280px) { .blog-grid-content .blog-posts { padding-right: 45px; } } @media (min-width: 1280px) and (max-width: 1680px) { .blog-grid-content .blog-posts{ padding-right: 45px; } } @media (min-width: 1680px) and (max-width: 1920px) { .blog-grid-content .blog-posts { padding-right: 45px; } } /*** END BLOG GRID VIEW SCREENS SIZSES ***/ /******----END BLOG-GRID-CONTENT PAGE----******/ /*======================================================================*/ /******----START BLOG LIST VIEW PAGE----******/ /* START BLOG-LIST-PAGE-BACKGROUND SECTION */ .blog-list-view-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END BLOG-LIST-PAGE-BACKGROUND SECTION */ /* START BLOG-LIST-CONTENT SECTION */ .blog-list-content .blog-list-content-head { margin-bottom: 5em; text-align: center; } .blog-list-content .blog-list-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .blog-list-content .blog-post-card { margin-bottom: 30px; border: 1px solid #eaeaea; width: 100%; } .blog-list-content .blog-posts .blog-post-card .full-pic { height: 100%; width: 100%; } .blog-list-content .blog-posts .blog-post-card .post-pic a img { height: 100%; width: 100%; } .blog-list-content .blog-posts .blog-post-card .post-body { padding: 30px; background: #fff; } .blog-list-content .blog-posts .blog-post-card .post-body .post-title { font-weight: 500; color: #3f444a; margin-bottom: 10px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-title a { font-size: 19px; color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-list-content .post-uppercase { text-transform: uppercase; } .blog-list-content .post-capitalize { text-transform: capitalize; } .blog-list-content .blog-posts .blog-post-card .post-body .post-writer { font-size: 13px; font-weight: 400; color: #5c6873; margin-bottom: 10px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-writer a { font-size: 12px; color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel { padding: 5px 0; border-top: 1px solid #eaeaea; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel { padding: 5px 0; border-top: 1px solid #eaeaea; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-tags { padding: 0; margin: 3px 0px 5px 0; display: block; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li { font-size: 13px; text-transform: capitalize; display: inline-block; list-style: none; margin: 0 2px; background: #fff; border-radius: 0; padding: 3px 0; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li:hover a { color: #fff; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li a { font-size: 13px; padding: 5px 6px; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-comments { float: left; display: inline-block; font-size: 15px; font-weight: 400; margin: 6px 10px 3px 0; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-comments a { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-comments i { margin-right: 1px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-share { float: left; display: inline-block; font-size: 15px; font-weight: 400; margin: 6px 10px 3px 0; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-share i { margin-right: 5px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .post-share a { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .social-media { display: inline-block; float: left; margin-left: 5px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .social-media a { color: #2E3841; margin-right: 25px; margin-top: 8px; display: inline-block; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; margin-top: 2px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .social-media a:last-child { margin-right: 0; } .blog-list-content .blog-posts .blog-post-card .post-body p { color: rgba(0,0,0,.5); display: block; clear: both; padding: 10px 0 10px 0; margin: 0; } .blog-list-content .blog-posts .blog-post-card .read-more a { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-list-content .blog-posts .blog-post-card .read-more a:hover { color: #2E3841; } .blog-list-content .blog-posts .blog-post-card .read-more a i { padding-left: 3px; } .blog-list-content .page-number { width: 100%; text-align: center; margin-bottom: 0; padding: 0; } .blog-list-content .page-number li { display: inline; margin-right: 14px; } .blog-list-content .page-number li:last-of-type { margin-right: 0px; } .blog-list-content .page-number li a { color: rgba(0,0,0,.7); text-decoration: none; font-size: 1.2em; padding: 1px 2px; } .blog-list-content .page-number .fa-angle-double-right, .blog-list-content .page-number .fa-angle-double-left, .blog-list-content .page-number .fa-angle-right, .blog-list-content .page-number .fa-angle-left { font-size: 1.3em; padding:0; } .blog-list-content .sidebar-menu .blog-search { width: 100%; position: relative; } .blog-list-content .sidebar-menu .blog-search .form-control { border-color: transparent; background-color: #F4F4F4; border-radius: 0; padding-left: 20px; padding-right: 60px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; min-height: 50px; } .blog-list-content .sidebar-menu .blog-search .search-btn { position: absolute; right: 0; top: 0; font-size: 18px; padding: 10px 16px; background-color: transparent; color: #B0B0B0; display: inline-block; outline: none; } .blog-list-content .sidebar-menu .blog-search .search-btn:hover, .blog-list-content .sidebar-menu .blog-search .search-btn:focus { outline: none; } .blog-list-content .sidebar-menu .blog-categories { margin-top: 40px; } .blog-list-content .sidebar-menu .blog-categories .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-list-content .sidebar-menu .blog-categories .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-list-content .sidebar-menu .blog-categories .blog-categories-submenu { margin: 0; padding: 0; } .blog-list-content .sidebar-menu .blog-categories .blog-categories-submenu li { list-style: none; padding: 7px 0; border-bottom: 1px solid #EAEAEA; } .blog-list-content .sidebar-menu .blog-categories .blog-categories-submenu li a { color: #2E3841; font-size: 15px; text-decoration: none; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; font-weight: 300; } .blog-list-content .sidebar-menu .blog-categories .blog-categories-submenu li a .fa-angle-right { margin-right: 10px; padding-left: 0; } .blog-list-content .sidebar-menu .recent-posts { margin-top: 40px; } .blog-list-content .sidebar-menu .recent-posts .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-list-content .sidebar-menu .recent-posts .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-list-content .sidebar-menu .recent-posts .recent-post { margin-bottom: 25px; } .blog-list-content .sidebar-menu .recent-posts .recent-post:last-child { margin-bottom: 0; } .blog-list-content .sidebar-menu .recent-posts .recent-post-pic { margin-bottom: 5px; width: 100%; } .blog-list-content .sidebar-menu .recent-posts .recent-post .recent-post-pic a img { width: 100%; height: 160px; } .blog-list-content .sidebar-menu .recent-posts .recent-post .recent-post-title { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; text-decoration: none; font-size: 16px; } .blog-list-content .sidebar-menu .recent-posts .recent-post span { display: block; font-size: 14px; font-weight: 100; color: rgba(0,0,0,.5); } .blog-list-content .sidebar-menu .recent-posts .recent-post span a { color: #2E3841; font-size: 12px; } .blog-list-content .sidebar-menu .blog-archives { margin-top: 40px; } .blog-list-content .sidebar-menu .blog-archives .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-list-content .sidebar-menu .blog-archives .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-list-content .sidebar-menu .blog-archives .blog-archives-submenu { margin: 0; padding: 0 } .blog-list-content .sidebar-menu .blog-archives .blog-archives-submenu li { list-style: none; padding: 7px 0; border-bottom: 1px solid #EAEAEA; } .blog-list-content .sidebar-menu .blog-archives .blog-archives-submenu li a { color: #2E3841; font-size: 15px; text-decoration: none; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; font-weight: 300; } .blog-list-content .sidebar-menu .blog-archives .blog-archives-submenu li a .fa-angle-right { margin-right: 10px; padding-left: 0; } /* END BLOG-LIST-CONTENT SECTION */ /*** START BLOG LIST VIEW SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .blog-list-content .blog-list-content-head { margin-bottom: 3em; } .blog-list-content .blog-list-content-head h2 { font-size: 2em; } .blog-list-content .blog-posts { padding-right: 0px; } .blog-list-content .page-number { padding-bottom: 60px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .social-media { margin-left: 0px; } .blog-list-content .blog-posts .blog-post-card .post-body .post-panel .social-media a { margin-top: 8px; } } @media (min-width: 480px) and (max-width: 736px) { .blog-list-content .blog-list-content-head { margin-bottom: 3em; } .blog-list-content .blog-list-content-head h2 { font-size: 2em; } .blog-list-content .blog-posts{ padding-right: 0px; } .blog-list-content .page-number { padding-bottom: 60px; } } @media (min-width: 736px) and (max-width: 980px) { .blog-list-content .blog-posts { padding-right: 0px; } .blog-list-content .page-number { padding-bottom: 60px; } } @media (min-width: 980px) and (max-width: 1280px) { .blog-list-content .blog-posts { padding-right: 45px; } } @media (min-width: 1280px) and (max-width: 1680px) { .blog-list-content .blog-posts { padding-right: 45px; } } @media (min-width: 1680px) and (max-width: 1920px) { .blog-list-content .blog-posts { padding-right: 45px; } } /*** END BLOG LIST VIEW SCREENS SIZSES ***/ /******----END BLOG LIST VIEW PAGE----******/ /*======================================================================*/ /******----START BLOG SINGLE POST PAGE----******/ /* START BLOG-POST-PAGE-BACKGROUND SECTION */ .blog-post-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END BLOG-POST-PAGE-BACKGROUND SECTION */ /* START BLOG-POST-CONTENT SECTION */ .blog-post-content .blog-list-content-head { margin-bottom: 5em; text-align: center; } .blog-post-content .blog-list-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .blog-post-content .blog-post-card { margin-bottom: 30px; border: 1px solid #eaeaea; width: 100%; } .blog-post-content .blog-posts .blog-post-card .full-pic { height: 100%; width: 100%; } .blog-post-content .blog-posts .blog-post-card .post-pic a img { height: 100%; width: 100%; } .blog-post-content .blog-posts .blog-post-card .post-body { padding: 30px; background: #fff; } .blog-post-content .blog-posts .blog-post-card .post-body .post-title { font-weight: 500; color: #3f444a; margin-bottom: 10px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-title a { font-size: 19px; color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .post-uppercase { text-transform: uppercase; } .blog-post-content .post-capitalize { text-transform: capitalize; } .blog-post-content .blog-posts .blog-post-card .post-body .post-writer { font-size: 13px; font-weight: 400; color: #5c6873; margin-bottom: 10px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-writer a { font-size: 12px; color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel { padding: 5px 0; border-top: 1px solid #eaeaea; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel { padding: 5px 0; border-top: 1px solid #eaeaea; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-tags { padding: 0; margin: 3px 0px 5px 0; display: block; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li { font-size: 13px; text-transform: capitalize; display: inline-block; list-style: none; margin: 0 2px; background: #fff; border-radius: 0; padding: 3px 0; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li:hover a { color: #fff; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-tags li a { font-size: 13px; padding: 5px 6px; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-comments { float: left; display: inline-block; font-size: 15px; font-weight: 400; margin: 6px 10px 3px 0; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-comments a { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-comments i { margin-right: 1px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-share { float: left; display: inline-block; font-size: 15px; font-weight: 400; margin: 6px 10px 3px 0; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-share i { margin-right: 5px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .post-share a { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .social-media { display: inline-block; float: left; margin-left: 5px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .social-media a { color: #2E3841; margin-right: 25px; margin-top: 8px; display: inline-block; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; margin-top: 2px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .social-media a:last-child { margin-right: 0; } .blog-post-content .blog-posts .blog-post-card .post-body p { color: rgba(0,0,0,.5); display: block; clear: both; padding: 10px 0 10px 0; margin: 0; } .blog-post-content .sidebar-menu .blog-search { width: 100%; position: relative; } .blog-post-content .sidebar-menu .blog-search .form-control { border-color: transparent; background-color: #F4F4F4; border-radius: 0; padding-left: 20px; padding-right: 60px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; min-height: 50px; } .blog-post-content .sidebar-menu .blog-search .search-btn { position: absolute; right: 0; top: 0; font-size: 18px; padding: 10px 16px; background-color: transparent; color: #B0B0B0; display: inline-block; outline: none; } .blog-post-content .sidebar-menu .blog-search .search-btn:hover, .blog-post-content .sidebar-menu .blog-search .search-btn:focus { outline: none; } .blog-post-content .sidebar-menu .blog-categories { margin-top: 40px; } .blog-post-content .sidebar-menu .blog-categories .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-post-content .sidebar-menu .blog-categories .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-post-content .sidebar-menu .blog-categories .blog-categories-submenu { margin: 0; padding: 0; } .blog-post-content .sidebar-menu .blog-categories .blog-categories-submenu li { list-style: none; padding: 7px 0; border-bottom: 1px solid #EAEAEA; } .blog-post-content .sidebar-menu .blog-categories .blog-categories-submenu li a { color: #2E3841; font-size: 15px; text-decoration: none; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; font-weight: 300; } .blog-post-content .sidebar-menu .blog-categories .blog-categories-submenu li a .fa-angle-right { margin-right: 10px; padding-left: 0; } .blog-post-content .sidebar-menu .recent-posts { margin-top: 40px; } .blog-post-content .sidebar-menu .recent-posts .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-post-content .sidebar-menu .recent-posts .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-post-content .sidebar-menu .recent-posts .recent-post { margin-bottom: 25px; } .blog-post-content .sidebar-menu .recent-posts .recent-post:last-child { margin-bottom: 0; } .blog-post-content .sidebar-menu .recent-posts .recent-post-pic { margin-bottom: 5px; width: 100%; } .blog-post-content .sidebar-menu .recent-posts .recent-post .recent-post-pic a img { width: 100%; height: 160px; } .blog-post-content .sidebar-menu .recent-posts .recent-post .recent-post-title { color: #2E3841; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; text-decoration: none; font-size: 16px; } .blog-post-content .sidebar-menu .recent-posts .recent-post span { display: block; font-size: 14px; font-weight: 100; color: rgba(0,0,0,.5); } .blog-post-content .sidebar-menu .recent-posts .recent-post span a { color: #2E3841; font-size: 12px; } .blog-post-content .sidebar-menu .blog-archives { margin-top: 40px; } .blog-post-content .sidebar-menu .blog-archives .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-post-content .sidebar-menu .blog-archives .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-post-content .sidebar-menu .blog-archives .blog-archives-submenu { margin: 0; padding: 0 } .blog-post-content .sidebar-menu .blog-archives .blog-archives-submenu li { list-style: none; padding: 7px 0; border-bottom: 1px solid #EAEAEA; } .blog-post-content .sidebar-menu .blog-archives .blog-archives-submenu li a { color: #2E3841; font-size: 15px; text-decoration: none; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; font-weight: 300; } .blog-post-content .sidebar-menu .blog-archives .blog-archives-submenu li a .fa-angle-right { margin-right: 10px; padding-left: 0; } .blog-post-content .persons-comments { padding-right: 45px; margin-bottom: 60px; } .blog-post-content .persons-comments .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-post-content .persons-comments .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-post-content .persons-comments .person-comment { margin-bottom: 30px; } .blog-post-content .persons-comments .person-comment .comment-pic { padding-right: 20px; display: table-cell; } .blog-post-content .persons-comments .person-comment .comment-pic a img { height: 50px; width: 50px; } .blog-post-content .persons-comments .person-comment .comment-body { display: table-cell; vertical-align: top; } .blog-post-content .persons-comments .person-comment .comment-body .comment-writer { margin-top: 0; margin-bottom: 5px; } .blog-post-content .persons-comments .person-comment .comment-body .comment-writer a { color: #2E3841; font-size: 13px; font-weight: 600; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .persons-comments .person-comment .comment-body p { color: rgba(0,0,0,.5); font-size: 13px; } .blog-post-content .persons-comments .person-comment .comment-body .comment-info { font-size: 13px; font-weight: 400; color: #5c6873; } .blog-post-content .persons-comments .person-comment .comment-body .comment-info .comment-time { font-size: 13px; font-weight: 400; color: #5c6873; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .persons-comments .person-comment .comment-body .comment-info .reply-button { font-size: 13px; font-weight: 400; color: #5c6873; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply { margin-top: 15px; margin-bottom: 0px; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-pic { padding-right: 20px; display: table-cell; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-pic a img { height: 50px; width: 50px; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-body { display: table-cell; vertical-align: top; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-body .comment-reply-writer { margin-top: 0; margin-bottom: 5px; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-body .comment-reply-writer a { color: #2E3841; font-size: 13px; font-weight: 600; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-body .comment-reply-body p { color: rgba(0,0,0,.5); font-size: 13px; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-body .comment-reply-info { font-size: 13px; font-weight: 400; color: #5c6873; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-body .comment-reply-info .comment-reply-time { font-size: 13px; font-weight: 400; color: #5c6873; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .persons-comments .person-comment .comment-body .comment-reply .comment-reply-body .comment-reply-info .reply-button { font-size: 13px; font-weight: 400; color: #5c6873; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .blog-post-content .persons-comments .comments-btn { background-color: transparent; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; border-radius: 0; outline: none; } .blog-post-content .persons-comments .comments-btn:hover, .blog-post-content .persons-comments .comments-btn:focus { color: #fff; outline: none; } .blog-post-content .post-comment { padding-right: 45px; margin-bottom: 60px; } .blog-post-content .post-comment .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .blog-post-content .post-comment .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .blog-post-content .post-comment .user-details form .form-group h5 { color: #2E3841; } .blog-post-content .post-comment .user-details form .form-group .form-control { border-radius: 0; } .blog-post-content .post-comment .user-details form .form-group .form-control:focus { outline: 0; -webkit-box-shadow: none; box-shadow: none; } .blog-post-content .post-comment .user-details textarea.form-control { height: 180px; } /* END BLOG-POST-CONTENT SECTION */ /*** START BLOG POST VIEW SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .blog-post-content .blog-posts { padding-right: 0px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .social-media { margin-left: 0px; } .blog-post-content .blog-posts .blog-post-card .post-body .post-panel .social-media a { margin-top: 8px; } .blog-post-content .persons-comments { padding-right: 0px; margin-bottom: 60px; } .blog-post-content .post-comment.persons-comments { margin-bottom: 60px; } } @media (min-width: 480px) and (max-width: 736px) { .blog-post-content .blog-posts{ padding-right: 0px; } .blog-post-content .persons-comments { padding-right: 0px; margin-bottom: 60px; } } @media (min-width: 736px) and (max-width: 980px) { .blog-post-content .blog-posts { padding-right: 0px; } .blog-post-content .persons-comments { padding-right: 0px; margin-bottom: 60px; } } @media (min-width: 980px) and (max-width: 1280px) { .blog-post-content .blog-posts { padding-right: 45px; } .blog-post-content .persons-comments { padding-right: 45px; } } @media (min-width: 1280px) and (max-width: 1680px) { .blog-post-content .blog-posts { padding-right: 45px; } .blog-post-content .persons-comments { padding-right: 45px; } } @media (min-width: 1680px) and (max-width: 1920px) { .blog-post-content .blog-posts { padding-right: 45px; } .blog-post-content .persons-comments { padding-right: 45px; } } /*** END BLOG POST VIEW SCREENS SIZSES ***/ /******----END BLOG SINGLE POST PAGE----******/ /*======================================================================*/ /******----START OUR BOOK PAGE----******/ /* START BOOK-PAGE-BACKGROUND SECTION */ .book-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END BOOK-PAGE-BACKGROUND SECTION */ /* START BOOK-PAGE-BACKGROUND SECTION */ .book-content .book-content-head { margin-bottom: 5em; text-align: center; } .book-content .book-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .book-content .book-content-body .book-img { margin-bottom:10px; } .book-content .book-content-body .book-img img { width: 100%; } .book-content .book-content-body .book-details .post-review .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .book-content .book-content-body .book-details .post-review .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .book-content .book-content-body .book-details .book-tags { display: block; font-weight: 400; margin: 0px 10px; font-size: 13px; padding-top: 3px; color: rgba(0, 0, 0, .5); } .book-content .book-content-body .book-details .book-tags .book-tag { font-weight: 400; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; font-size: 12px; } .book-content .book-content-body .book-details .book-tags .book-tag.book-tag-blacky { color: rgba(0, 0, 0, .5); } .book-content .book-content-body .book-details .book-tags .book-tag.book-tag-blacky:hover, .book-content .book-content-body .book-details .book-tags .book-tag.book-tag-blacky:focus { color: #000; } .book-content .book-content-body .book-details .book-tags .price-number-after { position: relative; display: inline; } .book-content .book-content-body .book-details .payment-way img { width: 240px; } .book-content .book-content-body .book-details .social-media a { display: inline-block; margin-right: 37px; transition: .3s ease-in-out all; -webkit-transition: .3s ease-in-out all; -moz-transition: .3s ease-in-out all; color: #2E3841; margin-top: 8px; } .book-content .book-content-body .book-details .nav-tabs { border-bottom: 0px; margin-top: 20px; margin-bottom: 20px; } .book-content .book-content-body .book-details .nav-tabs li a { margin-right: 0px; border-bottom: 1px solid #ddd; } .book-content .book-content-body .book-details .nav-tabs li.active a { border-bottom-color: transparent; } .book-content .book-content-body .book-details .tab-content .tab-pane-about-this-books p { color: rgba(0, 0, 0, .5); font-size: 13px; } .book-content .book-content-body .book-details .tab-content .tab-pane-about-this-books a.more { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; text-transform: capitalize; cursor: pointer; } .book-content .book-content-body .book-details .tab-content .tab-pane-about-this-books a.more:hover { color: #000; } .book-content .book-content-body .book-details .tab-content .tab-pane-about-this-books a.more i { margin-left: 4px; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .book-content .book-content-body .book-details .tab-content .tab-pane-about-this-books a.more i:hover { color:#000; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details dl dt { color: #2E3841; padding-top: 20px; border-top: 1px solid #eaeaea; text-align: center; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details dl dt:first-child { border-top: none; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details dl dd { color: rgba(0, 0, 0, .5); padding-bottom: 20px; text-align: center; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details dl dd .price-number-after { position: relative; display: inline; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details .softcover-details-btn { text-align: center; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details .softcover-details-btn .softcover-book-btn { margin-top: 0; border-radius: 0; background: transparent; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; padding: 8px 24px; letter-spacing: 0.075em; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details .softcover-details-btn .softcover-book-btn:hover, .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details .softcover-details-btn .softcover-book-btn:focus { color: #fff; } .book-content .book-content-body .book-details .tab-content .tab-pane-softcover-details .softcover-details-btn .softcover-book-btn .fa-angle-right { padding: 0 0 0 .5em; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details dl dt { color: #2E3841; padding-top: 20px; border-top: 1px solid #eaeaea; text-align: center; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details dl dt:first-child { border-top: none; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details dl dd { color: rgba(0, 0, 0, .5); padding-bottom: 20px; text-align: center; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details dl dd .price-number-after { position: relative; display: inline; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details .ebook-details-btn { text-align: center; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details .ebook-details-btn .ebook-book-btn { margin-top: 0; border-radius: 0; background: transparent; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; padding: 8px 24px; letter-spacing: 0.075em; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details .ebook-details-btn .ebook-book-btn:hover, .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details .ebook-details-btn .ebook-book-btn:focus { color: #fff; } .book-content .book-content-body .book-details .tab-content .tab-pane-ebook-details .ebook-details-btn .ebook-book-btn .fa-angle-right { padding: 0 0 0 .5em; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment { margin-bottom: 30px; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-pic { padding-right: 20px; display: table-cell; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-pic a img { height: 50px; width: 50px; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-body { display: table-cell; vertical-align: top; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-body .comment-writer { margin-top: 0; margin-bottom: 5px; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-body .comment-writer a { color: #2E3841; font-size: 13px; font-weight: 600; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-body p { color: rgba(0,0,0,.5); font-size: 13px; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-body .comment-info { font-size: 13px; font-weight: 400; color: #5c6873; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-body .comment-info .comment-time { font-size: 13px; font-weight: 400; color: #5c6873; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .person-comment .comment-body .comment-info .reply-button { font-size: 13px; font-weight: 400; color: #5c6873; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .subheading h4 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .form-group h5 { color: #2E3841; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .form-group .form-control { border-radius: 0; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .form-group .form-control:focus { outline: 0; -webkit-box-shadow: none; box-shadow: none; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .form-group textarea.form-control { height: 180px; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .book-rating { margin-bottom: 15px; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .book-rating .rating-word { color:#2E3841; font-size: 17px; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .book-reviews-btn { background-color: transparent; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; border-radius: 0; outline: none; } .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .book-reviews-btn:hover, .book-content .book-content-body .book-details .tab-content .tab-pane-reviews .post-review .user-details form .book-reviews-btn:focus { color: #fff; outline: none; } /* END BOOK-PAGE-BACKGROUND SECTION */ /*** START OUR BOOK SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .book-content .book-content-head { margin-bottom: 3em; } .book-content .book-content-head h2 { font-size: 2em; } .book-content .social-media { margin-left: 0px; }.book-content .book-content .social-media a { margin-top: 8px; } } @media (min-width: 480px) and (max-width: 736px) { .book-content .book-content-head { margin-bottom: 3em; } .book-content .book-content-head h2 { font-size: 2em; } } /*** END OUR BOOK SCREENS SIZSES ***/ /******----END OUR BOOK PAGE----******/ /*======================================================================*/ /******----START OUR BOOKS PAGE----******/ /* START BOOKSPAGE-BACKGROUND SECTION */ .bookspage-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END BOOKSPAGE-BACKGROUND SECTION */ /* START BOOKSPAGE-SECTION Section */ .bookspage-content .bookspage-body .bookspage-content-head { margin-bottom: 5em; text-align: center; } .bookspage-content .bookspage-body .bookspage-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .bookspage-content .bookspage-body .books-list { padding-bottom: 2em; } .bookspage-content .bookspage-body .books-list .book-part .book-cart { overflow: hidden; max-width: 220px; height: 372px; margin-left: auto; margin-right: auto; margin-bottom: 3em; border-radius: 10px; border: 1px solid rgba(0,0,0,.1); background: transparent; position: relative; display: block; -webkit-box-sizing: border-box; box-sizing: border-box; } .bookspage-content .bookspage-body .books-list .book-part .book-cart img { vertical-align: top; height: 200px; width: 100%; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .icons { padding: 10px; display: flex; flex-direction: column; justify-content: flex-start; top: 0; bottom: 0; right: 0; left: 0; position: absolute; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .icons * { -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .icons a { margin: 2px; opacity: 0; -webkit-transform: translateY(100%); transform: translateY(100%); text-decoration: none; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .icons a i { font-size: 15.529px; line-height: 30px; width: 33px; display: block; text-align: center; color: #000; background-color: #fff; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .icons a i:hover { color: #fff; cursor: pointer; } .bookspage-content .bookspage-body .books-list .book-part .book-cart:hover .icons a{ opacity: 1; -webkit-transform: translate(0px, 0px); transform: translate(0px, 0px); } .bookspage-content .bookspage-body .books-list .book-part .book-cart:hover .icons a:nth-child(2){ -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } .bookspage-content .bookspage-body .books-list .book-part .book-cart:hover .icons a:nth-child(3){ -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy { height: 170px; bottom: 0; right: 0; left: 0; position: absolute; background-color: #fff; color: #fff; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc { display: block; color: #fff; padding: 2px 0; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .head { font-size: 1em; margin: 5px 10px 6px 10px; text-transform: capitalize; display: block; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .head-blacky, .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .head-blacky:hover, .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .head-blacky:focus { color: #000; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .book-tags { margin: 0px 10px; font-size: 13px; padding-top: 3px; font-weight: 400; display: block; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .book-tags .book-tag { font-size: 12px; font-weight: 400; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .book-tag-blacky { color: rgba(0, 0, 0, .5); } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:hover, .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-desc .book-tags .book-tag.book-tag-blacky:focus { color: #000; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .line-blacky { width: 90%; margin: 0px 11px 0; border-top: 1px solid #E8E8E8; position: absolute; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-price { padding: 5px 11px 4px; font-size: 16px; margin-top: 1px; text-decoration: none; display: block; text-align: center; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-price.main-color { color: #000; } .bookspage-content .bookspage-body .books-list .book-part .book-cart .divy .book-price .price-number-after { position: relative; display: inline; } .bookspage-content .book-tag-whitey { color: rgba(250, 250, 250, .5); } .bookspage-content .bookspage-body .page-number { width: 100%; text-align: center; margin-bottom: 0; padding: 0; } .bookspage-content .bookspage-body .page-number li { display: inline; margin-right: 14px; } .bookspage-content .bookspage-body .page-number li:last-of-type { margin-right: 0px; } .bookspage-content .bookspage-body .page-number li a { color: rgba(0,0,0,.7); text-decoration: none; font-size: 1.2em; padding: 1px 2px; } .bookspage-content .bookspage-body .page-number .fa-angle-double-right, .bookspage-content .bookspage-body .page-number .fa-angle-double-left, .bookspage-content .bookspage-body .page-number .fa-angle-right, .bookspage-content .bookspage-body .page-number .fa-angle-left { font-size: 1.3em; padding:0; } /* END BOOKSPAGE-SECTION Section */ /*** START OUR BOOK SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .bookspage-content .bookspage-body .bookspage-content-head { margin-bottom: 3em; } .bookspage-content .bookspage-body .bookspage-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .bookspage-content .bookspage-body .bookspage-content-head { margin-bottom: 3em; } .bookspage-content .bookspage-body .bookspage-content-head h2 { font-size: 2em; } } /*** END OUR BOOK SCREENS SIZSES ***/ /******----END OUR BOOKS PAGE----******/ /*======================================================================*/ /******----START CAREERS PAGE----******/ /* START CAREERS-PAGE-BACKGROUND SECTION */ .careers-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END CAREERS-PAGE-BACKGROUND SECTION */ /* START CAREERS-INFORMATION-CONTENT SECTION */ .careers-information-content .careers-information-content-head { margin-bottom: 5em; text-align: center; } .careers-information-content .careers-information-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .careers-information-content .panel-group .panel-default .panel-heading { padding: 20px 15px } .careers-information-content .panel-group .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .careers-information-content .panel-group .panel-default .panel-heading .panel-title a i { margin-right: 5px; } .careers-information-content .panel-group .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .careers-information-content .panel-group .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .careers-information-content .panel-group .panel-default .heading-four { background-color: rgba(243, 156, 18,1.0); } .careers-information-content .panel-group .panel-default .heading-seven { background-color: rgba(149, 165, 166,1.0); } .careers-information-content .panel-collapse .panel-body p { color: rgba(0,0,0,.4); font-size: 14px; } .careers-information-content .panel-group .panel-default .panel-body h4 { color: rgba(0,0,0,.8); } .careers-information-content .panel-group .panel-default .panel-body p a { text-decoration: none; padding: 3px 0; } .careers-information-content .panel-group .panel-default .panel-body .careers-title li { color: rgba(0,0,0,.4) } /* END CAREERS-INFORMATION-CONTENT SECTION */ /*** START OUR BOOK SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .careers-information-content .careers-information-content-head { margin-bottom: 3em; } .careers-information-content .careers-information-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .careers-information-content .careers-information-content-head { margin-bottom: 3em; } .careers-information-content .careers-information-content-head h2 { font-size: 2em; } } /*** END OUR BOOK SCREENS SIZSES ***/ /******----END CAREERS PAGE----******/ /*======================================================================*/ /******----START CART-EMPTY PAGE----******/ /* START CART-EMPTY-PAGE-BACKGROUND SECTION */ .cart-empty-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END CART-EMPTY-PAGE-BACKGROUND SECTION */ /* START CART-EMPTY-CONTENT SECTION */ .cart-empty-content .cart-empty-content-head { margin-bottom: 5em; text-align: center; } .cart-empty-content .cart-empty-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .cart-empty-content .cart-empty { text-align: center; } .cart-empty-content .cart-empty h3 { color: #3f444a; font-size: 30px; margin: 0; text-transform: uppercase; } .cart-empty-content .add-prdouct { font-size: 30px; } .cart-empty-content .cart-empty a { margin: 0 0 25px; display: inline-block; border-radius: 0; background: transparent; outline: none; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; padding: 8px 24px; letter-spacing: 0.075em; } .cart-empty-content .cart-empty a:hover, .cart-empty-content .cart-empty a:focus { outline: none; color: #fff; } /* END CART-EMPTY-CONTENT SECTION */ /*** START OUR BOOK SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .cart-empty-content .cart-empty-content-head { margin-bottom: 3em; } .cart-empty-content .cart-empty-content-head h2 { font-size: 2em; } .cart-empty-content .cart-empty h3 { font-size: 1.2em; } } @media (min-width: 480px) and (max-width: 736px) { .cart-empty-content .cart-empty-content-head { margin-bottom: 3em; } .cart-empty-content .cart-empty-content-head h2 { font-size: 2em; } .cart-empty-content .cart-empty h3 { font-size: 1.2em; } } /*** END OUR BOOK SCREENS SIZSES ***/ /******----END CART-EMPTY PAGE----******/ /*======================================================================*/ /******----START CART PAGE----******/ /* START CART-PAGE-BACKGROUND SECTION */ .cart-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END CART-PAGE-BACKGROUND SECTION */ /* START CART-PAGE-CONTENT SECTION */ .cart-page-content .cart-page-content-head { margin-bottom: 5em; text-align: center; } .cart-page-content .cart-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } /* Column headers */ .cart-page-content .shopping-cart-page .column-labels label { padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid #eee; color: #000; font-weight: 400; } .cart-page-content .shopping-cart-page .column-labels .product-image { float: left; width: 20%; } .cart-page-content .shopping-cart-page .column-labels .product-details { float: left; width: 37%; } .cart-page-content .shopping-cart-page .column-labels .product-price { float: left; width: 12%; color: #000; } .cart-page-content .shopping-cart-page .column-labels .product-quantity { float: left; width: 10%; } .cart-page-content .shopping-cart-page .column-labels .product-removal { float: left; width: 9%; text-align: center; } .cart-page-content .shopping-cart-page .column-labels .product-line-price { float: left; width: 12%; text-align: right; } /* This is used as the traditional .clearfix class */ .cart-page-content .clearfix .product-removal { float: right; } .cart-page-content .shopping-cart-page:before, .cart-page-content .shopping-cart-page .column-labels:before, .cart-page-content .shopping-cart-page .product:before, .cart-page-content .shopping-cart-page .totals .totals-item:before, .cart-page-content .shopping-cart-page:after, .cart-page-content .shopping-cart-page .column-labels:after, .cart-page-content .shopping-cart-page .product:after, .cart-page-content .shopping-cart-page .totals .totals-item:after { content: ''; display: table; } .cart-page-content .shopping-cart-page:after, .cart-page-content .shopping-cart-page .column-labels:after, .cart-page-content .shopping-cart-page .product:after, .cart-page-content .shopping-cart-page .totals .totals-item:after { clear: both; } .cart-page-content .shopping-cart-page, .cart-page-content .shopping-cart-page .column-labels, .cart-page-content .shopping-cart-page .product, .cart-page-content .shopping-cart-page .totals .totals-item { zoom: 1; } /* Apply dollar signs */ .cart-page-content .shopping-cart-page .product .product-price:before, .cart-page-content .shopping-cart-page .product .product-line-price:before, .cart-page-content .shopping-cart-page .totals .totals-item .totals-value:before { content: '$'; } /* Product entries */ .cart-page-content .shopping-cart-page .product { margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .cart-page-content .shopping-cart-page .product .product-image { text-align: left; float: left; width: 20%; } .cart-page-content .shopping-cart-page .product .product-image img { width: 100px; } .cart-page-content .shopping-cart-page .product .product-details { float: left; width: 37%; } .cart-page-content .shopping-cart-page .product .product-details .product-title { margin-right: 20px; color: #000; } .cart-page-content .shopping-cart-page .product .product-details .product-description { margin: 5px 20px 5px 0; color: rgba(0, 0, 0, .5); font-size: 13px; } .cart-page-content .shopping-cart-page .product .product-price { float: left; width: 12%; color: #000; } .cart-page-content .shopping-cart-page .product .product-quantity { float: left; width: 10%; } .cart-page-content .shopping-cart-page .product .product-quantity input { width: 40px; color: #000; } .cart-page-content .shopping-cart-page .product .product-removal { float: left; width: 9%; text-align: center; } .cart-page-content .shopping-cart-page .product .product-removal a { color: #000; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; cursor:pointer; } .cart-page-content .shopping-cart-page .product .product-line-price { float: left; width: 12%; text-align: right; } /* Totals section */ .cart-page-content .shopping-cart-page .totals .totals-item { float: right; clear: both; width: 100%; margin-bottom: 10px; } .cart-page-content .shopping-cart-page .totals .totals-item label { float: left; clear: both; width: 79%; text-align: right; color: #000; } .cart-page-content .shopping-cart-page .totals .totals-item .totals-value { float: right; width: 21%; text-align: right; } .cart-page-content .shopping-cart-page .cart-page-checkout-btn { float: right; margin-top: 20px; font-size: 18px; border-radius: 0; background: transparent; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; outline: none; padding: 5px 20px; text-transform: capitalize; } .cart-page-content .shopping-cart-page .cart-page-checkout-btn:hover { color: #fff; } /* END CART-PAGE-CONTENT SECTION */ /*** START CART PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .cart-page-content .cart-page-content-head { margin-bottom: 3em; } .cart-page-content .cart-page-content-head h2 { font-size: 2em; } .cart-page-content .shopping-cart-page { margin: 0; padding-top: 20px; border-top: 1px solid #eee; } .cart-page-content .shopping-cart-page .column-labels { display: none; } .cart-page-content .shopping-cart-page .product .product-image { float: right; width: 100%; text-align: center; } .cart-page-content .shopping-cart-page .product .product-image img { margin: 0 0 10px 0px; } .cart-page-content .shopping-cart-page .product .product-details { float: left; margin-bottom: 10px; width: auto; text-align: center; } .cart-page-content .shopping-cart-page .product .product-details .product-title { margin-right: 0; } .cart-page-content .shopping-cart-page .product .product-details .product-description { margin-right: 0; } .cart-page-content .shopping-cart-page .product .product-price { clear: both; width: 70px; color: #000; } .cart-page-content .shopping-cart-page .product .product-quantity { width: 100px; text-align: right; } .cart-page-content .shopping-cart-page .product .product-quantity input { margin-left: 20px; } .cart-page-content .shopping-cart-page .product .product-quantity:before { content: 'x'; } .cart-page-content .shopping-cart-page .product .product-removal { width: auto; float: right; } .cart-page-content .shopping-cart-page .product .product-line-price { float: left; width: 100%; margin-top: 20px; text-align: center; } .cart-page-content .shopping-cart-page .product .product-line-price:before { content: 'Item Total: $'; } .cart-page-content .shopping-cart-page .totals .totals-item label { width: 60%; text-align: left; } .cart-page-content .shopping-cart-page .totals .totals-item .totals-value { width: 40%; } } @media (min-width: 480px) and (max-width: 736px) { .cart-page-content .cart-page-content-head { margin-bottom: 3em; } .cart-page-content .cart-page-content-head h2 { font-size: 2em; } .cart-page-content .shopping-cart-page { margin: 0; padding-top: 20px; border-top: 1px solid #eee; } .cart-page-content .shopping-cart-page .column-labels { display: none; } .cart-page-content .shopping-cart-page .product .product-image { float: right; width: 100%; text-align: center; } .cart-page-content .shopping-cart-page .product .product-image img { margin: 0 0 10px 0px; } .cart-page-content .shopping-cart-page .product .product-details { float: left; margin-bottom: 10px; width: auto; text-align: center; } .cart-page-content .shopping-cart-page .product .product-details .product-title { margin-right: 0; } .cart-page-content .shopping-cart-page .product .product-details .product-description { margin-right: 0; } .cart-page-content .shopping-cart-page .product .product-price { clear: both; width: 70px; color: #000; } .cart-page-content .shopping-cart-page .product .product-quantity { width: 100px; text-align: right; } .cart-page-content .shopping-cart-page .product .product-quantity input { margin-left: 20px; } .cart-page-content .shopping-cart-page .product .product-quantity:before { content: 'x'; } .cart-page-content .shopping-cart-page .product .product-removal { width: auto; float: right; } .cart-page-content .shopping-cart-page .product .product-line-price { float: left; width: 100%; margin-top: 20px; text-align: center; } .cart-page-content .shopping-cart-page .product .product-line-price:before { content: 'Item Total: $'; } .cart-page-content .shopping-cart-page .totals .totals-item label { width: 60%; text-align: left; } .cart-page-content .shopping-cart-page .totals .totals-item .totals-value { width: 40%; } } /*** END CART PAGE SCREENS SIZSES ***/ /******----END CART PAGE----******/ /*======================================================================*/ /******----START CATEGORIES PAGE----******/ /* START CATEGORIES-PAGE-BACKGROUND SECTION */ .categories-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END CART-PAGE-BACKGROUND SECTION */ /* START CART-PAGE-BACKGROUND SECTION */ .categories-page-content .categories-page-content-head { margin-bottom: 5em; text-align: center; } .categories-page-content .categories-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .categories-page-content .category-part .category-cart { height: 280px; position: relative; display: block; background-color: #2266a5; color: #fff; overflow: hidden; -webkit-box-sizing: border-box; box-sizing: border-box; max-width: 220px; background: transparent; margin-left: auto; margin-right: auto; margin-bottom: 3em; border-radius: 10px; border: 1px solid rgba(0,0,0,.1); } .categories-page-content .category-part .category-cart img { height: 220px; vertical-align: top; width: 100%; } .categories-page-content .category-part .category-cart .category-divy { height: 60px; background: #fff; position: absolute; bottom: 0; left: 0; right: 0; color: #fff; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; } .categories-page-content .category-part .category-cart .category-divy span { margin: 18px 11px 0; border-top: 1px solid #E8E8E8; width: 90%; position: absolute; } .categories-page-content .category-part .category-cart .category-divy .category-desc { margin-top: 19px; margin-bottom: 0; color: #fff; display: block; } .categories-page-content .category-part .category-cart .category-divy .category-desc .category-head { transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; text-align:center; font-size: 1em; padding: 8px 10px 10px 10px; text-transform: capitalize; display: block; color: #000; } .categories-page-content .category-part .category-cart:hover .category-divy .category-desc .category-head { color: #fff; } /* END CART-PAGE-BACKGROUND SECTION */ /*** START CATEGORIES PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .categories-page-content .categories-page-content-head { margin-bottom: 3em; } .categories-page-content .categories-page-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .categories-page-content .categories-page-content-head { margin-bottom: 3em; } .categories-page-content .categories-page-content-head h2 { font-size: 2em; } } /*** END CATEGORIES PAGE SCREENS SIZSES ***/ /******----END CATEGORIES PAGE----******/ /*======================================================================*/ /******----START CHECKOUT-COMPLETE PAGE----******/ /* START CHECKOUT-COMPLETE-PAGE-BACKGROUND SECTION */ .checkout-complete-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END CHECKOUT-COMPLETE-PAGE-BACKGROUND SECTION */ /* START CHECKOUT-COMPLETE-CONTENT SECTION */ .checkout-complete-content .checkout-complete-content-head { margin-bottom: 5em; text-align: center; } .checkout-complete-content .checkout-complete-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .checkout-complete-content .order-received { margin-bottom: 50px; padding-bottom: 10px; text-align: center; padding-top: 0px; } .checkout-complete-content .order-received i { font-size: 30px; } .checkout-complete-content .order-received p { font-size: 30px; text-align: center; text-transform: capitalize; display: inline-block; margin: 8px 0 0 0; } .checkout-complete-content .contnet-rp-mb { padding-right: 45px; margin-bottom: 60px; } .checkout-complete-content .order-details .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .checkout-complete-content .order-details .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .checkout-complete-content .order-details .checkout-order-details { margin-bottom: 30px; } .checkout-complete-content .order-details .checkout-order-details .order-details-parts h4 { color: #000; padding-bottom: 10px; margin-top: 0; margin-bottom: 3px; } .checkout-complete-content .order-details .checkout-order-details .order-details-parts p { color: rgba(0, 0, 0, .5); margin: 0 0 22px; } .checkout-complete-content .order-details .checkout-order-details .order-payment-notes { color: rgba(0, 0, 0, .5); margin: 0px 0 22px 0; } .checkout-complete-content .bank-details-content .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .checkout-complete-content .bank-details-content .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .checkout-complete-content .bank-details-content .bank-details .bank-details-parts h4 { color: #000; padding-bottom: 10px; margin-top: 0; margin-bottom: 3px; } .checkout-complete-content .bank-details-content .bank-details .bank-details-parts p { color: rgba(0, 0, 0, .5); margin: 0 0 22px; } /* This is used as the traditional .clearfix class */ .checkout-complete-content .shopping-cart-page:before, .checkout-complete-content .shopping-cart-page .column-labels:before, .checkout-complete-content .shopping-cart-page .product:before, .checkout-complete-content .shopping-cart-page .totals .totals-item:before, .checkout-complete-content .shopping-cart-page:after, .checkout-complete-content .shopping-cart-page .column-labels:after, .checkout-complete-content .shopping-cart-page .product:after, .checkout-complete-content .shopping-cart-page .totals .totals-item:after { content: ''; display: table; } .checkout-complete-content .shopping-cart-page:after, .checkout-complete-content .shopping-cart-page .column-labels:after, .checkout-complete-content .shopping-cart-page .product:after, .checkout-complete-content .shopping-cart-page .totals .totals-item:after { clear: both; } .checkout-complete-content .shopping-cart-page, .checkout-complete-content .shopping-cart-page .column-labels, .checkout-complete-content .shopping-cart-page .product, .checkout-complete-content .shopping-cart-page .totals .totals-item { zoom: 1; } .checkout-complete-content .shopping-cart-page { margin-bottom: 60px; zoom: 1; } .checkout-complete-content .shopping-cart-page .column-labels { padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid #eee; border-top: 1px solid #eee; padding-top: 11px; } /* Column headers */ .checkout-complete-content .shopping-cart-page .column-labels label { padding-bottom: 0px; margin-bottom: 0px; border-bottom: 0px; color: #000; } .checkout-complete-content .shopping-cart-page .column-labels .product-image { float: left; width: 20%; } .checkout-complete-content .shopping-cart-page .column-labels .product-details { width: 56%; float: left; } .checkout-complete-content .shopping-cart-page .column-labels .product-price { float: left; width: 12%; color: #000; } .checkout-complete-content .shopping-cart-page .column-labels .product-line-price { float: left; width: 12%; text-align: right; color: #000; } /* Product entries */ .checkout-complete-content .shopping-cart-page .product { margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .checkout-complete-content .shopping-cart-page .product .product-image { text-align: left; float: left; width: 20%; } .checkout-complete-content .shopping-cart-page .product .product-image img { width: 100px; } .checkout-complete-content .shopping-cart-page .product .product-details { width: 56%; float: left; } .checkout-complete-content .shopping-cart-page .product .product-details .product-title { margin-right: 20px; color: #000; } .checkout-complete-content .shopping-cart-page .product .product-details .product-description { margin: 5px 20px 5px 0; color: rgba(0, 0, 0, .5); font-size: 13px; } .checkout-complete-content .shopping-cart-page .product .product-price { float: left; width: 12%; color: #000; } .checkout-complete-content .shopping-cart-page .product .product-line-price { float: left; width: 12%; text-align: right; } /* Totals section */ .checkout-complete-content .shopping-cart-page .totals .totals-item { float: right; clear: both; width: 100%; margin-bottom: 10px; } .checkout-complete-content .shopping-cart-page .totals .totals-item label { float: left; clear: both; width: 81%; text-align: right; color: #000; } .checkout-complete-content .shopping-cart-page .totals .totals-item .totals-value { float: right; text-align: right; width: 17%; } /* Apply dollar signs */ .checkout-complete-content .shopping-cart-page .product .product-price:before, .checkout-complete-content .shopping-cart-page .product .product-line-price:before, .checkout-complete-content .shopping-cart-page .totals-value:before { content: '$'; } .checkout-complete-content .customer-details-content .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .checkout-complete-content .customer-details-content .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .checkout-complete-content .customer-details-content .customer-details p { color: rgba(0,0,0,0.5); margin: 0; } .checkout-complete-content .billing-address-content .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .checkout-complete-content .billing-address-content .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .checkout-complete-content .billing-address p { color: rgba(0,0,0,0.5); margin: 0; } /* END CHECKOUT-COMPLETE-CONTENT SECTION */ /*** START CHECKOUT-COMPLETE PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .checkout-complete-content .checkout-complete-content-head { margin-bottom: 3em; } .checkout-complete-content .checkout-complete-content-head h2 { font-size: 2em; } .checkout-complete-content .order-received i { font-size: 20px; margin-top: 10px; } .checkout-complete-content .order-received p { font-size: 20px; margin-top: 0px; margin-bottom: 0px; } .checkout-complete-content .contnet-rp-mb { padding-right: 0px; margin-bottom: 60px; } .checkout-complete-content .shopping-cart-page { padding-top: 20px; border-top: 1px solid #eee; } .checkout-complete-content .shopping-cart-page .column-labels { display: none; } .checkout-complete-content .shopping-cart-page .product .product-image { float: right; width: 100%; text-align: center; } .checkout-complete-content .shopping-cart-page .product .product-image img { margin: 0 0 10px 0px; } .checkout-complete-content .shopping-cart-page .product .product-details { float: left; margin-bottom: 10px; width: auto; text-align: center; } .checkout-complete-content .shopping-cart-page .product .product-details .product-title { margin-right: 0; } .checkout-complete-content .shopping-cart-page .product .product-details .product-description { margin-right: 0; } .checkout-complete-content .shopping-cart-page .product .product-price { width: 100%; text-align: center; clear: both; color: #000; } .checkout-complete-content .shopping-cart-page .product .product-line-price { float: left; width: 100%; margin-top: 20px; text-align: center; } .checkout-complete-content .shopping-cart-page .product .product-line-price:before { content: 'Item Total: $'; } .checkout-complete-content .shopping-cart-page .totals .totals-item label { width: 81%; text-align: left; } .checkout-complete-content .shopping-cart-page .totals .totals-item .totals-value { width: 17%; } } @media (min-width: 480px) and (max-width: 736px) { .checkout-complete-content .checkout-complete-content-head { margin-bottom: 3em; } .checkout-complete-content .checkout-complete-content-head h2 { font-size: 2em; } .checkout-complete-content .contnet-rp-mb { padding-right: 0px; margin-bottom: 60px; } } @media (min-width: 736px) and (max-width: 980px) { .checkout-complete-content .customer-details-content { margin-bottom: 0; } .checkout-complete-content .contnet-rp-mb { padding-right: 0px; } } @media (min-width: 980px) and (max-width: 1280px) { .checkout-complete-content .customer-details-content { margin-bottom: 0; } .checkout-complete-content .contnet-rp-mb { padding-right: 45px; } } @media (min-width: 1280px) and (max-width: 1680px) { .checkout-complete-content .customer-details-content { margin-bottom: 0; } .checkout-complete-content .contnet-rp-mb { padding-right: 45px; } } @media (min-width: 1680px) and (max-width: 1920px) { .checkout-complete-content .customer-details-content { margin-bottom: 0; } .checkout-complete-content .contnet-rp-mb { padding-right: 45px; } } /*** END CHECKOUT-COMPLETE PAGE SCREENS SIZSES ***/ /******----END CHECKOUT-COMPLETE PAGE----******/ /*======================================================================*/ /******----START CHECKOUT PAGE----******/ .checkout-page-baground { background-image: url('../../images/image-1920×1080.jpg'); } .checkout-page-content .checkout-page-content-head { margin-bottom: 5em; text-align: center; } .checkout-page-content .checkout-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .checkout-page-content .contnet-rp-mb { padding-right: 45px; margin-bottom: 60px; } .checkout-page-content .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .checkout-page-content .post-capitalize { text-transform: capitalize; } .checkout-page-content .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .checkout-page-content .user-details.first-form .have-account { color: #5c6873; margin-bottom: 10px; margin-top: 0; } .checkout-page-content .user-details.first-form .have-account a { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .checkout-page-content .user-details.first-form .have-account a:hover { color: #5c6873; } .checkout-page-content .user-details.first-form .form-group h5 { color: #2E3841; } .checkout-page-content .user-details.first-form .form-control { border-radius: 0; } .checkout-page-content .user-details.first-form .form-control:focus { outline: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .checkout-page-content .shiptwo-address .another-content h3 { display: inline-block; } .checkout-page-content .shiptwo-address .another-content span { display: block; } .checkout-page-content .shiptwo-address .another-content label { width: 16px; height: 16px; cursor: pointer; position: relative; left: 4px; top: 6px; display: inline-block; } .checkout-page-content .shiptwo-address .another-content label .true { content: ''; width: 9px; height: 6px; position: absolute; top: 3px; left: 2px; background: transparent; opacity: 0; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); margin: 0; } .checkout-page-content .shiptwo-address .another-content label:hover .true { opacity: 0.3; } .checkout-page-content .shiptwo-address .another-content input[type=checkbox] { display: none; } .checkout-page-content .shiptwo-address .another-content input[type=checkbox]:checked { opacity: 1; } .checkout-page-content .shiptwo-address .another-form .form-group h5 { color: #2E3841; } .checkout-page-content .shiptwo-address .another-form .form-control { border-radius: 0; } .checkout-page-content .shiptwo-address .another-form .form-control:focus { outline: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .checkout-page-content .shiptwo-address .order-notes .form-group h5 { color: #2E3841; } .checkout-page-content .shiptwo-address .user-details textarea.form-control { height: 180px; border-radius: 0; } .checkout-page-content .shiptwo-address .user-details textarea.form-control:focus { outline: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .checkout-page-content .your-order .column-labels label { float: left; padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid #eee; color: #000; } .shopping-cart-page:before, .column-labels:before, .product:before, .totals-item:before { content: ''; display: table; } .shopping-cart-page:after, .column-labels:after, .product:after, .totals-item:after { content: ''; display: table; clear: both; } .checkout-page-content .your-order .product .product-line-price:before, .checkout-page-content .your-order .totals-value:before { content: '$'; } .checkout-page-content .your-order .column-labels .product-details{ width: 70%; } .checkout-page-content .your-order .column-labels .product-line-price{ width: 30%; text-align: right; } .checkout-page-content .your-order .product { width: 100%; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .checkout-page-content .your-order .product .product-details { width: 70%; float: left; } .checkout-page-content .your-order .product .product-details .product-title { margin-right: 20px; color: #000; } .checkout-page-content .your-order .product .product-line-price { float: right; width: 30%; text-align: right; } .checkout-page-content .your-order .product .form-control { height: 40px; border-radius: 0px; border-right: 0; width: 70%; display: inline; } .checkout-page-content .your-order .product .form-control:focus { outline: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .checkout-page-content .your-order .product .checkout { margin-top: 0; float: right; width: 30%; padding: 7px 7px 6px; font-size: 15px; letter-spacing: 0.075em; border-radius: 0; background: transparent; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; outline: none; } .checkout-page-content .your-order .product .checkout:hover { color: #fff; } .checkout-page-content .your-order .totals .totals-item { width: 100%; float: left; clear: both; margin-bottom: 10px; } .checkout-page-content .your-order .totals .totals-item label { width: 70%; text-align: left; float: left; clear: both; color: #000; } .checkout-page-content .your-order .totals .totals-item .totals-value { width: 30%; float: right; text-align: right; } .checkout-page-content .payment-method-content .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .checkout-page-content .payment-method-content .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .checkout-page-content .payment-method-content .payment-methods .payment-method label { width: 20px; height: 20px; cursor: pointer; position: relative; left: 0px; top: 9px; background: transparent; border-radius: 50px; } .checkout-page-content .payment-method-content .payment-methods .payment-method label:after { content: ''; width: 10px; height: 10px; position: absolute; top: 4px; left: 4px; opacity: 0; border-radius: 50px; } .checkout-page-content .payment-method-content .payment-methods .payment-method label:hover::after { opacity: 0.3; } .checkout-page-content .payment-method-content .payment-methods .payment-method input[type=radio] { display: none; } .checkout-page-content .payment-method-content .payment-methods .payment-method input[type=radio]:checked + label:after { opacity: 1; } .checkout-page-content .payment-method-content .payment-methods .payment-method h4 { display: inline-block; color: #2E3841; padding-left: 5px; } .checkout-page-content .payment-method-content .payment-methods .payment-method p { color: rgba(0, 0, 0, .5); font-size: 13px; margin-bottom: 21px; } .checkout-page-content .payment-method-content .payment-methods .payment-method .payment-way img { width: 269px; } .checkout-page-content .payment-method-content .payment-methods .payment-method .paypal-info a { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .checkout-page-content .payment-method-content .payment-methods .payment-method .paypal-info a:hover { color: #2E3841; } .checkout-page-content .payment-method-content .payment-methods .order-confirmation a { padding: 8px 24px; letter-spacing: 0.075em; margin: 25px 13px 0 0; border-radius: 0; background: transparent; outline: none; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .checkout-page-content .your-order .product .checkout:hover, .checkout-page-content .payment-method-content .payment-methods .order-confirmation a:hover, .cart-empty-content .cart-empty a:focus, .checkout-page-content .payment-method-content .payment-methods .order-confirmation a:focus, .checkout-page-content .payment-method-content .payment-methods .order-confirmation a:hover, .checkout-page-content .payment-method-content .payment-methods .order-confirmation a:focus { color: #fff; } /*** START CHECKOUT PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .checkout-page-content .checkout-page-content-head { margin-bottom: 3em; } .checkout-page-content .checkout-page-content-head h2 { font-size: 2em; } .checkout-page-content .shopping-cart-page { margin: 0; padding-top: 20px; border-top: 1px solid #eee; } .checkout-page-content .your-order .product-details { width: 50%; text-align: left; margin-bottom: 0px; float: left; } .checkout-page-content .your-order .product-line-price { float: right; width: 50%; text-align: right; margin-top: 0; } .checkout-page-content .your-order .product .form-control { width: 60%; } .checkout-page-content .your-order .product .checkout { width: 40%; padding: 7px 0px 6px; } .checkout-page-content .contnet-rp-mb { padding-right: 0px; } } @media (min-width: 480px) and (max-width: 736px) { .checkout-page-content .checkout-page-content-head { margin-bottom: 3em; } .checkout-page-content .checkout-page-content-head h2 { font-size: 2em; } .checkout-page-content .contnet-rp-mb { padding-right: 0px; } } @media (min-width: 736px) and (max-width: 980px) { .checkout-page-content .contnet-rp-mb { padding-right: 0px; } } @media (min-width: 980px) and (max-width: 1280px) { .checkout-page-content .contnet-rp-mb { padding-right: 45px; } } @media (min-width: 1280px) and (max-width: 1680px) { .checkout-page-content .contnet-rp-mb { padding-right: 45px; } } @media (min-width: 1680px) and (max-width: 1920px) { .checkout-page-content .contnet-rp-mb { padding-right: 45px; } } /*** END CHECKOUT PAGE SCREENS SIZSES ***/ /******----END CHECKOUT PAGE----******/ /*======================================================================*/ /******----START CONATCT PAGE----******/ /* START CONTACT-PAGE-BACKGROUND SECTION */ .contact-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END CONTACT-PAGE-BACKGROUND SECTION */ /* START CONTACT-PAGE-CONTENT SECTION */ .contact-page-content { color: black; text-align: center; } .contact-page-content .company-informations .company-informations-head { margin-bottom: 5em; text-align: center; } .contact-page-content .company-informations .company-informations-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .contact-page-content .company-informations p { color: rgba(0, 0, 0, .3); margin: 0; } /* END CONTACT-PAGE-CONTENT SECTION */ /* START GOOGLEMAP SECTION */ #googleMap { height: 400px; width: 100%; border-color: #fff; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #000; box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #000; } /* END GOOGLEMAP SECTION */ /* START CONTACT-INFO SECTION */ .contact-info .contact-info-head { margin-bottom: 5em; text-align: center; } .contact-info .contact-info-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .contact-info .info-desc p { color: rgba(0, 0, 0, .3); text-align: center; } .contact-info .info-desc .info { display: inline-block; list-style: none; padding: 0; left: 9px; position: relative; margin: 20px 0 0 0; width: 100%; } .contact-info .info-desc .info .contact-details { font-size: 1.2em; margin: 0px 0px 14px; color: #000; text-align: center; padding-left: 0; padding-right: 0; } .contact-info .info-desc .info .contact-details i { margin-right: 8px; } .contact-info .info-desc .info .contact-details a { font-size: 1em; color: #000; } /* END CONTACT-INFO SECTION */ /* START YOUR-MESSAGE SECTION */ .contact-page-your-message { background-color: #222831; } .contact-page-your-message .contact-page-your-message-parts .contact-page-your-message-parts-head { margin-bottom: 5em; text-align: center; } .contact-page-your-message .contact-page-your-message-parts .contact-page-your-message-parts-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .contact-page-your-message .contact-page-your-message-parts form { padding: 5px 0px 0px; } .contact-page-your-message .contact-page-your-message-parts form .form-group .input-lg { height: 46px; padding: 10px 16px; font-size: 16px; line-height: 1.3333333; border-radius: 3px; background: transparent; color: #fff; } .contact-page-your-message .contact-page-your-message-parts form .form-group .form-control:focus { border-color: #fff; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #fff; box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #fff; outline: none; } .contact-page-your-message .contact-page-your-message-parts form .form-group textarea.input-lg{ height: 110px; } .contact-page-your-message .contact-page-your-message-parts form .e-btn { border: 1px solid #ccc; background: transparent; outline: none; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; color: #fff; } .contact-page-your-message .contact-page-your-message-parts form .e-btn:hover, .contact-page-your-message .contact-page-your-message-parts form .e-btn:focus { outline: none; color: #000; background: #fff; } /* END YOUR-MESSAGE SECTION */ /*** START CONATCT PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .contact-page-content .company-informations .company-informations-head { margin-bottom: 3em; } .contact-page-content .company-informations .company-informations-head h2 { font-size: 2em; } .contact-info .contact-info-head { margin-bottom: 3em; } .contact-info .contact-info-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .contact-page-content .company-informations .company-informations-head { margin-bottom: 3em; } .contact-page-content .company-informations .company-informations-head h2 { font-size: 2em; } .contact-info .contact-info-head { margin-bottom: 3em; } .contact-info .contact-info-head h2 { font-size: 2em; } } /*** END CONATCT PAGE SCREENS SIZSES ***/ /****** END CONATCT PAGE ******/ /*======================================================================*/ /******----START SIGNIN-PAGE PAGE----******/ /* START LOGIN-PAGE-BACKGROUND SECTION */ .login-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END LOGIN-PAGE-BACKGROUND SECTION */ /* START LOGIN-PAGE-CONTENT SECTION */ .login-page-content .login-page-content-head { margin-bottom: 5em; text-align: center; } .login-page-content .login-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .login-page-content .customer-signin .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .login-page-content .customer-signin .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .login-page-content .customer-signin .user-details { height: 190px; } .login-page-content .customer-signin .subheading .post-capitalize { text-transform: capitalize; } .login-page-content .customer-signin .have-account { color: #5c6873; margin-bottom: 10px; margin-top: 0; } .login-page-content .customer-signin .user-details { height: 190px; } .login-page-content .customer-signin .user-details .form-group h5 { color: #2E3841; } .login-page-content .customer-signin .user-details .form-group .form-control { border-radius: 0; } .login-page-content .customer-signin .user-details .form-group .form-control:focus { outline: 0; -webkit-box-shadow: none; box-shadow: none; } .login-page-content .customer-signin .user-details .remember-me { display: inline-block; } .login-page-content .customer-signin .user-details .remember-me input[type=checkbox] { display: none; } .login-page-content .customer-signin .user-details .remember-me input[type=checkbox]:checked + label .true { opacity: 1; } .login-page-content .customer-signin .user-details .remember-me label { width: 16px; height: 16px; cursor: pointer; position: relative; left: 0; top: 10px; display: inline-block; } .login-page-content .customer-signin .user-details .remember-me label .true { content: ''; width: 9px; height: 6px; position: absolute; top: 3px; left: 2px; background: transparent; opacity: 0; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); margin: 0; } .login-page-content .customer-signin .user-details .remember-me label:hover .true { opacity: 0.3; } .login-page-content .customer-signin .user-details .remember-me label .remember-text { color: #3f444a; position: relative; display: inline-block; left: 24px; bottom: 4px; width: 108px; } .login-page-content .customer-signin .user-details .signin-button { float: right; } .login-page-content .customer-signin .user-details .signin-button a { margin: 0; text-transform: capitalize; padding: 8px 18px; letter-spacing: 0; color: #fff; border-radius: 0; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; } .login-page-content .customer-signin .user-details .signin-button a:hover, .login-page-content .customer-signin .user-details .signin-button a:focus { color: #fff; } .login-page-content .customer-signin .socialmedia-signin { border-left: 1px dotted rgba(0,0,0,0.3); margin: 36px 0 60px 15px; } .login-page-content .customer-signin .socialmedia-signin a { margin: 0; display: block; margin: 0px 55px 25px 45px; padding: 8px 20px 8px 50px; position: relative; border-radius: 0; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; letter-spacing: 0.075em; } .login-page-content .customer-signin .socialmedia-signin .s-twitter-btn, .login-page-content .customer-signin .socialmedia-signin .s-twitter-btn:hover, .login-page-content .customer-signin .socialmedia-signin .s-twitter-btn:focus { background-color: #55acee; color: #fff; border: 1px solid #55acee; } .login-page-content .customer-signin .socialmedia-signin .s-facebook-btn, .login-page-content .customer-signin .socialmedia-signin .s-facebook-btn:hover, .login-page-content .customer-signin .socialmedia-signin .s-facebook-btn:focus { background-color: #3b5998; color: #fff; border: 1px solid #3b5998; } .login-page-content .customer-signin .socialmedia-signin .s-google-btn, .login-page-content .customer-signin .socialmedia-signin .s-google-btn:hover, .login-page-content .customer-signin .socialmedia-signin .s-google-btn:focus { background-color: #dd4b39; color: #fff; border: 1px solid #dd4b39; } .login-page-content .customer-signin .socialmedia-signin a i { position: absolute; left: 0; border-right: 1px solid rgba(0,0,0,.2); margin: -9px 0px 0px 0px; font-size: 1.4em; line-height: 1.8em; width: 50px; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all } .login-page-content .customer-register .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; display: inline-block; } .login-page-content .customer-register .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: block; } .login-page-content .customer-register .subheading.another-content input[type=checkbox] { display: none; } .login-page-content .customer-register .subheading.another-content input[type=checkbox]:checked { opacity: 1; } .login-page-content .customer-register .subheading.another-content label { width: 16px; height: 16px; cursor: pointer; position: relative; left: 4px; top: 6px; display: inline-block; } .login-page-content .customer-register .subheading.another-content label:hover .true { opacity: 0.3; } .login-page-content .customer-register .subheading.another-content label .true { content: ''; width: 9px; height: 6px; position: absolute; top: 3px; left: 2px; background: transparent; opacity: 0; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); margin: 0; display: block; } .login-page-content .customer-register .have-account { color: #5c6873; margin-bottom: 10px; margin-top: 0; } .login-page-content .customer-register .user-details form .form-group h5 { color: #2E3841; } .login-page-content .customer-register .user-details form .form-group .form-control { border-radius: 0; } .login-page-content .user-details form .form-group .form-control:focus { outline: 0; -webkit-box-shadow: none; box-shadow: none; } .login-page-content .customer-register .submit-btn { float: right; margin-top: 20px; font-size: 18px; border-radius: 0; background: transparent; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; outline: none; padding: 5px 20px; text-transform: capitalize; margin-right: 15px; } .login-page-content .customer-register .submit-btn:hover { color: #fff; } /* END LOGIN-PAGE-CONTENT SECTION */ /*** START SIGNIN PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .login-page-content .login-page-content-head { margin-bottom: 3em; } .login-page-content .login-page-content-head h2 { font-size: 2em; } .login-page-content .customer-signin .socialmedia-signin { border-left: none; margin: 36px 0 60px 0px; } .login-page-content .customer-signin .socialmedia-signin a { margin: 0px 0px 25px 0px; } .customer-register .another-content { position: relative; } } @media (min-width: 480px) and (max-width: 736px) { .login-page-content .login-page-content-head { margin-bottom: 3em; } .login-page-content .login-page-content-head h2 { font-size: 2em; } .login-page-content .customer-signin .socialmedia-signin { border-left: none; margin: 36px 0 60px 0px; } } @media (min-width: 736px) and (max-width: 980px) { .login-page-content .customer-signin .socialmedia-signin a { margin: 0px 0px 25px 45px; } } /*** END SIGNIN PAGE SCREENS SIZSES ***/ /******----END SIGNIN PAGE PAGE----******/ /*======================================================================*/ /******----START CUSTOMER-ADDRESSES PAGE----******/ /* START MY-ADDRESSES-PAGE-BACKGROUND SECTION */ .my-addresses-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END MY-ADDRESSES-PAGE-BACKGROUND SECTION */ /* START CUSTOMER-ADDRESSES-PAGE-CONTENT SECTION */ .customer-addresses-page-content .customer-addresses-page-content-head { margin-bottom: 5em; text-align: center; } .customer-addresses-page-content .customer-addresses-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .customer-addresses-page-content .my-profile { margin-bottom: 40px; } .customer-addresses-page-content .my-profile .panel-default .panel-heading { color: #fff; padding: 20px 15px; } .customer-addresses-page-content .my-profile .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .customer-addresses-page-content .my-profile .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .customer-addresses-page-content .my-profile .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .customer-addresses-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item { display: inline-block; padding: 10px 15px; border: 0; margin: 0 31px 0 32px; } .customer-addresses-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item a { color: #555; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; } .customer-addresses-page-content .customer-addresses .customer-billing-addresses .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .customer-addresses-page-content .customer-addresses .customer-billing-addresses .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .customer-addresses-page-content .customer-addresses .customer-billing-addresses .customer-details p { color: rgba(0,0,0,0.5); margin: 0; } .customer-addresses-page-content .customer-addresses .customer-billing-addresses .edit-options { font-weight: 400; color: #5c6873; } .customer-addresses-page-content .customer-addresses .customer-billing-addresses .profile-options .edit-button { font-size: 15px; font-weight: 400; } .customer-addresses-page-content .customer-addresses .customer-shipping-addresses .subheading h3 { font-size: 20px; color: #3f444a; font-weight: 500; margin: 0 0 22px 0; } .customer-addresses-page-content .customer-addresses .customer-shipping-addresses .subheading span { width: 30px; height: 3px; margin: 0px 0 20px 0; display: inline-block; } .customer-addresses-page-content .customer-addresses .customer-shipping-addresses .customer-details p { color: rgba(0,0,0,0.5); margin: 0; } .customer-addresses-page-content .customer-addresses .customer-shipping-addresses .edit-options { font-weight: 400; color: #5c6873; } .customer-addresses-page-content .customer-addresses .customer-shipping-addresses .profile-options .edit-button { font-size: 15px; font-weight: 400; } /* END CUSTOMER-ADDRESSES-PAGE-CONTENT SECTION */ /*** START CUSTOMER-ADDRESSES PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .customer-addresses-page-content .customer-addresses-page-content-head { margin-bottom: 3em; } .customer-addresses-page-content .customer-addresses-page-content-head h2 { font-size: 2em; } .customer-addresses-page-content .customer-addresses .customer-shipping-addresses .subheading h3 { margin-top: 40px; } } @media (min-width: 480px) and (max-width: 736px) { .customer-addresses-page-content .customer-addresses-page-content-head { margin-bottom: 3em; } .customer-addresses-page-content .customer-addresses-page-content-head h2 { font-size: 2em; } .customer-addresses-page-content .customer-addresses .customer-shipping-addresses .subheading h3 { margin-top: 40px; } } /*** END CUSTOMER-ADDRESSES PAGE SCREENS SIZSES ***/ /******----END CUSTOMER-ADDRESSES PAGE----******/ /*======================================================================*/ /******----START CUSTOMER-DASHBOARD PAGE----******/ /* START CUSTOMER-DASHBOARD-PAGE-BACKGROUND SECTION */ .customer-dashboard-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END CUSTOMER-DASHBOARD-PAGE-BACKGROUND SECTION */ /* START CUSTOMER-DASHBOARD-PAGE-CONTENT SECTION */ .customer-dashboard-page-content .customer-dashboard-page-content-head { margin-bottom: 5em; text-align: center; } .customer-dashboard-page-content .customer-dashboard-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .customer-dashboard-page-content .my-profile { margin-bottom: 40px; } .customer-dashboard-page-content .my-profile .panel-default .panel-heading { color: #fff; background-color: #3498db; padding: 20px 15px; } .customer-dashboard-page-content .my-profile .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .customer-dashboard-page-content .my-profile .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .customer-dashboard-page-content .my-profile .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .customer-dashboard-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item { display: inline-block; padding: 10px 15px; border: 0; margin: 0 31px 0 32px; } .customer-dashboard-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item a { color: #555; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; } .customer-dashboard-page-content .customer-dashboard .customer-pic { padding-right: 0; text-align: center; display: block; } .customer-dashboard-page-content .customer-dashboard .customer-pic a img { height: 200px; width: 200px; border-radius: 50%; } .customer-dashboard-page-content .customer-dashboard .profile-body { vertical-align: top; display: inline-block; } .customer-dashboard-page-content .customer-dashboard .profile-body .customer-name { margin-top: 10px; margin-bottom: 10px; } .customer-dashboard-page-content .customer-dashboard .customer-name a { font-size: 18px; color: #2E3841; font-weight: 600; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .customer-dashboard-page-content .customer-dashboard .customer-details p { color: rgba(0,0,0,0.5); margin: 0; font-size: 14px; } .customer-dashboard-page-content .customer-dashboard .profile-options { font-weight: 400; color: #5c6873; } .customer-dashboard-page-content .customer-dashboard .profile-options a:hover, .customer-dashboard-page-content .customer-dashboard .profile-options a:focus { font-size: 15px; font-weight: 400; } /* END CUSTOMER-DASHBOARD-PAGE-CONTENT SECTION */ /*** START CUSTOMER-DASHBOARD PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .customer-dashboard-page-content .customer-dashboard-page-content-head { margin-bottom: 3em; } .customer-dashboard-page-content .customer-dashboard-page-content-head h2 { font-size: 2em; } .customer-dashboard-page-content .customer-dashboard .profile-body { display: block; margin-top: 25px; text-align: center } } @media (min-width: 480px) and (max-width: 736px) { .customer-dashboard-page-content .customer-dashboard-page-content-head { margin-bottom: 3em; } .customer-dashboard-page-content .customer-dashboard-page-content-head h2 { font-size: 2em; } .customer-dashboard-page-content .customer-dashboard .profile-body { display: block; margin-top: 25px; text-align: center } } /*** END CUSTOMER-DASHBOARD PAGE SCREENS SIZSES ***/ /******----END CUSTOMER-DASHBOARD PAGE----******/ /*======================================================================*/ /******----START CUSTOMER-EDIT-FILE PAGE----******/ /* START CUSTOMER-EDIT-PROFILE-PAGE-BACKGROUND SECTION */ .customer-edit-profile-baground { background-image: url('../../images/image-1920×1080.jpg'); } /* END CUSTOMER-EDIT-PROFILE-PAGE-BACKGROUND SECTION */ /* START CUSTOMER-EDIT-PROFILE-PAGE-CONTENT SECTION */ .customer-edit-profile-page-content .customer-edit-profile-page-content-head { margin-bottom: 5em; text-align: center; } .customer-edit-profile-page-content .customer-edit-profile-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .customer-edit-profile-page-content .my-profile { margin-bottom: 40px; } .customer-edit-profile-page-content .my-profile .panel-default .panel-heading { color: #fff; background-color: #3498db; padding: 20px 15px; } .customer-edit-profile-page-content .my-profile .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .customer-edit-profile-page-content .my-profile .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .customer-edit-profile-page-content .my-profile .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .customer-edit-profile-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item { display: inline-block; padding: 10px 15px; border: 0; margin: 0 31px 0 32px; } .customer-edit-profile-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item a { color: #555; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; } .customer-edit-profile-page-content .user-details form .have-account { color: #5c6873; margin-bottom: 10px; margin-top: 0; } .customer-edit-profile-page-content .user-details form .form-group h5 { color: #2E3841; } .customer-edit-profile-page-content .user-details form .form-group .form-control { border-radius: 0; } .customer-edit-profile-page-content .user-details .form-control:focus { outline: 0; -webkit-box-shadow: none; box-shadow: none; } .customer-edit-profile-page-content .user-details .edit-profile-buttons { float: right; margin-top: 30px; } .customer-edit-profile-page-content .user-details .edit-profile-buttons .submit-btn, .customer-edit-profile-page-content .user-details .edit-profile-buttons .cancel-btn { font-size: 18px; border-radius: 0; background: transparent; transition: 0.3s ease-in-out all; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; outline: none; padding: 5px 20px; text-transform: capitalize; float: left; } .customer-edit-profile-page-content .user-details .edit-profile-buttons .submit-btn { margin-right: 10px; } .customer-edit-profile-page-content .user-details .edit-profile-buttons .submit-btn:hover, .customer-edit-profile-page-content .user-details .edit-profile-buttons .cancel-btn:hover, .customer-edit-profile-page-content .user-details .edit-profile-buttons .submit-btn:focus, .customer-edit-profile-page-content .user-details .edit-profile-buttons .cancel-btn:focus { color: #fff; } /* END CUSTOMER-EDIT-PROFILE-PAGE-CONTENT SECTION */ /*** START CUSTOMER-EDIT-FILE PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .customer-edit-profile-page-content .customer-edit-profile-page-content-head { margin-bottom: 3em; } .customer-edit-profile-page-content .customer-edit-profile-page-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .customer-edit-profile-page-content .customer-edit-profile-page-content-head { margin-bottom: 3em; } .customer-edit-profile-page-content .customer-edit-profile-page-content-head h2 { font-size: 2em; } } /*** END CUSTOMER-EDIT-FILE PAGE SCREENS SIZSES ***/ /******----END CUSTOMER-EDIT-FILE PAGE----******/ /*======================================================================*/ /******----START FAQ PAGE----******/ /* START FAQ-PAGE-BACKGROUND SECTION */ .faq-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END FAQ-PAGE-BACKGROUND SECTION */ /* START FAQ-QUESTIONS-CONTENT SECTION */ .faq-questions-content .faq-questions-content-head { margin-bottom: 5em; text-align: center; } .faq-questions-content .faq-questions-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .faq-questions-content .panel-default .panel-heading { padding: 20px 15px } .faq-questions-content .panel-heading .panel-title a { color: #fff; outline: none; } .faq-questions-content .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .faq-questions-content .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .faq-questions-content .panel-default .panel-heading .panel-title a i { margin-right: 5px; } .faq-questions-content .panel-default .panel-body p { color: rgba(0,0,0,.4); font-size: 14px; } .faq-questions-content .panel-default .heading-one { background-color: #3498db; } .faq-questions-content .panel-default .heading-two { background-color: rgba(231, 76, 60,1.0); } .faq-questions-content .panel-default .heading-three { background-color: rgba(26, 188, 156,1.0); } .faq-questions-content .panel-default .heading-four { background-color: rgba(243, 156, 18,1.0); } .faq-questions-content .panel-default .heading-five { background-color: rgba(155, 89, 182,1.0); } .faq-questions-content .panel-default .heading-six { background-color: rgba(52, 73, 94,1.0); } .faq-questions-content .panel-default .heading-seven { background-color: rgba(149, 165, 166,1.0); } .faq-questions-content .panel-default .heading-eight { background-color: rgba(46, 204, 113,1.0); } .faq-questions-content .panel-default .heading-nine { background-color: rgba(241, 196, 15,1.0); } /* END FAQ-QUESTIONS-CONTENT SECTION */ /*** START FAQ PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .faq-questions-content .faq-questions-content-head { margin-bottom: 3em; } .faq-questions-content .faq-questions-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .faq-questions-content .faq-questions-content-head { margin-bottom: 3em; } .faq-questions-content .faq-questions-content-head h2 { font-size: 2em; } } /*** END FAQ PAGE SCREENS SIZSES ***/ /******----END FAQ PAGE----******/ /*======================================================================*/ /******----START FEATURED-AUTHORS PAGE----******/ /* START AUTHORS-BAGROUND BACKGROUND SECTION */ .featured-authors-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END AUTHORS-BAGROUND BACKGROUND SECTION */ /* START AUTHORS-NAMES SECTION */ .featured-authors-names { padding: 30px 0px; text-align: center; } .featured-authors-names h3 { display: inline-block; color: #fff; margin-right: 13px; margin-bottom: 0; margin-top: 0; } .featured-authors-names a { display: inline; margin-right: 14px; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; color: rgba(250,250,250,.5); text-decoration: none; outline: none; padding: 1px 2px; } .featured-authors-names a:last-of-type { margin-right: 0; } .featured-authors-names .active { color: #fff; border-bottom: 1px solid; border-top: 1px solid; } .featured-authors-names a:hover, .featured-authors-names a:focus { color: #fff; border-bottom: 1px solid; border-top: 1px solid; } /* END AUTHORS-NAMES SECTION */ /* START FEATURED-AUTHORS-PAGE-CONTENT SECTION */ .featured-authors-page-content .featured-authors-page-content-head { margin-bottom: 5em; text-align: center; } .featured-authors-page-content .featured-authors-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .featured-authors-page-content .featured-authors .author-info { position: relative; margin-right: auto; margin-left: auto; width: 180px; margin-bottom: 2em; -webkit-transition: all 0.35s ease-in-out; transition: all 0.35s ease-in-out; } .featured-authors-page-content .featured-authors .author-info .auth-img { display: block; } .featured-authors-page-content .featured-authors .author-info .auth-img img { border-radius: 50%; width: 180px; height: 180px; } .featured-authors-page-content .featured-authors .author-info h3 { text-align: center; margin: 0; } .featured-authors-page-content .featured-authors .author-info h3 .auth-name { color: rgba(0,0,0,.7); font-size: 1.3em; font-weight: 400; padding: 20px 0px 10px 0px; display: block; } /* END FEATURED-AUTHORS-PAGE-CONTENT SECTION */ /*** START FEATURED-AUTHORS PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .featured-authors-page-content .featured-authors-page-content-head { margin-bottom: 3em; } .featured-authors-page-content .featured-authors-page-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .featured-authors-page-content .featured-authors-page-content-head { margin-bottom: 3em; } .featured-authors-page-content .featured-authors-page-content-head h2 { font-size: 2em; } } /*** END FEATURED-AUTHORS PAGE SCREENS SIZSES ***/ /******----END FEATURED-AUTHORS-PAGE-CONTENT PAGE----******/ /*======================================================================*/ /******----START ORDERING PAGE----******/ /* START ORDERING-PAGE-BACKGROUND SECTION */ .ordering-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END ORDERING-PAGE-BACKGROUND SECTION */ /* START ORDERING-PAGE-CONTENT SECTION */ .ordering-page-content .ordering-page-content-head { margin-bottom: 5em; text-align: center; } .ordering-page-content .ordering-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .ordering-page-content .panel-default .panel-heading { padding: 20px 15px } .ordering-page-content .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .ordering-page-content .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .ordering-page-content .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .ordering-page-content .panel-default .panel-heading .panel-title a i { margin-right: 5px; } .ordering-page-content .panel-default .panel-body p { color: rgba(0,0,0,.4); font-size: 14px; } .ordering-page-content .panel-default .panel-body .info { margin: 10px 0 0 0; display: inline-block; list-style: none; padding: 0; left: 9px; position: relative; width: 100%; } .ordering-page-content .panel-default .panel-body .info .contact-details { padding-right: 15px; margin: 0; font-size: 1.2em; color: #000; text-align: center; padding-left: 0; } .ordering-page-content .panel-default .panel-body .info .contact-details i { margin-right: 8px; } .ordering-page-content .panel-default .panel-body .info .contact-details a { font-size: 1em; color: #000; } .ordering-page-content .panel-default .heading-one { background-color: #3498db; } .ordering-page-content .panel-default .heading-two { background-color: rgba(231, 76, 60,1.0); } .ordering-page-content .panel-default .heading-three { background-color: rgba(26, 188, 156,1.0); } .ordering-page-content .panel-default .heading-four { background-color: rgba(243, 156, 18,1.0); } .ordering-page-content .panel-default .heading-five { background-color: rgba(155, 89, 182,1.0); } .ordering-page-content .panel-default .heading-six { background-color: rgba(52, 73, 94,1.0); } .ordering-page-content .panel-default .heading-seven { background-color: rgba(149, 165, 166,1.0); } .ordering-page-content .panel-default .heading-eight { background-color: rgba(46, 204, 113,1.0); } /* END ORDERING-PAGE-CONTENT SECTION */ /*** START ORDERING PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .ordering-page-content .ordering-page-content-head { margin-bottom: 3em; } .ordering-page-content .ordering-page-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .ordering-page-content .ordering-page-content-head { margin-bottom: 3em; } .ordering-page-content .ordering-page-content-head h2 { font-size: 2em; } } /*** END ORDERING PAGE SCREENS SIZSES ***/ /******----END ORDERING PAGE----******/ /*======================================================================*/ /******----START ORDERING-HISTORY PAGE----******/ /* START ORDERING-HISTORY-BACkGROUND SECTION */ .ordering-history-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END ORDERING-HISTORY-BACkGROUND SECTION */ /* START ORDER-HISTORY-PAGE-CONTENT SECTION */ .order-history-page-content .order-history-page-content-head { margin-bottom: 5em; text-align: center; } .order-history-page-content .order-history-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .order-history-page-content .my-profile { margin-bottom: 40px; } .order-history-page-content .my-profile .panel-default .panel-heading { color: #fff; background-color: #3498db; padding: 20px 15px; } .order-history-page-content .my-profile .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .order-history-page-content .my-profile .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .order-history-page-content .my-profile .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .order-history-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item { display: inline-block; padding: 10px 15px; border: 0; margin: 0 31px 0 32px; } .order-history-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item a { color: #555; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; } .order-history-page-content .ordering-information .column-labels { zoom: 1; } .order-history-page-content .ordering-information .column-labels:before, .order-history-page-content .ordering-information .column-labels:after { content: ''; display: table; } .order-history-page-content .ordering-information .column-labels:after { clear: both; } .order-history-page-content .ordering-information .column-labels label { color: #3f444a; padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid #eee; } .order-history-page-content .ordering-information .column-labels .product-image { float: left; width: 20%; } .order-history-page-content .ordering-information .column-labels .product-details { width: 30%; float: left; } .order-history-page-content .ordering-information .column-labels .order-number { float: left; width: 10%; } .order-history-page-content .ordering-information .column-labels .order-date { float: left; width: 13%; } .order-history-page-content .ordering-information .column-labels .product-price { float: left; width: 12%; } .order-history-page-content .ordering-information .column-labels .order-payment-method { float: left; width: 15%; } .order-history-page-content .ordering-information .product { margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; zoom: 1; } .order-history-page-content .ordering-information .product:before, .order-history-page-content .ordering-information .product:after { content: ''; display: table; } .order-history-page-content .ordering-information .product:after { clear: both; } .order-history-page-content .ordering-information .product .product-image { float: left; width: 20%; text-align: left; } .order-history-page-content .ordering-information .product .product-image img { width: 100px; } .order-history-page-content .ordering-information .product .product-details { width: 30%; float: left; } .order-history-page-content .ordering-information .product .product-details .product-title { margin-right: 20px; color: #000; } .order-history-page-content .ordering-information .product .product-details .product-description { margin: 5px 20px 5px 0; color: rgba(0, 0, 0, .5); font-size: 13px; } .order-history-page-content .ordering-information .product .order-number { float: left; width: 10%; color: #000; } .order-history-page-content .ordering-information .product .order-date { float: left; width: 13%; color: #000; } .order-history-page-content .ordering-information .product .product-price { float: left; width: 12%; } .order-history-page-content .ordering-information .product .product-price:before { content: '$'; } .order-history-page-content .ordering-information .product .order-payment-method { float: left; width: 15%; color: #000; } /* END ORDER-HISTORY-PAGE-CONTENT SECTION */ /*** START ORDERING-HISTORY SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .order-history-page-content .order-history-page-content-head { margin-bottom: 3em; } .order-history-page-content .order-history-page-content-head h2 { font-size: 2em; } .order-history-page-content .my-profile .panel-default .my-profile-items .list-group-item { display: block; margin: 0; } .order-history-page-content .ordering-information { margin: 0; padding-top: 20px; border-top: 1px solid #eee; } .order-history-page-content .ordering-information .column-labels { display: none; } .order-history-page-content .ordering-information .column-labels .product-details { width: auto; } .order-history-page-content .ordering-information .product .product-image { float: right; width: 100%; text-align: center; } .order-history-page-content .ordering-information .product .product-image img { margin: 0 0 10px 0px; } .order-history-page-content .ordering-information .product .product-details { float: left; margin-bottom: 10px; width: auto; text-align: center; } .order-history-page-content .ordering-information .product .product-details .product-title { margin-right: 0; } .order-history-page-content .ordering-information .product .product-details .product-description { margin-right: 0; } .order-history-page-content .ordering-information .product .order-number { padding: 10px 0; text-align: center; width: 35%; } .order-history-page-content .ordering-information .product .order-date { padding: 10px 0; text-align: center; width: 65%; } .order-history-page-content .ordering-information .product .product-price { width: 35%; padding: 10px 0; text-align: center; clear: both; } .order-history-page-content .ordering-information .product .order-payment-method { width: 65%; padding: 10px 0; text-align: center; } } @media (min-width: 480px) and (max-width: 736px) { .order-history-page-content .order-history-page-content-head { margin-bottom: 3em; } .order-history-page-content .order-history-page-content-head h2 { font-size: 2em; } .order-history-page-content .ordering-information { margin: 0; padding-top: 20px; border-top: 1px solid #eee; } .order-history-page-content .ordering-information .column-labels { display: none; } .order-history-page-content .ordering-information .column-labels .product-details { width: auto; } .order-history-page-content .ordering-information .product .product-image { float: right; width: 100%; text-align: center; } .order-history-page-content .ordering-information .product .product-image img { margin: 0 0 10px 0px; } .order-history-page-content .ordering-information .product .product-details { float: left; margin-bottom: 10px; width: auto; text-align: center; } .order-history-page-content .ordering-information .product .product-details .product-title { margin-right: 0; } .order-history-page-content .ordering-information .product .product-details .product-description { margin-right: 0; } .order-history-page-content .ordering-information .product .order-number { padding: 10px 0; text-align: center; width: 35%; } .order-history-page-content .ordering-information .product .order-date { padding: 10px 0; text-align: center; width: 65%; } .order-history-page-content .ordering-information .product .product-price { width: 35%; padding: 10px 0; text-align: center; clear: both; } .order-history-page-content .ordering-information .product .order-payment-method { width: 65%; padding: 10px 0; text-align: center; } } @media (min-width: 736px) and (max-width: 980px){ .order-history-page-content .ordering-information .column-labels .product-details { width: 25%; } .order-history-page-content .ordering-information .column-labels .order-payment-method { width: 20%; } .order-history-page-content .ordering-information .product .product-details { width: 25%; } .order-history-page-content .ordering-information .product .order-payment-method { width: 20%; } } /*** END ORDERING-HISTORY SCREENS SIZSES ***/ /******----END ORDERING-HISTORY PAGE----******/ /*======================================================================*/ /******----START PRODUCT-WISHLIST PAGE----******/ /* START PRODUCT-WISHLIST-PAGE-BACKGROUND SECTION */ .product-wishlist-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END PRODUCT-WISHLIST-PAGE-BACKGROUND SECTION */ /* START PRODUCT-WISHLIST-PAGE-CONTENT SECTION */ .product-wishlist-page-content .product-wishlist-page-content-head { margin-bottom: 5em; text-align: center; } .product-wishlist-page-content .product-wishlist-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .product-wishlist-page-content .my-profile { margin-bottom: 40px; } .product-wishlist-page-content .my-profile .panel-default .panel-heading { color: #fff; background-color: #3498db; padding: 20px 15px; } .product-wishlist-page-content .my-profile .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .product-wishlist-page-content .my-profile .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .product-wishlist-page-content .my-profile .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .product-wishlist-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item { display: inline-block; padding: 10px 15px; border: 0; margin: 0 31px 0 32px; } .product-wishlist-page-content .my-profile .panel-default .my-profile-items .list-group .list-group-item a { color: #555; transition: .2s ease-in-out all; -webkit-transition: .2s ease-in-out all; -moz-transition: .2s ease-in-out all; } .product-wishlist-page-content .product-wishlist .shopping-cart-page { zoom: 1; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels { padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid #eee; border-top: 1px solid #eee; padding-top: 11px; zoom: 1; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels label { padding-bottom: 0px; margin-bottom: 0px; border-bottom: 0px; color: #000; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels .product-image { float: left; width: 20%; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels .product-details { width: 40%; float: left; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels .product-stock { float: left; width: 12%; color: #000; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels .product-line-price { text-align: left; float: left; width: 12%; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels .wishlist-buttons { float: left; width: 16%; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product { margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; zoom: 1; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-image { text-align: left; float: left; width: 20%; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-image img { width: 100px; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details { width: 40%; float: left; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details .product-title { margin-right: 20px; color: #000; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details .product-description { margin: 5px 20px 5px 0; color: rgba(0, 0, 0, .5); font-size: 13px; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-stock { float: left; width: 12%; color: #000; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-line-price { text-align: left; float: left; width: 12%; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-line-price:before { content: '$'; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons { float: left; width: 16%; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons .add-cart-btn { padding: 8px 0px; display: block; margin: 0 0 13px 0; border-radius: 0; background: transparent; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; letter-spacing: 0.075em; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons .add-cart-btn:hover, .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons .add-cart-btn:focus { color: #fff; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons .add-cart-btn i { margin-right: 5px; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons .product-wishlist-remove-btn { padding: 8px 0px; display: block; margin-bottom:0; border-radius: 0; background: transparent; text-transform: capitalize; -moz-transition: 0.3s ease-in-out all; -webkit-transition: 0.3s ease-in-out all; transition: 0.3s ease-in-out all; letter-spacing: 0.075em; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons .product-wishlist-remove-btn:hover, .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons .product-wishlist-remove-btn:focus { color: #fff; } .product-wishlist-page-content .product-wishlist .shopping-cart-page:before, .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels:before, .product-wishlist-page-content .product-wishlist .shopping-cart-page .product:before, .product-wishlist-page-content .product-wishlist .shopping-cart-page:after, .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels:after, .product-wishlist-page-content .product-wishlist .shopping-cart-page .product:after, { content: ''; display: table; } /* END PRODUCT-WISHLIST-PAGE-CONTENT SECTION */ /*** START PRODUCT-WISHLIST SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .product-wishlist-page-content .product-wishlist-page-content-head { margin-bottom: 3em; } .product-wishlist-page-content .product-wishlist-page-content-head h2 { font-size: 2em; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels { display: none; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels .wishlist-buttons { float: left; width: 100%; margin: 25px auto; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-image { float: right; width: 100%; text-align: center; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-image img { margin: 0 0 10px 0px; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details { width: 100%; float: left; margin-bottom: 10px; text-align: center; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details .product-title { margin-right: 0; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details .product-description { margin-right: 0; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-stock { width: 100%; text-align: center; float: left; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-line-price { float: left; width: 100%; margin-top: 20px; text-align: center; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons { float: left; width: 100%; margin: 25px auto; } } @media (min-width: 480px) and (max-width: 736px) { .product-wishlist-page-content .product-wishlist-page-content-head { margin-bottom: 3em; } .product-wishlist-page-content .product-wishlist-page-content-head h2 { font-size: 2em; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels { display: none; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .column-labels .wishlist-buttons { float: left; width: 100%; margin: 25px auto; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-image { float: right; width: 100%; text-align: center; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-image img { margin: 0 0 10px 0px; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details { width: 100%; float: left; margin-bottom: 10px; text-align: center; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details .product-title { margin-right: 0; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-details .product-description { margin-right: 0; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-stock { width: 100%; text-align: center; float: left; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .product-line-price { float: left; width: 100%; margin-top: 20px; text-align: center; } .product-wishlist-page-content .product-wishlist .shopping-cart-page .product .wishlist-buttons { float: left; width: 100%; margin: 25px auto; } } /*** END PRODUCT-WISHLIST SCREENS SIZSES ***/ /******----END PRODUCT-WISHLIST PAGE----******/ /*======================================================================*/ /******----START STORE'S ALL PAGES PAGE----******/ /* START STORE-PAGES-PAGE-BACKGROUND SECTION */ .store-pages-page-background { background-image: url('../../images/image-1920×1080.jpg'); } /* END STORE-PAGES-PAGE-BACKGROUND SECTION */ /* START STORE-PAGES-PAGE-CONTENT SECTION */ .store-pages-page-content .store-pages-page-content-head { margin-bottom: 5em; text-align: center; } .store-pages-page-content .store-pages-page-content-head h2 { font-size: 2.75em; margin: 0 0 .5em 0; font-weight: 100; } .store-pages-page-content .panel-group .panel-default .panel-heading { padding: 20px 15px; } .store-pages-page-content .panel-group .panel-default .heading-four { background-color: rgba(243, 156, 18,1.0); } .store-pages-page-content .panel-group .panel-default .panel-heading .panel-title a { color: #fff; outline: none; } .store-pages-page-content .panel-group .panel-default .panel-heading .panel-title a.collapsed:before { content: "\e080"; color: rgba(250,250,250,.5); } .store-pages-page-content .panel-group .panel-default .panel-heading .panel-title a:before { font-family: 'Glyphicons Halflings'; content: "\e114"; float: right; color: #fff; } .store-pages-page-content .panel-group .panel-default .panel-heading .panel-title a i { margin-right: 5px; } .store-pages-page-content .panel-group .panel-default .store-pages-sections h4 { color: rgba(0,0,0,.8); } .store-pages-page-content .panel-group .panel-default .store-pages-sections .careers-title li { color: rgba(0,0,0,.4) } /* END STORE-PAGES-PAGE-CONTENT SECTION */ /*** START STORE'S ALL PAGES PAGE SCREENS SIZSES ***/ @media (min-width: 0px) and (max-width: 480px) { .store-pages-page-content .store-pages-page-content-head { margin-bottom: 3em; } .store-pages-page-content .store-pages-page-content-head h2 { font-size: 2em; } } @media (min-width: 480px) and (max-width: 736px) { .store-pages-page-content .store-pages-page-content-head { margin-bottom: 3em; } .store-pages-page-content .store-pages-page-content-head h2 { font-size: 2em; } } /*** END STORE'S ALL PAGES PAGE SCREENS SIZSES ***/ /******----END STORE'S ALL PAGES PAGE----******/ /*======================================================================*/ /******----START PAGES-BACKGROUND----******/ .pages-background { background-size: cover; background-position: top; background-attachment: fixed; background-repeat: no-repeat; text-align: center; padding: 12em 20em; } .pages-background h1 { font-size: 4.2em; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6); } @media (min-width: 0px) and (max-width: 480px) { .pages-background { background-attachment: scroll; padding: 7em 0em; } .pages-background h1 { font-size: 3.2em; } } @media (min-width: 480px) and (max-width: 736px) { .pages-background { background-attachment: scroll; padding: 7em 0em; } .pages-background h1 { font-size: 3.2em; } } @media (min-width: 736px) and (max-width: 980px) { .pages-background { background-attachment: scroll; padding: 12em 0em; } } @media (min-width: 980px) and (max-width: 1280px) { .pages-background { padding: 12em 0em; } } @media (min-width: 1280px) and (max-width: 1680px) { .pages-background { padding: 12em 0em; } } /******---END PAGES-BACKGROUND---******/
0.265214
0.067855
.__g__b__button { /** * Background gradient compatible with all available browsers */ background: -moz-linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(240,77,109,1) 76%, rgba(238,42,123,1) 93%); background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(249,237,50,1)), color-stop(76%, rgba(240,77,109,1)), color-stop(93%, rgba(238,42,123,1))); background: -webkit-linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(240,77,109,1) 76%, rgba(238,42,123,1) 93%); background: -o-linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(240,77,109,1) 76%, rgba(238,42,123,1) 93%); background: -ms-linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(240,77,109,1) 76%, rgba(238,42,123,1) 93%); background: linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(240,77,109,1) 76%, rgba(238,42,123,1) 93%); /** * Border properties */ -webkit-border-radius: 50px; -moz-border-radius: 50px; border-radius: 50px; border: none; /** * Padding */ padding-left: 8%; padding-right: 8%; padding-bottom: 2%; padding-top: 2%; cursor: pointer; font-weight: bold; } .__g__b__button:hover { background: rgba(249,237,50,1); } .__obl { color: #ee2a7b; font-weight: bold; } .__cancel_b { /** * Background gradient compatible with all available browsers */ background: -moz-linear-gradient(45deg, rgba(89,91,97,1) 0%, rgba(64,64,64,1) 100%); /* ff3.6+ */ background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(89,91,97,1)), color-stop(100%, rgba(64,64,64,1))); /* safari4+,chrome */ background: -webkit-linear-gradient(45deg, rgba(89,91,97,1) 0%, rgba(64,64,64,1) 100%); /* safari5.1+,chrome10+ */ background: -o-linear-gradient(45deg, rgba(89,91,97,1) 0%, rgba(64,64,64,1) 100%); /* opera 11.10+ */ background: -ms-linear-gradient(45deg, rgba(89,91,97,1) 0%, rgba(64,64,64,1) 100%); /* ie10+ */ background: linear-gradient(45deg, rgba(89,91,97,1) 0%, rgba(64,64,64,1) 100%); /* w3c */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#404040', endColorstr='#595B61',GradientType=1 ); /* ie6-9 */ /** * Border properties */ -webkit-border-radius: 50px; -moz-border-radius: 50px; border-radius: 50px; border: none; /** * Padding */ padding-left: 8%; padding-right: 8%; padding-bottom: 2%; padding-top: 2%; cursor: pointer; font-weight: bold; }
public/css/button.css
.__g__b__button { /** * Background gradient compatible with all available browsers */ background: -moz-linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(240,77,109,1) 76%, rgba(238,42,123,1) 93%); background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(249,237,50,1)), color-stop(76%, rgba(240,77,109,1)), color-stop(93%, rgba(238,42,123,1))); background: -webkit-linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(240,77,109,1) 76%, rgba(238,42,123,1) 93%); background: -o-linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(240,77,109,1) 76%, rgba(238,42,123,1) 93%); background: -ms-linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(240,77,109,1) 76%, rgba(238,42,123,1) 93%); background: linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(240,77,109,1) 76%, rgba(238,42,123,1) 93%); /** * Border properties */ -webkit-border-radius: 50px; -moz-border-radius: 50px; border-radius: 50px; border: none; /** * Padding */ padding-left: 8%; padding-right: 8%; padding-bottom: 2%; padding-top: 2%; cursor: pointer; font-weight: bold; } .__g__b__button:hover { background: rgba(249,237,50,1); } .__obl { color: #ee2a7b; font-weight: bold; } .__cancel_b { /** * Background gradient compatible with all available browsers */ background: -moz-linear-gradient(45deg, rgba(89,91,97,1) 0%, rgba(64,64,64,1) 100%); /* ff3.6+ */ background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(89,91,97,1)), color-stop(100%, rgba(64,64,64,1))); /* safari4+,chrome */ background: -webkit-linear-gradient(45deg, rgba(89,91,97,1) 0%, rgba(64,64,64,1) 100%); /* safari5.1+,chrome10+ */ background: -o-linear-gradient(45deg, rgba(89,91,97,1) 0%, rgba(64,64,64,1) 100%); /* opera 11.10+ */ background: -ms-linear-gradient(45deg, rgba(89,91,97,1) 0%, rgba(64,64,64,1) 100%); /* ie10+ */ background: linear-gradient(45deg, rgba(89,91,97,1) 0%, rgba(64,64,64,1) 100%); /* w3c */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#404040', endColorstr='#595B61',GradientType=1 ); /* ie6-9 */ /** * Border properties */ -webkit-border-radius: 50px; -moz-border-radius: 50px; border-radius: 50px; border: none; /** * Padding */ padding-left: 8%; padding-right: 8%; padding-bottom: 2%; padding-top: 2%; cursor: pointer; font-weight: bold; }
0.565299
0.12921
.contact .contact-header { color: white; padding: 30px 0 80px; text-align: center; background-image: url("/resources/assets/frontend/img/contact-header.png"); -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-position: center; background-repeat: no-repeat; min-height: 400px; } .contact .contact-header .title { font-size: 25px; border-bottom: 5px solid #707070; padding: 10px 0; max-width: 350px; margin: 20px auto; } .contact .contact-header .title span { color: #707070; font-weight: bold; } .contact .contact-header .sub { font-size: 18px; } .contact .contact-header .text { font-size: 25px; color: #4f4f4f; font-weight: bold; margin: 15px 0; } .contact .contact-header .icon { position: relative; } .contact .contact-header .icon .holder { display: inline-block; vertical-align: top; overflow: hidden; } .contact .contact-header .icon .holder:hover .text { display: block; } .contact .contact-header .icon .holder .text { display: none; position: absolute; top: 100px; text-align: center; margin-right: 100px; font-size: 20px; font-weight: 500; } .contact .contact-header .icon .fa-phone:hover { background-color: #43B51F; } .contact .contact-header .icon .fa-map-marker:hover { background-color: #3498DB; } .contact .contact-header .icon .fa-facebook:hover { background-color: #346DA6; } .contact .contact-header .icon .fa-twitter:hover { background-color: #4A7FB6; } .contact .contact-header .icon .fa-instagram:hover { background-color: #CE6F2D; } .contact .contact-header .icon .fa { background-color: #6A6A6A; font-size: 35px; height: 35px; width: 35px; line-height: 35px; padding: 15px; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; margin: 30px 10px; cursor: pointer; -webkit-transition: 0.3s all; -moz-transition: 0.3s all; -o-transition: 0.3s all; transition: 0.3s all; } .contact .contact-content { overflow: auto; } .contact .contact-content .col-md-6 .field input[type="text"] { border: 2px solid #e7e7e7; background-color: #f4f4f4; width: 100%; height: 65px; font-size: 20.83px; color: #bebebe; font-weight: 300; padding: 15px; margin: 5px 0; } .contact .contact-content .col-md-6 .field textarea { resize: none; height: 215px; border: 2px solid #e7e7e7; background-color: #f4f4f4; width: 100%; font-size: 20.83px; color: #bebebe; font-weight: 300; padding: 15px; margin: 15px 0; } .contact .contact-content .col-md-6 .field button { color: #1f76b5; border: 2px solid #1f76b5; background-color: white; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; font-size: 20.83px; padding: 5px 10px; font-weight: 300; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .contact .contact-content .col-md-6 .field button:hover { background-color: #1f76b5; color: white; } .contact .contact-content .col-md-6 .field button .fa { font-weight: normal; } .contact .contact-content .left { margin: 10px 0; } .contact .contact-content .left .field { margin-left: auto; } @media screen and (max-width: 991px) { .contact .contact-content .left .field { margin: auto; } } @media screen and (max-width: 991px) { .contact .contact-content .right .field { margin: auto; } } .store-content { margin-top: 15px; } .store-content table { table-layout: fixed; width: 100%; text-align: center; } .store-content table td { padding: 10px; } .store-content table thead { background-color: #6FBE45; color: white; border-top: 1px solid #92CC88; border-left: 1px solid #92CC88; border-right: 1px solid #92CC88; } .store-content table thead td { padding: 10px 0; border-right: 1px solid #92CC88; } .store-content table thead td:last-child { border-right: 0px solid #92CC88; } .store-content table tbody .storename { text-transform: uppercase; } .store-content table tbody tr:nth-child(even) { background: #EFF5F9; } .store-content table tbody tr:nth-child(odd) { background: #FFF; } .store-content table tbody td { border-right: 1px solid #CED6DB; border-left: 1px solid #CED6DB; border-bottom: 1px solid #CED6DB; word-break: break-all; } .store-content table tbody td img { max-width: 100%; } /*# sourceMappingURL=contact.css.map */
resources/assets/frontend/css/contact.css
.contact .contact-header { color: white; padding: 30px 0 80px; text-align: center; background-image: url("/resources/assets/frontend/img/contact-header.png"); -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-position: center; background-repeat: no-repeat; min-height: 400px; } .contact .contact-header .title { font-size: 25px; border-bottom: 5px solid #707070; padding: 10px 0; max-width: 350px; margin: 20px auto; } .contact .contact-header .title span { color: #707070; font-weight: bold; } .contact .contact-header .sub { font-size: 18px; } .contact .contact-header .text { font-size: 25px; color: #4f4f4f; font-weight: bold; margin: 15px 0; } .contact .contact-header .icon { position: relative; } .contact .contact-header .icon .holder { display: inline-block; vertical-align: top; overflow: hidden; } .contact .contact-header .icon .holder:hover .text { display: block; } .contact .contact-header .icon .holder .text { display: none; position: absolute; top: 100px; text-align: center; margin-right: 100px; font-size: 20px; font-weight: 500; } .contact .contact-header .icon .fa-phone:hover { background-color: #43B51F; } .contact .contact-header .icon .fa-map-marker:hover { background-color: #3498DB; } .contact .contact-header .icon .fa-facebook:hover { background-color: #346DA6; } .contact .contact-header .icon .fa-twitter:hover { background-color: #4A7FB6; } .contact .contact-header .icon .fa-instagram:hover { background-color: #CE6F2D; } .contact .contact-header .icon .fa { background-color: #6A6A6A; font-size: 35px; height: 35px; width: 35px; line-height: 35px; padding: 15px; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; margin: 30px 10px; cursor: pointer; -webkit-transition: 0.3s all; -moz-transition: 0.3s all; -o-transition: 0.3s all; transition: 0.3s all; } .contact .contact-content { overflow: auto; } .contact .contact-content .col-md-6 .field input[type="text"] { border: 2px solid #e7e7e7; background-color: #f4f4f4; width: 100%; height: 65px; font-size: 20.83px; color: #bebebe; font-weight: 300; padding: 15px; margin: 5px 0; } .contact .contact-content .col-md-6 .field textarea { resize: none; height: 215px; border: 2px solid #e7e7e7; background-color: #f4f4f4; width: 100%; font-size: 20.83px; color: #bebebe; font-weight: 300; padding: 15px; margin: 15px 0; } .contact .contact-content .col-md-6 .field button { color: #1f76b5; border: 2px solid #1f76b5; background-color: white; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; font-size: 20.83px; padding: 5px 10px; font-weight: 300; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .contact .contact-content .col-md-6 .field button:hover { background-color: #1f76b5; color: white; } .contact .contact-content .col-md-6 .field button .fa { font-weight: normal; } .contact .contact-content .left { margin: 10px 0; } .contact .contact-content .left .field { margin-left: auto; } @media screen and (max-width: 991px) { .contact .contact-content .left .field { margin: auto; } } @media screen and (max-width: 991px) { .contact .contact-content .right .field { margin: auto; } } .store-content { margin-top: 15px; } .store-content table { table-layout: fixed; width: 100%; text-align: center; } .store-content table td { padding: 10px; } .store-content table thead { background-color: #6FBE45; color: white; border-top: 1px solid #92CC88; border-left: 1px solid #92CC88; border-right: 1px solid #92CC88; } .store-content table thead td { padding: 10px 0; border-right: 1px solid #92CC88; } .store-content table thead td:last-child { border-right: 0px solid #92CC88; } .store-content table tbody .storename { text-transform: uppercase; } .store-content table tbody tr:nth-child(even) { background: #EFF5F9; } .store-content table tbody tr:nth-child(odd) { background: #FFF; } .store-content table tbody td { border-right: 1px solid #CED6DB; border-left: 1px solid #CED6DB; border-bottom: 1px solid #CED6DB; word-break: break-all; } .store-content table tbody td img { max-width: 100%; } /*# sourceMappingURL=contact.css.map */
0.440229
0.04714
.container { display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; width: 100%; height: 100vh; } .chevron { position: absolute; width: 4.55rem; height: 1.04rem; opacity: 0; -webkit-transform: scale(0.3); transform: scale(0.3); -webkit-animation: move-chevron 3s ease-out infinite; animation: move-chevron 3s ease-out infinite; } .chevron:first-child { -webkit-animation: move-chevron 3s ease-out 1s infinite; animation: move-chevron 3s ease-out 1s infinite; } .chevron:nth-child(2) { -webkit-animation: move-chevron 3s ease-out 2s infinite; animation: move-chevron 3s ease-out 2s infinite; } .chevron:before, .chevron:after { content: ''; position: absolute; top: 0; height: 100%; width: 50%; background: #ffffff; } .chevron:before { left: 0; -webkit-transform: skewY(30deg); transform: skewY(30deg); } .chevron:after { right: 0; width: 50%; -webkit-transform: skewY(-30deg); transform: skewY(-30deg); } @-webkit-keyframes move-chevron { 25% { opacity: 1; } 33.3% { opacity: 1; -webkit-transform: translateY(4.94rem); transform: translateY(4.94rem); } 66.6% { opacity: 1; -webkit-transform: translateY(6.76rem); transform: translateY(6.76rem); } 100% { opacity: 0; -webkit-transform: translateY(10.4rem) scale(0.5); transform: translateY(10.4rem) scale(0.5); } } @keyframes move-chevron { 25% { opacity: 1; } 33.3% { opacity: 1; -webkit-transform: translateY(4.94rem); transform: translateY(4.94rem); } 66.6% { opacity: 1; -webkit-transform: translateY(6.76rem); transform: translateY(6.76rem); } 100% { opacity: 0; -webkit-transform: translateY(10.4rem) scale(0.5); transform: translateY(10.4rem) scale(0.5); } }
assets/css/scroll-arrow.css
.container { display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; width: 100%; height: 100vh; } .chevron { position: absolute; width: 4.55rem; height: 1.04rem; opacity: 0; -webkit-transform: scale(0.3); transform: scale(0.3); -webkit-animation: move-chevron 3s ease-out infinite; animation: move-chevron 3s ease-out infinite; } .chevron:first-child { -webkit-animation: move-chevron 3s ease-out 1s infinite; animation: move-chevron 3s ease-out 1s infinite; } .chevron:nth-child(2) { -webkit-animation: move-chevron 3s ease-out 2s infinite; animation: move-chevron 3s ease-out 2s infinite; } .chevron:before, .chevron:after { content: ''; position: absolute; top: 0; height: 100%; width: 50%; background: #ffffff; } .chevron:before { left: 0; -webkit-transform: skewY(30deg); transform: skewY(30deg); } .chevron:after { right: 0; width: 50%; -webkit-transform: skewY(-30deg); transform: skewY(-30deg); } @-webkit-keyframes move-chevron { 25% { opacity: 1; } 33.3% { opacity: 1; -webkit-transform: translateY(4.94rem); transform: translateY(4.94rem); } 66.6% { opacity: 1; -webkit-transform: translateY(6.76rem); transform: translateY(6.76rem); } 100% { opacity: 0; -webkit-transform: translateY(10.4rem) scale(0.5); transform: translateY(10.4rem) scale(0.5); } } @keyframes move-chevron { 25% { opacity: 1; } 33.3% { opacity: 1; -webkit-transform: translateY(4.94rem); transform: translateY(4.94rem); } 66.6% { opacity: 1; -webkit-transform: translateY(6.76rem); transform: translateY(6.76rem); } 100% { opacity: 0; -webkit-transform: translateY(10.4rem) scale(0.5); transform: translateY(10.4rem) scale(0.5); } }
0.493897
0.094929
html, body { height: 100%; } .wrapper { min-height: 100%; height: auto !important; height: 100%; margin: 0 auto -4em; } #footer, .push { height: 8em; } /* 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 */ /********************************/ .carousel{ margin-top:-1.6em !important; } .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; z-index: 999; } /********************************/ /* 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; } /********************************/ /* Media Queries */ /********************************/ @media screen and (min-width: 980px){ .hero { width: 980px; } } @media screen and (max-width: 640px){ .hero h1 { font-size: 4em; } } #imgNav{ width:2em; margin-right:0.5em; border: solid 0.15em #ccc; padding:0.1em; border-radius:50px; } #imgProfile{ width:8em; border:solid 0.3em #ccc; border-radius:6em; padding:0.2em; } #resultSearch { position: absolute; z-index: 5; display:none; } #resultSearch div img{ width: 2em; float: left; margin-top:0.1em; } #resultSearch div { background-color: white; height: 2.5em; width: 20em; } #resultSearch div a{ color:#555; } #resultSearch div a:hover{ text-decoration:none; } #resultSearch div:hover { background-color: #1abc9c; } #search{ display:none; margin-top:0.3em; width: 20em; height:2em; } #buttonSearch{ margin-top: 0.5em; padding: 0.25em; margin-left:-0.8em; color:#ccc; background-color:rgba(0, 0, 0, 0.01); border-color:rgba(0, 0, 0, 0); } #advSearch{ display: none; padding: 0.25em; color:#ccc; background-color:rgba(0, 0, 0, 0.01); border-color:rgba(0, 0, 0, 0); font-size:1.5em; top:0.35em; } .font{ color:#ccc; margin-top:0.2em; } .inputAdvaOptionLong{ margin-left:0.5em; width:20em !important; } #advOption{ display:none; background-color:#464646; width:20em; position:absolute; z-index:99; height:12.5em; } .inputAdvaOption{ height:1.8em; margin-left:0.5em;; width:8em !important; margin-bottom:1em; } .zoneOffers{ margin-top: 4em; } .buttons{ background-color: #1abc9c; color:white; } .buttons:hover{ background-color: #46B09B; color:white; } /*Pie de la página*/ #footer { margin-top: 2em; background-color: #eee; } /*Mensaje de aviso para formularios*/ .flash{ margin-bottom: 1em; border-radius: 1em; padding: 1em; font-weight: bold; } .tableHeader, .tableHeader:hover{ text-align:center; background: rgba(245,245,245,1); background: -moz-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(245,245,245,1)), color-stop(67%, rgba(232,232,232,1)), color-stop(100%, rgba(214,214,214,1))); background: -webkit-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: -o-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: -ms-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: linear-gradient(to bottom, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#d6d6d6', GradientType=0 ); } /*ESTILOS PARA PRODUCTO*/ .productHead{ margin-top:-2em !important; border-bottom:solid 0.01em #777; width:98%; margin:auto; margin-bottom: 1.5em; } .textDescription{ font-size:1.5em; margin:2em; margin-bottom:0em; } .boxCharacteristic{ height: 8em; border: solid grey 0.1em; background-color: rgb(253, 253, 253); color:#83a4de; margin-right: 0.5em; } .characteristic{ margin-top: 2em; } #myCarousel{ margin-top: 0 !important; } #myCarousel img{ height: 35em; width: 100%; } /*Estilos IMAGES*/ .btnRemoveImage{ position: absolute; top:0.2em; right: 1.5em; color: white; border-color: red; background-color: red; } .btnRemoveImage:hover{ background-color:rgb(234, 22, 22); border-color:#ef0000; color:#eee; } .logoBrands{ height:1.5em; margin-top:-0.4em; margin-right:0.5em; } .linksPagination{ margin-top:-1.5em; } .linksPagination .pagination{ float:right; } .iconGreen{ color: green; top:-0.6em !important; left:0.5em !important; } .offerDescription{ overflow: hidden; height: 6em; } .brandFormProduct{ height:2em; } .headerCreateProduct{ padding: 0.2em; background: rgba(245,245,245,1); background: -moz-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(245,245,245,1)), color-stop(67%, rgba(232,232,232,1)), color-stop(100%, rgba(214,214,214,1))); background: -webkit-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: -o-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: -ms-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: linear-gradient(to bottom, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#d6d6d6', GradientType=0 ); } .positionBrand{ margin:0; } #botonProducts,#botonBrands,#botonUsers,#botonUploadXML{ cursor: pointer; } #map{ width: 100%; height: 500px; margin-top: 2em; } .marginTopLeft{ margin-top: 2em; margin-left: 2em; } .imageOfferHome{ margin-top: 1.8em; height: 10em; } #footer ul{ margin-top:1em; list-style: none; } #footer ul li a, #footer ul li{ color: #999; } .linkProductsShow:hover{ text-decoration:none; } .linkProductsShow h3{ color:black; } .discount{ color:#ff9b00; font-weight:bold; } .productBody{ min-height:60em; } .bigTittles{ margin-top:1em; font-size:6em !important; } .newBrand{ background-color:#00c9ff; color:white; border-radius:0.5em; font-size:0.8em; padding:0.2em; } #iconCart{ font-size: 1.4em; } .subtotal{ background-color: #c9c9c9; } .btnRemoveCart{ color: red; } .btnRemoveCart:hover{ color: #e90000; cursor: pointer; } #buttonSaveProfile{ margin-top:-2.4em; height:2.25em; }
public/css/styles.css
html, body { height: 100%; } .wrapper { min-height: 100%; height: auto !important; height: 100%; margin: 0 auto -4em; } #footer, .push { height: 8em; } /* 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 */ /********************************/ .carousel{ margin-top:-1.6em !important; } .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; z-index: 999; } /********************************/ /* 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; } /********************************/ /* Media Queries */ /********************************/ @media screen and (min-width: 980px){ .hero { width: 980px; } } @media screen and (max-width: 640px){ .hero h1 { font-size: 4em; } } #imgNav{ width:2em; margin-right:0.5em; border: solid 0.15em #ccc; padding:0.1em; border-radius:50px; } #imgProfile{ width:8em; border:solid 0.3em #ccc; border-radius:6em; padding:0.2em; } #resultSearch { position: absolute; z-index: 5; display:none; } #resultSearch div img{ width: 2em; float: left; margin-top:0.1em; } #resultSearch div { background-color: white; height: 2.5em; width: 20em; } #resultSearch div a{ color:#555; } #resultSearch div a:hover{ text-decoration:none; } #resultSearch div:hover { background-color: #1abc9c; } #search{ display:none; margin-top:0.3em; width: 20em; height:2em; } #buttonSearch{ margin-top: 0.5em; padding: 0.25em; margin-left:-0.8em; color:#ccc; background-color:rgba(0, 0, 0, 0.01); border-color:rgba(0, 0, 0, 0); } #advSearch{ display: none; padding: 0.25em; color:#ccc; background-color:rgba(0, 0, 0, 0.01); border-color:rgba(0, 0, 0, 0); font-size:1.5em; top:0.35em; } .font{ color:#ccc; margin-top:0.2em; } .inputAdvaOptionLong{ margin-left:0.5em; width:20em !important; } #advOption{ display:none; background-color:#464646; width:20em; position:absolute; z-index:99; height:12.5em; } .inputAdvaOption{ height:1.8em; margin-left:0.5em;; width:8em !important; margin-bottom:1em; } .zoneOffers{ margin-top: 4em; } .buttons{ background-color: #1abc9c; color:white; } .buttons:hover{ background-color: #46B09B; color:white; } /*Pie de la página*/ #footer { margin-top: 2em; background-color: #eee; } /*Mensaje de aviso para formularios*/ .flash{ margin-bottom: 1em; border-radius: 1em; padding: 1em; font-weight: bold; } .tableHeader, .tableHeader:hover{ text-align:center; background: rgba(245,245,245,1); background: -moz-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(245,245,245,1)), color-stop(67%, rgba(232,232,232,1)), color-stop(100%, rgba(214,214,214,1))); background: -webkit-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: -o-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: -ms-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: linear-gradient(to bottom, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#d6d6d6', GradientType=0 ); } /*ESTILOS PARA PRODUCTO*/ .productHead{ margin-top:-2em !important; border-bottom:solid 0.01em #777; width:98%; margin:auto; margin-bottom: 1.5em; } .textDescription{ font-size:1.5em; margin:2em; margin-bottom:0em; } .boxCharacteristic{ height: 8em; border: solid grey 0.1em; background-color: rgb(253, 253, 253); color:#83a4de; margin-right: 0.5em; } .characteristic{ margin-top: 2em; } #myCarousel{ margin-top: 0 !important; } #myCarousel img{ height: 35em; width: 100%; } /*Estilos IMAGES*/ .btnRemoveImage{ position: absolute; top:0.2em; right: 1.5em; color: white; border-color: red; background-color: red; } .btnRemoveImage:hover{ background-color:rgb(234, 22, 22); border-color:#ef0000; color:#eee; } .logoBrands{ height:1.5em; margin-top:-0.4em; margin-right:0.5em; } .linksPagination{ margin-top:-1.5em; } .linksPagination .pagination{ float:right; } .iconGreen{ color: green; top:-0.6em !important; left:0.5em !important; } .offerDescription{ overflow: hidden; height: 6em; } .brandFormProduct{ height:2em; } .headerCreateProduct{ padding: 0.2em; background: rgba(245,245,245,1); background: -moz-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(245,245,245,1)), color-stop(67%, rgba(232,232,232,1)), color-stop(100%, rgba(214,214,214,1))); background: -webkit-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: -o-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: -ms-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); background: linear-gradient(to bottom, rgba(245,245,245,1) 0%, rgba(232,232,232,1) 67%, rgba(214,214,214,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#d6d6d6', GradientType=0 ); } .positionBrand{ margin:0; } #botonProducts,#botonBrands,#botonUsers,#botonUploadXML{ cursor: pointer; } #map{ width: 100%; height: 500px; margin-top: 2em; } .marginTopLeft{ margin-top: 2em; margin-left: 2em; } .imageOfferHome{ margin-top: 1.8em; height: 10em; } #footer ul{ margin-top:1em; list-style: none; } #footer ul li a, #footer ul li{ color: #999; } .linkProductsShow:hover{ text-decoration:none; } .linkProductsShow h3{ color:black; } .discount{ color:#ff9b00; font-weight:bold; } .productBody{ min-height:60em; } .bigTittles{ margin-top:1em; font-size:6em !important; } .newBrand{ background-color:#00c9ff; color:white; border-radius:0.5em; font-size:0.8em; padding:0.2em; } #iconCart{ font-size: 1.4em; } .subtotal{ background-color: #c9c9c9; } .btnRemoveCart{ color: red; } .btnRemoveCart:hover{ color: #e90000; cursor: pointer; } #buttonSaveProfile{ margin-top:-2.4em; height:2.25em; }
0.292292
0.061171
* { -webkit-tap-highlight-color: rgba(255,0,0,0); -webkit-margin-before: 0px; -webkit-margin-after: 0px; -webkit-padding-start: 0px; margin: 0; padding: 0; -webkit-box-sizing: border-box; box-sizing: border-box; list-style: none; -webkit-font-smoothing: antialiased; -webkit-touch-callout: none; font-family: PingFangSC-Regular; } .advisoryReport { padding: 0 10px 50px 10px; width: 830px; margin: 20px auto; } .advisoryReport .main_body { border: 1px solid #dadee3; font-size: 14px; } .advisoryReport .main_body .header { margin: 30px auto 0; width: 400px; text-align: center; } .advisoryReport .main_body .header .title { font-size: 1.7rem; font-weight: bold; margin-bottom: 20px; } .advisoryReport .main_body .header .report_num { position: relative; width: 100%; background: #fff; margin: 20px 0 -10px 0; } .advisoryReport .main_body .body { width: 100%; border-top: 1px solid #dadee3; padding: 0 30px; } .advisoryReport .main_body .body .info { margin-top: 20px; height: 95px; background: #ff6704; color: #fff; } .advisoryReport .main_body .body .item { width: 33%; float: left; padding: 20px 0 20px 40px; height: 100%; background: #ff6704; } .advisoryReport .main_body .body .item .item_price span { font-size: 2rem; } .advisoryReport .main_body .body .item:nth-child(3) .item_price { margin-top: 5px; } .advisoryReport .main_body .body .base_info { padding: 0 10px; } .advisoryReport .main_body .body .div_title { font-weight: 600; margin: 15px 0; } .advisoryReport .main_body .body .base_info .base_body { position: relative; font-size: 12px; } .advisoryReport .main_body .body .base_info .base_body .table_box { width: 405px; display: inline-block; margin-right: 2px; } .advisoryReport .main_body .body .base_info .base_body .table_box table { border-collapse: collapse; width: 100%; } .advisoryReport .main_body .body .base_info .base_body .table_box table tr { height: 30px; } .advisoryReport .main_body .body .base_info .base_body .table_box table td { border: 1px solid #dadee3; width: 50%; word-break: break-all; } .advisoryReport .main_body .body .base_info .base_body .table_box table td span { width: 125px; text-align: right; display: inline-block; } .advisoryReport .main_body .body .base_info .base_body .valuation { display: inline-block; position: absolute; height: 100%; } .advisoryReport .main_body .body .base_info .base_body .valuation .method { width: 100%; border-top: 1px solid #dadee3; bottom: 0; position: absolute; height: 60px; text-align: center; } .advisoryReport .main_body .body .base_info .base_body .valuation .method font { font-size: 16px; font-weight: 600; width: 90px; display: inline-block; position: relative; top: -11px; background: #fff; } .advisoryReport .main_body .body .base_info .base_body .valuation .method { width: 100%; border-top: 1px solid #dadee3; bottom: 0; position: absolute; height: 60px; text-align: center; } .advisoryReport .main_body .body .base_info .base_body { position: relative; font-size: 12px; } .advisoryReport .main_body .body .base_info .base_body .valuation .method .button { position: absolute; bottom: 3px; left:10px; } .advisoryReport .main_body .body .base_info .base_body .valuation .method .button .btn { cursor: default; height: 40px; background: #ff6704 !important; font-size: 15px; padding: 0 16px; line-height: 40px; } .btn { font-family: PingFangSC-Regular; display: inline-block; min-width: 70px; height: 34px; line-height: 34px; margin-top: -5px; padding: 0 10px; border-radius: 4px; color: #fff; text-align: center; cursor: pointer; vertical-align: middle; } .advisoryReport .main_body .body .trend { padding-left: 10px; } .advisoryReport .main_body .body .div_title { font-weight: 600; margin: 15px 0; } .advisoryReport .main_body .body .trend #market-trend { height: 270px; width: 98%; border: 1px solid #dadee3; padding: 10px 5px; } .advisoryReport .main_body .body .cert { padding: 0 10px; } .advisoryReport .main_body .body .div_title { font-weight: 600; margin: 15px 0; } .advisoryReport .main_body .body .cert .img { height: 225px; margin-bottom: 10px; } .advisoryReport .main_body .body .cert .img .rcLF { width: 164px; margin-right: 70px; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; } .advisoryReport .main_body .body .cert .img div img { height: 100%; width: 100%; } .advisoryReport .main_body .body .cert .img div:nth-child(2) { text-align: center; } .advisoryReport .main_body .body .cert .img .rcZZ { width: 170px; margin-right: 70px; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; } .advisoryReport .main_body .body .cert .img .rcZZ .rcTop { width: 170px; height: 112px; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; } .advisoryReport .main_body .body .cert .img div img { height: 100%; width: 100%; } .advisoryReport .main_body .body .cert .img .rcZZ .rcBot { height: 112px; /* position: absolute; */ } .advisoryReport .main_body .body .cert .img div:last-child { text-align: right; } .advisoryReport .main_body .body .cert .img div:nth-child(2) { text-align: center; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; } .advisoryReport .main_body .body .cert .img .rcZZ .rcBot div { display: inline-block; height: 112px; width: 72px; padding-top: 20px; padding-bottom: 20px; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; } .advisoryReport .main_body .body .cert .img div img { height: 100%; width: 100%; } .advisoryReport .main_body .body .cert .img .rcZZ .rcBot div { display: inline-block; height: 112px; width: 72px; padding-top: 20px; padding-bottom: 20px; } .advisoryReport .main_body .body .cert .img div:last-child { text-align: right; } .advisoryReport .main_body .body .cert .img div:nth-child(2) { text-align: center; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; } .advisoryReport .main_body .body .cert .img div img { height: 100%; width: 100%; } .advisoryReport .main_body .body .cert .img div:last-child { text-align: right; } .advisoryReport .main_body .body .cert .img .rcYZ { width: 218px; position: relative; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; } .advisoryReport .main_body .body .cert .img div img { height: 100%; width: 100%; } .advisoryReport .main_body .body .cert .img .rcYZ .reportSign { height: 40px; width: 100%; position: absolute; top: 50%; left: 0; margin-top: -20px; text-align: center; line-height: 28px; font-size: 14px; font-weight: 600; } .advisoryReport .main_body .body .cert .img div:last-child { text-align: right; } .advisoryReport .main_body .body .cert .img div:nth-child(2) { text-align: center; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; }
Class-backend/src/main/resources/template/css/advisory.css
* { -webkit-tap-highlight-color: rgba(255,0,0,0); -webkit-margin-before: 0px; -webkit-margin-after: 0px; -webkit-padding-start: 0px; margin: 0; padding: 0; -webkit-box-sizing: border-box; box-sizing: border-box; list-style: none; -webkit-font-smoothing: antialiased; -webkit-touch-callout: none; font-family: PingFangSC-Regular; } .advisoryReport { padding: 0 10px 50px 10px; width: 830px; margin: 20px auto; } .advisoryReport .main_body { border: 1px solid #dadee3; font-size: 14px; } .advisoryReport .main_body .header { margin: 30px auto 0; width: 400px; text-align: center; } .advisoryReport .main_body .header .title { font-size: 1.7rem; font-weight: bold; margin-bottom: 20px; } .advisoryReport .main_body .header .report_num { position: relative; width: 100%; background: #fff; margin: 20px 0 -10px 0; } .advisoryReport .main_body .body { width: 100%; border-top: 1px solid #dadee3; padding: 0 30px; } .advisoryReport .main_body .body .info { margin-top: 20px; height: 95px; background: #ff6704; color: #fff; } .advisoryReport .main_body .body .item { width: 33%; float: left; padding: 20px 0 20px 40px; height: 100%; background: #ff6704; } .advisoryReport .main_body .body .item .item_price span { font-size: 2rem; } .advisoryReport .main_body .body .item:nth-child(3) .item_price { margin-top: 5px; } .advisoryReport .main_body .body .base_info { padding: 0 10px; } .advisoryReport .main_body .body .div_title { font-weight: 600; margin: 15px 0; } .advisoryReport .main_body .body .base_info .base_body { position: relative; font-size: 12px; } .advisoryReport .main_body .body .base_info .base_body .table_box { width: 405px; display: inline-block; margin-right: 2px; } .advisoryReport .main_body .body .base_info .base_body .table_box table { border-collapse: collapse; width: 100%; } .advisoryReport .main_body .body .base_info .base_body .table_box table tr { height: 30px; } .advisoryReport .main_body .body .base_info .base_body .table_box table td { border: 1px solid #dadee3; width: 50%; word-break: break-all; } .advisoryReport .main_body .body .base_info .base_body .table_box table td span { width: 125px; text-align: right; display: inline-block; } .advisoryReport .main_body .body .base_info .base_body .valuation { display: inline-block; position: absolute; height: 100%; } .advisoryReport .main_body .body .base_info .base_body .valuation .method { width: 100%; border-top: 1px solid #dadee3; bottom: 0; position: absolute; height: 60px; text-align: center; } .advisoryReport .main_body .body .base_info .base_body .valuation .method font { font-size: 16px; font-weight: 600; width: 90px; display: inline-block; position: relative; top: -11px; background: #fff; } .advisoryReport .main_body .body .base_info .base_body .valuation .method { width: 100%; border-top: 1px solid #dadee3; bottom: 0; position: absolute; height: 60px; text-align: center; } .advisoryReport .main_body .body .base_info .base_body { position: relative; font-size: 12px; } .advisoryReport .main_body .body .base_info .base_body .valuation .method .button { position: absolute; bottom: 3px; left:10px; } .advisoryReport .main_body .body .base_info .base_body .valuation .method .button .btn { cursor: default; height: 40px; background: #ff6704 !important; font-size: 15px; padding: 0 16px; line-height: 40px; } .btn { font-family: PingFangSC-Regular; display: inline-block; min-width: 70px; height: 34px; line-height: 34px; margin-top: -5px; padding: 0 10px; border-radius: 4px; color: #fff; text-align: center; cursor: pointer; vertical-align: middle; } .advisoryReport .main_body .body .trend { padding-left: 10px; } .advisoryReport .main_body .body .div_title { font-weight: 600; margin: 15px 0; } .advisoryReport .main_body .body .trend #market-trend { height: 270px; width: 98%; border: 1px solid #dadee3; padding: 10px 5px; } .advisoryReport .main_body .body .cert { padding: 0 10px; } .advisoryReport .main_body .body .div_title { font-weight: 600; margin: 15px 0; } .advisoryReport .main_body .body .cert .img { height: 225px; margin-bottom: 10px; } .advisoryReport .main_body .body .cert .img .rcLF { width: 164px; margin-right: 70px; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; } .advisoryReport .main_body .body .cert .img div img { height: 100%; width: 100%; } .advisoryReport .main_body .body .cert .img div:nth-child(2) { text-align: center; } .advisoryReport .main_body .body .cert .img .rcZZ { width: 170px; margin-right: 70px; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; } .advisoryReport .main_body .body .cert .img .rcZZ .rcTop { width: 170px; height: 112px; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; } .advisoryReport .main_body .body .cert .img div img { height: 100%; width: 100%; } .advisoryReport .main_body .body .cert .img .rcZZ .rcBot { height: 112px; /* position: absolute; */ } .advisoryReport .main_body .body .cert .img div:last-child { text-align: right; } .advisoryReport .main_body .body .cert .img div:nth-child(2) { text-align: center; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; } .advisoryReport .main_body .body .cert .img .rcZZ .rcBot div { display: inline-block; height: 112px; width: 72px; padding-top: 20px; padding-bottom: 20px; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; } .advisoryReport .main_body .body .cert .img div img { height: 100%; width: 100%; } .advisoryReport .main_body .body .cert .img .rcZZ .rcBot div { display: inline-block; height: 112px; width: 72px; padding-top: 20px; padding-bottom: 20px; } .advisoryReport .main_body .body .cert .img div:last-child { text-align: right; } .advisoryReport .main_body .body .cert .img div:nth-child(2) { text-align: center; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; } .advisoryReport .main_body .body .cert .img div img { height: 100%; width: 100%; } .advisoryReport .main_body .body .cert .img div:last-child { text-align: right; } .advisoryReport .main_body .body .cert .img .rcYZ { width: 218px; position: relative; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; } .advisoryReport .main_body .body .cert .img div img { height: 100%; width: 100%; } .advisoryReport .main_body .body .cert .img .rcYZ .reportSign { height: 40px; width: 100%; position: absolute; top: 50%; left: 0; margin-top: -20px; text-align: center; line-height: 28px; font-size: 14px; font-weight: 600; } .advisoryReport .main_body .body .cert .img div:last-child { text-align: right; } .advisoryReport .main_body .body .cert .img div:nth-child(2) { text-align: center; } .advisoryReport .main_body .body .cert .img div { height: 225px; float: left; display: inline-block; }
0.36727
0.049474
@import url('https://fonts.googleapis.com/css?family=Roboto|Titillium+Web&display=swap'); /*Incializar a página - reset*/ *{ padding: 0px; margin: 0px; border: border-box; } /*----------Estrutura--------------*/ .interface { /*Fatiamento da tela*/ display: grid; grid-template-columns: 200px auto; /*Divide em 2 colunas*/ grid-row-gap: 10vh; /*Layout da tela*/ grid-template-areas: "sidebar header" "sidebar main" "sidebar footer"; } .header{ grid-area: header; height: 50vh; background-image: linear-gradient( to right bottom, rgba(46, 46, 46, 0.3), rgba(0, 0, 0, 0.7)), url("background.jpg"); background-size: cover; background-position: top; background-repeat: no-repeat; box-shadow: 0px 0px 20px rgba(0,0,0,.5); position: relative; } /*Barra lateral*/ .sidebar{ font-family: 'Roboto', sans-serif; grid-area: sidebar; width: 200px; height: 100%; position: fixed; background-color: #313131; } .main{ font-family: 'Roboto', sans-serif; grid-area: main; /*color: white;*/ /*background: rgba(0, 0, 0, 0.9);*/ /*box-shadow: 0px 0px 10px rgba(0,0,0,.5);*/ text-align: justify; padding: 15px; display: grid; grid-template-columns: repeat(auto-fit, 500px); grid-gap: 30px; justify-content: center; align-items: center; } .main-center{ font-family: 'Roboto', sans-serif; grid-area: main; /*color: white;*/ /*background: rgba(0, 0, 0, 0.9);*/ /*box-shadow: 0px 0px 10px rgba(0,0,0,.5);*/ text-align: justify; padding: 15px; } .footer{ font-family: 'Roboto', sans-serif; padding: 20px; grid-area: footer; text-align: center; } /*fim do layout e estrutura da página*/ /*---------Formatação dos elementos-----------*/ /*---Cabeçalho---*/ .text-box{ font-family: 'Titillium Web', sans-serif; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } .heading-primary{ color: white; text-transform: uppercase; } .heading-primary-main{ display: block; font-size: 40px; text-align: center; letter-spacing: 15px; } .heading-primary-sub{ display: block; font-size: 15px; text-align: center; letter-spacing: 5px; } /*---Fim do Cabeçalho---*/ /*---Main---*/ .main-left div#text{ margin-top: 5vh; color: white; background: #8D0006; box-shadow: 0px 0px 10px rgba(0,0,0,.5); padding: 5vh; } .main-right div#text{ margin-top: 5vh; color: white; background: rgba(0, 0, 0, 0.9); box-shadow: 0px 0px 10px rgba(0,0,0,.5); padding: 5vh; } .main-center div#text{ margin-top: 5vh; color: white; background: rgba(0, 0, 0, 0.9); box-shadow: 0px 0px 10px rgba(0,0,0,.5); padding: 5vh; } /*---Fim da Main---*/ /*---Menu - Modo Desktop---*/ .sidebar ul{ position: absolute; width: 100%; list-style-type: none; } .sidebar a{ display: block; color: #E0E0E0; padding: 20px; text-decoration: none; } /*efeito quando passa com o mouse por cima*/ .sidebar a:hover{ background-color: #1E1E1E; } /*---Fim do menu Desktop---*/ /*---Menu - Modo Responsivo---*/ /*Barra com botão*/ .menu-bar{ top: 0px; width: 100%; height: 50px; /*Mantem a barra de menu escondida*/ display: none; padding: 5px; position: fixed; background-color: #313131; /*Mantem o botão por cima dos outros elementos*/ z-index: 1; } .menu-button img{ width: 50px; } input#menu-check{ display: none; } .comentario textarea#comment{ resize: none; } /*---Fim do menu responsivo---*/ figure{ margin: 5px; position: relative; } figure img{ width: 100%; } figure figcaption{ position: absolute; top: 0px; opacity: 0; background-color: black; width: 100%; height:100%; transition: .3s; font-size: 15px; } figure figcaption p{ margin: 7px; } figure figcaption:hover{ opacity: 1; } /*Modo responsivo*/ @media (max-width: 940px){ /*Aumenta as letras*/ body{ font-size: 25px; } /*Layout em lista*/ .interface{ display: grid; /*Fatiamento da tela*/ grid-template-columns:auto; /*Divide em 2 colunas*/ /*Layout da tela*/ grid-template-areas: "header" "main" "footer"; } /*Cria uma margem por causa da barra superior*/ header{ margin-top: 50px; } .heading-primary-main{ font-size: 35px; letter-spacing: 1px; } .heading-primary-sub{ font-size: 15px; letter-spacing: 1px; } .main{ grid-template-columns: 1fr; } /*Exibe a barra superior*/ .menu-bar{ display: grid; } /*Ao apertar no botão irá puxar o menu*/ input:checked ~ .sidebar{ transform: translateX(100%); } /*Menu sidebar*/ .sidebar{ font-size: 5vh; width: 100%; height: 100%; /*posiciona o menu para fora da tela*/ left: -100%; position: fixed; background-color: rgba(16, 16, 16, .9); transition: .3s; /*Efeito de slide*/ } .sidebar ul{ position: absolute; top: 60px; width: 100%; list-style-type: none; } } @media (max-width: 380px){ .heading-primary-main{ font-size: 25px; } .heading-primary-sub{ font-size: 10px; } body{ font-size: 17px; } }
style.css
@import url('https://fonts.googleapis.com/css?family=Roboto|Titillium+Web&display=swap'); /*Incializar a página - reset*/ *{ padding: 0px; margin: 0px; border: border-box; } /*----------Estrutura--------------*/ .interface { /*Fatiamento da tela*/ display: grid; grid-template-columns: 200px auto; /*Divide em 2 colunas*/ grid-row-gap: 10vh; /*Layout da tela*/ grid-template-areas: "sidebar header" "sidebar main" "sidebar footer"; } .header{ grid-area: header; height: 50vh; background-image: linear-gradient( to right bottom, rgba(46, 46, 46, 0.3), rgba(0, 0, 0, 0.7)), url("background.jpg"); background-size: cover; background-position: top; background-repeat: no-repeat; box-shadow: 0px 0px 20px rgba(0,0,0,.5); position: relative; } /*Barra lateral*/ .sidebar{ font-family: 'Roboto', sans-serif; grid-area: sidebar; width: 200px; height: 100%; position: fixed; background-color: #313131; } .main{ font-family: 'Roboto', sans-serif; grid-area: main; /*color: white;*/ /*background: rgba(0, 0, 0, 0.9);*/ /*box-shadow: 0px 0px 10px rgba(0,0,0,.5);*/ text-align: justify; padding: 15px; display: grid; grid-template-columns: repeat(auto-fit, 500px); grid-gap: 30px; justify-content: center; align-items: center; } .main-center{ font-family: 'Roboto', sans-serif; grid-area: main; /*color: white;*/ /*background: rgba(0, 0, 0, 0.9);*/ /*box-shadow: 0px 0px 10px rgba(0,0,0,.5);*/ text-align: justify; padding: 15px; } .footer{ font-family: 'Roboto', sans-serif; padding: 20px; grid-area: footer; text-align: center; } /*fim do layout e estrutura da página*/ /*---------Formatação dos elementos-----------*/ /*---Cabeçalho---*/ .text-box{ font-family: 'Titillium Web', sans-serif; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } .heading-primary{ color: white; text-transform: uppercase; } .heading-primary-main{ display: block; font-size: 40px; text-align: center; letter-spacing: 15px; } .heading-primary-sub{ display: block; font-size: 15px; text-align: center; letter-spacing: 5px; } /*---Fim do Cabeçalho---*/ /*---Main---*/ .main-left div#text{ margin-top: 5vh; color: white; background: #8D0006; box-shadow: 0px 0px 10px rgba(0,0,0,.5); padding: 5vh; } .main-right div#text{ margin-top: 5vh; color: white; background: rgba(0, 0, 0, 0.9); box-shadow: 0px 0px 10px rgba(0,0,0,.5); padding: 5vh; } .main-center div#text{ margin-top: 5vh; color: white; background: rgba(0, 0, 0, 0.9); box-shadow: 0px 0px 10px rgba(0,0,0,.5); padding: 5vh; } /*---Fim da Main---*/ /*---Menu - Modo Desktop---*/ .sidebar ul{ position: absolute; width: 100%; list-style-type: none; } .sidebar a{ display: block; color: #E0E0E0; padding: 20px; text-decoration: none; } /*efeito quando passa com o mouse por cima*/ .sidebar a:hover{ background-color: #1E1E1E; } /*---Fim do menu Desktop---*/ /*---Menu - Modo Responsivo---*/ /*Barra com botão*/ .menu-bar{ top: 0px; width: 100%; height: 50px; /*Mantem a barra de menu escondida*/ display: none; padding: 5px; position: fixed; background-color: #313131; /*Mantem o botão por cima dos outros elementos*/ z-index: 1; } .menu-button img{ width: 50px; } input#menu-check{ display: none; } .comentario textarea#comment{ resize: none; } /*---Fim do menu responsivo---*/ figure{ margin: 5px; position: relative; } figure img{ width: 100%; } figure figcaption{ position: absolute; top: 0px; opacity: 0; background-color: black; width: 100%; height:100%; transition: .3s; font-size: 15px; } figure figcaption p{ margin: 7px; } figure figcaption:hover{ opacity: 1; } /*Modo responsivo*/ @media (max-width: 940px){ /*Aumenta as letras*/ body{ font-size: 25px; } /*Layout em lista*/ .interface{ display: grid; /*Fatiamento da tela*/ grid-template-columns:auto; /*Divide em 2 colunas*/ /*Layout da tela*/ grid-template-areas: "header" "main" "footer"; } /*Cria uma margem por causa da barra superior*/ header{ margin-top: 50px; } .heading-primary-main{ font-size: 35px; letter-spacing: 1px; } .heading-primary-sub{ font-size: 15px; letter-spacing: 1px; } .main{ grid-template-columns: 1fr; } /*Exibe a barra superior*/ .menu-bar{ display: grid; } /*Ao apertar no botão irá puxar o menu*/ input:checked ~ .sidebar{ transform: translateX(100%); } /*Menu sidebar*/ .sidebar{ font-size: 5vh; width: 100%; height: 100%; /*posiciona o menu para fora da tela*/ left: -100%; position: fixed; background-color: rgba(16, 16, 16, .9); transition: .3s; /*Efeito de slide*/ } .sidebar ul{ position: absolute; top: 60px; width: 100%; list-style-type: none; } } @media (max-width: 380px){ .heading-primary-main{ font-size: 25px; } .heading-primary-sub{ font-size: 10px; } body{ font-size: 17px; } }
0.191781
0.044827
body{ margin: 0; padding: 0; line-height: 1.5; font-family: Inter,sans-serif; font-size: 14px; -ms-scroll-chaining: none; overscroll-behavior: none; /* overflow: hidden; */ } #root { position: relative; overflow: hidden; } .sidebar { --sidebar-bg: hsla(0,0%,100%,0.05); position: relative; z-index: 100; width: 220px; background-color: #231B2E; height: 100%; float: left; font-weight: 500; min-width: 220px; } .sidebar .sidebar-wrapper{ width: 100%; display: flex; position: relative; padding-top: 70px; } .sidebar .logo { width: 187px; height: 70px; position: fixed; top: 0; padding: 0 25px 0 28px; display: flex; align-items: center; } .sidebar .logo h1>a{ color: aqua; font-size:x-large; } /* .sidebar .logo img { width: 120px; height: 40px; padding: 0 0; } */ .sidebar .navbar-main { width: 100%; } .sidebar .navbar-main .navbar-menu .sidebar-lib{ border-left: 3px solid transparent; } .sidebar .navbar-main .activee{ background-color: #393243; color: rebeccapurple !important; border-left: 3px solid purple; } .sidebar .navbar-main .activee a{ color: white !important; } /* .sidebar .navbar-main .activee a :hover{ color: purple; } */ /* .sidebar .navbar-main .navbar-menu .navbar-item{ display: flex; align-items: center; font-size: 14px; color: #DADADA; padding: 10px 25px; text-decoration: none; text-align: center; } */ .sidebar .navbar-main .navbar-menu .navbar-item :hover{ color: #7C4AEF; } .sidebar .navbar-main .navbar-menu .activee :hover, .setting-item:hover{ color: #7C4AEF !important; } .sidebar .navbar-main .navbar-menu .navbar-item a { display: flex; align-items: center; font-size: 14px; color: #DADADA; padding: 7px 25px; text-decoration: none; text-align: center; font-weight: 700; /* display: flex; align-items: center; font-size: 13px; font-weight: 700; padding: 7px 25px; */ text-decoration: none; } .icon{ /* width: 24px; height: 24px; */ font-size: 24px; margin-right: 10px; border-radius: 4px; flex-shrink: 0; line-height: 66%; display: inline-block; } ul { margin: 0; padding: 0; padding-left: 0px !important; } .header{ display: flex; align-items: center; position: fixed; left: 220px; top: 0; right: 0; height: 70px; padding: 0 30px; z-index: 99; min-width: 660px; /* background-color: beige; */ } .header .level { width: 100%; } .level { display: flex; align-items: center; justify-content: space-between; } .header .level-left { flex-grow: 1; margin-right: 10px; } .level-left { align-items: center; justify-content: flex-start; } .header .level-left .mybtn{ display: flex; align-items: center; } .disabled{ pointer-events: none; -webkit-user-select: none; -ms-user-select: none; user-select: none; opacity: .3; cursor: none; } .mybtn { font-size: 14px; border-radius: 999px; line-height: normal; border: 0; display: inline-block; font-weight: 400; text-transform: none; text-align: center; cursor: pointer; position: relative; } .header .level-left .mybtn .icon{ font-size: 24px; margin-right: 20px; } button, input, optgroup, select, textarea { padding: 0; border: none; font: inherit; color: #D5D5D7 !important; background-color: transparent; word-break: normal; } .form-control:focus, .mybtn:focus{ box-shadow: none !important; } .header .level-left .search { position: relative; width: 100%; max-width: 540px; top: 7px; } .search-container{ position: relative; border-radius: 20px; height: 40px; background-color: #2F2739; } .search-container .icon { position: absolute; cursor: pointer; font-size: 20px !important; top: 10px; left: 10px; color: #D5D5D7; } .search-container .input-wrapper { position: absolute; top: 0; left: 38px; right: 10px; bottom: 0; } /* .search-container .input-wrapper:focus{ outline: none !important; } */ .search-container input { margin: 0; display: inline-block; width: 95%; font-size: 14px; background-clip: padding-box; border: 0; position: relative; top: 2px; height: 34px; padding: 5px 0; line-height: 34px; border: none; background-color: #2F2739 !important; /* outline: none; */ } input:focus{ outline: none !important; } .level .level-left, .level .level-right{ display: flex; } .level-right{ align-items: center; justify-content: flex-end; } .level .level-left+.level-right { margin-top: 0; } .level-left, .level-right { flex-basis: auto; flex-grow: 0; flex-shrink: 0; } .header .level-right .setting-item { position: relative; margin-right: 10px; } .header .level-right .setting-item>.mybtn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background-color: #2C2537; border-radius: 999px; } .mybtn { padding: 0px !important; border: none !important; } .header .level-right .setting-item>.mybtn .icon { color: #A5A4A7 !important; font-size: 20px; margin-right: 0px; } .mainpage{ position: relative; width: calc(100% - 220px); background-color: #170F23; height: 100%; /* padding-left: 1px; */ float: right; flex-grow: 1; /* min-height: 100%; */ /* display: block; */ /* margin-right: 20px; */ } .girdslider-page-container{ margin-top: 80px; position: absolute; inset: 0px; overflow: hidden scroll; /* overflow-y: hidden; */ margin-right: -6px; margin-bottom: 0px; } #scroll::-webkit-scrollbar { width: 0px; background-color: #170F23; } #scroll::-webkit-scrollbar-thumb { background-color: #929CB7; } .myrow { margin: 0px 0px 5px 0px; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); grid-gap: 8px; content: none !important; margin-left: 10px; margin-right: 10px; box-sizing: unset !important; /* margin-bottom: 8px; */ /* margin: inherit; */ } /* .girdslider-page-container .row div.girdslider-item-aaa:nth-child(odd) { padding-left: 5px!important; } */ .girdslider-page-container .item-inner { display: flex; flex-direction: column; justify-content: space-between; } .girdslider-item-aaa { box-sizing: inherit !important; } .girdslider-item-aaa .item-inner { position: relative; border-radius: 2px; background-color: #011741; } .ma-box-content { padding: 0.8em; display: block; } .ma-box-content .products { margin: 0 0 10px; display: block; } .item-inner .images-container { position: relative; overflow: hidden; text-align: center; } .item-inner .images-container .product-image img { max-height: 190px; } h2{ margin: 0; } .product-name-no-ellipsis a { padding-top: 0px !important; line-height: 1.4em; word-break: break-word; white-space: normal; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; min-height: 2.8em; max-height: 2.8em; font-size: 0.78em; color: #D5D5D7; text-decoration: none; } .item-inner .price-label { height: 5rem; position: relative; margin-top: 4px; text-align: center; } /* .item-inner .price-label */ .btn { width: 80px !important; } .item-inner .price-label .price { font-size: 1.65rem !important; color: #F7941E; font-weight: 600; } .box { display: block; /* box-sizing: unset !important; */ } .page-item.activee .page-link { z-index: 3; color: #fff; background-color: #0A4AA2 !important; border-color: #0A4AA2 !important; } .page-link { background-color: #011741 !important; border: 1px solid #231B2E !important; } .page-link:focus{ box-shadow: none !important; } .footer{ margin-top: 40px; padding: 0 30px; margin-bottom: 20px; /* text-align: center; */ /* background-color: #170F30; */ } .footer .title{ margin-bottom: 27px; font-size: 20px; letter-spacing: 1.71px; font-weight: 700; color: #8c8a94; text-transform: uppercase; text-align: center; } .myrow .member{ width: 190px; /* height: 200px; */ color: #8c8a94; } .info span{ font-size: 20px !important; /* text-align: left !important; */ } .info p{ text-align: left; font-size: 12px !important; } a { text-decoration: none !important; }
fontend/css/main.css
body{ margin: 0; padding: 0; line-height: 1.5; font-family: Inter,sans-serif; font-size: 14px; -ms-scroll-chaining: none; overscroll-behavior: none; /* overflow: hidden; */ } #root { position: relative; overflow: hidden; } .sidebar { --sidebar-bg: hsla(0,0%,100%,0.05); position: relative; z-index: 100; width: 220px; background-color: #231B2E; height: 100%; float: left; font-weight: 500; min-width: 220px; } .sidebar .sidebar-wrapper{ width: 100%; display: flex; position: relative; padding-top: 70px; } .sidebar .logo { width: 187px; height: 70px; position: fixed; top: 0; padding: 0 25px 0 28px; display: flex; align-items: center; } .sidebar .logo h1>a{ color: aqua; font-size:x-large; } /* .sidebar .logo img { width: 120px; height: 40px; padding: 0 0; } */ .sidebar .navbar-main { width: 100%; } .sidebar .navbar-main .navbar-menu .sidebar-lib{ border-left: 3px solid transparent; } .sidebar .navbar-main .activee{ background-color: #393243; color: rebeccapurple !important; border-left: 3px solid purple; } .sidebar .navbar-main .activee a{ color: white !important; } /* .sidebar .navbar-main .activee a :hover{ color: purple; } */ /* .sidebar .navbar-main .navbar-menu .navbar-item{ display: flex; align-items: center; font-size: 14px; color: #DADADA; padding: 10px 25px; text-decoration: none; text-align: center; } */ .sidebar .navbar-main .navbar-menu .navbar-item :hover{ color: #7C4AEF; } .sidebar .navbar-main .navbar-menu .activee :hover, .setting-item:hover{ color: #7C4AEF !important; } .sidebar .navbar-main .navbar-menu .navbar-item a { display: flex; align-items: center; font-size: 14px; color: #DADADA; padding: 7px 25px; text-decoration: none; text-align: center; font-weight: 700; /* display: flex; align-items: center; font-size: 13px; font-weight: 700; padding: 7px 25px; */ text-decoration: none; } .icon{ /* width: 24px; height: 24px; */ font-size: 24px; margin-right: 10px; border-radius: 4px; flex-shrink: 0; line-height: 66%; display: inline-block; } ul { margin: 0; padding: 0; padding-left: 0px !important; } .header{ display: flex; align-items: center; position: fixed; left: 220px; top: 0; right: 0; height: 70px; padding: 0 30px; z-index: 99; min-width: 660px; /* background-color: beige; */ } .header .level { width: 100%; } .level { display: flex; align-items: center; justify-content: space-between; } .header .level-left { flex-grow: 1; margin-right: 10px; } .level-left { align-items: center; justify-content: flex-start; } .header .level-left .mybtn{ display: flex; align-items: center; } .disabled{ pointer-events: none; -webkit-user-select: none; -ms-user-select: none; user-select: none; opacity: .3; cursor: none; } .mybtn { font-size: 14px; border-radius: 999px; line-height: normal; border: 0; display: inline-block; font-weight: 400; text-transform: none; text-align: center; cursor: pointer; position: relative; } .header .level-left .mybtn .icon{ font-size: 24px; margin-right: 20px; } button, input, optgroup, select, textarea { padding: 0; border: none; font: inherit; color: #D5D5D7 !important; background-color: transparent; word-break: normal; } .form-control:focus, .mybtn:focus{ box-shadow: none !important; } .header .level-left .search { position: relative; width: 100%; max-width: 540px; top: 7px; } .search-container{ position: relative; border-radius: 20px; height: 40px; background-color: #2F2739; } .search-container .icon { position: absolute; cursor: pointer; font-size: 20px !important; top: 10px; left: 10px; color: #D5D5D7; } .search-container .input-wrapper { position: absolute; top: 0; left: 38px; right: 10px; bottom: 0; } /* .search-container .input-wrapper:focus{ outline: none !important; } */ .search-container input { margin: 0; display: inline-block; width: 95%; font-size: 14px; background-clip: padding-box; border: 0; position: relative; top: 2px; height: 34px; padding: 5px 0; line-height: 34px; border: none; background-color: #2F2739 !important; /* outline: none; */ } input:focus{ outline: none !important; } .level .level-left, .level .level-right{ display: flex; } .level-right{ align-items: center; justify-content: flex-end; } .level .level-left+.level-right { margin-top: 0; } .level-left, .level-right { flex-basis: auto; flex-grow: 0; flex-shrink: 0; } .header .level-right .setting-item { position: relative; margin-right: 10px; } .header .level-right .setting-item>.mybtn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background-color: #2C2537; border-radius: 999px; } .mybtn { padding: 0px !important; border: none !important; } .header .level-right .setting-item>.mybtn .icon { color: #A5A4A7 !important; font-size: 20px; margin-right: 0px; } .mainpage{ position: relative; width: calc(100% - 220px); background-color: #170F23; height: 100%; /* padding-left: 1px; */ float: right; flex-grow: 1; /* min-height: 100%; */ /* display: block; */ /* margin-right: 20px; */ } .girdslider-page-container{ margin-top: 80px; position: absolute; inset: 0px; overflow: hidden scroll; /* overflow-y: hidden; */ margin-right: -6px; margin-bottom: 0px; } #scroll::-webkit-scrollbar { width: 0px; background-color: #170F23; } #scroll::-webkit-scrollbar-thumb { background-color: #929CB7; } .myrow { margin: 0px 0px 5px 0px; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); grid-gap: 8px; content: none !important; margin-left: 10px; margin-right: 10px; box-sizing: unset !important; /* margin-bottom: 8px; */ /* margin: inherit; */ } /* .girdslider-page-container .row div.girdslider-item-aaa:nth-child(odd) { padding-left: 5px!important; } */ .girdslider-page-container .item-inner { display: flex; flex-direction: column; justify-content: space-between; } .girdslider-item-aaa { box-sizing: inherit !important; } .girdslider-item-aaa .item-inner { position: relative; border-radius: 2px; background-color: #011741; } .ma-box-content { padding: 0.8em; display: block; } .ma-box-content .products { margin: 0 0 10px; display: block; } .item-inner .images-container { position: relative; overflow: hidden; text-align: center; } .item-inner .images-container .product-image img { max-height: 190px; } h2{ margin: 0; } .product-name-no-ellipsis a { padding-top: 0px !important; line-height: 1.4em; word-break: break-word; white-space: normal; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; min-height: 2.8em; max-height: 2.8em; font-size: 0.78em; color: #D5D5D7; text-decoration: none; } .item-inner .price-label { height: 5rem; position: relative; margin-top: 4px; text-align: center; } /* .item-inner .price-label */ .btn { width: 80px !important; } .item-inner .price-label .price { font-size: 1.65rem !important; color: #F7941E; font-weight: 600; } .box { display: block; /* box-sizing: unset !important; */ } .page-item.activee .page-link { z-index: 3; color: #fff; background-color: #0A4AA2 !important; border-color: #0A4AA2 !important; } .page-link { background-color: #011741 !important; border: 1px solid #231B2E !important; } .page-link:focus{ box-shadow: none !important; } .footer{ margin-top: 40px; padding: 0 30px; margin-bottom: 20px; /* text-align: center; */ /* background-color: #170F30; */ } .footer .title{ margin-bottom: 27px; font-size: 20px; letter-spacing: 1.71px; font-weight: 700; color: #8c8a94; text-transform: uppercase; text-align: center; } .myrow .member{ width: 190px; /* height: 200px; */ color: #8c8a94; } .info span{ font-size: 20px !important; /* text-align: left !important; */ } .info p{ text-align: left; font-size: 12px !important; } a { text-decoration: none !important; }
0.305905
0.055746
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800'); :root { --white: #ffffff; --light: #f2f2f2; --light-1: #e4e6e7; --light-2: #d6dadb; --light-3: #bbc1c4; --light-4: #9fa8ad; --light-5: #829097; --black: #0d0d0d; --dark: #161b1d; --dark-1: #21282c; --dark-2: #2c353a; --dark-3: #435056; --dark-4: #5b6a71; --dark-5: #73848c; --shadow: 0 16px 20px -8px rgba(0, 0, 0, 0.3), 0 8px 32px -8px rgba(0, 0, 0, 0.1); --shadow-small: 0 8px 20px -8px rgba(0, 0, 0, 0.3), 0 4px 8px -4px rgba(0, 0, 0, 0.1); --shadow-large: 0 24px 32px -8px rgba(0, 0, 0, 0.2), 0 12px 20px -8px rgba(0, 0, 0, 0.1); --shadow-dark: 0 16px 20px -8px rgba(0, 0, 0, 0.5), 0 8px 32px -8px rgba(0, 0, 0, 0.25); --shadow-dark-small: 0 8px 20px -8px rgba(0, 0, 0, 0.5), 0 4px 8px -4px rgba(0, 0, 0, 0.25); --shadow-dark-large: 0 24px 32px -8px rgba(0, 0, 0, 0.5), 0 12px 20px -8px rgba(0, 0, 0, 0.25); } * { box-sizing: border-box; } html { font-family: 'Poppins', 'Trebuchet MS', sans-serif; font-size: 16px; scroll-behavior: smooth; } body { letter-spacing: 0.05rem; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; transition-timing-function: ease; margin: 0; } .container, .container-full { width: 100%; margin: auto; padding-left: 32px; padding-right: 32px; } section, .row { --gap: 12px; display: flex; flex-wrap: wrap; margin-left: calc(var(--gap) * -1); margin-right: calc(var(--gap) * -1); } .box-xl-12, .box-xl-11, .box-xl-10, .box-xl-9, .box-xl-8, .box-xl-7, .box-xl-6, .box-xl-5, .box-xl-4, .box-xl-3, .box-xl-2, .box-xl-1, .box-l-12, .box-l-11, .box-l-10, .box-l-9, .box-l-8, .box-l-7, .box-l-6, .box-l-5, .box-l-4, .box-l-3, .box-l-2, .box-l-1, .box-m-12, .box-m-11, .box-m-10, .box-m-9, .box-m-8, .box-m-7, .box-m-6, .box-m-5, .box-m-4, .box-m-3, .box-m-2, .box-m-1, .box-s-12, .box-s-11, .box-s-10, .box-s-9, .box-s-8, .box-s-7, .box-s-6, .box-s-5, .box-s-4, .box-s-3, .box-s-2, .box-s-1, .box-12, .box-11, .box-10, .box-9, .box-8, .box-7, .box-6, .box-5, .box-4, .box-3, .box-2, .box-1, .box { display: block; flex: 0 0 auto; margin: var(--gap-row, var(--gap)) var(--gap); } .box { flex: 1 1 0; } .box-1 { width: calc(8.3333333333% - (var(--gap) * 2)); flex-basis: calc(8.3333333333% - (var(--gap) * 2)); } .box-2 { width: calc(16.6666666667% - (var(--gap) * 2)); flex-basis: calc(16.6666666667% - (var(--gap) * 2)); } .box-3 { width: calc(25% - (var(--gap) * 2)); flex-basis: calc(25% - (var(--gap) * 2)); } .box-4 { width: calc(33.3333333333% - (var(--gap) * 2)); flex-basis: calc(33.3333333333% - (var(--gap) * 2)); } .box-5 { width: calc(41.6666666667% - (var(--gap) * 2)); flex-basis: calc(41.6666666667% - (var(--gap) * 2)); } .box-6 { width: calc(50% - (var(--gap) * 2)); flex-basis: calc(50% - (var(--gap) * 2)); } .box-7 { width: calc(58.3333333333% - (var(--gap) * 2)); flex-basis: calc(58.3333333333% - (var(--gap) * 2)); } .box-8 { width: calc(66.6666666667% - (var(--gap) * 2)); flex-basis: calc(66.6666666667% - (var(--gap) * 2)); } .box-9 { width: calc(75% - (var(--gap) * 2)); flex-basis: calc(75% - (var(--gap) * 2)); } .box-10 { width: calc(83.3333333333% - (var(--gap) * 2)); flex-basis: calc(83.3333333333% - (var(--gap) * 2)); } .box-11 { width: calc(91.6666666667% - (var(--gap) * 2)); flex-basis: calc(91.6666666667% - (var(--gap) * 2)); } .box-12 { width: calc(100% - (var(--gap) * 2)); flex-basis: calc(100% - (var(--gap) * 2)); } .gap { --gap: 12px; } .gap-none { --gap: 0; } .gap-small { --gap: 8px; } .gap-medium { --gap: 16px; } .gap-large { --gap: 24px; } .d-none { display: none; } .d-block { display: block; } .d-flex { display: flex; flex-wrap: wrap; } .d-grid { display: grid; } .d-inline { display: inline; } .d-inline-block { display: inline-block; } .d-inline-flex { display: inline-flex; } .d-inline-table { display: inline-table; } [class*='flex-'] { display: flex; flex-wrap: wrap; } .overflow-hidden, .overflow-x-hidden { overflow-x: hidden; } .overflow-visible, .overflow-x-visible { overflow-x: visible; } .overflow-scroll, .overflow-x-scroll { overflow-x: scroll; } .overflow-auto, .overflow-x-auto { overflow-x: auto; } .overflow-hidden, .overflow-y-hidden { overflow-y: hidden; } .overflow-visible, .overflow-y-visible { overflow-y: visible; } .overflow-scroll, .overflow-y-scroll { overflow-y: scroll; } .overflow-auto, .overflow-y-auto { overflow-y: auto; } .flex-column { flex-direction: column; } .flex-row { flex-direction: row; } .flex-nowrap { flex-wrap: nowrap; } .flex-wrap { flex-wrap: wrap; } .flex-wrap-reverse { flex-wrap: wrap-reverse; } .x-reverse { flex-flow: row-reverse; } .y-reverse { flex-flow: column-reverse; } .justify-start { justify-content: flex-start; } .justify-end { justify-content: flex-end; } .justify-center { justify-content: center; } .justify-between { justify-content: space-between; } .justify-around { justify-content: space-around; } .justify-evenly { justify-content: space-evenly; } .content-start { align-content: flex-start; } .content-end { align-content: flex-end; } .content-center { align-content: center; } .content-between { align-content: space-between; } .content-around { align-content: space-around; } .content-stretch { align-content: stretch; } .items-start { align-items: flex-start; } .items-end { align-items: flex-end; } .items-center { align-items: center; } .items-baseline { align-items: baseline; } .items-stretch { align-items: stretch; } .self-start { align-self: flex-start; } .self-end { align-self: flex-end; } .self-center { align-self: center; } .self-baseline { align-self: baseline; } .self-stretch { align-self: stretch; } h6, h5, h4, h3, h2, h1 { margin: 0 0 0.5em; } h1 { font: 600 2.5rem/1.4 'Poppins'; } h2 { font: 600 2rem/1.4 'Poppins'; } h3 { font: 600 1.75rem/1.4 'Poppins'; } h4 { font: 600 1.5rem/1.5 'Poppins'; } h5 { font: 600 1.25rem/1.5 'Poppins'; } h6 { font: 600 1rem/1.75 'Poppins'; } p, a, span { font: 1em/1.5 'Poppins'; } p { margin: 0 0 1em; } .capitalize { text-transform: capitalize; } .uppercase { text-transform: uppercase; } .lowercase { text-transform: lowercase; } .bold { font-weight: bolder; } .italic { font-style: italic; } .underline { text-decoration: underline; } .strikethrough { text-decoration: line-through; } mark, .mark { background: var(--bg-mark, rgba(255, 234, 128, 0.5)); padding: var(--corner-mark, 0.25em); } small { font-size: 0.75rem; line-height: 0.25em; } big { font-size: 1.25rem; line-height: 1.5em; } sub, sup { font-size: 0.75rem; position: relative; vertical-align: baseline; } sup { top: -0.75em; } sub { bottom: -0.25em; } abbr[title] { border-bottom: 0.05rem dashed; cursor: help; text-decoration: none; } button, [class*='button'], input[type='button'], input[type='reset'], input[type='submit'] { background: var(--bg-button, #e4e6e7); color: var(--text-button); font: 1rem/1 'Poppins'; display: flex; justify-content: center; align-items: center; cursor: pointer; padding: var(--space-button, 0.55em 2em 0.5em); margin: 0.25em; text-decoration: none; border: var(--border-button); border-radius: var(--corner-button); } button:hover, button:focus, button.active, [class*='button']:hover, [class*='button']:focus, [class*='button'].active, input[type='button']:hover, input[type='button']:focus, input[type='button'].active, input[type='reset']:hover, input[type='reset']:focus, input[type='reset'].active, input[type='submit']:hover, input[type='submit']:focus, input[type='submit'].active { background: var(--bg-button-hover, var(--bg-button, #d6dadb)); color: var(--text-button-hover, var(--text-button)); border: var(--border-button-hover, var(--border-button)); } button:disabled, button.disabled, [class*='button']:disabled, [class*='button'].disabled, input[type='button']:disabled, input[type='button'].disabled, input[type='reset']:disabled, input[type='reset'].disabled, input[type='submit']:disabled, input[type='submit'].disabled { opacity: 0.5; cursor: not-allowed; } button:disabled:hover, button.disabled:hover, [class*='button']:disabled:hover, [class*='button'].disabled:hover, input[type='button']:disabled:hover, input[type='button'].disabled:hover, input[type='reset']:disabled:hover, input[type='reset'].disabled:hover, input[type='submit']:disabled:hover, input[type='submit'].disabled:hover { background: var(--bg-button, #e4e6e7); color: var(--text-button); border: var(--border-button); } a { --text-link-hover: #3319b3; color: var(--text-link, var(--link)); -webkit-text-decoration: var(--decoration-link); text-decoration: var(--decoration-link); } a:hover, a:focus, a.active { color: var(--text-link-hover, var(--link)); -webkit-text-decoration: var(--decoration-link-hover); text-decoration: var(--decoration-link-hover); } a:disabled, a.disabled { opacity: 0.5; cursor: not-allowed; } a:disabled:hover, a.disabled:hover { color: var(--text-link, var(--link)); -webkit-text-decoration: var(--decoration-link); text-decoration: var(--decoration-link); } var, kbd, code, pre { background: var(--bg-code, rgba(215, 218, 219, 0.375)); color: var(--text-code); font: 1rem/1.25 'Courier New', monospace; padding: var(--space-code, 0.125em 0.5em 0.15em); border-radius: var(--corner-code); } pre { --space-code: 1.5em 2em; overflow-x: auto; scrollbar-width: thin; } pre code, pre var { --bg-code: hsla(0, 0%, 100%, 0); --space-code: 0; } pre::-webkit-scrollbar { width: 10px; height: 10px; } pre::-webkit-scrollbar-track { background: rgba(242, 242, 242, 0.2); border-radius: var(--corner-code); margin: calc(var(--corner-code) / 2); } pre::-webkit-scrollbar-thumb { background: rgba(166, 166, 166, 0.5); border-radius: var(--corner-code); } pre::-webkit-scrollbar-thumb:hover { background: #a6a6a6; } pre::-webkit-scrollbar-corner { background: #a6a6a6; border-radius: var(--corner-code); } input:not([type='button'], [type='submit'], [type='reset']), textarea, select { background: var(--bg-input, rgba(255, 255, 255, 0.1)); color: var(--text-input); font: 1rem 'Poppins'; margin-bottom: 0.5em; border: var(--border-input, 1px solid #0d0d0d); border-radius: var(--corner-input, 0); outline: none; } input:not([type='button'], [type='submit'], [type='reset']):focus, textarea:focus, select:focus { box-shadow: var(--focus-input, 0 0 2px 2px #0d0d0d); border: none; } input:not([type='button'], [type='submit'], [type='reset']).required, input:not([type='button'], [type='submit'], [type='reset']).invalid, textarea.required, textarea.invalid, select.required, select.invalid { --border-input: 1px solid var(--danger); } input:not([type='button'], [type='submit'], [type='reset']).required:focus, input:not([type='button'], [type='submit'], [type='reset']).invalid:focus, textarea.required:focus, textarea.invalid:focus, select.required:focus, select.invalid:focus { --focus-input: 0 0 2px 2px var(--danger); } input:not([type='button'], [type='submit'], [type='reset']).required ~ label, input:not([type='button'], [type='submit'], [type='reset']).invalid ~ label, textarea.required ~ label, textarea.invalid ~ label, select.required ~ label, select.invalid ~ label { --text-input: var(--danger); } input:not([type='button'], [type='submit'], [type='reset']).valid, textarea.valid, select.valid { --border-input: 1px solid var(--success); } input:not([type='button'], [type='submit'], [type='reset']).valid:focus, textarea.valid:focus, select.valid:focus { --focus-input: 0 0 2px 2px var(--success); } input:not([type='button'], [type='submit'], [type='reset']).valid ~ label, textarea.valid ~ label, select.valid ~ label { --text-input: var(--success); } input:not([type='button'], [type='submit'], [type='reset']):disabled, input:not([type='button'], [type='submit'], [type='reset']).disabled, textarea:disabled, textarea.disabled, select:disabled, select.disabled { background: var(--bg-input, rgba(255, 255, 255, 0.5)); cursor: not-allowed; opacity: 0.5; } input:not([type='button'], [type='submit'], [type='reset']):disabled ~ label, input:not([type='button'], [type='submit'], [type='reset']).disabled ~ label, textarea:disabled ~ label, textarea.disabled ~ label, select:disabled ~ label, select.disabled ~ label { opacity: 0.5; cursor: not-allowed; } label { display: inline-block; } input:not([type='button'], [type='submit'], [type='reset'], [type='checkbox'], [type='radio'], [type='color']), textarea { width: 100%; padding: var(--space-input, 0.5em 1em); } input::-webkit-calendar-picker-indicator { background-color: var(--text-input, #fff); border-radius: 4px; } input[type*='date'], input[type='time'] { line-height: 1.49; } input[type='checkbox'], input[type='radio'] { position: relative; top: -1px; width: 1.2em; height: 1.2em; cursor: pointer; margin: 0; vertical-align: middle; } input[type='checkbox']:focus, input[type='radio']:focus { box-shadow: none; } input[type='checkbox'] ~ label, input[type='radio'] ~ label { position: relative; cursor: pointer; color: var(--text-input); padding: 0 var(--space-input, 0.5em); margin: 0 0 0.5em 0.5em; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } input[type='color'] { width: 100%; padding: var(--space-input, 0); } input[type='color' i]::-webkit-color-swatch-wrapper { padding: var(--space-input, 0); border-radius: var(--corner-input, 0); outline: none; } input[type='color' i]::-webkit-color-swatch { padding: 0; border: none; border-radius: var(--corner-input); } select { width: 100%; padding: var(--space-select, 0.5em 0.8em); } select option { color: var(--black); background: var(--white); } ul, ol { padding-left: 1.5em; margin: 0.25em 0 1em; } ul ul, ol ol { margin: 0; } dt { margin-top: 0.25em; } dl { margin: 0.25em 0 1em; } dd { color: var(--text-list-dd, var(--dark-5)); padding-left: 1em; margin: 0; } blockquote { background: var(--bg-quote, var(--light)); margin: 0.5em 0; padding: var(--space-quote, 0.75em 1.5em); border-radius: var(--corner-quote); } blockquote > :last-child { margin-bottom: 0; } table { background: var(bg-table, var(--white)); width: 100%; table-layout: auto; overflow-x: auto; border-collapse: collapse; border-spacing: 0; } th, td { border: var(--border-table, 1px solid var(--light-3, #0d0d0d)); padding: var(--space-table, 0.5rem 1rem); } :root { --success: #1dc939; --warning: #f4af25; --danger: #e23636; --info: #1d8fc9; --link: #1d8fc9; } @media screen and (min-width: 540px) { .box-s-1 { width: calc(8.3333333333% - (var(--gap) * 2)); flex-basis: calc(8.3333333333% - (var(--gap) * 2)); } .box-s-2 { width: calc(16.6666666667% - (var(--gap) * 2)); flex-basis: calc(16.6666666667% - (var(--gap) * 2)); } .box-s-3 { width: calc(25% - (var(--gap) * 2)); flex-basis: calc(25% - (var(--gap) * 2)); } .box-s-4 { width: calc(33.3333333333% - (var(--gap) * 2)); flex-basis: calc(33.3333333333% - (var(--gap) * 2)); } .box-s-5 { width: calc(41.6666666667% - (var(--gap) * 2)); flex-basis: calc(41.6666666667% - (var(--gap) * 2)); } .box-s-6 { width: calc(50% - (var(--gap) * 2)); flex-basis: calc(50% - (var(--gap) * 2)); } .box-s-7 { width: calc(58.3333333333% - (var(--gap) * 2)); flex-basis: calc(58.3333333333% - (var(--gap) * 2)); } .box-s-8 { width: calc(66.6666666667% - (var(--gap) * 2)); flex-basis: calc(66.6666666667% - (var(--gap) * 2)); } .box-s-9 { width: calc(75% - (var(--gap) * 2)); flex-basis: calc(75% - (var(--gap) * 2)); } .box-s-10 { width: calc(83.3333333333% - (var(--gap) * 2)); flex-basis: calc(83.3333333333% - (var(--gap) * 2)); } .box-s-11 { width: calc(91.6666666667% - (var(--gap) * 2)); flex-basis: calc(91.6666666667% - (var(--gap) * 2)); } .box-s-12 { width: calc(100% - (var(--gap) * 2)); flex-basis: calc(100% - (var(--gap) * 2)); } .gap-s { --gap: 12px; } .gap-s-none { --gap: 0; } .gap-s-small { --gap: 8px; } .gap-s-medium { --gap: 16px; } .gap-s-large { --gap: 24px; } .d-s-none { display: none; } .d-s-block { display: block; } .d-s-flex { display: flex; flex-wrap: wrap; } .d-s-grid { display: grid; } .d-s-inline { display: inline; } .d-s-inline-block { display: inline-block; } .d-s-inline-flex { display: inline-flex; } .d-s-inline-table { display: inline-table; } .overflow-s-hidden, .overflow-x-s-hidden { overflow-x: hidden; } .overflow-s-visible, .overflow-x-s-visible { overflow-x: visible; } .overflow-s-scroll, .overflow-x-s-scroll { overflow-x: scroll; } .overflow-s-auto, .overflow-x-s-auto { overflow-x: auto; } .overflow-s-hidden, .overflow-y-s-hidden { overflow-y: hidden; } .overflow-s-visible, .overflow-y-s-visible { overflow-y: visible; } .overflow-s-scroll, .overflow-y-s-scroll { overflow-y: scroll; } .overflow-s-auto, .overflow-y-s-auto { overflow-y: auto; } .flex-s-column { flex-direction: column; } .flex-s-row { flex-direction: row; } .flex-s-nowrap { flex-wrap: nowrap; } .flex-s-wrap { flex-wrap: wrap; } .flex-s-wrap-reverse { flex-wrap: wrap-reverse; } .x-s-reverse { flex-flow: row-reverse; } .y-s-reverse { flex-flow: column-reverse; } .justify-s-start { justify-content: flex-start; } .justify-s-end { justify-content: flex-end; } .justify-s-center { justify-content: center; } .justify-s-between { justify-content: space-between; } .justify-s-around { justify-content: space-around; } .justify-s-evenly { justify-content: space-evenly; } .content-s-start { align-content: flex-start; } .content-s-end { align-content: flex-end; } .content-s-center { align-content: center; } .content-s-between { align-content: space-between; } .content-s-around { align-content: space-around; } .content-s-stretch { align-content: stretch; } .items-s-start { align-items: flex-start; } .items-s-end { align-items: flex-end; } .items-s-center { align-items: center; } .items-s-baseline { align-items: baseline; } .items-s-stretch { align-items: stretch; } .self-s-start { align-self: flex-start; } .self-s-end { align-self: flex-end; } .self-s-center { align-self: center; } .self-s-baseline { align-self: baseline; } .self-s-stretch { align-self: stretch; } h1 { font-size: 3rem; } h2 { font-size: 2.5rem; } h3 { font-size: 2rem; } h4 { font-size: 1.5rem; } h5 { font-size: 1.25rem; } h6 { font-size: 1rem; } } @media screen and (min-width: 768px) { .box-m-1 { width: calc(8.3333333333% - (var(--gap) * 2)); flex-basis: calc(8.3333333333% - (var(--gap) * 2)); } .box-m-2 { width: calc(16.6666666667% - (var(--gap) * 2)); flex-basis: calc(16.6666666667% - (var(--gap) * 2)); } .box-m-3 { width: calc(25% - (var(--gap) * 2)); flex-basis: calc(25% - (var(--gap) * 2)); } .box-m-4 { width: calc(33.3333333333% - (var(--gap) * 2)); flex-basis: calc(33.3333333333% - (var(--gap) * 2)); } .box-m-5 { width: calc(41.6666666667% - (var(--gap) * 2)); flex-basis: calc(41.6666666667% - (var(--gap) * 2)); } .box-m-6 { width: calc(50% - (var(--gap) * 2)); flex-basis: calc(50% - (var(--gap) * 2)); } .box-m-7 { width: calc(58.3333333333% - (var(--gap) * 2)); flex-basis: calc(58.3333333333% - (var(--gap) * 2)); } .box-m-8 { width: calc(66.6666666667% - (var(--gap) * 2)); flex-basis: calc(66.6666666667% - (var(--gap) * 2)); } .box-m-9 { width: calc(75% - (var(--gap) * 2)); flex-basis: calc(75% - (var(--gap) * 2)); } .box-m-10 { width: calc(83.3333333333% - (var(--gap) * 2)); flex-basis: calc(83.3333333333% - (var(--gap) * 2)); } .box-m-11 { width: calc(91.6666666667% - (var(--gap) * 2)); flex-basis: calc(91.6666666667% - (var(--gap) * 2)); } .box-m-12 { width: calc(100% - (var(--gap) * 2)); flex-basis: calc(100% - (var(--gap) * 2)); } .gap-m { --gap: 12px; } .gap-m-none { --gap: 0; } .gap-m-small { --gap: 8px; } .gap-m-medium { --gap: 16px; } .gap-m-large { --gap: 24px; } .d-m-none { display: none; } .d-m-block { display: block; } .d-m-flex { display: flex; flex-wrap: wrap; } .d-m-grid { display: grid; } .d-m-inline { display: inline; } .d-m-inline-block { display: inline-block; } .d-m-inline-flex { display: inline-flex; } .d-m-inline-table { display: inline-table; } .overflow-m-hidden, .overflow-x-m-hidden { overflow-x: hidden; } .overflow-m-visible, .overflow-x-m-visible { overflow-x: visible; } .overflow-m-scroll, .overflow-x-m-scroll { overflow-x: scroll; } .overflow-m-auto, .overflow-x-m-auto { overflow-x: auto; } .overflow-m-hidden, .overflow-y-m-hidden { overflow-y: hidden; } .overflow-m-visible, .overflow-y-m-visible { overflow-y: visible; } .overflow-m-scroll, .overflow-y-m-scroll { overflow-y: scroll; } .overflow-m-auto, .overflow-y-m-auto { overflow-y: auto; } .flex-m-column { flex-direction: column; } .flex-m-row { flex-direction: row; } .flex-m-nowrap { flex-wrap: nowrap; } .flex-m-wrap { flex-wrap: wrap; } .flex-m-wrap-reverse { flex-wrap: wrap-reverse; } .x-m-reverse { flex-flow: row-reverse; } .y-m-reverse { flex-flow: column-reverse; } .justify-m-start { justify-content: flex-start; } .justify-m-end { justify-content: flex-end; } .justify-m-center { justify-content: center; } .justify-m-between { justify-content: space-between; } .justify-m-around { justify-content: space-around; } .justify-m-evenly { justify-content: space-evenly; } .content-m-start { align-content: flex-start; } .content-m-end { align-content: flex-end; } .content-m-center { align-content: center; } .content-m-between { align-content: space-between; } .content-m-around { align-content: space-around; } .content-m-stretch { align-content: stretch; } .items-m-start { align-items: flex-start; } .items-m-end { align-items: flex-end; } .items-m-center { align-items: center; } .items-m-baseline { align-items: baseline; } .items-m-stretch { align-items: stretch; } .self-m-start { align-self: flex-start; } .self-m-end { align-self: flex-end; } .self-m-center { align-self: center; } .self-m-baseline { align-self: baseline; } .self-m-stretch { align-self: stretch; } } @media screen and (min-width: 992px) { .box-l-1 { width: calc(8.3333333333% - (var(--gap) * 2)); flex-basis: calc(8.3333333333% - (var(--gap) * 2)); } .box-l-2 { width: calc(16.6666666667% - (var(--gap) * 2)); flex-basis: calc(16.6666666667% - (var(--gap) * 2)); } .box-l-3 { width: calc(25% - (var(--gap) * 2)); flex-basis: calc(25% - (var(--gap) * 2)); } .box-l-4 { width: calc(33.3333333333% - (var(--gap) * 2)); flex-basis: calc(33.3333333333% - (var(--gap) * 2)); } .box-l-5 { width: calc(41.6666666667% - (var(--gap) * 2)); flex-basis: calc(41.6666666667% - (var(--gap) * 2)); } .box-l-6 { width: calc(50% - (var(--gap) * 2)); flex-basis: calc(50% - (var(--gap) * 2)); } .box-l-7 { width: calc(58.3333333333% - (var(--gap) * 2)); flex-basis: calc(58.3333333333% - (var(--gap) * 2)); } .box-l-8 { width: calc(66.6666666667% - (var(--gap) * 2)); flex-basis: calc(66.6666666667% - (var(--gap) * 2)); } .box-l-9 { width: calc(75% - (var(--gap) * 2)); flex-basis: calc(75% - (var(--gap) * 2)); } .box-l-10 { width: calc(83.3333333333% - (var(--gap) * 2)); flex-basis: calc(83.3333333333% - (var(--gap) * 2)); } .box-l-11 { width: calc(91.6666666667% - (var(--gap) * 2)); flex-basis: calc(91.6666666667% - (var(--gap) * 2)); } .box-l-12 { width: calc(100% - (var(--gap) * 2)); flex-basis: calc(100% - (var(--gap) * 2)); } .gap-l { --gap: 12px; } .gap-l-none { --gap: 0; } .gap-l-small { --gap: 8px; } .gap-l-medium { --gap: 16px; } .gap-l-large { --gap: 24px; } .d-l-none { display: none; } .d-l-block { display: block; } .d-l-flex { display: flex; flex-wrap: wrap; } .d-l-grid { display: grid; } .d-l-inline { display: inline; } .d-l-inline-block { display: inline-block; } .d-l-inline-flex { display: inline-flex; } .d-l-inline-table { display: inline-table; } .overflow-l-hidden, .overflow-x-l-hidden { overflow-x: hidden; } .overflow-l-visible, .overflow-x-l-visible { overflow-x: visible; } .overflow-l-scroll, .overflow-x-l-scroll { overflow-x: scroll; } .overflow-l-auto, .overflow-x-l-auto { overflow-x: auto; } .overflow-l-hidden, .overflow-y-l-hidden { overflow-y: hidden; } .overflow-l-visible, .overflow-y-l-visible { overflow-y: visible; } .overflow-l-scroll, .overflow-y-l-scroll { overflow-y: scroll; } .overflow-l-auto, .overflow-y-l-auto { overflow-y: auto; } .flex-l-column { flex-direction: column; } .flex-l-row { flex-direction: row; } .flex-l-nowrap { flex-wrap: nowrap; } .flex-l-wrap { flex-wrap: wrap; } .flex-l-wrap-reverse { flex-wrap: wrap-reverse; } .x-l-reverse { flex-flow: row-reverse; } .y-l-reverse { flex-flow: column-reverse; } .justify-l-start { justify-content: flex-start; } .justify-l-end { justify-content: flex-end; } .justify-l-center { justify-content: center; } .justify-l-between { justify-content: space-between; } .justify-l-around { justify-content: space-around; } .justify-l-evenly { justify-content: space-evenly; } .content-l-start { align-content: flex-start; } .content-l-end { align-content: flex-end; } .content-l-center { align-content: center; } .content-l-between { align-content: space-between; } .content-l-around { align-content: space-around; } .content-l-stretch { align-content: stretch; } .items-l-start { align-items: flex-start; } .items-l-end { align-items: flex-end; } .items-l-center { align-items: center; } .items-l-baseline { align-items: baseline; } .items-l-stretch { align-items: stretch; } .self-l-start { align-self: flex-start; } .self-l-end { align-self: flex-end; } .self-l-center { align-self: center; } .self-l-baseline { align-self: baseline; } .self-l-stretch { align-self: stretch; } } @media screen and (min-width: 1280px) { .container { max-width: 1280px; } .box-xl-1 { width: calc(8.3333333333% - (var(--gap) * 2)); flex-basis: calc(8.3333333333% - (var(--gap) * 2)); } .box-xl-2 { width: calc(16.6666666667% - (var(--gap) * 2)); flex-basis: calc(16.6666666667% - (var(--gap) * 2)); } .box-xl-3 { width: calc(25% - (var(--gap) * 2)); flex-basis: calc(25% - (var(--gap) * 2)); } .box-xl-4 { width: calc(33.3333333333% - (var(--gap) * 2)); flex-basis: calc(33.3333333333% - (var(--gap) * 2)); } .box-xl-5 { width: calc(41.6666666667% - (var(--gap) * 2)); flex-basis: calc(41.6666666667% - (var(--gap) * 2)); } .box-xl-6 { width: calc(50% - (var(--gap) * 2)); flex-basis: calc(50% - (var(--gap) * 2)); } .box-xl-7 { width: calc(58.3333333333% - (var(--gap) * 2)); flex-basis: calc(58.3333333333% - (var(--gap) * 2)); } .box-xl-8 { width: calc(66.6666666667% - (var(--gap) * 2)); flex-basis: calc(66.6666666667% - (var(--gap) * 2)); } .box-xl-9 { width: calc(75% - (var(--gap) * 2)); flex-basis: calc(75% - (var(--gap) * 2)); } .box-xl-10 { width: calc(83.3333333333% - (var(--gap) * 2)); flex-basis: calc(83.3333333333% - (var(--gap) * 2)); } .box-xl-11 { width: calc(91.6666666667% - (var(--gap) * 2)); flex-basis: calc(91.6666666667% - (var(--gap) * 2)); } .box-xl-12 { width: calc(100% - (var(--gap) * 2)); flex-basis: calc(100% - (var(--gap) * 2)); } .gap-xl { --gap: 12px; } .gap-xl-none { --gap: 0; } .gap-xl-small { --gap: 8px; } .gap-xl-medium { --gap: 16px; } .gap-xl-large { --gap: 24px; } .d-xl-none { display: none; } .d-xl-block { display: block; } .d-xl-flex { display: flex; flex-wrap: wrap; } .d-xl-grid { display: grid; } .d-xl-inline { display: inline; } .d-xl-inline-block { display: inline-block; } .d-xl-inline-flex { display: inline-flex; } .d-xl-inline-table { display: inline-table; } .overflow-xl-hidden, .overflow-x-xl-hidden { overflow-x: hidden; } .overflow-xl-visible, .overflow-x-xl-visible { overflow-x: visible; } .overflow-xl-scroll, .overflow-x-xl-scroll { overflow-x: scroll; } .overflow-xl-auto, .overflow-x-xl-auto { overflow-x: auto; } .overflow-xl-hidden, .overflow-y-xl-hidden { overflow-y: hidden; } .overflow-xl-visible, .overflow-y-xl-visible { overflow-y: visible; } .overflow-xl-scroll, .overflow-y-xl-scroll { overflow-y: scroll; } .overflow-xl-auto, .overflow-y-xl-auto { overflow-y: auto; } .flex-xl-column { flex-direction: column; } .flex-xl-row { flex-direction: row; } .flex-xl-nowrap { flex-wrap: nowrap; } .flex-xl-wrap { flex-wrap: wrap; } .flex-xl-wrap-reverse { flex-wrap: wrap-reverse; } .x-xl-reverse { flex-flow: row-reverse; } .y-xl-reverse { flex-flow: column-reverse; } .justify-xl-start { justify-content: flex-start; } .justify-xl-end { justify-content: flex-end; } .justify-xl-center { justify-content: center; } .justify-xl-between { justify-content: space-between; } .justify-xl-around { justify-content: space-around; } .justify-xl-evenly { justify-content: space-evenly; } .content-xl-start { align-content: flex-start; } .content-xl-end { align-content: flex-end; } .content-xl-center { align-content: center; } .content-xl-between { align-content: space-between; } .content-xl-around { align-content: space-around; } .content-xl-stretch { align-content: stretch; } .items-xl-start { align-items: flex-start; } .items-xl-end { align-items: flex-end; } .items-xl-center { align-items: center; } .items-xl-baseline { align-items: baseline; } .items-xl-stretch { align-items: stretch; } .self-xl-start { align-self: flex-start; } .self-xl-end { align-self: flex-end; } .self-xl-center { align-self: center; } .self-xl-baseline { align-self: baseline; } .self-xl-stretch { align-self: stretch; } } @media screen and (max-width: 539px) { html { font-size: 14px; } .container, .container-full { padding-left: 16px; padding-right: 16px; } }
dist/css/frastyle-base.css
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800'); :root { --white: #ffffff; --light: #f2f2f2; --light-1: #e4e6e7; --light-2: #d6dadb; --light-3: #bbc1c4; --light-4: #9fa8ad; --light-5: #829097; --black: #0d0d0d; --dark: #161b1d; --dark-1: #21282c; --dark-2: #2c353a; --dark-3: #435056; --dark-4: #5b6a71; --dark-5: #73848c; --shadow: 0 16px 20px -8px rgba(0, 0, 0, 0.3), 0 8px 32px -8px rgba(0, 0, 0, 0.1); --shadow-small: 0 8px 20px -8px rgba(0, 0, 0, 0.3), 0 4px 8px -4px rgba(0, 0, 0, 0.1); --shadow-large: 0 24px 32px -8px rgba(0, 0, 0, 0.2), 0 12px 20px -8px rgba(0, 0, 0, 0.1); --shadow-dark: 0 16px 20px -8px rgba(0, 0, 0, 0.5), 0 8px 32px -8px rgba(0, 0, 0, 0.25); --shadow-dark-small: 0 8px 20px -8px rgba(0, 0, 0, 0.5), 0 4px 8px -4px rgba(0, 0, 0, 0.25); --shadow-dark-large: 0 24px 32px -8px rgba(0, 0, 0, 0.5), 0 12px 20px -8px rgba(0, 0, 0, 0.25); } * { box-sizing: border-box; } html { font-family: 'Poppins', 'Trebuchet MS', sans-serif; font-size: 16px; scroll-behavior: smooth; } body { letter-spacing: 0.05rem; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; transition-timing-function: ease; margin: 0; } .container, .container-full { width: 100%; margin: auto; padding-left: 32px; padding-right: 32px; } section, .row { --gap: 12px; display: flex; flex-wrap: wrap; margin-left: calc(var(--gap) * -1); margin-right: calc(var(--gap) * -1); } .box-xl-12, .box-xl-11, .box-xl-10, .box-xl-9, .box-xl-8, .box-xl-7, .box-xl-6, .box-xl-5, .box-xl-4, .box-xl-3, .box-xl-2, .box-xl-1, .box-l-12, .box-l-11, .box-l-10, .box-l-9, .box-l-8, .box-l-7, .box-l-6, .box-l-5, .box-l-4, .box-l-3, .box-l-2, .box-l-1, .box-m-12, .box-m-11, .box-m-10, .box-m-9, .box-m-8, .box-m-7, .box-m-6, .box-m-5, .box-m-4, .box-m-3, .box-m-2, .box-m-1, .box-s-12, .box-s-11, .box-s-10, .box-s-9, .box-s-8, .box-s-7, .box-s-6, .box-s-5, .box-s-4, .box-s-3, .box-s-2, .box-s-1, .box-12, .box-11, .box-10, .box-9, .box-8, .box-7, .box-6, .box-5, .box-4, .box-3, .box-2, .box-1, .box { display: block; flex: 0 0 auto; margin: var(--gap-row, var(--gap)) var(--gap); } .box { flex: 1 1 0; } .box-1 { width: calc(8.3333333333% - (var(--gap) * 2)); flex-basis: calc(8.3333333333% - (var(--gap) * 2)); } .box-2 { width: calc(16.6666666667% - (var(--gap) * 2)); flex-basis: calc(16.6666666667% - (var(--gap) * 2)); } .box-3 { width: calc(25% - (var(--gap) * 2)); flex-basis: calc(25% - (var(--gap) * 2)); } .box-4 { width: calc(33.3333333333% - (var(--gap) * 2)); flex-basis: calc(33.3333333333% - (var(--gap) * 2)); } .box-5 { width: calc(41.6666666667% - (var(--gap) * 2)); flex-basis: calc(41.6666666667% - (var(--gap) * 2)); } .box-6 { width: calc(50% - (var(--gap) * 2)); flex-basis: calc(50% - (var(--gap) * 2)); } .box-7 { width: calc(58.3333333333% - (var(--gap) * 2)); flex-basis: calc(58.3333333333% - (var(--gap) * 2)); } .box-8 { width: calc(66.6666666667% - (var(--gap) * 2)); flex-basis: calc(66.6666666667% - (var(--gap) * 2)); } .box-9 { width: calc(75% - (var(--gap) * 2)); flex-basis: calc(75% - (var(--gap) * 2)); } .box-10 { width: calc(83.3333333333% - (var(--gap) * 2)); flex-basis: calc(83.3333333333% - (var(--gap) * 2)); } .box-11 { width: calc(91.6666666667% - (var(--gap) * 2)); flex-basis: calc(91.6666666667% - (var(--gap) * 2)); } .box-12 { width: calc(100% - (var(--gap) * 2)); flex-basis: calc(100% - (var(--gap) * 2)); } .gap { --gap: 12px; } .gap-none { --gap: 0; } .gap-small { --gap: 8px; } .gap-medium { --gap: 16px; } .gap-large { --gap: 24px; } .d-none { display: none; } .d-block { display: block; } .d-flex { display: flex; flex-wrap: wrap; } .d-grid { display: grid; } .d-inline { display: inline; } .d-inline-block { display: inline-block; } .d-inline-flex { display: inline-flex; } .d-inline-table { display: inline-table; } [class*='flex-'] { display: flex; flex-wrap: wrap; } .overflow-hidden, .overflow-x-hidden { overflow-x: hidden; } .overflow-visible, .overflow-x-visible { overflow-x: visible; } .overflow-scroll, .overflow-x-scroll { overflow-x: scroll; } .overflow-auto, .overflow-x-auto { overflow-x: auto; } .overflow-hidden, .overflow-y-hidden { overflow-y: hidden; } .overflow-visible, .overflow-y-visible { overflow-y: visible; } .overflow-scroll, .overflow-y-scroll { overflow-y: scroll; } .overflow-auto, .overflow-y-auto { overflow-y: auto; } .flex-column { flex-direction: column; } .flex-row { flex-direction: row; } .flex-nowrap { flex-wrap: nowrap; } .flex-wrap { flex-wrap: wrap; } .flex-wrap-reverse { flex-wrap: wrap-reverse; } .x-reverse { flex-flow: row-reverse; } .y-reverse { flex-flow: column-reverse; } .justify-start { justify-content: flex-start; } .justify-end { justify-content: flex-end; } .justify-center { justify-content: center; } .justify-between { justify-content: space-between; } .justify-around { justify-content: space-around; } .justify-evenly { justify-content: space-evenly; } .content-start { align-content: flex-start; } .content-end { align-content: flex-end; } .content-center { align-content: center; } .content-between { align-content: space-between; } .content-around { align-content: space-around; } .content-stretch { align-content: stretch; } .items-start { align-items: flex-start; } .items-end { align-items: flex-end; } .items-center { align-items: center; } .items-baseline { align-items: baseline; } .items-stretch { align-items: stretch; } .self-start { align-self: flex-start; } .self-end { align-self: flex-end; } .self-center { align-self: center; } .self-baseline { align-self: baseline; } .self-stretch { align-self: stretch; } h6, h5, h4, h3, h2, h1 { margin: 0 0 0.5em; } h1 { font: 600 2.5rem/1.4 'Poppins'; } h2 { font: 600 2rem/1.4 'Poppins'; } h3 { font: 600 1.75rem/1.4 'Poppins'; } h4 { font: 600 1.5rem/1.5 'Poppins'; } h5 { font: 600 1.25rem/1.5 'Poppins'; } h6 { font: 600 1rem/1.75 'Poppins'; } p, a, span { font: 1em/1.5 'Poppins'; } p { margin: 0 0 1em; } .capitalize { text-transform: capitalize; } .uppercase { text-transform: uppercase; } .lowercase { text-transform: lowercase; } .bold { font-weight: bolder; } .italic { font-style: italic; } .underline { text-decoration: underline; } .strikethrough { text-decoration: line-through; } mark, .mark { background: var(--bg-mark, rgba(255, 234, 128, 0.5)); padding: var(--corner-mark, 0.25em); } small { font-size: 0.75rem; line-height: 0.25em; } big { font-size: 1.25rem; line-height: 1.5em; } sub, sup { font-size: 0.75rem; position: relative; vertical-align: baseline; } sup { top: -0.75em; } sub { bottom: -0.25em; } abbr[title] { border-bottom: 0.05rem dashed; cursor: help; text-decoration: none; } button, [class*='button'], input[type='button'], input[type='reset'], input[type='submit'] { background: var(--bg-button, #e4e6e7); color: var(--text-button); font: 1rem/1 'Poppins'; display: flex; justify-content: center; align-items: center; cursor: pointer; padding: var(--space-button, 0.55em 2em 0.5em); margin: 0.25em; text-decoration: none; border: var(--border-button); border-radius: var(--corner-button); } button:hover, button:focus, button.active, [class*='button']:hover, [class*='button']:focus, [class*='button'].active, input[type='button']:hover, input[type='button']:focus, input[type='button'].active, input[type='reset']:hover, input[type='reset']:focus, input[type='reset'].active, input[type='submit']:hover, input[type='submit']:focus, input[type='submit'].active { background: var(--bg-button-hover, var(--bg-button, #d6dadb)); color: var(--text-button-hover, var(--text-button)); border: var(--border-button-hover, var(--border-button)); } button:disabled, button.disabled, [class*='button']:disabled, [class*='button'].disabled, input[type='button']:disabled, input[type='button'].disabled, input[type='reset']:disabled, input[type='reset'].disabled, input[type='submit']:disabled, input[type='submit'].disabled { opacity: 0.5; cursor: not-allowed; } button:disabled:hover, button.disabled:hover, [class*='button']:disabled:hover, [class*='button'].disabled:hover, input[type='button']:disabled:hover, input[type='button'].disabled:hover, input[type='reset']:disabled:hover, input[type='reset'].disabled:hover, input[type='submit']:disabled:hover, input[type='submit'].disabled:hover { background: var(--bg-button, #e4e6e7); color: var(--text-button); border: var(--border-button); } a { --text-link-hover: #3319b3; color: var(--text-link, var(--link)); -webkit-text-decoration: var(--decoration-link); text-decoration: var(--decoration-link); } a:hover, a:focus, a.active { color: var(--text-link-hover, var(--link)); -webkit-text-decoration: var(--decoration-link-hover); text-decoration: var(--decoration-link-hover); } a:disabled, a.disabled { opacity: 0.5; cursor: not-allowed; } a:disabled:hover, a.disabled:hover { color: var(--text-link, var(--link)); -webkit-text-decoration: var(--decoration-link); text-decoration: var(--decoration-link); } var, kbd, code, pre { background: var(--bg-code, rgba(215, 218, 219, 0.375)); color: var(--text-code); font: 1rem/1.25 'Courier New', monospace; padding: var(--space-code, 0.125em 0.5em 0.15em); border-radius: var(--corner-code); } pre { --space-code: 1.5em 2em; overflow-x: auto; scrollbar-width: thin; } pre code, pre var { --bg-code: hsla(0, 0%, 100%, 0); --space-code: 0; } pre::-webkit-scrollbar { width: 10px; height: 10px; } pre::-webkit-scrollbar-track { background: rgba(242, 242, 242, 0.2); border-radius: var(--corner-code); margin: calc(var(--corner-code) / 2); } pre::-webkit-scrollbar-thumb { background: rgba(166, 166, 166, 0.5); border-radius: var(--corner-code); } pre::-webkit-scrollbar-thumb:hover { background: #a6a6a6; } pre::-webkit-scrollbar-corner { background: #a6a6a6; border-radius: var(--corner-code); } input:not([type='button'], [type='submit'], [type='reset']), textarea, select { background: var(--bg-input, rgba(255, 255, 255, 0.1)); color: var(--text-input); font: 1rem 'Poppins'; margin-bottom: 0.5em; border: var(--border-input, 1px solid #0d0d0d); border-radius: var(--corner-input, 0); outline: none; } input:not([type='button'], [type='submit'], [type='reset']):focus, textarea:focus, select:focus { box-shadow: var(--focus-input, 0 0 2px 2px #0d0d0d); border: none; } input:not([type='button'], [type='submit'], [type='reset']).required, input:not([type='button'], [type='submit'], [type='reset']).invalid, textarea.required, textarea.invalid, select.required, select.invalid { --border-input: 1px solid var(--danger); } input:not([type='button'], [type='submit'], [type='reset']).required:focus, input:not([type='button'], [type='submit'], [type='reset']).invalid:focus, textarea.required:focus, textarea.invalid:focus, select.required:focus, select.invalid:focus { --focus-input: 0 0 2px 2px var(--danger); } input:not([type='button'], [type='submit'], [type='reset']).required ~ label, input:not([type='button'], [type='submit'], [type='reset']).invalid ~ label, textarea.required ~ label, textarea.invalid ~ label, select.required ~ label, select.invalid ~ label { --text-input: var(--danger); } input:not([type='button'], [type='submit'], [type='reset']).valid, textarea.valid, select.valid { --border-input: 1px solid var(--success); } input:not([type='button'], [type='submit'], [type='reset']).valid:focus, textarea.valid:focus, select.valid:focus { --focus-input: 0 0 2px 2px var(--success); } input:not([type='button'], [type='submit'], [type='reset']).valid ~ label, textarea.valid ~ label, select.valid ~ label { --text-input: var(--success); } input:not([type='button'], [type='submit'], [type='reset']):disabled, input:not([type='button'], [type='submit'], [type='reset']).disabled, textarea:disabled, textarea.disabled, select:disabled, select.disabled { background: var(--bg-input, rgba(255, 255, 255, 0.5)); cursor: not-allowed; opacity: 0.5; } input:not([type='button'], [type='submit'], [type='reset']):disabled ~ label, input:not([type='button'], [type='submit'], [type='reset']).disabled ~ label, textarea:disabled ~ label, textarea.disabled ~ label, select:disabled ~ label, select.disabled ~ label { opacity: 0.5; cursor: not-allowed; } label { display: inline-block; } input:not([type='button'], [type='submit'], [type='reset'], [type='checkbox'], [type='radio'], [type='color']), textarea { width: 100%; padding: var(--space-input, 0.5em 1em); } input::-webkit-calendar-picker-indicator { background-color: var(--text-input, #fff); border-radius: 4px; } input[type*='date'], input[type='time'] { line-height: 1.49; } input[type='checkbox'], input[type='radio'] { position: relative; top: -1px; width: 1.2em; height: 1.2em; cursor: pointer; margin: 0; vertical-align: middle; } input[type='checkbox']:focus, input[type='radio']:focus { box-shadow: none; } input[type='checkbox'] ~ label, input[type='radio'] ~ label { position: relative; cursor: pointer; color: var(--text-input); padding: 0 var(--space-input, 0.5em); margin: 0 0 0.5em 0.5em; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } input[type='color'] { width: 100%; padding: var(--space-input, 0); } input[type='color' i]::-webkit-color-swatch-wrapper { padding: var(--space-input, 0); border-radius: var(--corner-input, 0); outline: none; } input[type='color' i]::-webkit-color-swatch { padding: 0; border: none; border-radius: var(--corner-input); } select { width: 100%; padding: var(--space-select, 0.5em 0.8em); } select option { color: var(--black); background: var(--white); } ul, ol { padding-left: 1.5em; margin: 0.25em 0 1em; } ul ul, ol ol { margin: 0; } dt { margin-top: 0.25em; } dl { margin: 0.25em 0 1em; } dd { color: var(--text-list-dd, var(--dark-5)); padding-left: 1em; margin: 0; } blockquote { background: var(--bg-quote, var(--light)); margin: 0.5em 0; padding: var(--space-quote, 0.75em 1.5em); border-radius: var(--corner-quote); } blockquote > :last-child { margin-bottom: 0; } table { background: var(bg-table, var(--white)); width: 100%; table-layout: auto; overflow-x: auto; border-collapse: collapse; border-spacing: 0; } th, td { border: var(--border-table, 1px solid var(--light-3, #0d0d0d)); padding: var(--space-table, 0.5rem 1rem); } :root { --success: #1dc939; --warning: #f4af25; --danger: #e23636; --info: #1d8fc9; --link: #1d8fc9; } @media screen and (min-width: 540px) { .box-s-1 { width: calc(8.3333333333% - (var(--gap) * 2)); flex-basis: calc(8.3333333333% - (var(--gap) * 2)); } .box-s-2 { width: calc(16.6666666667% - (var(--gap) * 2)); flex-basis: calc(16.6666666667% - (var(--gap) * 2)); } .box-s-3 { width: calc(25% - (var(--gap) * 2)); flex-basis: calc(25% - (var(--gap) * 2)); } .box-s-4 { width: calc(33.3333333333% - (var(--gap) * 2)); flex-basis: calc(33.3333333333% - (var(--gap) * 2)); } .box-s-5 { width: calc(41.6666666667% - (var(--gap) * 2)); flex-basis: calc(41.6666666667% - (var(--gap) * 2)); } .box-s-6 { width: calc(50% - (var(--gap) * 2)); flex-basis: calc(50% - (var(--gap) * 2)); } .box-s-7 { width: calc(58.3333333333% - (var(--gap) * 2)); flex-basis: calc(58.3333333333% - (var(--gap) * 2)); } .box-s-8 { width: calc(66.6666666667% - (var(--gap) * 2)); flex-basis: calc(66.6666666667% - (var(--gap) * 2)); } .box-s-9 { width: calc(75% - (var(--gap) * 2)); flex-basis: calc(75% - (var(--gap) * 2)); } .box-s-10 { width: calc(83.3333333333% - (var(--gap) * 2)); flex-basis: calc(83.3333333333% - (var(--gap) * 2)); } .box-s-11 { width: calc(91.6666666667% - (var(--gap) * 2)); flex-basis: calc(91.6666666667% - (var(--gap) * 2)); } .box-s-12 { width: calc(100% - (var(--gap) * 2)); flex-basis: calc(100% - (var(--gap) * 2)); } .gap-s { --gap: 12px; } .gap-s-none { --gap: 0; } .gap-s-small { --gap: 8px; } .gap-s-medium { --gap: 16px; } .gap-s-large { --gap: 24px; } .d-s-none { display: none; } .d-s-block { display: block; } .d-s-flex { display: flex; flex-wrap: wrap; } .d-s-grid { display: grid; } .d-s-inline { display: inline; } .d-s-inline-block { display: inline-block; } .d-s-inline-flex { display: inline-flex; } .d-s-inline-table { display: inline-table; } .overflow-s-hidden, .overflow-x-s-hidden { overflow-x: hidden; } .overflow-s-visible, .overflow-x-s-visible { overflow-x: visible; } .overflow-s-scroll, .overflow-x-s-scroll { overflow-x: scroll; } .overflow-s-auto, .overflow-x-s-auto { overflow-x: auto; } .overflow-s-hidden, .overflow-y-s-hidden { overflow-y: hidden; } .overflow-s-visible, .overflow-y-s-visible { overflow-y: visible; } .overflow-s-scroll, .overflow-y-s-scroll { overflow-y: scroll; } .overflow-s-auto, .overflow-y-s-auto { overflow-y: auto; } .flex-s-column { flex-direction: column; } .flex-s-row { flex-direction: row; } .flex-s-nowrap { flex-wrap: nowrap; } .flex-s-wrap { flex-wrap: wrap; } .flex-s-wrap-reverse { flex-wrap: wrap-reverse; } .x-s-reverse { flex-flow: row-reverse; } .y-s-reverse { flex-flow: column-reverse; } .justify-s-start { justify-content: flex-start; } .justify-s-end { justify-content: flex-end; } .justify-s-center { justify-content: center; } .justify-s-between { justify-content: space-between; } .justify-s-around { justify-content: space-around; } .justify-s-evenly { justify-content: space-evenly; } .content-s-start { align-content: flex-start; } .content-s-end { align-content: flex-end; } .content-s-center { align-content: center; } .content-s-between { align-content: space-between; } .content-s-around { align-content: space-around; } .content-s-stretch { align-content: stretch; } .items-s-start { align-items: flex-start; } .items-s-end { align-items: flex-end; } .items-s-center { align-items: center; } .items-s-baseline { align-items: baseline; } .items-s-stretch { align-items: stretch; } .self-s-start { align-self: flex-start; } .self-s-end { align-self: flex-end; } .self-s-center { align-self: center; } .self-s-baseline { align-self: baseline; } .self-s-stretch { align-self: stretch; } h1 { font-size: 3rem; } h2 { font-size: 2.5rem; } h3 { font-size: 2rem; } h4 { font-size: 1.5rem; } h5 { font-size: 1.25rem; } h6 { font-size: 1rem; } } @media screen and (min-width: 768px) { .box-m-1 { width: calc(8.3333333333% - (var(--gap) * 2)); flex-basis: calc(8.3333333333% - (var(--gap) * 2)); } .box-m-2 { width: calc(16.6666666667% - (var(--gap) * 2)); flex-basis: calc(16.6666666667% - (var(--gap) * 2)); } .box-m-3 { width: calc(25% - (var(--gap) * 2)); flex-basis: calc(25% - (var(--gap) * 2)); } .box-m-4 { width: calc(33.3333333333% - (var(--gap) * 2)); flex-basis: calc(33.3333333333% - (var(--gap) * 2)); } .box-m-5 { width: calc(41.6666666667% - (var(--gap) * 2)); flex-basis: calc(41.6666666667% - (var(--gap) * 2)); } .box-m-6 { width: calc(50% - (var(--gap) * 2)); flex-basis: calc(50% - (var(--gap) * 2)); } .box-m-7 { width: calc(58.3333333333% - (var(--gap) * 2)); flex-basis: calc(58.3333333333% - (var(--gap) * 2)); } .box-m-8 { width: calc(66.6666666667% - (var(--gap) * 2)); flex-basis: calc(66.6666666667% - (var(--gap) * 2)); } .box-m-9 { width: calc(75% - (var(--gap) * 2)); flex-basis: calc(75% - (var(--gap) * 2)); } .box-m-10 { width: calc(83.3333333333% - (var(--gap) * 2)); flex-basis: calc(83.3333333333% - (var(--gap) * 2)); } .box-m-11 { width: calc(91.6666666667% - (var(--gap) * 2)); flex-basis: calc(91.6666666667% - (var(--gap) * 2)); } .box-m-12 { width: calc(100% - (var(--gap) * 2)); flex-basis: calc(100% - (var(--gap) * 2)); } .gap-m { --gap: 12px; } .gap-m-none { --gap: 0; } .gap-m-small { --gap: 8px; } .gap-m-medium { --gap: 16px; } .gap-m-large { --gap: 24px; } .d-m-none { display: none; } .d-m-block { display: block; } .d-m-flex { display: flex; flex-wrap: wrap; } .d-m-grid { display: grid; } .d-m-inline { display: inline; } .d-m-inline-block { display: inline-block; } .d-m-inline-flex { display: inline-flex; } .d-m-inline-table { display: inline-table; } .overflow-m-hidden, .overflow-x-m-hidden { overflow-x: hidden; } .overflow-m-visible, .overflow-x-m-visible { overflow-x: visible; } .overflow-m-scroll, .overflow-x-m-scroll { overflow-x: scroll; } .overflow-m-auto, .overflow-x-m-auto { overflow-x: auto; } .overflow-m-hidden, .overflow-y-m-hidden { overflow-y: hidden; } .overflow-m-visible, .overflow-y-m-visible { overflow-y: visible; } .overflow-m-scroll, .overflow-y-m-scroll { overflow-y: scroll; } .overflow-m-auto, .overflow-y-m-auto { overflow-y: auto; } .flex-m-column { flex-direction: column; } .flex-m-row { flex-direction: row; } .flex-m-nowrap { flex-wrap: nowrap; } .flex-m-wrap { flex-wrap: wrap; } .flex-m-wrap-reverse { flex-wrap: wrap-reverse; } .x-m-reverse { flex-flow: row-reverse; } .y-m-reverse { flex-flow: column-reverse; } .justify-m-start { justify-content: flex-start; } .justify-m-end { justify-content: flex-end; } .justify-m-center { justify-content: center; } .justify-m-between { justify-content: space-between; } .justify-m-around { justify-content: space-around; } .justify-m-evenly { justify-content: space-evenly; } .content-m-start { align-content: flex-start; } .content-m-end { align-content: flex-end; } .content-m-center { align-content: center; } .content-m-between { align-content: space-between; } .content-m-around { align-content: space-around; } .content-m-stretch { align-content: stretch; } .items-m-start { align-items: flex-start; } .items-m-end { align-items: flex-end; } .items-m-center { align-items: center; } .items-m-baseline { align-items: baseline; } .items-m-stretch { align-items: stretch; } .self-m-start { align-self: flex-start; } .self-m-end { align-self: flex-end; } .self-m-center { align-self: center; } .self-m-baseline { align-self: baseline; } .self-m-stretch { align-self: stretch; } } @media screen and (min-width: 992px) { .box-l-1 { width: calc(8.3333333333% - (var(--gap) * 2)); flex-basis: calc(8.3333333333% - (var(--gap) * 2)); } .box-l-2 { width: calc(16.6666666667% - (var(--gap) * 2)); flex-basis: calc(16.6666666667% - (var(--gap) * 2)); } .box-l-3 { width: calc(25% - (var(--gap) * 2)); flex-basis: calc(25% - (var(--gap) * 2)); } .box-l-4 { width: calc(33.3333333333% - (var(--gap) * 2)); flex-basis: calc(33.3333333333% - (var(--gap) * 2)); } .box-l-5 { width: calc(41.6666666667% - (var(--gap) * 2)); flex-basis: calc(41.6666666667% - (var(--gap) * 2)); } .box-l-6 { width: calc(50% - (var(--gap) * 2)); flex-basis: calc(50% - (var(--gap) * 2)); } .box-l-7 { width: calc(58.3333333333% - (var(--gap) * 2)); flex-basis: calc(58.3333333333% - (var(--gap) * 2)); } .box-l-8 { width: calc(66.6666666667% - (var(--gap) * 2)); flex-basis: calc(66.6666666667% - (var(--gap) * 2)); } .box-l-9 { width: calc(75% - (var(--gap) * 2)); flex-basis: calc(75% - (var(--gap) * 2)); } .box-l-10 { width: calc(83.3333333333% - (var(--gap) * 2)); flex-basis: calc(83.3333333333% - (var(--gap) * 2)); } .box-l-11 { width: calc(91.6666666667% - (var(--gap) * 2)); flex-basis: calc(91.6666666667% - (var(--gap) * 2)); } .box-l-12 { width: calc(100% - (var(--gap) * 2)); flex-basis: calc(100% - (var(--gap) * 2)); } .gap-l { --gap: 12px; } .gap-l-none { --gap: 0; } .gap-l-small { --gap: 8px; } .gap-l-medium { --gap: 16px; } .gap-l-large { --gap: 24px; } .d-l-none { display: none; } .d-l-block { display: block; } .d-l-flex { display: flex; flex-wrap: wrap; } .d-l-grid { display: grid; } .d-l-inline { display: inline; } .d-l-inline-block { display: inline-block; } .d-l-inline-flex { display: inline-flex; } .d-l-inline-table { display: inline-table; } .overflow-l-hidden, .overflow-x-l-hidden { overflow-x: hidden; } .overflow-l-visible, .overflow-x-l-visible { overflow-x: visible; } .overflow-l-scroll, .overflow-x-l-scroll { overflow-x: scroll; } .overflow-l-auto, .overflow-x-l-auto { overflow-x: auto; } .overflow-l-hidden, .overflow-y-l-hidden { overflow-y: hidden; } .overflow-l-visible, .overflow-y-l-visible { overflow-y: visible; } .overflow-l-scroll, .overflow-y-l-scroll { overflow-y: scroll; } .overflow-l-auto, .overflow-y-l-auto { overflow-y: auto; } .flex-l-column { flex-direction: column; } .flex-l-row { flex-direction: row; } .flex-l-nowrap { flex-wrap: nowrap; } .flex-l-wrap { flex-wrap: wrap; } .flex-l-wrap-reverse { flex-wrap: wrap-reverse; } .x-l-reverse { flex-flow: row-reverse; } .y-l-reverse { flex-flow: column-reverse; } .justify-l-start { justify-content: flex-start; } .justify-l-end { justify-content: flex-end; } .justify-l-center { justify-content: center; } .justify-l-between { justify-content: space-between; } .justify-l-around { justify-content: space-around; } .justify-l-evenly { justify-content: space-evenly; } .content-l-start { align-content: flex-start; } .content-l-end { align-content: flex-end; } .content-l-center { align-content: center; } .content-l-between { align-content: space-between; } .content-l-around { align-content: space-around; } .content-l-stretch { align-content: stretch; } .items-l-start { align-items: flex-start; } .items-l-end { align-items: flex-end; } .items-l-center { align-items: center; } .items-l-baseline { align-items: baseline; } .items-l-stretch { align-items: stretch; } .self-l-start { align-self: flex-start; } .self-l-end { align-self: flex-end; } .self-l-center { align-self: center; } .self-l-baseline { align-self: baseline; } .self-l-stretch { align-self: stretch; } } @media screen and (min-width: 1280px) { .container { max-width: 1280px; } .box-xl-1 { width: calc(8.3333333333% - (var(--gap) * 2)); flex-basis: calc(8.3333333333% - (var(--gap) * 2)); } .box-xl-2 { width: calc(16.6666666667% - (var(--gap) * 2)); flex-basis: calc(16.6666666667% - (var(--gap) * 2)); } .box-xl-3 { width: calc(25% - (var(--gap) * 2)); flex-basis: calc(25% - (var(--gap) * 2)); } .box-xl-4 { width: calc(33.3333333333% - (var(--gap) * 2)); flex-basis: calc(33.3333333333% - (var(--gap) * 2)); } .box-xl-5 { width: calc(41.6666666667% - (var(--gap) * 2)); flex-basis: calc(41.6666666667% - (var(--gap) * 2)); } .box-xl-6 { width: calc(50% - (var(--gap) * 2)); flex-basis: calc(50% - (var(--gap) * 2)); } .box-xl-7 { width: calc(58.3333333333% - (var(--gap) * 2)); flex-basis: calc(58.3333333333% - (var(--gap) * 2)); } .box-xl-8 { width: calc(66.6666666667% - (var(--gap) * 2)); flex-basis: calc(66.6666666667% - (var(--gap) * 2)); } .box-xl-9 { width: calc(75% - (var(--gap) * 2)); flex-basis: calc(75% - (var(--gap) * 2)); } .box-xl-10 { width: calc(83.3333333333% - (var(--gap) * 2)); flex-basis: calc(83.3333333333% - (var(--gap) * 2)); } .box-xl-11 { width: calc(91.6666666667% - (var(--gap) * 2)); flex-basis: calc(91.6666666667% - (var(--gap) * 2)); } .box-xl-12 { width: calc(100% - (var(--gap) * 2)); flex-basis: calc(100% - (var(--gap) * 2)); } .gap-xl { --gap: 12px; } .gap-xl-none { --gap: 0; } .gap-xl-small { --gap: 8px; } .gap-xl-medium { --gap: 16px; } .gap-xl-large { --gap: 24px; } .d-xl-none { display: none; } .d-xl-block { display: block; } .d-xl-flex { display: flex; flex-wrap: wrap; } .d-xl-grid { display: grid; } .d-xl-inline { display: inline; } .d-xl-inline-block { display: inline-block; } .d-xl-inline-flex { display: inline-flex; } .d-xl-inline-table { display: inline-table; } .overflow-xl-hidden, .overflow-x-xl-hidden { overflow-x: hidden; } .overflow-xl-visible, .overflow-x-xl-visible { overflow-x: visible; } .overflow-xl-scroll, .overflow-x-xl-scroll { overflow-x: scroll; } .overflow-xl-auto, .overflow-x-xl-auto { overflow-x: auto; } .overflow-xl-hidden, .overflow-y-xl-hidden { overflow-y: hidden; } .overflow-xl-visible, .overflow-y-xl-visible { overflow-y: visible; } .overflow-xl-scroll, .overflow-y-xl-scroll { overflow-y: scroll; } .overflow-xl-auto, .overflow-y-xl-auto { overflow-y: auto; } .flex-xl-column { flex-direction: column; } .flex-xl-row { flex-direction: row; } .flex-xl-nowrap { flex-wrap: nowrap; } .flex-xl-wrap { flex-wrap: wrap; } .flex-xl-wrap-reverse { flex-wrap: wrap-reverse; } .x-xl-reverse { flex-flow: row-reverse; } .y-xl-reverse { flex-flow: column-reverse; } .justify-xl-start { justify-content: flex-start; } .justify-xl-end { justify-content: flex-end; } .justify-xl-center { justify-content: center; } .justify-xl-between { justify-content: space-between; } .justify-xl-around { justify-content: space-around; } .justify-xl-evenly { justify-content: space-evenly; } .content-xl-start { align-content: flex-start; } .content-xl-end { align-content: flex-end; } .content-xl-center { align-content: center; } .content-xl-between { align-content: space-between; } .content-xl-around { align-content: space-around; } .content-xl-stretch { align-content: stretch; } .items-xl-start { align-items: flex-start; } .items-xl-end { align-items: flex-end; } .items-xl-center { align-items: center; } .items-xl-baseline { align-items: baseline; } .items-xl-stretch { align-items: stretch; } .self-xl-start { align-self: flex-start; } .self-xl-end { align-self: flex-end; } .self-xl-center { align-self: center; } .self-xl-baseline { align-self: baseline; } .self-xl-stretch { align-self: stretch; } } @media screen and (max-width: 539px) { html { font-size: 14px; } .container, .container-full { padding-left: 16px; padding-right: 16px; } }
0.283186
0.118615
.p-tree-container { margin: 0; padding: 0; list-style-type: none; overflow: auto; } .p-treenode-children { margin: 0; padding: 0; list-style-type: none; } .p-tree-wrapper { overflow: auto; } .p-treenode-selectable { cursor: pointer; user-select: none; } .p-tree-toggler { cursor: pointer; user-select: none; display: inline-flex; align-items: center; justify-content: center; overflow: hidden; position: relative; flex-shrink: 0; } .p-treenode-leaf > .p-treenode-content .p-tree-toggler { visibility: hidden; } .p-treenode-content { display: flex; align-items: center; } .p-tree-filter { width: 100%; } .p-tree-filter-container { position: relative; display: block; width: 100%; } .p-tree-filter-icon { position: absolute; top: 50%; margin-top: -.5rem; } .p-tree-loading { position: relative; min-height: 4rem; } .p-tree .p-tree-loading-overlay { position: absolute; display: flex; align-items: center; justify-content: center; z-index: 2; } .p-tree-flex-scrollable { display: flex; flex: 1; height: 100%; flex-direction: column; } .p-tree-flex-scrollable .p-tree-wrapper { flex: 1; } .p-tree .p-treenode-droppoint { height: 4px; list-style-type: none; } .p-tree .p-treenode-droppoint-active { border: 0 none; } .p-tree-horizontal { width:auto; padding-left: 0; padding-right: 0; overflow:auto; } .p-tree.p-tree-horizontal table, .p-tree.p-tree-horizontal tr, .p-tree.p-tree-horizontal td { border-collapse: collapse; margin: 0; padding: 0; vertical-align: middle; } .p-tree-horizontal .p-treenode-content { font-weight: normal; padding: 0.4em 1em 0.4em 0.2em; display: flex; align-items: center; } .p-tree-horizontal .p-treenode-parent .p-treenode-content { font-weight: normal; white-space: nowrap; } .p-tree.p-tree-horizontal .p-treenode { background: url("./images/line.gif") repeat-x scroll center center transparent; padding: .25rem 2.5rem; } .p-tree.p-tree-horizontal .p-treenode.p-treenode-leaf, .p-tree.p-tree-horizontal .p-treenode.p-treenode-collapsed { padding-right: 0; } .p-tree.p-tree-horizontal .p-treenode-children { padding: 0; margin: 0; } .p-tree.p-tree-horizontal .p-treenode-connector { width: 1px; } .p-tree.p-tree-horizontal .p-treenode-connector-table { height: 100%; width: 1px; } .p-tree.p-tree-horizontal .p-treenode-connector-line { background: url("./images/line.gif") repeat-y scroll 0 0 transparent; width: 1px; } .p-tree.p-tree-horizontal table { height: 0; }
src/app/components/tree/tree.css
.p-tree-container { margin: 0; padding: 0; list-style-type: none; overflow: auto; } .p-treenode-children { margin: 0; padding: 0; list-style-type: none; } .p-tree-wrapper { overflow: auto; } .p-treenode-selectable { cursor: pointer; user-select: none; } .p-tree-toggler { cursor: pointer; user-select: none; display: inline-flex; align-items: center; justify-content: center; overflow: hidden; position: relative; flex-shrink: 0; } .p-treenode-leaf > .p-treenode-content .p-tree-toggler { visibility: hidden; } .p-treenode-content { display: flex; align-items: center; } .p-tree-filter { width: 100%; } .p-tree-filter-container { position: relative; display: block; width: 100%; } .p-tree-filter-icon { position: absolute; top: 50%; margin-top: -.5rem; } .p-tree-loading { position: relative; min-height: 4rem; } .p-tree .p-tree-loading-overlay { position: absolute; display: flex; align-items: center; justify-content: center; z-index: 2; } .p-tree-flex-scrollable { display: flex; flex: 1; height: 100%; flex-direction: column; } .p-tree-flex-scrollable .p-tree-wrapper { flex: 1; } .p-tree .p-treenode-droppoint { height: 4px; list-style-type: none; } .p-tree .p-treenode-droppoint-active { border: 0 none; } .p-tree-horizontal { width:auto; padding-left: 0; padding-right: 0; overflow:auto; } .p-tree.p-tree-horizontal table, .p-tree.p-tree-horizontal tr, .p-tree.p-tree-horizontal td { border-collapse: collapse; margin: 0; padding: 0; vertical-align: middle; } .p-tree-horizontal .p-treenode-content { font-weight: normal; padding: 0.4em 1em 0.4em 0.2em; display: flex; align-items: center; } .p-tree-horizontal .p-treenode-parent .p-treenode-content { font-weight: normal; white-space: nowrap; } .p-tree.p-tree-horizontal .p-treenode { background: url("./images/line.gif") repeat-x scroll center center transparent; padding: .25rem 2.5rem; } .p-tree.p-tree-horizontal .p-treenode.p-treenode-leaf, .p-tree.p-tree-horizontal .p-treenode.p-treenode-collapsed { padding-right: 0; } .p-tree.p-tree-horizontal .p-treenode-children { padding: 0; margin: 0; } .p-tree.p-tree-horizontal .p-treenode-connector { width: 1px; } .p-tree.p-tree-horizontal .p-treenode-connector-table { height: 100%; width: 1px; } .p-tree.p-tree-horizontal .p-treenode-connector-line { background: url("./images/line.gif") repeat-y scroll 0 0 transparent; width: 1px; } .p-tree.p-tree-horizontal table { height: 0; }
0.557364
0.110807
.tile-page { -webkit-box-orient: vertical; display: -webkit-box; height: 100%; position: relative; width: 100%; } .tile-page-scrollbar { -webkit-box-sizing: border-box; margin: 0 4px; pointer-events: none; position: absolute; right: 0; width: 5px; z-index: 5; } .tile-page-content { -webkit-box-flex: 1; /* Don't apply clip mask to padding. */ -webkit-mask-clip: content-box; /* TODO(estade): this mask is disabled for technical reasons. It negatively * impacts performance of page switching, also it causes problems with Mac * text: http://crbug.com/86955 -webkit-mask-image: -webkit-linear-gradient(bottom, transparent, black 30px); */ /* The following four properties are necessary so that the mask won't clip * the scrollbar. */ box-sizing: border-box; overflow-y: scroll; /* Scrollbar width(13px) + balance right padding. */ padding-left: 93px; padding-right: 80px; /* This value is mirrored in TilePage.updateTopMargin_ */ padding-top: 60px; position: relative; text-align: center; width: 100%; } .top-margin { /* The only reason height is set to 1px, rather than left at 0, is that * otherwise webkit collapses the top and bottom margins. */ height: 1px; } .tile-grid { position: relative; width: 100%; } .tile { -webkit-print-color-adjust: exact; /* Don't offer the context menu on long-press. */ -webkit-touch-callout: none; -webkit-user-drag: element; display: inline-block; position: absolute; } /* NOTE: Dopplegangers nest themselves inside of other tiles, so don't * accidentally double apply font-size to them. */ .tile:not(.doppleganger) { font-size: 1.2em; } /* Not real but not a doppleganger: show nothing. This state exists for a * webstore tile that's on the same page as a [+]. */ .tile:not(.real):not(.doppleganger) { display: none; } /* I don't know why this is necessary. -webkit-user-drag: element on .tile * should be enough. If we don't do this, we get 2 drag representations for * the image. */ .tile img { -webkit-user-drag: none; } .doppleganger { left: 0 !important; right: 0 !important; top: 0 !important; } .tile.dragging { opacity: 0; } .tile.drag-representation { -webkit-transition: opacity 200ms; pointer-events: none; position: fixed; z-index: 3; } .tile.drag-representation.placing > * { -webkit-transition: -webkit-transform 200ms; } /* When a drag finishes while we're not showing the page where the tile * belongs, the tile shrinks to a dot. */ .tile.drag-representation.dropped-on-other-page > * { -webkit-transform: scale(0) rotate(0); } .tile.drag-representation.deleting > * { -webkit-transform: scale(0) rotate(360deg); -webkit-transition: -webkit-transform 600ms; } .animating-tile-page .tile, .tile.drag-representation.placing { -webkit-transition: left 200ms, right 200ms, top 200ms; } .hovering-on-trash { opacity: 0.6; } .animating-tile-page .top-margin { -webkit-transition: margin-bottom 200ms; } @-webkit-keyframes bounce { 0% { -webkit-transform: scale(0, 0); } 60% { -webkit-transform: scale(1.2, 1.2); } 100% { -webkit-transform: scale(1, 1); } } .tile > .new-tile-contents { -webkit-animation: bounce 500ms ease-in-out; } @-webkit-keyframes blipout { 0% { -webkit-transform: scale(1, 1); } 60% { -webkit-animation-timing-function: ease-in; -webkit-transform: scale(1.3, 0.02); opacity: 1; } 90% { -webkit-transform: scale(0.3, 0.02); opacity: 0.7; } 100% { -webkit-animation-timing-function: linear; -webkit-transform: scale(0.3, 0.02); opacity: 0; } } .tile > .removing-tile-contents { -webkit-animation: blipout 300ms; -webkit-animation-fill-mode: forwards; pointer-events: none; } .tile-page:not(.selected-card) * { -webkit-transition: none !important; } /** Scrollbars ****************************************************************/ .tile-page-content::-webkit-scrollbar { width: 13px; } .tile-page-content::-webkit-scrollbar-button { display: none; }
chrome/browser/resources/ntp4/tile_page.css
.tile-page { -webkit-box-orient: vertical; display: -webkit-box; height: 100%; position: relative; width: 100%; } .tile-page-scrollbar { -webkit-box-sizing: border-box; margin: 0 4px; pointer-events: none; position: absolute; right: 0; width: 5px; z-index: 5; } .tile-page-content { -webkit-box-flex: 1; /* Don't apply clip mask to padding. */ -webkit-mask-clip: content-box; /* TODO(estade): this mask is disabled for technical reasons. It negatively * impacts performance of page switching, also it causes problems with Mac * text: http://crbug.com/86955 -webkit-mask-image: -webkit-linear-gradient(bottom, transparent, black 30px); */ /* The following four properties are necessary so that the mask won't clip * the scrollbar. */ box-sizing: border-box; overflow-y: scroll; /* Scrollbar width(13px) + balance right padding. */ padding-left: 93px; padding-right: 80px; /* This value is mirrored in TilePage.updateTopMargin_ */ padding-top: 60px; position: relative; text-align: center; width: 100%; } .top-margin { /* The only reason height is set to 1px, rather than left at 0, is that * otherwise webkit collapses the top and bottom margins. */ height: 1px; } .tile-grid { position: relative; width: 100%; } .tile { -webkit-print-color-adjust: exact; /* Don't offer the context menu on long-press. */ -webkit-touch-callout: none; -webkit-user-drag: element; display: inline-block; position: absolute; } /* NOTE: Dopplegangers nest themselves inside of other tiles, so don't * accidentally double apply font-size to them. */ .tile:not(.doppleganger) { font-size: 1.2em; } /* Not real but not a doppleganger: show nothing. This state exists for a * webstore tile that's on the same page as a [+]. */ .tile:not(.real):not(.doppleganger) { display: none; } /* I don't know why this is necessary. -webkit-user-drag: element on .tile * should be enough. If we don't do this, we get 2 drag representations for * the image. */ .tile img { -webkit-user-drag: none; } .doppleganger { left: 0 !important; right: 0 !important; top: 0 !important; } .tile.dragging { opacity: 0; } .tile.drag-representation { -webkit-transition: opacity 200ms; pointer-events: none; position: fixed; z-index: 3; } .tile.drag-representation.placing > * { -webkit-transition: -webkit-transform 200ms; } /* When a drag finishes while we're not showing the page where the tile * belongs, the tile shrinks to a dot. */ .tile.drag-representation.dropped-on-other-page > * { -webkit-transform: scale(0) rotate(0); } .tile.drag-representation.deleting > * { -webkit-transform: scale(0) rotate(360deg); -webkit-transition: -webkit-transform 600ms; } .animating-tile-page .tile, .tile.drag-representation.placing { -webkit-transition: left 200ms, right 200ms, top 200ms; } .hovering-on-trash { opacity: 0.6; } .animating-tile-page .top-margin { -webkit-transition: margin-bottom 200ms; } @-webkit-keyframes bounce { 0% { -webkit-transform: scale(0, 0); } 60% { -webkit-transform: scale(1.2, 1.2); } 100% { -webkit-transform: scale(1, 1); } } .tile > .new-tile-contents { -webkit-animation: bounce 500ms ease-in-out; } @-webkit-keyframes blipout { 0% { -webkit-transform: scale(1, 1); } 60% { -webkit-animation-timing-function: ease-in; -webkit-transform: scale(1.3, 0.02); opacity: 1; } 90% { -webkit-transform: scale(0.3, 0.02); opacity: 0.7; } 100% { -webkit-animation-timing-function: linear; -webkit-transform: scale(0.3, 0.02); opacity: 0; } } .tile > .removing-tile-contents { -webkit-animation: blipout 300ms; -webkit-animation-fill-mode: forwards; pointer-events: none; } .tile-page:not(.selected-card) * { -webkit-transition: none !important; } /** Scrollbars ****************************************************************/ .tile-page-content::-webkit-scrollbar { width: 13px; } .tile-page-content::-webkit-scrollbar-button { display: none; }
0.324556
0.073663
@font-face { font-family: "FontAwesome"; src: url('../font/fontawesome-webfont.eot'); src: url('../font/fontawesome-webfont.woff') format('woff'), url('../font/fontawesome-webfont.ttf') format('truetype'), url('../font/fontawesome-webfont.svg#FontAwesome') format('svg'); font-weight: normal; font-style: normal; } [data-icon] { font-family: FontAwesome; font-weight: normal; font-style: normal; display: inline-block; text-decoration: inherit; } a [data-icon] { display: inline-block; text-decoration: inherit; } /* makes the font 33% larger relative to the icon container */ [data-icon~=large] { vertical-align: top; font-size: 1.3333333333333333em; } .btn [data-icon] { /* keeps button heights with and without icons the same */ line-height: .9em; } li [data-icon] { display: inline-block; width: 1.25em; text-align: center; } li [data-icon~=large] { /* 1.5 increased font size for icon-large * 1.25 width */ width: 1.875em; } li[data-icon] { margin-left: 0; list-style-type: none; } li[data-icon]:::before { text-indent: -2em; text-align: center; } li[[data-icon~=large]:::before { text-indent: -1.3333333333333333em; } /* Font Awesome styles ------------------------------------------------------- */ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ [data-icon~=glass]::before { content: "\f000"; } [data-icon~=music]::before { content: "\f001"; } [data-icon~=search]::before { content: "\f002"; } [data-icon~=envelope]::before { content: "\f003"; } [data-icon~=heart]::before { content: "\f004"; } [data-icon~=star]::before { content: "\f005"; } [data-icon~=star-empty]::before { content: "\f006"; } [data-icon~=user]::before { content: "\f007"; } [data-icon~=film]::before { content: "\f008"; } [data-icon~=th-large]::before { content: "\f009"; } [data-icon~=th]::before { content: "\f00a"; } [data-icon~=th-list]::before { content: "\f00b"; } [data-icon~=ok]::before { content: "\f00c"; } [data-icon~=remove]::before { content: "\f00d"; } [data-icon~=zoom-in]::before { content: "\f00e"; } [data-icon~=zoom-out]::before { content: "\f010"; } [data-icon~=off]::before { content: "\f011"; } [data-icon~=signal]::before { content: "\f012"; } [data-icon~=cog]::before { content: "\f013"; } [data-icon~=trash]::before { content: "\f014"; } [data-icon~=home]::before { content: "\f015"; } [data-icon~=file]::before { content: "\f016"; } [data-icon~=time]::before { content: "\f017"; } [data-icon~=road]::before { content: "\f018"; } [data-icon~=download-alt]::before { content: "\f019"; } [data-icon~=download]::before { content: "\f01a"; } [data-icon~=upload]::before { content: "\f01b"; } [data-icon~=inbox]::before { content: "\f01c"; } [data-icon~=play-circle]::before { content: "\f01d"; } [data-icon~=repeat]::before { content: "\f01e"; } /* \f020 doesn't work in Safari. all shifted one down */ [data-icon~=refresh]::before { content: "\f021"; } [data-icon~=list-alt]::before { content: "\f022"; } [data-icon~=lock]::before { content: "\f023"; } [data-icon~=flag]::before { content: "\f024"; } [data-icon~=headphones]::before { content: "\f025"; } [data-icon~=volume-off]::before { content: "\f026"; } [data-icon~=volume-down]::before { content: "\f027"; } [data-icon~=volume-up]::before { content: "\f028"; } [data-icon~=qrcode]::before { content: "\f029"; } [data-icon~=barcode]::before { content: "\f02a"; } [data-icon~=tag]::before { content: "\f02b"; } [data-icon~=tags]::before { content: "\f02c"; } [data-icon~=book]::before { content: "\f02d"; } [data-icon~=bookmark]::before { content: "\f02e"; } [data-icon~=print]::before { content: "\f02f"; } [data-icon~=camera]::before { content: "\f030"; } [data-icon~=font]::before { content: "\f031"; } [data-icon~=bold]::before { content: "\f032"; } [data-icon~=italic]::before { content: "\f033"; } [data-icon~=text-height]::before { content: "\f034"; } [data-icon~=text-width]::before { content: "\f035"; } [data-icon~=align-left]::before { content: "\f036"; } [data-icon~=align-center]::before { content: "\f037"; } [data-icon~=align-right]::before { content: "\f038"; } [data-icon~=align-justify]::before { content: "\f039"; } [data-icon~=list]::before { content: "\f03a"; } [data-icon~=indent-left]::before { content: "\f03b"; } [data-icon~=indent-right]::before { content: "\f03c"; } [data-icon~=facetime-video]::before { content: "\f03d"; } [data-icon~=picture]::before { content: "\f03e"; } [data-icon~=pencil]::before { content: "\f040"; } [data-icon~=map-marker]::before { content: "\f041"; } [data-icon~=adjust]::before { content: "\f042"; } [data-icon~=tint]::before { content: "\f043"; } [data-icon~=edit]::before { content: "\f044"; } [data-icon~=share]::before { content: "\f045"; } [data-icon~=check]::before { content: "\f046"; } [data-icon~=move]::before { content: "\f047"; } [data-icon~=step-backward]::before { content: "\f048"; } [data-icon~=fast-backward]::before { content: "\f049"; } [data-icon~=backward]::before { content: "\f04a"; } [data-icon~=play]::before { content: "\f04b"; } [data-icon~=pause]::before { content: "\f04c"; } [data-icon~=stop]::before { content: "\f04d"; } [data-icon~=forward]::before { content: "\f04e"; } [data-icon~=fast-forward]::before { content: "\f050"; } [data-icon~=step-forward]::before { content: "\f051"; } [data-icon~=eject]::before { content: "\f052"; } [data-icon~=chevron-left]::before { content: "\f053"; } [data-icon~=chevron-right]::before { content: "\f054"; } [data-icon~=plus-sign]::before { content: "\f055"; } [data-icon~=minus-sign]::before { content: "\f056"; } [data-icon~=remove-sign]::before { content: "\f057"; } [data-icon~=ok-sign]::before { content: "\f058"; } [data-icon~=question-sign]::before { content: "\f059"; } [data-icon~=info-sign]::before { content: "\f05a"; } [data-icon~=screenshot]::before { content: "\f05b"; } [data-icon~=remove-circle]::before { content: "\f05c"; } [data-icon~=ok-circle]::before { content: "\f05d"; } [data-icon~=ban-circle]::before { content: "\f05e"; } [data-icon~=arrow-left]::before { content: "\f060"; } [data-icon~=arrow-right]::before { content: "\f061"; } [data-icon~=arrow-up]::before { content: "\f062"; } [data-icon~=arrow-down]::before { content: "\f063"; } [data-icon~=share-alt]::before { content: "\f064"; } [data-icon~=resize-full]::before { content: "\f065"; } [data-icon~=resize-small]::before { content: "\f066"; } [data-icon~=plus]::before { content: "\f067"; } [data-icon~=minus]::before { content: "\f068"; } [data-icon~=asterisk]::before { content: "\f069"; } [data-icon~=exclamation-sign]::before { content: "\f06a"; } [data-icon~=gift]::before { content: "\f06b"; } [data-icon~=leaf]::before { content: "\f06c"; } [data-icon~=fire]::before { content: "\f06d"; } [data-icon~=eye-open]::before { content: "\f06e"; } [data-icon~=eye-close]::before { content: "\f070"; } [data-icon~=warning-sign]::before { content: "\f071"; } [data-icon~=plane]::before { content: "\f072"; } [data-icon~=calendar]::before { content: "\f073"; } [data-icon~=random]::before { content: "\f074"; } [data-icon~=comment]::before { content: "\f075"; } [data-icon~=magnet]::before { content: "\f076"; } [data-icon~=chevron-up]::before { content: "\f077"; } [data-icon~=chevron-down]::before { content: "\f078"; } [data-icon~=retweet]::before { content: "\f079"; } [data-icon~=shopping-cart]::before { content: "\f07a"; } [data-icon~=folder-close]::before { content: "\f07b"; } [data-icon~=folder-open]::before { content: "\f07c"; } [data-icon~=resize-vertical]::before { content: "\f07d"; } [data-icon~=resize-horizontal]::before { content: "\f07e"; } [data-icon~=bar-chart]::before { content: "\f080"; } [data-icon~=twitter-sign]::before { content: "\f081"; } [data-icon~=facebook-sign]::before { content: "\f082"; } [data-icon~=camera-retro]::before { content: "\f083"; } [data-icon~=key]::before { content: "\f084"; } [data-icon~=cogs]::before { content: "\f085"; } [data-icon~=comments]::before { content: "\f086"; } [data-icon~=thumbs-up]::before { content: "\f087"; } [data-icon~=thumbs-down]::before { content: "\f088"; } [data-icon~=star-half]::before { content: "\f089"; } [data-icon~=heart-empty]::before { content: "\f08a"; } [data-icon~=signout]::before { content: "\f08b"; } [data-icon~=linkedin-sign]::before { content: "\f08c"; } [data-icon~=pushpin]::before { content: "\f08d"; } [data-icon~=external-link]::before { content: "\f08e"; } [data-icon~=signin]::before { content: "\f090"; } [data-icon~=trophy]::before { content: "\f091"; } [data-icon~=github-sign]::before { content: "\f092"; } [data-icon~=upload-alt]::before { content: "\f093"; } [data-icon~=lemon]::before { content: "\f094"; } [data-icon~=phone]::before { content: "\f095"; } [data-icon~=check-empty]::before { content: "\f096"; } [data-icon~=bookmark-empty]::before { content: "\f097"; } [data-icon~=phone-sign]::before { content: "\f098"; } [data-icon~=twitter]::before { content: "\f099"; } [data-icon~=facebook]::before { content: "\f09a"; } [data-icon~=github]::before { content: "\f09b"; } [data-icon~=unlock]::before { content: "\f09c"; } [data-icon~=credit-card]::before { content: "\f09d"; } [data-icon~=rss]::before { content: "\f09e"; } [data-icon~=hdd]::before { content: "\f0a0"; } [data-icon~=bullhorn]::before { content: "\f0a1"; } [data-icon~=bell]::before { content: "\f0a2"; } [data-icon~=certificate]::before { content: "\f0a3"; } [data-icon~=hand-right]::before { content: "\f0a4"; } [data-icon~=hand-left]::before { content: "\f0a5"; } [data-icon~=hand-up]::before { content: "\f0a6"; } [data-icon~=hand-down]::before { content: "\f0a7"; } [data-icon~=circle-arrow-left]::before { content: "\f0a8"; } [data-icon~=circle-arrow-right]::before { content: "\f0a9"; } [data-icon~=circle-arrow-up]::before { content: "\f0aa"; } [data-icon~=circle-arrow-down]::before { content: "\f0ab"; } [data-icon~=globe]::before { content: "\f0ac"; } [data-icon~=wrench]::before { content: "\f0ad"; } [data-icon~=tasks]::before { content: "\f0ae"; } [data-icon~=filter]::before { content: "\f0b0"; } [data-icon~=briefcase]::before { content: "\f0b1"; } [data-icon~=fullscreen]::before { content: "\f0b2"; } [data-icon~=group]::before { content: "\f0c0"; } [data-icon~=link]::before { content: "\f0c1"; } [data-icon~=cloud]::before { content: "\f0c2"; } [data-icon~=beaker]::before { content: "\f0c3"; } [data-icon~=cut]::before { content: "\f0c4"; } [data-icon~=copy]::before { content: "\f0c5"; } [data-icon~=paper-clip]::before { content: "\f0c6"; } [data-icon~=save]::before { content: "\f0c7"; } [data-icon~=sign-blank]::before { content: "\f0c8"; } [data-icon~=reorder]::before { content: "\f0c9"; } [data-icon~=list-ul]::before { content: "\f0ca"; } [data-icon~=list-ol]::before { content: "\f0cb"; } [data-icon~=strikethrough]::before { content: "\f0cc"; } [data-icon~=underline]::before { content: "\f0cd"; } [data-icon~=table]::before { content: "\f0ce"; } [data-icon~=magic]::before { content: "\f0d0"; } [data-icon~=truck]::before { content: "\f0d1"; } [data-icon~=pinterest]::before { content: "\f0d2"; } [data-icon~=pinterest-sign]::before { content: "\f0d3"; } [data-icon~=google-plus-sign]::before { content: "\f0d4"; } [data-icon~=google-plus]::before { content: "\f0d5"; } [data-icon~=money]::before { content: "\f0d6"; } [data-icon~=caret-down]::before { content: "\f0d7"; } [data-icon~=caret-up]::before { content: "\f0d8"; } [data-icon~=caret-left]::before { content: "\f0d9"; } [data-icon~=caret-right]::before { content: "\f0da"; } [data-icon~=columns]::before { content: "\f0db"; } [data-icon~=sort]::before { content: "\f0dc"; } [data-icon~=sort-down]::before { content: "\f0dd"; } [data-icon~=sort-up]::before { content: "\f0de"; } [data-icon~=envelope-alt]::before { content: "\f0e0"; } [data-icon~=linkedin]::before { content: "\f0e1"; } [data-icon~=undo]::before { content: "\f0e2"; } [data-icon~=legal]::before { content: "\f0e3"; } [data-icon~=dashboard]::before { content: "\f0e4"; } [data-icon~=comment-alt]::before { content: "\f0e5"; } [data-icon~=comments-alt]::before { content: "\f0e6"; } [data-icon~=bolt]::before { content: "\f0e7"; } [data-icon~=sitemap]::before { content: "\f0e8"; } [data-icon~=umbrella]::before { content: "\f0e9"; } [data-icon~=paste]::before { content: "\f0ea"; } [data-icon~=user-md]::before { content: "\f200"; }
css/font-awesome.css
@font-face { font-family: "FontAwesome"; src: url('../font/fontawesome-webfont.eot'); src: url('../font/fontawesome-webfont.woff') format('woff'), url('../font/fontawesome-webfont.ttf') format('truetype'), url('../font/fontawesome-webfont.svg#FontAwesome') format('svg'); font-weight: normal; font-style: normal; } [data-icon] { font-family: FontAwesome; font-weight: normal; font-style: normal; display: inline-block; text-decoration: inherit; } a [data-icon] { display: inline-block; text-decoration: inherit; } /* makes the font 33% larger relative to the icon container */ [data-icon~=large] { vertical-align: top; font-size: 1.3333333333333333em; } .btn [data-icon] { /* keeps button heights with and without icons the same */ line-height: .9em; } li [data-icon] { display: inline-block; width: 1.25em; text-align: center; } li [data-icon~=large] { /* 1.5 increased font size for icon-large * 1.25 width */ width: 1.875em; } li[data-icon] { margin-left: 0; list-style-type: none; } li[data-icon]:::before { text-indent: -2em; text-align: center; } li[[data-icon~=large]:::before { text-indent: -1.3333333333333333em; } /* Font Awesome styles ------------------------------------------------------- */ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ [data-icon~=glass]::before { content: "\f000"; } [data-icon~=music]::before { content: "\f001"; } [data-icon~=search]::before { content: "\f002"; } [data-icon~=envelope]::before { content: "\f003"; } [data-icon~=heart]::before { content: "\f004"; } [data-icon~=star]::before { content: "\f005"; } [data-icon~=star-empty]::before { content: "\f006"; } [data-icon~=user]::before { content: "\f007"; } [data-icon~=film]::before { content: "\f008"; } [data-icon~=th-large]::before { content: "\f009"; } [data-icon~=th]::before { content: "\f00a"; } [data-icon~=th-list]::before { content: "\f00b"; } [data-icon~=ok]::before { content: "\f00c"; } [data-icon~=remove]::before { content: "\f00d"; } [data-icon~=zoom-in]::before { content: "\f00e"; } [data-icon~=zoom-out]::before { content: "\f010"; } [data-icon~=off]::before { content: "\f011"; } [data-icon~=signal]::before { content: "\f012"; } [data-icon~=cog]::before { content: "\f013"; } [data-icon~=trash]::before { content: "\f014"; } [data-icon~=home]::before { content: "\f015"; } [data-icon~=file]::before { content: "\f016"; } [data-icon~=time]::before { content: "\f017"; } [data-icon~=road]::before { content: "\f018"; } [data-icon~=download-alt]::before { content: "\f019"; } [data-icon~=download]::before { content: "\f01a"; } [data-icon~=upload]::before { content: "\f01b"; } [data-icon~=inbox]::before { content: "\f01c"; } [data-icon~=play-circle]::before { content: "\f01d"; } [data-icon~=repeat]::before { content: "\f01e"; } /* \f020 doesn't work in Safari. all shifted one down */ [data-icon~=refresh]::before { content: "\f021"; } [data-icon~=list-alt]::before { content: "\f022"; } [data-icon~=lock]::before { content: "\f023"; } [data-icon~=flag]::before { content: "\f024"; } [data-icon~=headphones]::before { content: "\f025"; } [data-icon~=volume-off]::before { content: "\f026"; } [data-icon~=volume-down]::before { content: "\f027"; } [data-icon~=volume-up]::before { content: "\f028"; } [data-icon~=qrcode]::before { content: "\f029"; } [data-icon~=barcode]::before { content: "\f02a"; } [data-icon~=tag]::before { content: "\f02b"; } [data-icon~=tags]::before { content: "\f02c"; } [data-icon~=book]::before { content: "\f02d"; } [data-icon~=bookmark]::before { content: "\f02e"; } [data-icon~=print]::before { content: "\f02f"; } [data-icon~=camera]::before { content: "\f030"; } [data-icon~=font]::before { content: "\f031"; } [data-icon~=bold]::before { content: "\f032"; } [data-icon~=italic]::before { content: "\f033"; } [data-icon~=text-height]::before { content: "\f034"; } [data-icon~=text-width]::before { content: "\f035"; } [data-icon~=align-left]::before { content: "\f036"; } [data-icon~=align-center]::before { content: "\f037"; } [data-icon~=align-right]::before { content: "\f038"; } [data-icon~=align-justify]::before { content: "\f039"; } [data-icon~=list]::before { content: "\f03a"; } [data-icon~=indent-left]::before { content: "\f03b"; } [data-icon~=indent-right]::before { content: "\f03c"; } [data-icon~=facetime-video]::before { content: "\f03d"; } [data-icon~=picture]::before { content: "\f03e"; } [data-icon~=pencil]::before { content: "\f040"; } [data-icon~=map-marker]::before { content: "\f041"; } [data-icon~=adjust]::before { content: "\f042"; } [data-icon~=tint]::before { content: "\f043"; } [data-icon~=edit]::before { content: "\f044"; } [data-icon~=share]::before { content: "\f045"; } [data-icon~=check]::before { content: "\f046"; } [data-icon~=move]::before { content: "\f047"; } [data-icon~=step-backward]::before { content: "\f048"; } [data-icon~=fast-backward]::before { content: "\f049"; } [data-icon~=backward]::before { content: "\f04a"; } [data-icon~=play]::before { content: "\f04b"; } [data-icon~=pause]::before { content: "\f04c"; } [data-icon~=stop]::before { content: "\f04d"; } [data-icon~=forward]::before { content: "\f04e"; } [data-icon~=fast-forward]::before { content: "\f050"; } [data-icon~=step-forward]::before { content: "\f051"; } [data-icon~=eject]::before { content: "\f052"; } [data-icon~=chevron-left]::before { content: "\f053"; } [data-icon~=chevron-right]::before { content: "\f054"; } [data-icon~=plus-sign]::before { content: "\f055"; } [data-icon~=minus-sign]::before { content: "\f056"; } [data-icon~=remove-sign]::before { content: "\f057"; } [data-icon~=ok-sign]::before { content: "\f058"; } [data-icon~=question-sign]::before { content: "\f059"; } [data-icon~=info-sign]::before { content: "\f05a"; } [data-icon~=screenshot]::before { content: "\f05b"; } [data-icon~=remove-circle]::before { content: "\f05c"; } [data-icon~=ok-circle]::before { content: "\f05d"; } [data-icon~=ban-circle]::before { content: "\f05e"; } [data-icon~=arrow-left]::before { content: "\f060"; } [data-icon~=arrow-right]::before { content: "\f061"; } [data-icon~=arrow-up]::before { content: "\f062"; } [data-icon~=arrow-down]::before { content: "\f063"; } [data-icon~=share-alt]::before { content: "\f064"; } [data-icon~=resize-full]::before { content: "\f065"; } [data-icon~=resize-small]::before { content: "\f066"; } [data-icon~=plus]::before { content: "\f067"; } [data-icon~=minus]::before { content: "\f068"; } [data-icon~=asterisk]::before { content: "\f069"; } [data-icon~=exclamation-sign]::before { content: "\f06a"; } [data-icon~=gift]::before { content: "\f06b"; } [data-icon~=leaf]::before { content: "\f06c"; } [data-icon~=fire]::before { content: "\f06d"; } [data-icon~=eye-open]::before { content: "\f06e"; } [data-icon~=eye-close]::before { content: "\f070"; } [data-icon~=warning-sign]::before { content: "\f071"; } [data-icon~=plane]::before { content: "\f072"; } [data-icon~=calendar]::before { content: "\f073"; } [data-icon~=random]::before { content: "\f074"; } [data-icon~=comment]::before { content: "\f075"; } [data-icon~=magnet]::before { content: "\f076"; } [data-icon~=chevron-up]::before { content: "\f077"; } [data-icon~=chevron-down]::before { content: "\f078"; } [data-icon~=retweet]::before { content: "\f079"; } [data-icon~=shopping-cart]::before { content: "\f07a"; } [data-icon~=folder-close]::before { content: "\f07b"; } [data-icon~=folder-open]::before { content: "\f07c"; } [data-icon~=resize-vertical]::before { content: "\f07d"; } [data-icon~=resize-horizontal]::before { content: "\f07e"; } [data-icon~=bar-chart]::before { content: "\f080"; } [data-icon~=twitter-sign]::before { content: "\f081"; } [data-icon~=facebook-sign]::before { content: "\f082"; } [data-icon~=camera-retro]::before { content: "\f083"; } [data-icon~=key]::before { content: "\f084"; } [data-icon~=cogs]::before { content: "\f085"; } [data-icon~=comments]::before { content: "\f086"; } [data-icon~=thumbs-up]::before { content: "\f087"; } [data-icon~=thumbs-down]::before { content: "\f088"; } [data-icon~=star-half]::before { content: "\f089"; } [data-icon~=heart-empty]::before { content: "\f08a"; } [data-icon~=signout]::before { content: "\f08b"; } [data-icon~=linkedin-sign]::before { content: "\f08c"; } [data-icon~=pushpin]::before { content: "\f08d"; } [data-icon~=external-link]::before { content: "\f08e"; } [data-icon~=signin]::before { content: "\f090"; } [data-icon~=trophy]::before { content: "\f091"; } [data-icon~=github-sign]::before { content: "\f092"; } [data-icon~=upload-alt]::before { content: "\f093"; } [data-icon~=lemon]::before { content: "\f094"; } [data-icon~=phone]::before { content: "\f095"; } [data-icon~=check-empty]::before { content: "\f096"; } [data-icon~=bookmark-empty]::before { content: "\f097"; } [data-icon~=phone-sign]::before { content: "\f098"; } [data-icon~=twitter]::before { content: "\f099"; } [data-icon~=facebook]::before { content: "\f09a"; } [data-icon~=github]::before { content: "\f09b"; } [data-icon~=unlock]::before { content: "\f09c"; } [data-icon~=credit-card]::before { content: "\f09d"; } [data-icon~=rss]::before { content: "\f09e"; } [data-icon~=hdd]::before { content: "\f0a0"; } [data-icon~=bullhorn]::before { content: "\f0a1"; } [data-icon~=bell]::before { content: "\f0a2"; } [data-icon~=certificate]::before { content: "\f0a3"; } [data-icon~=hand-right]::before { content: "\f0a4"; } [data-icon~=hand-left]::before { content: "\f0a5"; } [data-icon~=hand-up]::before { content: "\f0a6"; } [data-icon~=hand-down]::before { content: "\f0a7"; } [data-icon~=circle-arrow-left]::before { content: "\f0a8"; } [data-icon~=circle-arrow-right]::before { content: "\f0a9"; } [data-icon~=circle-arrow-up]::before { content: "\f0aa"; } [data-icon~=circle-arrow-down]::before { content: "\f0ab"; } [data-icon~=globe]::before { content: "\f0ac"; } [data-icon~=wrench]::before { content: "\f0ad"; } [data-icon~=tasks]::before { content: "\f0ae"; } [data-icon~=filter]::before { content: "\f0b0"; } [data-icon~=briefcase]::before { content: "\f0b1"; } [data-icon~=fullscreen]::before { content: "\f0b2"; } [data-icon~=group]::before { content: "\f0c0"; } [data-icon~=link]::before { content: "\f0c1"; } [data-icon~=cloud]::before { content: "\f0c2"; } [data-icon~=beaker]::before { content: "\f0c3"; } [data-icon~=cut]::before { content: "\f0c4"; } [data-icon~=copy]::before { content: "\f0c5"; } [data-icon~=paper-clip]::before { content: "\f0c6"; } [data-icon~=save]::before { content: "\f0c7"; } [data-icon~=sign-blank]::before { content: "\f0c8"; } [data-icon~=reorder]::before { content: "\f0c9"; } [data-icon~=list-ul]::before { content: "\f0ca"; } [data-icon~=list-ol]::before { content: "\f0cb"; } [data-icon~=strikethrough]::before { content: "\f0cc"; } [data-icon~=underline]::before { content: "\f0cd"; } [data-icon~=table]::before { content: "\f0ce"; } [data-icon~=magic]::before { content: "\f0d0"; } [data-icon~=truck]::before { content: "\f0d1"; } [data-icon~=pinterest]::before { content: "\f0d2"; } [data-icon~=pinterest-sign]::before { content: "\f0d3"; } [data-icon~=google-plus-sign]::before { content: "\f0d4"; } [data-icon~=google-plus]::before { content: "\f0d5"; } [data-icon~=money]::before { content: "\f0d6"; } [data-icon~=caret-down]::before { content: "\f0d7"; } [data-icon~=caret-up]::before { content: "\f0d8"; } [data-icon~=caret-left]::before { content: "\f0d9"; } [data-icon~=caret-right]::before { content: "\f0da"; } [data-icon~=columns]::before { content: "\f0db"; } [data-icon~=sort]::before { content: "\f0dc"; } [data-icon~=sort-down]::before { content: "\f0dd"; } [data-icon~=sort-up]::before { content: "\f0de"; } [data-icon~=envelope-alt]::before { content: "\f0e0"; } [data-icon~=linkedin]::before { content: "\f0e1"; } [data-icon~=undo]::before { content: "\f0e2"; } [data-icon~=legal]::before { content: "\f0e3"; } [data-icon~=dashboard]::before { content: "\f0e4"; } [data-icon~=comment-alt]::before { content: "\f0e5"; } [data-icon~=comments-alt]::before { content: "\f0e6"; } [data-icon~=bolt]::before { content: "\f0e7"; } [data-icon~=sitemap]::before { content: "\f0e8"; } [data-icon~=umbrella]::before { content: "\f0e9"; } [data-icon~=paste]::before { content: "\f0ea"; } [data-icon~=user-md]::before { content: "\f200"; }
0.28597
0.074332
ul.dropdown { padding: 0; list-style: none; } .li { display: inline-block; position: relative; line-height: 21px; text-align: center; width: 110%; margin-left: 525%; } .li a { display: block; padding: 8px 25px; color: #333; text-decoration: none; } .li a { color: #fff; } ul li ul.dropdown { width: 10%; /* Set width of the dropdown */ display: none; position: absolute; z-index: 999; left: 0; } ul li:hover ul.dropdown { display: block; /* Display the dropdown */ } ul .li ul.dropdown li { display: block; } @media screen and (min-width: 1255px) and (max-width: 1600px) { .log-navbar { margin-left: 60vw; } .logo { margin-left: 5vw; } .logout { margin-left: 600%; } .menu { margin-left: 5%; } } .menu { border: 2px solid white; border-radius: 10px; padding: 0.5% 0.5% 0.5% 0.5%; } @media screen and (min-width: 1000px) and (max-width: 1255px) { .logout { margin-left: 400%; } .log-navbar { margin-left: 52vw; } .logo { margin-left: 3vw; } } .nav-link { color: white; } .nav-link:hover { color: lightgrey; transition: 1s; } .div1 { font-size: 26px; margin-right: 2vw; } .div2 { font-size: 14px; margin-left: 1%; } .div3 { font-size: 18px; margin-left: 2%; } .nav-link { width: 120%; } .sidenav { height: 100%; width: 0; position: fixed; z-index: 1; top: 0; left: 0; overflow-x: hidden; transition: 0.5s; padding-top: 60px; } .sidenav a { padding: 8px 8px 8px 32px; text-decoration: none; font-size: 130%; color: white; display: block; transition: 0.3s; } .sidenav a:hover { color: #f1f1f1; } .sidenav .closebtn { position: absolute; top: 0; right: 25px; font-size: 180%; } @media screen and (max-height: 450px) { .sidenav { padding-top: 15px; } .sidenav a { font-size: 18px; } }
backend/web/css/styles.css
ul.dropdown { padding: 0; list-style: none; } .li { display: inline-block; position: relative; line-height: 21px; text-align: center; width: 110%; margin-left: 525%; } .li a { display: block; padding: 8px 25px; color: #333; text-decoration: none; } .li a { color: #fff; } ul li ul.dropdown { width: 10%; /* Set width of the dropdown */ display: none; position: absolute; z-index: 999; left: 0; } ul li:hover ul.dropdown { display: block; /* Display the dropdown */ } ul .li ul.dropdown li { display: block; } @media screen and (min-width: 1255px) and (max-width: 1600px) { .log-navbar { margin-left: 60vw; } .logo { margin-left: 5vw; } .logout { margin-left: 600%; } .menu { margin-left: 5%; } } .menu { border: 2px solid white; border-radius: 10px; padding: 0.5% 0.5% 0.5% 0.5%; } @media screen and (min-width: 1000px) and (max-width: 1255px) { .logout { margin-left: 400%; } .log-navbar { margin-left: 52vw; } .logo { margin-left: 3vw; } } .nav-link { color: white; } .nav-link:hover { color: lightgrey; transition: 1s; } .div1 { font-size: 26px; margin-right: 2vw; } .div2 { font-size: 14px; margin-left: 1%; } .div3 { font-size: 18px; margin-left: 2%; } .nav-link { width: 120%; } .sidenav { height: 100%; width: 0; position: fixed; z-index: 1; top: 0; left: 0; overflow-x: hidden; transition: 0.5s; padding-top: 60px; } .sidenav a { padding: 8px 8px 8px 32px; text-decoration: none; font-size: 130%; color: white; display: block; transition: 0.3s; } .sidenav a:hover { color: #f1f1f1; } .sidenav .closebtn { position: absolute; top: 0; right: 25px; font-size: 180%; } @media screen and (max-height: 450px) { .sidenav { padding-top: 15px; } .sidenav a { font-size: 18px; } }
0.666388
0.139367
@import url(https://fonts.googleapis.com/css?family=Poppins:400,700,600,500,300); @import url(https://fonts.googleapis.com/css?family=Indie+Flower); body { font-family: "Poppins", sans-serif; color: #aeaeae; background-color: #fff; font-size: 15px; line-height: 28px; font-weight: 300; } a { -moz-transition: all 0.3s; -o-transition: all 0.3s; -webkit-transition: all 0.3s; transition: all 0.3s; text-decoration: none; color: #32c5d2; } a:hover, a:focus { text-decoration: none; outline: 0 !important; } button { border: 0px; } button:focus { outline: 0 !important; } h1, h2, h3, h4, h5, h6 { margin-top: 0px; } hr.separator { border-top: 1px solid #32c5d2; margin: 10px auto; width: 80px; } /**section heading**/ .section_heading { padding-bottom: 50px; text-align: center; } .section_heading h3 { font-size: 35px; letter-spacing: 1px; text-transform: capitalize; margin-bottom: 5px; color: #000; font-weight: 500; } .section_heading p { font-weight: 400; font-size: 15px; } /**spaces**/ .space-20 { width: 100%; height: 20px; clear: both; } .space-30 { width: 100%; height: 30px; clear: both; } .space-40 { width: 100%; height: 40px; clear: both; } .space-50 { width: 100%; height: 50px; clear: both; } .space-60 { width: 100%; height: 60px; clear: both; } /***buttons***/ .btn { border: 0px; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; border-radius: 2px; text-transform: uppercase; font-weight: 400; font-size: 14px; -moz-transition: all 0.3s; -o-transition: all 0.3s; -webkit-transition: all 0.3s; transition: all 0.3s; } .btn i { margin-left: 8px; } .btn-3d { border-bottom: 3px solid rgba(0, 0, 0, 0.3); } .btn-lg { padding: 12px 30px; } .btn-light-dark { background-color: rgba(0, 0, 0, 0.5); color: #fff; } .btn-light-dark:hover, .btn-light-dark:focus { color: #fff; background-color: rgba(0, 0, 0, 0.9); } .btn-skin { background-color: #32c5d2; color: #fff; } .btn-skin:hover, .btn-skin:focus { color: #fff; background-color: rgba(0, 0, 0, 0.9); } .navbar-inverse { min-height: 60px; box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.1); border: 0px; background-color: rgba(0, 0, 0, 0.95); } .navbar-inverse .navbar-brand { float: left; height: 60px; padding: 15px 15px; font-size: 28px; color: #fff; line-height: 30px; font-family: "Poppins", sans-serif; } .navbar-inverse .navbar-nav > li > a { color: #fff; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; font-weight: 400; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover { color: #32c5d2; background-color: transparent; } @media (min-width: 768px) { .navbar-nav > li > a { padding-top: 20px; padding-bottom: 20px; } } /**footer**/ .footer { padding: 60px 0; background-color: #333; } .footer h2 { font-family: "Poppins", sans-serif; color: #fff; } .footer ul { padding-top: 20px; padding-bottom: 20px; } .footer ul li { padding: 0px; } .footer ul li a { display: block; width: 60px; margin: 5px 0; height: 60px; font-size: 25px; line-height: 60px; text-align: center; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; border-radius: 50%; background-color: #222; color: #aeaeae; } .footer ul li a:hover { color: #fff; background-color: #111; } /****Newsletter section***/ .newsletter-form { padding: 100px 0; background: #fff; background-repeat: no-repeat; background-size: cover; background-attachment: fixed; } .newsletter-form form { position: relative; } .newsletter-form form .btn { position: absolute; right: 4px; top: 4px; } .newsletter-form .form-control { -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; box-shadow: none; border: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; border-radius: 0px; background-color: transparent; height: 50px; color: #333; font-size: 13px; text-align: left; border: 2px solid rgba(0, 0, 0, 0.4); } .newsletter-form .form-control:hover, .newsletter-form .form-control:focus { border: 2px solid rgba(0, 0, 0, 0.8); } .newsletter-form .form-control.error { color: #fb8686; border: 2px solid #fb8686; } .newsletter-form ::-webkit-input-placeholder { color: #333; } .newsletter-form :-moz-placeholder { /* Firefox 18- */ color: #333; } .newsletter-form ::-moz-placeholder { /* Firefox 19+ */ color: #333; } .newsletter-form :-ms-input-placeholder { color: #333; } .intro-section { background: #eaeff2; background: -webkit-radial-gradient(center, ellipse cover, #eaeff2 0, rgba(212, 221, 228, 0.4) 60%), -webkit-linear-gradient(top, #cae1f4 0, rgba(125, 185, 232, 0) 100%); background: radial-gradient(ellipse at center, #eaeff2 0%, rgba(212, 221, 228, 0.5) 50%), linear-gradient(to bottom, #cae1f4 0, rgba(125, 185, 232, 0) 100%); padding-top: 70px; position: relative; } .intro-section .intro_text { padding-left: 30px; padding-right: 40px; margin-top: 100px; } .intro-section .intro_text h1 { color: #000; font-weight: 300; font-size: 60px; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75); } .intro-section .intro_text h1 span { font-family: "Poppins", sans-serif; } .intro-section .intro_text p { color: #666; font-size: 18px; margin-top: 10px; } .intro-section .intro_text .buttons { padding-top: 30px; } .intro-section .intro_text .buttons a { margin: 5px; } /*********iphone slider*************/ .iphone_holder { width: 300px; height: 526px; overflow: hidden; position: relative; background-image: url(../images/iphone-holder.png); background-repeat: no-repeat; margin: 0 auto; background-position: center top; } .iphone_holder .iphone_inner { position: absolute; width: 203px; height: 355px; left: 45px; top: 59px; background-color: #fff; padding: 0px; border: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; border-radius: 0px; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; box-shadow: none; } .iphone_holder .iphone_inner .slides li img { height: 355px; width: auto; } .iphone_holder .iphone_inner .flex-control-paging li a { background-color: transparent; background: transparent; border: 1px solid #fff; } .iphone_holder .iphone_inner .flex-control-paging li a.flex-active { background-color: #fff; opacity: 1; } /**android holder**/ .android_holder { width: 300px; height: 475px; overflow: hidden; position: relative; background-image: url(../images/mockup-android.png); background-repeat: no-repeat; margin: 0 auto; background-position: center top; } .android_holder .android_inner { position: absolute; width: 225px; height: 396px; left: 38px; top: 40px; background-color: #fff; padding: 0px; border: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; border-radius: 0px; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; box-shadow: none; } .android_holder .android_inner .slides li img { height: 396px; width: auto; } .android_holder .android_inner .flex-control-paging li a { background-color: transparent; background: transparent; border: 1px solid #fff; } .android_holder .android_inner .flex-control-paging li a.flex-active { background-color: #fff; opacity: 1; } .section-equal { padding: 0px; } .equal_height { background-color: #fff; } /***testimonials***/ .testimonials { padding: 100px 0; background-color: #fff; } .testimonials img { width: 60px !important; margin: 0 auto; margin-bottom: 10px; } .testimonials h4 { color: #32c5d2; margin-bottom: 0px; } .testimonials em { font-size: 13px; } .testimonials .owl-theme .owl-controls .owl-buttons div { -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; border-radius: 0px; background-color: #32c5d2; padding: 0px; width: 32px; height: 32px; line-height: 32px; text-align: center; font-size: 20px; } .testimonials p { font-style: normal; font-size: 16px; font-weight: 400; margin-bottom: 25px; } /**features**/ .features-section { padding: 100px 0; padding-bottom: 70px; position: relative; overflow: hidden; } /**parallax section**/ .aside_section { padding: 100px 0; padding-bottom: 50px; background-color: #eff3f8; overflow: hidden; position: relative; } .aside_section.light { background-color: #fff; } .aside_section img { float: none; display: block; margin: 0 auto; } /**aside features**/ .aside_features { padding-bottom: 50px; padding-top: 0px; } .aside_features h1 { font-weight: 400; color: #000; font-size: 45px; line-height: 65px; } .aside_features hr.separator { margin: 25px 0; } /*features box 1**/ .features-box-1 { margin-bottom: 30px; } .features-box-1 h3 { color: #32c5d2; font-weight: 500; } .features-box-1 i { display: block; float: left; width: 50px; height: 50px; line-height: 50px; font-size: 40px; margin-right: 40px; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; border-radius: 50%; color: #32c5d2; background-color: transparent; text-align: center; } .features-box-1 .features-box-1-text { overflow: hidden; } .feature-right { padding-bottom: 30px; } .feature-right .text { overflow: hidden; text-align: right; padding-right: 10px; } .feature-right .text h3 { color: #32c5d2; font-weight: 600; font-size: 20px; text-transform: capitalize; } .feature-right .icon { float: right; margin-left: 20px; width: 60px; height: 60px; line-height: 60px; text-align: center; border: 1px solid #32c5d2; -webkit-box-shadow: 0 0 0 2px #fff; -moz-box-shadow: 0 0 0 2px #fff; -ms-box-shadow: 0 0 0 2px #fff; box-shadow: 0 0 0 2px #fff; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; border-radius: 50%; -moz-transition: all ease-in 0.25s; -o-transition: all ease-in 0.25s; -webkit-transition: all ease-in 0.25s; transition: all ease-in 0.25s; } .feature-right .icon i { font-size: 20px; color: #32c5d2; } .feature-right:hover .icon { border: 2px solid #fff; -webkit-box-shadow: 0 0 0 2px #32c5d2; -moz-box-shadow: 0 0 0 2px #32c5d2; -ms-box-shadow: 0 0 0 2px #32c5d2; box-shadow: 0 0 0 2px #32c5d2; background-color: #32c5d2; } .feature-right:hover .icon i { color: #fff; } .feature-left { padding-bottom: 30px; } .feature-left .text { overflow: hidden; text-align: left; padding-left: 10px; } .feature-left .text h3 { color: #32c5d2; font-weight: 600; font-size: 20px; text-transform: capitalize; } .feature-left .icon { float: left; margin-right: 20px; width: 60px; height: 60px; line-height: 60px; text-align: center; border: 1px solid #32c5d2; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; border-radius: 50%; -webkit-box-shadow: 0 0 0 2px #fff; -moz-box-shadow: 0 0 0 2px #fff; -ms-box-shadow: 0 0 0 2px #fff; box-shadow: 0 0 0 2px #fff; -moz-transition: all ease-in 0.25s; -o-transition: all ease-in 0.25s; -webkit-transition: all ease-in 0.25s; transition: all ease-in 0.25s; } .feature-left .icon i { font-size: 20px; color: #32c5d2; } .feature-left:hover .icon { border: 2px solid #fff; -webkit-box-shadow: 0 0 0 2px #32c5d2; -moz-box-shadow: 0 0 0 2px #32c5d2; -ms-box-shadow: 0 0 0 2px #32c5d2; box-shadow: 0 0 0 2px #32c5d2; background-color: #32c5d2; } .feature-left:hover .icon i { color: #fff; } /**download section**/ .download-section { padding: 100px 0; background-color: #f1f1f1; } .download-section span { font-family: "Indie Flower", cursive; display: block; font-weight: 400; font-size: 20px; } /**team section**/ .team-section { padding: 100px 0; background: url(../images/bg-2.jpg) no-repeat; background-size: cover; background-attachment: scroll; position: relative; padding-bottom: 70px; } .team-section .section_heading h3 { color: #fff; } .team-section .person-col { width: 200px; height: 200px; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; border-radius: 50%; overflow: hidden; margin: 0 auto; margin-bottom: 30px; } .team-section h3 { color: #fff; } .team-section em { display: block; color: #eee; font-style: normal; } .team-section p { color: #fff; } /**screeen shot section **/ .shots { padding: 100px 0; } .shots img { display: block; margin: 0 auto; } .shots .owl-theme .owl-controls .owl-buttons div { -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; border-radius: 0px; background-color: #32c5d2; padding: 0px; width: 32px; height: 32px; line-height: 32px; text-align: center; font-size: 20px; margin-top: 30px; } /**video bg new**/ .video-section { width: 100%; height: 600px; position: relative; display: table; overflow: hidden; } .video-section .overlay { background-color: rgba(0, 0, 0, 0.6); position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 1; } .video-section .fs-background-container { left: 0; } .video-section .video-overlay { position: relative; top: 0; left: 0; width: 100%; height: 100%; display: table-cell; vertical-align: middle; text-align: center; z-index: 2; } .video-section .video-overlay h1 { color: #fff; } .video-section .video-overlay p { color: #fff; } @media (max-width: 991px) { .intro-section .intro_text { margin-top: 0px; text-align: center; } .intro-section .intro_text h1 { font-size: 35px; } .intro-section .intro_text .buttons { padding-top: 10px; padding-bottom: 30px; } .android_holder, .iphone_holder { margin-bottom: 50px; } }
templates/assan-v2.6/app-landing/css/style.css
@import url(https://fonts.googleapis.com/css?family=Poppins:400,700,600,500,300); @import url(https://fonts.googleapis.com/css?family=Indie+Flower); body { font-family: "Poppins", sans-serif; color: #aeaeae; background-color: #fff; font-size: 15px; line-height: 28px; font-weight: 300; } a { -moz-transition: all 0.3s; -o-transition: all 0.3s; -webkit-transition: all 0.3s; transition: all 0.3s; text-decoration: none; color: #32c5d2; } a:hover, a:focus { text-decoration: none; outline: 0 !important; } button { border: 0px; } button:focus { outline: 0 !important; } h1, h2, h3, h4, h5, h6 { margin-top: 0px; } hr.separator { border-top: 1px solid #32c5d2; margin: 10px auto; width: 80px; } /**section heading**/ .section_heading { padding-bottom: 50px; text-align: center; } .section_heading h3 { font-size: 35px; letter-spacing: 1px; text-transform: capitalize; margin-bottom: 5px; color: #000; font-weight: 500; } .section_heading p { font-weight: 400; font-size: 15px; } /**spaces**/ .space-20 { width: 100%; height: 20px; clear: both; } .space-30 { width: 100%; height: 30px; clear: both; } .space-40 { width: 100%; height: 40px; clear: both; } .space-50 { width: 100%; height: 50px; clear: both; } .space-60 { width: 100%; height: 60px; clear: both; } /***buttons***/ .btn { border: 0px; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; border-radius: 2px; text-transform: uppercase; font-weight: 400; font-size: 14px; -moz-transition: all 0.3s; -o-transition: all 0.3s; -webkit-transition: all 0.3s; transition: all 0.3s; } .btn i { margin-left: 8px; } .btn-3d { border-bottom: 3px solid rgba(0, 0, 0, 0.3); } .btn-lg { padding: 12px 30px; } .btn-light-dark { background-color: rgba(0, 0, 0, 0.5); color: #fff; } .btn-light-dark:hover, .btn-light-dark:focus { color: #fff; background-color: rgba(0, 0, 0, 0.9); } .btn-skin { background-color: #32c5d2; color: #fff; } .btn-skin:hover, .btn-skin:focus { color: #fff; background-color: rgba(0, 0, 0, 0.9); } .navbar-inverse { min-height: 60px; box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.1); border: 0px; background-color: rgba(0, 0, 0, 0.95); } .navbar-inverse .navbar-brand { float: left; height: 60px; padding: 15px 15px; font-size: 28px; color: #fff; line-height: 30px; font-family: "Poppins", sans-serif; } .navbar-inverse .navbar-nav > li > a { color: #fff; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; font-weight: 400; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover { color: #32c5d2; background-color: transparent; } @media (min-width: 768px) { .navbar-nav > li > a { padding-top: 20px; padding-bottom: 20px; } } /**footer**/ .footer { padding: 60px 0; background-color: #333; } .footer h2 { font-family: "Poppins", sans-serif; color: #fff; } .footer ul { padding-top: 20px; padding-bottom: 20px; } .footer ul li { padding: 0px; } .footer ul li a { display: block; width: 60px; margin: 5px 0; height: 60px; font-size: 25px; line-height: 60px; text-align: center; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; border-radius: 50%; background-color: #222; color: #aeaeae; } .footer ul li a:hover { color: #fff; background-color: #111; } /****Newsletter section***/ .newsletter-form { padding: 100px 0; background: #fff; background-repeat: no-repeat; background-size: cover; background-attachment: fixed; } .newsletter-form form { position: relative; } .newsletter-form form .btn { position: absolute; right: 4px; top: 4px; } .newsletter-form .form-control { -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; box-shadow: none; border: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; border-radius: 0px; background-color: transparent; height: 50px; color: #333; font-size: 13px; text-align: left; border: 2px solid rgba(0, 0, 0, 0.4); } .newsletter-form .form-control:hover, .newsletter-form .form-control:focus { border: 2px solid rgba(0, 0, 0, 0.8); } .newsletter-form .form-control.error { color: #fb8686; border: 2px solid #fb8686; } .newsletter-form ::-webkit-input-placeholder { color: #333; } .newsletter-form :-moz-placeholder { /* Firefox 18- */ color: #333; } .newsletter-form ::-moz-placeholder { /* Firefox 19+ */ color: #333; } .newsletter-form :-ms-input-placeholder { color: #333; } .intro-section { background: #eaeff2; background: -webkit-radial-gradient(center, ellipse cover, #eaeff2 0, rgba(212, 221, 228, 0.4) 60%), -webkit-linear-gradient(top, #cae1f4 0, rgba(125, 185, 232, 0) 100%); background: radial-gradient(ellipse at center, #eaeff2 0%, rgba(212, 221, 228, 0.5) 50%), linear-gradient(to bottom, #cae1f4 0, rgba(125, 185, 232, 0) 100%); padding-top: 70px; position: relative; } .intro-section .intro_text { padding-left: 30px; padding-right: 40px; margin-top: 100px; } .intro-section .intro_text h1 { color: #000; font-weight: 300; font-size: 60px; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75); } .intro-section .intro_text h1 span { font-family: "Poppins", sans-serif; } .intro-section .intro_text p { color: #666; font-size: 18px; margin-top: 10px; } .intro-section .intro_text .buttons { padding-top: 30px; } .intro-section .intro_text .buttons a { margin: 5px; } /*********iphone slider*************/ .iphone_holder { width: 300px; height: 526px; overflow: hidden; position: relative; background-image: url(../images/iphone-holder.png); background-repeat: no-repeat; margin: 0 auto; background-position: center top; } .iphone_holder .iphone_inner { position: absolute; width: 203px; height: 355px; left: 45px; top: 59px; background-color: #fff; padding: 0px; border: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; border-radius: 0px; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; box-shadow: none; } .iphone_holder .iphone_inner .slides li img { height: 355px; width: auto; } .iphone_holder .iphone_inner .flex-control-paging li a { background-color: transparent; background: transparent; border: 1px solid #fff; } .iphone_holder .iphone_inner .flex-control-paging li a.flex-active { background-color: #fff; opacity: 1; } /**android holder**/ .android_holder { width: 300px; height: 475px; overflow: hidden; position: relative; background-image: url(../images/mockup-android.png); background-repeat: no-repeat; margin: 0 auto; background-position: center top; } .android_holder .android_inner { position: absolute; width: 225px; height: 396px; left: 38px; top: 40px; background-color: #fff; padding: 0px; border: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; border-radius: 0px; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; box-shadow: none; } .android_holder .android_inner .slides li img { height: 396px; width: auto; } .android_holder .android_inner .flex-control-paging li a { background-color: transparent; background: transparent; border: 1px solid #fff; } .android_holder .android_inner .flex-control-paging li a.flex-active { background-color: #fff; opacity: 1; } .section-equal { padding: 0px; } .equal_height { background-color: #fff; } /***testimonials***/ .testimonials { padding: 100px 0; background-color: #fff; } .testimonials img { width: 60px !important; margin: 0 auto; margin-bottom: 10px; } .testimonials h4 { color: #32c5d2; margin-bottom: 0px; } .testimonials em { font-size: 13px; } .testimonials .owl-theme .owl-controls .owl-buttons div { -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; border-radius: 0px; background-color: #32c5d2; padding: 0px; width: 32px; height: 32px; line-height: 32px; text-align: center; font-size: 20px; } .testimonials p { font-style: normal; font-size: 16px; font-weight: 400; margin-bottom: 25px; } /**features**/ .features-section { padding: 100px 0; padding-bottom: 70px; position: relative; overflow: hidden; } /**parallax section**/ .aside_section { padding: 100px 0; padding-bottom: 50px; background-color: #eff3f8; overflow: hidden; position: relative; } .aside_section.light { background-color: #fff; } .aside_section img { float: none; display: block; margin: 0 auto; } /**aside features**/ .aside_features { padding-bottom: 50px; padding-top: 0px; } .aside_features h1 { font-weight: 400; color: #000; font-size: 45px; line-height: 65px; } .aside_features hr.separator { margin: 25px 0; } /*features box 1**/ .features-box-1 { margin-bottom: 30px; } .features-box-1 h3 { color: #32c5d2; font-weight: 500; } .features-box-1 i { display: block; float: left; width: 50px; height: 50px; line-height: 50px; font-size: 40px; margin-right: 40px; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; border-radius: 50%; color: #32c5d2; background-color: transparent; text-align: center; } .features-box-1 .features-box-1-text { overflow: hidden; } .feature-right { padding-bottom: 30px; } .feature-right .text { overflow: hidden; text-align: right; padding-right: 10px; } .feature-right .text h3 { color: #32c5d2; font-weight: 600; font-size: 20px; text-transform: capitalize; } .feature-right .icon { float: right; margin-left: 20px; width: 60px; height: 60px; line-height: 60px; text-align: center; border: 1px solid #32c5d2; -webkit-box-shadow: 0 0 0 2px #fff; -moz-box-shadow: 0 0 0 2px #fff; -ms-box-shadow: 0 0 0 2px #fff; box-shadow: 0 0 0 2px #fff; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; border-radius: 50%; -moz-transition: all ease-in 0.25s; -o-transition: all ease-in 0.25s; -webkit-transition: all ease-in 0.25s; transition: all ease-in 0.25s; } .feature-right .icon i { font-size: 20px; color: #32c5d2; } .feature-right:hover .icon { border: 2px solid #fff; -webkit-box-shadow: 0 0 0 2px #32c5d2; -moz-box-shadow: 0 0 0 2px #32c5d2; -ms-box-shadow: 0 0 0 2px #32c5d2; box-shadow: 0 0 0 2px #32c5d2; background-color: #32c5d2; } .feature-right:hover .icon i { color: #fff; } .feature-left { padding-bottom: 30px; } .feature-left .text { overflow: hidden; text-align: left; padding-left: 10px; } .feature-left .text h3 { color: #32c5d2; font-weight: 600; font-size: 20px; text-transform: capitalize; } .feature-left .icon { float: left; margin-right: 20px; width: 60px; height: 60px; line-height: 60px; text-align: center; border: 1px solid #32c5d2; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; border-radius: 50%; -webkit-box-shadow: 0 0 0 2px #fff; -moz-box-shadow: 0 0 0 2px #fff; -ms-box-shadow: 0 0 0 2px #fff; box-shadow: 0 0 0 2px #fff; -moz-transition: all ease-in 0.25s; -o-transition: all ease-in 0.25s; -webkit-transition: all ease-in 0.25s; transition: all ease-in 0.25s; } .feature-left .icon i { font-size: 20px; color: #32c5d2; } .feature-left:hover .icon { border: 2px solid #fff; -webkit-box-shadow: 0 0 0 2px #32c5d2; -moz-box-shadow: 0 0 0 2px #32c5d2; -ms-box-shadow: 0 0 0 2px #32c5d2; box-shadow: 0 0 0 2px #32c5d2; background-color: #32c5d2; } .feature-left:hover .icon i { color: #fff; } /**download section**/ .download-section { padding: 100px 0; background-color: #f1f1f1; } .download-section span { font-family: "Indie Flower", cursive; display: block; font-weight: 400; font-size: 20px; } /**team section**/ .team-section { padding: 100px 0; background: url(../images/bg-2.jpg) no-repeat; background-size: cover; background-attachment: scroll; position: relative; padding-bottom: 70px; } .team-section .section_heading h3 { color: #fff; } .team-section .person-col { width: 200px; height: 200px; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; border-radius: 50%; overflow: hidden; margin: 0 auto; margin-bottom: 30px; } .team-section h3 { color: #fff; } .team-section em { display: block; color: #eee; font-style: normal; } .team-section p { color: #fff; } /**screeen shot section **/ .shots { padding: 100px 0; } .shots img { display: block; margin: 0 auto; } .shots .owl-theme .owl-controls .owl-buttons div { -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; border-radius: 0px; background-color: #32c5d2; padding: 0px; width: 32px; height: 32px; line-height: 32px; text-align: center; font-size: 20px; margin-top: 30px; } /**video bg new**/ .video-section { width: 100%; height: 600px; position: relative; display: table; overflow: hidden; } .video-section .overlay { background-color: rgba(0, 0, 0, 0.6); position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 1; } .video-section .fs-background-container { left: 0; } .video-section .video-overlay { position: relative; top: 0; left: 0; width: 100%; height: 100%; display: table-cell; vertical-align: middle; text-align: center; z-index: 2; } .video-section .video-overlay h1 { color: #fff; } .video-section .video-overlay p { color: #fff; } @media (max-width: 991px) { .intro-section .intro_text { margin-top: 0px; text-align: center; } .intro-section .intro_text h1 { font-size: 35px; } .intro-section .intro_text .buttons { padding-top: 10px; padding-bottom: 30px; } .android_holder, .iphone_holder { margin-bottom: 50px; } }
0.277473
0.090333
body { margin: 0; line-height: 2; } p { padding: 0; margin: 0; } *{ padding:0; margin:0 } .rem { position: absolute; right: 0; top: 0; } .content { width: auto; position: relative; padding-top: 20px; margin-left: 10px; margin-right: 10px; } blockquote { background: #FAFAFA; padding: 10px 15px 10px 15px; margin: 12px; font-size: .8rem; /* border-style: dotted dotted dotted solid; */ /* border-left-width: 4px; */ border-left-width: 4px!important; border-width: 1px 1px 1px 1px; border-color: #F2F2F2; line-height: 200%; word-break: break-all; } .hr { color: #F2F2F2 } .imgbox { width: 100%; position: relative; min-height:120px; margin-bottom: 1rem } #upimg { position: absolute; right: 1rem; bottom: 1.5rem; border: 2px solid #fff; border-radius: 5px; padding: 4px 6px; background: rgba(255, 255, 255, 0.09019607843137255); color: #fff; font-weight: 900; z-index:9999 } #mc { position: absolute; width: 100%; height: 100%; background: #666666; z-index:999; opacity:0.3; top: 0; display: none } .imgbox>img { width: 100% } .content .title { width: 100%; font-size: 18px; border: none; outline: none; background-color: transparent; color: inherit; border-color: inherit; } .content .line { border-top: 1px solid #F2F2F2; margin-top: 1rem; } .content #editor { margin-top: 20px; outline: none; } #idlengthbox { text-align: right; font-size: .8rem; position: absolute; right: 0; margin-top: -1rem; color: #9B9B9B } input::-webkit-input-placeholder { color: #9B9B9B } .content #editor hr { font-family: Avenir, sans-serif; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: solid; border-color: inherit; height: 1px; margin: 1em 0px; padding: 0px; color: #F2F2F2; font-size: 17px; white-space: normal; display: block; } .content #editor .block { text-align: center; position: relative; height: auto; overflow: hidden; } .content #editor .img-block .images { display: block; margin: 0 auto 10px; } .content #editor .block input { text-align: center; width: 10rem; border: none; outline: none; border-bottom: 1px solid; background-color: transparent; color: inherit; border-color: inherit; } .img-block .delete { display: none; text-align: center; background: #ea6f5a; color: #fff; font-size: 0px; position: absolute; width: 100%; height: 100px; top: 50%; margin-top: -50px; padding-top: 10px; z-index: 3; } .img-block .delete img { width: 36px; height: 36px; } .img-block .delete .tips { margin: 5px auto; font-size: 20px; } #editor .editor-link { text-decoration: none; color: #2AAFF3; } .block { font-size: 0; } .process { height: 5px; display: inline-block; } .fill { height: 100%; background: #2AAFF3; width: 0; } .cover { position: absolute; top: 5px; left: 50%; transform: translateX(-50%); z-index: 2; background: rgba(255, 255, 255, 0.3); } #editor:empty:not(:focus)::before { content: "请输入内容~"; opacity: .5; } blockquote { background: rgba(90%, 90%, 90%, .3); border-left: 10px solid; border-color: rgba(30%, 30%, 30%, .3); margin: 1.5em 10px; padding: 0.5em 10px; quotes: "\201C""\201D"; } blockquote:before { color: inherit; font-size: 4em; line-height: 0.1em; margin-right: 0.25em; vertical-align: -0.4em; } blockquote p { display: inline; } button{outline:none;} /*#editor p { display: inline; }*/
richeditor/src/main/assets/rich/index.css
body { margin: 0; line-height: 2; } p { padding: 0; margin: 0; } *{ padding:0; margin:0 } .rem { position: absolute; right: 0; top: 0; } .content { width: auto; position: relative; padding-top: 20px; margin-left: 10px; margin-right: 10px; } blockquote { background: #FAFAFA; padding: 10px 15px 10px 15px; margin: 12px; font-size: .8rem; /* border-style: dotted dotted dotted solid; */ /* border-left-width: 4px; */ border-left-width: 4px!important; border-width: 1px 1px 1px 1px; border-color: #F2F2F2; line-height: 200%; word-break: break-all; } .hr { color: #F2F2F2 } .imgbox { width: 100%; position: relative; min-height:120px; margin-bottom: 1rem } #upimg { position: absolute; right: 1rem; bottom: 1.5rem; border: 2px solid #fff; border-radius: 5px; padding: 4px 6px; background: rgba(255, 255, 255, 0.09019607843137255); color: #fff; font-weight: 900; z-index:9999 } #mc { position: absolute; width: 100%; height: 100%; background: #666666; z-index:999; opacity:0.3; top: 0; display: none } .imgbox>img { width: 100% } .content .title { width: 100%; font-size: 18px; border: none; outline: none; background-color: transparent; color: inherit; border-color: inherit; } .content .line { border-top: 1px solid #F2F2F2; margin-top: 1rem; } .content #editor { margin-top: 20px; outline: none; } #idlengthbox { text-align: right; font-size: .8rem; position: absolute; right: 0; margin-top: -1rem; color: #9B9B9B } input::-webkit-input-placeholder { color: #9B9B9B } .content #editor hr { font-family: Avenir, sans-serif; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: solid; border-color: inherit; height: 1px; margin: 1em 0px; padding: 0px; color: #F2F2F2; font-size: 17px; white-space: normal; display: block; } .content #editor .block { text-align: center; position: relative; height: auto; overflow: hidden; } .content #editor .img-block .images { display: block; margin: 0 auto 10px; } .content #editor .block input { text-align: center; width: 10rem; border: none; outline: none; border-bottom: 1px solid; background-color: transparent; color: inherit; border-color: inherit; } .img-block .delete { display: none; text-align: center; background: #ea6f5a; color: #fff; font-size: 0px; position: absolute; width: 100%; height: 100px; top: 50%; margin-top: -50px; padding-top: 10px; z-index: 3; } .img-block .delete img { width: 36px; height: 36px; } .img-block .delete .tips { margin: 5px auto; font-size: 20px; } #editor .editor-link { text-decoration: none; color: #2AAFF3; } .block { font-size: 0; } .process { height: 5px; display: inline-block; } .fill { height: 100%; background: #2AAFF3; width: 0; } .cover { position: absolute; top: 5px; left: 50%; transform: translateX(-50%); z-index: 2; background: rgba(255, 255, 255, 0.3); } #editor:empty:not(:focus)::before { content: "请输入内容~"; opacity: .5; } blockquote { background: rgba(90%, 90%, 90%, .3); border-left: 10px solid; border-color: rgba(30%, 30%, 30%, .3); margin: 1.5em 10px; padding: 0.5em 10px; quotes: "\201C""\201D"; } blockquote:before { color: inherit; font-size: 4em; line-height: 0.1em; margin-right: 0.25em; vertical-align: -0.4em; } blockquote p { display: inline; } button{outline:none;} /*#editor p { display: inline; }*/
0.53048
0.079246
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; } audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; } audio:not([controls]) { display: none; } 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; } sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { /* Responsive images (ensure images don't scale beyond their parents) */ max-width: 100%; /* Part 1: Set a maxium relative to the parent */ width: auto\9; /* IE7-8 need help adjusting responsive images */ height: auto; /* Part 2: Scale the height according to the width, otherwise you get stretching */ vertical-align: middle; border: 0; -ms-interpolation-mode: bicubic; } #map_canvas img, .google-maps img { max-width: none; } 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; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } label, select, button, input[type="button"], input[type="reset"], input[type="submit"], input[type="radio"], input[type="checkbox"] { cursor: pointer; } input[type="search"] { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; -webkit-appearance: textfield; } input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; } textarea { overflow: auto; vertical-align: top; } @media print { * { text-shadow: none !important; color: #000 !important; background: transparent !important; box-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } @page { margin: 0.5cm; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } } .clearfix { *zoom: 1; } .clearfix:before, .clearfix:after { display: table; content: ""; line-height: 0; } .clearfix:after { clear: both; } .hide-text { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .input-block-level { display: block; width: 100%; min-height: 30px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .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; } .offset12 { margin-left: 980px; } .offset11 { margin-left: 900px; } .offset10 { margin-left: 820px; } .offset9 { margin-left: 740px; } .offset8 { margin-left: 660px; } .offset7 { margin-left: 580px; } .offset6 { margin-left: 500px; } .offset5 { margin-left: 420px; } .offset4 { margin-left: 340px; } .offset3 { margin-left: 260px; } .offset2 { margin-left: 180px; } .offset1 { margin-left: 100px; } .row-fluid { width: 100%; *zoom: 1; } .row-fluid:before, .row-fluid:after { display: table; content: ""; line-height: 0; } .row-fluid:after { clear: both; } .row-fluid [class*="span"] { display: block; width: 100%; min-height: 30px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; float: left; margin-left: 2.127659574468085%; *margin-left: 2.074468085106383%; } .row-fluid [class*="span"]:first-child { margin-left: 0; } .row-fluid .span12 { width: 100%; *width: 99.94680851063829%; } .row-fluid .span11 { width: 91.48936170212765%; *width: 91.43617021276594%; } .row-fluid .span10 { width: 82.97872340425532%; *width: 82.92553191489361%; } .row-fluid .span9 { width: 74.46808510638297%; *width: 74.41489361702126%; } .row-fluid .span8 { width: 65.95744680851064%; *width: 65.90425531914893%; } .row-fluid .span7 { width: 57.44680851063829%; *width: 57.39361702127659%; } .row-fluid .span6 { width: 48.93617021276595%; *width: 48.88297872340425%; } .row-fluid .span5 { width: 40.42553191489362%; *width: 40.37234042553192%; } .row-fluid .span4 { width: 31.914893617021278%; *width: 31.861702127659576%; } .row-fluid .span3 { width: 23.404255319148934%; *width: 23.351063829787233%; } .row-fluid .span2 { width: 14.893617021276595%; *width: 14.840425531914894%; } .row-fluid .span1 { width: 6.382978723404255%; *width: 6.329787234042553%; } .row-fluid .offset12 { margin-left: 104.25531914893617%; *margin-left: 104.14893617021275%; } .row-fluid .offset12:first-child { margin-left: 102.12765957446808%; *margin-left: 102.02127659574467%; } .row-fluid .offset11 { margin-left: 95.74468085106382%; *margin-left: 95.6382978723404%; } .row-fluid .offset11:first-child { margin-left: 93.61702127659574%; *margin-left: 93.51063829787232%; } .row-fluid .offset10 { margin-left: 87.23404255319149%; *margin-left: 87.12765957446807%; } .row-fluid .offset10:first-child { margin-left: 85.1063829787234%; *margin-left: 84.99999999999999%; } .row-fluid .offset9 { margin-left: 78.72340425531914%; *margin-left: 78.61702127659572%; } .row-fluid .offset9:first-child { margin-left: 76.59574468085106%; *margin-left: 76.48936170212764%; } .row-fluid .offset8 { margin-left: 70.2127659574468%; *margin-left: 70.10638297872339%; } .row-fluid .offset8:first-child { margin-left: 68.08510638297872%; *margin-left: 67.9787234042553%; } .row-fluid .offset7 { margin-left: 61.70212765957446%; *margin-left: 61.59574468085106%; } .row-fluid .offset7:first-child { margin-left: 59.574468085106375%; *margin-left: 59.46808510638297%; } .row-fluid .offset6 { margin-left: 53.191489361702125%; *margin-left: 53.085106382978715%; } .row-fluid .offset6:first-child { margin-left: 51.063829787234035%; *margin-left: 50.95744680851063%; } .row-fluid .offset5 { margin-left: 44.68085106382979%; *margin-left: 44.57446808510638%; } .row-fluid .offset5:first-child { margin-left: 42.5531914893617%; *margin-left: 42.4468085106383%; } .row-fluid .offset4 { margin-left: 36.170212765957444%; *margin-left: 36.06382978723405%; } .row-fluid .offset4:first-child { margin-left: 34.04255319148936%; *margin-left: 33.93617021276596%; } .row-fluid .offset3 { margin-left: 27.659574468085104%; *margin-left: 27.5531914893617%; } .row-fluid .offset3:first-child { margin-left: 25.53191489361702%; *margin-left: 25.425531914893618%; } .row-fluid .offset2 { margin-left: 19.148936170212764%; *margin-left: 19.04255319148936%; } .row-fluid .offset2:first-child { margin-left: 17.02127659574468%; *margin-left: 16.914893617021278%; } .row-fluid .offset1 { margin-left: 10.638297872340425%; *margin-left: 10.53191489361702%; } .row-fluid .offset1:first-child { margin-left: 8.51063829787234%; *margin-left: 8.404255319148938%; } [class*="span"].hide, .row-fluid [class*="span"].hide { display: none; } [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; } .container-fluid { padding-right: 20px; padding-left: 20px; *zoom: 1; } .container-fluid:before, .container-fluid:after { display: table; content: ""; line-height: 0; } .container-fluid: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%; } strong { font-weight: bold; } em { font-style: italic; } cite { font-style: normal; } .muted { color: #999999; } a.muted:hover, a.muted:focus { color: #808080; } .text-warning { color: #c09853; } a.text-warning:hover, a.text-warning:focus { color: #a47e3c; } .text-error { color: #b94a48; } a.text-error:hover, a.text-error:focus { color: #953b39; } .text-info { color: #3a87ad; } a.text-info:hover, a.text-info:focus { color: #2d6987; } .text-success { color: #468847; } a.text-success:hover, a.text-success:focus { color: #356635; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } h1, h2, h3, h4, h5, h6 { margin: 10px 0; font-family: inherit; font-weight: bold; line-height: 20px; color: inherit; text-rendering: optimizelegibility; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-weight: normal; line-height: 1; color: #999999; } h1, h2, h3 { line-height: 40px; } h1 { font-size: 38.5px; } h2 { font-size: 31.5px; } h3 { font-size: 24.5px; } h4 { font-size: 17.5px; } h5 { font-size: 14px; } h6 { font-size: 11.9px; } h1 small { font-size: 24.5px; } h2 small { font-size: 17.5px; } h3 small { font-size: 14px; } h4 small { font-size: 14px; } .page-header { padding-bottom: 9px; margin: 20px 0 30px; border-bottom: 1px solid #eeeeee; } ul, ol { padding: 0; margin: 0 0 10px 25px; } ul ul, ul ol, ol ol, ol ul { margin-bottom: 0; } li { line-height: 20px; } ul.unstyled, ol.unstyled { margin-left: 0; list-style: none; } ul.inline, ol.inline { margin-left: 0; list-style: none; } ul.inline > li, ol.inline > li { display: inline-block; *display: inline; /* IE7 inline-block hack */ *zoom: 1; padding-left: 5px; padding-right: 5px; } dl { margin-bottom: 20px; } dt, dd { line-height: 20px; } dt { font-weight: bold; } dd { margin-left: 10px; } .dl-horizontal { *zoom: 1; } .dl-horizontal:before, .dl-horizontal:after { display: table; content: ""; line-height: 0; } .dl-horizontal:after { clear: both; } .dl-horizontal dt { float: left; width: 160px; clear: left; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .dl-horizontal dd { margin-left: 180px; } hr { margin: 20px 0; border: 0; border-top: 1px solid #eeeeee; border-bottom: 1px solid #ffffff; } abbr[title], abbr[data-original-title] { cursor: help; border-bottom: 1px dotted #999999; } abbr.initialism { font-size: 90%; text-transform: uppercase; } blockquote { padding: 0 0 0 15px; margin: 0 0 20px; border-left: 5px solid #eeeeee; } blockquote p { margin-bottom: 0; font-size: 17.5px; font-weight: 300; line-height: 1.25; } blockquote small { display: block; line-height: 20px; color: #999999; } blockquote small:before { content: '\2014 \00A0'; } blockquote.pull-right { float: right; padding-right: 15px; padding-left: 0; border-right: 5px solid #eeeeee; border-left: 0; } blockquote.pull-right p, blockquote.pull-right small { text-align: right; } blockquote.pull-right small:before { content: ''; } blockquote.pull-right small:after { content: '\00A0 \2014'; } q:before, q:after, blockquote:before, blockquote:after { content: ""; } address { display: block; margin-bottom: 20px; font-style: normal; line-height: 20px; } code, pre { padding: 0 3px 2px; font-family: Monaco, Menlo, Consolas, "Courier New", monospace; font-size: 12px; color: #333333; -webkit-border-radius: 3px !important; -moz-border-radius: 3px !important; border-radius: 3px !important; } code { padding: 2px 4px; color: #d14; background-color: #f7f7f9; border: 1px solid #e1e1e8; white-space: nowrap; } pre { display: block; padding: 9.5px; margin: 0 0 10px; font-size: 13px; line-height: 20px; word-break: break-all; word-wrap: break-word; white-space: pre; white-space: pre-wrap; background-color: #f5f5f5; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.15); -webkit-border-radius: 4px !important; -moz-border-radius: 4px !important; border-radius: 4px !important; } pre.prettyprint { margin-bottom: 20px; } pre code { padding: 0; color: inherit; white-space: pre; white-space: pre-wrap; background-color: transparent; border: 0; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .dropup, .dropdown { position: relative; } .dropdown-toggle { *margin-bottom: -3px; } .dropdown-toggle:active, .open .dropdown-toggle { outline: 0; } .caret { display: inline-block; width: 0; height: 0; vertical-align: top; border-top: 4px solid #000000; border-right: 4px solid transparent; border-left: 4px solid transparent; content: ""; } .dropdown .caret { margin-top: 8px; margin-left: 2px; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; list-style: none; background-color: #ffffff; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.2); *border-right-width: 2px; *border-bottom-width: 2px; -webkit-border-radius: 6px !important; -moz-border-radius: 6px !important; border-radius: 6px !important; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } .dropdown-menu.pull-right { right: 0; left: auto; } .dropdown-menu .divider { *width: 100%; height: 1px; margin: 9px 1px; *margin: -5px 0 5px; overflow: hidden; background-color: #e5e5e5; border-bottom: 1px solid #ffffff; } .dropdown-menu > li > a { display: block; padding: 3px 20px; clear: both; font-weight: normal; line-height: 20px; color: #333333; white-space: nowrap; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a { text-decoration: none; color: #ffffff; background-color: #0081c2; background-image: -moz-linear-gradient(top, #0088cc, #0077b3); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3)); background-image: -webkit-linear-gradient(top, #0088cc, #0077b3); background-image: -o-linear-gradient(top, #0088cc, #0077b3); background-image: linear-gradient(to bottom, #0088cc, #0077b3); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); } .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { color: #ffffff; text-decoration: none; outline: 0; background-color: #0081c2; background-image: -moz-linear-gradient(top, #0088cc, #0077b3); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3)); background-image: -webkit-linear-gradient(top, #0088cc, #0077b3); background-image: -o-linear-gradient(top, #0088cc, #0077b3); background-image: linear-gradient(to bottom, #0088cc, #0077b3); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); } .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { color: #999999; } .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { text-decoration: none; background-color: transparent; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); cursor: default; } .open { *z-index: 1000; } .open > .dropdown-menu { display: block; } .dropdown-backdrop { position: fixed; left: 0; right: 0; bottom: 0; top: 0; z-index: 990; } .pull-right > .dropdown-menu { right: 0; left: auto; } .dropup .caret, .navbar-fixed-bottom .dropdown .caret { border-top: 0; border-bottom: 4px solid #000000; content: ""; } .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; margin-bottom: 1px; } .dropdown-submenu { position: relative; } .dropdown-submenu > .dropdown-menu { top: 0; left: 100%; margin-top: -6px; margin-left: -1px; -webkit-border-radius: 0 6px 6px 6px !important; -moz-border-radius: 0 6px 6px 6px !important; border-radius: 0 6px 6px 6px !important; } .dropdown-submenu:hover > .dropdown-menu { display: block; } .dropup .dropdown-submenu > .dropdown-menu { top: auto; bottom: 0; margin-top: 0; margin-bottom: -2px; -webkit-border-radius: 5px 5px 5px 0 !important; -moz-border-radius: 5px 5px 5px 0 !important; border-radius: 5px 5px 5px 0 !important; } .dropdown-submenu > a:after { display: block; content: " "; float: right; width: 0; height: 0; border-color: transparent; border-style: solid; border-width: 5px 0 5px 5px; border-left-color: #cccccc; margin-top: 5px; margin-right: -10px; } .dropdown-submenu:hover > a:after { border-left-color: #ffffff; } .dropdown-submenu.pull-left { float: none; } .dropdown-submenu.pull-left > .dropdown-menu { left: -100%; margin-left: 10px; -webkit-border-radius: 6px 0 6px 6px !important; -moz-border-radius: 6px 0 6px 6px !important; border-radius: 6px 0 6px 6px !important; } .dropdown .dropdown-menu .nav-header { padding-left: 20px; padding-right: 20px; } .typeahead { z-index: 1051; margin-top: 2px; -webkit-border-radius: 4px !important; -moz-border-radius: 4px !important; border-radius: 4px !important; } .fade { opacity: 0; -webkit-transition: opacity 0.15s linear; -moz-transition: opacity 0.15s linear; -o-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } .fade.in { opacity: 1; } .collapse { position: relative; height: 0; overflow: hidden; -webkit-transition: height 0.35s ease; -moz-transition: height 0.35s ease; -o-transition: height 0.35s ease; transition: height 0.35s ease; } .collapse.in { height: auto; } .close { float: right; font-size: 20px; font-weight: bold; line-height: 20px; color: #000000; text-shadow: 0 1px 0 #ffffff; opacity: 0.2; filter: alpha(opacity=20); } .close:hover, .close:focus { color: #000000; text-decoration: none; cursor: pointer; opacity: 0.4; filter: alpha(opacity=40); } button.close { padding: 0; cursor: pointer; background: transparent; border: 0; -webkit-appearance: none; } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000000; } .modal-backdrop.fade { opacity: 0; } .modal-backdrop, .modal-backdrop.fade.in { opacity: 0.8; filter: alpha(opacity=80); } .modal { position: fixed; top: 10%; left: 50%; z-index: 1050; width: 560px; margin-left: -280px; background-color: #ffffff; border: 1px solid #999; border: 1px solid rgba(0, 0, 0, 0.3); *border: 1px solid #999; /* IE6-7 */ -webkit-border-radius: 6px !important; -moz-border-radius: 6px !important; border-radius: 6px !important; -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); -webkit-background-clip: padding-box; -moz-background-clip: padding-box; background-clip: padding-box; outline: none; } .modal.fade { -webkit-transition: opacity .3s linear, top .3s ease-out; -moz-transition: opacity .3s linear, top .3s ease-out; -o-transition: opacity .3s linear, top .3s ease-out; transition: opacity .3s linear, top .3s ease-out; top: -25%; } .modal.fade.in { top: 10%; } .modal-header { padding: 9px 15px; border-bottom: 1px solid #eee; } .modal-header .close { margin-top: 2px; } .modal-header h3 { margin: 0; line-height: 30px; } .modal-body { position: relative; overflow-y: auto; max-height: 400px; padding: 15px; } .modal-form { margin-bottom: 0; } .modal-footer { padding: 14px 15px 15px; margin-bottom: 0; text-align: right; background-color: #f5f5f5; border-top: 1px solid #ddd; -webkit-border-radius: 0 0 6px 6px !important; -moz-border-radius: 0 0 6px 6px !important; border-radius: 0 0 6px 6px !important; -webkit-box-shadow: inset 0 1px 0 #ffffff; -moz-box-shadow: inset 0 1px 0 #ffffff; box-shadow: inset 0 1px 0 #ffffff; *zoom: 1; } .modal-footer:before, .modal-footer:after { display: table; content: ""; line-height: 0; } .modal-footer:after { clear: both; } .modal-footer .btn + .btn { margin-left: 5px; margin-bottom: 0; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .modal-footer .btn-block + .btn-block { margin-left: 0; } .tooltip { position: absolute; z-index: 1030; display: block; visibility: visible; font-size: 11px; line-height: 1.4; opacity: 0; filter: alpha(opacity=0); } .tooltip.in { opacity: 0.8; filter: alpha(opacity=80); } .tooltip.top { margin-top: -3px; padding: 5px 0; } .tooltip.right { margin-left: 3px; padding: 0 5px; } .tooltip.bottom { margin-top: 3px; padding: 5px 0; } .tooltip.left { margin-left: -3px; padding: 0 5px; } .tooltip-inner { max-width: 200px; padding: 8px; color: #ffffff; text-align: center; text-decoration: none; background-color: #000000; -webkit-border-radius: 4px !important; -moz-border-radius: 4px !important; border-radius: 4px !important; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000000; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #000000; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #000000; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #000000; } .popover { position: absolute; top: 0; left: 0; z-index: 1010; display: none; max-width: 276px; padding: 1px; text-align: left; background-color: #ffffff; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.2); -webkit-border-radius: 6px !important; -moz-border-radius: 6px !important; border-radius: 6px !important; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); white-space: normal; } .popover.top { margin-top: -10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover-title { margin: 0; padding: 8px 14px; font-size: 14px; font-weight: normal; line-height: 18px; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; -webkit-border-radius: 5px 5px 0 0 !important; -moz-border-radius: 5px 5px 0 0 !important; border-radius: 5px 5px 0 0 !important; } .popover-title:empty { display: none; } .popover-content { padding: 9px 14px; } .popover .arrow, .popover .arrow:after { position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover .arrow { border-width: 11px; } .popover .arrow:after { border-width: 10px; content: ""; } .popover.top .arrow { left: 50%; margin-left: -11px; border-bottom-width: 0; border-top-color: #999; border-top-color: rgba(0, 0, 0, 0.25); bottom: -11px; } .popover.top .arrow:after { bottom: 1px; margin-left: -10px; border-bottom-width: 0; border-top-color: #ffffff; } .popover.right .arrow { top: 50%; left: -11px; margin-top: -11px; border-left-width: 0; border-right-color: #999; border-right-color: rgba(0, 0, 0, 0.25); } .popover.right .arrow:after { left: 1px; bottom: -10px; border-left-width: 0; border-right-color: #ffffff; } .popover.bottom .arrow { left: 50%; margin-left: -11px; border-top-width: 0; border-bottom-color: #999; border-bottom-color: rgba(0, 0, 0, 0.25); top: -11px; } .popover.bottom .arrow:after { top: 1px; margin-left: -10px; border-top-width: 0; border-bottom-color: #ffffff; } .popover.left .arrow { top: 50%; right: -11px; margin-top: -11px; border-right-width: 0; border-left-color: #999; border-left-color: rgba(0, 0, 0, 0.25); } .popover.left .arrow:after { right: 1px; border-right-width: 0; border-left-color: #ffffff; bottom: -10px; }
web/medias/css/bootstrap.css
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; } audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; } audio:not([controls]) { display: none; } 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; } sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { /* Responsive images (ensure images don't scale beyond their parents) */ max-width: 100%; /* Part 1: Set a maxium relative to the parent */ width: auto\9; /* IE7-8 need help adjusting responsive images */ height: auto; /* Part 2: Scale the height according to the width, otherwise you get stretching */ vertical-align: middle; border: 0; -ms-interpolation-mode: bicubic; } #map_canvas img, .google-maps img { max-width: none; } 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; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } label, select, button, input[type="button"], input[type="reset"], input[type="submit"], input[type="radio"], input[type="checkbox"] { cursor: pointer; } input[type="search"] { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; -webkit-appearance: textfield; } input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; } textarea { overflow: auto; vertical-align: top; } @media print { * { text-shadow: none !important; color: #000 !important; background: transparent !important; box-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } @page { margin: 0.5cm; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } } .clearfix { *zoom: 1; } .clearfix:before, .clearfix:after { display: table; content: ""; line-height: 0; } .clearfix:after { clear: both; } .hide-text { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .input-block-level { display: block; width: 100%; min-height: 30px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .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; } .offset12 { margin-left: 980px; } .offset11 { margin-left: 900px; } .offset10 { margin-left: 820px; } .offset9 { margin-left: 740px; } .offset8 { margin-left: 660px; } .offset7 { margin-left: 580px; } .offset6 { margin-left: 500px; } .offset5 { margin-left: 420px; } .offset4 { margin-left: 340px; } .offset3 { margin-left: 260px; } .offset2 { margin-left: 180px; } .offset1 { margin-left: 100px; } .row-fluid { width: 100%; *zoom: 1; } .row-fluid:before, .row-fluid:after { display: table; content: ""; line-height: 0; } .row-fluid:after { clear: both; } .row-fluid [class*="span"] { display: block; width: 100%; min-height: 30px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; float: left; margin-left: 2.127659574468085%; *margin-left: 2.074468085106383%; } .row-fluid [class*="span"]:first-child { margin-left: 0; } .row-fluid .span12 { width: 100%; *width: 99.94680851063829%; } .row-fluid .span11 { width: 91.48936170212765%; *width: 91.43617021276594%; } .row-fluid .span10 { width: 82.97872340425532%; *width: 82.92553191489361%; } .row-fluid .span9 { width: 74.46808510638297%; *width: 74.41489361702126%; } .row-fluid .span8 { width: 65.95744680851064%; *width: 65.90425531914893%; } .row-fluid .span7 { width: 57.44680851063829%; *width: 57.39361702127659%; } .row-fluid .span6 { width: 48.93617021276595%; *width: 48.88297872340425%; } .row-fluid .span5 { width: 40.42553191489362%; *width: 40.37234042553192%; } .row-fluid .span4 { width: 31.914893617021278%; *width: 31.861702127659576%; } .row-fluid .span3 { width: 23.404255319148934%; *width: 23.351063829787233%; } .row-fluid .span2 { width: 14.893617021276595%; *width: 14.840425531914894%; } .row-fluid .span1 { width: 6.382978723404255%; *width: 6.329787234042553%; } .row-fluid .offset12 { margin-left: 104.25531914893617%; *margin-left: 104.14893617021275%; } .row-fluid .offset12:first-child { margin-left: 102.12765957446808%; *margin-left: 102.02127659574467%; } .row-fluid .offset11 { margin-left: 95.74468085106382%; *margin-left: 95.6382978723404%; } .row-fluid .offset11:first-child { margin-left: 93.61702127659574%; *margin-left: 93.51063829787232%; } .row-fluid .offset10 { margin-left: 87.23404255319149%; *margin-left: 87.12765957446807%; } .row-fluid .offset10:first-child { margin-left: 85.1063829787234%; *margin-left: 84.99999999999999%; } .row-fluid .offset9 { margin-left: 78.72340425531914%; *margin-left: 78.61702127659572%; } .row-fluid .offset9:first-child { margin-left: 76.59574468085106%; *margin-left: 76.48936170212764%; } .row-fluid .offset8 { margin-left: 70.2127659574468%; *margin-left: 70.10638297872339%; } .row-fluid .offset8:first-child { margin-left: 68.08510638297872%; *margin-left: 67.9787234042553%; } .row-fluid .offset7 { margin-left: 61.70212765957446%; *margin-left: 61.59574468085106%; } .row-fluid .offset7:first-child { margin-left: 59.574468085106375%; *margin-left: 59.46808510638297%; } .row-fluid .offset6 { margin-left: 53.191489361702125%; *margin-left: 53.085106382978715%; } .row-fluid .offset6:first-child { margin-left: 51.063829787234035%; *margin-left: 50.95744680851063%; } .row-fluid .offset5 { margin-left: 44.68085106382979%; *margin-left: 44.57446808510638%; } .row-fluid .offset5:first-child { margin-left: 42.5531914893617%; *margin-left: 42.4468085106383%; } .row-fluid .offset4 { margin-left: 36.170212765957444%; *margin-left: 36.06382978723405%; } .row-fluid .offset4:first-child { margin-left: 34.04255319148936%; *margin-left: 33.93617021276596%; } .row-fluid .offset3 { margin-left: 27.659574468085104%; *margin-left: 27.5531914893617%; } .row-fluid .offset3:first-child { margin-left: 25.53191489361702%; *margin-left: 25.425531914893618%; } .row-fluid .offset2 { margin-left: 19.148936170212764%; *margin-left: 19.04255319148936%; } .row-fluid .offset2:first-child { margin-left: 17.02127659574468%; *margin-left: 16.914893617021278%; } .row-fluid .offset1 { margin-left: 10.638297872340425%; *margin-left: 10.53191489361702%; } .row-fluid .offset1:first-child { margin-left: 8.51063829787234%; *margin-left: 8.404255319148938%; } [class*="span"].hide, .row-fluid [class*="span"].hide { display: none; } [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; } .container-fluid { padding-right: 20px; padding-left: 20px; *zoom: 1; } .container-fluid:before, .container-fluid:after { display: table; content: ""; line-height: 0; } .container-fluid: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%; } strong { font-weight: bold; } em { font-style: italic; } cite { font-style: normal; } .muted { color: #999999; } a.muted:hover, a.muted:focus { color: #808080; } .text-warning { color: #c09853; } a.text-warning:hover, a.text-warning:focus { color: #a47e3c; } .text-error { color: #b94a48; } a.text-error:hover, a.text-error:focus { color: #953b39; } .text-info { color: #3a87ad; } a.text-info:hover, a.text-info:focus { color: #2d6987; } .text-success { color: #468847; } a.text-success:hover, a.text-success:focus { color: #356635; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } h1, h2, h3, h4, h5, h6 { margin: 10px 0; font-family: inherit; font-weight: bold; line-height: 20px; color: inherit; text-rendering: optimizelegibility; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-weight: normal; line-height: 1; color: #999999; } h1, h2, h3 { line-height: 40px; } h1 { font-size: 38.5px; } h2 { font-size: 31.5px; } h3 { font-size: 24.5px; } h4 { font-size: 17.5px; } h5 { font-size: 14px; } h6 { font-size: 11.9px; } h1 small { font-size: 24.5px; } h2 small { font-size: 17.5px; } h3 small { font-size: 14px; } h4 small { font-size: 14px; } .page-header { padding-bottom: 9px; margin: 20px 0 30px; border-bottom: 1px solid #eeeeee; } ul, ol { padding: 0; margin: 0 0 10px 25px; } ul ul, ul ol, ol ol, ol ul { margin-bottom: 0; } li { line-height: 20px; } ul.unstyled, ol.unstyled { margin-left: 0; list-style: none; } ul.inline, ol.inline { margin-left: 0; list-style: none; } ul.inline > li, ol.inline > li { display: inline-block; *display: inline; /* IE7 inline-block hack */ *zoom: 1; padding-left: 5px; padding-right: 5px; } dl { margin-bottom: 20px; } dt, dd { line-height: 20px; } dt { font-weight: bold; } dd { margin-left: 10px; } .dl-horizontal { *zoom: 1; } .dl-horizontal:before, .dl-horizontal:after { display: table; content: ""; line-height: 0; } .dl-horizontal:after { clear: both; } .dl-horizontal dt { float: left; width: 160px; clear: left; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .dl-horizontal dd { margin-left: 180px; } hr { margin: 20px 0; border: 0; border-top: 1px solid #eeeeee; border-bottom: 1px solid #ffffff; } abbr[title], abbr[data-original-title] { cursor: help; border-bottom: 1px dotted #999999; } abbr.initialism { font-size: 90%; text-transform: uppercase; } blockquote { padding: 0 0 0 15px; margin: 0 0 20px; border-left: 5px solid #eeeeee; } blockquote p { margin-bottom: 0; font-size: 17.5px; font-weight: 300; line-height: 1.25; } blockquote small { display: block; line-height: 20px; color: #999999; } blockquote small:before { content: '\2014 \00A0'; } blockquote.pull-right { float: right; padding-right: 15px; padding-left: 0; border-right: 5px solid #eeeeee; border-left: 0; } blockquote.pull-right p, blockquote.pull-right small { text-align: right; } blockquote.pull-right small:before { content: ''; } blockquote.pull-right small:after { content: '\00A0 \2014'; } q:before, q:after, blockquote:before, blockquote:after { content: ""; } address { display: block; margin-bottom: 20px; font-style: normal; line-height: 20px; } code, pre { padding: 0 3px 2px; font-family: Monaco, Menlo, Consolas, "Courier New", monospace; font-size: 12px; color: #333333; -webkit-border-radius: 3px !important; -moz-border-radius: 3px !important; border-radius: 3px !important; } code { padding: 2px 4px; color: #d14; background-color: #f7f7f9; border: 1px solid #e1e1e8; white-space: nowrap; } pre { display: block; padding: 9.5px; margin: 0 0 10px; font-size: 13px; line-height: 20px; word-break: break-all; word-wrap: break-word; white-space: pre; white-space: pre-wrap; background-color: #f5f5f5; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.15); -webkit-border-radius: 4px !important; -moz-border-radius: 4px !important; border-radius: 4px !important; } pre.prettyprint { margin-bottom: 20px; } pre code { padding: 0; color: inherit; white-space: pre; white-space: pre-wrap; background-color: transparent; border: 0; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .dropup, .dropdown { position: relative; } .dropdown-toggle { *margin-bottom: -3px; } .dropdown-toggle:active, .open .dropdown-toggle { outline: 0; } .caret { display: inline-block; width: 0; height: 0; vertical-align: top; border-top: 4px solid #000000; border-right: 4px solid transparent; border-left: 4px solid transparent; content: ""; } .dropdown .caret { margin-top: 8px; margin-left: 2px; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; list-style: none; background-color: #ffffff; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.2); *border-right-width: 2px; *border-bottom-width: 2px; -webkit-border-radius: 6px !important; -moz-border-radius: 6px !important; border-radius: 6px !important; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } .dropdown-menu.pull-right { right: 0; left: auto; } .dropdown-menu .divider { *width: 100%; height: 1px; margin: 9px 1px; *margin: -5px 0 5px; overflow: hidden; background-color: #e5e5e5; border-bottom: 1px solid #ffffff; } .dropdown-menu > li > a { display: block; padding: 3px 20px; clear: both; font-weight: normal; line-height: 20px; color: #333333; white-space: nowrap; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a { text-decoration: none; color: #ffffff; background-color: #0081c2; background-image: -moz-linear-gradient(top, #0088cc, #0077b3); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3)); background-image: -webkit-linear-gradient(top, #0088cc, #0077b3); background-image: -o-linear-gradient(top, #0088cc, #0077b3); background-image: linear-gradient(to bottom, #0088cc, #0077b3); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); } .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { color: #ffffff; text-decoration: none; outline: 0; background-color: #0081c2; background-image: -moz-linear-gradient(top, #0088cc, #0077b3); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3)); background-image: -webkit-linear-gradient(top, #0088cc, #0077b3); background-image: -o-linear-gradient(top, #0088cc, #0077b3); background-image: linear-gradient(to bottom, #0088cc, #0077b3); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); } .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { color: #999999; } .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { text-decoration: none; background-color: transparent; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); cursor: default; } .open { *z-index: 1000; } .open > .dropdown-menu { display: block; } .dropdown-backdrop { position: fixed; left: 0; right: 0; bottom: 0; top: 0; z-index: 990; } .pull-right > .dropdown-menu { right: 0; left: auto; } .dropup .caret, .navbar-fixed-bottom .dropdown .caret { border-top: 0; border-bottom: 4px solid #000000; content: ""; } .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; margin-bottom: 1px; } .dropdown-submenu { position: relative; } .dropdown-submenu > .dropdown-menu { top: 0; left: 100%; margin-top: -6px; margin-left: -1px; -webkit-border-radius: 0 6px 6px 6px !important; -moz-border-radius: 0 6px 6px 6px !important; border-radius: 0 6px 6px 6px !important; } .dropdown-submenu:hover > .dropdown-menu { display: block; } .dropup .dropdown-submenu > .dropdown-menu { top: auto; bottom: 0; margin-top: 0; margin-bottom: -2px; -webkit-border-radius: 5px 5px 5px 0 !important; -moz-border-radius: 5px 5px 5px 0 !important; border-radius: 5px 5px 5px 0 !important; } .dropdown-submenu > a:after { display: block; content: " "; float: right; width: 0; height: 0; border-color: transparent; border-style: solid; border-width: 5px 0 5px 5px; border-left-color: #cccccc; margin-top: 5px; margin-right: -10px; } .dropdown-submenu:hover > a:after { border-left-color: #ffffff; } .dropdown-submenu.pull-left { float: none; } .dropdown-submenu.pull-left > .dropdown-menu { left: -100%; margin-left: 10px; -webkit-border-radius: 6px 0 6px 6px !important; -moz-border-radius: 6px 0 6px 6px !important; border-radius: 6px 0 6px 6px !important; } .dropdown .dropdown-menu .nav-header { padding-left: 20px; padding-right: 20px; } .typeahead { z-index: 1051; margin-top: 2px; -webkit-border-radius: 4px !important; -moz-border-radius: 4px !important; border-radius: 4px !important; } .fade { opacity: 0; -webkit-transition: opacity 0.15s linear; -moz-transition: opacity 0.15s linear; -o-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } .fade.in { opacity: 1; } .collapse { position: relative; height: 0; overflow: hidden; -webkit-transition: height 0.35s ease; -moz-transition: height 0.35s ease; -o-transition: height 0.35s ease; transition: height 0.35s ease; } .collapse.in { height: auto; } .close { float: right; font-size: 20px; font-weight: bold; line-height: 20px; color: #000000; text-shadow: 0 1px 0 #ffffff; opacity: 0.2; filter: alpha(opacity=20); } .close:hover, .close:focus { color: #000000; text-decoration: none; cursor: pointer; opacity: 0.4; filter: alpha(opacity=40); } button.close { padding: 0; cursor: pointer; background: transparent; border: 0; -webkit-appearance: none; } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000000; } .modal-backdrop.fade { opacity: 0; } .modal-backdrop, .modal-backdrop.fade.in { opacity: 0.8; filter: alpha(opacity=80); } .modal { position: fixed; top: 10%; left: 50%; z-index: 1050; width: 560px; margin-left: -280px; background-color: #ffffff; border: 1px solid #999; border: 1px solid rgba(0, 0, 0, 0.3); *border: 1px solid #999; /* IE6-7 */ -webkit-border-radius: 6px !important; -moz-border-radius: 6px !important; border-radius: 6px !important; -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); -webkit-background-clip: padding-box; -moz-background-clip: padding-box; background-clip: padding-box; outline: none; } .modal.fade { -webkit-transition: opacity .3s linear, top .3s ease-out; -moz-transition: opacity .3s linear, top .3s ease-out; -o-transition: opacity .3s linear, top .3s ease-out; transition: opacity .3s linear, top .3s ease-out; top: -25%; } .modal.fade.in { top: 10%; } .modal-header { padding: 9px 15px; border-bottom: 1px solid #eee; } .modal-header .close { margin-top: 2px; } .modal-header h3 { margin: 0; line-height: 30px; } .modal-body { position: relative; overflow-y: auto; max-height: 400px; padding: 15px; } .modal-form { margin-bottom: 0; } .modal-footer { padding: 14px 15px 15px; margin-bottom: 0; text-align: right; background-color: #f5f5f5; border-top: 1px solid #ddd; -webkit-border-radius: 0 0 6px 6px !important; -moz-border-radius: 0 0 6px 6px !important; border-radius: 0 0 6px 6px !important; -webkit-box-shadow: inset 0 1px 0 #ffffff; -moz-box-shadow: inset 0 1px 0 #ffffff; box-shadow: inset 0 1px 0 #ffffff; *zoom: 1; } .modal-footer:before, .modal-footer:after { display: table; content: ""; line-height: 0; } .modal-footer:after { clear: both; } .modal-footer .btn + .btn { margin-left: 5px; margin-bottom: 0; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .modal-footer .btn-block + .btn-block { margin-left: 0; } .tooltip { position: absolute; z-index: 1030; display: block; visibility: visible; font-size: 11px; line-height: 1.4; opacity: 0; filter: alpha(opacity=0); } .tooltip.in { opacity: 0.8; filter: alpha(opacity=80); } .tooltip.top { margin-top: -3px; padding: 5px 0; } .tooltip.right { margin-left: 3px; padding: 0 5px; } .tooltip.bottom { margin-top: 3px; padding: 5px 0; } .tooltip.left { margin-left: -3px; padding: 0 5px; } .tooltip-inner { max-width: 200px; padding: 8px; color: #ffffff; text-align: center; text-decoration: none; background-color: #000000; -webkit-border-radius: 4px !important; -moz-border-radius: 4px !important; border-radius: 4px !important; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000000; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #000000; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #000000; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #000000; } .popover { position: absolute; top: 0; left: 0; z-index: 1010; display: none; max-width: 276px; padding: 1px; text-align: left; background-color: #ffffff; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.2); -webkit-border-radius: 6px !important; -moz-border-radius: 6px !important; border-radius: 6px !important; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); white-space: normal; } .popover.top { margin-top: -10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover-title { margin: 0; padding: 8px 14px; font-size: 14px; font-weight: normal; line-height: 18px; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; -webkit-border-radius: 5px 5px 0 0 !important; -moz-border-radius: 5px 5px 0 0 !important; border-radius: 5px 5px 0 0 !important; } .popover-title:empty { display: none; } .popover-content { padding: 9px 14px; } .popover .arrow, .popover .arrow:after { position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover .arrow { border-width: 11px; } .popover .arrow:after { border-width: 10px; content: ""; } .popover.top .arrow { left: 50%; margin-left: -11px; border-bottom-width: 0; border-top-color: #999; border-top-color: rgba(0, 0, 0, 0.25); bottom: -11px; } .popover.top .arrow:after { bottom: 1px; margin-left: -10px; border-bottom-width: 0; border-top-color: #ffffff; } .popover.right .arrow { top: 50%; left: -11px; margin-top: -11px; border-left-width: 0; border-right-color: #999; border-right-color: rgba(0, 0, 0, 0.25); } .popover.right .arrow:after { left: 1px; bottom: -10px; border-left-width: 0; border-right-color: #ffffff; } .popover.bottom .arrow { left: 50%; margin-left: -11px; border-top-width: 0; border-bottom-color: #999; border-bottom-color: rgba(0, 0, 0, 0.25); top: -11px; } .popover.bottom .arrow:after { top: 1px; margin-left: -10px; border-top-width: 0; border-bottom-color: #ffffff; } .popover.left .arrow { top: 50%; right: -11px; margin-top: -11px; border-right-width: 0; border-left-color: #999; border-left-color: rgba(0, 0, 0, 0.25); } .popover.left .arrow:after { right: 1px; border-right-width: 0; border-left-color: #ffffff; bottom: -10px; }
0.399812
0.092074
nav{ opacity: 73%; } /* .caption img{ height: 10vh; width: 150vh; } */ .brand-logo img{ position: absolute; display: inline-block; padding: 0; } .slider .indicators .indicator-item{ max-height: 11px; max-width: 11px; } .indicator-item.active{ background-color: rgb(119, 119, 119) !important; max-height: 11px; max-width: 16px; } .slides{ background-color: rgb(255, 255, 255) !important; } .slide-title1{ position: absolute; top: 170px; left: 0; right: 0; } .slide-caption1{ position: absolute; top: 280px; right: 0; left: 0; } .slide-title2{ position: absolute; top: 170px; left: 0; } .slide-caption2{ position: absolute; top: 280px; left: 0; } .slide-title3{ position: absolute; top: 170px; right: 0; } .slide-caption3{ position: absolute; top: 280px; right: 0; } .slider h1, h4{ text-shadow: 5px 5px 6px rgba(0, 0, 0, 0.7); } section{ padding-top: 8%; padding-bottom: 8%; } .team{ padding-top: 1%; padding-bottom: 1%; } .team h4{ text-shadow: none; } .parallax{ filter: grayscale(15%); opacity: 100% !important; } .parallax-container{ max-height: 65vh; } .about h4{ text-shadow: none; } .carrer{ text-shadow: 1px 1px 2px rgb(0, 0, 0); } .shadow{ text-shadow: 1px 1px 2px rgb(0, 0, 0); color: white; } /* .apps{ filter: contrast(100%); background: url("../image/background.jpg") center center fixed; background-position-x: center; background-position-y: center; background-size: cover; } */ .apps h4{ text-shadow: none; } .text-justify{ text-align: justify; } .circle{ max-height: 26%; max-width: 26%; } .misi li{ list-style-type: circle !important; } /* .card-panel{ height: 85vh; width: 40vh; } */ .input-field input[type=text].valid { border-bottom: 1px solid white !important; box-shadow: 0 1px 0 0 white !important; } .input-field input[type=text].invalid { border-bottom: 1px solid white !important; box-shadow: 0 1px 0 0 white !important; } .input-field label { color: white !important; } .input-field input[type=text]:focus + label { color: #ff9800 !important; } .input-field input[type=text]:focus { border-bottom: 1px solid #ff9800 !important; box-shadow: 0 1px 0 0 #ff9800 !important; } .input-field .prefix.active { color: #ffa726; } .input-field textarea[type=text].valid { border-bottom: 1px solid white !important; box-shadow: 0 1px 0 0 white !important; } .input-field textarea[type=text].invalid { border-bottom: 1px solid white !important; box-shadow: 0 1px 0 0 white !important; } .input-field textarea[type=text]:focus + label { color: #ff9800 !important; } .input-field textarea[type=text]:focus { border-bottom: 1px solid #ff9800 !important; box-shadow: 0 1px 0 0 #ff9800 !important; } .validate{ color: white !important; } .center .materialboxed, .center-align .materialboxed { margin: 0 auto; position: relative !important; } .android:hover{ color: #ffa726 !important; } .ios:hover{ color: #ffa726 !important; } .instagram:hover{ color: #ffa726 !important; } /* .input-field .prefix.active{ color: black !important; } #icon_prefiex{ color: black; } */ /* .download{ width: 200%; height: 200%; } */
css/style.css
nav{ opacity: 73%; } /* .caption img{ height: 10vh; width: 150vh; } */ .brand-logo img{ position: absolute; display: inline-block; padding: 0; } .slider .indicators .indicator-item{ max-height: 11px; max-width: 11px; } .indicator-item.active{ background-color: rgb(119, 119, 119) !important; max-height: 11px; max-width: 16px; } .slides{ background-color: rgb(255, 255, 255) !important; } .slide-title1{ position: absolute; top: 170px; left: 0; right: 0; } .slide-caption1{ position: absolute; top: 280px; right: 0; left: 0; } .slide-title2{ position: absolute; top: 170px; left: 0; } .slide-caption2{ position: absolute; top: 280px; left: 0; } .slide-title3{ position: absolute; top: 170px; right: 0; } .slide-caption3{ position: absolute; top: 280px; right: 0; } .slider h1, h4{ text-shadow: 5px 5px 6px rgba(0, 0, 0, 0.7); } section{ padding-top: 8%; padding-bottom: 8%; } .team{ padding-top: 1%; padding-bottom: 1%; } .team h4{ text-shadow: none; } .parallax{ filter: grayscale(15%); opacity: 100% !important; } .parallax-container{ max-height: 65vh; } .about h4{ text-shadow: none; } .carrer{ text-shadow: 1px 1px 2px rgb(0, 0, 0); } .shadow{ text-shadow: 1px 1px 2px rgb(0, 0, 0); color: white; } /* .apps{ filter: contrast(100%); background: url("../image/background.jpg") center center fixed; background-position-x: center; background-position-y: center; background-size: cover; } */ .apps h4{ text-shadow: none; } .text-justify{ text-align: justify; } .circle{ max-height: 26%; max-width: 26%; } .misi li{ list-style-type: circle !important; } /* .card-panel{ height: 85vh; width: 40vh; } */ .input-field input[type=text].valid { border-bottom: 1px solid white !important; box-shadow: 0 1px 0 0 white !important; } .input-field input[type=text].invalid { border-bottom: 1px solid white !important; box-shadow: 0 1px 0 0 white !important; } .input-field label { color: white !important; } .input-field input[type=text]:focus + label { color: #ff9800 !important; } .input-field input[type=text]:focus { border-bottom: 1px solid #ff9800 !important; box-shadow: 0 1px 0 0 #ff9800 !important; } .input-field .prefix.active { color: #ffa726; } .input-field textarea[type=text].valid { border-bottom: 1px solid white !important; box-shadow: 0 1px 0 0 white !important; } .input-field textarea[type=text].invalid { border-bottom: 1px solid white !important; box-shadow: 0 1px 0 0 white !important; } .input-field textarea[type=text]:focus + label { color: #ff9800 !important; } .input-field textarea[type=text]:focus { border-bottom: 1px solid #ff9800 !important; box-shadow: 0 1px 0 0 #ff9800 !important; } .validate{ color: white !important; } .center .materialboxed, .center-align .materialboxed { margin: 0 auto; position: relative !important; } .android:hover{ color: #ffa726 !important; } .ios:hover{ color: #ffa726 !important; } .instagram:hover{ color: #ffa726 !important; } /* .input-field .prefix.active{ color: black !important; } #icon_prefiex{ color: black; } */ /* .download{ width: 200%; height: 200%; } */
0.416678
0.062245
.shimmer-list-container { background-color: #fff; width: 100%; height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .shimmer-list-container .timeline-wrapper .animated-background { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-name: placeHolderShimmer; animation-name: placeHolderShimmer; -webkit-animation-timing-function: linear; animation-timing-function: linear; background: #f6f7f8; background: -webkit-gradient( linear, left top, right top, color-stop(8%, #f4f5f7), color-stop(18%, #e5e5e5), color-stop(33%, #f4f5f7) ); background: -o-linear-gradient(left, #f4f5f7 8%, #e5e5e5 18%, #f4f5f7 33%); background: linear-gradient(90deg, #f4f5f7 8%, #e5e5e5 18%, #f4f5f7 33%); background-size: 800px 104px; height: 100%; width: 100%; border-radius: 7px; } .shimmer-list-container .timeline-wrapper.banners { background-color: #fff; border-radius: 4px; -webkit-box-shadow: 0 1px 4px 0 rgba(0, 106, 194, 0.2); box-shadow: 0 1px 4px 0 rgba(0, 106, 194, 0.2); height: 50px; width: 125px; margin: 10px 18px; display: inline-block; } .shimmer-list-container .timeline-wrapper.banners .image { width: 100%; height: 100%; } .shimmer-list-container .timeline-wrapper.jobTuple:last-of-type { margin-right: 0; } .bmsTopHorizontalSection { background-color: #fff; border: 1px solid #ebf0f6; border-radius: 4px; min-height: 84px; margin-bottom: 16px; } .bmsTopHorizontalSection, .bmsTopHorizontalSection .bannerList { width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .bmsTopHorizontalSection .bannerList { height: 100%; min-height: 100%; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .bmsTopHorizontalSection .bannerList .bannerItem { margin: 10px 18px; } .bmsTopHorizontalSection .bannerList .bannerItem .bannerItemLink { display: inline-block; }
c/BMSTopHorizontalSection.min.css
.shimmer-list-container { background-color: #fff; width: 100%; height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .shimmer-list-container .timeline-wrapper .animated-background { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-name: placeHolderShimmer; animation-name: placeHolderShimmer; -webkit-animation-timing-function: linear; animation-timing-function: linear; background: #f6f7f8; background: -webkit-gradient( linear, left top, right top, color-stop(8%, #f4f5f7), color-stop(18%, #e5e5e5), color-stop(33%, #f4f5f7) ); background: -o-linear-gradient(left, #f4f5f7 8%, #e5e5e5 18%, #f4f5f7 33%); background: linear-gradient(90deg, #f4f5f7 8%, #e5e5e5 18%, #f4f5f7 33%); background-size: 800px 104px; height: 100%; width: 100%; border-radius: 7px; } .shimmer-list-container .timeline-wrapper.banners { background-color: #fff; border-radius: 4px; -webkit-box-shadow: 0 1px 4px 0 rgba(0, 106, 194, 0.2); box-shadow: 0 1px 4px 0 rgba(0, 106, 194, 0.2); height: 50px; width: 125px; margin: 10px 18px; display: inline-block; } .shimmer-list-container .timeline-wrapper.banners .image { width: 100%; height: 100%; } .shimmer-list-container .timeline-wrapper.jobTuple:last-of-type { margin-right: 0; } .bmsTopHorizontalSection { background-color: #fff; border: 1px solid #ebf0f6; border-radius: 4px; min-height: 84px; margin-bottom: 16px; } .bmsTopHorizontalSection, .bmsTopHorizontalSection .bannerList { width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .bmsTopHorizontalSection .bannerList { height: 100%; min-height: 100%; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .bmsTopHorizontalSection .bannerList .bannerItem { margin: 10px 18px; } .bmsTopHorizontalSection .bannerList .bannerItem .bannerItemLink { display: inline-block; }
0.314893
0.050377
.modal.in { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1041; } .modal.in .modal-dialog { position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); /* IE 9 */ -webkit-transform: translate(-50%, -50%); /* Safari */ width: initial; } .modal.in .modal-dialog .modal-content { min-width: 370px; min-height: 360px; border-radius: 6px; overflow: hidden; position: relative; min-width: 350px; } @media (max-width: 375px) { .modal.in .modal-dialog .modal-content { min-width: 320px; } } @media (max-width: 320px) { .modal.in .modal-dialog .modal-content { min-width: 280px; } } .modal.in .modal-dialog .modal-content .modal-header { font-family: 'Gotham-Bold', sans-serif; font-weight: 400; font-size: 16px; color: #fff; background-color: #007CE0; letter-spacing: 0.01em; line-height: 20px; padding: 20px; } .modal.in .modal-dialog .modal-content .modal-header .close { margin-left: 20px; float: right; top: 0; color: #fff; opacity: 1; font-size: 16px; } .modal.in .modal-dialog .modal-content .modal-body { min-height: 193px; padding: 30px 30px 0; } .modal.in .modal-dialog .modal-content .modal-body .nav-tabs { border-color: #cccccc; } .modal.in .modal-dialog .modal-content .modal-body .nav-tabs h4 { margin: 0; } .modal.in .modal-dialog .modal-content .modal-body input[type="text"] { height: 44px; line-height: 14px; border-color: #ffffff; box-shadow: none; padding-left: 15px; font-size: 14px; color: #000000; border-radius: 3px; border: 1px solid #ffffff; } .modal.in .modal-dialog .modal-content .modal-body input[type="text"]:disabled { background-color: #eeeeee; } .modal.in .modal-dialog .modal-content .modal-footer { padding: 30px; box-shadow: none; border-top: none; position: relative; bottom: 0; right: 0; } .modal.in .modal-dialog .modal-content .modal-footer .btn-large { min-width: 150px; } .modal.in .modal-dialog .modal-content .modal-footer .btn-large.btn-empty { min-width: 0; margin-right: 30px; color: #000; } /* END Style Modal Dialogs */
ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/base/components/header/modal.css
.modal.in { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1041; } .modal.in .modal-dialog { position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); /* IE 9 */ -webkit-transform: translate(-50%, -50%); /* Safari */ width: initial; } .modal.in .modal-dialog .modal-content { min-width: 370px; min-height: 360px; border-radius: 6px; overflow: hidden; position: relative; min-width: 350px; } @media (max-width: 375px) { .modal.in .modal-dialog .modal-content { min-width: 320px; } } @media (max-width: 320px) { .modal.in .modal-dialog .modal-content { min-width: 280px; } } .modal.in .modal-dialog .modal-content .modal-header { font-family: 'Gotham-Bold', sans-serif; font-weight: 400; font-size: 16px; color: #fff; background-color: #007CE0; letter-spacing: 0.01em; line-height: 20px; padding: 20px; } .modal.in .modal-dialog .modal-content .modal-header .close { margin-left: 20px; float: right; top: 0; color: #fff; opacity: 1; font-size: 16px; } .modal.in .modal-dialog .modal-content .modal-body { min-height: 193px; padding: 30px 30px 0; } .modal.in .modal-dialog .modal-content .modal-body .nav-tabs { border-color: #cccccc; } .modal.in .modal-dialog .modal-content .modal-body .nav-tabs h4 { margin: 0; } .modal.in .modal-dialog .modal-content .modal-body input[type="text"] { height: 44px; line-height: 14px; border-color: #ffffff; box-shadow: none; padding-left: 15px; font-size: 14px; color: #000000; border-radius: 3px; border: 1px solid #ffffff; } .modal.in .modal-dialog .modal-content .modal-body input[type="text"]:disabled { background-color: #eeeeee; } .modal.in .modal-dialog .modal-content .modal-footer { padding: 30px; box-shadow: none; border-top: none; position: relative; bottom: 0; right: 0; } .modal.in .modal-dialog .modal-content .modal-footer .btn-large { min-width: 150px; } .modal.in .modal-dialog .modal-content .modal-footer .btn-large.btn-empty { min-width: 0; margin-right: 30px; color: #000; } /* END Style Modal Dialogs */
0.205655
0.039287
@-moz-document domain("www.toonbook.me") { *{-moz-border-radius: 6px !important; cursor:url("http://www.snazzyspace.com/cursorsfolder/crown.png"), default !important; color: white !important; text-shadow: -1px 0 #B5CEF2, 0 1px #B5CEF2, 1px 0 #B5CEF2, 0 -1px #B5CEF2;} body { background-image:url("http://www.ipicstorage.com/wp-content/uploads/Uta-no-Prince-Sama-290834-EiraDicra.jpg") !important; background-size:cover !important; background-repeat:repeat !important; background-attachment:fixed !important; background-position:center !important; } .wall-broadcast-item { background-color: #BFD9FF; } .comments > ul > li { background-color: #B5CEF2; } ul.feed > li { border-bottom: 1px solid #B5CEF2; } ul.feed .feed_item_attachments { background-color: #BFD9FF; } #global_content { border-right: 0px; } a.buttonlink { border-bottom: 1px solid #B5CEF2; background-color:#BFD9FF; } #global_header { background:#CC6666; border-bottom:transparent; } #arrowchat_buddy_list_tab { background:#CC6666; } .layout_announcement_list_announcements { border-left: 0px; } h3 { background-color: #CC6666; border-top: 1px solid #CC6666;} .feed_item_broadcast { background-image: url("http://icons.iconarchive.com/icons/salleedesign/music/16/microphone-foam-blue-icon.png") !important; } .layout_wall_feed { border-left: 0px; } .sd_pulldown_header { background-color:#CC6666; font-size: 1.3em; font-family: CatholicSchoolGirls BB; } .sd_pulldown_contents { background:#BFD9FF; } .pulldown_options { background-color: #CC6666; font-family: CatholicSchoolGirls BB; font-size: 1.3em;} .arrowchat_tabpopup { background-color: #FFF; font-family: CatholicSchoolGirls BB; } .arrowchat_powered_by { border-right: 1px solid #B2B2B2; border-left: 1px solid #B2B2B2; border-bottom: 1px solid #C9D0DA; background-color: #BFD9FF; } .arrowchat_userstabtitle { background-color: #CC6666; border-color:#CC6666; } .arrowchat_bar_button { background:#CC6666; border-right: 0px; border-left: 0px; } .arrowchat_tabcontent { border-right: 1px solid #B2B2B2; border-left: 1px solid #B2B2B2; background-color: #B5CEF2; } .arrowchat_userlist { border-top: 1px solid #BFD9FF; border-bottom: 1px solid #BFD9FF; } #global_page_timeline-profile-index #global_content .tli { border: 1px solid #B5CEF2; background-color: #BFD9FF; } #global_page_timeline-profile-index #global_content .tl-block { background-color: #BFD9FF; border-right: 0px; border-image: none; border-color: #B5CEF2; } ul.feed > li:first-child { border-top: 0px;} .wall-menu-expand-link { border: 1px solid #B5CEF2; } #global_page_wall-index-view .layout_middle { border-left: 0px; } #TBsu_topbar { background-color: #A0727D; } #TBsu_wrapper { background-image:url("http://images6.fanpop.com/image/photos/34700000/UtaPri-Wallpaper-uta-no-prince-sama-34729694-1100-771.jpg") !important; background-size:cover !important; background-repeat:repeat !important; background-attachment: unset !important; background-position:center !important; } #TBsu_footer { display:none; } .TBsu_ftrs { display: none; } .global_form { display: none;} .generic_layout_container h3 { display: none; } center { display: none !important; } .layout_core_statistics ul, .layout_activity_list_requests ul { display: none; } a.buttonlink { display: none; } .links_nav { display: none; } .layout_user_list_signups > ul > li { display: none; } .toonbook_debug_info { display: none; } }
data/usercss/113987.user.css
@-moz-document domain("www.toonbook.me") { *{-moz-border-radius: 6px !important; cursor:url("http://www.snazzyspace.com/cursorsfolder/crown.png"), default !important; color: white !important; text-shadow: -1px 0 #B5CEF2, 0 1px #B5CEF2, 1px 0 #B5CEF2, 0 -1px #B5CEF2;} body { background-image:url("http://www.ipicstorage.com/wp-content/uploads/Uta-no-Prince-Sama-290834-EiraDicra.jpg") !important; background-size:cover !important; background-repeat:repeat !important; background-attachment:fixed !important; background-position:center !important; } .wall-broadcast-item { background-color: #BFD9FF; } .comments > ul > li { background-color: #B5CEF2; } ul.feed > li { border-bottom: 1px solid #B5CEF2; } ul.feed .feed_item_attachments { background-color: #BFD9FF; } #global_content { border-right: 0px; } a.buttonlink { border-bottom: 1px solid #B5CEF2; background-color:#BFD9FF; } #global_header { background:#CC6666; border-bottom:transparent; } #arrowchat_buddy_list_tab { background:#CC6666; } .layout_announcement_list_announcements { border-left: 0px; } h3 { background-color: #CC6666; border-top: 1px solid #CC6666;} .feed_item_broadcast { background-image: url("http://icons.iconarchive.com/icons/salleedesign/music/16/microphone-foam-blue-icon.png") !important; } .layout_wall_feed { border-left: 0px; } .sd_pulldown_header { background-color:#CC6666; font-size: 1.3em; font-family: CatholicSchoolGirls BB; } .sd_pulldown_contents { background:#BFD9FF; } .pulldown_options { background-color: #CC6666; font-family: CatholicSchoolGirls BB; font-size: 1.3em;} .arrowchat_tabpopup { background-color: #FFF; font-family: CatholicSchoolGirls BB; } .arrowchat_powered_by { border-right: 1px solid #B2B2B2; border-left: 1px solid #B2B2B2; border-bottom: 1px solid #C9D0DA; background-color: #BFD9FF; } .arrowchat_userstabtitle { background-color: #CC6666; border-color:#CC6666; } .arrowchat_bar_button { background:#CC6666; border-right: 0px; border-left: 0px; } .arrowchat_tabcontent { border-right: 1px solid #B2B2B2; border-left: 1px solid #B2B2B2; background-color: #B5CEF2; } .arrowchat_userlist { border-top: 1px solid #BFD9FF; border-bottom: 1px solid #BFD9FF; } #global_page_timeline-profile-index #global_content .tli { border: 1px solid #B5CEF2; background-color: #BFD9FF; } #global_page_timeline-profile-index #global_content .tl-block { background-color: #BFD9FF; border-right: 0px; border-image: none; border-color: #B5CEF2; } ul.feed > li:first-child { border-top: 0px;} .wall-menu-expand-link { border: 1px solid #B5CEF2; } #global_page_wall-index-view .layout_middle { border-left: 0px; } #TBsu_topbar { background-color: #A0727D; } #TBsu_wrapper { background-image:url("http://images6.fanpop.com/image/photos/34700000/UtaPri-Wallpaper-uta-no-prince-sama-34729694-1100-771.jpg") !important; background-size:cover !important; background-repeat:repeat !important; background-attachment: unset !important; background-position:center !important; } #TBsu_footer { display:none; } .TBsu_ftrs { display: none; } .global_form { display: none;} .generic_layout_container h3 { display: none; } center { display: none !important; } .layout_core_statistics ul, .layout_activity_list_requests ul { display: none; } a.buttonlink { display: none; } .links_nav { display: none; } .layout_user_list_signups > ul > li { display: none; } .toonbook_debug_info { display: none; } }
0.156556
0.080937
html{ background:-webkit-linear-gradient(blue,red); } ul li { display: inline-block; font-size: 20px; color:white; padding-left: 25px; margin-top: 30px; } a{ text-decoration: none; color:salmon; } #nav { font-size: 40px; margin-left: 30px; padding:0px; margin-right:400px; background-attachment: fixed; color:crimson; } img{ background-color: black; } #home{ text-decoration: underline; text-underline-offset: 10px; text-decoration-style: none; text-decoration-color: blue; line-break:10px; } a:hover{ background:red; padding:10px auto; opacity: inherit; float:left; } a:active{ color:royalblue; } h1{ color:red; margin-left: 105px; } p{ font-size: 50px; color: white; margin-left: 105px; } #get{ color:white; margin-left:105px; font-size: 25px; padding-left: 10px; display: inline; height: 20px; width: 20px; text-align: center; border-style:double; border-color:orchid; padding-right: 30px; padding-bottom: 15px; padding-left: 10px; padding-top: 10px; background-color: red; } #k2{ line-height: 10px; display:inline; height:300px; width:300px; margin-left: 100px; background-color: rgb(192, 40, 65); border-color: black; margin-right: 30px; } #k2{ color:white; } #k3{ font-size: 25px; text-decoration: none; text-decoration-color: red; text-align: left; margin-top: 70px; margin-left: 10px; } #k4{ color:white; margin-left: 10px; text-align: left; margin-top: 30px; } #img1{ margin-top: 20px; } #k5 { color:white; } #k6 { font-size: 25px; text-decoration: none; text-decoration-color: red; text-align: left; margin-top: 70px; } #k7{ color:white; margin-left: 10px; text-align: left; margin-top: 30px; } #img2{ margin-top: 20px; } #k5{ line-height: 10px; display:inline; height:300px; width:300px; margin-left:50px; background-color:rgb(22, 22, 22); opacity: 0px; border-color: black; margin-right: 50px; } #k8{ line-height: 10px; display:inline; height:300px; width:300px; margin-left:40px; background-color:green; opacity: 0px; border-color: black; margin-right: 30px; color:white; box-shadow: red 40px; } #k9{ font-size: 25px; text-decoration: none; text-decoration-color: red; text-align: left; margin-top: 70px; } #k10{ color:white; margin-left: 10px; text-align: left; margin-top: 30px; } #img3{ margin-top: 20px; } #footer{ display:inline-block; font-size: 20px; color:blue; width:1120px; margin-top: -10px; margin-left: 100px; margin-top:40px; height:70px; top:50px; } #left { margin-left: 0px; margin-right:70px; font-size: 25px; color:white; font-weight: bold; } #gmail { margin-right: 1px; color:white; } #gmail,#app,#twitter,#insta,a{ color:white; font-weight: bold; } #home.a[href$="home"]{ background:red; } a.activate{ background:red; } #about { color:white; padding:10px; list-style-type:none; float: left; width:0px; line-height: 40px; text-align: center; opacity: .8; display:none; } ul{ margin:0px; padding:0px; list-style: none; } a[href$='g']{ color:salmon; } #con{ background-image: url("/static/karthick/images/trans.jpg"); } /*#end{ background-color: black; top:20px; margin-bottom: 40px; }*/
karthick/static/css/sample.css
html{ background:-webkit-linear-gradient(blue,red); } ul li { display: inline-block; font-size: 20px; color:white; padding-left: 25px; margin-top: 30px; } a{ text-decoration: none; color:salmon; } #nav { font-size: 40px; margin-left: 30px; padding:0px; margin-right:400px; background-attachment: fixed; color:crimson; } img{ background-color: black; } #home{ text-decoration: underline; text-underline-offset: 10px; text-decoration-style: none; text-decoration-color: blue; line-break:10px; } a:hover{ background:red; padding:10px auto; opacity: inherit; float:left; } a:active{ color:royalblue; } h1{ color:red; margin-left: 105px; } p{ font-size: 50px; color: white; margin-left: 105px; } #get{ color:white; margin-left:105px; font-size: 25px; padding-left: 10px; display: inline; height: 20px; width: 20px; text-align: center; border-style:double; border-color:orchid; padding-right: 30px; padding-bottom: 15px; padding-left: 10px; padding-top: 10px; background-color: red; } #k2{ line-height: 10px; display:inline; height:300px; width:300px; margin-left: 100px; background-color: rgb(192, 40, 65); border-color: black; margin-right: 30px; } #k2{ color:white; } #k3{ font-size: 25px; text-decoration: none; text-decoration-color: red; text-align: left; margin-top: 70px; margin-left: 10px; } #k4{ color:white; margin-left: 10px; text-align: left; margin-top: 30px; } #img1{ margin-top: 20px; } #k5 { color:white; } #k6 { font-size: 25px; text-decoration: none; text-decoration-color: red; text-align: left; margin-top: 70px; } #k7{ color:white; margin-left: 10px; text-align: left; margin-top: 30px; } #img2{ margin-top: 20px; } #k5{ line-height: 10px; display:inline; height:300px; width:300px; margin-left:50px; background-color:rgb(22, 22, 22); opacity: 0px; border-color: black; margin-right: 50px; } #k8{ line-height: 10px; display:inline; height:300px; width:300px; margin-left:40px; background-color:green; opacity: 0px; border-color: black; margin-right: 30px; color:white; box-shadow: red 40px; } #k9{ font-size: 25px; text-decoration: none; text-decoration-color: red; text-align: left; margin-top: 70px; } #k10{ color:white; margin-left: 10px; text-align: left; margin-top: 30px; } #img3{ margin-top: 20px; } #footer{ display:inline-block; font-size: 20px; color:blue; width:1120px; margin-top: -10px; margin-left: 100px; margin-top:40px; height:70px; top:50px; } #left { margin-left: 0px; margin-right:70px; font-size: 25px; color:white; font-weight: bold; } #gmail { margin-right: 1px; color:white; } #gmail,#app,#twitter,#insta,a{ color:white; font-weight: bold; } #home.a[href$="home"]{ background:red; } a.activate{ background:red; } #about { color:white; padding:10px; list-style-type:none; float: left; width:0px; line-height: 40px; text-align: center; opacity: .8; display:none; } ul{ margin:0px; padding:0px; list-style: none; } a[href$='g']{ color:salmon; } #con{ background-image: url("/static/karthick/images/trans.jpg"); } /*#end{ background-color: black; top:20px; margin-bottom: 40px; }*/
0.318167
0.060087
.ui-icon-carat-1-n span { background-position: 0 0 !important; } .ui-icon-carat-1-ne span { background-position: -16px 0 !important; } .ui-icon-carat-1-e span { background-position: -32px 0 !important; } .ui-icon-carat-1-se span { background-position: -48px 0 !important; } .ui-icon-carat-1-s span { background-position: -64px 0 !important; } .ui-icon-carat-1-sw span { background-position: -80px 0 !important; } .ui-icon-carat-1-w span { background-position: -96px 0 !important; } .ui-icon-carat-1-nw span { background-position: -112px 0 !important; } .ui-icon-carat-2-n-s span { background-position: -128px 0 !important; } .ui-icon-carat-2-e-w span { background-position: -144px 0 !important; } .ui-icon-triangle-1-n span { background-position: 0 -16px !important; } .ui-icon-triangle-1-ne span { background-position: -16px -16px !important; } .ui-icon-triangle-1-e span { background-position: -32px -16px !important; } .ui-icon-triangle-1-se span { background-position: -48px -16px !important; } .ui-icon-triangle-1-s span { background-position: -64px -16px !important; } .ui-icon-triangle-1-sw span { background-position: -80px -16px !important; } .ui-icon-triangle-1-w span { background-position: -96px -16px !important; } .ui-icon-triangle-1-nw span { background-position: -112px -16px !important; } .ui-icon-triangle-2-n-s span { background-position: -128px -16px !important; } .ui-icon-triangle-2-e-w span { background-position: -144px -16px !important; } .ui-icon-arrow-1-n span { background-position: 0 -32px !important; } .ui-icon-arrow-1-ne span { background-position: -16px -32px !important; } .ui-icon-arrow-1-e span { background-position: -32px -32px !important; } .ui-icon-arrow-1-se span { background-position: -48px -32px !important; } .ui-icon-arrow-1-s span { background-position: -64px -32px !important; } .ui-icon-arrow-1-sw span { background-position: -80px -32px !important; } .ui-icon-arrow-1-w span { background-position: -96px -32px !important; } .ui-icon-arrow-1-nw span { background-position: -112px -32px !important; } .ui-icon-arrow-2-n-s span { background-position: -128px -32px !important; } .ui-icon-arrow-2-ne-sw span { background-position: -144px -32px !important; } .ui-icon-arrow-2-e-w span { background-position: -160px -32px !important; } .ui-icon-arrow-2-se-nw span { background-position: -176px -32px !important; } .ui-icon-arrowstop-1-n span { background-position: -192px -32px !important; } .ui-icon-arrowstop-1-e span { background-position: -208px -32px !important; } .ui-icon-arrowstop-1-s span { background-position: -224px -32px !important; } .ui-icon-arrowstop-1-w span { background-position: -240px -32px !important; } .ui-icon-arrowthick-1-n span { background-position: 0 -48px !important; } .ui-icon-arrowthick-1-ne span { background-position: -16px -48px !important; } .ui-icon-arrowthick-1-e span { background-position: -32px -48px !important; } .ui-icon-arrowthick-1-se span { background-position: -48px -48px !important; } .ui-icon-arrowthick-1-s span { background-position: -64px -48px !important; } .ui-icon-arrowthick-1-sw span { background-position: -80px -48px !important; } .ui-icon-arrowthick-1-w span { background-position: -96px -48px !important; } .ui-icon-arrowthick-1-nw span { background-position: -112px -48px !important; } .ui-icon-arrowthick-2-n-s span { background-position: -128px -48px !important; } .ui-icon-arrowthick-2-ne-sw span { background-position: -144px -48px !important; } .ui-icon-arrowthick-2-e-w span { background-position: -160px -48px !important; } .ui-icon-arrowthick-2-se-nw span { background-position: -176px -48px !important; } .ui-icon-arrowthickstop-1-n span { background-position: -192px -48px !important; } .ui-icon-arrowthickstop-1-e span { background-position: -208px -48px !important; } .ui-icon-arrowthickstop-1-s span { background-position: -224px -48px !important; } .ui-icon-arrowthickstop-1-w span { background-position: -240px -48px !important; } .ui-icon-arrowreturnthick-1-w span { background-position: 0 -64px !important; } .ui-icon-arrowreturnthick-1-n span { background-position: -16px -64px !important; } .ui-icon-arrowreturnthick-1-e span { background-position: -32px -64px !important; } .ui-icon-arrowreturnthick-1-s span { background-position: -48px -64px !important; } .ui-icon-arrowreturn-1-w span { background-position: -64px -64px !important; } .ui-icon-arrowreturn-1-n span { background-position: -80px -64px !important; } .ui-icon-arrowreturn-1-e span { background-position: -96px -64px !important; } .ui-icon-arrowreturn-1-s span { background-position: -112px -64px !important; } .ui-icon-arrowrefresh-1-w span { background-position: -128px -64px !important; } .ui-icon-arrowrefresh-1-n span { background-position: -144px -64px !important; } .ui-icon-arrowrefresh-1-e span { background-position: -160px -64px !important; } .ui-icon-arrowrefresh-1-s span { background-position: -176px -64px !important; } .ui-icon-arrow-4 span { background-position: 0 -80px !important; } .ui-icon-arrow-4-diag span { background-position: -16px -80px !important; } .ui-icon-extlink span { background-position: -32px -80px !important; } .ui-icon-newwin span { background-position: -48px -80px !important; } .ui-icon-refresh span { background-position: -64px -80px !important; } .ui-icon-shuffle span { background-position: -80px -80px !important; } .ui-icon-transfer-e-w span { background-position: -96px -80px !important; } .ui-icon-transferthick-e-w span { background-position: -112px -80px !important; } .ui-icon-folder-collapsed span { background-position: 0 -96px !important; } .ui-icon-folder-open span { background-position: -16px -96px !important; } .ui-icon-document span { background-position: -32px -96px !important; } .ui-icon-document-b span { background-position: -48px -96px !important; } .ui-icon-note span { background-position: -64px -96px !important; } .ui-icon-mail-closed span { background-position: -80px -96px !important; } .ui-icon-mail-open span { background-position: -96px -96px !important; } .ui-icon-suitcase span { background-position: -112px -96px !important; } .ui-icon-comment span { background-position: -128px -96px !important; } .ui-icon-person span { background-position: -144px -96px !important; } .ui-icon-print span { background-position: -160px -96px !important; } .ui-icon-trash span { background-position: -176px -96px !important; } .ui-icon-locked span { background-position: -192px -96px !important; } .ui-icon-unlocked span { background-position: -208px -96px !important; } .ui-icon-bookmark span { background-position: -224px -96px !important; } .ui-icon-tag span { background-position: -240px -96px !important; } .ui-icon-home span { background-position: 0 -112px !important; } .ui-icon-flag span { background-position: -16px -112px !important; } .ui-icon-calendar span { background-position: -32px -112px !important; } .ui-icon-cart span { background-position: -48px -112px !important; } .ui-icon-pencil span { background-position: -64px -112px !important; } .ui-icon-clock span { background-position: -80px -112px !important; } .ui-icon-disk span { background-position: -96px -112px !important; } .ui-icon-calculator span { background-position: -112px -112px !important; } .ui-icon-zoomin span { background-position: -128px -112px !important; } .ui-icon-zoomout span { background-position: -144px -112px !important; } .ui-icon-search span { background-position: -160px -112px !important; } .ui-icon-wrench span { background-position: -176px -112px !important; } .ui-icon-gear span { background-position: -192px -112px !important; } .ui-icon-heart span { background-position: -208px -112px !important; } .ui-icon-star span { background-position: -224px -112px !important; } .ui-icon-link span { background-position: -240px -112px !important; } .ui-icon-cancel span { background-position: 0 -128px !important; } .ui-icon-plus span { background-position: -16px -128px !important; } .ui-icon-plusthick span { background-position: -32px -128px !important; } .ui-icon-minus span { background-position: -48px -128px !important; } .ui-icon-minusthick span { background-position: -64px -128px !important; } .ui-icon-close span { background-position: -80px -128px !important; } .ui-icon-closethick span { background-position: -96px -128px !important; } .ui-icon-key span { background-position: -112px -128px !important; } .ui-icon-lightbulb span { background-position: -128px -128px !important; } .ui-icon-scissors span { background-position: -144px -128px !important; } .ui-icon-clipboard span { background-position: -160px -128px !important; } .ui-icon-copy span { background-position: -176px -128px !important; } .ui-icon-contact span { background-position: -192px -128px !important; } .ui-icon-image span { background-position: -208px -128px !important; } .ui-icon-video span { background-position: -224px -128px !important; } .ui-icon-script span { background-position: -240px -128px !important; } .ui-icon-alert span { background-position: 0 -144px !important; } .ui-icon-info span { background-position: -16px -144px !important; } .ui-icon-notice span { background-position: -32px -144px !important; } .ui-icon-help span { background-position: -48px -144px !important; } .ui-icon-check span { background-position: -64px -144px !important; } .ui-icon-bullet span { background-position: -80px -144px !important; } .ui-icon-radio-off span { background-position: -96px -144px !important; } .ui-icon-radio-on span { background-position: -112px -144px !important; } .ui-icon-pin-w span { background-position: -128px -144px !important; } .ui-icon-pin-s span { background-position: -144px -144px !important; } .ui-icon-play span { background-position: 0 -160px !important; } .ui-icon-pause span { background-position: -16px -160px !important; } .ui-icon-seek-next span { background-position: -32px -160px !important; } .ui-icon-seek-prev span { background-position: -48px -160px !important; } .ui-icon-seek-end span { background-position: -64px -160px !important; } .ui-icon-seek-start span { background-position: -80px -160px !important; } /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ .ui-icon-seek-first span { background-position: -80px -160px !important; } .ui-icon-stop span { background-position: -96px -160px !important; } .ui-icon-eject span { background-position: -112px -160px !important; } .ui-icon-volume-off span { background-position: -128px -160px !important; } .ui-icon-volume-on span { background-position: -144px -160px !important; } .ui-icon-power span { background-position: 0 -176px !important; } .ui-icon-signal-diag span { background-position: -16px -176px !important; } .ui-icon-signal span { background-position: -32px -176px !important; } .ui-icon-battery-0 span { background-position: -48px -176px !important; } .ui-icon-battery-1 span { background-position: -64px -176px !important; } .ui-icon-battery-2 span { background-position: -80px -176px !important; } .ui-icon-battery-3 span { background-position: -96px -176px !important; } .ui-icon-circle-plus span { background-position: 0 -192px !important; } .ui-icon-circle-minus span { background-position: -16px -192px !important; } .ui-icon-circle-close span { background-position: -32px -192px !important; } .ui-icon-circle-triangle-e span { background-position: -48px -192px !important; } .ui-icon-circle-triangle-s span { background-position: -64px -192px !important; } .ui-icon-circle-triangle-w span { background-position: -80px -192px !important; } .ui-icon-circle-triangle-n span { background-position: -96px -192px !important; } .ui-icon-circle-arrow-e span { background-position: -112px -192px !important; } .ui-icon-circle-arrow-s span { background-position: -128px -192px !important; } .ui-icon-circle-arrow-w span { background-position: -144px -192px !important; } .ui-icon-circle-arrow-n span { background-position: -160px -192px !important; } .ui-icon-circle-zoomin span { background-position: -176px -192px !important; } .ui-icon-circle-zoomout span { background-position: -192px -192px !important; } .ui-icon-circle-check span { background-position: -208px -192px !important; } .ui-icon-circlesmall-plus span { background-position: 0 -208px !important; } .ui-icon-circlesmall-minus span { background-position: -16px -208px !important; } .ui-icon-circlesmall-close span { background-position: -32px -208px !important; } .ui-icon-squaresmall-plus span { background-position: -48px -208px !important; } .ui-icon-squaresmall-minus span { background-position: -64px -208px !important; } .ui-icon-squaresmall-close span { background-position: -80px -208px !important; } .ui-icon-grip-dotted-vertical span { background-position: 0 -224px !important; } .ui-icon-grip-dotted-horizontal span { background-position: -16px -224px !important; } .ui-icon-grip-solid-vertical span { background-position: -32px -224px !important; } .ui-icon-grip-solid-horizontal span { background-position: -48px -224px !important; } .ui-icon-gripsmall-diagonal-se span { background-position: -64px -224px !important; } .ui-icon-grip-diagonal-se span { background-position: -80px -224px !important; }
WebContent/css/jqueryui-icons.css
.ui-icon-carat-1-n span { background-position: 0 0 !important; } .ui-icon-carat-1-ne span { background-position: -16px 0 !important; } .ui-icon-carat-1-e span { background-position: -32px 0 !important; } .ui-icon-carat-1-se span { background-position: -48px 0 !important; } .ui-icon-carat-1-s span { background-position: -64px 0 !important; } .ui-icon-carat-1-sw span { background-position: -80px 0 !important; } .ui-icon-carat-1-w span { background-position: -96px 0 !important; } .ui-icon-carat-1-nw span { background-position: -112px 0 !important; } .ui-icon-carat-2-n-s span { background-position: -128px 0 !important; } .ui-icon-carat-2-e-w span { background-position: -144px 0 !important; } .ui-icon-triangle-1-n span { background-position: 0 -16px !important; } .ui-icon-triangle-1-ne span { background-position: -16px -16px !important; } .ui-icon-triangle-1-e span { background-position: -32px -16px !important; } .ui-icon-triangle-1-se span { background-position: -48px -16px !important; } .ui-icon-triangle-1-s span { background-position: -64px -16px !important; } .ui-icon-triangle-1-sw span { background-position: -80px -16px !important; } .ui-icon-triangle-1-w span { background-position: -96px -16px !important; } .ui-icon-triangle-1-nw span { background-position: -112px -16px !important; } .ui-icon-triangle-2-n-s span { background-position: -128px -16px !important; } .ui-icon-triangle-2-e-w span { background-position: -144px -16px !important; } .ui-icon-arrow-1-n span { background-position: 0 -32px !important; } .ui-icon-arrow-1-ne span { background-position: -16px -32px !important; } .ui-icon-arrow-1-e span { background-position: -32px -32px !important; } .ui-icon-arrow-1-se span { background-position: -48px -32px !important; } .ui-icon-arrow-1-s span { background-position: -64px -32px !important; } .ui-icon-arrow-1-sw span { background-position: -80px -32px !important; } .ui-icon-arrow-1-w span { background-position: -96px -32px !important; } .ui-icon-arrow-1-nw span { background-position: -112px -32px !important; } .ui-icon-arrow-2-n-s span { background-position: -128px -32px !important; } .ui-icon-arrow-2-ne-sw span { background-position: -144px -32px !important; } .ui-icon-arrow-2-e-w span { background-position: -160px -32px !important; } .ui-icon-arrow-2-se-nw span { background-position: -176px -32px !important; } .ui-icon-arrowstop-1-n span { background-position: -192px -32px !important; } .ui-icon-arrowstop-1-e span { background-position: -208px -32px !important; } .ui-icon-arrowstop-1-s span { background-position: -224px -32px !important; } .ui-icon-arrowstop-1-w span { background-position: -240px -32px !important; } .ui-icon-arrowthick-1-n span { background-position: 0 -48px !important; } .ui-icon-arrowthick-1-ne span { background-position: -16px -48px !important; } .ui-icon-arrowthick-1-e span { background-position: -32px -48px !important; } .ui-icon-arrowthick-1-se span { background-position: -48px -48px !important; } .ui-icon-arrowthick-1-s span { background-position: -64px -48px !important; } .ui-icon-arrowthick-1-sw span { background-position: -80px -48px !important; } .ui-icon-arrowthick-1-w span { background-position: -96px -48px !important; } .ui-icon-arrowthick-1-nw span { background-position: -112px -48px !important; } .ui-icon-arrowthick-2-n-s span { background-position: -128px -48px !important; } .ui-icon-arrowthick-2-ne-sw span { background-position: -144px -48px !important; } .ui-icon-arrowthick-2-e-w span { background-position: -160px -48px !important; } .ui-icon-arrowthick-2-se-nw span { background-position: -176px -48px !important; } .ui-icon-arrowthickstop-1-n span { background-position: -192px -48px !important; } .ui-icon-arrowthickstop-1-e span { background-position: -208px -48px !important; } .ui-icon-arrowthickstop-1-s span { background-position: -224px -48px !important; } .ui-icon-arrowthickstop-1-w span { background-position: -240px -48px !important; } .ui-icon-arrowreturnthick-1-w span { background-position: 0 -64px !important; } .ui-icon-arrowreturnthick-1-n span { background-position: -16px -64px !important; } .ui-icon-arrowreturnthick-1-e span { background-position: -32px -64px !important; } .ui-icon-arrowreturnthick-1-s span { background-position: -48px -64px !important; } .ui-icon-arrowreturn-1-w span { background-position: -64px -64px !important; } .ui-icon-arrowreturn-1-n span { background-position: -80px -64px !important; } .ui-icon-arrowreturn-1-e span { background-position: -96px -64px !important; } .ui-icon-arrowreturn-1-s span { background-position: -112px -64px !important; } .ui-icon-arrowrefresh-1-w span { background-position: -128px -64px !important; } .ui-icon-arrowrefresh-1-n span { background-position: -144px -64px !important; } .ui-icon-arrowrefresh-1-e span { background-position: -160px -64px !important; } .ui-icon-arrowrefresh-1-s span { background-position: -176px -64px !important; } .ui-icon-arrow-4 span { background-position: 0 -80px !important; } .ui-icon-arrow-4-diag span { background-position: -16px -80px !important; } .ui-icon-extlink span { background-position: -32px -80px !important; } .ui-icon-newwin span { background-position: -48px -80px !important; } .ui-icon-refresh span { background-position: -64px -80px !important; } .ui-icon-shuffle span { background-position: -80px -80px !important; } .ui-icon-transfer-e-w span { background-position: -96px -80px !important; } .ui-icon-transferthick-e-w span { background-position: -112px -80px !important; } .ui-icon-folder-collapsed span { background-position: 0 -96px !important; } .ui-icon-folder-open span { background-position: -16px -96px !important; } .ui-icon-document span { background-position: -32px -96px !important; } .ui-icon-document-b span { background-position: -48px -96px !important; } .ui-icon-note span { background-position: -64px -96px !important; } .ui-icon-mail-closed span { background-position: -80px -96px !important; } .ui-icon-mail-open span { background-position: -96px -96px !important; } .ui-icon-suitcase span { background-position: -112px -96px !important; } .ui-icon-comment span { background-position: -128px -96px !important; } .ui-icon-person span { background-position: -144px -96px !important; } .ui-icon-print span { background-position: -160px -96px !important; } .ui-icon-trash span { background-position: -176px -96px !important; } .ui-icon-locked span { background-position: -192px -96px !important; } .ui-icon-unlocked span { background-position: -208px -96px !important; } .ui-icon-bookmark span { background-position: -224px -96px !important; } .ui-icon-tag span { background-position: -240px -96px !important; } .ui-icon-home span { background-position: 0 -112px !important; } .ui-icon-flag span { background-position: -16px -112px !important; } .ui-icon-calendar span { background-position: -32px -112px !important; } .ui-icon-cart span { background-position: -48px -112px !important; } .ui-icon-pencil span { background-position: -64px -112px !important; } .ui-icon-clock span { background-position: -80px -112px !important; } .ui-icon-disk span { background-position: -96px -112px !important; } .ui-icon-calculator span { background-position: -112px -112px !important; } .ui-icon-zoomin span { background-position: -128px -112px !important; } .ui-icon-zoomout span { background-position: -144px -112px !important; } .ui-icon-search span { background-position: -160px -112px !important; } .ui-icon-wrench span { background-position: -176px -112px !important; } .ui-icon-gear span { background-position: -192px -112px !important; } .ui-icon-heart span { background-position: -208px -112px !important; } .ui-icon-star span { background-position: -224px -112px !important; } .ui-icon-link span { background-position: -240px -112px !important; } .ui-icon-cancel span { background-position: 0 -128px !important; } .ui-icon-plus span { background-position: -16px -128px !important; } .ui-icon-plusthick span { background-position: -32px -128px !important; } .ui-icon-minus span { background-position: -48px -128px !important; } .ui-icon-minusthick span { background-position: -64px -128px !important; } .ui-icon-close span { background-position: -80px -128px !important; } .ui-icon-closethick span { background-position: -96px -128px !important; } .ui-icon-key span { background-position: -112px -128px !important; } .ui-icon-lightbulb span { background-position: -128px -128px !important; } .ui-icon-scissors span { background-position: -144px -128px !important; } .ui-icon-clipboard span { background-position: -160px -128px !important; } .ui-icon-copy span { background-position: -176px -128px !important; } .ui-icon-contact span { background-position: -192px -128px !important; } .ui-icon-image span { background-position: -208px -128px !important; } .ui-icon-video span { background-position: -224px -128px !important; } .ui-icon-script span { background-position: -240px -128px !important; } .ui-icon-alert span { background-position: 0 -144px !important; } .ui-icon-info span { background-position: -16px -144px !important; } .ui-icon-notice span { background-position: -32px -144px !important; } .ui-icon-help span { background-position: -48px -144px !important; } .ui-icon-check span { background-position: -64px -144px !important; } .ui-icon-bullet span { background-position: -80px -144px !important; } .ui-icon-radio-off span { background-position: -96px -144px !important; } .ui-icon-radio-on span { background-position: -112px -144px !important; } .ui-icon-pin-w span { background-position: -128px -144px !important; } .ui-icon-pin-s span { background-position: -144px -144px !important; } .ui-icon-play span { background-position: 0 -160px !important; } .ui-icon-pause span { background-position: -16px -160px !important; } .ui-icon-seek-next span { background-position: -32px -160px !important; } .ui-icon-seek-prev span { background-position: -48px -160px !important; } .ui-icon-seek-end span { background-position: -64px -160px !important; } .ui-icon-seek-start span { background-position: -80px -160px !important; } /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ .ui-icon-seek-first span { background-position: -80px -160px !important; } .ui-icon-stop span { background-position: -96px -160px !important; } .ui-icon-eject span { background-position: -112px -160px !important; } .ui-icon-volume-off span { background-position: -128px -160px !important; } .ui-icon-volume-on span { background-position: -144px -160px !important; } .ui-icon-power span { background-position: 0 -176px !important; } .ui-icon-signal-diag span { background-position: -16px -176px !important; } .ui-icon-signal span { background-position: -32px -176px !important; } .ui-icon-battery-0 span { background-position: -48px -176px !important; } .ui-icon-battery-1 span { background-position: -64px -176px !important; } .ui-icon-battery-2 span { background-position: -80px -176px !important; } .ui-icon-battery-3 span { background-position: -96px -176px !important; } .ui-icon-circle-plus span { background-position: 0 -192px !important; } .ui-icon-circle-minus span { background-position: -16px -192px !important; } .ui-icon-circle-close span { background-position: -32px -192px !important; } .ui-icon-circle-triangle-e span { background-position: -48px -192px !important; } .ui-icon-circle-triangle-s span { background-position: -64px -192px !important; } .ui-icon-circle-triangle-w span { background-position: -80px -192px !important; } .ui-icon-circle-triangle-n span { background-position: -96px -192px !important; } .ui-icon-circle-arrow-e span { background-position: -112px -192px !important; } .ui-icon-circle-arrow-s span { background-position: -128px -192px !important; } .ui-icon-circle-arrow-w span { background-position: -144px -192px !important; } .ui-icon-circle-arrow-n span { background-position: -160px -192px !important; } .ui-icon-circle-zoomin span { background-position: -176px -192px !important; } .ui-icon-circle-zoomout span { background-position: -192px -192px !important; } .ui-icon-circle-check span { background-position: -208px -192px !important; } .ui-icon-circlesmall-plus span { background-position: 0 -208px !important; } .ui-icon-circlesmall-minus span { background-position: -16px -208px !important; } .ui-icon-circlesmall-close span { background-position: -32px -208px !important; } .ui-icon-squaresmall-plus span { background-position: -48px -208px !important; } .ui-icon-squaresmall-minus span { background-position: -64px -208px !important; } .ui-icon-squaresmall-close span { background-position: -80px -208px !important; } .ui-icon-grip-dotted-vertical span { background-position: 0 -224px !important; } .ui-icon-grip-dotted-horizontal span { background-position: -16px -224px !important; } .ui-icon-grip-solid-vertical span { background-position: -32px -224px !important; } .ui-icon-grip-solid-horizontal span { background-position: -48px -224px !important; } .ui-icon-gripsmall-diagonal-se span { background-position: -64px -224px !important; } .ui-icon-grip-diagonal-se span { background-position: -80px -224px !important; }
0.377082
0.041423
.cf::before, .cf::after { content: ""; display: block; clear: both; } html { font-size: 62.5%; height: 100% } body { height: 100%; width: 100%; } /*header*/ .container { width: 100%; height: 100%; } a { text-decoration: none; } header { background: #4182f1 url(../img/1.png) no-repeat center center; background-size: 6rem; } header a { display: block; width: 4rem; line-height: 4rem; margin: 0 0.8rem; color: #fff; } header a:nth-child(1), header a:nth-child(2) { float: left; } header a:nth-child(3), header a:nth-child(4) { float: right; } header a .iconfont { font-size: 2rem; } /*nav*/ nav { background-color: #4182f1; } nav ul{ font-size: 0; } nav ul li { display: inline-block; font-size: 1.4rem; width: 16.6%; text-align: center; } nav ul li a { display: inline-block; padding: 0 1rem; color: #fff; } nav ul li i { display: inline-block; float: right; height: 2rem; border-right: 1px solid #5898f0; position: relative; top: -3px; } /*artical*/ .news-menu .news-lists{ margin: 1.3rem 0 0 0; padding: 0 1rem; } .news-lists .news-list{ display: flex; border-bottom: 1px solid #E6E6E6; margin-top: 1rem; } .news-menu .news-img{ flex: 1; } .news-menu .news-img img{ height: 94px; width: 100%; } .news-menu .news-content{ flex: 2; margin-left: 1rem; } .news-content h2{ font-size: 1.3rem; margin-bottom: 1rem; line-height: 1.5rem; } .news-content p{ margin-bottom: 1rem; } .news-share span{ margin-right: 1rem; display: inline-block; height: 2rem; line-height: 2rem; } .news-share .share-logo{ position: relative; top: 5px; } .news-share .weibo{ display: inline-block; width: 20px; height: 20px; background: url(../img/6.jpg) no-repeat; background-size: 80px; background-position: -6px -25px; } .news-share .weibo:hover{ display: inline-block; width: 20px; height: 20px; background: url(../img/6.jpg) no-repeat; background-size: 80px; background-position: -6px -3px; } .news-share .qq{ display: inline-block; width: 20px; height: 20px; background: url(../img/6.jpg) no-repeat; background-size: 80px; background-position: -31px -25px; } .news-share .qq:hover{ display: inline-block; width: 20px; height: 20px; background: url(../img/6.jpg) no-repeat; background-size: 80px; background-position: -31px -3px; } .news-share .wechat{ display: inline-block; width: 20px; height: 20px; background: url(../img/6.jpg) no-repeat; background-size: 80px; background-position: -55px -25px; } .news-share .wechat:hover{ display: inline-block; width: 20px; height: 20px; background: url(../img/6.jpg) no-repeat; background-size: 80px; background-position: -55px -3px; } .news-content .news-logo{ position: relative; top: 5px; } .morebtn{ text-align: center; margin-top: 15px; } .btn-primary{ display: inline-block; color: #fff; width: 70px; height: 30px; font-size: 13px; line-height: 30px; background: #337ab7; cursor: pointer; border-radius: 4px; border: 1px solid transparent; } .btn-primary:hover{ color: #fff; background-color: #286090; border-color: #204d74; }
static/css/app.css
.cf::before, .cf::after { content: ""; display: block; clear: both; } html { font-size: 62.5%; height: 100% } body { height: 100%; width: 100%; } /*header*/ .container { width: 100%; height: 100%; } a { text-decoration: none; } header { background: #4182f1 url(../img/1.png) no-repeat center center; background-size: 6rem; } header a { display: block; width: 4rem; line-height: 4rem; margin: 0 0.8rem; color: #fff; } header a:nth-child(1), header a:nth-child(2) { float: left; } header a:nth-child(3), header a:nth-child(4) { float: right; } header a .iconfont { font-size: 2rem; } /*nav*/ nav { background-color: #4182f1; } nav ul{ font-size: 0; } nav ul li { display: inline-block; font-size: 1.4rem; width: 16.6%; text-align: center; } nav ul li a { display: inline-block; padding: 0 1rem; color: #fff; } nav ul li i { display: inline-block; float: right; height: 2rem; border-right: 1px solid #5898f0; position: relative; top: -3px; } /*artical*/ .news-menu .news-lists{ margin: 1.3rem 0 0 0; padding: 0 1rem; } .news-lists .news-list{ display: flex; border-bottom: 1px solid #E6E6E6; margin-top: 1rem; } .news-menu .news-img{ flex: 1; } .news-menu .news-img img{ height: 94px; width: 100%; } .news-menu .news-content{ flex: 2; margin-left: 1rem; } .news-content h2{ font-size: 1.3rem; margin-bottom: 1rem; line-height: 1.5rem; } .news-content p{ margin-bottom: 1rem; } .news-share span{ margin-right: 1rem; display: inline-block; height: 2rem; line-height: 2rem; } .news-share .share-logo{ position: relative; top: 5px; } .news-share .weibo{ display: inline-block; width: 20px; height: 20px; background: url(../img/6.jpg) no-repeat; background-size: 80px; background-position: -6px -25px; } .news-share .weibo:hover{ display: inline-block; width: 20px; height: 20px; background: url(../img/6.jpg) no-repeat; background-size: 80px; background-position: -6px -3px; } .news-share .qq{ display: inline-block; width: 20px; height: 20px; background: url(../img/6.jpg) no-repeat; background-size: 80px; background-position: -31px -25px; } .news-share .qq:hover{ display: inline-block; width: 20px; height: 20px; background: url(../img/6.jpg) no-repeat; background-size: 80px; background-position: -31px -3px; } .news-share .wechat{ display: inline-block; width: 20px; height: 20px; background: url(../img/6.jpg) no-repeat; background-size: 80px; background-position: -55px -25px; } .news-share .wechat:hover{ display: inline-block; width: 20px; height: 20px; background: url(../img/6.jpg) no-repeat; background-size: 80px; background-position: -55px -3px; } .news-content .news-logo{ position: relative; top: 5px; } .morebtn{ text-align: center; margin-top: 15px; } .btn-primary{ display: inline-block; color: #fff; width: 70px; height: 30px; font-size: 13px; line-height: 30px; background: #337ab7; cursor: pointer; border-radius: 4px; border: 1px solid transparent; } .btn-primary:hover{ color: #fff; background-color: #286090; border-color: #204d74; }
0.320609
0.096323
body { font-family: Candara,Helvetica,Serif; } a { text-decoration:none; color:white; } #menu { list-style: none; } #menu li { height:50px; float:left; padding : 20px 20px 20px 20px; border-bottom:solid white 1px; border-radius: 10px; -webkit-border-radius :10px; -ms-border-radius: 10px; } #menu a { text-align:center; text-decoration:none; color:white; font-size: 20px; } #menu li:hover { color: #ffffff; background: url(images/hover.png) no-repeat center; } #menu2 { list-style:none; } #menu2 li { height:50px; float:left; padding : 20px 20px 20px 20px; border-bottom:solid white 1px; border-radius: 10px; -webkit-border-radius:10px; -ms-border-radius : 10px; } #menu2 a { text-align:center; text-decoration:none; color:white; font-size: 20px; } #menu2 li:hover { color: #ffffff; background: url(images/hover.png) no-repeat center; } #result_box{ border-radius: 10px; -ms-border-radius: 10px; -webkit-border-radius:10px; padding: 20px 20px 20px 20px; background-color: #FFF; width:878px; height : 535px; } #sidecont img { -webkit-border-radius: 6px; border-radius: 6px; -ms-border-radius: 6px; } #slidercont img { position: absolute; -webkit-border-radius: 6px; border-radius: 6px; -ms-border-radius: 6px; z-index: 8; opacity: 0.0; } #slidercont img.active { z-index: 10; opacity: 1.0; } #slidercont img.last-active { z-index: 9; } #slidercont1 img.active { z-index: 9; opacity: 1.0; } #slidercont1 img.last-active { z-index: 8; } #content_box{ border-radius: 10px; -ms-border-radius: 10px; -webkit-border-radius:10px; padding: 20px 20px 20px 20px; background-color:#CCCCCC; width:878px; height : 620px; } #latcontent_box{ border-radius: 10px; -ms-border-radius: 10px; -webkit-border-radius:10px; padding: 20px 20px 20px 20px; background-color:#CCCCCC; width:878px; height : 690px; } #contact_box{ border-radius: 10px; -ms-border-radius: 10px; -webkit-border-radius:10px; padding: 20px 20px 20px 20px; background: black; width:878px; height: 520px; border:2px solid #d17b02; } #contact_input { background:url(images/contact.jpg); width:300px; height: 26px; min-height: 26px; text-align:center; border-radius: 4px; -webkit-border-radius: 4px; -ms-border-radius: 4px; } #contact_input2 { background:url(images/message_bg.jpg); max-width:300px; max-height: 145px; height:145px; width:300px; min-height:145px; min-width:300px; border-radius: 4px; -ms-border-radius: 4px; -webkit-border-radius:4px; } #concept_box{ border-radius: 10px; -ms-border-radius: 10px; -webkit-border-radius:10px; padding: 20px 20px 20px 20px; background-color: #FFF; width:878px; height : 6820px; //added 6300px } #longresult{ background-color: #000; text-align:right; border-radius: 6px; -ms-border-radius: 6px; -webkit-border-radius: 6px; padding: 5px 15px 5px 15px; } #result_margin { background-color:#FF0; text-align:center; } #result_cg { background-color:#9F6; text-align:center; } #result_np { background-color:#F9C; text-align:center; } #result_lat { background-color: #FC6; text-align:center; } #submit, #reset{ width: 100px; height: 30px; line-height: 20px; background: #d17b02; border: none; font-family: Arial,Helvetica,sans-serif; font-size: 16px; font-weight: bold; color: #50A; margin-right: 10px; border-radius:5px; -ms-border-radius: 5px; -webkit-border-radius: 5px; } #footer_column1, #footer_column2, #footer_column3{ color:#d17b02; font-family:Century Gothic; width: 265px; float: left; } #latdir_header { background:#111; border-radius: 6px; -ms-border-radius: 6px; -webkit-border-radius: 6px; font-size:18px; } h3 { height : 43px; background:url(images/title.png) no-repeat center; } .footer_text { text-align:center; } .page_buttons { line-height: 7px; font-size:25px; width:300px; height: 50px; background:url(images/title.png) center no-repeat; color: white; text-align:center; } #calculusZone { padding : 10px 20px 10px 20px ; background-color: #84B7D5; text-align:right; } /* .calculusText { } */ .calculationBox { width : 200px; } #slider-wrapper { width: 876px; height: 326px; } .calculationBox:hover { border-color: #2A00FF; } #slider { position:relative; width: 876px; height: 326px; border-color:#818181; border: solid; } #slider img { position:absolute; top:0px; left:0px; display:none; } #slider a { border:0; display:block; } .nivo-controlNav { position:absolute; left:260px; bottom:-42px; display: none; } .nivo-directionNav a { display:block; width:30px; height:30px; background:url(images/arrows.png) no-repeat; text-indent:-9999px; border:0; } a.nivo-nextNav { background-position:-30px 0; right:15px; } a.nivo-prevNav { left:15px; } .nivo-caption { text-shadow:none; font-family: Helvetica, Arial, sans-serif; } .nivo-caption a { color:#efe9d1; text-decoration:underline; }
Aero/air.css
body { font-family: Candara,Helvetica,Serif; } a { text-decoration:none; color:white; } #menu { list-style: none; } #menu li { height:50px; float:left; padding : 20px 20px 20px 20px; border-bottom:solid white 1px; border-radius: 10px; -webkit-border-radius :10px; -ms-border-radius: 10px; } #menu a { text-align:center; text-decoration:none; color:white; font-size: 20px; } #menu li:hover { color: #ffffff; background: url(images/hover.png) no-repeat center; } #menu2 { list-style:none; } #menu2 li { height:50px; float:left; padding : 20px 20px 20px 20px; border-bottom:solid white 1px; border-radius: 10px; -webkit-border-radius:10px; -ms-border-radius : 10px; } #menu2 a { text-align:center; text-decoration:none; color:white; font-size: 20px; } #menu2 li:hover { color: #ffffff; background: url(images/hover.png) no-repeat center; } #result_box{ border-radius: 10px; -ms-border-radius: 10px; -webkit-border-radius:10px; padding: 20px 20px 20px 20px; background-color: #FFF; width:878px; height : 535px; } #sidecont img { -webkit-border-radius: 6px; border-radius: 6px; -ms-border-radius: 6px; } #slidercont img { position: absolute; -webkit-border-radius: 6px; border-radius: 6px; -ms-border-radius: 6px; z-index: 8; opacity: 0.0; } #slidercont img.active { z-index: 10; opacity: 1.0; } #slidercont img.last-active { z-index: 9; } #slidercont1 img.active { z-index: 9; opacity: 1.0; } #slidercont1 img.last-active { z-index: 8; } #content_box{ border-radius: 10px; -ms-border-radius: 10px; -webkit-border-radius:10px; padding: 20px 20px 20px 20px; background-color:#CCCCCC; width:878px; height : 620px; } #latcontent_box{ border-radius: 10px; -ms-border-radius: 10px; -webkit-border-radius:10px; padding: 20px 20px 20px 20px; background-color:#CCCCCC; width:878px; height : 690px; } #contact_box{ border-radius: 10px; -ms-border-radius: 10px; -webkit-border-radius:10px; padding: 20px 20px 20px 20px; background: black; width:878px; height: 520px; border:2px solid #d17b02; } #contact_input { background:url(images/contact.jpg); width:300px; height: 26px; min-height: 26px; text-align:center; border-radius: 4px; -webkit-border-radius: 4px; -ms-border-radius: 4px; } #contact_input2 { background:url(images/message_bg.jpg); max-width:300px; max-height: 145px; height:145px; width:300px; min-height:145px; min-width:300px; border-radius: 4px; -ms-border-radius: 4px; -webkit-border-radius:4px; } #concept_box{ border-radius: 10px; -ms-border-radius: 10px; -webkit-border-radius:10px; padding: 20px 20px 20px 20px; background-color: #FFF; width:878px; height : 6820px; //added 6300px } #longresult{ background-color: #000; text-align:right; border-radius: 6px; -ms-border-radius: 6px; -webkit-border-radius: 6px; padding: 5px 15px 5px 15px; } #result_margin { background-color:#FF0; text-align:center; } #result_cg { background-color:#9F6; text-align:center; } #result_np { background-color:#F9C; text-align:center; } #result_lat { background-color: #FC6; text-align:center; } #submit, #reset{ width: 100px; height: 30px; line-height: 20px; background: #d17b02; border: none; font-family: Arial,Helvetica,sans-serif; font-size: 16px; font-weight: bold; color: #50A; margin-right: 10px; border-radius:5px; -ms-border-radius: 5px; -webkit-border-radius: 5px; } #footer_column1, #footer_column2, #footer_column3{ color:#d17b02; font-family:Century Gothic; width: 265px; float: left; } #latdir_header { background:#111; border-radius: 6px; -ms-border-radius: 6px; -webkit-border-radius: 6px; font-size:18px; } h3 { height : 43px; background:url(images/title.png) no-repeat center; } .footer_text { text-align:center; } .page_buttons { line-height: 7px; font-size:25px; width:300px; height: 50px; background:url(images/title.png) center no-repeat; color: white; text-align:center; } #calculusZone { padding : 10px 20px 10px 20px ; background-color: #84B7D5; text-align:right; } /* .calculusText { } */ .calculationBox { width : 200px; } #slider-wrapper { width: 876px; height: 326px; } .calculationBox:hover { border-color: #2A00FF; } #slider { position:relative; width: 876px; height: 326px; border-color:#818181; border: solid; } #slider img { position:absolute; top:0px; left:0px; display:none; } #slider a { border:0; display:block; } .nivo-controlNav { position:absolute; left:260px; bottom:-42px; display: none; } .nivo-directionNav a { display:block; width:30px; height:30px; background:url(images/arrows.png) no-repeat; text-indent:-9999px; border:0; } a.nivo-nextNav { background-position:-30px 0; right:15px; } a.nivo-prevNav { left:15px; } .nivo-caption { text-shadow:none; font-family: Helvetica, Arial, sans-serif; } .nivo-caption a { color:#efe9d1; text-decoration:underline; }
0.245175
0.082475
body { font-size: 14.5px; font-family: "微软雅黑", Helvetica, Arial, sans-serif,"宋体"; margin: 0px; background-color: #ebebeb; } .inner { width: 1400px; margin: 0 auto; position: relative; } #header { background: url("images/bg-grid.png"); height: 150px; position: relative; } #header #logo { display: block; position: absolute; top: 30px; left: 0px; overflow: hidden; text-decoration: none; font-size: 36px; } #header #slogan { position: absolute; left: 330px; top: 50px; color: #888; line-height: 30px; } #header #slogan a.btn { font-size: 12px; line-height: 20px; padding: 0 5px; } #header a#linkAdmin { background-color: #ffaacc; position: absolute; top: 10px; right: 0px; } #mainNav { background-color: #333333; width: 100%; height: 50px; overflow: visible; bottom: 0px; left: 0px; position: absolute; } #mainMenu { float: left; } #loginStatus { float: right; } ul.menu { margin: 0px; padding: 0px; border-left: 1px solid #222; } ul.menu > li { float: left; border-right: 1px solid #444444; padding: 0px; margin: 0px; list-style: none; position: relative; } ul.menu > li:first-child { border-left: 1px solid #444; } ul.menu > li:hover { background-color: #2B474C; } ul.menu > li.selected { background-color: #2CABE0; } ul.menu > li > a { display: block; border-right: 1px solid #222222; line-height: 50px; text-align: center; padding: 0 30px; color: #C4EFFF; font-weight: bold; text-decoration: none; font-size: 14px; } ul.menu > li > a.menu-more { background-image: url("images/menu-more.png"); background-position: center right; background-repeat: no-repeat; padding-right: 25px; } ul.menu > li > ul { display: none; margin: 0px; padding: 0px; position: absolute; left: 0px; background-color: #1C3338; } ul.menu > li > ul li { list-style: none; position: relative; border-bottom: 1px solid #264449; } ul.menu > li ul { padding: 0px; margin: 0px; } ul.menu > li > ul a { line-height: 22px; color: #2F8799; display: block; text-decoration: none; cursor: pointer; padding: 7px 10px; border-bottom: 1px solid #13272B; -moz-min-width: 150px; -ms-min-width: 150px; -o-min-width: 150px; -webkit-min-width: 150px; min-width: 150px; } ul.menu > li > ul > li a { border-bottom: 1px solid #13272B; } ul.menu > li > ul > li:hover { background-color: #112123; } ul.menu > li:hover > ul { display: block; z-index: 1; } ul.menu > li > ul > li > ul { display: none; position: absolute; width: 180px; right: -180px; top: 0px; background-color: #1B2220; } ul.menu > li > ul > li:hover > ul { display: block; } ul.menu > li > ul > li.more { background-image: url("images/arrow-right-b.png"); background-repeat: no-repeat; background-position: right center; } ul.menu > li > ul > li > ul > li:hover { background-color: #264449; } #main { padding: 25px 15px; padding-bottom: 70px; } #footer { background-color: #666666; color: #ffffff; text-align: center; line-height: 50px; } html,body { height:100%; } #wrapper { min-height: 100%; position: relative;} #main { padding-bottom: 70px;} #footer { position: absolute; bottom: 0; left: 0; width: 100%; height: 50px; } /******************************/ .clearfix:before, .clearfix:after { content:""; display:table; } .clearfix:after { clear:both; } .clearfix { zoom:1; } .group { margin-bottom: 12px; } .panel { background-color: #ffffff; margin-bottom: 25px; overflow: hidden; } .panel-title { position: relative; border: 1px solid #cccccc; padding: 10px 12px; line-height: 40px; font-weight: bold; color: #555555; font-size: 16px; } .panel-title .btn-right,.panel-title .btns-right { position: absolute; right: 12px; top: 12px; font-size: 13px; } .panel-content { border: 1px solid #cccccc; border-top: 0px; padding: 10px 12px; } .panel-title .btns-right a { display: inline-block; margin-left: 12px; text-decoration: none; font-weight: normal; color: #333333; } .panel-title .btns-right a.btn { color: #fff; } .panel-title .btns-right a.btn:hover { color: #fff; } .panel-title .btns-right a:hover { color: #00c191; } .txt { border: 1px solid #dddddd; -ms-border-radius: 3px; border-radius: 3px; padding: 0px 5px; height: 33px; line-height: 33px; width: 200px; background-color: #ffffe0; } textarea { border: 1px solid #dddddd; -ms-border-radius: 3px; border-radius: 3px; padding: 8px 5px; width: 200px; height: 80px; background-color: #ffffe0; } textarea.full { width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } ul { padding: 0px; margin: 0px; } ul > li { list-style: none; padding: 0px; } ol { margin: 0px; } ol > li { list-style: decimal; } .date { text-align: center; width: 100px; } a,.ui-widget-content a { color: #00c191; text-decoration: none; } a:hover,.ui-widget-content a:hover { color: #f73b10; } select { border: 1px solid #dddddd; -ms-border-radius: 3px; border-radius: 3px; padding: 8px 5px; background-color: #ffffe0; } .btn { display: inline-block; line-height: 36px; text-align: center; padding: 0 25px; background-color: #00cccc; color: #ffffff; border: none; cursor: pointer; -ms-border-radius: 3px; border-radius: 3px; text-decoration: none; } .btn:hover { background-color: #00bbbb; color: #fff; } .btn.disabled { background-color: #aaaaaa; } .ui-widget-content a.btn { color: #ffffff; } .error { background-color: lightyellow; border: 1px solid #dddddd; color: red; -ms-border-radius: 5px; border-radius: 5px; padding: 15px; } .center { text-align: center; vertical-align: middle; } .top { vertical-align: top; } .required { color: red; } .line-tip { display: inline-block; padding-left: 25px; color: #888888; } h1 { color: #666666; margin: 0; margin-bottom: 10px; border-bottom: 1px solid #e0e0e0; } img { border: none; max-width: 100%; } .relative { position: relative; } table { table-layout: fixed; width: 100%; border-collapse: collapse; } table.grid { table-layout: fixed; width: 100%; border-spacing: 0; border-left: 1px solid #ccc; border-top: 1px solid #ccc; border-collapse: separate; } .panel-grid > table.grid { border-top: 0px; } table.grid thead th { background-color: #e0e0e0; border: 1px solid #cccccc; padding: 12px 5px; border-top: 1px solid #ffffff; border-left: 1px solid #ffffff; text-align: left; } table.grid thead th.center { text-align: center; } table.grid tbody td { border: 1px solid #cccccc; border-left: 0; border-top: 0; padding: 10px 5px; -moz-word-break: break-all; -o-word-break: break-all; word-break: break-all; } table.grid tfoot td { background-color: #e1e1e1; padding: 12px 0; border-top: 1px solid #ffffff; border-left: 1px solid #ffffff; border-bottom: 1px solid #cccccc; border-right: 1px solid #cccccc; font-weight: bold; padding: 10px 5px; } table.grid td.empty { text-align: center; padding: 35px 0; } table.grid td.loading { text-align: center; padding: 35px 0; color: #888888; } table.grid td a.btn-delete { text-decoration: none; color: red; } table.grid td small { color: #999999; } table.grid tr.alt td { background-color: #f4f4f4; } table.grid tr.selected td { background-color: #e0f0cf; } table.grid .sortable { cursor: pointer; background-image: url("images/sort-none.png"); background-position: right center; background-repeat: no-repeat; } table.grid .sortable:hover { background-color: #ffd8dc; } table.grid .sortable.sort-asc { background-image: url("images/sort-asc.png"); } table.grid .sortable.sort-desc { background-image: url("images/sort-desc.png"); } table.form { table-layout: fixed; width: 100%; border-collapse: collapse; } table.form td.label { color: #00aeae; } table.form td { padding: 5px 5px; } dl { margin-bottom: 12px; } dl dt { border-bottom: 1px dotted #dddddd; font-size: 14px; color: #808080; line-height: 18px; } dl dd { color: #808080; margin: 0px; margin-bottom: 10px; line-height: 18px; font-size: 13px; padding: 0px; } .hide { display: none; } .float-r { float: right; } .btn-delete { color: red; } .money { color: #ff4500; } .money-in { color: green; } .money-out { color: red; } .pager { overflow: hidden; padding: 10px 12px; border: 1px solid #cccccc; border-top: 0px; } .pager ul { overflow: hidden; margin: 0px; padding: 0px; float: right; } .pager li { float: left; margin-left: 10px; list-style: none; padding: 0px; } .pager li a { display: block; text-align: center; line-height: 30px; border: 1px solid #eeeeee; padding: 0 15px; background-color: #ffffff; text-decoration: none; } .pager li.selected a { background-color: darkcyan; color: #ffffff; } .pager a.refresh { display: inline-block; text-align: center; line-height: 30px; border: 1px solid #eeeeee; padding: 0 15px; background-color: #ffffff; text-decoration: none; } .pager li.disabled a { color: #aaaaaa; cursor: default; } .pager .busy { line-height: 30px; } /*******************************/ /***file upload****************************/ .fileupload { position: absolute; top: 0px; left: 0px; background: url("images/modal.png"); width: 100%; min-height: 100%; } .file-dialog { position: absolute; width: 400px; top: 50%; left: 50%; margin-left: -200px; margin-top: -66px; background-color: #fff; } .file-close { display: block; line-height: 35px; width: 50px; text-align: center; background-color: pink; position: absolute; right: 0px; top: 0px; cursor: pointer; } .file-title { line-height: 35px; background-color: #dddddd; padding-left: 12px; font-weight: bold; } .file-content { padding: 12px; } .file-content h4 { padding: 10px 0; text-align: center; color: #666; font-weight: normal; font-size: 14px; } .progress { width: 190px; height: 14px; border: 1px solid #dddddd; -ms-border-radius: 5px; border-radius: 5px; overflow: hidden; margin: 0 auto; } .progress-value { height: 14px; background: url("images/progressing.gif") no-repeat; width: 3%; } .fileupload.frame .progress { border: 0px; } .fileupload.frame .progress-value { width: 100%; } div.btn-upload { width: 120px; height: 36px; overflow: hidden; position: relative; background-color: #eeeeee; text-align: center; } div.btn-upload:hover { background-color: #dddddd; } div.btn-upload input { -ms-opacity: 0; opacity: 0; position: absolute; top: 0; right: 0; z-index: 0; font: 200px monospace!important; -webkit-filter: alpha(opacity=0); -moz-filter: alpha(opacity=0); -o-filter: alpha(opacity=0); filter: alpha(opacity=0); margin: 0; padding: 0; cursor: pointer; } div.btn-upload span { } /**********************************/ /*******************************************/ /* busier ************/ .busy-indicator { position:relative; top:0px; left:0px; z-index:2000; vertical-align: middle; text-align: center; } .busy-modal { background:url(images/modal-black.png); } .busy-content { background-color: white; border: 1px solid #CCCCCC; -ms-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; margin: 0 auto; padding: 3px 10px 3px 3px; position: relative; -moz-min-width: 150px; -ms-min-width: 150px; -o-min-width: 150px; -webkit-min-width: 150px; min-width: 150px; display: inline-block; text-align: left; } a.busy-cancel { display: inline-block; width: 16px; height: 16px; padding: 0; position: absolute; right: -5px; top: -5px; background: url(images/remove16.png) no-repeat; } a.busy-cancel:hover { background: url(images/remove16.png) no-repeat 0 -16px; } .busy-text { background: url("images/loading_1.gif") no-repeat scroll 0 0 transparent; border: 1px solid #FFFFFF; -ms-border-radius: 3px 3px 3px 3px; border-radius: 3px 3px 3px 3px; min-height: 22px; padding: 8px 5px 5px 35px; } .toast { position: fixed; -moz-min-width: 200px; -ms-min-width: 200px; -o-min-width: 200px; -webkit-min-width: 200px; min-width: 200px; min-height: 60px; background-color: #ffffff; padding: 10px 15px 10px 60px; display: block; z-index: 2001; -ms-opacity: 0; opacity: 0; -ms-border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; -ms-box-shadow: 0 0 8px blue; -moz-box-shadow: 0 0 8px blue; -webkit-box-shadow: 0 0 8px blue; box-shadow: 0 0 8px blue; } .toast.success { -ms-box-shadow: 0 0 8px green; border: 1px solid #A7D642; -moz-box-shadow: 0 0 8px green; -webkit-box-shadow: 0 0 8px green; box-shadow: 0 0 8px green; background: url(images/toast.png) no-repeat 10px 10px #ffffff; color: green; } .toast.error { -ms-box-shadow: 0 0 8px #FF6600; border: 1px solid #FF6600; -moz-box-shadow: 0 0 8px #FF6600; -webkit-box-shadow: 0 0 8px #FF6600; box-shadow: 0 0 8px #FF6600; background: url(images/toast.png) no-repeat 10px -158px #ffffff; color: #FF2E00; padding-left: 60px; } .toast.info { -ms-box-shadow: 0 0 8px #aaaaaa; -moz-box-shadow: 0 0 8px #aaaaaa; -webkit-box-shadow: 0 0 8px #aaaaaa; box-shadow: 0 0 8px #aaaaaa; background: url(images/toast.png) no-repeat 10px -358px #ffffff; } .toast .close { display: inline-block; width: 16px; height: 16px; padding: 0; position: absolute; right: -5px; top: -5px; background: url(images/remove16.png) no-repeat; } .toast .close:hover { background: url(images/remove16.png) no-repeat 0 -16px; } .toast h5 { margin: 10px 0; } .toast ul { margin: 0px; padding: 0 0 0 20px } .toast li { margin: 0 0 5px 0; } /* end busier */ /* controls - multiImageUploader ************************/ ul.files-uploader { overflow: hidden; margin-left: -15px; padding-top: 10px; } ul.files-uploader > li { float: left; margin-left: 15px; margin-bottom: 15px; position: relative; } ul.files-uploader > li > label { display: block; width: 60px; height: 60px; line-height: 60px; border: 1px solid #dddddd; -ms-border-radius: 5px; border-radius: 5px; text-align: center; overflow: hidden; cursor: pointer; font-size: 11px; color: #999999; } ul.files-uploader > li.uploader-new > label { font-size: 18px; color: #666666; background-color: #ffffff; } ul.files-uploader > li a.btn-delete { position: absolute; width: 21px; height: 21px; top: -10px; right: -10px; display: block; cursor: pointer; background: url("images/remove-42.png") center center no-repeat; -ms-background-size: 21px auto; background-size: 21px auto; } ul.files-uploader > li.uploader-new a.btn-delete { display: none; } ul.files-uploader li img { height: 100%; } ul.files-uploader > li input { display: none; } ul.files-uploader > li.uploader-word > label { background: url("images/file-word-128.png") center center no-repeat; -ms-background-size: 60px auto; background-size: 60px auto; } ul.files-uploader > li.uploader-excel > label { background: url("images/file-excel-128.png") center center no-repeat; -ms-background-size: 60px auto; background-size: 60px auto; } /* jqueryui ************************************/ .ui-dialog { padding: 0px; border: 0; font-family: "微软雅黑"; font-size: 14px; } .ui-dialog-titlebar { background: #ffffff; border: 0px; border-bottom: 1px solid #dddddd; line-height: 30px; } .ui-widget-overlay { background: url("images/modal.png"); -ms-opacity: 1; opacity: 1; } .ui-dialog a.btn { color: #ffffff; } .ui-widget-content a { color: #00c191; } .ui-datepicker .ui-datepicker-title select{ font-size: 14px; padding: 3px 0; } /* controls iphone previewer *************************************/ #dialogPreviewHtml { background: url("images/iphone5s.png") 60px 30px no-repeat; padding: 0; padding-left: 92px; padding-top: 169px; position: relative; } #dialogPreviewHtml form { display: none; } #dialogPreviewHtml iframe { border: none; } #dialogPreviewHtml a#btnClosePreview { display: block; width: 58px; height: 58px; line-height: 58px; text-align: center; text-decoration: none; -ms-border-radius: 30px; border-radius: 30px; position: absolute; left: 224px; top: 745px; color: #999999; font-family: "微软雅黑"; font-size: 14px; }
MvcSolution.Web.Main/Areas/Public/css/core.css
body { font-size: 14.5px; font-family: "微软雅黑", Helvetica, Arial, sans-serif,"宋体"; margin: 0px; background-color: #ebebeb; } .inner { width: 1400px; margin: 0 auto; position: relative; } #header { background: url("images/bg-grid.png"); height: 150px; position: relative; } #header #logo { display: block; position: absolute; top: 30px; left: 0px; overflow: hidden; text-decoration: none; font-size: 36px; } #header #slogan { position: absolute; left: 330px; top: 50px; color: #888; line-height: 30px; } #header #slogan a.btn { font-size: 12px; line-height: 20px; padding: 0 5px; } #header a#linkAdmin { background-color: #ffaacc; position: absolute; top: 10px; right: 0px; } #mainNav { background-color: #333333; width: 100%; height: 50px; overflow: visible; bottom: 0px; left: 0px; position: absolute; } #mainMenu { float: left; } #loginStatus { float: right; } ul.menu { margin: 0px; padding: 0px; border-left: 1px solid #222; } ul.menu > li { float: left; border-right: 1px solid #444444; padding: 0px; margin: 0px; list-style: none; position: relative; } ul.menu > li:first-child { border-left: 1px solid #444; } ul.menu > li:hover { background-color: #2B474C; } ul.menu > li.selected { background-color: #2CABE0; } ul.menu > li > a { display: block; border-right: 1px solid #222222; line-height: 50px; text-align: center; padding: 0 30px; color: #C4EFFF; font-weight: bold; text-decoration: none; font-size: 14px; } ul.menu > li > a.menu-more { background-image: url("images/menu-more.png"); background-position: center right; background-repeat: no-repeat; padding-right: 25px; } ul.menu > li > ul { display: none; margin: 0px; padding: 0px; position: absolute; left: 0px; background-color: #1C3338; } ul.menu > li > ul li { list-style: none; position: relative; border-bottom: 1px solid #264449; } ul.menu > li ul { padding: 0px; margin: 0px; } ul.menu > li > ul a { line-height: 22px; color: #2F8799; display: block; text-decoration: none; cursor: pointer; padding: 7px 10px; border-bottom: 1px solid #13272B; -moz-min-width: 150px; -ms-min-width: 150px; -o-min-width: 150px; -webkit-min-width: 150px; min-width: 150px; } ul.menu > li > ul > li a { border-bottom: 1px solid #13272B; } ul.menu > li > ul > li:hover { background-color: #112123; } ul.menu > li:hover > ul { display: block; z-index: 1; } ul.menu > li > ul > li > ul { display: none; position: absolute; width: 180px; right: -180px; top: 0px; background-color: #1B2220; } ul.menu > li > ul > li:hover > ul { display: block; } ul.menu > li > ul > li.more { background-image: url("images/arrow-right-b.png"); background-repeat: no-repeat; background-position: right center; } ul.menu > li > ul > li > ul > li:hover { background-color: #264449; } #main { padding: 25px 15px; padding-bottom: 70px; } #footer { background-color: #666666; color: #ffffff; text-align: center; line-height: 50px; } html,body { height:100%; } #wrapper { min-height: 100%; position: relative;} #main { padding-bottom: 70px;} #footer { position: absolute; bottom: 0; left: 0; width: 100%; height: 50px; } /******************************/ .clearfix:before, .clearfix:after { content:""; display:table; } .clearfix:after { clear:both; } .clearfix { zoom:1; } .group { margin-bottom: 12px; } .panel { background-color: #ffffff; margin-bottom: 25px; overflow: hidden; } .panel-title { position: relative; border: 1px solid #cccccc; padding: 10px 12px; line-height: 40px; font-weight: bold; color: #555555; font-size: 16px; } .panel-title .btn-right,.panel-title .btns-right { position: absolute; right: 12px; top: 12px; font-size: 13px; } .panel-content { border: 1px solid #cccccc; border-top: 0px; padding: 10px 12px; } .panel-title .btns-right a { display: inline-block; margin-left: 12px; text-decoration: none; font-weight: normal; color: #333333; } .panel-title .btns-right a.btn { color: #fff; } .panel-title .btns-right a.btn:hover { color: #fff; } .panel-title .btns-right a:hover { color: #00c191; } .txt { border: 1px solid #dddddd; -ms-border-radius: 3px; border-radius: 3px; padding: 0px 5px; height: 33px; line-height: 33px; width: 200px; background-color: #ffffe0; } textarea { border: 1px solid #dddddd; -ms-border-radius: 3px; border-radius: 3px; padding: 8px 5px; width: 200px; height: 80px; background-color: #ffffe0; } textarea.full { width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } ul { padding: 0px; margin: 0px; } ul > li { list-style: none; padding: 0px; } ol { margin: 0px; } ol > li { list-style: decimal; } .date { text-align: center; width: 100px; } a,.ui-widget-content a { color: #00c191; text-decoration: none; } a:hover,.ui-widget-content a:hover { color: #f73b10; } select { border: 1px solid #dddddd; -ms-border-radius: 3px; border-radius: 3px; padding: 8px 5px; background-color: #ffffe0; } .btn { display: inline-block; line-height: 36px; text-align: center; padding: 0 25px; background-color: #00cccc; color: #ffffff; border: none; cursor: pointer; -ms-border-radius: 3px; border-radius: 3px; text-decoration: none; } .btn:hover { background-color: #00bbbb; color: #fff; } .btn.disabled { background-color: #aaaaaa; } .ui-widget-content a.btn { color: #ffffff; } .error { background-color: lightyellow; border: 1px solid #dddddd; color: red; -ms-border-radius: 5px; border-radius: 5px; padding: 15px; } .center { text-align: center; vertical-align: middle; } .top { vertical-align: top; } .required { color: red; } .line-tip { display: inline-block; padding-left: 25px; color: #888888; } h1 { color: #666666; margin: 0; margin-bottom: 10px; border-bottom: 1px solid #e0e0e0; } img { border: none; max-width: 100%; } .relative { position: relative; } table { table-layout: fixed; width: 100%; border-collapse: collapse; } table.grid { table-layout: fixed; width: 100%; border-spacing: 0; border-left: 1px solid #ccc; border-top: 1px solid #ccc; border-collapse: separate; } .panel-grid > table.grid { border-top: 0px; } table.grid thead th { background-color: #e0e0e0; border: 1px solid #cccccc; padding: 12px 5px; border-top: 1px solid #ffffff; border-left: 1px solid #ffffff; text-align: left; } table.grid thead th.center { text-align: center; } table.grid tbody td { border: 1px solid #cccccc; border-left: 0; border-top: 0; padding: 10px 5px; -moz-word-break: break-all; -o-word-break: break-all; word-break: break-all; } table.grid tfoot td { background-color: #e1e1e1; padding: 12px 0; border-top: 1px solid #ffffff; border-left: 1px solid #ffffff; border-bottom: 1px solid #cccccc; border-right: 1px solid #cccccc; font-weight: bold; padding: 10px 5px; } table.grid td.empty { text-align: center; padding: 35px 0; } table.grid td.loading { text-align: center; padding: 35px 0; color: #888888; } table.grid td a.btn-delete { text-decoration: none; color: red; } table.grid td small { color: #999999; } table.grid tr.alt td { background-color: #f4f4f4; } table.grid tr.selected td { background-color: #e0f0cf; } table.grid .sortable { cursor: pointer; background-image: url("images/sort-none.png"); background-position: right center; background-repeat: no-repeat; } table.grid .sortable:hover { background-color: #ffd8dc; } table.grid .sortable.sort-asc { background-image: url("images/sort-asc.png"); } table.grid .sortable.sort-desc { background-image: url("images/sort-desc.png"); } table.form { table-layout: fixed; width: 100%; border-collapse: collapse; } table.form td.label { color: #00aeae; } table.form td { padding: 5px 5px; } dl { margin-bottom: 12px; } dl dt { border-bottom: 1px dotted #dddddd; font-size: 14px; color: #808080; line-height: 18px; } dl dd { color: #808080; margin: 0px; margin-bottom: 10px; line-height: 18px; font-size: 13px; padding: 0px; } .hide { display: none; } .float-r { float: right; } .btn-delete { color: red; } .money { color: #ff4500; } .money-in { color: green; } .money-out { color: red; } .pager { overflow: hidden; padding: 10px 12px; border: 1px solid #cccccc; border-top: 0px; } .pager ul { overflow: hidden; margin: 0px; padding: 0px; float: right; } .pager li { float: left; margin-left: 10px; list-style: none; padding: 0px; } .pager li a { display: block; text-align: center; line-height: 30px; border: 1px solid #eeeeee; padding: 0 15px; background-color: #ffffff; text-decoration: none; } .pager li.selected a { background-color: darkcyan; color: #ffffff; } .pager a.refresh { display: inline-block; text-align: center; line-height: 30px; border: 1px solid #eeeeee; padding: 0 15px; background-color: #ffffff; text-decoration: none; } .pager li.disabled a { color: #aaaaaa; cursor: default; } .pager .busy { line-height: 30px; } /*******************************/ /***file upload****************************/ .fileupload { position: absolute; top: 0px; left: 0px; background: url("images/modal.png"); width: 100%; min-height: 100%; } .file-dialog { position: absolute; width: 400px; top: 50%; left: 50%; margin-left: -200px; margin-top: -66px; background-color: #fff; } .file-close { display: block; line-height: 35px; width: 50px; text-align: center; background-color: pink; position: absolute; right: 0px; top: 0px; cursor: pointer; } .file-title { line-height: 35px; background-color: #dddddd; padding-left: 12px; font-weight: bold; } .file-content { padding: 12px; } .file-content h4 { padding: 10px 0; text-align: center; color: #666; font-weight: normal; font-size: 14px; } .progress { width: 190px; height: 14px; border: 1px solid #dddddd; -ms-border-radius: 5px; border-radius: 5px; overflow: hidden; margin: 0 auto; } .progress-value { height: 14px; background: url("images/progressing.gif") no-repeat; width: 3%; } .fileupload.frame .progress { border: 0px; } .fileupload.frame .progress-value { width: 100%; } div.btn-upload { width: 120px; height: 36px; overflow: hidden; position: relative; background-color: #eeeeee; text-align: center; } div.btn-upload:hover { background-color: #dddddd; } div.btn-upload input { -ms-opacity: 0; opacity: 0; position: absolute; top: 0; right: 0; z-index: 0; font: 200px monospace!important; -webkit-filter: alpha(opacity=0); -moz-filter: alpha(opacity=0); -o-filter: alpha(opacity=0); filter: alpha(opacity=0); margin: 0; padding: 0; cursor: pointer; } div.btn-upload span { } /**********************************/ /*******************************************/ /* busier ************/ .busy-indicator { position:relative; top:0px; left:0px; z-index:2000; vertical-align: middle; text-align: center; } .busy-modal { background:url(images/modal-black.png); } .busy-content { background-color: white; border: 1px solid #CCCCCC; -ms-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; margin: 0 auto; padding: 3px 10px 3px 3px; position: relative; -moz-min-width: 150px; -ms-min-width: 150px; -o-min-width: 150px; -webkit-min-width: 150px; min-width: 150px; display: inline-block; text-align: left; } a.busy-cancel { display: inline-block; width: 16px; height: 16px; padding: 0; position: absolute; right: -5px; top: -5px; background: url(images/remove16.png) no-repeat; } a.busy-cancel:hover { background: url(images/remove16.png) no-repeat 0 -16px; } .busy-text { background: url("images/loading_1.gif") no-repeat scroll 0 0 transparent; border: 1px solid #FFFFFF; -ms-border-radius: 3px 3px 3px 3px; border-radius: 3px 3px 3px 3px; min-height: 22px; padding: 8px 5px 5px 35px; } .toast { position: fixed; -moz-min-width: 200px; -ms-min-width: 200px; -o-min-width: 200px; -webkit-min-width: 200px; min-width: 200px; min-height: 60px; background-color: #ffffff; padding: 10px 15px 10px 60px; display: block; z-index: 2001; -ms-opacity: 0; opacity: 0; -ms-border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; -ms-box-shadow: 0 0 8px blue; -moz-box-shadow: 0 0 8px blue; -webkit-box-shadow: 0 0 8px blue; box-shadow: 0 0 8px blue; } .toast.success { -ms-box-shadow: 0 0 8px green; border: 1px solid #A7D642; -moz-box-shadow: 0 0 8px green; -webkit-box-shadow: 0 0 8px green; box-shadow: 0 0 8px green; background: url(images/toast.png) no-repeat 10px 10px #ffffff; color: green; } .toast.error { -ms-box-shadow: 0 0 8px #FF6600; border: 1px solid #FF6600; -moz-box-shadow: 0 0 8px #FF6600; -webkit-box-shadow: 0 0 8px #FF6600; box-shadow: 0 0 8px #FF6600; background: url(images/toast.png) no-repeat 10px -158px #ffffff; color: #FF2E00; padding-left: 60px; } .toast.info { -ms-box-shadow: 0 0 8px #aaaaaa; -moz-box-shadow: 0 0 8px #aaaaaa; -webkit-box-shadow: 0 0 8px #aaaaaa; box-shadow: 0 0 8px #aaaaaa; background: url(images/toast.png) no-repeat 10px -358px #ffffff; } .toast .close { display: inline-block; width: 16px; height: 16px; padding: 0; position: absolute; right: -5px; top: -5px; background: url(images/remove16.png) no-repeat; } .toast .close:hover { background: url(images/remove16.png) no-repeat 0 -16px; } .toast h5 { margin: 10px 0; } .toast ul { margin: 0px; padding: 0 0 0 20px } .toast li { margin: 0 0 5px 0; } /* end busier */ /* controls - multiImageUploader ************************/ ul.files-uploader { overflow: hidden; margin-left: -15px; padding-top: 10px; } ul.files-uploader > li { float: left; margin-left: 15px; margin-bottom: 15px; position: relative; } ul.files-uploader > li > label { display: block; width: 60px; height: 60px; line-height: 60px; border: 1px solid #dddddd; -ms-border-radius: 5px; border-radius: 5px; text-align: center; overflow: hidden; cursor: pointer; font-size: 11px; color: #999999; } ul.files-uploader > li.uploader-new > label { font-size: 18px; color: #666666; background-color: #ffffff; } ul.files-uploader > li a.btn-delete { position: absolute; width: 21px; height: 21px; top: -10px; right: -10px; display: block; cursor: pointer; background: url("images/remove-42.png") center center no-repeat; -ms-background-size: 21px auto; background-size: 21px auto; } ul.files-uploader > li.uploader-new a.btn-delete { display: none; } ul.files-uploader li img { height: 100%; } ul.files-uploader > li input { display: none; } ul.files-uploader > li.uploader-word > label { background: url("images/file-word-128.png") center center no-repeat; -ms-background-size: 60px auto; background-size: 60px auto; } ul.files-uploader > li.uploader-excel > label { background: url("images/file-excel-128.png") center center no-repeat; -ms-background-size: 60px auto; background-size: 60px auto; } /* jqueryui ************************************/ .ui-dialog { padding: 0px; border: 0; font-family: "微软雅黑"; font-size: 14px; } .ui-dialog-titlebar { background: #ffffff; border: 0px; border-bottom: 1px solid #dddddd; line-height: 30px; } .ui-widget-overlay { background: url("images/modal.png"); -ms-opacity: 1; opacity: 1; } .ui-dialog a.btn { color: #ffffff; } .ui-widget-content a { color: #00c191; } .ui-datepicker .ui-datepicker-title select{ font-size: 14px; padding: 3px 0; } /* controls iphone previewer *************************************/ #dialogPreviewHtml { background: url("images/iphone5s.png") 60px 30px no-repeat; padding: 0; padding-left: 92px; padding-top: 169px; position: relative; } #dialogPreviewHtml form { display: none; } #dialogPreviewHtml iframe { border: none; } #dialogPreviewHtml a#btnClosePreview { display: block; width: 58px; height: 58px; line-height: 58px; text-align: center; text-decoration: none; -ms-border-radius: 30px; border-radius: 30px; position: absolute; left: 224px; top: 745px; color: #999999; font-family: "微软雅黑"; font-size: 14px; }
0.363421
0.092442
.bootstrap-datetimepicker-widget { font-family: 'Roboto'; font-size: 14px; line-height: 1.42857143; color: #333;} .bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover, .bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover { background:none;} .bootstrap-datetimepicker-widget table th { height: 32px; line-height: 32px; width: 32px; font-weight: normal; opacity: 0.74;} .bootstrap-datetimepicker-widget table td.today:before { display:none;} .bootstrap-datetimepicker-widget .accordion-toggle { text-align: center; background-color: #3472d8;} .bootstrap-datetimepicker-widget .accordion-toggle a { color: #fff; display:inline-block; padding:3px 0; cursor:pointer;} .bootstrap-datetimepicker-widget .accordion-toggle a:hover { background:none; color:#fff;} .bootstrap-datetimepicker-widget table th.picker-switch { width: 145px; font-weight: bold; color: #000; } .bootstrap-datetimepicker-widget table td span { display: inline-block; width: 70px; height: 70px; line-height: 70px; } .bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second { font-weight:normal; font-size: 3.5rem;} .bootstrap-datetimepicker-widget { position:relative; transition:none;} .bootstrap-datetimepicker-widget.dropdown-menu { position:absolute; display: block; visibility: visible; opacity: 1; clip: auto; width:300px; padding:0; margin:0;} .bootstrap-datetimepicker-widget.dropdown-menu:after, .bootstrap-datetimepicker-widget.dropdown-menu:before { display:none;} .bootstrap-datetimepicker-widget .datepicker > div { display:table; width:100%;} .pmd-navbar-left .bootstrap-datetimepicker-widget { width:530px;} .pmd-navbar-left .bootstrap-datetimepicker-widget .timepicker { display:table; width:100%;} .pmd-navbar-left .bootstrap-datetimepicker-widget .timepicker .timepicker-picker, .pmd-navbar-left .bootstrap-datetimepicker-widget .datepicker .topdateinfo { display:table-cell; width:40%; vertical-align:top;} .pmd-navbar-left .bootstrap-datetimepicker-widget table td span { margin:5px;} .pmd-navbar-left .bootstrap-datetimepicker-widget .clockpickerseconds, .pmd-navbar-left .bootstrap-datetimepicker-widget .clockpickerr, .pmd-navbar-left .bootstrap-datetimepicker-widget .clockpickerminute { margin:20px 0;} .bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second { font-size: 2.8rem;} .timepicker .uparrow, .timepicker .time-separator, .timepicker .timeview { font-size: 42px;} /*google materail themes*/ .topdateinfo{ background-color:#4285f4; text-align:center; color:#fff; line-height:1.0} .topdateinfo .dayname{ background-color:#3472d8; padding:8px 0; margin-bottom:0;} .topdateinfo .monthonly{ font-size:1.6rem; text-transform:uppercase;} .topdateinfo .dateonly{ font-size:3.5rem;} .topdateinfo .yearonly{ font-size:1.6rem; margin-bottom:0;} .topdateinfo .datetopcol{ padding:16px 0;} .bootstrap-datetimepicker-widget table td.day span{ height:32px; line-height:32px; width:32px; display:inline-block; margin:0;} .bootstrap-datetimepicker-widget .table-condensed > thead > tr > th, .bootstrap-datetimepicker-widget .table-condensed > tbody > tr > th, .bootstrap-datetimepicker-widget .table-condensed > tfoot > tr > th, .bootstrap-datetimepicker-widget .table-condensed > thead > tr > td, .bootstrap-datetimepicker-widget .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td{ padding:0 0 0 0;} .timepicker > div{} .timepicker-second, .timepicker-hour, .timepicker-minute{ cursor:pointer;} .clockpickerseconds, .clockpickerr, .clockpickerminute{border-radius:50%; width:200px; height:200px; position:relative; background-color:#eceff1; display:inline-block; margin:24px 0 80px 0;} .clockpickerseconds .second, .clockpickerr .hour, .clockpickerminute .minute { display:inline-block; position:absolute; cursor:pointer;} .clockpickerr .hour:nth-child(1){ left:45%;} .clockpickerr .hour:nth-child(2){ left:130px; top:15px;} .clockpickerr .hour:nth-child(3){ left:160px; top:45px;} .clockpickerr .hour:nth-child(4){ left:175px; top:85px;} .clockpickerr .hour:nth-child(5){ left:160px; top:130px;} .clockpickerr .hour:nth-child(6){ left:130px; top:160px;} .clockpickerr .hour:nth-child(7){ left:92px; top:175px;} .clockpickerr .hour:nth-child(8){ left:50px; top:160px;} .clockpickerr .hour:nth-child(9){ left:20px; top:130px;} .clockpickerr .hour:nth-child(10){ left:5px; top:85px;} .clockpickerr .hour:nth-child(11){ left:20px; top:45px;} .clockpickerr .hour:nth-child(12){ left:50px; top:15px;} .clockpickerminute .minute:nth-child(1){ left:45%;} .clockpickerminute .minute:nth-child(2){ left:130px; top:15px;} .clockpickerminute .minute:nth-child(3){ left:160px; top:45px;} .clockpickerminute .minute:nth-child(4){ left:175px; top:85px;} .clockpickerminute .minute:nth-child(5){ left:160px; top:130px;} .clockpickerminute .minute:nth-child(6){ left:130px; top:160px;} .clockpickerminute .minute:nth-child(7){ left:92px; top:175px;} .clockpickerminute .minute:nth-child(8){ left:50px; top:160px;} .clockpickerminute .minute:nth-child(9){ left:20px; top:130px;} .clockpickerminute .minute:nth-child(10){ left:5px; top:85px;} .clockpickerminute .minute:nth-child(11){ left:20px; top:45px;} .clockpickerminute .minute:nth-child(12){ left:50px; top:15px;} .ampmview{width:100%; position:relative;} .ampmview .btn{ width:48px; height:48px; border-radius:50%; min-width:inherit;} .ampmview > div{position:absolute; top:234px; width:100%; left: 16px} .ampmview .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-radius:50%;} .amview{ margin-left:30px;} .pmview{ margin-right:30px;} .timeview{ line-height:1;} .timepicker{ text-align:center;} .timepicker-picker{ background-color:#4285f4; color:#fff; font-size:3.5rem; padding-bottom:5px;} .ampmvalue{ font-size:0.8125rem;} .timepicker-hours, .ampmview, .timepicker-minutes{ background-color:#fff;} .uparrow, .downarrow{ text-align:left; padding-left:42px;} .uparrow .btn, .downarrow .btn{ width:59px; margin:0 10px;} .bootstrap-datetimepicker-widget{ /* position:absolute; */ background-color:#fff;} .bootstrap-datetimepicker-widget table th.prev, .bootstrap-datetimepicker-widget table th.next{ padding-bottom:0;} .bootstrap-datetimepicker-widget table th.prev span, .bootstrap-datetimepicker-widget table th.next span{ padding-top:8px; display:inline-block;} .bootstrap-datetimepicker-widget table thead tr:first-child th:hover{ background-color:inherit;} /*bootstrap-datetimepicker*/ .bootstrap-datetimepicker-widget{ z-index:999; width:300px; -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16), 0 1px 3px 0 rgba(0, 0, 0, 0.12); -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16), 0 1px 3px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16), 0 1px 3px 0 rgba(0, 0, 0, 0.12);} .modal .bootstrap-datetimepicker-widget { box-shadow:none;} .bootstrap-datetimepicker-widget table th { text-transform:capitalize; } .bootstrap-datetimepicker-widget table th.dow { color:#444444; line-height:33px; height:33px; } /*.bootstrap-datetimepicker-widget table td.old { opacity:0.3; } .bootstrap-datetimepicker-widget table td.new { opacity:0.3; }*/ .bootstrap-datetimepicker-widget table td.day { height: 40px; line-height: 40px; width: 40px; } .bootstrap-datetimepicker-widget table td { position:relative; cursor:pointer;} .bootstrap-datetimepicker-widget table td.day span { height: 40px; line-height: 40px; width: 40px; position:absolute; z-index:-1; margin:1px 0 0 -15px; border-radius:500px; -moz-border-radius:500px; -ms-border-radius:500px; -o-border-radius:500px; -webkit-border-radius:500px; top: 0; left: -1px; right: 0;bottom: 0; margin: auto;} .topdateinfo .datetopcol{ padding:0; margin-bottom:0;} .topdateinfo .datetopcol p{ display:inline-block; text-align:left; font-size: 2rem; text-transform: inherit; padding:0; margin:0; padding-right:8px; background-color: transparent;} .topdateinfo{ text-align:left; padding:16px 20px; } .bootstrap-datetimepicker-widget table { margin:5px 0;} .topdateinfo .yearonly{font-size: 1rem; margin-top: 0; margin-bottom:5px; opacity: 0.9;} .bootstrap-datetimepicker-widget table td span { border-radius:500px; -moz-border-radius:500px; -ms-border-radius:500px; -o-border-radius:500px; -webkit-border-radius:500px;} .bootstrap-datetimepicker-widget table td.day:hover span, .bootstrap-datetimepicker-widget table td.hour:hover span, .bootstrap-datetimepicker-widget table td.minute:hover span, .bootstrap-datetimepicker-widget table td.second:hover span { background-color:#eeeeee; } .bootstrap-datetimepicker-widget table td.day.active:hover span, .bootstrap-datetimepicker-widget table td.hour.active:hover span, .bootstrap-datetimepicker-widget table td.minute.active:hover span, .bootstrap-datetimepicker-widget table td.second.active:hover span { background-color:#03a9f5; } .bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover { color:#444444;} .bootstrap-datetimepicker-widget table td.day.disabled:hover span, .bootstrap-datetimepicker-widget table td.hour.disabled:hover span, .bootstrap-datetimepicker-widget table td.minute.disabled:hover span, .bootstrap-datetimepicker-widget table td.second.disabled:hover span{ background:none; } .bootstrap-datetimepicker-widget table td.day.disabled:hover, .bootstrap-datetimepicker-widget table td.hour.disabled:hover, .bootstrap-datetimepicker-widget table td.minute.disabled:hover, .bootstrap-datetimepicker-widget table td.second.disabled:hover { color:#777777;} .bootstrap-datetimepicker-widget table td.day.active:hover span, .bootstrap-datetimepicker-widget table td.hour.active:hover span, .bootstrap-datetimepicker-widget table td.minute.active:hover span, .bootstrap-datetimepicker-widget table td.second.active:hover span, .bootstrap-datetimepicker-widget table td.active span, .bootstrap-datetimepicker-widget table td.active span:hover, .bootstrap-datetimepicker-widget table td span.active { background-color:#4285f4;} .bootstrap-datetimepicker-widget table td.day.active:hover { color:#fff;} .bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active span:hover { color:#fff;} .datepicker-modal .datepicker { padding-bottom:30px;} .datepicker-modal .timepicker { display:none;} .datepicker-modal .datepicker-tab { padding:0; margin:0; display:table; width:100%; background:#444444;} .datepicker-modal .datepicker-tab li { float:left; width:50%; display:table-cell; vertical-align:middle;} .datepicker-modal .datepicker-tab li a { display:block; font-size:18px; border-bottom:5px solid #444444; color:#b2b2b2; height:60px; line-height:60px; position:relative;} .datepicker-modal .datepicker-tab li a.active { color:#fff; border-color:#fff;} .datepicker-modal .datepicker-tab li a.active:before { content:""; width:100%; z-index:10; height:5px; position:absolute; left:0; bottom:-5px; } .timepicker .downarrow .btn, .timepicker .timeview .btn, .timepicker .uparrow .btn { display:none;} .timepicker .uparrow { display:inline-block; padding-left:0;} .timepicker .time-separator { display:inline-block;} .timepicker .timeview { display:inline-block;} .timepicker .downarrow { display:inline-block; padding-left:0;} .timepicker .uparrow, .timepicker .time-separator, .timepicker .timeview { font-size:50px; color:#fff; /*font-family: 'source_sans_proregular', Arial;*/ line-height:normal; } .timepicker .time-separator, .timepicker .downarrow .timepicker-second, .timepicker .uparrow .timepicker-hour, .timepicker .timeview .timepicker-minute { opacity:0.5;} .timepicker .ampmvalue { font-size: 18px; margin-left: 10px;} .timepicker .downarrow .timepicker-second.active, .timepicker .uparrow .timepicker-hour.active, .timepicker .timeview .timepicker-minute.active { opacity:1;} .timepicker .time-separator .separator { margin-top:-20px;} .timepicker .ampmview { width:auto; position:absolute; display:inline-block; font-size:inherit; background:none; top:37px; margin-left:10px;} .timepicker .ampmview .btn-group { position:relative; top:auto; left:auto; width:auto;} .timepicker .ampmview .btn-group .btn { clear:both; background:none; padding:0; font-family: Arial; height: 30px; font-size:20px; margin-right:0; color:#fff; opacity:0.5; } .timepicker .ampmview .btn-group .btn.active { opacity:1;} .timepicker .secondHnad, .timepicker .minuteHnad, .timepicker .hourHnad { position: absolute; top: 50%; left: 50%; height: 2px; background: #4285f4; right: 25px; transform-origin: center left; -moz-transform-origin: center left; -ms-transform-origin: center left; -o-transform-origin: center left; -webkit-transform-origin: center left; transition:all ease-in-out 0.3s; } .bootstrap-datetimepicker-widget .table-condensed .picker-switch { padding-top:8px;} .clockpickerseconds, .clockpickerr, .clockpickerminute { border-radius:500px; -moz-border-radius:500px; -ms-border-radius:500px; -webkit-border-radius:500px; -o-border-radius:500px; width: 270px; height: 270px; margin:30px 0; /* background:url(sm.png) center no-repeat; background-size:auto 77%;*/} .timepicker .clockpickerseconds .second, .timepicker .clockpickerminute .minute, .timepicker .clockpickerr .hour { width:20px; height:20px; line-height:20px; text-align:center; transform:translate(-50%,-50%); -moz-transform:translate(-50%,-50%); -ms-transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); -o-transform:translate(-50%,-50%);} .timepicker .clockpickerseconds .second.active, .timepicker .clockpickerminute .minute.active, .timepicker .clockpickerr .hour.active { color:#fff;} .timepicker .secondHnad:before, .timepicker .minuteHnad:before, .timepicker .hourHnad:before { width:7px; height:7px; content:""; left:-3px; top:50%; position:absolute; background:#4285f4; transform:translateY(-50%); -moz-transform:translateY(-50%); -ms-transform:translateY(-50%); -o-transform:translateY(-50%); -webkit-transform:translateY(-50%); border-radius:25px; -moz-border-radius:25px; -ms-border-radius:25px; -o-border-radius:25px; -webkit-border-radius:25px; } .timepicker .secondHnad:after, .timepicker .minuteHnad:after, .timepicker .hourHnad:after { position: absolute; content: ""; width: 40px; height: 40px; background: #4285f4; right: 0; top: 50%; transform: translate(50%,-50%); -moz-transform: translate(50%,-50%);-ms-transform: translate(50%,-50%);-o-transform: translate(50%,-50%);-webkit-transform: translate(50%,-50%); border-radius: 50px; -moz-border-radius: 50px; -ms-border-radius: 50px; -o-border-radius: 50px; -webkit-border-radius: 50px;} .timepicker .hourHnad.hourHnad-00, .timepicker .hourHnad.hourHnad-13, .timepicker .hourHnad.hourHnad-14, .timepicker .hourHnad.hourHnad-15, .timepicker .hourHnad.hourHnad-16, .timepicker .hourHnad.hourHnad-17, .timepicker .hourHnad.hourHnad-18, .timepicker .hourHnad.hourHnad-19, .timepicker .hourHnad.hourHnad-20, .timepicker .hourHnad.hourHnad-21, .timepicker .hourHnad.hourHnad-22, .timepicker .hourHnad.hourHnad-23, .timepicker .hourHnad.hourHnad-24 { right:57px;} .timepicker .hourHnad.hourHnad-00, .timepicker .hourHnad.hourHnad-12 { transform:rotate(-90deg); -moz-transform:rotate(-90deg); -webkit-transform:rotate(-90deg); -o-transform:rotate(-90deg); -ms-transform:rotate(-90deg);} .timepicker .hourHnad.hourHnad-13, .timepicker .hourHnad.hourHnad-01 { transform:rotate(-60deg); -moz-transform:rotate(-60deg); -webkit-transform:rotate(-60deg); -o-transform:rotate(-60deg); -ms-transform:rotate(-60deg);} .timepicker .hourHnad.hourHnad-14, .timepicker .hourHnad.hourHnad-02 { transform:rotate(-30deg); -moz-transform:rotate(-30deg); -webkit-transform:rotate(-30deg); -o-transform:rotate(-30deg); -ms-transform:rotate(-30deg);} .timepicker .hourHnad.hourHnad-15, .timepicker .hourHnad.hourHnad-03 { transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg); -ms-transform:rotate(0deg);} .timepicker .hourHnad.hourHnad-16, .timepicker .hourHnad.hourHnad-04 { transform:rotate(30deg); -moz-transform:rotate(30deg); -webkit-transform:rotate(30deg); -o-transform:rotate(30deg); -ms-transform:rotate(30deg);} .timepicker .hourHnad.hourHnad-17, .timepicker .hourHnad.hourHnad-05 { transform:rotate(60deg); -moz-transform:rotate(60deg); -webkit-transform:rotate(60deg); -o-transform:rotate(60deg); -ms-transform:rotate(60deg);} .timepicker .hourHnad.hourHnad-18, .timepicker .hourHnad.hourHnad-06 { transform:rotate(90deg); -moz-transform:rotate(90deg); -webkit-transform:rotate(90deg); -o-transform:rotate(90deg); -ms-transform:rotate(90deg);} .timepicker .hourHnad.hourHnad-19, .timepicker .hourHnad.hourHnad-07 { transform:rotate(120deg); -moz-transform:rotate(120deg); -webkit-transform:rotate(120deg); -o-transform:rotate(120deg); -ms-transform:rotate(120deg);} .timepicker .hourHnad.hourHnad-20, .timepicker .hourHnad.hourHnad-08 { transform:rotate(150deg); -moz-transform:rotate(150deg); -webkit-transform:rotate(150deg); -o-transform:rotate(150deg); -ms-transform:rotate(150deg);} .timepicker .hourHnad.hourHnad-21, .timepicker .hourHnad.hourHnad-09 { transform:rotate(180deg); -moz-transform:rotate(180deg); -webkit-transform:rotate(180deg); -o-transform:rotate(180deg); -ms-transform:rotate(180deg);} .timepicker .hourHnad.hourHnad-22, .timepicker .hourHnad.hourHnad-10 { transform:rotate(210deg); -moz-transform:rotate(210deg); -webkit-transform:rotate(210deg); -o-transform:rotate(210deg); -ms-transform:rotate(210deg);} .timepicker .hourHnad.hourHnad-23, .timepicker .hourHnad.hourHnad-11 { transform:rotate(240deg); -moz-transform:rotate(240deg); -webkit-transform:rotate(240deg); -o-transform:rotate(240deg); -ms-transform:rotate(240deg);} .timepicker .secondHnad.secondHnad-00, .timepicker .minuteHnad.minuteHnad-00 { transform:rotate(-90deg); -moz-transform:rotate(-90deg); -webkit-transform:rotate(-90deg); -o-transform:rotate(-90deg); -ms-transform:rotate(-90deg);} .timepicker .secondHnad.secondHnad-01, .timepicker .minuteHnad.minuteHnad-01 { transform:rotate(-84deg); -moz-transform:rotate(-84deg); -webkit-transform:rotate(-84deg); -o-transform:rotate(-84deg); -ms-transform:rotate(-84deg);} .timepicker .secondHnad.secondHnad-02, .timepicker .minuteHnad.minuteHnad-02 { transform:rotate(-78deg); -moz-transform:rotate(-78deg); -webkit-transform:rotate(-78deg); -o-transform:rotate(-78deg); -ms-transform:rotate(-78deg);} .timepicker .secondHnad.secondHnad-03, .timepicker .minuteHnad.minuteHnad-03 { transform:rotate(-72deg); -moz-transform:rotate(-72deg); -webkit-transform:rotate(-72deg); -o-transform:rotate(-72deg); -ms-transform:rotate(-72deg);} .timepicker .secondHnad.secondHnad-04, .timepicker .minuteHnad.minuteHnad-04 { transform:rotate(-66deg); -moz-transform:rotate(-66deg); -webkit-transform:rotate(-66deg); -o-transform:rotate(-66deg); -ms-transform:rotate(-66deg);} .timepicker .secondHnad.secondHnad-05, .timepicker .minuteHnad.minuteHnad-05 { transform:rotate(-60deg); -moz-transform:rotate(-60deg); -webkit-transform:rotate(-60deg); -o-transform:rotate(-60deg); -ms-transform:rotate(-60deg);} .timepicker .secondHnad.secondHnad-06, .timepicker .minuteHnad.minuteHnad-06 { transform:rotate(-54deg); -moz-transform:rotate(-54deg); -webkit-transform:rotate(-54deg); -o-transform:rotate(-54deg); -ms-transform:rotate(-54deg);} .timepicker .secondHnad.secondHnad-07, .timepicker .minuteHnad.minuteHnad-07 { transform:rotate(-48deg); -moz-transform:rotate(-48deg); -webkit-transform:rotate(-48deg); -o-transform:rotate(-48deg); -ms-transform:rotate(-48deg);} .timepicker .secondHnad.secondHnad-08, .timepicker .minuteHnad.minuteHnad-08 { transform:rotate(-42deg); -moz-transform:rotate(-42deg); -webkit-transform:rotate(-42deg); -o-transform:rotate(-42deg); -ms-transform:rotate(-42deg);} .timepicker .secondHnad.secondHnad-09, .timepicker .minuteHnad.minuteHnad-09 { transform:rotate(-36deg); -moz-transform:rotate(-36deg); -webkit-transform:rotate(-36deg); -o-transform:rotate(-36deg); -ms-transform:rotate(-36deg);} .timepicker .secondHnad.secondHnad-10, .timepicker .minuteHnad.minuteHnad-10 { transform:rotate(-30deg); -moz-transform:rotate(-30deg); -webkit-transform:rotate(-30deg); -o-transform:rotate(-30deg); -ms-transform:rotate(-30deg);} .timepicker .secondHnad.secondHnad-11, .timepicker .minuteHnad.minuteHnad-11 { transform:rotate(-24deg); -moz-transform:rotate(-24deg); -webkit-transform:rotate(-24deg); -o-transform:rotate(-24deg); -ms-transform:rotate(-24deg);} .timepicker .secondHnad.secondHnad-12, .timepicker .minuteHnad.minuteHnad-12 { transform:rotate(-18deg); -moz-transform:rotate(-18deg); -webkit-transform:rotate(-18deg); -o-transform:rotate(-18deg); -ms-transform:rotate(-18deg);} .timepicker .secondHnad.secondHnad-13, .timepicker .minuteHnad.minuteHnad-13 { transform:rotate(-12deg); -moz-transform:rotate(-12deg); -webkit-transform:rotate(-12deg); -o-transform:rotate(-12deg); -ms-transform:rotate(-12deg);} .timepicker .secondHnad.secondHnad-14, .timepicker .minuteHnad.minuteHnad-14 { transform:rotate(-6deg); -moz-transform:rotate(-6deg); -webkit-transform:rotate(-6deg); -o-transform:rotate(-6deg); -ms-transform:rotate(-6deg);} .timepicker .secondHnad.secondHnad-15, .timepicker .minuteHnad.minuteHnad-15 { transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg); -ms-transform:rotate(0deg);} .timepicker .secondHnad.secondHnad-16, .timepicker .minuteHnad.minuteHnad-16 { transform:rotate(6deg); -moz-transform:rotate(6deg); -webkit-transform:rotate(6deg); -o-transform:rotate(6deg); -ms-transform:rotate(6deg);} .timepicker .secondHnad.secondHnad-17, .timepicker .minuteHnad.minuteHnad-17 { transform:rotate(12deg); -moz-transform:rotate(12deg); -webkit-transform:rotate(12deg); -o-transform:rotate(12deg); -ms-transform:rotate(12deg);} .timepicker .secondHnad.secondHnad-18, .timepicker .minuteHnad.minuteHnad-18 { transform:rotate(18deg); -moz-transform:rotate(18deg); -webkit-transform:rotate(18deg); -o-transform:rotate(18deg); -ms-transform:rotate(18deg);} .timepicker .secondHnad.secondHnad-19, .timepicker .minuteHnad.minuteHnad-19 { transform:rotate(24deg); -moz-transform:rotate(24deg); -webkit-transform:rotate(24deg); -o-transform:rotate(24deg); -ms-transform:rotate(24deg);} .timepicker .secondHnad.secondHnad-20, .timepicker .minuteHnad.minuteHnad-20 { transform:rotate(30deg); -moz-transform:rotate(30deg); -webkit-transform:rotate(30deg); -o-transform:rotate(30deg); -ms-transform:rotate(30deg);} .timepicker .secondHnad.secondHnad-21, .timepicker .minuteHnad.minuteHnad-21 { transform:rotate(36deg); -moz-transform:rotate(36deg); -webkit-transform:rotate(36deg); -o-transform:rotate(36deg); -ms-transform:rotate(36deg);} .timepicker .secondHnad.secondHnad-22, .timepicker .minuteHnad.minuteHnad-22 { transform:rotate(42deg); -moz-transform:rotate(42deg); -webkit-transform:rotate(42deg); -o-transform:rotate(42deg); -ms-transform:rotate(42deg);} .timepicker .secondHnad.secondHnad-23, .timepicker .minuteHnad.minuteHnad-23 { transform:rotate(48deg); -moz-transform:rotate(48deg); -webkit-transform:rotate(48deg); -o-transform:rotate(48deg); -ms-transform:rotate(48deg);} .timepicker .secondHnad.secondHnad-24, .timepicker .minuteHnad.minuteHnad-24 { transform:rotate(54deg); -moz-transform:rotate(54deg); -webkit-transform:rotate(54deg); -o-transform:rotate(54deg); -ms-transform:rotate(54deg);} .timepicker .secondHnad.secondHnad-25, .timepicker .minuteHnad.minuteHnad-25 { transform:rotate(60deg); -moz-transform:rotate(60deg); -webkit-transform:rotate(60deg); -o-transform:rotate(60deg); -ms-transform:rotate(60deg);} .timepicker .secondHnad.secondHnad-26, .timepicker .minuteHnad.minuteHnad-26 { transform:rotate(66deg); -moz-transform:rotate(66deg); -webkit-transform:rotate(66deg); -o-transform:rotate(66deg); -ms-transform:rotate(66deg);} .timepicker .secondHnad.secondHnad-27, .timepicker .minuteHnad.minuteHnad-27 { transform:rotate(72deg); -moz-transform:rotate(72deg); -webkit-transform:rotate(72deg); -o-transform:rotate(72deg); -ms-transform:rotate(72deg);} .timepicker .secondHnad.secondHnad-28, .timepicker .minuteHnad.minuteHnad-28 { transform:rotate(78deg); -moz-transform:rotate(78deg); -webkit-transform:rotate(78deg); -o-transform:rotate(78deg); -ms-transform:rotate(78deg);} .timepicker .secondHnad.secondHnad-29, .timepicker .minuteHnad.minuteHnad-29 { transform:rotate(84deg); -moz-transform:rotate(84deg); -webkit-transform:rotate(84deg); -o-transform:rotate(84deg); -ms-transform:rotate(84deg);} .timepicker .secondHnad.secondHnad-30, .timepicker .minuteHnad.minuteHnad-30 { transform:rotate(90deg); -moz-transform:rotate(90deg); -webkit-transform:rotate(90deg); -o-transform:rotate(90deg); -ms-transform:rotate(90deg);} .timepicker .secondHnad.secondHnad-31, .timepicker .minuteHnad.minuteHnad-31 { transform:rotate(96deg); -moz-transform:rotate(96deg); -webkit-transform:rotate(96deg); -o-transform:rotate(96deg); -ms-transform:rotate(96deg);} .timepicker .secondHnad.secondHnad-32, .timepicker .minuteHnad.minuteHnad-32 { transform:rotate(102deg); -moz-transform:rotate(102deg); -webkit-transform:rotate(102deg); -o-transform:rotate(102deg); -ms-transform:rotate(102deg);} .timepicker .secondHnad.secondHnad-33, .timepicker .minuteHnad.minuteHnad-33 { transform:rotate(108deg); -moz-transform:rotate(108deg); -webkit-transform:rotate(108deg); -o-transform:rotate(108deg); -ms-transform:rotate(108deg);} .timepicker .secondHnad.secondHnad-34, .timepicker .minuteHnad.minuteHnad-34 { transform:rotate(114deg); -moz-transform:rotate(114deg); -webkit-transform:rotate(114deg); -o-transform:rotate(114deg); -ms-transform:rotate(114deg);} .timepicker .secondHnad.secondHnad-35, .timepicker .minuteHnad.minuteHnad-35 { transform:rotate(120deg); -moz-transform:rotate(120deg); -webkit-transform:rotate(120deg); -o-transform:rotate(120deg); -ms-transform:rotate(120deg);} .timepicker .secondHnad.secondHnad-36, .timepicker .minuteHnad.minuteHnad-36 { transform:rotate(126deg); -moz-transform:rotate(126deg); -webkit-transform:rotate(126deg); -o-transform:rotate(126deg); -ms-transform:rotate(126deg);} .timepicker .secondHnad.secondHnad-37, .timepicker .minuteHnad.minuteHnad-37 { transform:rotate(132deg); -moz-transform:rotate(132deg); -webkit-transform:rotate(132deg); -o-transform:rotate(132deg); -ms-transform:rotate(132deg);} .timepicker .secondHnad.secondHnad-38, .timepicker .minuteHnad.minuteHnad-38 { transform:rotate(138deg); -moz-transform:rotate(138deg); -webkit-transform:rotate(138deg); -o-transform:rotate(138deg); -ms-transform:rotate(138deg);} .timepicker .secondHnad.secondHnad-39, .timepicker .minuteHnad.minuteHnad-39 { transform:rotate(144deg); -moz-transform:rotate(144deg); -webkit-transform:rotate(144deg); -o-transform:rotate(144deg); -ms-transform:rotate(144deg);} .timepicker .secondHnad.secondHnad-40, .timepicker .minuteHnad.minuteHnad-40 { transform:rotate(150deg); -moz-transform:rotate(150deg); -webkit-transform:rotate(150deg); -o-transform:rotate(150deg); -ms-transform:rotate(150deg);} .timepicker .secondHnad.secondHnad-41, .timepicker .minuteHnad.minuteHnad-41 { transform:rotate(156deg); -moz-transform:rotate(156deg); -webkit-transform:rotate(156deg); -o-transform:rotate(156deg); -ms-transform:rotate(156deg);} .timepicker .secondHnad.secondHnad-42, .timepicker .minuteHnad.minuteHnad-42 { transform:rotate(162deg); -moz-transform:rotate(162deg); -webkit-transform:rotate(162deg); -o-transform:rotate(162deg); -ms-transform:rotate(162deg);} .timepicker .secondHnad.secondHnad-43, .timepicker .minuteHnad.minuteHnad-43 { transform:rotate(168deg); -moz-transform:rotate(168deg); -webkit-transform:rotate(168deg); -o-transform:rotate(168deg); -ms-transform:rotate(168deg);} .timepicker .secondHnad.secondHnad-44, .timepicker .minuteHnad.minuteHnad-44 { transform:rotate(174deg); -moz-transform:rotate(174deg); -webkit-transform:rotate(174deg); -o-transform:rotate(174deg); -ms-transform:rotate(174deg);} .timepicker .secondHnad.secondHnad-45, .timepicker .minuteHnad.minuteHnad-45 { transform:rotate(180deg); -moz-transform:rotate(180deg); -webkit-transform:rotate(180deg); -o-transform:rotate(180deg); -ms-transform:rotate(180deg);} .timepicker .secondHnad.secondHnad-46, .timepicker .minuteHnad.minuteHnad-46 { transform:rotate(186deg); -moz-transform:rotate(186deg); -webkit-transform:rotate(186deg); -o-transform:rotate(186deg); -ms-transform:rotate(186deg);} .timepicker .secondHnad.secondHnad-47, .timepicker .minuteHnad.minuteHnad-47 { transform:rotate(192deg); -moz-transform:rotate(192deg); -webkit-transform:rotate(192deg); -o-transform:rotate(192deg); -ms-transform:rotate(192deg);} .timepicker .secondHnad.secondHnad-48, .timepicker .minuteHnad.minuteHnad-48 { transform:rotate(198deg); -moz-transform:rotate(198deg); -webkit-transform:rotate(198deg); -o-transform:rotate(198deg); -ms-transform:rotate(198deg);} .timepicker .secondHnad.secondHnad-49, .timepicker .minuteHnad.minuteHnad-49 { transform:rotate(204deg); -moz-transform:rotate(204deg); -webkit-transform:rotate(204deg); -o-transform:rotate(204deg); -ms-transform:rotate(204deg);} .timepicker .secondHnad.secondHnad-50, .timepicker .minuteHnad.minuteHnad-50 { transform:rotate(210deg); -moz-transform:rotate(210deg); -webkit-transform:rotate(210deg); -o-transform:rotate(210deg); -ms-transform:rotate(210deg);} .timepicker .secondHnad.secondHnad-51, .timepicker .minuteHnad.minuteHnad-51 { transform:rotate(216deg); -moz-transform:rotate(216deg); -webkit-transform:rotate(216deg); -o-transform:rotate(216deg); -ms-transform:rotate(216deg);} .timepicker .secondHnad.secondHnad-52, .timepicker .minuteHnad.minuteHnad-52 { transform:rotate(222deg); -moz-transform:rotate(222deg); -webkit-transform:rotate(222deg); -o-transform:rotate(222deg); -ms-transform:rotate(222deg);} .timepicker .secondHnad.secondHnad-53, .timepicker .minuteHnad.minuteHnad-53 { transform:rotate(228deg); -moz-transform:rotate(228deg); -webkit-transform:rotate(228deg); -o-transform:rotate(228deg); -ms-transform:rotate(228deg);} .timepicker .secondHnad.secondHnad-54, .timepicker .minuteHnad.minuteHnad-54 { transform:rotate(234deg); -moz-transform:rotate(234deg); -webkit-transform:rotate(234deg); -o-transform:rotate(234deg); -ms-transform:rotate(234deg);} .timepicker .secondHnad.secondHnad-55, .timepicker .minuteHnad.minuteHnad-55 { transform:rotate(240deg); -moz-transform:rotate(240deg); -webkit-transform:rotate(240deg); -o-transform:rotate(240deg); -ms-transform:rotate(240deg);} .timepicker .secondHnad.secondHnad-56, .timepicker .minuteHnad.minuteHnad-56 { transform:rotate(246deg); -moz-transform:rotate(246deg); -webkit-transform:rotate(246deg); -o-transform:rotate(246deg); -ms-transform:rotate(246deg);} .timepicker .secondHnad.secondHnad-57, .timepicker .minuteHnad.minuteHnad-57 { transform:rotate(252deg); -moz-transform:rotate(252deg); -webkit-transform:rotate(252deg); -o-transform:rotate(252deg); -ms-transform:rotate(252deg);} .timepicker .secondHnad.secondHnad-58, .timepicker .minuteHnad.minuteHnad-58 { transform:rotate(258deg); -moz-transform:rotate(258deg); -webkit-transform:rotate(258deg); -o-transform:rotate(258deg); -ms-transform:rotate(258deg);} .timepicker .secondHnad.secondHnad-59, .timepicker .minuteHnad.minuteHnad-59 { transform:rotate(264deg); -moz-transform:rotate(264deg); -webkit-transform:rotate(264deg); -o-transform:rotate(264deg); -ms-transform:rotate(264deg);} /*.timepicker .table-condensed > div div:nth-child(1n) { top:21.6%; left:50%;} .timepicker.tHours .table-condensed > div div:first-child { top:9.3%; left:50%; } .timepicker .table-condensed > div div:nth-child(2n) { top:14.8%; left:70.8%;} .timepicker .table-condensed > div div:nth-child(3n) { top:30.1%; left:85.4%;} .timepicker .table-condensed > div div:nth-child(4n) { top:50%; left:91.3%;} .timepicker .table-condensed > div div:nth-child(5n) { top:71%; left:85.7%;} .timepicker .table-condensed > div div:nth-child(6n) { top:86%; left:70.8%;} .timepicker .table-condensed > div div:nth-child(7n) { top:91.4%; left:50%;} .timepicker .table-condensed > div div:nth-child(8n) { top:85.9%; left:29.6%;} .timepicker .table-condensed > div div:nth-child(9n) { top:70.8%; left:14.8%;} .timepicker .table-condensed > div div:nth-child(10n) { top:50%; left:9.3%;} .timepicker .table-condensed > div div:nth-child(11n) { top:30.1%; left:14.7%;} .timepicker .table-condensed > div div:nth-child(12n) { top:14.8%; left:29.6%;} .timepicker .table-condensed > div div:nth-child(13n) { top:9.3%; left:50%;} .timepicker .table-condensed > div div:nth-child(14n) { top:25.4%; left:64.6%;} .timepicker .table-condensed > div div:nth-child(15n) { top:36.2%; left:74.4%;} .timepicker .table-condensed > div div:nth-child(16n) { top:50%; left:78.8%;} .timepicker .table-condensed > div div:nth-child(17n) { top:64.8%; left:74.9%;} .timepicker .table-condensed > div div:nth-child(18n) { top:75.4%; left:65%;} .timepicker .table-condensed > div div:nth-child(19n) { top:79.2%; left:50%;} .timepicker .table-condensed > div div:nth-child(20n) { top:75.2%; left:35.6%;} .timepicker .table-condensed > div div:nth-child(21n) { top:64.8%; left:25.2%;} .timepicker .table-condensed > div div:nth-child(22n) { top:50%; left:21.8%;} .timepicker .table-condensed > div div:nth-child(23n) { top:36.2%; left:25.5%;} .timepicker .table-condensed > div div:nth-child(24n) { top:25.6%; left:35.6%;} .timepicker .table-condensed > div div.second:first-child, .timepicker .table-condensed > div div.minute:first-child { top:9.3%; left:50%; } */ /**************************/ .timepicker .table-condensed > div .position-0 { top:21.6%; left:50%;} .timepicker.tHours .table-condensed > div div:first-child { top:9.3%; left:50%; } .timepicker .table-condensed > div .position-1 { top:14.8%; left:70.8%;} .timepicker .table-condensed > div .position-2 { top:30.1%; left:85.4%;} .timepicker .table-condensed > div .position-3 { top:50%; left:91.3%;} .timepicker .table-condensed > div .position-4 { top:71%; left:85.7%;} .timepicker .table-condensed > div .position-5 { top:86%; left:70.8%;} .timepicker .table-condensed > div .position-6 { top:91.4%; left:50%;} .timepicker .table-condensed > div .position-7 { top:85.9%; left:29.6%;} .timepicker .table-condensed > div .position-8 { top:70.8%; left:14.8%;} .timepicker .table-condensed > div .position-9 { top:50%; left:9.3%;} .timepicker .table-condensed > div .position-10 { top:30.1%; left:14.7%;} .timepicker .table-condensed > div .position-11 { top:14.8%; left:29.6%;} .timepicker .table-condensed > div .position-12 { top:9.3%; left:50%;} .timepicker .table-condensed > div .position-13 { top:25.4%; left:64.6%;} .timepicker .table-condensed > div .position-14 { top:36.2%; left:74.4%;} .timepicker .table-condensed > div .position-15 { top:50%; left:78.8%;} .timepicker .table-condensed > div .position-16 { top:64.8%; left:74.9%;} .timepicker .table-condensed > div .position-17 { top:75.4%; left:65%;} .timepicker .table-condensed > div .position-18 { top:79.2%; left:50%;} .timepicker .table-condensed > div .position-19 { top:75.2%; left:35.6%;} .timepicker .table-condensed > div .position-20 { top:64.8%; left:25.2%;} .timepicker .table-condensed > div .position-21 { top:50%; left:21.8%;} .timepicker .table-condensed > div .position-22 { top:36.2%; left:25.5%;} .timepicker .table-condensed > div .position-23 { top:25.6%; left:35.6%;} .timepicker .table-condensed > div div.second:first-child, .timepicker .table-condensed > div div.minute:first-child { top:9.3%; left:50%; } .pmd-time::after{ font-family:"Material icons"; content:"\E192";} .pmd-today::after{ font-family:"Material icons"; content:"\E916";} .pmd-keyboard-arrow-up::after{font-family:"Material icons"; content:"\E192";} .pmd-keyboard-arrow-down::after{font-family:"Material icons"; content:"\E192";} .pmd-keyboard-arrow-right::after{font-family:"Material icons"; content:"\E315";} .pmd-keyboard-arrow-left::after{font-family:"Material icons"; content:"\E314";}
pmd-admin-template-1.2.0/components/datetimepicker/css/pmd-datetimepicker.css
.bootstrap-datetimepicker-widget { font-family: 'Roboto'; font-size: 14px; line-height: 1.42857143; color: #333;} .bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover, .bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover { background:none;} .bootstrap-datetimepicker-widget table th { height: 32px; line-height: 32px; width: 32px; font-weight: normal; opacity: 0.74;} .bootstrap-datetimepicker-widget table td.today:before { display:none;} .bootstrap-datetimepicker-widget .accordion-toggle { text-align: center; background-color: #3472d8;} .bootstrap-datetimepicker-widget .accordion-toggle a { color: #fff; display:inline-block; padding:3px 0; cursor:pointer;} .bootstrap-datetimepicker-widget .accordion-toggle a:hover { background:none; color:#fff;} .bootstrap-datetimepicker-widget table th.picker-switch { width: 145px; font-weight: bold; color: #000; } .bootstrap-datetimepicker-widget table td span { display: inline-block; width: 70px; height: 70px; line-height: 70px; } .bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second { font-weight:normal; font-size: 3.5rem;} .bootstrap-datetimepicker-widget { position:relative; transition:none;} .bootstrap-datetimepicker-widget.dropdown-menu { position:absolute; display: block; visibility: visible; opacity: 1; clip: auto; width:300px; padding:0; margin:0;} .bootstrap-datetimepicker-widget.dropdown-menu:after, .bootstrap-datetimepicker-widget.dropdown-menu:before { display:none;} .bootstrap-datetimepicker-widget .datepicker > div { display:table; width:100%;} .pmd-navbar-left .bootstrap-datetimepicker-widget { width:530px;} .pmd-navbar-left .bootstrap-datetimepicker-widget .timepicker { display:table; width:100%;} .pmd-navbar-left .bootstrap-datetimepicker-widget .timepicker .timepicker-picker, .pmd-navbar-left .bootstrap-datetimepicker-widget .datepicker .topdateinfo { display:table-cell; width:40%; vertical-align:top;} .pmd-navbar-left .bootstrap-datetimepicker-widget table td span { margin:5px;} .pmd-navbar-left .bootstrap-datetimepicker-widget .clockpickerseconds, .pmd-navbar-left .bootstrap-datetimepicker-widget .clockpickerr, .pmd-navbar-left .bootstrap-datetimepicker-widget .clockpickerminute { margin:20px 0;} .bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second { font-size: 2.8rem;} .timepicker .uparrow, .timepicker .time-separator, .timepicker .timeview { font-size: 42px;} /*google materail themes*/ .topdateinfo{ background-color:#4285f4; text-align:center; color:#fff; line-height:1.0} .topdateinfo .dayname{ background-color:#3472d8; padding:8px 0; margin-bottom:0;} .topdateinfo .monthonly{ font-size:1.6rem; text-transform:uppercase;} .topdateinfo .dateonly{ font-size:3.5rem;} .topdateinfo .yearonly{ font-size:1.6rem; margin-bottom:0;} .topdateinfo .datetopcol{ padding:16px 0;} .bootstrap-datetimepicker-widget table td.day span{ height:32px; line-height:32px; width:32px; display:inline-block; margin:0;} .bootstrap-datetimepicker-widget .table-condensed > thead > tr > th, .bootstrap-datetimepicker-widget .table-condensed > tbody > tr > th, .bootstrap-datetimepicker-widget .table-condensed > tfoot > tr > th, .bootstrap-datetimepicker-widget .table-condensed > thead > tr > td, .bootstrap-datetimepicker-widget .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td{ padding:0 0 0 0;} .timepicker > div{} .timepicker-second, .timepicker-hour, .timepicker-minute{ cursor:pointer;} .clockpickerseconds, .clockpickerr, .clockpickerminute{border-radius:50%; width:200px; height:200px; position:relative; background-color:#eceff1; display:inline-block; margin:24px 0 80px 0;} .clockpickerseconds .second, .clockpickerr .hour, .clockpickerminute .minute { display:inline-block; position:absolute; cursor:pointer;} .clockpickerr .hour:nth-child(1){ left:45%;} .clockpickerr .hour:nth-child(2){ left:130px; top:15px;} .clockpickerr .hour:nth-child(3){ left:160px; top:45px;} .clockpickerr .hour:nth-child(4){ left:175px; top:85px;} .clockpickerr .hour:nth-child(5){ left:160px; top:130px;} .clockpickerr .hour:nth-child(6){ left:130px; top:160px;} .clockpickerr .hour:nth-child(7){ left:92px; top:175px;} .clockpickerr .hour:nth-child(8){ left:50px; top:160px;} .clockpickerr .hour:nth-child(9){ left:20px; top:130px;} .clockpickerr .hour:nth-child(10){ left:5px; top:85px;} .clockpickerr .hour:nth-child(11){ left:20px; top:45px;} .clockpickerr .hour:nth-child(12){ left:50px; top:15px;} .clockpickerminute .minute:nth-child(1){ left:45%;} .clockpickerminute .minute:nth-child(2){ left:130px; top:15px;} .clockpickerminute .minute:nth-child(3){ left:160px; top:45px;} .clockpickerminute .minute:nth-child(4){ left:175px; top:85px;} .clockpickerminute .minute:nth-child(5){ left:160px; top:130px;} .clockpickerminute .minute:nth-child(6){ left:130px; top:160px;} .clockpickerminute .minute:nth-child(7){ left:92px; top:175px;} .clockpickerminute .minute:nth-child(8){ left:50px; top:160px;} .clockpickerminute .minute:nth-child(9){ left:20px; top:130px;} .clockpickerminute .minute:nth-child(10){ left:5px; top:85px;} .clockpickerminute .minute:nth-child(11){ left:20px; top:45px;} .clockpickerminute .minute:nth-child(12){ left:50px; top:15px;} .ampmview{width:100%; position:relative;} .ampmview .btn{ width:48px; height:48px; border-radius:50%; min-width:inherit;} .ampmview > div{position:absolute; top:234px; width:100%; left: 16px} .ampmview .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-radius:50%;} .amview{ margin-left:30px;} .pmview{ margin-right:30px;} .timeview{ line-height:1;} .timepicker{ text-align:center;} .timepicker-picker{ background-color:#4285f4; color:#fff; font-size:3.5rem; padding-bottom:5px;} .ampmvalue{ font-size:0.8125rem;} .timepicker-hours, .ampmview, .timepicker-minutes{ background-color:#fff;} .uparrow, .downarrow{ text-align:left; padding-left:42px;} .uparrow .btn, .downarrow .btn{ width:59px; margin:0 10px;} .bootstrap-datetimepicker-widget{ /* position:absolute; */ background-color:#fff;} .bootstrap-datetimepicker-widget table th.prev, .bootstrap-datetimepicker-widget table th.next{ padding-bottom:0;} .bootstrap-datetimepicker-widget table th.prev span, .bootstrap-datetimepicker-widget table th.next span{ padding-top:8px; display:inline-block;} .bootstrap-datetimepicker-widget table thead tr:first-child th:hover{ background-color:inherit;} /*bootstrap-datetimepicker*/ .bootstrap-datetimepicker-widget{ z-index:999; width:300px; -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16), 0 1px 3px 0 rgba(0, 0, 0, 0.12); -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16), 0 1px 3px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16), 0 1px 3px 0 rgba(0, 0, 0, 0.12);} .modal .bootstrap-datetimepicker-widget { box-shadow:none;} .bootstrap-datetimepicker-widget table th { text-transform:capitalize; } .bootstrap-datetimepicker-widget table th.dow { color:#444444; line-height:33px; height:33px; } /*.bootstrap-datetimepicker-widget table td.old { opacity:0.3; } .bootstrap-datetimepicker-widget table td.new { opacity:0.3; }*/ .bootstrap-datetimepicker-widget table td.day { height: 40px; line-height: 40px; width: 40px; } .bootstrap-datetimepicker-widget table td { position:relative; cursor:pointer;} .bootstrap-datetimepicker-widget table td.day span { height: 40px; line-height: 40px; width: 40px; position:absolute; z-index:-1; margin:1px 0 0 -15px; border-radius:500px; -moz-border-radius:500px; -ms-border-radius:500px; -o-border-radius:500px; -webkit-border-radius:500px; top: 0; left: -1px; right: 0;bottom: 0; margin: auto;} .topdateinfo .datetopcol{ padding:0; margin-bottom:0;} .topdateinfo .datetopcol p{ display:inline-block; text-align:left; font-size: 2rem; text-transform: inherit; padding:0; margin:0; padding-right:8px; background-color: transparent;} .topdateinfo{ text-align:left; padding:16px 20px; } .bootstrap-datetimepicker-widget table { margin:5px 0;} .topdateinfo .yearonly{font-size: 1rem; margin-top: 0; margin-bottom:5px; opacity: 0.9;} .bootstrap-datetimepicker-widget table td span { border-radius:500px; -moz-border-radius:500px; -ms-border-radius:500px; -o-border-radius:500px; -webkit-border-radius:500px;} .bootstrap-datetimepicker-widget table td.day:hover span, .bootstrap-datetimepicker-widget table td.hour:hover span, .bootstrap-datetimepicker-widget table td.minute:hover span, .bootstrap-datetimepicker-widget table td.second:hover span { background-color:#eeeeee; } .bootstrap-datetimepicker-widget table td.day.active:hover span, .bootstrap-datetimepicker-widget table td.hour.active:hover span, .bootstrap-datetimepicker-widget table td.minute.active:hover span, .bootstrap-datetimepicker-widget table td.second.active:hover span { background-color:#03a9f5; } .bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover { color:#444444;} .bootstrap-datetimepicker-widget table td.day.disabled:hover span, .bootstrap-datetimepicker-widget table td.hour.disabled:hover span, .bootstrap-datetimepicker-widget table td.minute.disabled:hover span, .bootstrap-datetimepicker-widget table td.second.disabled:hover span{ background:none; } .bootstrap-datetimepicker-widget table td.day.disabled:hover, .bootstrap-datetimepicker-widget table td.hour.disabled:hover, .bootstrap-datetimepicker-widget table td.minute.disabled:hover, .bootstrap-datetimepicker-widget table td.second.disabled:hover { color:#777777;} .bootstrap-datetimepicker-widget table td.day.active:hover span, .bootstrap-datetimepicker-widget table td.hour.active:hover span, .bootstrap-datetimepicker-widget table td.minute.active:hover span, .bootstrap-datetimepicker-widget table td.second.active:hover span, .bootstrap-datetimepicker-widget table td.active span, .bootstrap-datetimepicker-widget table td.active span:hover, .bootstrap-datetimepicker-widget table td span.active { background-color:#4285f4;} .bootstrap-datetimepicker-widget table td.day.active:hover { color:#fff;} .bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active span:hover { color:#fff;} .datepicker-modal .datepicker { padding-bottom:30px;} .datepicker-modal .timepicker { display:none;} .datepicker-modal .datepicker-tab { padding:0; margin:0; display:table; width:100%; background:#444444;} .datepicker-modal .datepicker-tab li { float:left; width:50%; display:table-cell; vertical-align:middle;} .datepicker-modal .datepicker-tab li a { display:block; font-size:18px; border-bottom:5px solid #444444; color:#b2b2b2; height:60px; line-height:60px; position:relative;} .datepicker-modal .datepicker-tab li a.active { color:#fff; border-color:#fff;} .datepicker-modal .datepicker-tab li a.active:before { content:""; width:100%; z-index:10; height:5px; position:absolute; left:0; bottom:-5px; } .timepicker .downarrow .btn, .timepicker .timeview .btn, .timepicker .uparrow .btn { display:none;} .timepicker .uparrow { display:inline-block; padding-left:0;} .timepicker .time-separator { display:inline-block;} .timepicker .timeview { display:inline-block;} .timepicker .downarrow { display:inline-block; padding-left:0;} .timepicker .uparrow, .timepicker .time-separator, .timepicker .timeview { font-size:50px; color:#fff; /*font-family: 'source_sans_proregular', Arial;*/ line-height:normal; } .timepicker .time-separator, .timepicker .downarrow .timepicker-second, .timepicker .uparrow .timepicker-hour, .timepicker .timeview .timepicker-minute { opacity:0.5;} .timepicker .ampmvalue { font-size: 18px; margin-left: 10px;} .timepicker .downarrow .timepicker-second.active, .timepicker .uparrow .timepicker-hour.active, .timepicker .timeview .timepicker-minute.active { opacity:1;} .timepicker .time-separator .separator { margin-top:-20px;} .timepicker .ampmview { width:auto; position:absolute; display:inline-block; font-size:inherit; background:none; top:37px; margin-left:10px;} .timepicker .ampmview .btn-group { position:relative; top:auto; left:auto; width:auto;} .timepicker .ampmview .btn-group .btn { clear:both; background:none; padding:0; font-family: Arial; height: 30px; font-size:20px; margin-right:0; color:#fff; opacity:0.5; } .timepicker .ampmview .btn-group .btn.active { opacity:1;} .timepicker .secondHnad, .timepicker .minuteHnad, .timepicker .hourHnad { position: absolute; top: 50%; left: 50%; height: 2px; background: #4285f4; right: 25px; transform-origin: center left; -moz-transform-origin: center left; -ms-transform-origin: center left; -o-transform-origin: center left; -webkit-transform-origin: center left; transition:all ease-in-out 0.3s; } .bootstrap-datetimepicker-widget .table-condensed .picker-switch { padding-top:8px;} .clockpickerseconds, .clockpickerr, .clockpickerminute { border-radius:500px; -moz-border-radius:500px; -ms-border-radius:500px; -webkit-border-radius:500px; -o-border-radius:500px; width: 270px; height: 270px; margin:30px 0; /* background:url(sm.png) center no-repeat; background-size:auto 77%;*/} .timepicker .clockpickerseconds .second, .timepicker .clockpickerminute .minute, .timepicker .clockpickerr .hour { width:20px; height:20px; line-height:20px; text-align:center; transform:translate(-50%,-50%); -moz-transform:translate(-50%,-50%); -ms-transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); -o-transform:translate(-50%,-50%);} .timepicker .clockpickerseconds .second.active, .timepicker .clockpickerminute .minute.active, .timepicker .clockpickerr .hour.active { color:#fff;} .timepicker .secondHnad:before, .timepicker .minuteHnad:before, .timepicker .hourHnad:before { width:7px; height:7px; content:""; left:-3px; top:50%; position:absolute; background:#4285f4; transform:translateY(-50%); -moz-transform:translateY(-50%); -ms-transform:translateY(-50%); -o-transform:translateY(-50%); -webkit-transform:translateY(-50%); border-radius:25px; -moz-border-radius:25px; -ms-border-radius:25px; -o-border-radius:25px; -webkit-border-radius:25px; } .timepicker .secondHnad:after, .timepicker .minuteHnad:after, .timepicker .hourHnad:after { position: absolute; content: ""; width: 40px; height: 40px; background: #4285f4; right: 0; top: 50%; transform: translate(50%,-50%); -moz-transform: translate(50%,-50%);-ms-transform: translate(50%,-50%);-o-transform: translate(50%,-50%);-webkit-transform: translate(50%,-50%); border-radius: 50px; -moz-border-radius: 50px; -ms-border-radius: 50px; -o-border-radius: 50px; -webkit-border-radius: 50px;} .timepicker .hourHnad.hourHnad-00, .timepicker .hourHnad.hourHnad-13, .timepicker .hourHnad.hourHnad-14, .timepicker .hourHnad.hourHnad-15, .timepicker .hourHnad.hourHnad-16, .timepicker .hourHnad.hourHnad-17, .timepicker .hourHnad.hourHnad-18, .timepicker .hourHnad.hourHnad-19, .timepicker .hourHnad.hourHnad-20, .timepicker .hourHnad.hourHnad-21, .timepicker .hourHnad.hourHnad-22, .timepicker .hourHnad.hourHnad-23, .timepicker .hourHnad.hourHnad-24 { right:57px;} .timepicker .hourHnad.hourHnad-00, .timepicker .hourHnad.hourHnad-12 { transform:rotate(-90deg); -moz-transform:rotate(-90deg); -webkit-transform:rotate(-90deg); -o-transform:rotate(-90deg); -ms-transform:rotate(-90deg);} .timepicker .hourHnad.hourHnad-13, .timepicker .hourHnad.hourHnad-01 { transform:rotate(-60deg); -moz-transform:rotate(-60deg); -webkit-transform:rotate(-60deg); -o-transform:rotate(-60deg); -ms-transform:rotate(-60deg);} .timepicker .hourHnad.hourHnad-14, .timepicker .hourHnad.hourHnad-02 { transform:rotate(-30deg); -moz-transform:rotate(-30deg); -webkit-transform:rotate(-30deg); -o-transform:rotate(-30deg); -ms-transform:rotate(-30deg);} .timepicker .hourHnad.hourHnad-15, .timepicker .hourHnad.hourHnad-03 { transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg); -ms-transform:rotate(0deg);} .timepicker .hourHnad.hourHnad-16, .timepicker .hourHnad.hourHnad-04 { transform:rotate(30deg); -moz-transform:rotate(30deg); -webkit-transform:rotate(30deg); -o-transform:rotate(30deg); -ms-transform:rotate(30deg);} .timepicker .hourHnad.hourHnad-17, .timepicker .hourHnad.hourHnad-05 { transform:rotate(60deg); -moz-transform:rotate(60deg); -webkit-transform:rotate(60deg); -o-transform:rotate(60deg); -ms-transform:rotate(60deg);} .timepicker .hourHnad.hourHnad-18, .timepicker .hourHnad.hourHnad-06 { transform:rotate(90deg); -moz-transform:rotate(90deg); -webkit-transform:rotate(90deg); -o-transform:rotate(90deg); -ms-transform:rotate(90deg);} .timepicker .hourHnad.hourHnad-19, .timepicker .hourHnad.hourHnad-07 { transform:rotate(120deg); -moz-transform:rotate(120deg); -webkit-transform:rotate(120deg); -o-transform:rotate(120deg); -ms-transform:rotate(120deg);} .timepicker .hourHnad.hourHnad-20, .timepicker .hourHnad.hourHnad-08 { transform:rotate(150deg); -moz-transform:rotate(150deg); -webkit-transform:rotate(150deg); -o-transform:rotate(150deg); -ms-transform:rotate(150deg);} .timepicker .hourHnad.hourHnad-21, .timepicker .hourHnad.hourHnad-09 { transform:rotate(180deg); -moz-transform:rotate(180deg); -webkit-transform:rotate(180deg); -o-transform:rotate(180deg); -ms-transform:rotate(180deg);} .timepicker .hourHnad.hourHnad-22, .timepicker .hourHnad.hourHnad-10 { transform:rotate(210deg); -moz-transform:rotate(210deg); -webkit-transform:rotate(210deg); -o-transform:rotate(210deg); -ms-transform:rotate(210deg);} .timepicker .hourHnad.hourHnad-23, .timepicker .hourHnad.hourHnad-11 { transform:rotate(240deg); -moz-transform:rotate(240deg); -webkit-transform:rotate(240deg); -o-transform:rotate(240deg); -ms-transform:rotate(240deg);} .timepicker .secondHnad.secondHnad-00, .timepicker .minuteHnad.minuteHnad-00 { transform:rotate(-90deg); -moz-transform:rotate(-90deg); -webkit-transform:rotate(-90deg); -o-transform:rotate(-90deg); -ms-transform:rotate(-90deg);} .timepicker .secondHnad.secondHnad-01, .timepicker .minuteHnad.minuteHnad-01 { transform:rotate(-84deg); -moz-transform:rotate(-84deg); -webkit-transform:rotate(-84deg); -o-transform:rotate(-84deg); -ms-transform:rotate(-84deg);} .timepicker .secondHnad.secondHnad-02, .timepicker .minuteHnad.minuteHnad-02 { transform:rotate(-78deg); -moz-transform:rotate(-78deg); -webkit-transform:rotate(-78deg); -o-transform:rotate(-78deg); -ms-transform:rotate(-78deg);} .timepicker .secondHnad.secondHnad-03, .timepicker .minuteHnad.minuteHnad-03 { transform:rotate(-72deg); -moz-transform:rotate(-72deg); -webkit-transform:rotate(-72deg); -o-transform:rotate(-72deg); -ms-transform:rotate(-72deg);} .timepicker .secondHnad.secondHnad-04, .timepicker .minuteHnad.minuteHnad-04 { transform:rotate(-66deg); -moz-transform:rotate(-66deg); -webkit-transform:rotate(-66deg); -o-transform:rotate(-66deg); -ms-transform:rotate(-66deg);} .timepicker .secondHnad.secondHnad-05, .timepicker .minuteHnad.minuteHnad-05 { transform:rotate(-60deg); -moz-transform:rotate(-60deg); -webkit-transform:rotate(-60deg); -o-transform:rotate(-60deg); -ms-transform:rotate(-60deg);} .timepicker .secondHnad.secondHnad-06, .timepicker .minuteHnad.minuteHnad-06 { transform:rotate(-54deg); -moz-transform:rotate(-54deg); -webkit-transform:rotate(-54deg); -o-transform:rotate(-54deg); -ms-transform:rotate(-54deg);} .timepicker .secondHnad.secondHnad-07, .timepicker .minuteHnad.minuteHnad-07 { transform:rotate(-48deg); -moz-transform:rotate(-48deg); -webkit-transform:rotate(-48deg); -o-transform:rotate(-48deg); -ms-transform:rotate(-48deg);} .timepicker .secondHnad.secondHnad-08, .timepicker .minuteHnad.minuteHnad-08 { transform:rotate(-42deg); -moz-transform:rotate(-42deg); -webkit-transform:rotate(-42deg); -o-transform:rotate(-42deg); -ms-transform:rotate(-42deg);} .timepicker .secondHnad.secondHnad-09, .timepicker .minuteHnad.minuteHnad-09 { transform:rotate(-36deg); -moz-transform:rotate(-36deg); -webkit-transform:rotate(-36deg); -o-transform:rotate(-36deg); -ms-transform:rotate(-36deg);} .timepicker .secondHnad.secondHnad-10, .timepicker .minuteHnad.minuteHnad-10 { transform:rotate(-30deg); -moz-transform:rotate(-30deg); -webkit-transform:rotate(-30deg); -o-transform:rotate(-30deg); -ms-transform:rotate(-30deg);} .timepicker .secondHnad.secondHnad-11, .timepicker .minuteHnad.minuteHnad-11 { transform:rotate(-24deg); -moz-transform:rotate(-24deg); -webkit-transform:rotate(-24deg); -o-transform:rotate(-24deg); -ms-transform:rotate(-24deg);} .timepicker .secondHnad.secondHnad-12, .timepicker .minuteHnad.minuteHnad-12 { transform:rotate(-18deg); -moz-transform:rotate(-18deg); -webkit-transform:rotate(-18deg); -o-transform:rotate(-18deg); -ms-transform:rotate(-18deg);} .timepicker .secondHnad.secondHnad-13, .timepicker .minuteHnad.minuteHnad-13 { transform:rotate(-12deg); -moz-transform:rotate(-12deg); -webkit-transform:rotate(-12deg); -o-transform:rotate(-12deg); -ms-transform:rotate(-12deg);} .timepicker .secondHnad.secondHnad-14, .timepicker .minuteHnad.minuteHnad-14 { transform:rotate(-6deg); -moz-transform:rotate(-6deg); -webkit-transform:rotate(-6deg); -o-transform:rotate(-6deg); -ms-transform:rotate(-6deg);} .timepicker .secondHnad.secondHnad-15, .timepicker .minuteHnad.minuteHnad-15 { transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg); -ms-transform:rotate(0deg);} .timepicker .secondHnad.secondHnad-16, .timepicker .minuteHnad.minuteHnad-16 { transform:rotate(6deg); -moz-transform:rotate(6deg); -webkit-transform:rotate(6deg); -o-transform:rotate(6deg); -ms-transform:rotate(6deg);} .timepicker .secondHnad.secondHnad-17, .timepicker .minuteHnad.minuteHnad-17 { transform:rotate(12deg); -moz-transform:rotate(12deg); -webkit-transform:rotate(12deg); -o-transform:rotate(12deg); -ms-transform:rotate(12deg);} .timepicker .secondHnad.secondHnad-18, .timepicker .minuteHnad.minuteHnad-18 { transform:rotate(18deg); -moz-transform:rotate(18deg); -webkit-transform:rotate(18deg); -o-transform:rotate(18deg); -ms-transform:rotate(18deg);} .timepicker .secondHnad.secondHnad-19, .timepicker .minuteHnad.minuteHnad-19 { transform:rotate(24deg); -moz-transform:rotate(24deg); -webkit-transform:rotate(24deg); -o-transform:rotate(24deg); -ms-transform:rotate(24deg);} .timepicker .secondHnad.secondHnad-20, .timepicker .minuteHnad.minuteHnad-20 { transform:rotate(30deg); -moz-transform:rotate(30deg); -webkit-transform:rotate(30deg); -o-transform:rotate(30deg); -ms-transform:rotate(30deg);} .timepicker .secondHnad.secondHnad-21, .timepicker .minuteHnad.minuteHnad-21 { transform:rotate(36deg); -moz-transform:rotate(36deg); -webkit-transform:rotate(36deg); -o-transform:rotate(36deg); -ms-transform:rotate(36deg);} .timepicker .secondHnad.secondHnad-22, .timepicker .minuteHnad.minuteHnad-22 { transform:rotate(42deg); -moz-transform:rotate(42deg); -webkit-transform:rotate(42deg); -o-transform:rotate(42deg); -ms-transform:rotate(42deg);} .timepicker .secondHnad.secondHnad-23, .timepicker .minuteHnad.minuteHnad-23 { transform:rotate(48deg); -moz-transform:rotate(48deg); -webkit-transform:rotate(48deg); -o-transform:rotate(48deg); -ms-transform:rotate(48deg);} .timepicker .secondHnad.secondHnad-24, .timepicker .minuteHnad.minuteHnad-24 { transform:rotate(54deg); -moz-transform:rotate(54deg); -webkit-transform:rotate(54deg); -o-transform:rotate(54deg); -ms-transform:rotate(54deg);} .timepicker .secondHnad.secondHnad-25, .timepicker .minuteHnad.minuteHnad-25 { transform:rotate(60deg); -moz-transform:rotate(60deg); -webkit-transform:rotate(60deg); -o-transform:rotate(60deg); -ms-transform:rotate(60deg);} .timepicker .secondHnad.secondHnad-26, .timepicker .minuteHnad.minuteHnad-26 { transform:rotate(66deg); -moz-transform:rotate(66deg); -webkit-transform:rotate(66deg); -o-transform:rotate(66deg); -ms-transform:rotate(66deg);} .timepicker .secondHnad.secondHnad-27, .timepicker .minuteHnad.minuteHnad-27 { transform:rotate(72deg); -moz-transform:rotate(72deg); -webkit-transform:rotate(72deg); -o-transform:rotate(72deg); -ms-transform:rotate(72deg);} .timepicker .secondHnad.secondHnad-28, .timepicker .minuteHnad.minuteHnad-28 { transform:rotate(78deg); -moz-transform:rotate(78deg); -webkit-transform:rotate(78deg); -o-transform:rotate(78deg); -ms-transform:rotate(78deg);} .timepicker .secondHnad.secondHnad-29, .timepicker .minuteHnad.minuteHnad-29 { transform:rotate(84deg); -moz-transform:rotate(84deg); -webkit-transform:rotate(84deg); -o-transform:rotate(84deg); -ms-transform:rotate(84deg);} .timepicker .secondHnad.secondHnad-30, .timepicker .minuteHnad.minuteHnad-30 { transform:rotate(90deg); -moz-transform:rotate(90deg); -webkit-transform:rotate(90deg); -o-transform:rotate(90deg); -ms-transform:rotate(90deg);} .timepicker .secondHnad.secondHnad-31, .timepicker .minuteHnad.minuteHnad-31 { transform:rotate(96deg); -moz-transform:rotate(96deg); -webkit-transform:rotate(96deg); -o-transform:rotate(96deg); -ms-transform:rotate(96deg);} .timepicker .secondHnad.secondHnad-32, .timepicker .minuteHnad.minuteHnad-32 { transform:rotate(102deg); -moz-transform:rotate(102deg); -webkit-transform:rotate(102deg); -o-transform:rotate(102deg); -ms-transform:rotate(102deg);} .timepicker .secondHnad.secondHnad-33, .timepicker .minuteHnad.minuteHnad-33 { transform:rotate(108deg); -moz-transform:rotate(108deg); -webkit-transform:rotate(108deg); -o-transform:rotate(108deg); -ms-transform:rotate(108deg);} .timepicker .secondHnad.secondHnad-34, .timepicker .minuteHnad.minuteHnad-34 { transform:rotate(114deg); -moz-transform:rotate(114deg); -webkit-transform:rotate(114deg); -o-transform:rotate(114deg); -ms-transform:rotate(114deg);} .timepicker .secondHnad.secondHnad-35, .timepicker .minuteHnad.minuteHnad-35 { transform:rotate(120deg); -moz-transform:rotate(120deg); -webkit-transform:rotate(120deg); -o-transform:rotate(120deg); -ms-transform:rotate(120deg);} .timepicker .secondHnad.secondHnad-36, .timepicker .minuteHnad.minuteHnad-36 { transform:rotate(126deg); -moz-transform:rotate(126deg); -webkit-transform:rotate(126deg); -o-transform:rotate(126deg); -ms-transform:rotate(126deg);} .timepicker .secondHnad.secondHnad-37, .timepicker .minuteHnad.minuteHnad-37 { transform:rotate(132deg); -moz-transform:rotate(132deg); -webkit-transform:rotate(132deg); -o-transform:rotate(132deg); -ms-transform:rotate(132deg);} .timepicker .secondHnad.secondHnad-38, .timepicker .minuteHnad.minuteHnad-38 { transform:rotate(138deg); -moz-transform:rotate(138deg); -webkit-transform:rotate(138deg); -o-transform:rotate(138deg); -ms-transform:rotate(138deg);} .timepicker .secondHnad.secondHnad-39, .timepicker .minuteHnad.minuteHnad-39 { transform:rotate(144deg); -moz-transform:rotate(144deg); -webkit-transform:rotate(144deg); -o-transform:rotate(144deg); -ms-transform:rotate(144deg);} .timepicker .secondHnad.secondHnad-40, .timepicker .minuteHnad.minuteHnad-40 { transform:rotate(150deg); -moz-transform:rotate(150deg); -webkit-transform:rotate(150deg); -o-transform:rotate(150deg); -ms-transform:rotate(150deg);} .timepicker .secondHnad.secondHnad-41, .timepicker .minuteHnad.minuteHnad-41 { transform:rotate(156deg); -moz-transform:rotate(156deg); -webkit-transform:rotate(156deg); -o-transform:rotate(156deg); -ms-transform:rotate(156deg);} .timepicker .secondHnad.secondHnad-42, .timepicker .minuteHnad.minuteHnad-42 { transform:rotate(162deg); -moz-transform:rotate(162deg); -webkit-transform:rotate(162deg); -o-transform:rotate(162deg); -ms-transform:rotate(162deg);} .timepicker .secondHnad.secondHnad-43, .timepicker .minuteHnad.minuteHnad-43 { transform:rotate(168deg); -moz-transform:rotate(168deg); -webkit-transform:rotate(168deg); -o-transform:rotate(168deg); -ms-transform:rotate(168deg);} .timepicker .secondHnad.secondHnad-44, .timepicker .minuteHnad.minuteHnad-44 { transform:rotate(174deg); -moz-transform:rotate(174deg); -webkit-transform:rotate(174deg); -o-transform:rotate(174deg); -ms-transform:rotate(174deg);} .timepicker .secondHnad.secondHnad-45, .timepicker .minuteHnad.minuteHnad-45 { transform:rotate(180deg); -moz-transform:rotate(180deg); -webkit-transform:rotate(180deg); -o-transform:rotate(180deg); -ms-transform:rotate(180deg);} .timepicker .secondHnad.secondHnad-46, .timepicker .minuteHnad.minuteHnad-46 { transform:rotate(186deg); -moz-transform:rotate(186deg); -webkit-transform:rotate(186deg); -o-transform:rotate(186deg); -ms-transform:rotate(186deg);} .timepicker .secondHnad.secondHnad-47, .timepicker .minuteHnad.minuteHnad-47 { transform:rotate(192deg); -moz-transform:rotate(192deg); -webkit-transform:rotate(192deg); -o-transform:rotate(192deg); -ms-transform:rotate(192deg);} .timepicker .secondHnad.secondHnad-48, .timepicker .minuteHnad.minuteHnad-48 { transform:rotate(198deg); -moz-transform:rotate(198deg); -webkit-transform:rotate(198deg); -o-transform:rotate(198deg); -ms-transform:rotate(198deg);} .timepicker .secondHnad.secondHnad-49, .timepicker .minuteHnad.minuteHnad-49 { transform:rotate(204deg); -moz-transform:rotate(204deg); -webkit-transform:rotate(204deg); -o-transform:rotate(204deg); -ms-transform:rotate(204deg);} .timepicker .secondHnad.secondHnad-50, .timepicker .minuteHnad.minuteHnad-50 { transform:rotate(210deg); -moz-transform:rotate(210deg); -webkit-transform:rotate(210deg); -o-transform:rotate(210deg); -ms-transform:rotate(210deg);} .timepicker .secondHnad.secondHnad-51, .timepicker .minuteHnad.minuteHnad-51 { transform:rotate(216deg); -moz-transform:rotate(216deg); -webkit-transform:rotate(216deg); -o-transform:rotate(216deg); -ms-transform:rotate(216deg);} .timepicker .secondHnad.secondHnad-52, .timepicker .minuteHnad.minuteHnad-52 { transform:rotate(222deg); -moz-transform:rotate(222deg); -webkit-transform:rotate(222deg); -o-transform:rotate(222deg); -ms-transform:rotate(222deg);} .timepicker .secondHnad.secondHnad-53, .timepicker .minuteHnad.minuteHnad-53 { transform:rotate(228deg); -moz-transform:rotate(228deg); -webkit-transform:rotate(228deg); -o-transform:rotate(228deg); -ms-transform:rotate(228deg);} .timepicker .secondHnad.secondHnad-54, .timepicker .minuteHnad.minuteHnad-54 { transform:rotate(234deg); -moz-transform:rotate(234deg); -webkit-transform:rotate(234deg); -o-transform:rotate(234deg); -ms-transform:rotate(234deg);} .timepicker .secondHnad.secondHnad-55, .timepicker .minuteHnad.minuteHnad-55 { transform:rotate(240deg); -moz-transform:rotate(240deg); -webkit-transform:rotate(240deg); -o-transform:rotate(240deg); -ms-transform:rotate(240deg);} .timepicker .secondHnad.secondHnad-56, .timepicker .minuteHnad.minuteHnad-56 { transform:rotate(246deg); -moz-transform:rotate(246deg); -webkit-transform:rotate(246deg); -o-transform:rotate(246deg); -ms-transform:rotate(246deg);} .timepicker .secondHnad.secondHnad-57, .timepicker .minuteHnad.minuteHnad-57 { transform:rotate(252deg); -moz-transform:rotate(252deg); -webkit-transform:rotate(252deg); -o-transform:rotate(252deg); -ms-transform:rotate(252deg);} .timepicker .secondHnad.secondHnad-58, .timepicker .minuteHnad.minuteHnad-58 { transform:rotate(258deg); -moz-transform:rotate(258deg); -webkit-transform:rotate(258deg); -o-transform:rotate(258deg); -ms-transform:rotate(258deg);} .timepicker .secondHnad.secondHnad-59, .timepicker .minuteHnad.minuteHnad-59 { transform:rotate(264deg); -moz-transform:rotate(264deg); -webkit-transform:rotate(264deg); -o-transform:rotate(264deg); -ms-transform:rotate(264deg);} /*.timepicker .table-condensed > div div:nth-child(1n) { top:21.6%; left:50%;} .timepicker.tHours .table-condensed > div div:first-child { top:9.3%; left:50%; } .timepicker .table-condensed > div div:nth-child(2n) { top:14.8%; left:70.8%;} .timepicker .table-condensed > div div:nth-child(3n) { top:30.1%; left:85.4%;} .timepicker .table-condensed > div div:nth-child(4n) { top:50%; left:91.3%;} .timepicker .table-condensed > div div:nth-child(5n) { top:71%; left:85.7%;} .timepicker .table-condensed > div div:nth-child(6n) { top:86%; left:70.8%;} .timepicker .table-condensed > div div:nth-child(7n) { top:91.4%; left:50%;} .timepicker .table-condensed > div div:nth-child(8n) { top:85.9%; left:29.6%;} .timepicker .table-condensed > div div:nth-child(9n) { top:70.8%; left:14.8%;} .timepicker .table-condensed > div div:nth-child(10n) { top:50%; left:9.3%;} .timepicker .table-condensed > div div:nth-child(11n) { top:30.1%; left:14.7%;} .timepicker .table-condensed > div div:nth-child(12n) { top:14.8%; left:29.6%;} .timepicker .table-condensed > div div:nth-child(13n) { top:9.3%; left:50%;} .timepicker .table-condensed > div div:nth-child(14n) { top:25.4%; left:64.6%;} .timepicker .table-condensed > div div:nth-child(15n) { top:36.2%; left:74.4%;} .timepicker .table-condensed > div div:nth-child(16n) { top:50%; left:78.8%;} .timepicker .table-condensed > div div:nth-child(17n) { top:64.8%; left:74.9%;} .timepicker .table-condensed > div div:nth-child(18n) { top:75.4%; left:65%;} .timepicker .table-condensed > div div:nth-child(19n) { top:79.2%; left:50%;} .timepicker .table-condensed > div div:nth-child(20n) { top:75.2%; left:35.6%;} .timepicker .table-condensed > div div:nth-child(21n) { top:64.8%; left:25.2%;} .timepicker .table-condensed > div div:nth-child(22n) { top:50%; left:21.8%;} .timepicker .table-condensed > div div:nth-child(23n) { top:36.2%; left:25.5%;} .timepicker .table-condensed > div div:nth-child(24n) { top:25.6%; left:35.6%;} .timepicker .table-condensed > div div.second:first-child, .timepicker .table-condensed > div div.minute:first-child { top:9.3%; left:50%; } */ /**************************/ .timepicker .table-condensed > div .position-0 { top:21.6%; left:50%;} .timepicker.tHours .table-condensed > div div:first-child { top:9.3%; left:50%; } .timepicker .table-condensed > div .position-1 { top:14.8%; left:70.8%;} .timepicker .table-condensed > div .position-2 { top:30.1%; left:85.4%;} .timepicker .table-condensed > div .position-3 { top:50%; left:91.3%;} .timepicker .table-condensed > div .position-4 { top:71%; left:85.7%;} .timepicker .table-condensed > div .position-5 { top:86%; left:70.8%;} .timepicker .table-condensed > div .position-6 { top:91.4%; left:50%;} .timepicker .table-condensed > div .position-7 { top:85.9%; left:29.6%;} .timepicker .table-condensed > div .position-8 { top:70.8%; left:14.8%;} .timepicker .table-condensed > div .position-9 { top:50%; left:9.3%;} .timepicker .table-condensed > div .position-10 { top:30.1%; left:14.7%;} .timepicker .table-condensed > div .position-11 { top:14.8%; left:29.6%;} .timepicker .table-condensed > div .position-12 { top:9.3%; left:50%;} .timepicker .table-condensed > div .position-13 { top:25.4%; left:64.6%;} .timepicker .table-condensed > div .position-14 { top:36.2%; left:74.4%;} .timepicker .table-condensed > div .position-15 { top:50%; left:78.8%;} .timepicker .table-condensed > div .position-16 { top:64.8%; left:74.9%;} .timepicker .table-condensed > div .position-17 { top:75.4%; left:65%;} .timepicker .table-condensed > div .position-18 { top:79.2%; left:50%;} .timepicker .table-condensed > div .position-19 { top:75.2%; left:35.6%;} .timepicker .table-condensed > div .position-20 { top:64.8%; left:25.2%;} .timepicker .table-condensed > div .position-21 { top:50%; left:21.8%;} .timepicker .table-condensed > div .position-22 { top:36.2%; left:25.5%;} .timepicker .table-condensed > div .position-23 { top:25.6%; left:35.6%;} .timepicker .table-condensed > div div.second:first-child, .timepicker .table-condensed > div div.minute:first-child { top:9.3%; left:50%; } .pmd-time::after{ font-family:"Material icons"; content:"\E192";} .pmd-today::after{ font-family:"Material icons"; content:"\E916";} .pmd-keyboard-arrow-up::after{font-family:"Material icons"; content:"\E192";} .pmd-keyboard-arrow-down::after{font-family:"Material icons"; content:"\E192";} .pmd-keyboard-arrow-right::after{font-family:"Material icons"; content:"\E315";} .pmd-keyboard-arrow-left::after{font-family:"Material icons"; content:"\E314";}
0.260201
0.064565
.btn-proyect{ position: relative; } .btn-proyect i{ opacity: 0; position: absolute !important; width: 25px; right: 0px; top: 0px; border-radius: 20px; background-color: red; text-align: center; -webkit-transition: all 2s; /* Safari */ transition: all 2s; } .btn-proyect:hover i{ opacity: 1; } .new_service{ position: relative; } .new_service .form-services{ padding-right: 25px; } .new_service .delete_service{ position: absolute; right: 5px; bottom: 25px; color: red; } /* Home */ .maq span { position:absolute; right:0; width:0; background: tomato; border-left: 1px solid #000; animation: escribir 5s steps(30) infinite alternate; } @keyframes escribir { from { width: 100% } to { width:0 } } video { position: fixed; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: -100; transform: translateX(-50%) translateY(-50%); background: url('//demosthenes.info/assets/images/polina.jpg') no-repeat; background-size: cover; transition: 1s opacity; } .space-container{ padding-bottom: 50px; } .container-text > div.row{ padding-top: 20px; } .container-of-categories-home .element-category{ padding: 20px; } .container-of-categories-home .element-category img{ margin: 0px auto; padding: 35px; } .container-of-categories-home p{ min-height: 50px; height: 100%; } /* Hover in Image */ .img-hover{ overflow: hidden; } .img-hover img{ transition: 2s all ease; } .img-hover:hover img{ transform: scale(1.5); } .img-background:before{ content: ""; position: absolute; width: 100%; height:100%; background-color: blue; opacity: .7; } .img-active{ position: relative; } .img-active::before{ position: absolute; top: 5px; right: 5px; content: 'Publicada'; background-color: green; color: white; padding: 0px 5px; opacity: 0.8; } .img-disabled{ position: relative; } .img-disabled::before{ position: absolute; top: 5px; right: 5px; content: 'Por aprobar'; background-color: red; color: white; padding: 0px 5px; opacity: 0.8; } @media (max-width: 500px){ .container-of-categories-home .element-category img{ padding: 0px; } } .pricing-manos .card .card-content{ position: relative; text-align: center; padding: 50px 15px; } .pricing-manos .card .card-content ul{ text-align: left; }
assets/css/app.css
.btn-proyect{ position: relative; } .btn-proyect i{ opacity: 0; position: absolute !important; width: 25px; right: 0px; top: 0px; border-radius: 20px; background-color: red; text-align: center; -webkit-transition: all 2s; /* Safari */ transition: all 2s; } .btn-proyect:hover i{ opacity: 1; } .new_service{ position: relative; } .new_service .form-services{ padding-right: 25px; } .new_service .delete_service{ position: absolute; right: 5px; bottom: 25px; color: red; } /* Home */ .maq span { position:absolute; right:0; width:0; background: tomato; border-left: 1px solid #000; animation: escribir 5s steps(30) infinite alternate; } @keyframes escribir { from { width: 100% } to { width:0 } } video { position: fixed; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: -100; transform: translateX(-50%) translateY(-50%); background: url('//demosthenes.info/assets/images/polina.jpg') no-repeat; background-size: cover; transition: 1s opacity; } .space-container{ padding-bottom: 50px; } .container-text > div.row{ padding-top: 20px; } .container-of-categories-home .element-category{ padding: 20px; } .container-of-categories-home .element-category img{ margin: 0px auto; padding: 35px; } .container-of-categories-home p{ min-height: 50px; height: 100%; } /* Hover in Image */ .img-hover{ overflow: hidden; } .img-hover img{ transition: 2s all ease; } .img-hover:hover img{ transform: scale(1.5); } .img-background:before{ content: ""; position: absolute; width: 100%; height:100%; background-color: blue; opacity: .7; } .img-active{ position: relative; } .img-active::before{ position: absolute; top: 5px; right: 5px; content: 'Publicada'; background-color: green; color: white; padding: 0px 5px; opacity: 0.8; } .img-disabled{ position: relative; } .img-disabled::before{ position: absolute; top: 5px; right: 5px; content: 'Por aprobar'; background-color: red; color: white; padding: 0px 5px; opacity: 0.8; } @media (max-width: 500px){ .container-of-categories-home .element-category img{ padding: 0px; } } .pricing-manos .card .card-content{ position: relative; text-align: center; padding: 50px 15px; } .pricing-manos .card .card-content ul{ text-align: left; }
0.38168
0.066965
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro); * { box-sizing: border-box; } body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden !important; } code { font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; } ::-webkit-scrollbar { width: 0; } .A-Team { height: 100vh; } .welcome-section { height: 100vh; margin: 0 0 400px; position: relative; } .bottom_arrow { width: 50px; } .content { width: 100%; height: 100%; } .error-page { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; height: 100vh; padding: 15px; font-family: monospace; } .error-page_title { width: 100%; font-size: 40px; text-align: center; white-space: nowrap; } .error-page_text { width: 80%; text-align: center; font-size: 16px; margin-top: 0; } .error-page_button { text-decoration: none; padding: 5px 10px; border: 1px solid black; border-radius: 5px; color: black; } .name { position: absolute; top: 3%; left: 3%; font-size: 45px; font-family: monospace; color: white; background: black; padding: 0 10px; } h2, h1 { margin: 20px 30px; font-family: monospace; } h1 { font-size: 3.5vw; } section { padding: 1px 0 0; } .middle-section { width: 100%; height: 60vh; text-align: center; font-family: monospace; margin-top: 20px; padding: 1px 0 0; font-size: 27px; } .hero-section { overflow: hidden; height: 40vh; } .hero-logo { width: 100%; } .home-subtitle { font-weight: normal; font-size: 35px; } /* Global */ .line-1 { width: 100%; margin-left: auto; margin-right: auto; margin-top: 20px; border-right: 2px solid black; font-size: 20px; text-align: center; white-space: nowrap; overflow: hidden; transform: translateY(-50%); } /* Animation */ .anim-typewriter { animation: typewriter 4s steps(45) 1s 1 normal both, blinkTextCursor 500ms steps(45) infinite normal; animation-delay: 6s; } @keyframes typewriter { from { width: 0; } to { width: 24.6em; } } @keyframes blinkTextCursor { from { border-right-color: black; } to { border-right-color: transparent; } } .animation-arrow { position: absolute; width: 50px; height: 50px; bottom: 20px; left: calc(50% - 25px); animation: arrow 1s ease 10s infinite alternate none; } @keyframes arrow { 0% { bottom: 20px; } 25% { bottom: 30px; } 50% { bottom: 20px; } 75% { bottom: 30px; } 100% { bottom: 20px; } } /* media-queries */ @media screen and (max-width: 1025px) { .welcome-section { margin: 0; } } @media screen and (max-width: 769px) { h1 { font-size: 40px; } .home-subtitle { font-size: 30px; } } @media screen and (max-width: 621px) { .bottom_arrow { width: 30px; } .animation-arrow { width: 30px; height: 30px; bottom: 20px; left: calc(50% - 15px); } } @media screen and (max-width: 501px) { .line-1 { font-size: 16px; } h1 { font-size: 7vw; } h2 { font-size: 30px; } .home-subtitle { font-size: 5vw; } } @media screen and (max-width: 425px) { .name { font-size: 30px; } .line-1 { font-size: 14px; } } @media screen and (max-width: 376px) { .line-1 { font-size: 10px; } } @media screen and (max-width: 321px) { h2 { font-size: 20px; } }
src/App.css
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro); * { box-sizing: border-box; } body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden !important; } code { font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; } ::-webkit-scrollbar { width: 0; } .A-Team { height: 100vh; } .welcome-section { height: 100vh; margin: 0 0 400px; position: relative; } .bottom_arrow { width: 50px; } .content { width: 100%; height: 100%; } .error-page { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; height: 100vh; padding: 15px; font-family: monospace; } .error-page_title { width: 100%; font-size: 40px; text-align: center; white-space: nowrap; } .error-page_text { width: 80%; text-align: center; font-size: 16px; margin-top: 0; } .error-page_button { text-decoration: none; padding: 5px 10px; border: 1px solid black; border-radius: 5px; color: black; } .name { position: absolute; top: 3%; left: 3%; font-size: 45px; font-family: monospace; color: white; background: black; padding: 0 10px; } h2, h1 { margin: 20px 30px; font-family: monospace; } h1 { font-size: 3.5vw; } section { padding: 1px 0 0; } .middle-section { width: 100%; height: 60vh; text-align: center; font-family: monospace; margin-top: 20px; padding: 1px 0 0; font-size: 27px; } .hero-section { overflow: hidden; height: 40vh; } .hero-logo { width: 100%; } .home-subtitle { font-weight: normal; font-size: 35px; } /* Global */ .line-1 { width: 100%; margin-left: auto; margin-right: auto; margin-top: 20px; border-right: 2px solid black; font-size: 20px; text-align: center; white-space: nowrap; overflow: hidden; transform: translateY(-50%); } /* Animation */ .anim-typewriter { animation: typewriter 4s steps(45) 1s 1 normal both, blinkTextCursor 500ms steps(45) infinite normal; animation-delay: 6s; } @keyframes typewriter { from { width: 0; } to { width: 24.6em; } } @keyframes blinkTextCursor { from { border-right-color: black; } to { border-right-color: transparent; } } .animation-arrow { position: absolute; width: 50px; height: 50px; bottom: 20px; left: calc(50% - 25px); animation: arrow 1s ease 10s infinite alternate none; } @keyframes arrow { 0% { bottom: 20px; } 25% { bottom: 30px; } 50% { bottom: 20px; } 75% { bottom: 30px; } 100% { bottom: 20px; } } /* media-queries */ @media screen and (max-width: 1025px) { .welcome-section { margin: 0; } } @media screen and (max-width: 769px) { h1 { font-size: 40px; } .home-subtitle { font-size: 30px; } } @media screen and (max-width: 621px) { .bottom_arrow { width: 30px; } .animation-arrow { width: 30px; height: 30px; bottom: 20px; left: calc(50% - 15px); } } @media screen and (max-width: 501px) { .line-1 { font-size: 16px; } h1 { font-size: 7vw; } h2 { font-size: 30px; } .home-subtitle { font-size: 5vw; } } @media screen and (max-width: 425px) { .name { font-size: 30px; } .line-1 { font-size: 14px; } } @media screen and (max-width: 376px) { .line-1 { font-size: 10px; } } @media screen and (max-width: 321px) { h2 { font-size: 20px; } }
0.461502
0.117496
.x-panel-header-light-framed-collapsed-right-tc { height: 5px; } /* line 372, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-right-bc { height: 5px; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-right-tl, .x-panel-header-light-framed-collapsed-right-bl, .x-panel-header-light-framed-collapsed-right-tr, .x-panel-header-light-framed-collapsed-right-br, .x-panel-header-light-framed-collapsed-right-tc, .x-panel-header-light-framed-collapsed-right-bc, .x-panel-header-light-framed-collapsed-right-ml, .x-panel-header-light-framed-collapsed-right-mr { background-image: url(images/panel-header/panel-header-light-framed-collapsed-right-corners.png); } /* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-panel-header-light-framed-collapsed-right-tl, .x-rtl.x-panel-header-light-framed-collapsed-right-ml, .x-rtl.x-panel-header-light-framed-collapsed-right-bl, .x-rtl.x-panel-header-light-framed-collapsed-right-tr, .x-rtl.x-panel-header-light-framed-collapsed-right-mr, .x-rtl.x-panel-header-light-framed-collapsed-right-br { background-image: url(images/panel-header/panel-header-light-framed-collapsed-right-corners-rtl.png); } /* line 423, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-right-ml, .x-panel-header-light-framed-collapsed-right-mr { background-image: url(images/panel-header/panel-header-light-framed-collapsed-right-sides.png); background-repeat: repeat-y; } /* line 433, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-right-mc { padding: 11px 1px 11px 1px; } /*<if slicer>*/ /* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-panel-header-light-framed-collapsed-right:after { display: none; content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-right-corners.png), corners-rtl:url(images/panel-header/panel-header-light-framed-collapsed-right-corners-rtl.png), sides:url(images/panel-header/panel-header-light-framed-collapsed-right-sides.png)"; } /*</if slicer>*/ /* */ /* line 146, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; padding: 1px 11px 1px 11px; border-width: 5px; border-style: solid; background-color: #dfeaf2; } /* line 196, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-mc { background-color: #dfeaf2; } /* line 243, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-panel-header-light-framed-collapsed-bottom { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent; } /* line 258, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-frameInfo { font-family: dh-4-4-4-4-5-5-5-5-1-11-1-11; } /* line 324, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-tl { background-position: 0 -10px; } /* line 328, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-tr { background-position: right -15px; } /* line 332, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-bl { background-position: 0 -20px; } /* line 336, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-br { background-position: right -25px; } /* line 340, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-ml { background-position: 0 bottom; } /* line 344, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-mr { background-position: right bottom; } /* line 348, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-tc { background-position: 0 0; } /* line 352, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-bc { background-position: 0 -5px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-tr, .x-panel-header-light-framed-collapsed-bottom-br, .x-panel-header-light-framed-collapsed-bottom-mr { padding-right: 5px; } /* line 365, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-tl, .x-panel-header-light-framed-collapsed-bottom-bl, .x-panel-header-light-framed-collapsed-bottom-ml { padding-left: 5px; } /* line 369, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-tc { height: 5px; } /* line 372, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-bc { height: 5px; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-tl, .x-panel-header-light-framed-collapsed-bottom-bl, .x-panel-header-light-framed-collapsed-bottom-tr, .x-panel-header-light-framed-collapsed-bottom-br, .x-panel-header-light-framed-collapsed-bottom-tc, .x-panel-header-light-framed-collapsed-bottom-bc, .x-panel-header-light-framed-collapsed-bottom-ml, .x-panel-header-light-framed-collapsed-bottom-mr { background-image: url(images/panel-header/panel-header-light-framed-collapsed-bottom-corners.png); } /* line 423, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-ml, .x-panel-header-light-framed-collapsed-bottom-mr { background-image: url(images/panel-header/panel-header-light-framed-collapsed-bottom-sides.png); background-repeat: repeat-y; } /* line 433, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-mc { padding: 1px 11px 1px 11px; } /*<if slicer>*/ /* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-panel-header-light-framed-collapsed-bottom:after { display: none; content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-bottom-corners.png), sides:url(images/panel-header/panel-header-light-framed-collapsed-bottom-sides.png)"; } /*</if slicer>*/ /* */ /* line 146, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; padding: 11px 1px 11px 1px; border-width: 5px; border-style: solid; background-color: #dfeaf2; } /* line 185, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-panel-header-light-framed-collapsed-left { background-image: none; background-color: #dfeaf2; } /* line 196, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-mc { background-color: #dfeaf2; } /* line 243, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-panel-header-light-framed-collapsed-left { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent; } /* line 258, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-frameInfo { font-family: dh-4-4-4-4-5-5-5-5-11-1-11-1; } /* line 324, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-tl { background-position: 0 -10px; } /* line 328, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-tr { background-position: right -15px; } /* line 332, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-bl { background-position: 0 -20px; } /* line 336, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-br { background-position: right -25px; } /* line 340, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-ml { background-position: 0 left; } /* line 344, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-mr { background-position: right left; } /* line 348, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-tc { background-position: 0 0; } /* line 352, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-bc { background-position: 0 -5px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-tr, .x-panel-header-light-framed-collapsed-left-br, .x-panel-header-light-framed-collapsed-left-mr { padding-right: 5px; } /* line 365, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-tl, .x-panel-header-light-framed-collapsed-left-bl, .x-panel-header-light-framed-collapsed-left-ml { padding-left: 5px; } /* line 369, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-tc { height: 5px; } /* line 372, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-bc { height: 5px; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-tl, .x-panel-header-light-framed-collapsed-left-bl, .x-panel-header-light-framed-collapsed-left-tr, .x-panel-header-light-framed-collapsed-left-br, .x-panel-header-light-framed-collapsed-left-tc, .x-panel-header-light-framed-collapsed-left-bc, .x-panel-header-light-framed-collapsed-left-ml, .x-panel-header-light-framed-collapsed-left-mr { background-image: url(images/panel-header/panel-header-light-framed-collapsed-left-corners.png); } /* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-panel-header-light-framed-collapsed-left-tl, .x-rtl.x-panel-header-light-framed-collapsed-left-ml, .x-rtl.x-panel-header-light-framed-collapsed-left-bl, .x-rtl.x-panel-header-light-framed-collapsed-left-tr, .x-rtl.x-panel-header-light-framed-collapsed-left-mr, .x-rtl.x-panel-header-light-framed-collapsed-left-br { background-image: url(images/panel-header/panel-header-light-framed-collapsed-left-corners-rtl.png); } /* line 423, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-ml, .x-panel-header-light-framed-collapsed-left-mr { background-image: url(images/panel-header/panel-header-light-framed-collapsed-left-sides.png); background-repeat: repeat-y; } /* line 433, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-mc { padding: 11px 1px 11px 1px; } /*<if slicer>*/ /* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-panel-header-light-framed-collapsed-left:after { display: none; content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-left-corners.png), corners-rtl:url(images/panel-header/panel-header-light-framed-collapsed-left-corners-rtl.png), sides:url(images/panel-header/panel-header-light-framed-collapsed-left-sides.png)"; } /*</if slicer>*/ /* */ /* line 434, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-light-framed-top { border-bottom-width: 5px !important; } /* line 438, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-light-framed-right { border-left-width: 5px !important; } /* line 442, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-light-framed-bottom { border-top-width: 5px !important; } /* line 446, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-light-framed-left { border-right-width: 5px !important; } /* line 452, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-nbr .x-panel-header-light-framed-collapsed-top { border-bottom-width: 0 !important; } /* line 456, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-nbr .x-panel-header-light-framed-collapsed-right { border-left-width: 0 !important; } /* line 460, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-nbr .x-panel-header-light-framed-collapsed-bottom { border-top-width: 0 !important; } /* line 464, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-nbr .x-panel-header-light-framed-collapsed-left { border-right-width: 0 !important; } /* line 562, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-panel-header-text-container { -webkit-transform: rotate(90deg); -webkit-transform-origin: 0 0; -moz-transform: rotate(90deg); -moz-transform-origin: 0 0; -o-transform: rotate(90deg); -o-transform-origin: 0 0; transform: rotate(90deg); transform-origin: 0 0; } /* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ .x-ie9m .x-panel-header-light-framed-vertical .x-panel-header-text-container { background-color: #dfeaf2; filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2); } /* line 567, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-rtl.x-panel-header-text-container { -webkit-transform: rotate(270deg); -webkit-transform-origin: 100% 0; -moz-transform: rotate(270deg); -moz-transform-origin: 100% 0; -o-transform: rotate(270deg); -o-transform-origin: 100% 0; transform: rotate(270deg); transform-origin: 100% 0; } /* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ .x-ie9m .x-panel-header-light-framed-vertical .x-rtl.x-panel-header-text-container { background-color: #dfeaf2; filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2); } /* line 591, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed .x-panel-header-icon { width: 16px; height: 16px; background-position: center center; } /* line 596, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed .x-panel-header-glyph { color: white; font-size: 16px; line-height: 16px; opacity: 0.5; } /* line 613, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-ie8 .x-panel-header-light-framed .x-panel-header-glyph { color: #eff4f8; } /* line 622, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-panel-header-icon-before-title { margin: 0 6px 0 0; } /* line 627, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-rtl.x-panel-header-icon-before-title { margin: 0 0 0 6px; } /* line 632, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-panel-header-icon-after-title { margin: 0 0 0 6px; } /* line 637, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-rtl.x-panel-header-icon-after-title { margin: 0 6px 0 0; } /* line 644, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-panel-header-icon-before-title { margin: 0 0 6px 0; } /* line 649, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-rtl.x-panel-header-icon-before-title { margin: 0 0 6px 0; } /* line 654, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-panel-header-icon-after-title { margin: 6px 0 0 0; } /* line 659, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-rtl.x-panel-header-icon-after-title { margin: 6px 0 0 0; } /* line 667, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-tool-after-title { margin: 0 0 0 6px; } /* line 672, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-rtl.x-tool-after-title { margin: 0 6px 0 0; } /* line 677, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-tool-before-title { margin: 0 6px 0 0; } /* line 682, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-rtl.x-tool-before-title { margin: 0 0 0 6px; } /* line 689, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-tool-after-title { margin: 6px 0 0 0; } /* line 694, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-rtl.x-tool-after-title { margin: 6px 0 0 0; } /* line 699, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-tool-before-title { margin: 0 0 6px 0; } /* line 704, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-rtl.x-tool-before-title { margin: 0 0 6px 0; } /* line 712, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-light-framed-collapsed-border-right { border-right-width: 5px !important; } /* line 715, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-light-framed-collapsed-border-left { border-left-width: 5px !important; } /* line 726, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable { overflow: visible; } /* line 729, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; } /* line 738, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-north-br { top: -5px; } /* line 741, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-south-br { bottom: -5px; } /* line 744, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-east-br { right: -5px; } /* line 747, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-west-br { left: -5px; } /* line 750, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-northwest-br { left: -5px; top: -5px; } /* line 754, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-northeast-br { right: -5px; top: -5px; } /* line 758, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-southeast-br { right: -5px; bottom: -5px; } /* line 762, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-southwest-br { left: -5px; bottom: -5px; } /* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-l { border-left-color: #dfeaf2 !important; border-left-width: 5px !important; } /* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-b { border-bottom-color: #dfeaf2 !important; border-bottom-width: 5px !important; } /* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-bl { border-bottom-color: #dfeaf2 !important; border-bottom-width: 5px !important; border-left-color: #dfeaf2 !important; border-left-width: 5px !important; } /* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-r { border-right-color: #dfeaf2 !important; border-right-width: 5px !important; } /* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-rl { border-right-color: #dfeaf2 !important; border-right-width: 5px !important; border-left-color: #dfeaf2 !important; border-left-width: 5px !important; } /* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-rb { border-right-color: #dfeaf2 !important; border-right-width: 5px !important; border-bottom-color: #dfeaf2 !important; border-bottom-width: 5px !important; } /* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-rbl { border-right-color: #dfeaf2 !important; border-right-width: 5px !important; border-bottom-color: #dfeaf2 !important; border-bottom-width: 5px !important; border-left-color: #dfeaf2 !important; border-left-width: 5px !important; } /* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-t { border-top-color: #dfeaf2 !important; border-top-width: 5px !important; } /* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-tl { border-top-color: #dfeaf2 !important; border-top-width: 5px !important; border-left-color: #dfeaf2 !important; border-left-width: 5px !important; } /* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-tb { border-top-color: #dfeaf2 !important; border-top-width: 5px !important; border-bottom-color: #dfeaf2 !important; border-bottom-width: 5px !important; } /* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-tbl { border-top-color: #dfeaf2 !important; border-top-width: 5px !important; border-bottom-color: #dfeaf2 !important; border-bottom-width: 5px !important; border-left-color: #dfeaf2 !important; border-left-width: 5px !important; } /* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-tr { border-top-color: #dfeaf2 !important; border-top-width: 5px !important; border-right-color: #dfeaf2 !important; border-right-width: 5px !important; } /* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-trl { border-top-color: #dfeaf2 !important; border-top-width: 5px !important; border-right-color: #dfeaf2 !important; border-right-width: 5px !important; border-left-color: #dfeaf2 !important; border-left-width: 5px !important; } /* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-trb { border-top-color: #dfeaf2 !important; border-top-width: 5px !important; border-right-color: #dfeaf2 !important; border-right-width: 5px !important; border-bottom-color: #dfeaf2 !important; border-bottom-width: 5px !important; } /* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-trbl { border-color: #dfeaf2 !important; border-width: 5px !important; } /* line 1, ../../../ext-theme-neptune/sass/src/grid/header/Container.scss */ .x-grid-header-ct { border: 1px solid #c1c1c1; } /* line 6, ../../../ext-theme-neptune/sass/src/grid/column/Column.scss */ .x-column-header-trigger { background: #eef6fb url(images/grid/hd-pop.png) no-repeat center center; border-left: 1px solid #c1c1c1; } /* line 12, ../../../ext-theme-neptune/sass/src/grid/column/Column.scss */ .x-rtl.x-column-header-trigger { border-right: 1px solid #c1c1c1; border-left: 0; } /* line 18, ../../../ext-theme-neptune/sass/src/grid/column/Column.scss */ .x-column-header-last { border-right-width: 0; } /* line 20, ../../../ext-theme-neptune/sass/src/grid/column/Column.scss */ .x-column-header-last .x-column-header-over .x-column-header-trigger { border-right: 1px solid #c1c1c1; } /* line 26, ../../../ext-theme-neptune/sass/src/grid/column/Column.scss */ .x-rtl.x-column-header-last { border-left-width: 0; } /* line 28, ../../../ext-theme-neptune/sass/src/grid/column/Column.scss */ .x-rtl.x-column-header-last .x-column-header-over .x-column-header-trigger { border-left: 1px solid #c1c1c1; } /* line 3, ../../../ext-theme-neptune/sass/src/form/field/File.scss */ .x-form-file-wrap .x-form-trigger-wrap { border: 0; } /* line 7, ../../../ext-theme-neptune/sass/src/form/field/File.scss */ .x-form-file-wrap .x-form-trigger-wrap .x-form-text { border: 1px solid; border-color: #c1c1c1 #d9d9d9 #d9d9d9; height: 32px; } /* line 1, ../../../ext-theme-neptune/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-container { border: 1px solid; border-color: #c1c1c1 #d9d9d9 #d9d9d9; } /* line 1, ../../../ext-theme-neptune/sass/src/resizer/Resizer.scss */ .x-resizable-handle { background-color: #c1c1c1; background-repeat: no-repeat; } /* line 10, ../../../ext-theme-neptune/sass/src/resizer/Resizer.scss */ .x-resizable-over .x-resizable-handle-east, .x-resizable-over .x-resizable-handle-west, .x-resizable-pinned .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-west { background-position: center; } /* line 15, ../../../ext-theme-neptune/sass/src/resizer/Resizer.scss */ .x-resizable-over .x-resizable-handle-south, .x-resizable-over .x-resizable-handle-north, .x-resizable-pinned .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-north { background-position: center; } /* line 19, ../../../ext-theme-neptune/sass/src/resizer/Resizer.scss */ .x-resizable-over .x-resizable-handle-southeast, .x-resizable-pinned .x-resizable-handle-southeast { background-position: -2px -2px; } /* line 23, ../../../ext-theme-neptune/sass/src/resizer/Resizer.scss */ .x-resizable-over .x-resizable-handle-northwest, .x-resizable-pinned .x-resizable-handle-northwest { background-position: 2px 2px; } /* line 27, ../../../ext-theme-neptune/sass/src/resizer/Resizer.scss */ .x-resizable-over .x-resizable-handle-northeast, .x-resizable-pinned .x-resizable-handle-northeast { background-position: -2px 2px; } /* line 31, ../../../ext-theme-neptune/sass/src/resizer/Resizer.scss */ .x-resizable-over .x-resizable-handle-southwest, .x-resizable-pinned .x-resizable-handle-southwest { background-position: 2px -2px; }
app/templates/extjs_sdk/ext-5.0.0.736/packages/ext-theme-neptune-touch/build/resources/ext-theme-neptune-touch-all-rtl-debug_02.css
.x-panel-header-light-framed-collapsed-right-tc { height: 5px; } /* line 372, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-right-bc { height: 5px; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-right-tl, .x-panel-header-light-framed-collapsed-right-bl, .x-panel-header-light-framed-collapsed-right-tr, .x-panel-header-light-framed-collapsed-right-br, .x-panel-header-light-framed-collapsed-right-tc, .x-panel-header-light-framed-collapsed-right-bc, .x-panel-header-light-framed-collapsed-right-ml, .x-panel-header-light-framed-collapsed-right-mr { background-image: url(images/panel-header/panel-header-light-framed-collapsed-right-corners.png); } /* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-panel-header-light-framed-collapsed-right-tl, .x-rtl.x-panel-header-light-framed-collapsed-right-ml, .x-rtl.x-panel-header-light-framed-collapsed-right-bl, .x-rtl.x-panel-header-light-framed-collapsed-right-tr, .x-rtl.x-panel-header-light-framed-collapsed-right-mr, .x-rtl.x-panel-header-light-framed-collapsed-right-br { background-image: url(images/panel-header/panel-header-light-framed-collapsed-right-corners-rtl.png); } /* line 423, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-right-ml, .x-panel-header-light-framed-collapsed-right-mr { background-image: url(images/panel-header/panel-header-light-framed-collapsed-right-sides.png); background-repeat: repeat-y; } /* line 433, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-right-mc { padding: 11px 1px 11px 1px; } /*<if slicer>*/ /* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-panel-header-light-framed-collapsed-right:after { display: none; content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-right-corners.png), corners-rtl:url(images/panel-header/panel-header-light-framed-collapsed-right-corners-rtl.png), sides:url(images/panel-header/panel-header-light-framed-collapsed-right-sides.png)"; } /*</if slicer>*/ /* */ /* line 146, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; padding: 1px 11px 1px 11px; border-width: 5px; border-style: solid; background-color: #dfeaf2; } /* line 196, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-mc { background-color: #dfeaf2; } /* line 243, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-panel-header-light-framed-collapsed-bottom { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent; } /* line 258, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-frameInfo { font-family: dh-4-4-4-4-5-5-5-5-1-11-1-11; } /* line 324, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-tl { background-position: 0 -10px; } /* line 328, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-tr { background-position: right -15px; } /* line 332, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-bl { background-position: 0 -20px; } /* line 336, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-br { background-position: right -25px; } /* line 340, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-ml { background-position: 0 bottom; } /* line 344, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-mr { background-position: right bottom; } /* line 348, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-tc { background-position: 0 0; } /* line 352, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-bc { background-position: 0 -5px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-tr, .x-panel-header-light-framed-collapsed-bottom-br, .x-panel-header-light-framed-collapsed-bottom-mr { padding-right: 5px; } /* line 365, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-tl, .x-panel-header-light-framed-collapsed-bottom-bl, .x-panel-header-light-framed-collapsed-bottom-ml { padding-left: 5px; } /* line 369, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-tc { height: 5px; } /* line 372, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-bc { height: 5px; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-tl, .x-panel-header-light-framed-collapsed-bottom-bl, .x-panel-header-light-framed-collapsed-bottom-tr, .x-panel-header-light-framed-collapsed-bottom-br, .x-panel-header-light-framed-collapsed-bottom-tc, .x-panel-header-light-framed-collapsed-bottom-bc, .x-panel-header-light-framed-collapsed-bottom-ml, .x-panel-header-light-framed-collapsed-bottom-mr { background-image: url(images/panel-header/panel-header-light-framed-collapsed-bottom-corners.png); } /* line 423, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-ml, .x-panel-header-light-framed-collapsed-bottom-mr { background-image: url(images/panel-header/panel-header-light-framed-collapsed-bottom-sides.png); background-repeat: repeat-y; } /* line 433, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-bottom-mc { padding: 1px 11px 1px 11px; } /*<if slicer>*/ /* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-panel-header-light-framed-collapsed-bottom:after { display: none; content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-bottom-corners.png), sides:url(images/panel-header/panel-header-light-framed-collapsed-bottom-sides.png)"; } /*</if slicer>*/ /* */ /* line 146, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; padding: 11px 1px 11px 1px; border-width: 5px; border-style: solid; background-color: #dfeaf2; } /* line 185, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-panel-header-light-framed-collapsed-left { background-image: none; background-color: #dfeaf2; } /* line 196, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-mc { background-color: #dfeaf2; } /* line 243, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-nbr .x-panel-header-light-framed-collapsed-left { padding: 0 !important; border-width: 0 !important; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; background-color: transparent; } /* line 258, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-frameInfo { font-family: dh-4-4-4-4-5-5-5-5-11-1-11-1; } /* line 324, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-tl { background-position: 0 -10px; } /* line 328, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-tr { background-position: right -15px; } /* line 332, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-bl { background-position: 0 -20px; } /* line 336, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-br { background-position: right -25px; } /* line 340, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-ml { background-position: 0 left; } /* line 344, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-mr { background-position: right left; } /* line 348, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-tc { background-position: 0 0; } /* line 352, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-bc { background-position: 0 -5px; } /* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-tr, .x-panel-header-light-framed-collapsed-left-br, .x-panel-header-light-framed-collapsed-left-mr { padding-right: 5px; } /* line 365, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-tl, .x-panel-header-light-framed-collapsed-left-bl, .x-panel-header-light-framed-collapsed-left-ml { padding-left: 5px; } /* line 369, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-tc { height: 5px; } /* line 372, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-bc { height: 5px; } /* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-tl, .x-panel-header-light-framed-collapsed-left-bl, .x-panel-header-light-framed-collapsed-left-tr, .x-panel-header-light-framed-collapsed-left-br, .x-panel-header-light-framed-collapsed-left-tc, .x-panel-header-light-framed-collapsed-left-bc, .x-panel-header-light-framed-collapsed-left-ml, .x-panel-header-light-framed-collapsed-left-mr { background-image: url(images/panel-header/panel-header-light-framed-collapsed-left-corners.png); } /* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-rtl.x-panel-header-light-framed-collapsed-left-tl, .x-rtl.x-panel-header-light-framed-collapsed-left-ml, .x-rtl.x-panel-header-light-framed-collapsed-left-bl, .x-rtl.x-panel-header-light-framed-collapsed-left-tr, .x-rtl.x-panel-header-light-framed-collapsed-left-mr, .x-rtl.x-panel-header-light-framed-collapsed-left-br { background-image: url(images/panel-header/panel-header-light-framed-collapsed-left-corners-rtl.png); } /* line 423, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-ml, .x-panel-header-light-framed-collapsed-left-mr { background-image: url(images/panel-header/panel-header-light-framed-collapsed-left-sides.png); background-repeat: repeat-y; } /* line 433, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ .x-panel-header-light-framed-collapsed-left-mc { padding: 11px 1px 11px 1px; } /*<if slicer>*/ /* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ .x-panel-header-light-framed-collapsed-left:after { display: none; content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-left-corners.png), corners-rtl:url(images/panel-header/panel-header-light-framed-collapsed-left-corners-rtl.png), sides:url(images/panel-header/panel-header-light-framed-collapsed-left-sides.png)"; } /*</if slicer>*/ /* */ /* line 434, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-light-framed-top { border-bottom-width: 5px !important; } /* line 438, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-light-framed-right { border-left-width: 5px !important; } /* line 442, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-light-framed-bottom { border-top-width: 5px !important; } /* line 446, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel .x-panel-header-light-framed-left { border-right-width: 5px !important; } /* line 452, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-nbr .x-panel-header-light-framed-collapsed-top { border-bottom-width: 0 !important; } /* line 456, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-nbr .x-panel-header-light-framed-collapsed-right { border-left-width: 0 !important; } /* line 460, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-nbr .x-panel-header-light-framed-collapsed-bottom { border-top-width: 0 !important; } /* line 464, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-nbr .x-panel-header-light-framed-collapsed-left { border-right-width: 0 !important; } /* line 562, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-panel-header-text-container { -webkit-transform: rotate(90deg); -webkit-transform-origin: 0 0; -moz-transform: rotate(90deg); -moz-transform-origin: 0 0; -o-transform: rotate(90deg); -o-transform-origin: 0 0; transform: rotate(90deg); transform-origin: 0 0; } /* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ .x-ie9m .x-panel-header-light-framed-vertical .x-panel-header-text-container { background-color: #dfeaf2; filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2); } /* line 567, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-rtl.x-panel-header-text-container { -webkit-transform: rotate(270deg); -webkit-transform-origin: 100% 0; -moz-transform: rotate(270deg); -moz-transform-origin: 100% 0; -o-transform: rotate(270deg); -o-transform-origin: 100% 0; transform: rotate(270deg); transform-origin: 100% 0; } /* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ .x-ie9m .x-panel-header-light-framed-vertical .x-rtl.x-panel-header-text-container { background-color: #dfeaf2; filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2); } /* line 591, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed .x-panel-header-icon { width: 16px; height: 16px; background-position: center center; } /* line 596, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed .x-panel-header-glyph { color: white; font-size: 16px; line-height: 16px; opacity: 0.5; } /* line 613, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-ie8 .x-panel-header-light-framed .x-panel-header-glyph { color: #eff4f8; } /* line 622, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-panel-header-icon-before-title { margin: 0 6px 0 0; } /* line 627, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-rtl.x-panel-header-icon-before-title { margin: 0 0 0 6px; } /* line 632, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-panel-header-icon-after-title { margin: 0 0 0 6px; } /* line 637, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-rtl.x-panel-header-icon-after-title { margin: 0 6px 0 0; } /* line 644, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-panel-header-icon-before-title { margin: 0 0 6px 0; } /* line 649, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-rtl.x-panel-header-icon-before-title { margin: 0 0 6px 0; } /* line 654, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-panel-header-icon-after-title { margin: 6px 0 0 0; } /* line 659, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-rtl.x-panel-header-icon-after-title { margin: 6px 0 0 0; } /* line 667, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-tool-after-title { margin: 0 0 0 6px; } /* line 672, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-rtl.x-tool-after-title { margin: 0 6px 0 0; } /* line 677, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-tool-before-title { margin: 0 6px 0 0; } /* line 682, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-horizontal .x-rtl.x-tool-before-title { margin: 0 0 0 6px; } /* line 689, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-tool-after-title { margin: 6px 0 0 0; } /* line 694, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-rtl.x-tool-after-title { margin: 6px 0 0 0; } /* line 699, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-tool-before-title { margin: 0 0 6px 0; } /* line 704, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-header-light-framed-vertical .x-rtl.x-tool-before-title { margin: 0 0 6px 0; } /* line 712, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-light-framed-collapsed-border-right { border-right-width: 5px !important; } /* line 715, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-rtl.x-panel-header-light-framed-collapsed-border-left { border-left-width: 5px !important; } /* line 726, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable { overflow: visible; } /* line 729, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; } /* line 738, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-north-br { top: -5px; } /* line 741, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-south-br { bottom: -5px; } /* line 744, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-east-br { right: -5px; } /* line 747, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-west-br { left: -5px; } /* line 750, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-northwest-br { left: -5px; top: -5px; } /* line 754, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-northeast-br { right: -5px; top: -5px; } /* line 758, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-southeast-br { right: -5px; bottom: -5px; } /* line 762, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ .x-panel-light-framed-resizable .x-panel-handle-southwest-br { left: -5px; bottom: -5px; } /* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-l { border-left-color: #dfeaf2 !important; border-left-width: 5px !important; } /* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-b { border-bottom-color: #dfeaf2 !important; border-bottom-width: 5px !important; } /* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-bl { border-bottom-color: #dfeaf2 !important; border-bottom-width: 5px !important; border-left-color: #dfeaf2 !important; border-left-width: 5px !important; } /* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-r { border-right-color: #dfeaf2 !important; border-right-width: 5px !important; } /* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-rl { border-right-color: #dfeaf2 !important; border-right-width: 5px !important; border-left-color: #dfeaf2 !important; border-left-width: 5px !important; } /* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-rb { border-right-color: #dfeaf2 !important; border-right-width: 5px !important; border-bottom-color: #dfeaf2 !important; border-bottom-width: 5px !important; } /* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-rbl { border-right-color: #dfeaf2 !important; border-right-width: 5px !important; border-bottom-color: #dfeaf2 !important; border-bottom-width: 5px !important; border-left-color: #dfeaf2 !important; border-left-width: 5px !important; } /* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-t { border-top-color: #dfeaf2 !important; border-top-width: 5px !important; } /* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-tl { border-top-color: #dfeaf2 !important; border-top-width: 5px !important; border-left-color: #dfeaf2 !important; border-left-width: 5px !important; } /* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-tb { border-top-color: #dfeaf2 !important; border-top-width: 5px !important; border-bottom-color: #dfeaf2 !important; border-bottom-width: 5px !important; } /* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-tbl { border-top-color: #dfeaf2 !important; border-top-width: 5px !important; border-bottom-color: #dfeaf2 !important; border-bottom-width: 5px !important; border-left-color: #dfeaf2 !important; border-left-width: 5px !important; } /* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-tr { border-top-color: #dfeaf2 !important; border-top-width: 5px !important; border-right-color: #dfeaf2 !important; border-right-width: 5px !important; } /* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-trl { border-top-color: #dfeaf2 !important; border-top-width: 5px !important; border-right-color: #dfeaf2 !important; border-right-width: 5px !important; border-left-color: #dfeaf2 !important; border-left-width: 5px !important; } /* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-trb { border-top-color: #dfeaf2 !important; border-top-width: 5px !important; border-right-color: #dfeaf2 !important; border-right-width: 5px !important; border-bottom-color: #dfeaf2 !important; border-bottom-width: 5px !important; } /* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ .x-panel-light-framed-outer-border-trbl { border-color: #dfeaf2 !important; border-width: 5px !important; } /* line 1, ../../../ext-theme-neptune/sass/src/grid/header/Container.scss */ .x-grid-header-ct { border: 1px solid #c1c1c1; } /* line 6, ../../../ext-theme-neptune/sass/src/grid/column/Column.scss */ .x-column-header-trigger { background: #eef6fb url(images/grid/hd-pop.png) no-repeat center center; border-left: 1px solid #c1c1c1; } /* line 12, ../../../ext-theme-neptune/sass/src/grid/column/Column.scss */ .x-rtl.x-column-header-trigger { border-right: 1px solid #c1c1c1; border-left: 0; } /* line 18, ../../../ext-theme-neptune/sass/src/grid/column/Column.scss */ .x-column-header-last { border-right-width: 0; } /* line 20, ../../../ext-theme-neptune/sass/src/grid/column/Column.scss */ .x-column-header-last .x-column-header-over .x-column-header-trigger { border-right: 1px solid #c1c1c1; } /* line 26, ../../../ext-theme-neptune/sass/src/grid/column/Column.scss */ .x-rtl.x-column-header-last { border-left-width: 0; } /* line 28, ../../../ext-theme-neptune/sass/src/grid/column/Column.scss */ .x-rtl.x-column-header-last .x-column-header-over .x-column-header-trigger { border-left: 1px solid #c1c1c1; } /* line 3, ../../../ext-theme-neptune/sass/src/form/field/File.scss */ .x-form-file-wrap .x-form-trigger-wrap { border: 0; } /* line 7, ../../../ext-theme-neptune/sass/src/form/field/File.scss */ .x-form-file-wrap .x-form-trigger-wrap .x-form-text { border: 1px solid; border-color: #c1c1c1 #d9d9d9 #d9d9d9; height: 32px; } /* line 1, ../../../ext-theme-neptune/sass/src/form/field/HtmlEditor.scss */ .x-html-editor-container { border: 1px solid; border-color: #c1c1c1 #d9d9d9 #d9d9d9; } /* line 1, ../../../ext-theme-neptune/sass/src/resizer/Resizer.scss */ .x-resizable-handle { background-color: #c1c1c1; background-repeat: no-repeat; } /* line 10, ../../../ext-theme-neptune/sass/src/resizer/Resizer.scss */ .x-resizable-over .x-resizable-handle-east, .x-resizable-over .x-resizable-handle-west, .x-resizable-pinned .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-west { background-position: center; } /* line 15, ../../../ext-theme-neptune/sass/src/resizer/Resizer.scss */ .x-resizable-over .x-resizable-handle-south, .x-resizable-over .x-resizable-handle-north, .x-resizable-pinned .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-north { background-position: center; } /* line 19, ../../../ext-theme-neptune/sass/src/resizer/Resizer.scss */ .x-resizable-over .x-resizable-handle-southeast, .x-resizable-pinned .x-resizable-handle-southeast { background-position: -2px -2px; } /* line 23, ../../../ext-theme-neptune/sass/src/resizer/Resizer.scss */ .x-resizable-over .x-resizable-handle-northwest, .x-resizable-pinned .x-resizable-handle-northwest { background-position: 2px 2px; } /* line 27, ../../../ext-theme-neptune/sass/src/resizer/Resizer.scss */ .x-resizable-over .x-resizable-handle-northeast, .x-resizable-pinned .x-resizable-handle-northeast { background-position: -2px 2px; } /* line 31, ../../../ext-theme-neptune/sass/src/resizer/Resizer.scss */ .x-resizable-over .x-resizable-handle-southwest, .x-resizable-pinned .x-resizable-handle-southwest { background-position: 2px -2px; }
0.223631
0.114171
input[type=checkbox] { visibility: hidden; height: 0; max-height: 0; margin: 0; padding-top: 0; padding-bottom: 0; opacity: 0; } input[type=checkbox] + label { visibility: visible; height: inherit; max-height: inherit; margin: inherit; padding-top: inherit; padding-bottom: inherit; opacity: 1; } .ratio--portrait, .palm-ratio--portrait, .palm-wide-ratio--portrait, .palm-wide-and-up-ratio--portrait, .handheld-ratio--portrait, .lap-ratio--portrait, .lap-and-up-ratio--portrait, .lap-wide-ratio--portrait, .lap-wide-and-up-ratio--portrait, .portable-ratio--portrait, .desk-ratio--portrait, .desk-and-up-ratio--portrait, .desk-wide-ratio--portrait, .anchored-ratio--portrait, .ratio--square, .palm-ratio--square, .palm-wide-ratio--square, .palm-wide-and-up-ratio--square, .handheld-ratio--square, .lap-ratio--square, .lap-and-up-ratio--square, .lap-wide-ratio--square, .lap-wide-and-up-ratio--square, .portable-ratio--square, .desk-ratio--square, .desk-and-up-ratio--square, .desk-wide-ratio--square, .anchored-ratio--square, .ratio--landscape, .palm-ratio--landscape, .palm-wide-ratio--landscape, .palm-wide-and-up-ratio--landscape, .handheld-ratio--landscape, .lap-ratio--landscape, .lap-and-up-ratio--landscape, .lap-wide-ratio--landscape, .lap-wide-and-up-ratio--landscape, .portable-ratio--landscape, .desk-ratio--landscape, .desk-and-up-ratio--landscape, .desk-wide-ratio--landscape, .anchored-ratio--landscape { position: relative; display: block; padding: 0; list-style: none; } .ratio--portrait:before, .palm-ratio--portrait:before, .palm-wide-ratio--portrait:before, .palm-wide-and-up-ratio--portrait:before, .handheld-ratio--portrait:before, .lap-ratio--portrait:before, .lap-and-up-ratio--portrait:before, .lap-wide-ratio--portrait:before, .lap-wide-and-up-ratio--portrait:before, .portable-ratio--portrait:before, .desk-ratio--portrait:before, .desk-and-up-ratio--portrait:before, .desk-wide-ratio--portrait:before, .anchored-ratio--portrait:before, .ratio--square:before, .palm-ratio--square:before, .palm-wide-ratio--square:before, .palm-wide-and-up-ratio--square:before, .handheld-ratio--square:before, .lap-ratio--square:before, .lap-and-up-ratio--square:before, .lap-wide-ratio--square:before, .lap-wide-and-up-ratio--square:before, .portable-ratio--square:before, .desk-ratio--square:before, .desk-and-up-ratio--square:before, .desk-wide-ratio--square:before, .anchored-ratio--square:before, .ratio--landscape:before, .palm-ratio--landscape:before, .palm-wide-ratio--landscape:before, .palm-wide-and-up-ratio--landscape:before, .handheld-ratio--landscape:before, .lap-ratio--landscape:before, .lap-and-up-ratio--landscape:before, .lap-wide-ratio--landscape:before, .lap-wide-and-up-ratio--landscape:before, .portable-ratio--landscape:before, .desk-ratio--landscape:before, .desk-and-up-ratio--landscape:before, .desk-wide-ratio--landscape:before, .anchored-ratio--landscape:before { display: block; content: ""; } .ratio__item { position: absolute; top: 0; right: 0; bottom: 0; left: 0; -ms-box-sizing: border-box; -o-box-sizing: border-box; box-sizing: border-box; z-index: 1; } .constrain-copy { position: relative; margin: 0 auto; } input[type=checkbox] + label, input[type=checkbox] + label:before, .icon, .icon--filled, .icon--alert, .icon--base, .icon--outlined, .icon--facebook, .icon--google, .icon--twitter, .progress__item, .progress__item--active, .round { border-radius: 50%; content: ""; } .toggle-arrow__item:before, .toggle-arrow__item:after { display: block; width: 0; height: 0; content: ""; } *, *:before, *:after { -ms-box-sizing: border-box; -o-box-sizing: border-box; box-sizing: border-box; } h1, h2, h3, h4, h5, h6, p, blockquote, pre, dl, dd, ol, ul, form, fieldset, legend, table, th, td, caption, hr { margin: 0; padding: 0; } abbr[title], dfn[title] { cursor: help; } u, ins { text-decoration: none; } ins { border-bottom: 1px solid; } img { font-style: italic; } label, input, textarea, button, select, option { cursor: pointer; } .text-input:active, .text-input:focus, textarea:active, textarea:focus { cursor: text; outline: none; } input[type="submit"], input[type="reset"], input[type="button"], button { overflow: visible; padding: 0; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; color: inherit; border: 0; background: none; font: inherit; line-height: normal; -webkit-appearance: button; } input::-moz-focus-inner, button::-moz-focus-inner { padding: 0; border: 0; } input, label, select, textarea { display: inline-block; margin: 0; padding: 0; vertical-align: middle; white-space: normal; border: 0; background: none; } input:focus { outline: 0; } input[type=reset], input[type=checkbox], input[type=radio], select { box-sizing: border-box; } input[type=search] { -webkit-box-sizing: content-box; -webkit-appearance: textfield; } ::-webkit-search-decoration { display: none; } ::-webkit-file-upload-button { padding: 0; border: 0; background: none; } textarea { overflow: auto; vertical-align: top; } select[multiple] { vertical-align: top; } html { overflow-y: scroll; min-height: 100%; -webkit-font-smoothing: antialiased; } body { overflow-x: hidden; font-size: 112.5%; line-height: 20px; color: #505050; font-family: sans-serif; margin: 0; padding: 0; } img { max-width: 100%; } img[width], img[height] { max-width: none; } h1, .h1 { font-size: 3.25em; line-height: 1.05; margin-bottom: 20px; } h2, .h2 { font-size: 2.625em; line-height: 1.25; margin-bottom: 20px; } legend, h3, .h3 { font-size: 2em; line-height: 1.25; margin-bottom: 20px; } h4, .h4 { font-size: 1.5625em; line-height: 1.22222; margin-bottom: 10px; } .btn, .btn--small, .btn--disabled, .btn:disabled, .btn--corners, .btn--light, .btn--filled, .btn--dark-tertiary, .btn--alert, .btn--icon, .btn--facebook, .btn--google, .btn--twitter, h5, .h5 { font-size: 1.25em; line-height: 1.25; margin-bottom: 10px; } input, select, .toggle__item, .toggle__item--active, h6, .h6 { font-size: 1em; line-height: 1.125; margin-bottom: 10px; } .input__status, h7, .h7 { font-size: 0.875em; line-height: 1.125; margin-bottom: 10px; } p, .p { font-size: 1.125em; line-height: 1.11111; margin-bottom: 20px; } a { position: relative; word-wrap: break-word; color: #6bac43; } li > ul, li > ol { margin-bottom: 0; } hr { display: block; width: 100%; margin-top: 20px; margin-bottom: 20px; padding: 0; } section { overflow: hidden; width: 100%; margin: 0 auto; padding: 20px; } iframe, object, embed { position: relative; overflow: hidden; max-width: 100%; } form { position: relative; min-width: 280px; padding: 20px; text-align: center; } fieldset { margin-bottom: 20px; border: 0; } legend { margin: 0 auto; margin-bottom: 25px; } button[class*="icon"] { display: inline-block; } button:focus { outline: none; } label { display: block; text-align: left; color: #858585; } input { width: 100%; padding: 5px; border-bottom: solid 2px #858585; -webkit-appearance: none; border-radius: 0; } input::-webkit-input-placeholder { /* color: map-get($colors, light-tertiary); */ color: #fff; } input:-moz-placeholder { /* color: map-get($colors, light-tertiary); */ color: #fff; } input::-moz-placeholder { /* color: map-get($colors, light-tertiary); */ color: #fff; } input:-ms-input-placeholder { /* color: map-get($colors, light-tertiary); */ color: #fff; } input:focus { border-bottom-color: #6bac43; } input:focus::-webkit-input-placeholder { color: #fff; } input:focus:-moz-placeholder { color: #fff; } input:focus::-moz-placeholder { color: #fff; } input:focus:-ms-input-placeholder { color: #fff; } input[data-value]:not([data-value=""]) { border-bottom-color: #505050; } input[type=checkbox] { padding-right: 20px; } input[type=checkbox] + label { position: absolute; top: 3px; left: 3px; width: 12px; height: 12px; margin-top: 3px; margin-left: 3px; padding: 0; background-color: transparent; } input[type=checkbox] + label:before { width: 20px; height: 20px; border-radius: 50%; position: absolute; top: -4px; left: -4px; border: 2px solid #6bac43; } input[type=checkbox]:checked + label { background-color: #6bac43; } label + h7 { position: absolute; top: 0; left: 20px; text-align: left; } select { width: 100%; padding: 5px; padding-right: 30px; white-space: nowrap; color: #858585; border-bottom: solid 2px #858585; border-radius: 0; -webkit-appearance: none; -moz-appearance: none; } :focus { border-bottom-width: 2px; border-bottom-color: #505050; } .background, .background--fill, .background--cover, .background--right, .background--left, .background--fixed, .background--primary, .background--secondary, .background--tertiary, .background--dark, .background--dark-secondary, .background--dark-tertiary, .background--light, .background--light-secondary, .background--light-tertiary { overflow: hidden; background-repeat: no-repeat; background-position: center center; } .background--fill, .background--cover { background-size: cover; } .background--right { background-position: center right; } .background--left { background-position: center left; } .background--fixed { background-attachment: fixed; background-position: top; background-size: 100%; } .background--primary { background-color: #6bac43; } .background--secondary { background-color: #1c683e; } .background--tertiary { background-color: #2a4930; } .background--dark { background-color: #303030; } .background--dark-secondary { background-color: #505050; } .background--dark-tertiary { background-color: #858585; } .background--light { background-color: #ffffff; } .background--light-secondary { background-color: #f7f7f7; } .background--light-tertiary { background-color: #dddddd; } .btn, .btn--small, .btn--disabled, .btn:disabled, .btn--corners, .btn--light, .btn--filled, .btn--dark-tertiary, .btn--alert, .btn--icon, .btn--facebook, .btn--google, .btn--twitter { border-radius: 1000px; position: relative; display: inline-block; overflow: hidden; padding: 10.5px 30px 8.5px; cursor: pointer; text-align: center; vertical-align: middle; text-decoration: none; color: #6bac43; border: 3px solid #6bac43; } .btn:hover, .btn--small:hover, .btn--disabled:hover, .btn--corners:hover, .btn--light:hover, .btn--filled:hover, .btn--dark-tertiary:hover, .btn--alert:hover, .btn--icon:hover, .btn--facebook:hover, .btn--google:hover, .btn--twitter:hover { color: #ffffff; background: #6bac43; } .btn--small { padding: 11.5px 30px 11.5px; border: 2px solid #6bac43; font-size: 18.75px; } .btn--disabled, .btn:disabled { cursor: text; color: #dddddd; border-color: #dddddd; } .btn--disabled:hover, .btn:disabled:hover { cursor: text; color: #dddddd; background-color: inherit; } .btn--corners { border-radius: 0; } .btn--light { color: #ffffff; border-color: #ffffff; } .btn--light:hover { color: #505050; background-color: #ffffff; } .btn--filled { color: #ffffff; border-color: #6bac43; background-color: #6bac43; } .btn--filled:hover { border-color: #1c683e; background-color: #1c683e; } .btn--dark-tertiary { color: #858585; border-color: #858585; } .btn--dark-tertiary:hover { border-color: #505050; background-color: #505050; } .btn--alert { background-color: #ffffff; border-color: #c64f55; color: #c64f55; } .btn--icon, .btn--facebook, .btn--google, .btn--twitter { padding-right: 78px; } .btn--icon:after, .btn--facebook:after, .btn--google:after, .btn--twitter:after { position: absolute; right: 12.5px; width: 40.5px; font-size: 90%; } .btn--icon:hover .icon:before, .btn--icon:hover .icon:after { border-color: #ffffff; } .btn--icon .icon { position: absolute; right: 12.5px; top: 0; width: 40.5px; height: auto; } .btn--facebook, .btn--google, .btn--twitter { text-transform: none; } .btn--facebook:after, .btn--google:after, .btn--twitter:after { color: #ffffff; font-family: FontAwesome; } .btn--facebook { color: #ffffff; border-color: #3b5998; background-color: #3b5998; } .btn--facebook:after { content: "\f09a"; } .btn--facebook:hover { background-color: #344e86; } .btn--google { color: #ffffff; border-color: #dd4b39; background-color: #dd4b39; } .btn--google:after { content: "\f0d5"; } .btn--google:hover { background-color: #d73925; } .btn--twitter { color: #ffffff; border-color: #55acee; background-color: #55acee; } .btn--twitter:after { content: "\f099"; } .btn--twitter:hover { background-color: #3ea1ec; } .icon, .icon--filled, .icon--alert, .icon--base, .icon--outlined, .icon--facebook, .icon--google, .icon--twitter { position: relative; display: block; width: 56px; height: 56px; text-decoration: none; vertical-align: top; } [class*="fa-"].icon, [class*="fa-"].icon--filled, [class*="fa-"].icon--alert, [class*="fa-"].icon--base, [class*="fa-"].icon--outlined, [class*="fa-"].icon--facebook, [class*="fa-"].icon--google, [class*="fa-"].icon--twitter { margin-bottom: 0; text-align: center; } [class*="fa-"].icon:before, [class*="fa-"].icon--filled:before, [class*="fa-"].icon--alert:before, [class*="fa-"].icon--base:before, [class*="fa-"].icon--outlined:before, [class*="fa-"].icon--facebook:before, [class*="fa-"].icon--google:before, [class*="fa-"].icon--twitter:before { font-size: 47px; } .icon--filled { color: #ffffff; background-color: #6bac43; } .icon--alert { color: #ffffff; background-color: #c64f55; } .icon--base { color: #ffffff; border: 3px solid #ffffff; } .icon--base:before { color: #ffffff; } .icon--outlined { color: #858585; border: 3px solid #858585; } .icon--outlined:before { color: #858585; } .fa-angle-right:before { margin-left: 6px; } .fa-angle-left:before { margin-right: 6px; } .icon--facebook, .icon--google, .icon--twitter { margin-bottom: 0; text-align: center; font-family: FontAwesome; line-height: 56px; } .icon--facebook { color: #3b5998; } .icon--facebook:after { content: "\f09a"; } .icon--facebook.icon--filled { color: #ffffff; border-color: #3b5998; background-color: #3b5998; } .icon--google { color: #dd4b39; } .icon--google:after { content: "\f0d5"; } .icon--google.icon--filled { color: #ffffff; border-color: #dd4b39; background-color: #dd4b39; } .icon--twitter { color: #55acee; } .icon--twitter:after { content: "\f099"; } .icon--twitter.icon--filled { color: #ffffff; border-color: #55acee; background-color: #55acee; } .modal, .modal--active, .modal--dark { transition: opacity .2s ease-in-out .2s; z-index: 100; overflow: hidden; width: 0; max-width: 0; height: 0; max-height: 0; margin: 0; padding: 0; opacity: 0; } .modal:not(.modal--active) *, .modal--active:not(.modal--active) *, .modal--dark:not(.modal--active) * { transition: all .2s ease-in-out 0s; height: 0; max-height: 0; margin: 0; padding-top: 0; padding-bottom: 0; opacity: 0; } .modal { background-color: rgba(255, 255, 255, 0.96); } .modal--active { position: fixed; top: 0; right: 0; bottom: 0; left: 0; transition: opacity .3s ease-in-out 0s; overflow: auto; -webkit-overflow-scrolling: touch; width: 100%; max-width: none; height: 100%; max-height: none; opacity: 1; } .modal--dark { background-color: rgba(0, 0, 0, 0.96); } html.modal--opened { overflow: hidden; } html.modal--opened body { overflow: hidden; min-height: 100%; height: 100%; padding: 0; margin: 0; } html.modal--opened .scrollable { overflow: hidden; } .transition, .input--alert, .input { transition: all .1s linear; } .accordion > .expanded * { visibility: visible; max-height: inherit; margin: inherit; padding-top: inherit; padding-bottom: inherit; opacity: 1; } .accordion__item { overflow: hidden; } .accordion__item:not(.expanded) *:not(.accordion__item--trigger) { visibility: hidden; height: 0; max-height: 0; margin: 0; padding-top: 0; padding-bottom: 0; opacity: 0; } .accordion__item *:not(.accordion__item--trigger) { transition: max-height .25s, visibility .25s, margin .25s, opacity .25s; } .accordion__item--trigger { visibility: visible; cursor: pointer; } .grid { margin-bottom: 0; margin-left: -20px; list-style: none; } .grid__item, .grid__item--push-bottom, .toggle__item, .toggle__item--active { position: relative; display: inline-block; width: 100%; padding-left: 20px; vertical-align: top; } .grid > .grid { margin-left: 0; } .grid__item--push-bottom { margin-bottom: 20px; } .ratio--none .ratio__item { position: relative; } .ratio__item { position: absolute; top: 0; right: 0; bottom: 0; left: 0; } .ratio--portrait:before { padding-top: 200%; } .ratio--square:before { padding-top: 100%; } .ratio--landscape:before { padding-top: 50%; } .floating, .floating--left, .floating--right, .floating--top, .floating--bottom { text-align: center; } .floating:before, .floating--left:before, .floating--right:before, .floating--top:before, .floating--bottom:before { display: inline-block; height: 100%; margin-right: -.25em; content: ""; vertical-align: middle; } .floating > .floating__item, .floating--left > .floating__item, .floating--right > .floating__item, .floating--top > .floating__item, .floating--bottom > .floating__item { display: inline-block; vertical-align: middle; } .floating--left { text-align: left; } .floating--right { text-align: right; } .floating--top:before, .floating--top .floating__item { vertical-align: top; } .floating--bottom:before, .floating--bottom .floating__item { vertical-align: bottom; } .locked { overflow: hidden; } .locked__item { overflow: hidden; height: 100%; min-height: 100%; margin: 0; padding: 0; } .overlay, .overlay--brand, .overlay--solid-light, .overlay--solid-dark, .overlay--gradient, .overlay--gradient-left, .overlay--gradient-right { position: relative; z-index: 1; } .overlay:after, .overlay--brand:after, .overlay--solid-light:after, .overlay--solid-dark:after, .overlay--gradient:after, .overlay--gradient-left:after, .overlay--gradient-right:after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: block; width: 100%; height: 100%; content: ""; } .overlay:after { background: rgba(48, 48, 48, 0.6); } .overlay__item { position: relative; z-index: 2; } .overlay--brand:after { background: rgba(107, 172, 67, 0.65); } .overlay--solid-light:after { background: rgba(48, 48, 48, 0.1); } .overlay--solid-dark:after { background: rgba(48, 48, 48, 0.8); } .overlay--gradient:after { top: auto; height: 70%; background: linear-gradient(to bottom, transparent 0%, #000 100%); } .overlay--gradient-left:after { right: auto; width: 80%; background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, transparent 100%); } .overlay--gradient-right:after { left: auto; width: 80%; background: linear-gradient(to left, rgba(0, 0, 0, 0.9) 0%, transparent 100%); } .panel { -webkit-overflow-scrolling: touch; } .panel__item--left { left: 0; } .panel__item--right { right: 0; } .input--alert, .input { position: relative; padding-bottom: 50px; } .fa-caret-down.input--alert:before, .fa-caret-down.input:before { position: absolute; top: 5px; right: 10px; color: #858585; } .input--alert label, .input label { position: absolute; top: 5px; font-size: .875em; left: 10px; transition-duration: .2s; transition-property: -webkit-transform; transition-property: transform; transition-timing-function: cubic-bezier(.4, 0, .2, 1); } .input--alert input::-webkit-input-placeholder, .input input::-webkit-input-placeholder { color: #fff; } .input--alert input:-moz-placeholder, .input input:-moz-placeholder { color: #fff; } .input--alert input::-moz-placeholder, .input input::-moz-placeholder { color: #fff; } .input--alert input:-ms-input-placeholder, .input input:-ms-input-placeholder { color: #fff; } .input--alert select + label, .input select + label { visibility: hidden; } .input__status { position: absolute; top: 40px; left: 10px; bottom: -20px; text-align: left; font-weight: bold; transition-duration: .2s; transition-timing-function: cubic-bezier(.4, 0, .2, 1); } .input--active label { font-size: .785em; visibility: visible; margin-bottom: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); } .input--active select { color: #303030; } .input--active select + label { visibility: visible; } .input--focused label { color: #6bac43; } .input--alert input { border-bottom-color: #c64f55; } .input--alert label { color: #c64f55; } .input--alert .input__status { color: #c64f55; } .toggle { position: relative; display: inline-block; width: 100%; vertical-align: middle; border-top: 2px solid #dddddd; border-bottom: 2px solid #dddddd; -webkit-tap-highlight-color: transparent; } .toggle__item, .toggle__item--active { margin-bottom: 0; padding-top: 13.5px; padding-bottom: 11.5px; padding-left: 0; cursor: pointer; color: #858585; font-weight: bold; } .toggle__item:hover { color: #505050; } .toggle__item--active { cursor: inherit; color: #6bac43; background-color: transparent; } .toggle-arrow { position: absolute; width: 100%; } .toggle-arrow__item:before { position: absolute; left: 50%; margin-left: -20px; bottom: -15px; border-top: 15px solid #dddddd; border-right: 21px solid transparent; border-left: 21px solid transparent; } .toggle-arrow__item:after { position: absolute; left: 50%; margin-left: -19px; bottom: -12px; border-top: 14px solid white; border-right: 20px solid transparent; border-left: 20px solid transparent; } .progress { position: relative; display: inline-block; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; min-width: 0; width: 50%; margin: 0 auto; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; } .progress:after { position: absolute; right: 0; left: 0; z-index: 0; height: 4px; margin-top: 3px; content: ""; background-color: #dddddd; } .progress__item, .progress__item--active { width: 20px; height: 20px; position: relative; z-index: 2; display: inline-block; width: 10px; height: 10px; cursor: pointer; background-color: #dddddd; } .progress__item--active { width: 10px; height: 10px; background-color: #6bac43; } .progress__item--active + .progress__item--active:before { position: absolute; z-index: 1; right: 5px; width: 100000px; height: 0; margin-top: 2px; content: ""; border-bottom: 4px solid #6bac43; } .card { position: relative; margin-bottom: 10px; border-width: 0; } .card .card__image { padding: 0; margin: 0; } .card .card__item { border-top: none; } .text-right { text-align: right; } .text-left { text-align: left; } .text-center { text-align: center; } .text-dark { color: #303030; } .text-light { color: #f7f7f7; } .text-white { color: #ffffff; } .text-brand, .text-primary { color: #6bac43; } .text-dark-tertiary { color: #858585; } .text-light-tertiary { color: #dddddd; } .outlined, .outlined--light, .outlined--dotted, .outlined--top, .outlined--left, .outlined--right, .outlined--bottom { border-width: 3px; border-style: solid; border-color: #6bac43; border-radius: 2px; } .outlined--light { border-width: 2px; border-style: solid; border-color: #dddddd; } .outlined--dotted { border-width: 3px; border-top: 0; border-left: 0; border-right: 0; border-style: dotted; } .outlined--top { border-left: 0; border-right: 0; border-bottom: 0; } .outlined--left { border-top: 0; border-right: 0; border-bottom: 0; } .outlined--right { border-top: 0; border-left: 0; border-bottom: 0; } .outlined--bottom { border-top: 0; border-right: 0; border-left: 0; } .one-whole { width: 100%; } .one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths { width: 50%; } .one-third, .two-sixths, .three-ninths, .four-twelfths { width: 33.33333%; } .two-thirds, .four-sixths, .six-ninths, .eight-twelfths { width: 66.66667%; } .one-quarter, .two-eighths, .three-twelfths { width: 25%; } .three-quarters, .six-eighths, .nine-twelfths { width: 75%; } .one-fifth, .two-tenths { width: 20%; } .two-fifths, .four-tenths { width: 40%; } .three-fifths, .six-tenths { width: 60%; } .four-fifths, .eight-tenths { width: 80%; } .one-sixth, .two-twelfths { width: 16.66667%; } .five-sixths, .ten-twelfths { width: 83.33333%; } .one-eighth { width: 12.5%; } .three-eighths { width: 37.5%; } .five-eighths { width: 62.5%; } .seven-eighths { width: 87.5%; } .one-ninth { width: 11.11111%; } .two-ninths { width: 22.22222%; } .four-ninths { width: 44.44444%; } .five-ninths { width: 55.55556%; } .seven-ninths { width: 77.77778%; } .eight-ninths { width: 88.88889%; } .one-tenth { width: 10%; } .three-tenths { width: 30%; } .seven-tenths { width: 70%; } .nine-tenths { width: 90%; } .one-twelfth { width: 8.33333%; } .five-twelfths { width: 41.66667%; } .seven-twelfths { width: 58.33333%; } .eleven-twelfths { width: 91.66667%; } .scrollable { overflow-y: scroll; -webkit-overflow-scrolling: touch; } .float-left { float: left; } .float-right { float: right; } .float-none { float: none; } .float-inherit { float: inherit; } .clearfix:before, .clearfix:after { display: table; content: ""; } .clearfix:after { clear: both; } .constrain-copy { min-width: 280px; max-width: 768px; } .push { margin: 20px; } .push-top { margin-top: 20px; } .push-right { margin-right: 20px; } .push-bottom { margin-bottom: 20px; } .push-left { margin-left: 20px; } .push-ends { margin-top: 20px; margin-bottom: 20px; } .push-sides { margin-right: 20px; margin-left: 20px; } .push-half { margin: 10px; } .push-half-top { margin-top: 10px; } .push-half-right { margin-right: 10px; } .push-half-bottom { margin-bottom: 10px; } .push-half-left { margin-left: 10px; } .push-half-ends { margin-top: 10px; margin-bottom: 10px; } .push-half-sides { margin-right: 10px; margin-left: 10px; } .push-double { margin: 40px; } .push-double-top { margin-top: 40px; } .push-double-right { margin-right: 40px; } .push-double-bottom { margin-bottom: 40px; } .push-double-left { margin-left: 40px; } .push-double-ends { margin-top: 40px; margin-bottom: 40px; } .push-double-sides { margin-right: 40px; margin-left: 40px; } .flush { margin: 0; } .flush-top { margin-top: 0; } .flush-right { margin-right: 0; } .flush-bottom { margin-bottom: 0; } .flush-left { margin-left: 0; } .flush-ends { margin-top: 0; margin-bottom: 0; } .flush-sides { margin-right: 0; margin-left: 0; } .soft { padding: 20px; } .soft-top { padding-top: 20px; } .soft-right { padding-right: 20px; } .soft-bottom { padding-bottom: 20px; } .soft-left { padding-left: 20px; } .soft-ends { padding-top: 20px; padding-bottom: 20px; } .soft-sides { padding-right: 20px; padding-left: 20px; } .soft-half { padding: 10px; } .soft-half-top { padding-top: 10px; } .soft-half-right { padding-right: 10px; } .soft-half-bottom { padding-bottom: 10px; } .soft-half-left { padding-left: 10px; } .soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .soft-half-sides { padding-right: 10px; padding-left: 10px; } .soft-double { padding: 40px; } .soft-double-top { padding-top: 40px; } .soft-double-right { padding-right: 40px; } .soft-double-bottom { padding-bottom: 40px; } .soft-double-left { padding-left: 40px; } .soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .soft-double-sides { padding-right: 40px; padding-left: 40px; } .hard { padding: 0; } .hard-top { padding-top: 0; } .hard-right { padding-right: 0; } .hard-bottom { padding-bottom: 0; } .hard-left { padding-left: 0; } .hard-ends { padding-top: 0; padding-bottom: 0; } .hard-sides { padding-right: 0; padding-left: 0; } .display-inline-block { display: inline-block; } .display-block { display: block; } .capitalize { text-transform: capitalize; } .lowercase { text-transform: lowercase; } .uppercase { text-transform: uppercase; } .italic { font-style: italic; } .ellipsis { overflow: hidden; vertical-align: middle; white-space: nowrap; text-overflow: ellipsis; } .rounded { border-radius: 6px; } .rounded-top { border-radius: 6px 6px 0 0; } .rounded-bottom { border-radius: 0 0 6px 6px; } .rounded-right { border-radius: 0 6px 6px 0; } .rounded-left { border-radius: 6px 0 0 6px; } .visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } @media screen and (min-width: 481px) and (max-width: 768px) { .palm-wide-ratio--none .ratio__item { position: relative; } .palm-wide-ratio--portrait:before { padding-top: 200%; } .palm-wide-ratio--square:before { padding-top: 100%; } .palm-wide-ratio--landscape:before { padding-top: 50%; } .palm-wide-text-right { text-align: right; } .palm-wide-text-left { text-align: left; } .palm-wide-text-center { text-align: center; } .palm-wide-one-whole { width: 100%; } .palm-wide-one-half, .palm-wide-two-quarters, .palm-wide-three-sixths, .palm-wide-four-eighths, .palm-wide-five-tenths, .palm-wide-six-twelfths { width: 50%; } .palm-wide-one-third, .palm-wide-two-sixths, .palm-wide-three-ninths, .palm-wide-four-twelfths { width: 33.33333%; } .palm-wide-two-thirds, .palm-wide-four-sixths, .palm-wide-six-ninths, .palm-wide-eight-twelfths { width: 66.66667%; } .palm-wide-one-quarter, .palm-wide-two-eighths, .palm-wide-three-twelfths { width: 25%; } .palm-wide-three-quarters, .palm-wide-six-eighths, .palm-wide-nine-twelfths { width: 75%; } .palm-wide-one-fifth, .palm-wide-two-tenths { width: 20%; } .palm-wide-two-fifths, .palm-wide-four-tenths { width: 40%; } .palm-wide-three-fifths, .palm-wide-six-tenths { width: 60%; } .palm-wide-four-fifths, .palm-wide-eight-tenths { width: 80%; } .palm-wide-one-sixth, .palm-wide-two-twelfths { width: 16.66667%; } .palm-wide-five-sixths, .palm-wide-ten-twelfths { width: 83.33333%; } .palm-wide-one-eighth { width: 12.5%; } .palm-wide-three-eighths { width: 37.5%; } .palm-wide-five-eighths { width: 62.5%; } .palm-wide-seven-eighths { width: 87.5%; } .palm-wide-one-ninth { width: 11.11111%; } .palm-wide-two-ninths { width: 22.22222%; } .palm-wide-four-ninths { width: 44.44444%; } .palm-wide-five-ninths { width: 55.55556%; } .palm-wide-seven-ninths { width: 77.77778%; } .palm-wide-eight-ninths { width: 88.88889%; } .palm-wide-one-tenth { width: 10%; } .palm-wide-three-tenths { width: 30%; } .palm-wide-seven-tenths { width: 70%; } .palm-wide-nine-tenths { width: 90%; } .palm-wide-one-twelfth { width: 8.33333%; } .palm-wide-five-twelfths { width: 41.66667%; } .palm-wide-seven-twelfths { width: 58.33333%; } .palm-wide-eleven-twelfths { width: 91.66667%; } .palm-wide-float-left { float: left; } .palm-wide-float-right { float: right; } .palm-wide-float-none { float: none; } .palm-wide-float-inherit { float: inherit; } .palm-wide-push { margin: 20px; } .palm-wide-push-top { margin-top: 20px; } .palm-wide-push-right { margin-right: 20px; } .palm-wide-push-bottom { margin-bottom: 20px; } .palm-wide-push-left { margin-left: 20px; } .palm-wide-push-ends { margin-top: 20px; margin-bottom: 20px; } .palm-wide-push-sides { margin-right: 20px; margin-left: 20px; } .palm-wide-push-half { margin: 10px; } .palm-wide-push-half-top { margin-top: 10px; } .palm-wide-push-half-right { margin-right: 10px; } .palm-wide-push-half-bottom { margin-bottom: 10px; } .palm-wide-push-half-left { margin-left: 10px; } .palm-wide-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .palm-wide-push-half-sides { margin-right: 10px; margin-left: 10px; } .palm-wide-push-double { margin: 40px; } .palm-wide-push-double-top { margin-top: 40px; } .palm-wide-push-double-right { margin-right: 40px; } .palm-wide-push-double-bottom { margin-bottom: 40px; } .palm-wide-push-double-left { margin-left: 40px; } .palm-wide-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .palm-wide-push-double-sides { margin-right: 40px; margin-left: 40px; } .palm-wide-flush { margin: 0; } .palm-wide-flush-top { margin-top: 0; } .palm-wide-flush-right { margin-right: 0; } .palm-wide-flush-bottom { margin-bottom: 0; } .palm-wide-flush-left { margin-left: 0; } .palm-wide-flush-ends { margin-top: 0; margin-bottom: 0; } .palm-wide-flush-sides { margin-right: 0; margin-left: 0; } .palm-wide-soft { padding: 20px; } .palm-wide-soft-top { padding-top: 20px; } .palm-wide-soft-right { padding-right: 20px; } .palm-wide-soft-bottom { padding-bottom: 20px; } .palm-wide-soft-left { padding-left: 20px; } .palm-wide-soft-ends { padding-top: 20px; padding-bottom: 20px; } .palm-wide-soft-sides { padding-right: 20px; padding-left: 20px; } .palm-wide-soft-half { padding: 10px; } .palm-wide-soft-half-top { padding-top: 10px; } .palm-wide-soft-half-right { padding-right: 10px; } .palm-wide-soft-half-bottom { padding-bottom: 10px; } .palm-wide-soft-half-left { padding-left: 10px; } .palm-wide-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .palm-wide-soft-half-sides { padding-right: 10px; padding-left: 10px; } .palm-wide-soft-double { padding: 40px; } .palm-wide-soft-double-top { padding-top: 40px; } .palm-wide-soft-double-right { padding-right: 40px; } .palm-wide-soft-double-bottom { padding-bottom: 40px; } .palm-wide-soft-double-left { padding-left: 40px; } .palm-wide-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .palm-wide-soft-double-sides { padding-right: 40px; padding-left: 40px; } .palm-wide-hard { padding: 0; } .palm-wide-hard-top { padding-top: 0; } .palm-wide-hard-right { padding-right: 0; } .palm-wide-hard-bottom { padding-bottom: 0; } .palm-wide-hard-left { padding-left: 0; } .palm-wide-hard-ends { padding-top: 0; padding-bottom: 0; } .palm-wide-hard-sides { padding-right: 0; padding-left: 0; } .palm-wide-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 481px) { .palm-wide-and-up-ratio--none .ratio__item { position: relative; } .palm-wide-and-up-ratio--portrait:before { padding-top: 200%; } .palm-wide-and-up-ratio--square:before { padding-top: 100%; } .palm-wide-and-up-ratio--landscape:before { padding-top: 50%; } .palm-wide-and-up-text-right { text-align: right; } .palm-wide-and-up-text-left { text-align: left; } .palm-wide-and-up-text-center { text-align: center; } .palm-wide-and-up-one-whole { width: 100%; } .palm-wide-and-up-one-half, .palm-wide-and-up-two-quarters, .palm-wide-and-up-three-sixths, .palm-wide-and-up-four-eighths, .palm-wide-and-up-five-tenths, .palm-wide-and-up-six-twelfths { width: 50%; } .palm-wide-and-up-one-third, .palm-wide-and-up-two-sixths, .palm-wide-and-up-three-ninths, .palm-wide-and-up-four-twelfths { width: 33.33333%; } .palm-wide-and-up-two-thirds, .palm-wide-and-up-four-sixths, .palm-wide-and-up-six-ninths, .palm-wide-and-up-eight-twelfths { width: 66.66667%; } .palm-wide-and-up-one-quarter, .palm-wide-and-up-two-eighths, .palm-wide-and-up-three-twelfths { width: 25%; } .palm-wide-and-up-three-quarters, .palm-wide-and-up-six-eighths, .palm-wide-and-up-nine-twelfths { width: 75%; } .palm-wide-and-up-one-fifth, .palm-wide-and-up-two-tenths { width: 20%; } .palm-wide-and-up-two-fifths, .palm-wide-and-up-four-tenths { width: 40%; } .palm-wide-and-up-three-fifths, .palm-wide-and-up-six-tenths { width: 60%; } .palm-wide-and-up-four-fifths, .palm-wide-and-up-eight-tenths { width: 80%; } .palm-wide-and-up-one-sixth, .palm-wide-and-up-two-twelfths { width: 16.66667%; } .palm-wide-and-up-five-sixths, .palm-wide-and-up-ten-twelfths { width: 83.33333%; } .palm-wide-and-up-one-eighth { width: 12.5%; } .palm-wide-and-up-three-eighths { width: 37.5%; } .palm-wide-and-up-five-eighths { width: 62.5%; } .palm-wide-and-up-seven-eighths { width: 87.5%; } .palm-wide-and-up-one-ninth { width: 11.11111%; } .palm-wide-and-up-two-ninths { width: 22.22222%; } .palm-wide-and-up-four-ninths { width: 44.44444%; } .palm-wide-and-up-five-ninths { width: 55.55556%; } .palm-wide-and-up-seven-ninths { width: 77.77778%; } .palm-wide-and-up-eight-ninths { width: 88.88889%; } .palm-wide-and-up-one-tenth { width: 10%; } .palm-wide-and-up-three-tenths { width: 30%; } .palm-wide-and-up-seven-tenths { width: 70%; } .palm-wide-and-up-nine-tenths { width: 90%; } .palm-wide-and-up-one-twelfth { width: 8.33333%; } .palm-wide-and-up-five-twelfths { width: 41.66667%; } .palm-wide-and-up-seven-twelfths { width: 58.33333%; } .palm-wide-and-up-eleven-twelfths { width: 91.66667%; } .palm-wide-and-up-float-left { float: left; } .palm-wide-and-up-float-right { float: right; } .palm-wide-and-up-float-none { float: none; } .palm-wide-and-up-float-inherit { float: inherit; } .palm-wide-and-up-push { margin: 20px; } .palm-wide-and-up-push-top { margin-top: 20px; } .palm-wide-and-up-push-right { margin-right: 20px; } .palm-wide-and-up-push-bottom { margin-bottom: 20px; } .palm-wide-and-up-push-left { margin-left: 20px; } .palm-wide-and-up-push-ends { margin-top: 20px; margin-bottom: 20px; } .palm-wide-and-up-push-sides { margin-right: 20px; margin-left: 20px; } .palm-wide-and-up-push-half { margin: 10px; } .palm-wide-and-up-push-half-top { margin-top: 10px; } .palm-wide-and-up-push-half-right { margin-right: 10px; } .palm-wide-and-up-push-half-bottom { margin-bottom: 10px; } .palm-wide-and-up-push-half-left { margin-left: 10px; } .palm-wide-and-up-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .palm-wide-and-up-push-half-sides { margin-right: 10px; margin-left: 10px; } .palm-wide-and-up-push-double { margin: 40px; } .palm-wide-and-up-push-double-top { margin-top: 40px; } .palm-wide-and-up-push-double-right { margin-right: 40px; } .palm-wide-and-up-push-double-bottom { margin-bottom: 40px; } .palm-wide-and-up-push-double-left { margin-left: 40px; } .palm-wide-and-up-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .palm-wide-and-up-push-double-sides { margin-right: 40px; margin-left: 40px; } .palm-wide-and-up-flush { margin: 0; } .palm-wide-and-up-flush-top { margin-top: 0; } .palm-wide-and-up-flush-right { margin-right: 0; } .palm-wide-and-up-flush-bottom { margin-bottom: 0; } .palm-wide-and-up-flush-left { margin-left: 0; } .palm-wide-and-up-flush-ends { margin-top: 0; margin-bottom: 0; } .palm-wide-and-up-flush-sides { margin-right: 0; margin-left: 0; } .palm-wide-and-up-soft { padding: 20px; } .palm-wide-and-up-soft-top { padding-top: 20px; } .palm-wide-and-up-soft-right { padding-right: 20px; } .palm-wide-and-up-soft-bottom { padding-bottom: 20px; } .palm-wide-and-up-soft-left { padding-left: 20px; } .palm-wide-and-up-soft-ends { padding-top: 20px; padding-bottom: 20px; } .palm-wide-and-up-soft-sides { padding-right: 20px; padding-left: 20px; } .palm-wide-and-up-soft-half { padding: 10px; } .palm-wide-and-up-soft-half-top { padding-top: 10px; } .palm-wide-and-up-soft-half-right { padding-right: 10px; } .palm-wide-and-up-soft-half-bottom { padding-bottom: 10px; } .palm-wide-and-up-soft-half-left { padding-left: 10px; } .palm-wide-and-up-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .palm-wide-and-up-soft-half-sides { padding-right: 10px; padding-left: 10px; } .palm-wide-and-up-soft-double { padding: 40px; } .palm-wide-and-up-soft-double-top { padding-top: 40px; } .palm-wide-and-up-soft-double-right { padding-right: 40px; } .palm-wide-and-up-soft-double-bottom { padding-bottom: 40px; } .palm-wide-and-up-soft-double-left { padding-left: 40px; } .palm-wide-and-up-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .palm-wide-and-up-soft-double-sides { padding-right: 40px; padding-left: 40px; } .palm-wide-and-up-hard { padding: 0; } .palm-wide-and-up-hard-top { padding-top: 0; } .palm-wide-and-up-hard-right { padding-right: 0; } .palm-wide-and-up-hard-bottom { padding-bottom: 0; } .palm-wide-and-up-hard-left { padding-left: 0; } .palm-wide-and-up-hard-ends { padding-top: 0; padding-bottom: 0; } .palm-wide-and-up-hard-sides { padding-right: 0; padding-left: 0; } .palm-wide-and-up-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 769px) and (max-width: 1280px) { body { font-size: 126.5625%; } .portable-ratio--none .ratio__item { position: relative; } .portable-ratio--portrait:before { padding-top: 200%; } .portable-ratio--square:before { padding-top: 100%; } .portable-ratio--landscape:before { padding-top: 50%; } .portable-text-right { text-align: right; } .portable-text-left { text-align: left; } .portable-text-center { text-align: center; } .portable-one-whole { width: 100%; } .portable-one-half, .portable-two-quarters, .portable-three-sixths, .portable-four-eighths, .portable-five-tenths, .portable-six-twelfths { width: 50%; } .portable-one-third, .portable-two-sixths, .portable-three-ninths, .portable-four-twelfths { width: 33.33333%; } .portable-two-thirds, .portable-four-sixths, .portable-six-ninths, .portable-eight-twelfths { width: 66.66667%; } .portable-one-quarter, .portable-two-eighths, .portable-three-twelfths { width: 25%; } .portable-three-quarters, .portable-six-eighths, .portable-nine-twelfths { width: 75%; } .portable-one-fifth, .portable-two-tenths { width: 20%; } .portable-two-fifths, .portable-four-tenths { width: 40%; } .portable-three-fifths, .portable-six-tenths { width: 60%; } .portable-four-fifths, .portable-eight-tenths { width: 80%; } .portable-one-sixth, .portable-two-twelfths { width: 16.66667%; } .portable-five-sixths, .portable-ten-twelfths { width: 83.33333%; } .portable-one-eighth { width: 12.5%; } .portable-three-eighths { width: 37.5%; } .portable-five-eighths { width: 62.5%; } .portable-seven-eighths { width: 87.5%; } .portable-one-ninth { width: 11.11111%; } .portable-two-ninths { width: 22.22222%; } .portable-four-ninths { width: 44.44444%; } .portable-five-ninths { width: 55.55556%; } .portable-seven-ninths { width: 77.77778%; } .portable-eight-ninths { width: 88.88889%; } .portable-one-tenth { width: 10%; } .portable-three-tenths { width: 30%; } .portable-seven-tenths { width: 70%; } .portable-nine-tenths { width: 90%; } .portable-one-twelfth { width: 8.33333%; } .portable-five-twelfths { width: 41.66667%; } .portable-seven-twelfths { width: 58.33333%; } .portable-eleven-twelfths { width: 91.66667%; } .portable-float-left { float: left; } .portable-float-right { float: right; } .portable-float-none { float: none; } .portable-float-inherit { float: inherit; } .portable-push { margin: 20px; } .portable-push-top { margin-top: 20px; } .portable-push-right { margin-right: 20px; } .portable-push-bottom { margin-bottom: 20px; } .portable-push-left { margin-left: 20px; } .portable-push-ends { margin-top: 20px; margin-bottom: 20px; } .portable-push-sides { margin-right: 20px; margin-left: 20px; } .portable-push-half { margin: 10px; } .portable-push-half-top { margin-top: 10px; } .portable-push-half-right { margin-right: 10px; } .portable-push-half-bottom { margin-bottom: 10px; } .portable-push-half-left { margin-left: 10px; } .portable-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .portable-push-half-sides { margin-right: 10px; margin-left: 10px; } .portable-push-double { margin: 40px; } .portable-push-double-top { margin-top: 40px; } .portable-push-double-right { margin-right: 40px; } .portable-push-double-bottom { margin-bottom: 40px; } .portable-push-double-left { margin-left: 40px; } .portable-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .portable-push-double-sides { margin-right: 40px; margin-left: 40px; } .portable-flush { margin: 0; } .portable-flush-top { margin-top: 0; } .portable-flush-right { margin-right: 0; } .portable-flush-bottom { margin-bottom: 0; } .portable-flush-left { margin-left: 0; } .portable-flush-ends { margin-top: 0; margin-bottom: 0; } .portable-flush-sides { margin-right: 0; margin-left: 0; } .portable-soft { padding: 20px; } .portable-soft-top { padding-top: 20px; } .portable-soft-right { padding-right: 20px; } .portable-soft-bottom { padding-bottom: 20px; } .portable-soft-left { padding-left: 20px; } .portable-soft-ends { padding-top: 20px; padding-bottom: 20px; } .portable-soft-sides { padding-right: 20px; padding-left: 20px; } .portable-soft-half { padding: 10px; } .portable-soft-half-top { padding-top: 10px; } .portable-soft-half-right { padding-right: 10px; } .portable-soft-half-bottom { padding-bottom: 10px; } .portable-soft-half-left { padding-left: 10px; } .portable-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .portable-soft-half-sides { padding-right: 10px; padding-left: 10px; } .portable-soft-double { padding: 40px; } .portable-soft-double-top { padding-top: 40px; } .portable-soft-double-right { padding-right: 40px; } .portable-soft-double-bottom { padding-bottom: 40px; } .portable-soft-double-left { padding-left: 40px; } .portable-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .portable-soft-double-sides { padding-right: 40px; padding-left: 40px; } .portable-hard { padding: 0; } .portable-hard-top { padding-top: 0; } .portable-hard-right { padding-right: 0; } .portable-hard-bottom { padding-bottom: 0; } .portable-hard-left { padding-left: 0; } .portable-hard-ends { padding-top: 0; padding-bottom: 0; } .portable-hard-sides { padding-right: 0; padding-left: 0; } .portable-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 769px) and (max-width: 1024px) { .lap-ratio--none .ratio__item { position: relative; } .lap-ratio--portrait:before { padding-top: 200%; } .lap-ratio--square:before { padding-top: 100%; } .lap-ratio--landscape:before { padding-top: 50%; } .lap-text-right { text-align: right; } .lap-text-left { text-align: left; } .lap-text-center { text-align: center; } .lap-one-whole { width: 100%; } .lap-one-half, .lap-two-quarters, .lap-three-sixths, .lap-four-eighths, .lap-five-tenths, .lap-six-twelfths { width: 50%; } .lap-one-third, .lap-two-sixths, .lap-three-ninths, .lap-four-twelfths { width: 33.33333%; } .lap-two-thirds, .lap-four-sixths, .lap-six-ninths, .lap-eight-twelfths { width: 66.66667%; } .lap-one-quarter, .lap-two-eighths, .lap-three-twelfths { width: 25%; } .lap-three-quarters, .lap-six-eighths, .lap-nine-twelfths { width: 75%; } .lap-one-fifth, .lap-two-tenths { width: 20%; } .lap-two-fifths, .lap-four-tenths { width: 40%; } .lap-three-fifths, .lap-six-tenths { width: 60%; } .lap-four-fifths, .lap-eight-tenths { width: 80%; } .lap-one-sixth, .lap-two-twelfths { width: 16.66667%; } .lap-five-sixths, .lap-ten-twelfths { width: 83.33333%; } .lap-one-eighth { width: 12.5%; } .lap-three-eighths { width: 37.5%; } .lap-five-eighths { width: 62.5%; } .lap-seven-eighths { width: 87.5%; } .lap-one-ninth { width: 11.11111%; } .lap-two-ninths { width: 22.22222%; } .lap-four-ninths { width: 44.44444%; } .lap-five-ninths { width: 55.55556%; } .lap-seven-ninths { width: 77.77778%; } .lap-eight-ninths { width: 88.88889%; } .lap-one-tenth { width: 10%; } .lap-three-tenths { width: 30%; } .lap-seven-tenths { width: 70%; } .lap-nine-tenths { width: 90%; } .lap-one-twelfth { width: 8.33333%; } .lap-five-twelfths { width: 41.66667%; } .lap-seven-twelfths { width: 58.33333%; } .lap-eleven-twelfths { width: 91.66667%; } .lap-float-left { float: left; } .lap-float-right { float: right; } .lap-float-none { float: none; } .lap-float-inherit { float: inherit; } .lap-push { margin: 20px; } .lap-push-top { margin-top: 20px; } .lap-push-right { margin-right: 20px; } .lap-push-bottom { margin-bottom: 20px; } .lap-push-left { margin-left: 20px; } .lap-push-ends { margin-top: 20px; margin-bottom: 20px; } .lap-push-sides { margin-right: 20px; margin-left: 20px; } .lap-push-half { margin: 10px; } .lap-push-half-top { margin-top: 10px; } .lap-push-half-right { margin-right: 10px; } .lap-push-half-bottom { margin-bottom: 10px; } .lap-push-half-left { margin-left: 10px; } .lap-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .lap-push-half-sides { margin-right: 10px; margin-left: 10px; } .lap-push-double { margin: 40px; } .lap-push-double-top { margin-top: 40px; } .lap-push-double-right { margin-right: 40px; } .lap-push-double-bottom { margin-bottom: 40px; } .lap-push-double-left { margin-left: 40px; } .lap-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .lap-push-double-sides { margin-right: 40px; margin-left: 40px; } .lap-flush { margin: 0; } .lap-flush-top { margin-top: 0; } .lap-flush-right { margin-right: 0; } .lap-flush-bottom { margin-bottom: 0; } .lap-flush-left { margin-left: 0; } .lap-flush-ends { margin-top: 0; margin-bottom: 0; } .lap-flush-sides { margin-right: 0; margin-left: 0; } .lap-soft { padding: 20px; } .lap-soft-top { padding-top: 20px; } .lap-soft-right { padding-right: 20px; } .lap-soft-bottom { padding-bottom: 20px; } .lap-soft-left { padding-left: 20px; } .lap-soft-ends { padding-top: 20px; padding-bottom: 20px; } .lap-soft-sides { padding-right: 20px; padding-left: 20px; } .lap-soft-half { padding: 10px; } .lap-soft-half-top { padding-top: 10px; } .lap-soft-half-right { padding-right: 10px; } .lap-soft-half-bottom { padding-bottom: 10px; } .lap-soft-half-left { padding-left: 10px; } .lap-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .lap-soft-half-sides { padding-right: 10px; padding-left: 10px; } .lap-soft-double { padding: 40px; } .lap-soft-double-top { padding-top: 40px; } .lap-soft-double-right { padding-right: 40px; } .lap-soft-double-bottom { padding-bottom: 40px; } .lap-soft-double-left { padding-left: 40px; } .lap-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .lap-soft-double-sides { padding-right: 40px; padding-left: 40px; } .lap-hard { padding: 0; } .lap-hard-top { padding-top: 0; } .lap-hard-right { padding-right: 0; } .lap-hard-bottom { padding-bottom: 0; } .lap-hard-left { padding-left: 0; } .lap-hard-ends { padding-top: 0; padding-bottom: 0; } .lap-hard-sides { padding-right: 0; padding-left: 0; } .lap-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 769px) { .lap-and-up-ratio--none .ratio__item { position: relative; } .lap-and-up-ratio--portrait:before { padding-top: 200%; } .lap-and-up-ratio--square:before { padding-top: 100%; } .lap-and-up-ratio--landscape:before { padding-top: 50%; } .panel { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0; } .panel__item, .panel__item--left, .panel__item--right { position: absolute; top: 0; bottom: 0; height: 100%; } .lap-and-up-text-right { text-align: right; } .lap-and-up-text-left { text-align: left; } .lap-and-up-text-center { text-align: center; } .lap-and-up-one-whole { width: 100%; } .lap-and-up-one-half, .lap-and-up-two-quarters, .lap-and-up-three-sixths, .lap-and-up-four-eighths, .lap-and-up-five-tenths, .lap-and-up-six-twelfths { width: 50%; } .lap-and-up-one-third, .lap-and-up-two-sixths, .lap-and-up-three-ninths, .lap-and-up-four-twelfths { width: 33.33333%; } .lap-and-up-two-thirds, .lap-and-up-four-sixths, .lap-and-up-six-ninths, .lap-and-up-eight-twelfths { width: 66.66667%; } .lap-and-up-one-quarter, .lap-and-up-two-eighths, .lap-and-up-three-twelfths { width: 25%; } .lap-and-up-three-quarters, .lap-and-up-six-eighths, .lap-and-up-nine-twelfths { width: 75%; } .lap-and-up-one-fifth, .lap-and-up-two-tenths { width: 20%; } .lap-and-up-two-fifths, .lap-and-up-four-tenths { width: 40%; } .lap-and-up-three-fifths, .lap-and-up-six-tenths { width: 60%; } .lap-and-up-four-fifths, .lap-and-up-eight-tenths { width: 80%; } .lap-and-up-one-sixth, .lap-and-up-two-twelfths { width: 16.66667%; } .lap-and-up-five-sixths, .lap-and-up-ten-twelfths { width: 83.33333%; } .lap-and-up-one-eighth { width: 12.5%; } .lap-and-up-three-eighths { width: 37.5%; } .lap-and-up-five-eighths { width: 62.5%; } .lap-and-up-seven-eighths { width: 87.5%; } .lap-and-up-one-ninth { width: 11.11111%; } .lap-and-up-two-ninths { width: 22.22222%; } .lap-and-up-four-ninths { width: 44.44444%; } .lap-and-up-five-ninths { width: 55.55556%; } .lap-and-up-seven-ninths { width: 77.77778%; } .lap-and-up-eight-ninths { width: 88.88889%; } .lap-and-up-one-tenth { width: 10%; } .lap-and-up-three-tenths { width: 30%; } .lap-and-up-seven-tenths { width: 70%; } .lap-and-up-nine-tenths { width: 90%; } .lap-and-up-one-twelfth { width: 8.33333%; } .lap-and-up-five-twelfths { width: 41.66667%; } .lap-and-up-seven-twelfths { width: 58.33333%; } .lap-and-up-eleven-twelfths { width: 91.66667%; } .lap-and-up-float-left { float: left; } .lap-and-up-float-right { float: right; } .lap-and-up-float-none { float: none; } .lap-and-up-float-inherit { float: inherit; } .lap-and-up-push { margin: 20px; } .lap-and-up-push-top { margin-top: 20px; } .lap-and-up-push-right { margin-right: 20px; } .lap-and-up-push-bottom { margin-bottom: 20px; } .lap-and-up-push-left { margin-left: 20px; } .lap-and-up-push-ends { margin-top: 20px; margin-bottom: 20px; } .lap-and-up-push-sides { margin-right: 20px; margin-left: 20px; } .lap-and-up-push-half { margin: 10px; } .lap-and-up-push-half-top { margin-top: 10px; } .lap-and-up-push-half-right { margin-right: 10px; } .lap-and-up-push-half-bottom { margin-bottom: 10px; } .lap-and-up-push-half-left { margin-left: 10px; } .lap-and-up-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .lap-and-up-push-half-sides { margin-right: 10px; margin-left: 10px; } .lap-and-up-push-double { margin: 40px; } .lap-and-up-push-double-top { margin-top: 40px; } .lap-and-up-push-double-right { margin-right: 40px; } .lap-and-up-push-double-bottom { margin-bottom: 40px; } .lap-and-up-push-double-left { margin-left: 40px; } .lap-and-up-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .lap-and-up-push-double-sides { margin-right: 40px; margin-left: 40px; } .lap-and-up-flush { margin: 0; } .lap-and-up-flush-top { margin-top: 0; } .lap-and-up-flush-right { margin-right: 0; } .lap-and-up-flush-bottom { margin-bottom: 0; } .lap-and-up-flush-left { margin-left: 0; } .lap-and-up-flush-ends { margin-top: 0; margin-bottom: 0; } .lap-and-up-flush-sides { margin-right: 0; margin-left: 0; } .lap-and-up-soft { padding: 20px; } .lap-and-up-soft-top { padding-top: 20px; } .lap-and-up-soft-right { padding-right: 20px; } .lap-and-up-soft-bottom { padding-bottom: 20px; } .lap-and-up-soft-left { padding-left: 20px; } .lap-and-up-soft-ends { padding-top: 20px; padding-bottom: 20px; } .lap-and-up-soft-sides { padding-right: 20px; padding-left: 20px; } .lap-and-up-soft-half { padding: 10px; } .lap-and-up-soft-half-top { padding-top: 10px; } .lap-and-up-soft-half-right { padding-right: 10px; } .lap-and-up-soft-half-bottom { padding-bottom: 10px; } .lap-and-up-soft-half-left { padding-left: 10px; } .lap-and-up-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .lap-and-up-soft-half-sides { padding-right: 10px; padding-left: 10px; } .lap-and-up-soft-double { padding: 40px; } .lap-and-up-soft-double-top { padding-top: 40px; } .lap-and-up-soft-double-right { padding-right: 40px; } .lap-and-up-soft-double-bottom { padding-bottom: 40px; } .lap-and-up-soft-double-left { padding-left: 40px; } .lap-and-up-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .lap-and-up-soft-double-sides { padding-right: 40px; padding-left: 40px; } .lap-and-up-hard { padding: 0; } .lap-and-up-hard-top { padding-top: 0; } .lap-and-up-hard-right { padding-right: 0; } .lap-and-up-hard-bottom { padding-bottom: 0; } .lap-and-up-hard-left { padding-left: 0; } .lap-and-up-hard-ends { padding-top: 0; padding-bottom: 0; } .lap-and-up-hard-sides { padding-right: 0; padding-left: 0; } .lap-and-up-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 1025px) and (max-width: 1280px) { .lap-wide-ratio--none .ratio__item { position: relative; } .lap-wide-ratio--portrait:before { padding-top: 200%; } .lap-wide-ratio--square:before { padding-top: 100%; } .lap-wide-ratio--landscape:before { padding-top: 50%; } .lap-wide-text-right { text-align: right; } .lap-wide-text-left { text-align: left; } .lap-wide-text-center { text-align: center; } .lap-wide-one-whole { width: 100%; } .lap-wide-one-half, .lap-wide-two-quarters, .lap-wide-three-sixths, .lap-wide-four-eighths, .lap-wide-five-tenths, .lap-wide-six-twelfths { width: 50%; } .lap-wide-one-third, .lap-wide-two-sixths, .lap-wide-three-ninths, .lap-wide-four-twelfths { width: 33.33333%; } .lap-wide-two-thirds, .lap-wide-four-sixths, .lap-wide-six-ninths, .lap-wide-eight-twelfths { width: 66.66667%; } .lap-wide-one-quarter, .lap-wide-two-eighths, .lap-wide-three-twelfths { width: 25%; } .lap-wide-three-quarters, .lap-wide-six-eighths, .lap-wide-nine-twelfths { width: 75%; } .lap-wide-one-fifth, .lap-wide-two-tenths { width: 20%; } .lap-wide-two-fifths, .lap-wide-four-tenths { width: 40%; } .lap-wide-three-fifths, .lap-wide-six-tenths { width: 60%; } .lap-wide-four-fifths, .lap-wide-eight-tenths { width: 80%; } .lap-wide-one-sixth, .lap-wide-two-twelfths { width: 16.66667%; } .lap-wide-five-sixths, .lap-wide-ten-twelfths { width: 83.33333%; } .lap-wide-one-eighth { width: 12.5%; } .lap-wide-three-eighths { width: 37.5%; } .lap-wide-five-eighths { width: 62.5%; } .lap-wide-seven-eighths { width: 87.5%; } .lap-wide-one-ninth { width: 11.11111%; } .lap-wide-two-ninths { width: 22.22222%; } .lap-wide-four-ninths { width: 44.44444%; } .lap-wide-five-ninths { width: 55.55556%; } .lap-wide-seven-ninths { width: 77.77778%; } .lap-wide-eight-ninths { width: 88.88889%; } .lap-wide-one-tenth { width: 10%; } .lap-wide-three-tenths { width: 30%; } .lap-wide-seven-tenths { width: 70%; } .lap-wide-nine-tenths { width: 90%; } .lap-wide-one-twelfth { width: 8.33333%; } .lap-wide-five-twelfths { width: 41.66667%; } .lap-wide-seven-twelfths { width: 58.33333%; } .lap-wide-eleven-twelfths { width: 91.66667%; } .lap-wide-float-left { float: left; } .lap-wide-float-right { float: right; } .lap-wide-float-none { float: none; } .lap-wide-float-inherit { float: inherit; } .lap-wide-push { margin: 20px; } .lap-wide-push-top { margin-top: 20px; } .lap-wide-push-right { margin-right: 20px; } .lap-wide-push-bottom { margin-bottom: 20px; } .lap-wide-push-left { margin-left: 20px; } .lap-wide-push-ends { margin-top: 20px; margin-bottom: 20px; } .lap-wide-push-sides { margin-right: 20px; margin-left: 20px; } .lap-wide-push-half { margin: 10px; } .lap-wide-push-half-top { margin-top: 10px; } .lap-wide-push-half-right { margin-right: 10px; } .lap-wide-push-half-bottom { margin-bottom: 10px; } .lap-wide-push-half-left { margin-left: 10px; } .lap-wide-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .lap-wide-push-half-sides { margin-right: 10px; margin-left: 10px; } .lap-wide-push-double { margin: 40px; } .lap-wide-push-double-top { margin-top: 40px; } .lap-wide-push-double-right { margin-right: 40px; } .lap-wide-push-double-bottom { margin-bottom: 40px; } .lap-wide-push-double-left { margin-left: 40px; } .lap-wide-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .lap-wide-push-double-sides { margin-right: 40px; margin-left: 40px; } .lap-wide-flush { margin: 0; } .lap-wide-flush-top { margin-top: 0; } .lap-wide-flush-right { margin-right: 0; } .lap-wide-flush-bottom { margin-bottom: 0; } .lap-wide-flush-left { margin-left: 0; } .lap-wide-flush-ends { margin-top: 0; margin-bottom: 0; } .lap-wide-flush-sides { margin-right: 0; margin-left: 0; } .lap-wide-soft { padding: 20px; } .lap-wide-soft-top { padding-top: 20px; } .lap-wide-soft-right { padding-right: 20px; } .lap-wide-soft-bottom { padding-bottom: 20px; } .lap-wide-soft-left { padding-left: 20px; } .lap-wide-soft-ends { padding-top: 20px; padding-bottom: 20px; } .lap-wide-soft-sides { padding-right: 20px; padding-left: 20px; } .lap-wide-soft-half { padding: 10px; } .lap-wide-soft-half-top { padding-top: 10px; } .lap-wide-soft-half-right { padding-right: 10px; } .lap-wide-soft-half-bottom { padding-bottom: 10px; } .lap-wide-soft-half-left { padding-left: 10px; } .lap-wide-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .lap-wide-soft-half-sides { padding-right: 10px; padding-left: 10px; } .lap-wide-soft-double { padding: 40px; } .lap-wide-soft-double-top { padding-top: 40px; } .lap-wide-soft-double-right { padding-right: 40px; } .lap-wide-soft-double-bottom { padding-bottom: 40px; } .lap-wide-soft-double-left { padding-left: 40px; } .lap-wide-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .lap-wide-soft-double-sides { padding-right: 40px; padding-left: 40px; } .lap-wide-hard { padding: 0; } .lap-wide-hard-top { padding-top: 0; } .lap-wide-hard-right { padding-right: 0; } .lap-wide-hard-bottom { padding-bottom: 0; } .lap-wide-hard-left { padding-left: 0; } .lap-wide-hard-ends { padding-top: 0; padding-bottom: 0; } .lap-wide-hard-sides { padding-right: 0; padding-left: 0; } .lap-wide-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 1025px) { .lap-wide-and-up-ratio--none .ratio__item { position: relative; } .lap-wide-and-up-ratio--portrait:before { padding-top: 200%; } .lap-wide-and-up-ratio--square:before { padding-top: 100%; } .lap-wide-and-up-ratio--landscape:before { padding-top: 50%; } .lap-wide-and-up-text-right { text-align: right; } .lap-wide-and-up-text-left { text-align: left; } .lap-wide-and-up-text-center { text-align: center; } .lap-wide-and-up-one-whole { width: 100%; } .lap-wide-and-up-one-half, .lap-wide-and-up-two-quarters, .lap-wide-and-up-three-sixths, .lap-wide-and-up-four-eighths, .lap-wide-and-up-five-tenths, .lap-wide-and-up-six-twelfths { width: 50%; } .lap-wide-and-up-one-third, .lap-wide-and-up-two-sixths, .lap-wide-and-up-three-ninths, .lap-wide-and-up-four-twelfths { width: 33.33333%; } .lap-wide-and-up-two-thirds, .lap-wide-and-up-four-sixths, .lap-wide-and-up-six-ninths, .lap-wide-and-up-eight-twelfths { width: 66.66667%; } .lap-wide-and-up-one-quarter, .lap-wide-and-up-two-eighths, .lap-wide-and-up-three-twelfths { width: 25%; } .lap-wide-and-up-three-quarters, .lap-wide-and-up-six-eighths, .lap-wide-and-up-nine-twelfths { width: 75%; } .lap-wide-and-up-one-fifth, .lap-wide-and-up-two-tenths { width: 20%; } .lap-wide-and-up-two-fifths, .lap-wide-and-up-four-tenths { width: 40%; } .lap-wide-and-up-three-fifths, .lap-wide-and-up-six-tenths { width: 60%; } .lap-wide-and-up-four-fifths, .lap-wide-and-up-eight-tenths { width: 80%; } .lap-wide-and-up-one-sixth, .lap-wide-and-up-two-twelfths { width: 16.66667%; } .lap-wide-and-up-five-sixths, .lap-wide-and-up-ten-twelfths { width: 83.33333%; } .lap-wide-and-up-one-eighth { width: 12.5%; } .lap-wide-and-up-three-eighths { width: 37.5%; } .lap-wide-and-up-five-eighths { width: 62.5%; } .lap-wide-and-up-seven-eighths { width: 87.5%; } .lap-wide-and-up-one-ninth { width: 11.11111%; } .lap-wide-and-up-two-ninths { width: 22.22222%; } .lap-wide-and-up-four-ninths { width: 44.44444%; } .lap-wide-and-up-five-ninths { width: 55.55556%; } .lap-wide-and-up-seven-ninths { width: 77.77778%; } .lap-wide-and-up-eight-ninths { width: 88.88889%; } .lap-wide-and-up-one-tenth { width: 10%; } .lap-wide-and-up-three-tenths { width: 30%; } .lap-wide-and-up-seven-tenths { width: 70%; } .lap-wide-and-up-nine-tenths { width: 90%; } .lap-wide-and-up-one-twelfth { width: 8.33333%; } .lap-wide-and-up-five-twelfths { width: 41.66667%; } .lap-wide-and-up-seven-twelfths { width: 58.33333%; } .lap-wide-and-up-eleven-twelfths { width: 91.66667%; } .lap-wide-and-up-float-left { float: left; } .lap-wide-and-up-float-right { float: right; } .lap-wide-and-up-float-none { float: none; } .lap-wide-and-up-float-inherit { float: inherit; } .lap-wide-and-up-push { margin: 20px; } .lap-wide-and-up-push-top { margin-top: 20px; } .lap-wide-and-up-push-right { margin-right: 20px; } .lap-wide-and-up-push-bottom { margin-bottom: 20px; } .lap-wide-and-up-push-left { margin-left: 20px; } .lap-wide-and-up-push-ends { margin-top: 20px; margin-bottom: 20px; } .lap-wide-and-up-push-sides { margin-right: 20px; margin-left: 20px; } .lap-wide-and-up-push-half { margin: 10px; } .lap-wide-and-up-push-half-top { margin-top: 10px; } .lap-wide-and-up-push-half-right { margin-right: 10px; } .lap-wide-and-up-push-half-bottom { margin-bottom: 10px; } .lap-wide-and-up-push-half-left { margin-left: 10px; } .lap-wide-and-up-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .lap-wide-and-up-push-half-sides { margin-right: 10px; margin-left: 10px; } .lap-wide-and-up-push-double { margin: 40px; } .lap-wide-and-up-push-double-top { margin-top: 40px; } .lap-wide-and-up-push-double-right { margin-right: 40px; } .lap-wide-and-up-push-double-bottom { margin-bottom: 40px; } .lap-wide-and-up-push-double-left { margin-left: 40px; } .lap-wide-and-up-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .lap-wide-and-up-push-double-sides { margin-right: 40px; margin-left: 40px; } .lap-wide-and-up-flush { margin: 0; } .lap-wide-and-up-flush-top { margin-top: 0; } .lap-wide-and-up-flush-right { margin-right: 0; } .lap-wide-and-up-flush-bottom { margin-bottom: 0; } .lap-wide-and-up-flush-left { margin-left: 0; } .lap-wide-and-up-flush-ends { margin-top: 0; margin-bottom: 0; } .lap-wide-and-up-flush-sides { margin-right: 0; margin-left: 0; } .lap-wide-and-up-soft { padding: 20px; } .lap-wide-and-up-soft-top { padding-top: 20px; } .lap-wide-and-up-soft-right { padding-right: 20px; } .lap-wide-and-up-soft-bottom { padding-bottom: 20px; } .lap-wide-and-up-soft-left { padding-left: 20px; } .lap-wide-and-up-soft-ends { padding-top: 20px; padding-bottom: 20px; } .lap-wide-and-up-soft-sides { padding-right: 20px; padding-left: 20px; } .lap-wide-and-up-soft-half { padding: 10px; } .lap-wide-and-up-soft-half-top { padding-top: 10px; } .lap-wide-and-up-soft-half-right { padding-right: 10px; } .lap-wide-and-up-soft-half-bottom { padding-bottom: 10px; } .lap-wide-and-up-soft-half-left { padding-left: 10px; } .lap-wide-and-up-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .lap-wide-and-up-soft-half-sides { padding-right: 10px; padding-left: 10px; } .lap-wide-and-up-soft-double { padding: 40px; } .lap-wide-and-up-soft-double-top { padding-top: 40px; } .lap-wide-and-up-soft-double-right { padding-right: 40px; } .lap-wide-and-up-soft-double-bottom { padding-bottom: 40px; } .lap-wide-and-up-soft-double-left { padding-left: 40px; } .lap-wide-and-up-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .lap-wide-and-up-soft-double-sides { padding-right: 40px; padding-left: 40px; } .lap-wide-and-up-hard { padding: 0; } .lap-wide-and-up-hard-top { padding-top: 0; } .lap-wide-and-up-hard-right { padding-right: 0; } .lap-wide-and-up-hard-bottom { padding-bottom: 0; } .lap-wide-and-up-hard-left { padding-left: 0; } .lap-wide-and-up-hard-ends { padding-top: 0; padding-bottom: 0; } .lap-wide-and-up-hard-sides { padding-right: 0; padding-left: 0; } .lap-wide-and-up-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 1281px) { body { font-size: 140.625%; } .desk-and-up-ratio--none .ratio__item { position: relative; } .anchored-ratio--none .ratio__item { position: relative; } .desk-and-up-ratio--portrait:before { padding-top: 200%; } .anchored-ratio--portrait:before { padding-top: 200%; } .desk-and-up-ratio--square:before { padding-top: 100%; } .anchored-ratio--square:before { padding-top: 100%; } .desk-and-up-ratio--landscape:before { padding-top: 50%; } .anchored-ratio--landscape:before { padding-top: 50%; } .desk-and-up-text-right { text-align: right; } .anchored-text-right { text-align: right; } .desk-and-up-text-left { text-align: left; } .anchored-text-left { text-align: left; } .desk-and-up-text-center { text-align: center; } .anchored-text-center { text-align: center; } .desk-and-up-one-whole { width: 100%; } .anchored-one-whole { width: 100%; } .desk-and-up-one-half, .desk-and-up-two-quarters, .desk-and-up-three-sixths, .desk-and-up-four-eighths, .desk-and-up-five-tenths, .desk-and-up-six-twelfths { width: 50%; } .anchored-one-half, .anchored-two-quarters, .anchored-three-sixths, .anchored-four-eighths, .anchored-five-tenths, .anchored-six-twelfths { width: 50%; } .desk-and-up-one-third, .desk-and-up-two-sixths, .desk-and-up-three-ninths, .desk-and-up-four-twelfths { width: 33.33333%; } .anchored-one-third, .anchored-two-sixths, .anchored-three-ninths, .anchored-four-twelfths { width: 33.33333%; } .desk-and-up-two-thirds, .desk-and-up-four-sixths, .desk-and-up-six-ninths, .desk-and-up-eight-twelfths { width: 66.66667%; } .anchored-two-thirds, .anchored-four-sixths, .anchored-six-ninths, .anchored-eight-twelfths { width: 66.66667%; } .desk-and-up-one-quarter, .desk-and-up-two-eighths, .desk-and-up-three-twelfths { width: 25%; } .anchored-one-quarter, .anchored-two-eighths, .anchored-three-twelfths { width: 25%; } .desk-and-up-three-quarters, .desk-and-up-six-eighths, .desk-and-up-nine-twelfths { width: 75%; } .anchored-three-quarters, .anchored-six-eighths, .anchored-nine-twelfths { width: 75%; } .desk-and-up-one-fifth, .desk-and-up-two-tenths { width: 20%; } .anchored-one-fifth, .anchored-two-tenths { width: 20%; } .desk-and-up-two-fifths, .desk-and-up-four-tenths { width: 40%; } .anchored-two-fifths, .anchored-four-tenths { width: 40%; } .desk-and-up-three-fifths, .desk-and-up-six-tenths { width: 60%; } .anchored-three-fifths, .anchored-six-tenths { width: 60%; } .desk-and-up-four-fifths, .desk-and-up-eight-tenths { width: 80%; } .anchored-four-fifths, .anchored-eight-tenths { width: 80%; } .desk-and-up-one-sixth, .desk-and-up-two-twelfths { width: 16.66667%; } .anchored-one-sixth, .anchored-two-twelfths { width: 16.66667%; } .desk-and-up-five-sixths, .desk-and-up-ten-twelfths { width: 83.33333%; } .anchored-five-sixths, .anchored-ten-twelfths { width: 83.33333%; } .desk-and-up-one-eighth { width: 12.5%; } .anchored-one-eighth { width: 12.5%; } .desk-and-up-three-eighths { width: 37.5%; } .anchored-three-eighths { width: 37.5%; } .desk-and-up-five-eighths { width: 62.5%; } .anchored-five-eighths { width: 62.5%; } .desk-and-up-seven-eighths { width: 87.5%; } .anchored-seven-eighths { width: 87.5%; } .desk-and-up-one-ninth { width: 11.11111%; } .anchored-one-ninth { width: 11.11111%; } .desk-and-up-two-ninths { width: 22.22222%; } .anchored-two-ninths { width: 22.22222%; } .desk-and-up-four-ninths { width: 44.44444%; } .anchored-four-ninths { width: 44.44444%; } .desk-and-up-five-ninths { width: 55.55556%; } .anchored-five-ninths { width: 55.55556%; } .desk-and-up-seven-ninths { width: 77.77778%; } .anchored-seven-ninths { width: 77.77778%; } .desk-and-up-eight-ninths { width: 88.88889%; } .anchored-eight-ninths { width: 88.88889%; } .desk-and-up-one-tenth { width: 10%; } .anchored-one-tenth { width: 10%; } .desk-and-up-three-tenths { width: 30%; } .anchored-three-tenths { width: 30%; } .desk-and-up-seven-tenths { width: 70%; } .anchored-seven-tenths { width: 70%; } .desk-and-up-nine-tenths { width: 90%; } .anchored-nine-tenths { width: 90%; } .desk-and-up-one-twelfth { width: 8.33333%; } .anchored-one-twelfth { width: 8.33333%; } .desk-and-up-five-twelfths { width: 41.66667%; } .anchored-five-twelfths { width: 41.66667%; } .desk-and-up-seven-twelfths { width: 58.33333%; } .anchored-seven-twelfths { width: 58.33333%; } .desk-and-up-eleven-twelfths { width: 91.66667%; } .anchored-eleven-twelfths { width: 91.66667%; } .desk-and-up-float-left { float: left; } .anchored-float-left { float: left; } .desk-and-up-float-right { float: right; } .anchored-float-right { float: right; } .desk-and-up-float-none { float: none; } .anchored-float-none { float: none; } .desk-and-up-float-inherit { float: inherit; } .anchored-float-inherit { float: inherit; } .desk-and-up-push { margin: 20px; } .anchored-push { margin: 20px; } .desk-and-up-push-top { margin-top: 20px; } .anchored-push-top { margin-top: 20px; } .desk-and-up-push-right { margin-right: 20px; } .anchored-push-right { margin-right: 20px; } .desk-and-up-push-bottom { margin-bottom: 20px; } .anchored-push-bottom { margin-bottom: 20px; } .desk-and-up-push-left { margin-left: 20px; } .anchored-push-left { margin-left: 20px; } .desk-and-up-push-ends { margin-top: 20px; margin-bottom: 20px; } .anchored-push-ends { margin-top: 20px; margin-bottom: 20px; } .desk-and-up-push-sides { margin-right: 20px; margin-left: 20px; } .anchored-push-sides { margin-right: 20px; margin-left: 20px; } .desk-and-up-push-half { margin: 10px; } .anchored-push-half { margin: 10px; } .desk-and-up-push-half-top { margin-top: 10px; } .anchored-push-half-top { margin-top: 10px; } .desk-and-up-push-half-right { margin-right: 10px; } .anchored-push-half-right { margin-right: 10px; } .desk-and-up-push-half-bottom { margin-bottom: 10px; } .anchored-push-half-bottom { margin-bottom: 10px; } .desk-and-up-push-half-left { margin-left: 10px; } .anchored-push-half-left { margin-left: 10px; } .desk-and-up-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .anchored-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .desk-and-up-push-half-sides { margin-right: 10px; margin-left: 10px; } .anchored-push-half-sides { margin-right: 10px; margin-left: 10px; } .desk-and-up-push-double { margin: 40px; } .anchored-push-double { margin: 40px; } .desk-and-up-push-double-top { margin-top: 40px; } .anchored-push-double-top { margin-top: 40px; } .desk-and-up-push-double-right { margin-right: 40px; } .anchored-push-double-right { margin-right: 40px; } .desk-and-up-push-double-bottom { margin-bottom: 40px; } .anchored-push-double-bottom { margin-bottom: 40px; } .desk-and-up-push-double-left { margin-left: 40px; } .anchored-push-double-left { margin-left: 40px; } .desk-and-up-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .anchored-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .desk-and-up-push-double-sides { margin-right: 40px; margin-left: 40px; } .anchored-push-double-sides { margin-right: 40px; margin-left: 40px; } .desk-and-up-flush { margin: 0; } .anchored-flush { margin: 0; } .desk-and-up-flush-top { margin-top: 0; } .anchored-flush-top { margin-top: 0; } .desk-and-up-flush-right { margin-right: 0; } .anchored-flush-right { margin-right: 0; } .desk-and-up-flush-bottom { margin-bottom: 0; } .anchored-flush-bottom { margin-bottom: 0; } .desk-and-up-flush-left { margin-left: 0; } .anchored-flush-left { margin-left: 0; } .desk-and-up-flush-ends { margin-top: 0; margin-bottom: 0; } .anchored-flush-ends { margin-top: 0; margin-bottom: 0; } .desk-and-up-flush-sides { margin-right: 0; margin-left: 0; } .anchored-flush-sides { margin-right: 0; margin-left: 0; } .desk-and-up-soft { padding: 20px; } .anchored-soft { padding: 20px; } .desk-and-up-soft-top { padding-top: 20px; } .anchored-soft-top { padding-top: 20px; } .desk-and-up-soft-right { padding-right: 20px; } .anchored-soft-right { padding-right: 20px; } .desk-and-up-soft-bottom { padding-bottom: 20px; } .anchored-soft-bottom { padding-bottom: 20px; } .desk-and-up-soft-left { padding-left: 20px; } .anchored-soft-left { padding-left: 20px; } .desk-and-up-soft-ends { padding-top: 20px; padding-bottom: 20px; } .anchored-soft-ends { padding-top: 20px; padding-bottom: 20px; } .desk-and-up-soft-sides { padding-right: 20px; padding-left: 20px; } .anchored-soft-sides { padding-right: 20px; padding-left: 20px; } .desk-and-up-soft-half { padding: 10px; } .anchored-soft-half { padding: 10px; } .desk-and-up-soft-half-top { padding-top: 10px; } .anchored-soft-half-top { padding-top: 10px; } .desk-and-up-soft-half-right { padding-right: 10px; } .anchored-soft-half-right { padding-right: 10px; } .desk-and-up-soft-half-bottom { padding-bottom: 10px; } .anchored-soft-half-bottom { padding-bottom: 10px; } .desk-and-up-soft-half-left { padding-left: 10px; } .anchored-soft-half-left { padding-left: 10px; } .desk-and-up-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .anchored-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .desk-and-up-soft-half-sides { padding-right: 10px; padding-left: 10px; } .anchored-soft-half-sides { padding-right: 10px; padding-left: 10px; } .desk-and-up-soft-double { padding: 40px; } .anchored-soft-double { padding: 40px; } .desk-and-up-soft-double-top { padding-top: 40px; } .anchored-soft-double-top { padding-top: 40px; } .desk-and-up-soft-double-right { padding-right: 40px; } .anchored-soft-double-right { padding-right: 40px; } .desk-and-up-soft-double-bottom { padding-bottom: 40px; } .anchored-soft-double-bottom { padding-bottom: 40px; } .desk-and-up-soft-double-left { padding-left: 40px; } .anchored-soft-double-left { padding-left: 40px; } .desk-and-up-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .anchored-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .desk-and-up-soft-double-sides { padding-right: 40px; padding-left: 40px; } .anchored-soft-double-sides { padding-right: 40px; padding-left: 40px; } .desk-and-up-hard { padding: 0; } .anchored-hard { padding: 0; } .desk-and-up-hard-top { padding-top: 0; } .anchored-hard-top { padding-top: 0; } .desk-and-up-hard-right { padding-right: 0; } .anchored-hard-right { padding-right: 0; } .desk-and-up-hard-bottom { padding-bottom: 0; } .anchored-hard-bottom { padding-bottom: 0; } .desk-and-up-hard-left { padding-left: 0; } .anchored-hard-left { padding-left: 0; } .desk-and-up-hard-ends { padding-top: 0; padding-bottom: 0; } .anchored-hard-ends { padding-top: 0; padding-bottom: 0; } .desk-and-up-hard-sides { padding-right: 0; padding-left: 0; } .anchored-hard-sides { padding-right: 0; padding-left: 0; } .desk-and-up-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } .anchored-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 1281px) and (max-width: 1680px) { .desk-ratio--none .ratio__item { position: relative; } .desk-ratio--portrait:before { padding-top: 200%; } .desk-ratio--square:before { padding-top: 100%; } .desk-ratio--landscape:before { padding-top: 50%; } .desk-text-right { text-align: right; } .desk-text-left { text-align: left; } .desk-text-center { text-align: center; } .desk-one-whole { width: 100%; } .desk-one-half, .desk-two-quarters, .desk-three-sixths, .desk-four-eighths, .desk-five-tenths, .desk-six-twelfths { width: 50%; } .desk-one-third, .desk-two-sixths, .desk-three-ninths, .desk-four-twelfths { width: 33.33333%; } .desk-two-thirds, .desk-four-sixths, .desk-six-ninths, .desk-eight-twelfths { width: 66.66667%; } .desk-one-quarter, .desk-two-eighths, .desk-three-twelfths { width: 25%; } .desk-three-quarters, .desk-six-eighths, .desk-nine-twelfths { width: 75%; } .desk-one-fifth, .desk-two-tenths { width: 20%; } .desk-two-fifths, .desk-four-tenths { width: 40%; } .desk-three-fifths, .desk-six-tenths { width: 60%; } .desk-four-fifths, .desk-eight-tenths { width: 80%; } .desk-one-sixth, .desk-two-twelfths { width: 16.66667%; } .desk-five-sixths, .desk-ten-twelfths { width: 83.33333%; } .desk-one-eighth { width: 12.5%; } .desk-three-eighths { width: 37.5%; } .desk-five-eighths { width: 62.5%; } .desk-seven-eighths { width: 87.5%; } .desk-one-ninth { width: 11.11111%; } .desk-two-ninths { width: 22.22222%; } .desk-four-ninths { width: 44.44444%; } .desk-five-ninths { width: 55.55556%; } .desk-seven-ninths { width: 77.77778%; } .desk-eight-ninths { width: 88.88889%; } .desk-one-tenth { width: 10%; } .desk-three-tenths { width: 30%; } .desk-seven-tenths { width: 70%; } .desk-nine-tenths { width: 90%; } .desk-one-twelfth { width: 8.33333%; } .desk-five-twelfths { width: 41.66667%; } .desk-seven-twelfths { width: 58.33333%; } .desk-eleven-twelfths { width: 91.66667%; } .desk-float-left { float: left; } .desk-float-right { float: right; } .desk-float-none { float: none; } .desk-float-inherit { float: inherit; } .desk-push { margin: 20px; } .desk-push-top { margin-top: 20px; } .desk-push-right { margin-right: 20px; } .desk-push-bottom { margin-bottom: 20px; } .desk-push-left { margin-left: 20px; } .desk-push-ends { margin-top: 20px; margin-bottom: 20px; } .desk-push-sides { margin-right: 20px; margin-left: 20px; } .desk-push-half { margin: 10px; } .desk-push-half-top { margin-top: 10px; } .desk-push-half-right { margin-right: 10px; } .desk-push-half-bottom { margin-bottom: 10px; } .desk-push-half-left { margin-left: 10px; } .desk-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .desk-push-half-sides { margin-right: 10px; margin-left: 10px; } .desk-push-double { margin: 40px; } .desk-push-double-top { margin-top: 40px; } .desk-push-double-right { margin-right: 40px; } .desk-push-double-bottom { margin-bottom: 40px; } .desk-push-double-left { margin-left: 40px; } .desk-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .desk-push-double-sides { margin-right: 40px; margin-left: 40px; } .desk-flush { margin: 0; } .desk-flush-top { margin-top: 0; } .desk-flush-right { margin-right: 0; } .desk-flush-bottom { margin-bottom: 0; } .desk-flush-left { margin-left: 0; } .desk-flush-ends { margin-top: 0; margin-bottom: 0; } .desk-flush-sides { margin-right: 0; margin-left: 0; } .desk-soft { padding: 20px; } .desk-soft-top { padding-top: 20px; } .desk-soft-right { padding-right: 20px; } .desk-soft-bottom { padding-bottom: 20px; } .desk-soft-left { padding-left: 20px; } .desk-soft-ends { padding-top: 20px; padding-bottom: 20px; } .desk-soft-sides { padding-right: 20px; padding-left: 20px; } .desk-soft-half { padding: 10px; } .desk-soft-half-top { padding-top: 10px; } .desk-soft-half-right { padding-right: 10px; } .desk-soft-half-bottom { padding-bottom: 10px; } .desk-soft-half-left { padding-left: 10px; } .desk-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .desk-soft-half-sides { padding-right: 10px; padding-left: 10px; } .desk-soft-double { padding: 40px; } .desk-soft-double-top { padding-top: 40px; } .desk-soft-double-right { padding-right: 40px; } .desk-soft-double-bottom { padding-bottom: 40px; } .desk-soft-double-left { padding-left: 40px; } .desk-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .desk-soft-double-sides { padding-right: 40px; padding-left: 40px; } .desk-hard { padding: 0; } .desk-hard-top { padding-top: 0; } .desk-hard-right { padding-right: 0; } .desk-hard-bottom { padding-bottom: 0; } .desk-hard-left { padding-left: 0; } .desk-hard-ends { padding-top: 0; padding-bottom: 0; } .desk-hard-sides { padding-right: 0; padding-left: 0; } .desk-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 1681px) { .desk-wide-ratio--none .ratio__item { position: relative; } .desk-wide-ratio--portrait:before { padding-top: 200%; } .desk-wide-ratio--square:before { padding-top: 100%; } .desk-wide-ratio--landscape:before { padding-top: 50%; } .desk-wide-text-right { text-align: right; } .desk-wide-text-left { text-align: left; } .desk-wide-text-center { text-align: center; } .desk-wide-one-whole { width: 100%; } .desk-wide-one-half, .desk-wide-two-quarters, .desk-wide-three-sixths, .desk-wide-four-eighths, .desk-wide-five-tenths, .desk-wide-six-twelfths { width: 50%; } .desk-wide-one-third, .desk-wide-two-sixths, .desk-wide-three-ninths, .desk-wide-four-twelfths { width: 33.33333%; } .desk-wide-two-thirds, .desk-wide-four-sixths, .desk-wide-six-ninths, .desk-wide-eight-twelfths { width: 66.66667%; } .desk-wide-one-quarter, .desk-wide-two-eighths, .desk-wide-three-twelfths { width: 25%; } .desk-wide-three-quarters, .desk-wide-six-eighths, .desk-wide-nine-twelfths { width: 75%; } .desk-wide-one-fifth, .desk-wide-two-tenths { width: 20%; } .desk-wide-two-fifths, .desk-wide-four-tenths { width: 40%; } .desk-wide-three-fifths, .desk-wide-six-tenths { width: 60%; } .desk-wide-four-fifths, .desk-wide-eight-tenths { width: 80%; } .desk-wide-one-sixth, .desk-wide-two-twelfths { width: 16.66667%; } .desk-wide-five-sixths, .desk-wide-ten-twelfths { width: 83.33333%; } .desk-wide-one-eighth { width: 12.5%; } .desk-wide-three-eighths { width: 37.5%; } .desk-wide-five-eighths { width: 62.5%; } .desk-wide-seven-eighths { width: 87.5%; } .desk-wide-one-ninth { width: 11.11111%; } .desk-wide-two-ninths { width: 22.22222%; } .desk-wide-four-ninths { width: 44.44444%; } .desk-wide-five-ninths { width: 55.55556%; } .desk-wide-seven-ninths { width: 77.77778%; } .desk-wide-eight-ninths { width: 88.88889%; } .desk-wide-one-tenth { width: 10%; } .desk-wide-three-tenths { width: 30%; } .desk-wide-seven-tenths { width: 70%; } .desk-wide-nine-tenths { width: 90%; } .desk-wide-one-twelfth { width: 8.33333%; } .desk-wide-five-twelfths { width: 41.66667%; } .desk-wide-seven-twelfths { width: 58.33333%; } .desk-wide-eleven-twelfths { width: 91.66667%; } .desk-wide-float-left { float: left; } .desk-wide-float-right { float: right; } .desk-wide-float-none { float: none; } .desk-wide-float-inherit { float: inherit; } .desk-wide-push { margin: 20px; } .desk-wide-push-top { margin-top: 20px; } .desk-wide-push-right { margin-right: 20px; } .desk-wide-push-bottom { margin-bottom: 20px; } .desk-wide-push-left { margin-left: 20px; } .desk-wide-push-ends { margin-top: 20px; margin-bottom: 20px; } .desk-wide-push-sides { margin-right: 20px; margin-left: 20px; } .desk-wide-push-half { margin: 10px; } .desk-wide-push-half-top { margin-top: 10px; } .desk-wide-push-half-right { margin-right: 10px; } .desk-wide-push-half-bottom { margin-bottom: 10px; } .desk-wide-push-half-left { margin-left: 10px; } .desk-wide-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .desk-wide-push-half-sides { margin-right: 10px; margin-left: 10px; } .desk-wide-push-double { margin: 40px; } .desk-wide-push-double-top { margin-top: 40px; } .desk-wide-push-double-right { margin-right: 40px; } .desk-wide-push-double-bottom { margin-bottom: 40px; } .desk-wide-push-double-left { margin-left: 40px; } .desk-wide-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .desk-wide-push-double-sides { margin-right: 40px; margin-left: 40px; } .desk-wide-flush { margin: 0; } .desk-wide-flush-top { margin-top: 0; } .desk-wide-flush-right { margin-right: 0; } .desk-wide-flush-bottom { margin-bottom: 0; } .desk-wide-flush-left { margin-left: 0; } .desk-wide-flush-ends { margin-top: 0; margin-bottom: 0; } .desk-wide-flush-sides { margin-right: 0; margin-left: 0; } .desk-wide-soft { padding: 20px; } .desk-wide-soft-top { padding-top: 20px; } .desk-wide-soft-right { padding-right: 20px; } .desk-wide-soft-bottom { padding-bottom: 20px; } .desk-wide-soft-left { padding-left: 20px; } .desk-wide-soft-ends { padding-top: 20px; padding-bottom: 20px; } .desk-wide-soft-sides { padding-right: 20px; padding-left: 20px; } .desk-wide-soft-half { padding: 10px; } .desk-wide-soft-half-top { padding-top: 10px; } .desk-wide-soft-half-right { padding-right: 10px; } .desk-wide-soft-half-bottom { padding-bottom: 10px; } .desk-wide-soft-half-left { padding-left: 10px; } .desk-wide-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .desk-wide-soft-half-sides { padding-right: 10px; padding-left: 10px; } .desk-wide-soft-double { padding: 40px; } .desk-wide-soft-double-top { padding-top: 40px; } .desk-wide-soft-double-right { padding-right: 40px; } .desk-wide-soft-double-bottom { padding-bottom: 40px; } .desk-wide-soft-double-left { padding-left: 40px; } .desk-wide-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .desk-wide-soft-double-sides { padding-right: 40px; padding-left: 40px; } .desk-wide-hard { padding: 0; } .desk-wide-hard-top { padding-top: 0; } .desk-wide-hard-right { padding-right: 0; } .desk-wide-hard-bottom { padding-bottom: 0; } .desk-wide-hard-left { padding-left: 0; } .desk-wide-hard-ends { padding-top: 0; padding-bottom: 0; } .desk-wide-hard-sides { padding-right: 0; padding-left: 0; } .desk-wide-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (max-width: 768px) { body { font-size: 112.5%; } .handheld-ratio--none .ratio__item { position: relative; } .handheld-ratio--portrait:before { padding-top: 200%; } .handheld-ratio--square:before { padding-top: 100%; } .handheld-ratio--landscape:before { padding-top: 50%; } .handheld-text-right { text-align: right; } .handheld-text-left { text-align: left; } .handheld-text-center { text-align: center; } .handheld-one-whole { width: 100%; } .handheld-one-half, .handheld-two-quarters, .handheld-three-sixths, .handheld-four-eighths, .handheld-five-tenths, .handheld-six-twelfths { width: 50%; } .handheld-one-third, .handheld-two-sixths, .handheld-three-ninths, .handheld-four-twelfths { width: 33.33333%; } .handheld-two-thirds, .handheld-four-sixths, .handheld-six-ninths, .handheld-eight-twelfths { width: 66.66667%; } .handheld-one-quarter, .handheld-two-eighths, .handheld-three-twelfths { width: 25%; } .handheld-three-quarters, .handheld-six-eighths, .handheld-nine-twelfths { width: 75%; } .handheld-one-fifth, .handheld-two-tenths { width: 20%; } .handheld-two-fifths, .handheld-four-tenths { width: 40%; } .handheld-three-fifths, .handheld-six-tenths { width: 60%; } .handheld-four-fifths, .handheld-eight-tenths { width: 80%; } .handheld-one-sixth, .handheld-two-twelfths { width: 16.66667%; } .handheld-five-sixths, .handheld-ten-twelfths { width: 83.33333%; } .handheld-one-eighth { width: 12.5%; } .handheld-three-eighths { width: 37.5%; } .handheld-five-eighths { width: 62.5%; } .handheld-seven-eighths { width: 87.5%; } .handheld-one-ninth { width: 11.11111%; } .handheld-two-ninths { width: 22.22222%; } .handheld-four-ninths { width: 44.44444%; } .handheld-five-ninths { width: 55.55556%; } .handheld-seven-ninths { width: 77.77778%; } .handheld-eight-ninths { width: 88.88889%; } .handheld-one-tenth { width: 10%; } .handheld-three-tenths { width: 30%; } .handheld-seven-tenths { width: 70%; } .handheld-nine-tenths { width: 90%; } .handheld-one-twelfth { width: 8.33333%; } .handheld-five-twelfths { width: 41.66667%; } .handheld-seven-twelfths { width: 58.33333%; } .handheld-eleven-twelfths { width: 91.66667%; } .handheld-float-left { float: left; } .handheld-float-right { float: right; } .handheld-float-none { float: none; } .handheld-float-inherit { float: inherit; } .handheld-push { margin: 20px; } .handheld-push-top { margin-top: 20px; } .handheld-push-right { margin-right: 20px; } .handheld-push-bottom { margin-bottom: 20px; } .handheld-push-left { margin-left: 20px; } .handheld-push-ends { margin-top: 20px; margin-bottom: 20px; } .handheld-push-sides { margin-right: 20px; margin-left: 20px; } .handheld-push-half { margin: 10px; } .handheld-push-half-top { margin-top: 10px; } .handheld-push-half-right { margin-right: 10px; } .handheld-push-half-bottom { margin-bottom: 10px; } .handheld-push-half-left { margin-left: 10px; } .handheld-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .handheld-push-half-sides { margin-right: 10px; margin-left: 10px; } .handheld-push-double { margin: 40px; } .handheld-push-double-top { margin-top: 40px; } .handheld-push-double-right { margin-right: 40px; } .handheld-push-double-bottom { margin-bottom: 40px; } .handheld-push-double-left { margin-left: 40px; } .handheld-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .handheld-push-double-sides { margin-right: 40px; margin-left: 40px; } .handheld-flush { margin: 0; } .handheld-flush-top { margin-top: 0; } .handheld-flush-right { margin-right: 0; } .handheld-flush-bottom { margin-bottom: 0; } .handheld-flush-left { margin-left: 0; } .handheld-flush-ends { margin-top: 0; margin-bottom: 0; } .handheld-flush-sides { margin-right: 0; margin-left: 0; } .handheld-soft { padding: 20px; } .handheld-soft-top { padding-top: 20px; } .handheld-soft-right { padding-right: 20px; } .handheld-soft-bottom { padding-bottom: 20px; } .handheld-soft-left { padding-left: 20px; } .handheld-soft-ends { padding-top: 20px; padding-bottom: 20px; } .handheld-soft-sides { padding-right: 20px; padding-left: 20px; } .handheld-soft-half { padding: 10px; } .handheld-soft-half-top { padding-top: 10px; } .handheld-soft-half-right { padding-right: 10px; } .handheld-soft-half-bottom { padding-bottom: 10px; } .handheld-soft-half-left { padding-left: 10px; } .handheld-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .handheld-soft-half-sides { padding-right: 10px; padding-left: 10px; } .handheld-soft-double { padding: 40px; } .handheld-soft-double-top { padding-top: 40px; } .handheld-soft-double-right { padding-right: 40px; } .handheld-soft-double-bottom { padding-bottom: 40px; } .handheld-soft-double-left { padding-left: 40px; } .handheld-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .handheld-soft-double-sides { padding-right: 40px; padding-left: 40px; } .handheld-hard { padding: 0; } .handheld-hard-top { padding-top: 0; } .handheld-hard-right { padding-right: 0; } .handheld-hard-bottom { padding-bottom: 0; } .handheld-hard-left { padding-left: 0; } .handheld-hard-ends { padding-top: 0; padding-bottom: 0; } .handheld-hard-sides { padding-right: 0; padding-left: 0; } .handheld-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (max-width: 480px) { .palm-ratio--none .ratio__item { position: relative; } .palm-ratio--portrait:before { padding-top: 200%; } .palm-ratio--square:before { padding-top: 100%; } .palm-ratio--landscape:before { padding-top: 50%; } .palm-text-right { text-align: right; } .palm-text-left { text-align: left; } .palm-text-center { text-align: center; } .palm-one-whole { width: 100%; } .palm-one-half, .palm-two-quarters, .palm-three-sixths, .palm-four-eighths, .palm-five-tenths, .palm-six-twelfths { width: 50%; } .palm-one-third, .palm-two-sixths, .palm-three-ninths, .palm-four-twelfths { width: 33.33333%; } .palm-two-thirds, .palm-four-sixths, .palm-six-ninths, .palm-eight-twelfths { width: 66.66667%; } .palm-one-quarter, .palm-two-eighths, .palm-three-twelfths { width: 25%; } .palm-three-quarters, .palm-six-eighths, .palm-nine-twelfths { width: 75%; } .palm-one-fifth, .palm-two-tenths { width: 20%; } .palm-two-fifths, .palm-four-tenths { width: 40%; } .palm-three-fifths, .palm-six-tenths { width: 60%; } .palm-four-fifths, .palm-eight-tenths { width: 80%; } .palm-one-sixth, .palm-two-twelfths { width: 16.66667%; } .palm-five-sixths, .palm-ten-twelfths { width: 83.33333%; } .palm-one-eighth { width: 12.5%; } .palm-three-eighths { width: 37.5%; } .palm-five-eighths { width: 62.5%; } .palm-seven-eighths { width: 87.5%; } .palm-one-ninth { width: 11.11111%; } .palm-two-ninths { width: 22.22222%; } .palm-four-ninths { width: 44.44444%; } .palm-five-ninths { width: 55.55556%; } .palm-seven-ninths { width: 77.77778%; } .palm-eight-ninths { width: 88.88889%; } .palm-one-tenth { width: 10%; } .palm-three-tenths { width: 30%; } .palm-seven-tenths { width: 70%; } .palm-nine-tenths { width: 90%; } .palm-one-twelfth { width: 8.33333%; } .palm-five-twelfths { width: 41.66667%; } .palm-seven-twelfths { width: 58.33333%; } .palm-eleven-twelfths { width: 91.66667%; } .palm-float-left { float: left; } .palm-float-right { float: right; } .palm-float-none { float: none; } .palm-float-inherit { float: inherit; } .palm-push { margin: 20px; } .palm-push-top { margin-top: 20px; } .palm-push-right { margin-right: 20px; } .palm-push-bottom { margin-bottom: 20px; } .palm-push-left { margin-left: 20px; } .palm-push-ends { margin-top: 20px; margin-bottom: 20px; } .palm-push-sides { margin-right: 20px; margin-left: 20px; } .palm-push-half { margin: 10px; } .palm-push-half-top { margin-top: 10px; } .palm-push-half-right { margin-right: 10px; } .palm-push-half-bottom { margin-bottom: 10px; } .palm-push-half-left { margin-left: 10px; } .palm-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .palm-push-half-sides { margin-right: 10px; margin-left: 10px; } .palm-push-double { margin: 40px; } .palm-push-double-top { margin-top: 40px; } .palm-push-double-right { margin-right: 40px; } .palm-push-double-bottom { margin-bottom: 40px; } .palm-push-double-left { margin-left: 40px; } .palm-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .palm-push-double-sides { margin-right: 40px; margin-left: 40px; } .palm-flush { margin: 0; } .palm-flush-top { margin-top: 0; } .palm-flush-right { margin-right: 0; } .palm-flush-bottom { margin-bottom: 0; } .palm-flush-left { margin-left: 0; } .palm-flush-ends { margin-top: 0; margin-bottom: 0; } .palm-flush-sides { margin-right: 0; margin-left: 0; } .palm-soft { padding: 20px; } .palm-soft-top { padding-top: 20px; } .palm-soft-right { padding-right: 20px; } .palm-soft-bottom { padding-bottom: 20px; } .palm-soft-left { padding-left: 20px; } .palm-soft-ends { padding-top: 20px; padding-bottom: 20px; } .palm-soft-sides { padding-right: 20px; padding-left: 20px; } .palm-soft-half { padding: 10px; } .palm-soft-half-top { padding-top: 10px; } .palm-soft-half-right { padding-right: 10px; } .palm-soft-half-bottom { padding-bottom: 10px; } .palm-soft-half-left { padding-left: 10px; } .palm-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .palm-soft-half-sides { padding-right: 10px; padding-left: 10px; } .palm-soft-double { padding: 40px; } .palm-soft-double-top { padding-top: 40px; } .palm-soft-double-right { padding-right: 40px; } .palm-soft-double-bottom { padding-bottom: 40px; } .palm-soft-double-left { padding-left: 40px; } .palm-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .palm-soft-double-sides { padding-right: 40px; padding-left: 40px; } .palm-hard { padding: 0; } .palm-hard-top { padding-top: 0; } .palm-hard-right { padding-right: 0; } .palm-hard-bottom { padding-bottom: 0; } .palm-hard-left { padding-left: 0; } .palm-hard-ends { padding-top: 0; padding-bottom: 0; } .palm-hard-sides { padding-right: 0; padding-left: 0; } .palm-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @-ms-keyframes spin { 0% { -ms-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }
framework.css
input[type=checkbox] { visibility: hidden; height: 0; max-height: 0; margin: 0; padding-top: 0; padding-bottom: 0; opacity: 0; } input[type=checkbox] + label { visibility: visible; height: inherit; max-height: inherit; margin: inherit; padding-top: inherit; padding-bottom: inherit; opacity: 1; } .ratio--portrait, .palm-ratio--portrait, .palm-wide-ratio--portrait, .palm-wide-and-up-ratio--portrait, .handheld-ratio--portrait, .lap-ratio--portrait, .lap-and-up-ratio--portrait, .lap-wide-ratio--portrait, .lap-wide-and-up-ratio--portrait, .portable-ratio--portrait, .desk-ratio--portrait, .desk-and-up-ratio--portrait, .desk-wide-ratio--portrait, .anchored-ratio--portrait, .ratio--square, .palm-ratio--square, .palm-wide-ratio--square, .palm-wide-and-up-ratio--square, .handheld-ratio--square, .lap-ratio--square, .lap-and-up-ratio--square, .lap-wide-ratio--square, .lap-wide-and-up-ratio--square, .portable-ratio--square, .desk-ratio--square, .desk-and-up-ratio--square, .desk-wide-ratio--square, .anchored-ratio--square, .ratio--landscape, .palm-ratio--landscape, .palm-wide-ratio--landscape, .palm-wide-and-up-ratio--landscape, .handheld-ratio--landscape, .lap-ratio--landscape, .lap-and-up-ratio--landscape, .lap-wide-ratio--landscape, .lap-wide-and-up-ratio--landscape, .portable-ratio--landscape, .desk-ratio--landscape, .desk-and-up-ratio--landscape, .desk-wide-ratio--landscape, .anchored-ratio--landscape { position: relative; display: block; padding: 0; list-style: none; } .ratio--portrait:before, .palm-ratio--portrait:before, .palm-wide-ratio--portrait:before, .palm-wide-and-up-ratio--portrait:before, .handheld-ratio--portrait:before, .lap-ratio--portrait:before, .lap-and-up-ratio--portrait:before, .lap-wide-ratio--portrait:before, .lap-wide-and-up-ratio--portrait:before, .portable-ratio--portrait:before, .desk-ratio--portrait:before, .desk-and-up-ratio--portrait:before, .desk-wide-ratio--portrait:before, .anchored-ratio--portrait:before, .ratio--square:before, .palm-ratio--square:before, .palm-wide-ratio--square:before, .palm-wide-and-up-ratio--square:before, .handheld-ratio--square:before, .lap-ratio--square:before, .lap-and-up-ratio--square:before, .lap-wide-ratio--square:before, .lap-wide-and-up-ratio--square:before, .portable-ratio--square:before, .desk-ratio--square:before, .desk-and-up-ratio--square:before, .desk-wide-ratio--square:before, .anchored-ratio--square:before, .ratio--landscape:before, .palm-ratio--landscape:before, .palm-wide-ratio--landscape:before, .palm-wide-and-up-ratio--landscape:before, .handheld-ratio--landscape:before, .lap-ratio--landscape:before, .lap-and-up-ratio--landscape:before, .lap-wide-ratio--landscape:before, .lap-wide-and-up-ratio--landscape:before, .portable-ratio--landscape:before, .desk-ratio--landscape:before, .desk-and-up-ratio--landscape:before, .desk-wide-ratio--landscape:before, .anchored-ratio--landscape:before { display: block; content: ""; } .ratio__item { position: absolute; top: 0; right: 0; bottom: 0; left: 0; -ms-box-sizing: border-box; -o-box-sizing: border-box; box-sizing: border-box; z-index: 1; } .constrain-copy { position: relative; margin: 0 auto; } input[type=checkbox] + label, input[type=checkbox] + label:before, .icon, .icon--filled, .icon--alert, .icon--base, .icon--outlined, .icon--facebook, .icon--google, .icon--twitter, .progress__item, .progress__item--active, .round { border-radius: 50%; content: ""; } .toggle-arrow__item:before, .toggle-arrow__item:after { display: block; width: 0; height: 0; content: ""; } *, *:before, *:after { -ms-box-sizing: border-box; -o-box-sizing: border-box; box-sizing: border-box; } h1, h2, h3, h4, h5, h6, p, blockquote, pre, dl, dd, ol, ul, form, fieldset, legend, table, th, td, caption, hr { margin: 0; padding: 0; } abbr[title], dfn[title] { cursor: help; } u, ins { text-decoration: none; } ins { border-bottom: 1px solid; } img { font-style: italic; } label, input, textarea, button, select, option { cursor: pointer; } .text-input:active, .text-input:focus, textarea:active, textarea:focus { cursor: text; outline: none; } input[type="submit"], input[type="reset"], input[type="button"], button { overflow: visible; padding: 0; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; color: inherit; border: 0; background: none; font: inherit; line-height: normal; -webkit-appearance: button; } input::-moz-focus-inner, button::-moz-focus-inner { padding: 0; border: 0; } input, label, select, textarea { display: inline-block; margin: 0; padding: 0; vertical-align: middle; white-space: normal; border: 0; background: none; } input:focus { outline: 0; } input[type=reset], input[type=checkbox], input[type=radio], select { box-sizing: border-box; } input[type=search] { -webkit-box-sizing: content-box; -webkit-appearance: textfield; } ::-webkit-search-decoration { display: none; } ::-webkit-file-upload-button { padding: 0; border: 0; background: none; } textarea { overflow: auto; vertical-align: top; } select[multiple] { vertical-align: top; } html { overflow-y: scroll; min-height: 100%; -webkit-font-smoothing: antialiased; } body { overflow-x: hidden; font-size: 112.5%; line-height: 20px; color: #505050; font-family: sans-serif; margin: 0; padding: 0; } img { max-width: 100%; } img[width], img[height] { max-width: none; } h1, .h1 { font-size: 3.25em; line-height: 1.05; margin-bottom: 20px; } h2, .h2 { font-size: 2.625em; line-height: 1.25; margin-bottom: 20px; } legend, h3, .h3 { font-size: 2em; line-height: 1.25; margin-bottom: 20px; } h4, .h4 { font-size: 1.5625em; line-height: 1.22222; margin-bottom: 10px; } .btn, .btn--small, .btn--disabled, .btn:disabled, .btn--corners, .btn--light, .btn--filled, .btn--dark-tertiary, .btn--alert, .btn--icon, .btn--facebook, .btn--google, .btn--twitter, h5, .h5 { font-size: 1.25em; line-height: 1.25; margin-bottom: 10px; } input, select, .toggle__item, .toggle__item--active, h6, .h6 { font-size: 1em; line-height: 1.125; margin-bottom: 10px; } .input__status, h7, .h7 { font-size: 0.875em; line-height: 1.125; margin-bottom: 10px; } p, .p { font-size: 1.125em; line-height: 1.11111; margin-bottom: 20px; } a { position: relative; word-wrap: break-word; color: #6bac43; } li > ul, li > ol { margin-bottom: 0; } hr { display: block; width: 100%; margin-top: 20px; margin-bottom: 20px; padding: 0; } section { overflow: hidden; width: 100%; margin: 0 auto; padding: 20px; } iframe, object, embed { position: relative; overflow: hidden; max-width: 100%; } form { position: relative; min-width: 280px; padding: 20px; text-align: center; } fieldset { margin-bottom: 20px; border: 0; } legend { margin: 0 auto; margin-bottom: 25px; } button[class*="icon"] { display: inline-block; } button:focus { outline: none; } label { display: block; text-align: left; color: #858585; } input { width: 100%; padding: 5px; border-bottom: solid 2px #858585; -webkit-appearance: none; border-radius: 0; } input::-webkit-input-placeholder { /* color: map-get($colors, light-tertiary); */ color: #fff; } input:-moz-placeholder { /* color: map-get($colors, light-tertiary); */ color: #fff; } input::-moz-placeholder { /* color: map-get($colors, light-tertiary); */ color: #fff; } input:-ms-input-placeholder { /* color: map-get($colors, light-tertiary); */ color: #fff; } input:focus { border-bottom-color: #6bac43; } input:focus::-webkit-input-placeholder { color: #fff; } input:focus:-moz-placeholder { color: #fff; } input:focus::-moz-placeholder { color: #fff; } input:focus:-ms-input-placeholder { color: #fff; } input[data-value]:not([data-value=""]) { border-bottom-color: #505050; } input[type=checkbox] { padding-right: 20px; } input[type=checkbox] + label { position: absolute; top: 3px; left: 3px; width: 12px; height: 12px; margin-top: 3px; margin-left: 3px; padding: 0; background-color: transparent; } input[type=checkbox] + label:before { width: 20px; height: 20px; border-radius: 50%; position: absolute; top: -4px; left: -4px; border: 2px solid #6bac43; } input[type=checkbox]:checked + label { background-color: #6bac43; } label + h7 { position: absolute; top: 0; left: 20px; text-align: left; } select { width: 100%; padding: 5px; padding-right: 30px; white-space: nowrap; color: #858585; border-bottom: solid 2px #858585; border-radius: 0; -webkit-appearance: none; -moz-appearance: none; } :focus { border-bottom-width: 2px; border-bottom-color: #505050; } .background, .background--fill, .background--cover, .background--right, .background--left, .background--fixed, .background--primary, .background--secondary, .background--tertiary, .background--dark, .background--dark-secondary, .background--dark-tertiary, .background--light, .background--light-secondary, .background--light-tertiary { overflow: hidden; background-repeat: no-repeat; background-position: center center; } .background--fill, .background--cover { background-size: cover; } .background--right { background-position: center right; } .background--left { background-position: center left; } .background--fixed { background-attachment: fixed; background-position: top; background-size: 100%; } .background--primary { background-color: #6bac43; } .background--secondary { background-color: #1c683e; } .background--tertiary { background-color: #2a4930; } .background--dark { background-color: #303030; } .background--dark-secondary { background-color: #505050; } .background--dark-tertiary { background-color: #858585; } .background--light { background-color: #ffffff; } .background--light-secondary { background-color: #f7f7f7; } .background--light-tertiary { background-color: #dddddd; } .btn, .btn--small, .btn--disabled, .btn:disabled, .btn--corners, .btn--light, .btn--filled, .btn--dark-tertiary, .btn--alert, .btn--icon, .btn--facebook, .btn--google, .btn--twitter { border-radius: 1000px; position: relative; display: inline-block; overflow: hidden; padding: 10.5px 30px 8.5px; cursor: pointer; text-align: center; vertical-align: middle; text-decoration: none; color: #6bac43; border: 3px solid #6bac43; } .btn:hover, .btn--small:hover, .btn--disabled:hover, .btn--corners:hover, .btn--light:hover, .btn--filled:hover, .btn--dark-tertiary:hover, .btn--alert:hover, .btn--icon:hover, .btn--facebook:hover, .btn--google:hover, .btn--twitter:hover { color: #ffffff; background: #6bac43; } .btn--small { padding: 11.5px 30px 11.5px; border: 2px solid #6bac43; font-size: 18.75px; } .btn--disabled, .btn:disabled { cursor: text; color: #dddddd; border-color: #dddddd; } .btn--disabled:hover, .btn:disabled:hover { cursor: text; color: #dddddd; background-color: inherit; } .btn--corners { border-radius: 0; } .btn--light { color: #ffffff; border-color: #ffffff; } .btn--light:hover { color: #505050; background-color: #ffffff; } .btn--filled { color: #ffffff; border-color: #6bac43; background-color: #6bac43; } .btn--filled:hover { border-color: #1c683e; background-color: #1c683e; } .btn--dark-tertiary { color: #858585; border-color: #858585; } .btn--dark-tertiary:hover { border-color: #505050; background-color: #505050; } .btn--alert { background-color: #ffffff; border-color: #c64f55; color: #c64f55; } .btn--icon, .btn--facebook, .btn--google, .btn--twitter { padding-right: 78px; } .btn--icon:after, .btn--facebook:after, .btn--google:after, .btn--twitter:after { position: absolute; right: 12.5px; width: 40.5px; font-size: 90%; } .btn--icon:hover .icon:before, .btn--icon:hover .icon:after { border-color: #ffffff; } .btn--icon .icon { position: absolute; right: 12.5px; top: 0; width: 40.5px; height: auto; } .btn--facebook, .btn--google, .btn--twitter { text-transform: none; } .btn--facebook:after, .btn--google:after, .btn--twitter:after { color: #ffffff; font-family: FontAwesome; } .btn--facebook { color: #ffffff; border-color: #3b5998; background-color: #3b5998; } .btn--facebook:after { content: "\f09a"; } .btn--facebook:hover { background-color: #344e86; } .btn--google { color: #ffffff; border-color: #dd4b39; background-color: #dd4b39; } .btn--google:after { content: "\f0d5"; } .btn--google:hover { background-color: #d73925; } .btn--twitter { color: #ffffff; border-color: #55acee; background-color: #55acee; } .btn--twitter:after { content: "\f099"; } .btn--twitter:hover { background-color: #3ea1ec; } .icon, .icon--filled, .icon--alert, .icon--base, .icon--outlined, .icon--facebook, .icon--google, .icon--twitter { position: relative; display: block; width: 56px; height: 56px; text-decoration: none; vertical-align: top; } [class*="fa-"].icon, [class*="fa-"].icon--filled, [class*="fa-"].icon--alert, [class*="fa-"].icon--base, [class*="fa-"].icon--outlined, [class*="fa-"].icon--facebook, [class*="fa-"].icon--google, [class*="fa-"].icon--twitter { margin-bottom: 0; text-align: center; } [class*="fa-"].icon:before, [class*="fa-"].icon--filled:before, [class*="fa-"].icon--alert:before, [class*="fa-"].icon--base:before, [class*="fa-"].icon--outlined:before, [class*="fa-"].icon--facebook:before, [class*="fa-"].icon--google:before, [class*="fa-"].icon--twitter:before { font-size: 47px; } .icon--filled { color: #ffffff; background-color: #6bac43; } .icon--alert { color: #ffffff; background-color: #c64f55; } .icon--base { color: #ffffff; border: 3px solid #ffffff; } .icon--base:before { color: #ffffff; } .icon--outlined { color: #858585; border: 3px solid #858585; } .icon--outlined:before { color: #858585; } .fa-angle-right:before { margin-left: 6px; } .fa-angle-left:before { margin-right: 6px; } .icon--facebook, .icon--google, .icon--twitter { margin-bottom: 0; text-align: center; font-family: FontAwesome; line-height: 56px; } .icon--facebook { color: #3b5998; } .icon--facebook:after { content: "\f09a"; } .icon--facebook.icon--filled { color: #ffffff; border-color: #3b5998; background-color: #3b5998; } .icon--google { color: #dd4b39; } .icon--google:after { content: "\f0d5"; } .icon--google.icon--filled { color: #ffffff; border-color: #dd4b39; background-color: #dd4b39; } .icon--twitter { color: #55acee; } .icon--twitter:after { content: "\f099"; } .icon--twitter.icon--filled { color: #ffffff; border-color: #55acee; background-color: #55acee; } .modal, .modal--active, .modal--dark { transition: opacity .2s ease-in-out .2s; z-index: 100; overflow: hidden; width: 0; max-width: 0; height: 0; max-height: 0; margin: 0; padding: 0; opacity: 0; } .modal:not(.modal--active) *, .modal--active:not(.modal--active) *, .modal--dark:not(.modal--active) * { transition: all .2s ease-in-out 0s; height: 0; max-height: 0; margin: 0; padding-top: 0; padding-bottom: 0; opacity: 0; } .modal { background-color: rgba(255, 255, 255, 0.96); } .modal--active { position: fixed; top: 0; right: 0; bottom: 0; left: 0; transition: opacity .3s ease-in-out 0s; overflow: auto; -webkit-overflow-scrolling: touch; width: 100%; max-width: none; height: 100%; max-height: none; opacity: 1; } .modal--dark { background-color: rgba(0, 0, 0, 0.96); } html.modal--opened { overflow: hidden; } html.modal--opened body { overflow: hidden; min-height: 100%; height: 100%; padding: 0; margin: 0; } html.modal--opened .scrollable { overflow: hidden; } .transition, .input--alert, .input { transition: all .1s linear; } .accordion > .expanded * { visibility: visible; max-height: inherit; margin: inherit; padding-top: inherit; padding-bottom: inherit; opacity: 1; } .accordion__item { overflow: hidden; } .accordion__item:not(.expanded) *:not(.accordion__item--trigger) { visibility: hidden; height: 0; max-height: 0; margin: 0; padding-top: 0; padding-bottom: 0; opacity: 0; } .accordion__item *:not(.accordion__item--trigger) { transition: max-height .25s, visibility .25s, margin .25s, opacity .25s; } .accordion__item--trigger { visibility: visible; cursor: pointer; } .grid { margin-bottom: 0; margin-left: -20px; list-style: none; } .grid__item, .grid__item--push-bottom, .toggle__item, .toggle__item--active { position: relative; display: inline-block; width: 100%; padding-left: 20px; vertical-align: top; } .grid > .grid { margin-left: 0; } .grid__item--push-bottom { margin-bottom: 20px; } .ratio--none .ratio__item { position: relative; } .ratio__item { position: absolute; top: 0; right: 0; bottom: 0; left: 0; } .ratio--portrait:before { padding-top: 200%; } .ratio--square:before { padding-top: 100%; } .ratio--landscape:before { padding-top: 50%; } .floating, .floating--left, .floating--right, .floating--top, .floating--bottom { text-align: center; } .floating:before, .floating--left:before, .floating--right:before, .floating--top:before, .floating--bottom:before { display: inline-block; height: 100%; margin-right: -.25em; content: ""; vertical-align: middle; } .floating > .floating__item, .floating--left > .floating__item, .floating--right > .floating__item, .floating--top > .floating__item, .floating--bottom > .floating__item { display: inline-block; vertical-align: middle; } .floating--left { text-align: left; } .floating--right { text-align: right; } .floating--top:before, .floating--top .floating__item { vertical-align: top; } .floating--bottom:before, .floating--bottom .floating__item { vertical-align: bottom; } .locked { overflow: hidden; } .locked__item { overflow: hidden; height: 100%; min-height: 100%; margin: 0; padding: 0; } .overlay, .overlay--brand, .overlay--solid-light, .overlay--solid-dark, .overlay--gradient, .overlay--gradient-left, .overlay--gradient-right { position: relative; z-index: 1; } .overlay:after, .overlay--brand:after, .overlay--solid-light:after, .overlay--solid-dark:after, .overlay--gradient:after, .overlay--gradient-left:after, .overlay--gradient-right:after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: block; width: 100%; height: 100%; content: ""; } .overlay:after { background: rgba(48, 48, 48, 0.6); } .overlay__item { position: relative; z-index: 2; } .overlay--brand:after { background: rgba(107, 172, 67, 0.65); } .overlay--solid-light:after { background: rgba(48, 48, 48, 0.1); } .overlay--solid-dark:after { background: rgba(48, 48, 48, 0.8); } .overlay--gradient:after { top: auto; height: 70%; background: linear-gradient(to bottom, transparent 0%, #000 100%); } .overlay--gradient-left:after { right: auto; width: 80%; background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, transparent 100%); } .overlay--gradient-right:after { left: auto; width: 80%; background: linear-gradient(to left, rgba(0, 0, 0, 0.9) 0%, transparent 100%); } .panel { -webkit-overflow-scrolling: touch; } .panel__item--left { left: 0; } .panel__item--right { right: 0; } .input--alert, .input { position: relative; padding-bottom: 50px; } .fa-caret-down.input--alert:before, .fa-caret-down.input:before { position: absolute; top: 5px; right: 10px; color: #858585; } .input--alert label, .input label { position: absolute; top: 5px; font-size: .875em; left: 10px; transition-duration: .2s; transition-property: -webkit-transform; transition-property: transform; transition-timing-function: cubic-bezier(.4, 0, .2, 1); } .input--alert input::-webkit-input-placeholder, .input input::-webkit-input-placeholder { color: #fff; } .input--alert input:-moz-placeholder, .input input:-moz-placeholder { color: #fff; } .input--alert input::-moz-placeholder, .input input::-moz-placeholder { color: #fff; } .input--alert input:-ms-input-placeholder, .input input:-ms-input-placeholder { color: #fff; } .input--alert select + label, .input select + label { visibility: hidden; } .input__status { position: absolute; top: 40px; left: 10px; bottom: -20px; text-align: left; font-weight: bold; transition-duration: .2s; transition-timing-function: cubic-bezier(.4, 0, .2, 1); } .input--active label { font-size: .785em; visibility: visible; margin-bottom: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); } .input--active select { color: #303030; } .input--active select + label { visibility: visible; } .input--focused label { color: #6bac43; } .input--alert input { border-bottom-color: #c64f55; } .input--alert label { color: #c64f55; } .input--alert .input__status { color: #c64f55; } .toggle { position: relative; display: inline-block; width: 100%; vertical-align: middle; border-top: 2px solid #dddddd; border-bottom: 2px solid #dddddd; -webkit-tap-highlight-color: transparent; } .toggle__item, .toggle__item--active { margin-bottom: 0; padding-top: 13.5px; padding-bottom: 11.5px; padding-left: 0; cursor: pointer; color: #858585; font-weight: bold; } .toggle__item:hover { color: #505050; } .toggle__item--active { cursor: inherit; color: #6bac43; background-color: transparent; } .toggle-arrow { position: absolute; width: 100%; } .toggle-arrow__item:before { position: absolute; left: 50%; margin-left: -20px; bottom: -15px; border-top: 15px solid #dddddd; border-right: 21px solid transparent; border-left: 21px solid transparent; } .toggle-arrow__item:after { position: absolute; left: 50%; margin-left: -19px; bottom: -12px; border-top: 14px solid white; border-right: 20px solid transparent; border-left: 20px solid transparent; } .progress { position: relative; display: inline-block; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; min-width: 0; width: 50%; margin: 0 auto; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; } .progress:after { position: absolute; right: 0; left: 0; z-index: 0; height: 4px; margin-top: 3px; content: ""; background-color: #dddddd; } .progress__item, .progress__item--active { width: 20px; height: 20px; position: relative; z-index: 2; display: inline-block; width: 10px; height: 10px; cursor: pointer; background-color: #dddddd; } .progress__item--active { width: 10px; height: 10px; background-color: #6bac43; } .progress__item--active + .progress__item--active:before { position: absolute; z-index: 1; right: 5px; width: 100000px; height: 0; margin-top: 2px; content: ""; border-bottom: 4px solid #6bac43; } .card { position: relative; margin-bottom: 10px; border-width: 0; } .card .card__image { padding: 0; margin: 0; } .card .card__item { border-top: none; } .text-right { text-align: right; } .text-left { text-align: left; } .text-center { text-align: center; } .text-dark { color: #303030; } .text-light { color: #f7f7f7; } .text-white { color: #ffffff; } .text-brand, .text-primary { color: #6bac43; } .text-dark-tertiary { color: #858585; } .text-light-tertiary { color: #dddddd; } .outlined, .outlined--light, .outlined--dotted, .outlined--top, .outlined--left, .outlined--right, .outlined--bottom { border-width: 3px; border-style: solid; border-color: #6bac43; border-radius: 2px; } .outlined--light { border-width: 2px; border-style: solid; border-color: #dddddd; } .outlined--dotted { border-width: 3px; border-top: 0; border-left: 0; border-right: 0; border-style: dotted; } .outlined--top { border-left: 0; border-right: 0; border-bottom: 0; } .outlined--left { border-top: 0; border-right: 0; border-bottom: 0; } .outlined--right { border-top: 0; border-left: 0; border-bottom: 0; } .outlined--bottom { border-top: 0; border-right: 0; border-left: 0; } .one-whole { width: 100%; } .one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths { width: 50%; } .one-third, .two-sixths, .three-ninths, .four-twelfths { width: 33.33333%; } .two-thirds, .four-sixths, .six-ninths, .eight-twelfths { width: 66.66667%; } .one-quarter, .two-eighths, .three-twelfths { width: 25%; } .three-quarters, .six-eighths, .nine-twelfths { width: 75%; } .one-fifth, .two-tenths { width: 20%; } .two-fifths, .four-tenths { width: 40%; } .three-fifths, .six-tenths { width: 60%; } .four-fifths, .eight-tenths { width: 80%; } .one-sixth, .two-twelfths { width: 16.66667%; } .five-sixths, .ten-twelfths { width: 83.33333%; } .one-eighth { width: 12.5%; } .three-eighths { width: 37.5%; } .five-eighths { width: 62.5%; } .seven-eighths { width: 87.5%; } .one-ninth { width: 11.11111%; } .two-ninths { width: 22.22222%; } .four-ninths { width: 44.44444%; } .five-ninths { width: 55.55556%; } .seven-ninths { width: 77.77778%; } .eight-ninths { width: 88.88889%; } .one-tenth { width: 10%; } .three-tenths { width: 30%; } .seven-tenths { width: 70%; } .nine-tenths { width: 90%; } .one-twelfth { width: 8.33333%; } .five-twelfths { width: 41.66667%; } .seven-twelfths { width: 58.33333%; } .eleven-twelfths { width: 91.66667%; } .scrollable { overflow-y: scroll; -webkit-overflow-scrolling: touch; } .float-left { float: left; } .float-right { float: right; } .float-none { float: none; } .float-inherit { float: inherit; } .clearfix:before, .clearfix:after { display: table; content: ""; } .clearfix:after { clear: both; } .constrain-copy { min-width: 280px; max-width: 768px; } .push { margin: 20px; } .push-top { margin-top: 20px; } .push-right { margin-right: 20px; } .push-bottom { margin-bottom: 20px; } .push-left { margin-left: 20px; } .push-ends { margin-top: 20px; margin-bottom: 20px; } .push-sides { margin-right: 20px; margin-left: 20px; } .push-half { margin: 10px; } .push-half-top { margin-top: 10px; } .push-half-right { margin-right: 10px; } .push-half-bottom { margin-bottom: 10px; } .push-half-left { margin-left: 10px; } .push-half-ends { margin-top: 10px; margin-bottom: 10px; } .push-half-sides { margin-right: 10px; margin-left: 10px; } .push-double { margin: 40px; } .push-double-top { margin-top: 40px; } .push-double-right { margin-right: 40px; } .push-double-bottom { margin-bottom: 40px; } .push-double-left { margin-left: 40px; } .push-double-ends { margin-top: 40px; margin-bottom: 40px; } .push-double-sides { margin-right: 40px; margin-left: 40px; } .flush { margin: 0; } .flush-top { margin-top: 0; } .flush-right { margin-right: 0; } .flush-bottom { margin-bottom: 0; } .flush-left { margin-left: 0; } .flush-ends { margin-top: 0; margin-bottom: 0; } .flush-sides { margin-right: 0; margin-left: 0; } .soft { padding: 20px; } .soft-top { padding-top: 20px; } .soft-right { padding-right: 20px; } .soft-bottom { padding-bottom: 20px; } .soft-left { padding-left: 20px; } .soft-ends { padding-top: 20px; padding-bottom: 20px; } .soft-sides { padding-right: 20px; padding-left: 20px; } .soft-half { padding: 10px; } .soft-half-top { padding-top: 10px; } .soft-half-right { padding-right: 10px; } .soft-half-bottom { padding-bottom: 10px; } .soft-half-left { padding-left: 10px; } .soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .soft-half-sides { padding-right: 10px; padding-left: 10px; } .soft-double { padding: 40px; } .soft-double-top { padding-top: 40px; } .soft-double-right { padding-right: 40px; } .soft-double-bottom { padding-bottom: 40px; } .soft-double-left { padding-left: 40px; } .soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .soft-double-sides { padding-right: 40px; padding-left: 40px; } .hard { padding: 0; } .hard-top { padding-top: 0; } .hard-right { padding-right: 0; } .hard-bottom { padding-bottom: 0; } .hard-left { padding-left: 0; } .hard-ends { padding-top: 0; padding-bottom: 0; } .hard-sides { padding-right: 0; padding-left: 0; } .display-inline-block { display: inline-block; } .display-block { display: block; } .capitalize { text-transform: capitalize; } .lowercase { text-transform: lowercase; } .uppercase { text-transform: uppercase; } .italic { font-style: italic; } .ellipsis { overflow: hidden; vertical-align: middle; white-space: nowrap; text-overflow: ellipsis; } .rounded { border-radius: 6px; } .rounded-top { border-radius: 6px 6px 0 0; } .rounded-bottom { border-radius: 0 0 6px 6px; } .rounded-right { border-radius: 0 6px 6px 0; } .rounded-left { border-radius: 6px 0 0 6px; } .visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } @media screen and (min-width: 481px) and (max-width: 768px) { .palm-wide-ratio--none .ratio__item { position: relative; } .palm-wide-ratio--portrait:before { padding-top: 200%; } .palm-wide-ratio--square:before { padding-top: 100%; } .palm-wide-ratio--landscape:before { padding-top: 50%; } .palm-wide-text-right { text-align: right; } .palm-wide-text-left { text-align: left; } .palm-wide-text-center { text-align: center; } .palm-wide-one-whole { width: 100%; } .palm-wide-one-half, .palm-wide-two-quarters, .palm-wide-three-sixths, .palm-wide-four-eighths, .palm-wide-five-tenths, .palm-wide-six-twelfths { width: 50%; } .palm-wide-one-third, .palm-wide-two-sixths, .palm-wide-three-ninths, .palm-wide-four-twelfths { width: 33.33333%; } .palm-wide-two-thirds, .palm-wide-four-sixths, .palm-wide-six-ninths, .palm-wide-eight-twelfths { width: 66.66667%; } .palm-wide-one-quarter, .palm-wide-two-eighths, .palm-wide-three-twelfths { width: 25%; } .palm-wide-three-quarters, .palm-wide-six-eighths, .palm-wide-nine-twelfths { width: 75%; } .palm-wide-one-fifth, .palm-wide-two-tenths { width: 20%; } .palm-wide-two-fifths, .palm-wide-four-tenths { width: 40%; } .palm-wide-three-fifths, .palm-wide-six-tenths { width: 60%; } .palm-wide-four-fifths, .palm-wide-eight-tenths { width: 80%; } .palm-wide-one-sixth, .palm-wide-two-twelfths { width: 16.66667%; } .palm-wide-five-sixths, .palm-wide-ten-twelfths { width: 83.33333%; } .palm-wide-one-eighth { width: 12.5%; } .palm-wide-three-eighths { width: 37.5%; } .palm-wide-five-eighths { width: 62.5%; } .palm-wide-seven-eighths { width: 87.5%; } .palm-wide-one-ninth { width: 11.11111%; } .palm-wide-two-ninths { width: 22.22222%; } .palm-wide-four-ninths { width: 44.44444%; } .palm-wide-five-ninths { width: 55.55556%; } .palm-wide-seven-ninths { width: 77.77778%; } .palm-wide-eight-ninths { width: 88.88889%; } .palm-wide-one-tenth { width: 10%; } .palm-wide-three-tenths { width: 30%; } .palm-wide-seven-tenths { width: 70%; } .palm-wide-nine-tenths { width: 90%; } .palm-wide-one-twelfth { width: 8.33333%; } .palm-wide-five-twelfths { width: 41.66667%; } .palm-wide-seven-twelfths { width: 58.33333%; } .palm-wide-eleven-twelfths { width: 91.66667%; } .palm-wide-float-left { float: left; } .palm-wide-float-right { float: right; } .palm-wide-float-none { float: none; } .palm-wide-float-inherit { float: inherit; } .palm-wide-push { margin: 20px; } .palm-wide-push-top { margin-top: 20px; } .palm-wide-push-right { margin-right: 20px; } .palm-wide-push-bottom { margin-bottom: 20px; } .palm-wide-push-left { margin-left: 20px; } .palm-wide-push-ends { margin-top: 20px; margin-bottom: 20px; } .palm-wide-push-sides { margin-right: 20px; margin-left: 20px; } .palm-wide-push-half { margin: 10px; } .palm-wide-push-half-top { margin-top: 10px; } .palm-wide-push-half-right { margin-right: 10px; } .palm-wide-push-half-bottom { margin-bottom: 10px; } .palm-wide-push-half-left { margin-left: 10px; } .palm-wide-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .palm-wide-push-half-sides { margin-right: 10px; margin-left: 10px; } .palm-wide-push-double { margin: 40px; } .palm-wide-push-double-top { margin-top: 40px; } .palm-wide-push-double-right { margin-right: 40px; } .palm-wide-push-double-bottom { margin-bottom: 40px; } .palm-wide-push-double-left { margin-left: 40px; } .palm-wide-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .palm-wide-push-double-sides { margin-right: 40px; margin-left: 40px; } .palm-wide-flush { margin: 0; } .palm-wide-flush-top { margin-top: 0; } .palm-wide-flush-right { margin-right: 0; } .palm-wide-flush-bottom { margin-bottom: 0; } .palm-wide-flush-left { margin-left: 0; } .palm-wide-flush-ends { margin-top: 0; margin-bottom: 0; } .palm-wide-flush-sides { margin-right: 0; margin-left: 0; } .palm-wide-soft { padding: 20px; } .palm-wide-soft-top { padding-top: 20px; } .palm-wide-soft-right { padding-right: 20px; } .palm-wide-soft-bottom { padding-bottom: 20px; } .palm-wide-soft-left { padding-left: 20px; } .palm-wide-soft-ends { padding-top: 20px; padding-bottom: 20px; } .palm-wide-soft-sides { padding-right: 20px; padding-left: 20px; } .palm-wide-soft-half { padding: 10px; } .palm-wide-soft-half-top { padding-top: 10px; } .palm-wide-soft-half-right { padding-right: 10px; } .palm-wide-soft-half-bottom { padding-bottom: 10px; } .palm-wide-soft-half-left { padding-left: 10px; } .palm-wide-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .palm-wide-soft-half-sides { padding-right: 10px; padding-left: 10px; } .palm-wide-soft-double { padding: 40px; } .palm-wide-soft-double-top { padding-top: 40px; } .palm-wide-soft-double-right { padding-right: 40px; } .palm-wide-soft-double-bottom { padding-bottom: 40px; } .palm-wide-soft-double-left { padding-left: 40px; } .palm-wide-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .palm-wide-soft-double-sides { padding-right: 40px; padding-left: 40px; } .palm-wide-hard { padding: 0; } .palm-wide-hard-top { padding-top: 0; } .palm-wide-hard-right { padding-right: 0; } .palm-wide-hard-bottom { padding-bottom: 0; } .palm-wide-hard-left { padding-left: 0; } .palm-wide-hard-ends { padding-top: 0; padding-bottom: 0; } .palm-wide-hard-sides { padding-right: 0; padding-left: 0; } .palm-wide-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 481px) { .palm-wide-and-up-ratio--none .ratio__item { position: relative; } .palm-wide-and-up-ratio--portrait:before { padding-top: 200%; } .palm-wide-and-up-ratio--square:before { padding-top: 100%; } .palm-wide-and-up-ratio--landscape:before { padding-top: 50%; } .palm-wide-and-up-text-right { text-align: right; } .palm-wide-and-up-text-left { text-align: left; } .palm-wide-and-up-text-center { text-align: center; } .palm-wide-and-up-one-whole { width: 100%; } .palm-wide-and-up-one-half, .palm-wide-and-up-two-quarters, .palm-wide-and-up-three-sixths, .palm-wide-and-up-four-eighths, .palm-wide-and-up-five-tenths, .palm-wide-and-up-six-twelfths { width: 50%; } .palm-wide-and-up-one-third, .palm-wide-and-up-two-sixths, .palm-wide-and-up-three-ninths, .palm-wide-and-up-four-twelfths { width: 33.33333%; } .palm-wide-and-up-two-thirds, .palm-wide-and-up-four-sixths, .palm-wide-and-up-six-ninths, .palm-wide-and-up-eight-twelfths { width: 66.66667%; } .palm-wide-and-up-one-quarter, .palm-wide-and-up-two-eighths, .palm-wide-and-up-three-twelfths { width: 25%; } .palm-wide-and-up-three-quarters, .palm-wide-and-up-six-eighths, .palm-wide-and-up-nine-twelfths { width: 75%; } .palm-wide-and-up-one-fifth, .palm-wide-and-up-two-tenths { width: 20%; } .palm-wide-and-up-two-fifths, .palm-wide-and-up-four-tenths { width: 40%; } .palm-wide-and-up-three-fifths, .palm-wide-and-up-six-tenths { width: 60%; } .palm-wide-and-up-four-fifths, .palm-wide-and-up-eight-tenths { width: 80%; } .palm-wide-and-up-one-sixth, .palm-wide-and-up-two-twelfths { width: 16.66667%; } .palm-wide-and-up-five-sixths, .palm-wide-and-up-ten-twelfths { width: 83.33333%; } .palm-wide-and-up-one-eighth { width: 12.5%; } .palm-wide-and-up-three-eighths { width: 37.5%; } .palm-wide-and-up-five-eighths { width: 62.5%; } .palm-wide-and-up-seven-eighths { width: 87.5%; } .palm-wide-and-up-one-ninth { width: 11.11111%; } .palm-wide-and-up-two-ninths { width: 22.22222%; } .palm-wide-and-up-four-ninths { width: 44.44444%; } .palm-wide-and-up-five-ninths { width: 55.55556%; } .palm-wide-and-up-seven-ninths { width: 77.77778%; } .palm-wide-and-up-eight-ninths { width: 88.88889%; } .palm-wide-and-up-one-tenth { width: 10%; } .palm-wide-and-up-three-tenths { width: 30%; } .palm-wide-and-up-seven-tenths { width: 70%; } .palm-wide-and-up-nine-tenths { width: 90%; } .palm-wide-and-up-one-twelfth { width: 8.33333%; } .palm-wide-and-up-five-twelfths { width: 41.66667%; } .palm-wide-and-up-seven-twelfths { width: 58.33333%; } .palm-wide-and-up-eleven-twelfths { width: 91.66667%; } .palm-wide-and-up-float-left { float: left; } .palm-wide-and-up-float-right { float: right; } .palm-wide-and-up-float-none { float: none; } .palm-wide-and-up-float-inherit { float: inherit; } .palm-wide-and-up-push { margin: 20px; } .palm-wide-and-up-push-top { margin-top: 20px; } .palm-wide-and-up-push-right { margin-right: 20px; } .palm-wide-and-up-push-bottom { margin-bottom: 20px; } .palm-wide-and-up-push-left { margin-left: 20px; } .palm-wide-and-up-push-ends { margin-top: 20px; margin-bottom: 20px; } .palm-wide-and-up-push-sides { margin-right: 20px; margin-left: 20px; } .palm-wide-and-up-push-half { margin: 10px; } .palm-wide-and-up-push-half-top { margin-top: 10px; } .palm-wide-and-up-push-half-right { margin-right: 10px; } .palm-wide-and-up-push-half-bottom { margin-bottom: 10px; } .palm-wide-and-up-push-half-left { margin-left: 10px; } .palm-wide-and-up-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .palm-wide-and-up-push-half-sides { margin-right: 10px; margin-left: 10px; } .palm-wide-and-up-push-double { margin: 40px; } .palm-wide-and-up-push-double-top { margin-top: 40px; } .palm-wide-and-up-push-double-right { margin-right: 40px; } .palm-wide-and-up-push-double-bottom { margin-bottom: 40px; } .palm-wide-and-up-push-double-left { margin-left: 40px; } .palm-wide-and-up-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .palm-wide-and-up-push-double-sides { margin-right: 40px; margin-left: 40px; } .palm-wide-and-up-flush { margin: 0; } .palm-wide-and-up-flush-top { margin-top: 0; } .palm-wide-and-up-flush-right { margin-right: 0; } .palm-wide-and-up-flush-bottom { margin-bottom: 0; } .palm-wide-and-up-flush-left { margin-left: 0; } .palm-wide-and-up-flush-ends { margin-top: 0; margin-bottom: 0; } .palm-wide-and-up-flush-sides { margin-right: 0; margin-left: 0; } .palm-wide-and-up-soft { padding: 20px; } .palm-wide-and-up-soft-top { padding-top: 20px; } .palm-wide-and-up-soft-right { padding-right: 20px; } .palm-wide-and-up-soft-bottom { padding-bottom: 20px; } .palm-wide-and-up-soft-left { padding-left: 20px; } .palm-wide-and-up-soft-ends { padding-top: 20px; padding-bottom: 20px; } .palm-wide-and-up-soft-sides { padding-right: 20px; padding-left: 20px; } .palm-wide-and-up-soft-half { padding: 10px; } .palm-wide-and-up-soft-half-top { padding-top: 10px; } .palm-wide-and-up-soft-half-right { padding-right: 10px; } .palm-wide-and-up-soft-half-bottom { padding-bottom: 10px; } .palm-wide-and-up-soft-half-left { padding-left: 10px; } .palm-wide-and-up-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .palm-wide-and-up-soft-half-sides { padding-right: 10px; padding-left: 10px; } .palm-wide-and-up-soft-double { padding: 40px; } .palm-wide-and-up-soft-double-top { padding-top: 40px; } .palm-wide-and-up-soft-double-right { padding-right: 40px; } .palm-wide-and-up-soft-double-bottom { padding-bottom: 40px; } .palm-wide-and-up-soft-double-left { padding-left: 40px; } .palm-wide-and-up-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .palm-wide-and-up-soft-double-sides { padding-right: 40px; padding-left: 40px; } .palm-wide-and-up-hard { padding: 0; } .palm-wide-and-up-hard-top { padding-top: 0; } .palm-wide-and-up-hard-right { padding-right: 0; } .palm-wide-and-up-hard-bottom { padding-bottom: 0; } .palm-wide-and-up-hard-left { padding-left: 0; } .palm-wide-and-up-hard-ends { padding-top: 0; padding-bottom: 0; } .palm-wide-and-up-hard-sides { padding-right: 0; padding-left: 0; } .palm-wide-and-up-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 769px) and (max-width: 1280px) { body { font-size: 126.5625%; } .portable-ratio--none .ratio__item { position: relative; } .portable-ratio--portrait:before { padding-top: 200%; } .portable-ratio--square:before { padding-top: 100%; } .portable-ratio--landscape:before { padding-top: 50%; } .portable-text-right { text-align: right; } .portable-text-left { text-align: left; } .portable-text-center { text-align: center; } .portable-one-whole { width: 100%; } .portable-one-half, .portable-two-quarters, .portable-three-sixths, .portable-four-eighths, .portable-five-tenths, .portable-six-twelfths { width: 50%; } .portable-one-third, .portable-two-sixths, .portable-three-ninths, .portable-four-twelfths { width: 33.33333%; } .portable-two-thirds, .portable-four-sixths, .portable-six-ninths, .portable-eight-twelfths { width: 66.66667%; } .portable-one-quarter, .portable-two-eighths, .portable-three-twelfths { width: 25%; } .portable-three-quarters, .portable-six-eighths, .portable-nine-twelfths { width: 75%; } .portable-one-fifth, .portable-two-tenths { width: 20%; } .portable-two-fifths, .portable-four-tenths { width: 40%; } .portable-three-fifths, .portable-six-tenths { width: 60%; } .portable-four-fifths, .portable-eight-tenths { width: 80%; } .portable-one-sixth, .portable-two-twelfths { width: 16.66667%; } .portable-five-sixths, .portable-ten-twelfths { width: 83.33333%; } .portable-one-eighth { width: 12.5%; } .portable-three-eighths { width: 37.5%; } .portable-five-eighths { width: 62.5%; } .portable-seven-eighths { width: 87.5%; } .portable-one-ninth { width: 11.11111%; } .portable-two-ninths { width: 22.22222%; } .portable-four-ninths { width: 44.44444%; } .portable-five-ninths { width: 55.55556%; } .portable-seven-ninths { width: 77.77778%; } .portable-eight-ninths { width: 88.88889%; } .portable-one-tenth { width: 10%; } .portable-three-tenths { width: 30%; } .portable-seven-tenths { width: 70%; } .portable-nine-tenths { width: 90%; } .portable-one-twelfth { width: 8.33333%; } .portable-five-twelfths { width: 41.66667%; } .portable-seven-twelfths { width: 58.33333%; } .portable-eleven-twelfths { width: 91.66667%; } .portable-float-left { float: left; } .portable-float-right { float: right; } .portable-float-none { float: none; } .portable-float-inherit { float: inherit; } .portable-push { margin: 20px; } .portable-push-top { margin-top: 20px; } .portable-push-right { margin-right: 20px; } .portable-push-bottom { margin-bottom: 20px; } .portable-push-left { margin-left: 20px; } .portable-push-ends { margin-top: 20px; margin-bottom: 20px; } .portable-push-sides { margin-right: 20px; margin-left: 20px; } .portable-push-half { margin: 10px; } .portable-push-half-top { margin-top: 10px; } .portable-push-half-right { margin-right: 10px; } .portable-push-half-bottom { margin-bottom: 10px; } .portable-push-half-left { margin-left: 10px; } .portable-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .portable-push-half-sides { margin-right: 10px; margin-left: 10px; } .portable-push-double { margin: 40px; } .portable-push-double-top { margin-top: 40px; } .portable-push-double-right { margin-right: 40px; } .portable-push-double-bottom { margin-bottom: 40px; } .portable-push-double-left { margin-left: 40px; } .portable-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .portable-push-double-sides { margin-right: 40px; margin-left: 40px; } .portable-flush { margin: 0; } .portable-flush-top { margin-top: 0; } .portable-flush-right { margin-right: 0; } .portable-flush-bottom { margin-bottom: 0; } .portable-flush-left { margin-left: 0; } .portable-flush-ends { margin-top: 0; margin-bottom: 0; } .portable-flush-sides { margin-right: 0; margin-left: 0; } .portable-soft { padding: 20px; } .portable-soft-top { padding-top: 20px; } .portable-soft-right { padding-right: 20px; } .portable-soft-bottom { padding-bottom: 20px; } .portable-soft-left { padding-left: 20px; } .portable-soft-ends { padding-top: 20px; padding-bottom: 20px; } .portable-soft-sides { padding-right: 20px; padding-left: 20px; } .portable-soft-half { padding: 10px; } .portable-soft-half-top { padding-top: 10px; } .portable-soft-half-right { padding-right: 10px; } .portable-soft-half-bottom { padding-bottom: 10px; } .portable-soft-half-left { padding-left: 10px; } .portable-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .portable-soft-half-sides { padding-right: 10px; padding-left: 10px; } .portable-soft-double { padding: 40px; } .portable-soft-double-top { padding-top: 40px; } .portable-soft-double-right { padding-right: 40px; } .portable-soft-double-bottom { padding-bottom: 40px; } .portable-soft-double-left { padding-left: 40px; } .portable-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .portable-soft-double-sides { padding-right: 40px; padding-left: 40px; } .portable-hard { padding: 0; } .portable-hard-top { padding-top: 0; } .portable-hard-right { padding-right: 0; } .portable-hard-bottom { padding-bottom: 0; } .portable-hard-left { padding-left: 0; } .portable-hard-ends { padding-top: 0; padding-bottom: 0; } .portable-hard-sides { padding-right: 0; padding-left: 0; } .portable-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 769px) and (max-width: 1024px) { .lap-ratio--none .ratio__item { position: relative; } .lap-ratio--portrait:before { padding-top: 200%; } .lap-ratio--square:before { padding-top: 100%; } .lap-ratio--landscape:before { padding-top: 50%; } .lap-text-right { text-align: right; } .lap-text-left { text-align: left; } .lap-text-center { text-align: center; } .lap-one-whole { width: 100%; } .lap-one-half, .lap-two-quarters, .lap-three-sixths, .lap-four-eighths, .lap-five-tenths, .lap-six-twelfths { width: 50%; } .lap-one-third, .lap-two-sixths, .lap-three-ninths, .lap-four-twelfths { width: 33.33333%; } .lap-two-thirds, .lap-four-sixths, .lap-six-ninths, .lap-eight-twelfths { width: 66.66667%; } .lap-one-quarter, .lap-two-eighths, .lap-three-twelfths { width: 25%; } .lap-three-quarters, .lap-six-eighths, .lap-nine-twelfths { width: 75%; } .lap-one-fifth, .lap-two-tenths { width: 20%; } .lap-two-fifths, .lap-four-tenths { width: 40%; } .lap-three-fifths, .lap-six-tenths { width: 60%; } .lap-four-fifths, .lap-eight-tenths { width: 80%; } .lap-one-sixth, .lap-two-twelfths { width: 16.66667%; } .lap-five-sixths, .lap-ten-twelfths { width: 83.33333%; } .lap-one-eighth { width: 12.5%; } .lap-three-eighths { width: 37.5%; } .lap-five-eighths { width: 62.5%; } .lap-seven-eighths { width: 87.5%; } .lap-one-ninth { width: 11.11111%; } .lap-two-ninths { width: 22.22222%; } .lap-four-ninths { width: 44.44444%; } .lap-five-ninths { width: 55.55556%; } .lap-seven-ninths { width: 77.77778%; } .lap-eight-ninths { width: 88.88889%; } .lap-one-tenth { width: 10%; } .lap-three-tenths { width: 30%; } .lap-seven-tenths { width: 70%; } .lap-nine-tenths { width: 90%; } .lap-one-twelfth { width: 8.33333%; } .lap-five-twelfths { width: 41.66667%; } .lap-seven-twelfths { width: 58.33333%; } .lap-eleven-twelfths { width: 91.66667%; } .lap-float-left { float: left; } .lap-float-right { float: right; } .lap-float-none { float: none; } .lap-float-inherit { float: inherit; } .lap-push { margin: 20px; } .lap-push-top { margin-top: 20px; } .lap-push-right { margin-right: 20px; } .lap-push-bottom { margin-bottom: 20px; } .lap-push-left { margin-left: 20px; } .lap-push-ends { margin-top: 20px; margin-bottom: 20px; } .lap-push-sides { margin-right: 20px; margin-left: 20px; } .lap-push-half { margin: 10px; } .lap-push-half-top { margin-top: 10px; } .lap-push-half-right { margin-right: 10px; } .lap-push-half-bottom { margin-bottom: 10px; } .lap-push-half-left { margin-left: 10px; } .lap-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .lap-push-half-sides { margin-right: 10px; margin-left: 10px; } .lap-push-double { margin: 40px; } .lap-push-double-top { margin-top: 40px; } .lap-push-double-right { margin-right: 40px; } .lap-push-double-bottom { margin-bottom: 40px; } .lap-push-double-left { margin-left: 40px; } .lap-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .lap-push-double-sides { margin-right: 40px; margin-left: 40px; } .lap-flush { margin: 0; } .lap-flush-top { margin-top: 0; } .lap-flush-right { margin-right: 0; } .lap-flush-bottom { margin-bottom: 0; } .lap-flush-left { margin-left: 0; } .lap-flush-ends { margin-top: 0; margin-bottom: 0; } .lap-flush-sides { margin-right: 0; margin-left: 0; } .lap-soft { padding: 20px; } .lap-soft-top { padding-top: 20px; } .lap-soft-right { padding-right: 20px; } .lap-soft-bottom { padding-bottom: 20px; } .lap-soft-left { padding-left: 20px; } .lap-soft-ends { padding-top: 20px; padding-bottom: 20px; } .lap-soft-sides { padding-right: 20px; padding-left: 20px; } .lap-soft-half { padding: 10px; } .lap-soft-half-top { padding-top: 10px; } .lap-soft-half-right { padding-right: 10px; } .lap-soft-half-bottom { padding-bottom: 10px; } .lap-soft-half-left { padding-left: 10px; } .lap-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .lap-soft-half-sides { padding-right: 10px; padding-left: 10px; } .lap-soft-double { padding: 40px; } .lap-soft-double-top { padding-top: 40px; } .lap-soft-double-right { padding-right: 40px; } .lap-soft-double-bottom { padding-bottom: 40px; } .lap-soft-double-left { padding-left: 40px; } .lap-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .lap-soft-double-sides { padding-right: 40px; padding-left: 40px; } .lap-hard { padding: 0; } .lap-hard-top { padding-top: 0; } .lap-hard-right { padding-right: 0; } .lap-hard-bottom { padding-bottom: 0; } .lap-hard-left { padding-left: 0; } .lap-hard-ends { padding-top: 0; padding-bottom: 0; } .lap-hard-sides { padding-right: 0; padding-left: 0; } .lap-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 769px) { .lap-and-up-ratio--none .ratio__item { position: relative; } .lap-and-up-ratio--portrait:before { padding-top: 200%; } .lap-and-up-ratio--square:before { padding-top: 100%; } .lap-and-up-ratio--landscape:before { padding-top: 50%; } .panel { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0; } .panel__item, .panel__item--left, .panel__item--right { position: absolute; top: 0; bottom: 0; height: 100%; } .lap-and-up-text-right { text-align: right; } .lap-and-up-text-left { text-align: left; } .lap-and-up-text-center { text-align: center; } .lap-and-up-one-whole { width: 100%; } .lap-and-up-one-half, .lap-and-up-two-quarters, .lap-and-up-three-sixths, .lap-and-up-four-eighths, .lap-and-up-five-tenths, .lap-and-up-six-twelfths { width: 50%; } .lap-and-up-one-third, .lap-and-up-two-sixths, .lap-and-up-three-ninths, .lap-and-up-four-twelfths { width: 33.33333%; } .lap-and-up-two-thirds, .lap-and-up-four-sixths, .lap-and-up-six-ninths, .lap-and-up-eight-twelfths { width: 66.66667%; } .lap-and-up-one-quarter, .lap-and-up-two-eighths, .lap-and-up-three-twelfths { width: 25%; } .lap-and-up-three-quarters, .lap-and-up-six-eighths, .lap-and-up-nine-twelfths { width: 75%; } .lap-and-up-one-fifth, .lap-and-up-two-tenths { width: 20%; } .lap-and-up-two-fifths, .lap-and-up-four-tenths { width: 40%; } .lap-and-up-three-fifths, .lap-and-up-six-tenths { width: 60%; } .lap-and-up-four-fifths, .lap-and-up-eight-tenths { width: 80%; } .lap-and-up-one-sixth, .lap-and-up-two-twelfths { width: 16.66667%; } .lap-and-up-five-sixths, .lap-and-up-ten-twelfths { width: 83.33333%; } .lap-and-up-one-eighth { width: 12.5%; } .lap-and-up-three-eighths { width: 37.5%; } .lap-and-up-five-eighths { width: 62.5%; } .lap-and-up-seven-eighths { width: 87.5%; } .lap-and-up-one-ninth { width: 11.11111%; } .lap-and-up-two-ninths { width: 22.22222%; } .lap-and-up-four-ninths { width: 44.44444%; } .lap-and-up-five-ninths { width: 55.55556%; } .lap-and-up-seven-ninths { width: 77.77778%; } .lap-and-up-eight-ninths { width: 88.88889%; } .lap-and-up-one-tenth { width: 10%; } .lap-and-up-three-tenths { width: 30%; } .lap-and-up-seven-tenths { width: 70%; } .lap-and-up-nine-tenths { width: 90%; } .lap-and-up-one-twelfth { width: 8.33333%; } .lap-and-up-five-twelfths { width: 41.66667%; } .lap-and-up-seven-twelfths { width: 58.33333%; } .lap-and-up-eleven-twelfths { width: 91.66667%; } .lap-and-up-float-left { float: left; } .lap-and-up-float-right { float: right; } .lap-and-up-float-none { float: none; } .lap-and-up-float-inherit { float: inherit; } .lap-and-up-push { margin: 20px; } .lap-and-up-push-top { margin-top: 20px; } .lap-and-up-push-right { margin-right: 20px; } .lap-and-up-push-bottom { margin-bottom: 20px; } .lap-and-up-push-left { margin-left: 20px; } .lap-and-up-push-ends { margin-top: 20px; margin-bottom: 20px; } .lap-and-up-push-sides { margin-right: 20px; margin-left: 20px; } .lap-and-up-push-half { margin: 10px; } .lap-and-up-push-half-top { margin-top: 10px; } .lap-and-up-push-half-right { margin-right: 10px; } .lap-and-up-push-half-bottom { margin-bottom: 10px; } .lap-and-up-push-half-left { margin-left: 10px; } .lap-and-up-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .lap-and-up-push-half-sides { margin-right: 10px; margin-left: 10px; } .lap-and-up-push-double { margin: 40px; } .lap-and-up-push-double-top { margin-top: 40px; } .lap-and-up-push-double-right { margin-right: 40px; } .lap-and-up-push-double-bottom { margin-bottom: 40px; } .lap-and-up-push-double-left { margin-left: 40px; } .lap-and-up-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .lap-and-up-push-double-sides { margin-right: 40px; margin-left: 40px; } .lap-and-up-flush { margin: 0; } .lap-and-up-flush-top { margin-top: 0; } .lap-and-up-flush-right { margin-right: 0; } .lap-and-up-flush-bottom { margin-bottom: 0; } .lap-and-up-flush-left { margin-left: 0; } .lap-and-up-flush-ends { margin-top: 0; margin-bottom: 0; } .lap-and-up-flush-sides { margin-right: 0; margin-left: 0; } .lap-and-up-soft { padding: 20px; } .lap-and-up-soft-top { padding-top: 20px; } .lap-and-up-soft-right { padding-right: 20px; } .lap-and-up-soft-bottom { padding-bottom: 20px; } .lap-and-up-soft-left { padding-left: 20px; } .lap-and-up-soft-ends { padding-top: 20px; padding-bottom: 20px; } .lap-and-up-soft-sides { padding-right: 20px; padding-left: 20px; } .lap-and-up-soft-half { padding: 10px; } .lap-and-up-soft-half-top { padding-top: 10px; } .lap-and-up-soft-half-right { padding-right: 10px; } .lap-and-up-soft-half-bottom { padding-bottom: 10px; } .lap-and-up-soft-half-left { padding-left: 10px; } .lap-and-up-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .lap-and-up-soft-half-sides { padding-right: 10px; padding-left: 10px; } .lap-and-up-soft-double { padding: 40px; } .lap-and-up-soft-double-top { padding-top: 40px; } .lap-and-up-soft-double-right { padding-right: 40px; } .lap-and-up-soft-double-bottom { padding-bottom: 40px; } .lap-and-up-soft-double-left { padding-left: 40px; } .lap-and-up-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .lap-and-up-soft-double-sides { padding-right: 40px; padding-left: 40px; } .lap-and-up-hard { padding: 0; } .lap-and-up-hard-top { padding-top: 0; } .lap-and-up-hard-right { padding-right: 0; } .lap-and-up-hard-bottom { padding-bottom: 0; } .lap-and-up-hard-left { padding-left: 0; } .lap-and-up-hard-ends { padding-top: 0; padding-bottom: 0; } .lap-and-up-hard-sides { padding-right: 0; padding-left: 0; } .lap-and-up-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 1025px) and (max-width: 1280px) { .lap-wide-ratio--none .ratio__item { position: relative; } .lap-wide-ratio--portrait:before { padding-top: 200%; } .lap-wide-ratio--square:before { padding-top: 100%; } .lap-wide-ratio--landscape:before { padding-top: 50%; } .lap-wide-text-right { text-align: right; } .lap-wide-text-left { text-align: left; } .lap-wide-text-center { text-align: center; } .lap-wide-one-whole { width: 100%; } .lap-wide-one-half, .lap-wide-two-quarters, .lap-wide-three-sixths, .lap-wide-four-eighths, .lap-wide-five-tenths, .lap-wide-six-twelfths { width: 50%; } .lap-wide-one-third, .lap-wide-two-sixths, .lap-wide-three-ninths, .lap-wide-four-twelfths { width: 33.33333%; } .lap-wide-two-thirds, .lap-wide-four-sixths, .lap-wide-six-ninths, .lap-wide-eight-twelfths { width: 66.66667%; } .lap-wide-one-quarter, .lap-wide-two-eighths, .lap-wide-three-twelfths { width: 25%; } .lap-wide-three-quarters, .lap-wide-six-eighths, .lap-wide-nine-twelfths { width: 75%; } .lap-wide-one-fifth, .lap-wide-two-tenths { width: 20%; } .lap-wide-two-fifths, .lap-wide-four-tenths { width: 40%; } .lap-wide-three-fifths, .lap-wide-six-tenths { width: 60%; } .lap-wide-four-fifths, .lap-wide-eight-tenths { width: 80%; } .lap-wide-one-sixth, .lap-wide-two-twelfths { width: 16.66667%; } .lap-wide-five-sixths, .lap-wide-ten-twelfths { width: 83.33333%; } .lap-wide-one-eighth { width: 12.5%; } .lap-wide-three-eighths { width: 37.5%; } .lap-wide-five-eighths { width: 62.5%; } .lap-wide-seven-eighths { width: 87.5%; } .lap-wide-one-ninth { width: 11.11111%; } .lap-wide-two-ninths { width: 22.22222%; } .lap-wide-four-ninths { width: 44.44444%; } .lap-wide-five-ninths { width: 55.55556%; } .lap-wide-seven-ninths { width: 77.77778%; } .lap-wide-eight-ninths { width: 88.88889%; } .lap-wide-one-tenth { width: 10%; } .lap-wide-three-tenths { width: 30%; } .lap-wide-seven-tenths { width: 70%; } .lap-wide-nine-tenths { width: 90%; } .lap-wide-one-twelfth { width: 8.33333%; } .lap-wide-five-twelfths { width: 41.66667%; } .lap-wide-seven-twelfths { width: 58.33333%; } .lap-wide-eleven-twelfths { width: 91.66667%; } .lap-wide-float-left { float: left; } .lap-wide-float-right { float: right; } .lap-wide-float-none { float: none; } .lap-wide-float-inherit { float: inherit; } .lap-wide-push { margin: 20px; } .lap-wide-push-top { margin-top: 20px; } .lap-wide-push-right { margin-right: 20px; } .lap-wide-push-bottom { margin-bottom: 20px; } .lap-wide-push-left { margin-left: 20px; } .lap-wide-push-ends { margin-top: 20px; margin-bottom: 20px; } .lap-wide-push-sides { margin-right: 20px; margin-left: 20px; } .lap-wide-push-half { margin: 10px; } .lap-wide-push-half-top { margin-top: 10px; } .lap-wide-push-half-right { margin-right: 10px; } .lap-wide-push-half-bottom { margin-bottom: 10px; } .lap-wide-push-half-left { margin-left: 10px; } .lap-wide-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .lap-wide-push-half-sides { margin-right: 10px; margin-left: 10px; } .lap-wide-push-double { margin: 40px; } .lap-wide-push-double-top { margin-top: 40px; } .lap-wide-push-double-right { margin-right: 40px; } .lap-wide-push-double-bottom { margin-bottom: 40px; } .lap-wide-push-double-left { margin-left: 40px; } .lap-wide-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .lap-wide-push-double-sides { margin-right: 40px; margin-left: 40px; } .lap-wide-flush { margin: 0; } .lap-wide-flush-top { margin-top: 0; } .lap-wide-flush-right { margin-right: 0; } .lap-wide-flush-bottom { margin-bottom: 0; } .lap-wide-flush-left { margin-left: 0; } .lap-wide-flush-ends { margin-top: 0; margin-bottom: 0; } .lap-wide-flush-sides { margin-right: 0; margin-left: 0; } .lap-wide-soft { padding: 20px; } .lap-wide-soft-top { padding-top: 20px; } .lap-wide-soft-right { padding-right: 20px; } .lap-wide-soft-bottom { padding-bottom: 20px; } .lap-wide-soft-left { padding-left: 20px; } .lap-wide-soft-ends { padding-top: 20px; padding-bottom: 20px; } .lap-wide-soft-sides { padding-right: 20px; padding-left: 20px; } .lap-wide-soft-half { padding: 10px; } .lap-wide-soft-half-top { padding-top: 10px; } .lap-wide-soft-half-right { padding-right: 10px; } .lap-wide-soft-half-bottom { padding-bottom: 10px; } .lap-wide-soft-half-left { padding-left: 10px; } .lap-wide-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .lap-wide-soft-half-sides { padding-right: 10px; padding-left: 10px; } .lap-wide-soft-double { padding: 40px; } .lap-wide-soft-double-top { padding-top: 40px; } .lap-wide-soft-double-right { padding-right: 40px; } .lap-wide-soft-double-bottom { padding-bottom: 40px; } .lap-wide-soft-double-left { padding-left: 40px; } .lap-wide-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .lap-wide-soft-double-sides { padding-right: 40px; padding-left: 40px; } .lap-wide-hard { padding: 0; } .lap-wide-hard-top { padding-top: 0; } .lap-wide-hard-right { padding-right: 0; } .lap-wide-hard-bottom { padding-bottom: 0; } .lap-wide-hard-left { padding-left: 0; } .lap-wide-hard-ends { padding-top: 0; padding-bottom: 0; } .lap-wide-hard-sides { padding-right: 0; padding-left: 0; } .lap-wide-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 1025px) { .lap-wide-and-up-ratio--none .ratio__item { position: relative; } .lap-wide-and-up-ratio--portrait:before { padding-top: 200%; } .lap-wide-and-up-ratio--square:before { padding-top: 100%; } .lap-wide-and-up-ratio--landscape:before { padding-top: 50%; } .lap-wide-and-up-text-right { text-align: right; } .lap-wide-and-up-text-left { text-align: left; } .lap-wide-and-up-text-center { text-align: center; } .lap-wide-and-up-one-whole { width: 100%; } .lap-wide-and-up-one-half, .lap-wide-and-up-two-quarters, .lap-wide-and-up-three-sixths, .lap-wide-and-up-four-eighths, .lap-wide-and-up-five-tenths, .lap-wide-and-up-six-twelfths { width: 50%; } .lap-wide-and-up-one-third, .lap-wide-and-up-two-sixths, .lap-wide-and-up-three-ninths, .lap-wide-and-up-four-twelfths { width: 33.33333%; } .lap-wide-and-up-two-thirds, .lap-wide-and-up-four-sixths, .lap-wide-and-up-six-ninths, .lap-wide-and-up-eight-twelfths { width: 66.66667%; } .lap-wide-and-up-one-quarter, .lap-wide-and-up-two-eighths, .lap-wide-and-up-three-twelfths { width: 25%; } .lap-wide-and-up-three-quarters, .lap-wide-and-up-six-eighths, .lap-wide-and-up-nine-twelfths { width: 75%; } .lap-wide-and-up-one-fifth, .lap-wide-and-up-two-tenths { width: 20%; } .lap-wide-and-up-two-fifths, .lap-wide-and-up-four-tenths { width: 40%; } .lap-wide-and-up-three-fifths, .lap-wide-and-up-six-tenths { width: 60%; } .lap-wide-and-up-four-fifths, .lap-wide-and-up-eight-tenths { width: 80%; } .lap-wide-and-up-one-sixth, .lap-wide-and-up-two-twelfths { width: 16.66667%; } .lap-wide-and-up-five-sixths, .lap-wide-and-up-ten-twelfths { width: 83.33333%; } .lap-wide-and-up-one-eighth { width: 12.5%; } .lap-wide-and-up-three-eighths { width: 37.5%; } .lap-wide-and-up-five-eighths { width: 62.5%; } .lap-wide-and-up-seven-eighths { width: 87.5%; } .lap-wide-and-up-one-ninth { width: 11.11111%; } .lap-wide-and-up-two-ninths { width: 22.22222%; } .lap-wide-and-up-four-ninths { width: 44.44444%; } .lap-wide-and-up-five-ninths { width: 55.55556%; } .lap-wide-and-up-seven-ninths { width: 77.77778%; } .lap-wide-and-up-eight-ninths { width: 88.88889%; } .lap-wide-and-up-one-tenth { width: 10%; } .lap-wide-and-up-three-tenths { width: 30%; } .lap-wide-and-up-seven-tenths { width: 70%; } .lap-wide-and-up-nine-tenths { width: 90%; } .lap-wide-and-up-one-twelfth { width: 8.33333%; } .lap-wide-and-up-five-twelfths { width: 41.66667%; } .lap-wide-and-up-seven-twelfths { width: 58.33333%; } .lap-wide-and-up-eleven-twelfths { width: 91.66667%; } .lap-wide-and-up-float-left { float: left; } .lap-wide-and-up-float-right { float: right; } .lap-wide-and-up-float-none { float: none; } .lap-wide-and-up-float-inherit { float: inherit; } .lap-wide-and-up-push { margin: 20px; } .lap-wide-and-up-push-top { margin-top: 20px; } .lap-wide-and-up-push-right { margin-right: 20px; } .lap-wide-and-up-push-bottom { margin-bottom: 20px; } .lap-wide-and-up-push-left { margin-left: 20px; } .lap-wide-and-up-push-ends { margin-top: 20px; margin-bottom: 20px; } .lap-wide-and-up-push-sides { margin-right: 20px; margin-left: 20px; } .lap-wide-and-up-push-half { margin: 10px; } .lap-wide-and-up-push-half-top { margin-top: 10px; } .lap-wide-and-up-push-half-right { margin-right: 10px; } .lap-wide-and-up-push-half-bottom { margin-bottom: 10px; } .lap-wide-and-up-push-half-left { margin-left: 10px; } .lap-wide-and-up-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .lap-wide-and-up-push-half-sides { margin-right: 10px; margin-left: 10px; } .lap-wide-and-up-push-double { margin: 40px; } .lap-wide-and-up-push-double-top { margin-top: 40px; } .lap-wide-and-up-push-double-right { margin-right: 40px; } .lap-wide-and-up-push-double-bottom { margin-bottom: 40px; } .lap-wide-and-up-push-double-left { margin-left: 40px; } .lap-wide-and-up-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .lap-wide-and-up-push-double-sides { margin-right: 40px; margin-left: 40px; } .lap-wide-and-up-flush { margin: 0; } .lap-wide-and-up-flush-top { margin-top: 0; } .lap-wide-and-up-flush-right { margin-right: 0; } .lap-wide-and-up-flush-bottom { margin-bottom: 0; } .lap-wide-and-up-flush-left { margin-left: 0; } .lap-wide-and-up-flush-ends { margin-top: 0; margin-bottom: 0; } .lap-wide-and-up-flush-sides { margin-right: 0; margin-left: 0; } .lap-wide-and-up-soft { padding: 20px; } .lap-wide-and-up-soft-top { padding-top: 20px; } .lap-wide-and-up-soft-right { padding-right: 20px; } .lap-wide-and-up-soft-bottom { padding-bottom: 20px; } .lap-wide-and-up-soft-left { padding-left: 20px; } .lap-wide-and-up-soft-ends { padding-top: 20px; padding-bottom: 20px; } .lap-wide-and-up-soft-sides { padding-right: 20px; padding-left: 20px; } .lap-wide-and-up-soft-half { padding: 10px; } .lap-wide-and-up-soft-half-top { padding-top: 10px; } .lap-wide-and-up-soft-half-right { padding-right: 10px; } .lap-wide-and-up-soft-half-bottom { padding-bottom: 10px; } .lap-wide-and-up-soft-half-left { padding-left: 10px; } .lap-wide-and-up-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .lap-wide-and-up-soft-half-sides { padding-right: 10px; padding-left: 10px; } .lap-wide-and-up-soft-double { padding: 40px; } .lap-wide-and-up-soft-double-top { padding-top: 40px; } .lap-wide-and-up-soft-double-right { padding-right: 40px; } .lap-wide-and-up-soft-double-bottom { padding-bottom: 40px; } .lap-wide-and-up-soft-double-left { padding-left: 40px; } .lap-wide-and-up-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .lap-wide-and-up-soft-double-sides { padding-right: 40px; padding-left: 40px; } .lap-wide-and-up-hard { padding: 0; } .lap-wide-and-up-hard-top { padding-top: 0; } .lap-wide-and-up-hard-right { padding-right: 0; } .lap-wide-and-up-hard-bottom { padding-bottom: 0; } .lap-wide-and-up-hard-left { padding-left: 0; } .lap-wide-and-up-hard-ends { padding-top: 0; padding-bottom: 0; } .lap-wide-and-up-hard-sides { padding-right: 0; padding-left: 0; } .lap-wide-and-up-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 1281px) { body { font-size: 140.625%; } .desk-and-up-ratio--none .ratio__item { position: relative; } .anchored-ratio--none .ratio__item { position: relative; } .desk-and-up-ratio--portrait:before { padding-top: 200%; } .anchored-ratio--portrait:before { padding-top: 200%; } .desk-and-up-ratio--square:before { padding-top: 100%; } .anchored-ratio--square:before { padding-top: 100%; } .desk-and-up-ratio--landscape:before { padding-top: 50%; } .anchored-ratio--landscape:before { padding-top: 50%; } .desk-and-up-text-right { text-align: right; } .anchored-text-right { text-align: right; } .desk-and-up-text-left { text-align: left; } .anchored-text-left { text-align: left; } .desk-and-up-text-center { text-align: center; } .anchored-text-center { text-align: center; } .desk-and-up-one-whole { width: 100%; } .anchored-one-whole { width: 100%; } .desk-and-up-one-half, .desk-and-up-two-quarters, .desk-and-up-three-sixths, .desk-and-up-four-eighths, .desk-and-up-five-tenths, .desk-and-up-six-twelfths { width: 50%; } .anchored-one-half, .anchored-two-quarters, .anchored-three-sixths, .anchored-four-eighths, .anchored-five-tenths, .anchored-six-twelfths { width: 50%; } .desk-and-up-one-third, .desk-and-up-two-sixths, .desk-and-up-three-ninths, .desk-and-up-four-twelfths { width: 33.33333%; } .anchored-one-third, .anchored-two-sixths, .anchored-three-ninths, .anchored-four-twelfths { width: 33.33333%; } .desk-and-up-two-thirds, .desk-and-up-four-sixths, .desk-and-up-six-ninths, .desk-and-up-eight-twelfths { width: 66.66667%; } .anchored-two-thirds, .anchored-four-sixths, .anchored-six-ninths, .anchored-eight-twelfths { width: 66.66667%; } .desk-and-up-one-quarter, .desk-and-up-two-eighths, .desk-and-up-three-twelfths { width: 25%; } .anchored-one-quarter, .anchored-two-eighths, .anchored-three-twelfths { width: 25%; } .desk-and-up-three-quarters, .desk-and-up-six-eighths, .desk-and-up-nine-twelfths { width: 75%; } .anchored-three-quarters, .anchored-six-eighths, .anchored-nine-twelfths { width: 75%; } .desk-and-up-one-fifth, .desk-and-up-two-tenths { width: 20%; } .anchored-one-fifth, .anchored-two-tenths { width: 20%; } .desk-and-up-two-fifths, .desk-and-up-four-tenths { width: 40%; } .anchored-two-fifths, .anchored-four-tenths { width: 40%; } .desk-and-up-three-fifths, .desk-and-up-six-tenths { width: 60%; } .anchored-three-fifths, .anchored-six-tenths { width: 60%; } .desk-and-up-four-fifths, .desk-and-up-eight-tenths { width: 80%; } .anchored-four-fifths, .anchored-eight-tenths { width: 80%; } .desk-and-up-one-sixth, .desk-and-up-two-twelfths { width: 16.66667%; } .anchored-one-sixth, .anchored-two-twelfths { width: 16.66667%; } .desk-and-up-five-sixths, .desk-and-up-ten-twelfths { width: 83.33333%; } .anchored-five-sixths, .anchored-ten-twelfths { width: 83.33333%; } .desk-and-up-one-eighth { width: 12.5%; } .anchored-one-eighth { width: 12.5%; } .desk-and-up-three-eighths { width: 37.5%; } .anchored-three-eighths { width: 37.5%; } .desk-and-up-five-eighths { width: 62.5%; } .anchored-five-eighths { width: 62.5%; } .desk-and-up-seven-eighths { width: 87.5%; } .anchored-seven-eighths { width: 87.5%; } .desk-and-up-one-ninth { width: 11.11111%; } .anchored-one-ninth { width: 11.11111%; } .desk-and-up-two-ninths { width: 22.22222%; } .anchored-two-ninths { width: 22.22222%; } .desk-and-up-four-ninths { width: 44.44444%; } .anchored-four-ninths { width: 44.44444%; } .desk-and-up-five-ninths { width: 55.55556%; } .anchored-five-ninths { width: 55.55556%; } .desk-and-up-seven-ninths { width: 77.77778%; } .anchored-seven-ninths { width: 77.77778%; } .desk-and-up-eight-ninths { width: 88.88889%; } .anchored-eight-ninths { width: 88.88889%; } .desk-and-up-one-tenth { width: 10%; } .anchored-one-tenth { width: 10%; } .desk-and-up-three-tenths { width: 30%; } .anchored-three-tenths { width: 30%; } .desk-and-up-seven-tenths { width: 70%; } .anchored-seven-tenths { width: 70%; } .desk-and-up-nine-tenths { width: 90%; } .anchored-nine-tenths { width: 90%; } .desk-and-up-one-twelfth { width: 8.33333%; } .anchored-one-twelfth { width: 8.33333%; } .desk-and-up-five-twelfths { width: 41.66667%; } .anchored-five-twelfths { width: 41.66667%; } .desk-and-up-seven-twelfths { width: 58.33333%; } .anchored-seven-twelfths { width: 58.33333%; } .desk-and-up-eleven-twelfths { width: 91.66667%; } .anchored-eleven-twelfths { width: 91.66667%; } .desk-and-up-float-left { float: left; } .anchored-float-left { float: left; } .desk-and-up-float-right { float: right; } .anchored-float-right { float: right; } .desk-and-up-float-none { float: none; } .anchored-float-none { float: none; } .desk-and-up-float-inherit { float: inherit; } .anchored-float-inherit { float: inherit; } .desk-and-up-push { margin: 20px; } .anchored-push { margin: 20px; } .desk-and-up-push-top { margin-top: 20px; } .anchored-push-top { margin-top: 20px; } .desk-and-up-push-right { margin-right: 20px; } .anchored-push-right { margin-right: 20px; } .desk-and-up-push-bottom { margin-bottom: 20px; } .anchored-push-bottom { margin-bottom: 20px; } .desk-and-up-push-left { margin-left: 20px; } .anchored-push-left { margin-left: 20px; } .desk-and-up-push-ends { margin-top: 20px; margin-bottom: 20px; } .anchored-push-ends { margin-top: 20px; margin-bottom: 20px; } .desk-and-up-push-sides { margin-right: 20px; margin-left: 20px; } .anchored-push-sides { margin-right: 20px; margin-left: 20px; } .desk-and-up-push-half { margin: 10px; } .anchored-push-half { margin: 10px; } .desk-and-up-push-half-top { margin-top: 10px; } .anchored-push-half-top { margin-top: 10px; } .desk-and-up-push-half-right { margin-right: 10px; } .anchored-push-half-right { margin-right: 10px; } .desk-and-up-push-half-bottom { margin-bottom: 10px; } .anchored-push-half-bottom { margin-bottom: 10px; } .desk-and-up-push-half-left { margin-left: 10px; } .anchored-push-half-left { margin-left: 10px; } .desk-and-up-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .anchored-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .desk-and-up-push-half-sides { margin-right: 10px; margin-left: 10px; } .anchored-push-half-sides { margin-right: 10px; margin-left: 10px; } .desk-and-up-push-double { margin: 40px; } .anchored-push-double { margin: 40px; } .desk-and-up-push-double-top { margin-top: 40px; } .anchored-push-double-top { margin-top: 40px; } .desk-and-up-push-double-right { margin-right: 40px; } .anchored-push-double-right { margin-right: 40px; } .desk-and-up-push-double-bottom { margin-bottom: 40px; } .anchored-push-double-bottom { margin-bottom: 40px; } .desk-and-up-push-double-left { margin-left: 40px; } .anchored-push-double-left { margin-left: 40px; } .desk-and-up-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .anchored-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .desk-and-up-push-double-sides { margin-right: 40px; margin-left: 40px; } .anchored-push-double-sides { margin-right: 40px; margin-left: 40px; } .desk-and-up-flush { margin: 0; } .anchored-flush { margin: 0; } .desk-and-up-flush-top { margin-top: 0; } .anchored-flush-top { margin-top: 0; } .desk-and-up-flush-right { margin-right: 0; } .anchored-flush-right { margin-right: 0; } .desk-and-up-flush-bottom { margin-bottom: 0; } .anchored-flush-bottom { margin-bottom: 0; } .desk-and-up-flush-left { margin-left: 0; } .anchored-flush-left { margin-left: 0; } .desk-and-up-flush-ends { margin-top: 0; margin-bottom: 0; } .anchored-flush-ends { margin-top: 0; margin-bottom: 0; } .desk-and-up-flush-sides { margin-right: 0; margin-left: 0; } .anchored-flush-sides { margin-right: 0; margin-left: 0; } .desk-and-up-soft { padding: 20px; } .anchored-soft { padding: 20px; } .desk-and-up-soft-top { padding-top: 20px; } .anchored-soft-top { padding-top: 20px; } .desk-and-up-soft-right { padding-right: 20px; } .anchored-soft-right { padding-right: 20px; } .desk-and-up-soft-bottom { padding-bottom: 20px; } .anchored-soft-bottom { padding-bottom: 20px; } .desk-and-up-soft-left { padding-left: 20px; } .anchored-soft-left { padding-left: 20px; } .desk-and-up-soft-ends { padding-top: 20px; padding-bottom: 20px; } .anchored-soft-ends { padding-top: 20px; padding-bottom: 20px; } .desk-and-up-soft-sides { padding-right: 20px; padding-left: 20px; } .anchored-soft-sides { padding-right: 20px; padding-left: 20px; } .desk-and-up-soft-half { padding: 10px; } .anchored-soft-half { padding: 10px; } .desk-and-up-soft-half-top { padding-top: 10px; } .anchored-soft-half-top { padding-top: 10px; } .desk-and-up-soft-half-right { padding-right: 10px; } .anchored-soft-half-right { padding-right: 10px; } .desk-and-up-soft-half-bottom { padding-bottom: 10px; } .anchored-soft-half-bottom { padding-bottom: 10px; } .desk-and-up-soft-half-left { padding-left: 10px; } .anchored-soft-half-left { padding-left: 10px; } .desk-and-up-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .anchored-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .desk-and-up-soft-half-sides { padding-right: 10px; padding-left: 10px; } .anchored-soft-half-sides { padding-right: 10px; padding-left: 10px; } .desk-and-up-soft-double { padding: 40px; } .anchored-soft-double { padding: 40px; } .desk-and-up-soft-double-top { padding-top: 40px; } .anchored-soft-double-top { padding-top: 40px; } .desk-and-up-soft-double-right { padding-right: 40px; } .anchored-soft-double-right { padding-right: 40px; } .desk-and-up-soft-double-bottom { padding-bottom: 40px; } .anchored-soft-double-bottom { padding-bottom: 40px; } .desk-and-up-soft-double-left { padding-left: 40px; } .anchored-soft-double-left { padding-left: 40px; } .desk-and-up-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .anchored-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .desk-and-up-soft-double-sides { padding-right: 40px; padding-left: 40px; } .anchored-soft-double-sides { padding-right: 40px; padding-left: 40px; } .desk-and-up-hard { padding: 0; } .anchored-hard { padding: 0; } .desk-and-up-hard-top { padding-top: 0; } .anchored-hard-top { padding-top: 0; } .desk-and-up-hard-right { padding-right: 0; } .anchored-hard-right { padding-right: 0; } .desk-and-up-hard-bottom { padding-bottom: 0; } .anchored-hard-bottom { padding-bottom: 0; } .desk-and-up-hard-left { padding-left: 0; } .anchored-hard-left { padding-left: 0; } .desk-and-up-hard-ends { padding-top: 0; padding-bottom: 0; } .anchored-hard-ends { padding-top: 0; padding-bottom: 0; } .desk-and-up-hard-sides { padding-right: 0; padding-left: 0; } .anchored-hard-sides { padding-right: 0; padding-left: 0; } .desk-and-up-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } .anchored-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 1281px) and (max-width: 1680px) { .desk-ratio--none .ratio__item { position: relative; } .desk-ratio--portrait:before { padding-top: 200%; } .desk-ratio--square:before { padding-top: 100%; } .desk-ratio--landscape:before { padding-top: 50%; } .desk-text-right { text-align: right; } .desk-text-left { text-align: left; } .desk-text-center { text-align: center; } .desk-one-whole { width: 100%; } .desk-one-half, .desk-two-quarters, .desk-three-sixths, .desk-four-eighths, .desk-five-tenths, .desk-six-twelfths { width: 50%; } .desk-one-third, .desk-two-sixths, .desk-three-ninths, .desk-four-twelfths { width: 33.33333%; } .desk-two-thirds, .desk-four-sixths, .desk-six-ninths, .desk-eight-twelfths { width: 66.66667%; } .desk-one-quarter, .desk-two-eighths, .desk-three-twelfths { width: 25%; } .desk-three-quarters, .desk-six-eighths, .desk-nine-twelfths { width: 75%; } .desk-one-fifth, .desk-two-tenths { width: 20%; } .desk-two-fifths, .desk-four-tenths { width: 40%; } .desk-three-fifths, .desk-six-tenths { width: 60%; } .desk-four-fifths, .desk-eight-tenths { width: 80%; } .desk-one-sixth, .desk-two-twelfths { width: 16.66667%; } .desk-five-sixths, .desk-ten-twelfths { width: 83.33333%; } .desk-one-eighth { width: 12.5%; } .desk-three-eighths { width: 37.5%; } .desk-five-eighths { width: 62.5%; } .desk-seven-eighths { width: 87.5%; } .desk-one-ninth { width: 11.11111%; } .desk-two-ninths { width: 22.22222%; } .desk-four-ninths { width: 44.44444%; } .desk-five-ninths { width: 55.55556%; } .desk-seven-ninths { width: 77.77778%; } .desk-eight-ninths { width: 88.88889%; } .desk-one-tenth { width: 10%; } .desk-three-tenths { width: 30%; } .desk-seven-tenths { width: 70%; } .desk-nine-tenths { width: 90%; } .desk-one-twelfth { width: 8.33333%; } .desk-five-twelfths { width: 41.66667%; } .desk-seven-twelfths { width: 58.33333%; } .desk-eleven-twelfths { width: 91.66667%; } .desk-float-left { float: left; } .desk-float-right { float: right; } .desk-float-none { float: none; } .desk-float-inherit { float: inherit; } .desk-push { margin: 20px; } .desk-push-top { margin-top: 20px; } .desk-push-right { margin-right: 20px; } .desk-push-bottom { margin-bottom: 20px; } .desk-push-left { margin-left: 20px; } .desk-push-ends { margin-top: 20px; margin-bottom: 20px; } .desk-push-sides { margin-right: 20px; margin-left: 20px; } .desk-push-half { margin: 10px; } .desk-push-half-top { margin-top: 10px; } .desk-push-half-right { margin-right: 10px; } .desk-push-half-bottom { margin-bottom: 10px; } .desk-push-half-left { margin-left: 10px; } .desk-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .desk-push-half-sides { margin-right: 10px; margin-left: 10px; } .desk-push-double { margin: 40px; } .desk-push-double-top { margin-top: 40px; } .desk-push-double-right { margin-right: 40px; } .desk-push-double-bottom { margin-bottom: 40px; } .desk-push-double-left { margin-left: 40px; } .desk-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .desk-push-double-sides { margin-right: 40px; margin-left: 40px; } .desk-flush { margin: 0; } .desk-flush-top { margin-top: 0; } .desk-flush-right { margin-right: 0; } .desk-flush-bottom { margin-bottom: 0; } .desk-flush-left { margin-left: 0; } .desk-flush-ends { margin-top: 0; margin-bottom: 0; } .desk-flush-sides { margin-right: 0; margin-left: 0; } .desk-soft { padding: 20px; } .desk-soft-top { padding-top: 20px; } .desk-soft-right { padding-right: 20px; } .desk-soft-bottom { padding-bottom: 20px; } .desk-soft-left { padding-left: 20px; } .desk-soft-ends { padding-top: 20px; padding-bottom: 20px; } .desk-soft-sides { padding-right: 20px; padding-left: 20px; } .desk-soft-half { padding: 10px; } .desk-soft-half-top { padding-top: 10px; } .desk-soft-half-right { padding-right: 10px; } .desk-soft-half-bottom { padding-bottom: 10px; } .desk-soft-half-left { padding-left: 10px; } .desk-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .desk-soft-half-sides { padding-right: 10px; padding-left: 10px; } .desk-soft-double { padding: 40px; } .desk-soft-double-top { padding-top: 40px; } .desk-soft-double-right { padding-right: 40px; } .desk-soft-double-bottom { padding-bottom: 40px; } .desk-soft-double-left { padding-left: 40px; } .desk-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .desk-soft-double-sides { padding-right: 40px; padding-left: 40px; } .desk-hard { padding: 0; } .desk-hard-top { padding-top: 0; } .desk-hard-right { padding-right: 0; } .desk-hard-bottom { padding-bottom: 0; } .desk-hard-left { padding-left: 0; } .desk-hard-ends { padding-top: 0; padding-bottom: 0; } .desk-hard-sides { padding-right: 0; padding-left: 0; } .desk-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (min-width: 1681px) { .desk-wide-ratio--none .ratio__item { position: relative; } .desk-wide-ratio--portrait:before { padding-top: 200%; } .desk-wide-ratio--square:before { padding-top: 100%; } .desk-wide-ratio--landscape:before { padding-top: 50%; } .desk-wide-text-right { text-align: right; } .desk-wide-text-left { text-align: left; } .desk-wide-text-center { text-align: center; } .desk-wide-one-whole { width: 100%; } .desk-wide-one-half, .desk-wide-two-quarters, .desk-wide-three-sixths, .desk-wide-four-eighths, .desk-wide-five-tenths, .desk-wide-six-twelfths { width: 50%; } .desk-wide-one-third, .desk-wide-two-sixths, .desk-wide-three-ninths, .desk-wide-four-twelfths { width: 33.33333%; } .desk-wide-two-thirds, .desk-wide-four-sixths, .desk-wide-six-ninths, .desk-wide-eight-twelfths { width: 66.66667%; } .desk-wide-one-quarter, .desk-wide-two-eighths, .desk-wide-three-twelfths { width: 25%; } .desk-wide-three-quarters, .desk-wide-six-eighths, .desk-wide-nine-twelfths { width: 75%; } .desk-wide-one-fifth, .desk-wide-two-tenths { width: 20%; } .desk-wide-two-fifths, .desk-wide-four-tenths { width: 40%; } .desk-wide-three-fifths, .desk-wide-six-tenths { width: 60%; } .desk-wide-four-fifths, .desk-wide-eight-tenths { width: 80%; } .desk-wide-one-sixth, .desk-wide-two-twelfths { width: 16.66667%; } .desk-wide-five-sixths, .desk-wide-ten-twelfths { width: 83.33333%; } .desk-wide-one-eighth { width: 12.5%; } .desk-wide-three-eighths { width: 37.5%; } .desk-wide-five-eighths { width: 62.5%; } .desk-wide-seven-eighths { width: 87.5%; } .desk-wide-one-ninth { width: 11.11111%; } .desk-wide-two-ninths { width: 22.22222%; } .desk-wide-four-ninths { width: 44.44444%; } .desk-wide-five-ninths { width: 55.55556%; } .desk-wide-seven-ninths { width: 77.77778%; } .desk-wide-eight-ninths { width: 88.88889%; } .desk-wide-one-tenth { width: 10%; } .desk-wide-three-tenths { width: 30%; } .desk-wide-seven-tenths { width: 70%; } .desk-wide-nine-tenths { width: 90%; } .desk-wide-one-twelfth { width: 8.33333%; } .desk-wide-five-twelfths { width: 41.66667%; } .desk-wide-seven-twelfths { width: 58.33333%; } .desk-wide-eleven-twelfths { width: 91.66667%; } .desk-wide-float-left { float: left; } .desk-wide-float-right { float: right; } .desk-wide-float-none { float: none; } .desk-wide-float-inherit { float: inherit; } .desk-wide-push { margin: 20px; } .desk-wide-push-top { margin-top: 20px; } .desk-wide-push-right { margin-right: 20px; } .desk-wide-push-bottom { margin-bottom: 20px; } .desk-wide-push-left { margin-left: 20px; } .desk-wide-push-ends { margin-top: 20px; margin-bottom: 20px; } .desk-wide-push-sides { margin-right: 20px; margin-left: 20px; } .desk-wide-push-half { margin: 10px; } .desk-wide-push-half-top { margin-top: 10px; } .desk-wide-push-half-right { margin-right: 10px; } .desk-wide-push-half-bottom { margin-bottom: 10px; } .desk-wide-push-half-left { margin-left: 10px; } .desk-wide-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .desk-wide-push-half-sides { margin-right: 10px; margin-left: 10px; } .desk-wide-push-double { margin: 40px; } .desk-wide-push-double-top { margin-top: 40px; } .desk-wide-push-double-right { margin-right: 40px; } .desk-wide-push-double-bottom { margin-bottom: 40px; } .desk-wide-push-double-left { margin-left: 40px; } .desk-wide-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .desk-wide-push-double-sides { margin-right: 40px; margin-left: 40px; } .desk-wide-flush { margin: 0; } .desk-wide-flush-top { margin-top: 0; } .desk-wide-flush-right { margin-right: 0; } .desk-wide-flush-bottom { margin-bottom: 0; } .desk-wide-flush-left { margin-left: 0; } .desk-wide-flush-ends { margin-top: 0; margin-bottom: 0; } .desk-wide-flush-sides { margin-right: 0; margin-left: 0; } .desk-wide-soft { padding: 20px; } .desk-wide-soft-top { padding-top: 20px; } .desk-wide-soft-right { padding-right: 20px; } .desk-wide-soft-bottom { padding-bottom: 20px; } .desk-wide-soft-left { padding-left: 20px; } .desk-wide-soft-ends { padding-top: 20px; padding-bottom: 20px; } .desk-wide-soft-sides { padding-right: 20px; padding-left: 20px; } .desk-wide-soft-half { padding: 10px; } .desk-wide-soft-half-top { padding-top: 10px; } .desk-wide-soft-half-right { padding-right: 10px; } .desk-wide-soft-half-bottom { padding-bottom: 10px; } .desk-wide-soft-half-left { padding-left: 10px; } .desk-wide-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .desk-wide-soft-half-sides { padding-right: 10px; padding-left: 10px; } .desk-wide-soft-double { padding: 40px; } .desk-wide-soft-double-top { padding-top: 40px; } .desk-wide-soft-double-right { padding-right: 40px; } .desk-wide-soft-double-bottom { padding-bottom: 40px; } .desk-wide-soft-double-left { padding-left: 40px; } .desk-wide-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .desk-wide-soft-double-sides { padding-right: 40px; padding-left: 40px; } .desk-wide-hard { padding: 0; } .desk-wide-hard-top { padding-top: 0; } .desk-wide-hard-right { padding-right: 0; } .desk-wide-hard-bottom { padding-bottom: 0; } .desk-wide-hard-left { padding-left: 0; } .desk-wide-hard-ends { padding-top: 0; padding-bottom: 0; } .desk-wide-hard-sides { padding-right: 0; padding-left: 0; } .desk-wide-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (max-width: 768px) { body { font-size: 112.5%; } .handheld-ratio--none .ratio__item { position: relative; } .handheld-ratio--portrait:before { padding-top: 200%; } .handheld-ratio--square:before { padding-top: 100%; } .handheld-ratio--landscape:before { padding-top: 50%; } .handheld-text-right { text-align: right; } .handheld-text-left { text-align: left; } .handheld-text-center { text-align: center; } .handheld-one-whole { width: 100%; } .handheld-one-half, .handheld-two-quarters, .handheld-three-sixths, .handheld-four-eighths, .handheld-five-tenths, .handheld-six-twelfths { width: 50%; } .handheld-one-third, .handheld-two-sixths, .handheld-three-ninths, .handheld-four-twelfths { width: 33.33333%; } .handheld-two-thirds, .handheld-four-sixths, .handheld-six-ninths, .handheld-eight-twelfths { width: 66.66667%; } .handheld-one-quarter, .handheld-two-eighths, .handheld-three-twelfths { width: 25%; } .handheld-three-quarters, .handheld-six-eighths, .handheld-nine-twelfths { width: 75%; } .handheld-one-fifth, .handheld-two-tenths { width: 20%; } .handheld-two-fifths, .handheld-four-tenths { width: 40%; } .handheld-three-fifths, .handheld-six-tenths { width: 60%; } .handheld-four-fifths, .handheld-eight-tenths { width: 80%; } .handheld-one-sixth, .handheld-two-twelfths { width: 16.66667%; } .handheld-five-sixths, .handheld-ten-twelfths { width: 83.33333%; } .handheld-one-eighth { width: 12.5%; } .handheld-three-eighths { width: 37.5%; } .handheld-five-eighths { width: 62.5%; } .handheld-seven-eighths { width: 87.5%; } .handheld-one-ninth { width: 11.11111%; } .handheld-two-ninths { width: 22.22222%; } .handheld-four-ninths { width: 44.44444%; } .handheld-five-ninths { width: 55.55556%; } .handheld-seven-ninths { width: 77.77778%; } .handheld-eight-ninths { width: 88.88889%; } .handheld-one-tenth { width: 10%; } .handheld-three-tenths { width: 30%; } .handheld-seven-tenths { width: 70%; } .handheld-nine-tenths { width: 90%; } .handheld-one-twelfth { width: 8.33333%; } .handheld-five-twelfths { width: 41.66667%; } .handheld-seven-twelfths { width: 58.33333%; } .handheld-eleven-twelfths { width: 91.66667%; } .handheld-float-left { float: left; } .handheld-float-right { float: right; } .handheld-float-none { float: none; } .handheld-float-inherit { float: inherit; } .handheld-push { margin: 20px; } .handheld-push-top { margin-top: 20px; } .handheld-push-right { margin-right: 20px; } .handheld-push-bottom { margin-bottom: 20px; } .handheld-push-left { margin-left: 20px; } .handheld-push-ends { margin-top: 20px; margin-bottom: 20px; } .handheld-push-sides { margin-right: 20px; margin-left: 20px; } .handheld-push-half { margin: 10px; } .handheld-push-half-top { margin-top: 10px; } .handheld-push-half-right { margin-right: 10px; } .handheld-push-half-bottom { margin-bottom: 10px; } .handheld-push-half-left { margin-left: 10px; } .handheld-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .handheld-push-half-sides { margin-right: 10px; margin-left: 10px; } .handheld-push-double { margin: 40px; } .handheld-push-double-top { margin-top: 40px; } .handheld-push-double-right { margin-right: 40px; } .handheld-push-double-bottom { margin-bottom: 40px; } .handheld-push-double-left { margin-left: 40px; } .handheld-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .handheld-push-double-sides { margin-right: 40px; margin-left: 40px; } .handheld-flush { margin: 0; } .handheld-flush-top { margin-top: 0; } .handheld-flush-right { margin-right: 0; } .handheld-flush-bottom { margin-bottom: 0; } .handheld-flush-left { margin-left: 0; } .handheld-flush-ends { margin-top: 0; margin-bottom: 0; } .handheld-flush-sides { margin-right: 0; margin-left: 0; } .handheld-soft { padding: 20px; } .handheld-soft-top { padding-top: 20px; } .handheld-soft-right { padding-right: 20px; } .handheld-soft-bottom { padding-bottom: 20px; } .handheld-soft-left { padding-left: 20px; } .handheld-soft-ends { padding-top: 20px; padding-bottom: 20px; } .handheld-soft-sides { padding-right: 20px; padding-left: 20px; } .handheld-soft-half { padding: 10px; } .handheld-soft-half-top { padding-top: 10px; } .handheld-soft-half-right { padding-right: 10px; } .handheld-soft-half-bottom { padding-bottom: 10px; } .handheld-soft-half-left { padding-left: 10px; } .handheld-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .handheld-soft-half-sides { padding-right: 10px; padding-left: 10px; } .handheld-soft-double { padding: 40px; } .handheld-soft-double-top { padding-top: 40px; } .handheld-soft-double-right { padding-right: 40px; } .handheld-soft-double-bottom { padding-bottom: 40px; } .handheld-soft-double-left { padding-left: 40px; } .handheld-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .handheld-soft-double-sides { padding-right: 40px; padding-left: 40px; } .handheld-hard { padding: 0; } .handheld-hard-top { padding-top: 0; } .handheld-hard-right { padding-right: 0; } .handheld-hard-bottom { padding-bottom: 0; } .handheld-hard-left { padding-left: 0; } .handheld-hard-ends { padding-top: 0; padding-bottom: 0; } .handheld-hard-sides { padding-right: 0; padding-left: 0; } .handheld-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @media screen and (max-width: 480px) { .palm-ratio--none .ratio__item { position: relative; } .palm-ratio--portrait:before { padding-top: 200%; } .palm-ratio--square:before { padding-top: 100%; } .palm-ratio--landscape:before { padding-top: 50%; } .palm-text-right { text-align: right; } .palm-text-left { text-align: left; } .palm-text-center { text-align: center; } .palm-one-whole { width: 100%; } .palm-one-half, .palm-two-quarters, .palm-three-sixths, .palm-four-eighths, .palm-five-tenths, .palm-six-twelfths { width: 50%; } .palm-one-third, .palm-two-sixths, .palm-three-ninths, .palm-four-twelfths { width: 33.33333%; } .palm-two-thirds, .palm-four-sixths, .palm-six-ninths, .palm-eight-twelfths { width: 66.66667%; } .palm-one-quarter, .palm-two-eighths, .palm-three-twelfths { width: 25%; } .palm-three-quarters, .palm-six-eighths, .palm-nine-twelfths { width: 75%; } .palm-one-fifth, .palm-two-tenths { width: 20%; } .palm-two-fifths, .palm-four-tenths { width: 40%; } .palm-three-fifths, .palm-six-tenths { width: 60%; } .palm-four-fifths, .palm-eight-tenths { width: 80%; } .palm-one-sixth, .palm-two-twelfths { width: 16.66667%; } .palm-five-sixths, .palm-ten-twelfths { width: 83.33333%; } .palm-one-eighth { width: 12.5%; } .palm-three-eighths { width: 37.5%; } .palm-five-eighths { width: 62.5%; } .palm-seven-eighths { width: 87.5%; } .palm-one-ninth { width: 11.11111%; } .palm-two-ninths { width: 22.22222%; } .palm-four-ninths { width: 44.44444%; } .palm-five-ninths { width: 55.55556%; } .palm-seven-ninths { width: 77.77778%; } .palm-eight-ninths { width: 88.88889%; } .palm-one-tenth { width: 10%; } .palm-three-tenths { width: 30%; } .palm-seven-tenths { width: 70%; } .palm-nine-tenths { width: 90%; } .palm-one-twelfth { width: 8.33333%; } .palm-five-twelfths { width: 41.66667%; } .palm-seven-twelfths { width: 58.33333%; } .palm-eleven-twelfths { width: 91.66667%; } .palm-float-left { float: left; } .palm-float-right { float: right; } .palm-float-none { float: none; } .palm-float-inherit { float: inherit; } .palm-push { margin: 20px; } .palm-push-top { margin-top: 20px; } .palm-push-right { margin-right: 20px; } .palm-push-bottom { margin-bottom: 20px; } .palm-push-left { margin-left: 20px; } .palm-push-ends { margin-top: 20px; margin-bottom: 20px; } .palm-push-sides { margin-right: 20px; margin-left: 20px; } .palm-push-half { margin: 10px; } .palm-push-half-top { margin-top: 10px; } .palm-push-half-right { margin-right: 10px; } .palm-push-half-bottom { margin-bottom: 10px; } .palm-push-half-left { margin-left: 10px; } .palm-push-half-ends { margin-top: 10px; margin-bottom: 10px; } .palm-push-half-sides { margin-right: 10px; margin-left: 10px; } .palm-push-double { margin: 40px; } .palm-push-double-top { margin-top: 40px; } .palm-push-double-right { margin-right: 40px; } .palm-push-double-bottom { margin-bottom: 40px; } .palm-push-double-left { margin-left: 40px; } .palm-push-double-ends { margin-top: 40px; margin-bottom: 40px; } .palm-push-double-sides { margin-right: 40px; margin-left: 40px; } .palm-flush { margin: 0; } .palm-flush-top { margin-top: 0; } .palm-flush-right { margin-right: 0; } .palm-flush-bottom { margin-bottom: 0; } .palm-flush-left { margin-left: 0; } .palm-flush-ends { margin-top: 0; margin-bottom: 0; } .palm-flush-sides { margin-right: 0; margin-left: 0; } .palm-soft { padding: 20px; } .palm-soft-top { padding-top: 20px; } .palm-soft-right { padding-right: 20px; } .palm-soft-bottom { padding-bottom: 20px; } .palm-soft-left { padding-left: 20px; } .palm-soft-ends { padding-top: 20px; padding-bottom: 20px; } .palm-soft-sides { padding-right: 20px; padding-left: 20px; } .palm-soft-half { padding: 10px; } .palm-soft-half-top { padding-top: 10px; } .palm-soft-half-right { padding-right: 10px; } .palm-soft-half-bottom { padding-bottom: 10px; } .palm-soft-half-left { padding-left: 10px; } .palm-soft-half-ends { padding-top: 10px; padding-bottom: 10px; } .palm-soft-half-sides { padding-right: 10px; padding-left: 10px; } .palm-soft-double { padding: 40px; } .palm-soft-double-top { padding-top: 40px; } .palm-soft-double-right { padding-right: 40px; } .palm-soft-double-bottom { padding-bottom: 40px; } .palm-soft-double-left { padding-left: 40px; } .palm-soft-double-ends { padding-top: 40px; padding-bottom: 40px; } .palm-soft-double-sides { padding-right: 40px; padding-left: 40px; } .palm-hard { padding: 0; } .palm-hard-top { padding-top: 0; } .palm-hard-right { padding-right: 0; } .palm-hard-bottom { padding-bottom: 0; } .palm-hard-left { padding-left: 0; } .palm-hard-ends { padding-top: 0; padding-bottom: 0; } .palm-hard-sides { padding-right: 0; padding-left: 0; } .palm-visuallyhidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; } } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @-ms-keyframes spin { 0% { -ms-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }
0.446253
0.081119
@import './fonts/fonts.css'; @import './scripts/components/staking-component/staking-component.css'; @import './scripts/components/governance-component/governance-component.css'; @import './scripts/components/allocation-component/allocation-component.css'; @import './scripts/components/public-key-popup-component/public-key-popup-component.css'; @import './scripts/components/claim-rewards-popup-component/claim-rewards-popup-component.css'; @import './scripts/components/deposit-popup-component/deposit-popup-component.css'; @import './scripts/components/withdraw-popup-component/withdraw-popup-component.css'; @import './scripts/components/info-popup-component/info-popup-component.css'; /* plugin area start */ .background { width: 100%; height: 100%; background-repeat: no-repeat; background-attachment: fixed; background-image: rgba(255, 255, 255, 0); } #main-page { display: none; } body { height: 100%; margin: 0; } .container { display: flex; flex-direction: column; margin-bottom: 20px; } .container__main { display: flex; flex-direction: row; } governance-component { width: 30%; } .container__sub { display: flex; flex-direction: column; margin-left: 10px; width: calc(100% - 10px - 30%); } staking-component { border-radius: 10px; } .container__sub__voting { display: flex; flex-direction: row; flex: 1; align-items: center; padding: 18px; margin-top: 10px; background-color: rgba(255, 255, 255, .05); border-radius: 10px; } .voting__content { display: flex; flex-direction: column; opacity: 0.5; font-size: 16px; font-style: italic; color: #ffffff; margin-left: auto; } .voting__content__text { opacity: 0.5; font-size: 16px; font-style: italic; text-align: center; color: #ffffff; margin-top: 20px; } /* common - start */ body { font-family: 'SFProDisplay', sans-serif; font-weight: normal; } html { scroll-behavior: smooth; height: 100%; } .container__header { font-size: 14px; font-weight: bold; letter-spacing: 3.11px; color: #ffffff; } .container-title { opacity: 0.5; font-size: 12px; color: #ffffff; } ::-webkit-scrollbar { width: 9px; height: 10px; } ::-webkit-scrollbar-thumb { border-radius: 10px; background: rgba(255, 255, 255, .5); border: 3px solid rgba(0, 0, 0, 0); background-clip: padding-box; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-button { display: none; } .ui-button { padding: 0 30px; border: 0; height: 38px; border-radius: 50px; box-shadow: none; color: #042548; cursor: pointer; display: inline-block; font-size: 14px; font-weight: bold; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; outline: none; align-items: center; } .ui-button:not(.disabled):hover { -moz-box-shadow:0 0 10px #ffffff; -webkit-box-shadow:0 0 10px #ffffff; box-shadow:0 0 10px #ffffff; } .ui-button__inner-wrapper { display: flex; flex-direction: row; } .ui-button__icon { margin-right: 15px; } /* common - end */ .container__main__controls { display: flex; align-self: center; margin-top: 50px; } .cancel-text { color: #ffffff; } .container__main__controls__cancel { background-color: rgba(255, 255, 255, 0.1); } /* plugin area ends */ /* common elements start */ .disabled { opacity: 0.3; cursor: default; } .error-container { display: flex; align-items: center; justify-content: center; height: 100%; width: 100%; overflow: hidden; word-break: break-word; } #error-full, #error-common { text-align: center; font-size: 16px; color: red; } #error-full-container { display: none; margin-top: 120px; } /* common elements ends */ /* popup starts */ .popup { width: 100%; height: 100%; overflow: hidden; position: fixed; top: 0px; display: flex; justify-content: center; align-items: center; z-index: 100; } .popup .popup__content{ margin: 40px auto 0px auto; padding: 30px; width: 460px; height: 139px; border-radius: 10px; background-color: rgba(50,50,50); display: flex; flex-direction: column; align-items: center; } .popup__content__title { font-size: 18px; font-weight: bold; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; text-align: center; } .popup__content__controls { margin-top: auto; } /* popup ends */
html/styles.css
@import './fonts/fonts.css'; @import './scripts/components/staking-component/staking-component.css'; @import './scripts/components/governance-component/governance-component.css'; @import './scripts/components/allocation-component/allocation-component.css'; @import './scripts/components/public-key-popup-component/public-key-popup-component.css'; @import './scripts/components/claim-rewards-popup-component/claim-rewards-popup-component.css'; @import './scripts/components/deposit-popup-component/deposit-popup-component.css'; @import './scripts/components/withdraw-popup-component/withdraw-popup-component.css'; @import './scripts/components/info-popup-component/info-popup-component.css'; /* plugin area start */ .background { width: 100%; height: 100%; background-repeat: no-repeat; background-attachment: fixed; background-image: rgba(255, 255, 255, 0); } #main-page { display: none; } body { height: 100%; margin: 0; } .container { display: flex; flex-direction: column; margin-bottom: 20px; } .container__main { display: flex; flex-direction: row; } governance-component { width: 30%; } .container__sub { display: flex; flex-direction: column; margin-left: 10px; width: calc(100% - 10px - 30%); } staking-component { border-radius: 10px; } .container__sub__voting { display: flex; flex-direction: row; flex: 1; align-items: center; padding: 18px; margin-top: 10px; background-color: rgba(255, 255, 255, .05); border-radius: 10px; } .voting__content { display: flex; flex-direction: column; opacity: 0.5; font-size: 16px; font-style: italic; color: #ffffff; margin-left: auto; } .voting__content__text { opacity: 0.5; font-size: 16px; font-style: italic; text-align: center; color: #ffffff; margin-top: 20px; } /* common - start */ body { font-family: 'SFProDisplay', sans-serif; font-weight: normal; } html { scroll-behavior: smooth; height: 100%; } .container__header { font-size: 14px; font-weight: bold; letter-spacing: 3.11px; color: #ffffff; } .container-title { opacity: 0.5; font-size: 12px; color: #ffffff; } ::-webkit-scrollbar { width: 9px; height: 10px; } ::-webkit-scrollbar-thumb { border-radius: 10px; background: rgba(255, 255, 255, .5); border: 3px solid rgba(0, 0, 0, 0); background-clip: padding-box; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-button { display: none; } .ui-button { padding: 0 30px; border: 0; height: 38px; border-radius: 50px; box-shadow: none; color: #042548; cursor: pointer; display: inline-block; font-size: 14px; font-weight: bold; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; outline: none; align-items: center; } .ui-button:not(.disabled):hover { -moz-box-shadow:0 0 10px #ffffff; -webkit-box-shadow:0 0 10px #ffffff; box-shadow:0 0 10px #ffffff; } .ui-button__inner-wrapper { display: flex; flex-direction: row; } .ui-button__icon { margin-right: 15px; } /* common - end */ .container__main__controls { display: flex; align-self: center; margin-top: 50px; } .cancel-text { color: #ffffff; } .container__main__controls__cancel { background-color: rgba(255, 255, 255, 0.1); } /* plugin area ends */ /* common elements start */ .disabled { opacity: 0.3; cursor: default; } .error-container { display: flex; align-items: center; justify-content: center; height: 100%; width: 100%; overflow: hidden; word-break: break-word; } #error-full, #error-common { text-align: center; font-size: 16px; color: red; } #error-full-container { display: none; margin-top: 120px; } /* common elements ends */ /* popup starts */ .popup { width: 100%; height: 100%; overflow: hidden; position: fixed; top: 0px; display: flex; justify-content: center; align-items: center; z-index: 100; } .popup .popup__content{ margin: 40px auto 0px auto; padding: 30px; width: 460px; height: 139px; border-radius: 10px; background-color: rgba(50,50,50); display: flex; flex-direction: column; align-items: center; } .popup__content__title { font-size: 18px; font-weight: bold; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; text-align: center; } .popup__content__controls { margin-top: auto; } /* popup ends */
0.276495
0.040389
:root{ --textcolor: #373737; --textcolor2: #6C6C6C; --bgcolor: #f5f5f5; --primaria: #1CE8B1; --secundaria: #1492E6; --terciaria: #24CEE8; --textorodape: #707070; --veterinaria: #F97171; --bcc: #9BE2FC; --engalimentos: #FFCA61; --pedagogia: #FFDC2A; --zootec: #D693F2; --letras: #FF8FC0;; --agronomia: #7CEF90; --botao: #53BCF2; --atencao: #FF5E5E; } /* X CONFIG X */ /* CUSTOM */ body, html{ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } #header{ width: 100%; background-color: transparent; transition: background ease-out 0.2s; } #header .navbar-collapse{ width: auto; } #header .nav-link{ font-size: 13px; font-weight: bolder; padding-left: 0; padding-right: 0; color: var(--textcolor2); border-bottom: solid 3px transparent; } #header .nav-link:hover{ border-bottom: solid 3px #a5a5a5; } #header .active{ border-bottom: solid 3px var(--textcolor); } .fundo{ background-color: var(--bgcolor); } .data{ color: var(--secundaria); font-size: 25px; font-weight: bolder; border-bottom: solid 2px #f5f5f5; padding-bottom: 7px; } .redirecionamento{ color: var(--secundaria); font-weight: bolder; } .legenda{ color: black; font-weight: bolder; } .titulo{ color: var(--textcolor); font-size: 37px; font-weight: bolder; } .tituloBorda{ border-bottom: solid 3px var(--textcolor); padding-bottom: 6px; } .caixa{ border-radius: 0.5rem; background-color: white; } .textoRodape{ color: var(--textorodape); font-size: 15px; font-weight: 500; } .textoagronomia{ color: var(--agronomia); font-size: 20px; font-weight: bolder; margin-top: 30px; } .textobcc{ color: var(--bcc); font-size: 20px; font-weight: bolder; margin-top: 15px; } .textoeng{ color: var(--engalimentos); font-size: 20px; font-weight: bolder; margin-top: 15px; } .textovet{ color: var(--veterinaria); font-size: 20px; font-weight: bolder; margin-top: 15px; } .textozoo{ color: var(--zootec); font-size: 20px; font-weight: bolder; margin-top: 30px; } .textopedagogia{ color: var(--pedagogia); font-size: 20px; font-weight: bolder; margin-top: 30px; } .textoletras{ color: var(--letras); font-size: 20px; font-weight: bolder; margin-top: 15px; } .subtitulo{ color: var(--textcolor2); font-size: 13px; margin-top: 30px; } .subtitulo2{ color: var(--textcolor2); font-size: 13px; } .cabecalho{ background-color: var(--primaria); border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; } .corpo{ background-color: white; border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; } .tituloTabelas{ font-weight: bolder; font-size: 20px; color: white; } .img-card-data { display: inline-block; } /* X CUSTOM X */ /* CUSTOM 2 */ body, html{ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } #header{ width: 100%; background-color: transparent; transition: background ease-out 0.2s; } #header .navbar-collapse{ width: auto; } #header .nav-link{ font-size: 13px; font-weight: bolder; padding-left: 0; padding-right: 0; color: var(--textcolor2); border-bottom: solid 3px transparent; } #header .nav-link:hover{ border-bottom: solid 3px var(--textcolor); } .fundo{ background-color: var(--bgcolor); } .data{ color: var(--secundaria); font-size: 23px; font-weight: bolder; border-bottom: solid 2px #f5f5f5; padding-bottom: 7px; } .redirecionamento{ color: var(--secundaria); font-weight: bolder; } .legenda{ color: black; font-weight: bolder; } .titulo{ color: var(--textcolor); font-size: 37px; font-weight: bolder; } .tituloBorda{ border-bottom: solid 3px var(--textcolor); padding-bottom: 6px; } .caixa{ border-radius: 0.5rem; background-color: white; } .textoRodape{ color: var(--textorodape); font-size: 15px; font-weight: 500; } .textoagronomia{ color: var(--agronomia); font-size: 20px; font-weight: bolder; margin-top: 30px; } .textobcc{ color: var(--bcc); font-size: 20px; font-weight: bolder; margin-top: 15px; } .textoeng{ color: var(--engalimentos); font-size: 20px; font-weight: bolder; margin-top: 15px; } .textovet{ color: var(--veterinaria); font-size: 20px; font-weight: bolder; margin-top: 15px; } .textozoo{ color: var(--zootec); font-size: 20px; font-weight: bolder; margin-top: 30px; } .textopedagogia{ color: var(--pedagogia); font-size: 20px; font-weight: bolder; margin-top: 30px; } .textoletras{ color: var(--letras); font-size: 20px; font-weight: bolder; margin-top: 15px; } .subtitulo{ color: var(--textcolor2); font-size: 15px; margin-top: 30px; } .subtitulo2{ color: var(--textcolor2); font-size: 13px; } .cabecalho{ background-color: var(--primaria); border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; } .corpo{ background-color: white; border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; } .tituloTabelas{ font-weight: bolder; font-size: 20px; color: white; } .botao{ background-color: var(--botao); border-radius: 00.5rem; color: white; font-weight: bolder; } .fundo2{ background-color: var(--bgcolor); padding-top: 90px; padding-bottom: 90px; } .tituloLista{ color: black; font-weight: bolder; font-size: 16px; } .destaqueLista{ color: black; font-weight: 700; font-size: 16px; } .link{ color: var(--secundaria); font-size: 13px; } .listagemLista{ border-bottom:solid 2px #f5f5f5; } .datinha{ color: var(--textorodape); font-size: 13px; font-weight: bolder; } .subtexto{ color: var(--textorodape); font-size: 13px; } .textoInput{ color: black; font-size: 14px; } .checkbox{ color: var(--textorodape); font-size: 13px; } .caixaDeTexto{ background-color: #f5f5f5; border-radius: 0.5rem; border: 1px solid transparent; } .botaoEntrar{ background-color: var(--secundaria); size: 100%; color: white; font-weight: bolder; font-size: 17px; border-radius: 0.5rem; } .tituloEntrada{ font-size: 30px; color: var(--primaria); font-weight: 700; } .textoEntrada{ font-size: 18px; color: var(--textcolor); font-weight: bolder; } .modalFundo{ background-color: white; border-radius: 0.5rem; border: solid 1px transparent; } .tituloModal{ color: var(--secundaria); font-weight: bolder; font-size: 23px; border-bottom: solid 2px var(--secundaria); } .campoDeTexto{ background-color: #f5f5f5; border-radius: 00.5rem; border: 0px; } .textoModal{ color: var(--textcolor); font-weight: bolder; font-size: 15px; } .botaoVerde{ background-color: var(--primaria); border-radius: 00.5rem; color: white; font-weight: bolder } .form-label { font-weight: bolder; } /* X CUSTOM 2 X */ /*TELA DE VIZUALIZAR DOCUMENTOS*/ .cabecalhoAzul{ background-color: var(--terciaria); border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; } .tituloDocumento{ color: black; font-weight: 700; font-size: 15px; } .textoDocumento{ color: var(--textcolor); font-weight: 600; font-size: 15px; } .tituloTipoDoc{ color: var(--terciaria); font-weight: 600; font-size: 24px; } .nomeDocumento{ color: var(--textcolor); font-weight: 600; font-size: 15px; } /**/ .icon_order_table { padding: 3px; width: 25px; border-radius: 50px; transform: rotate(90deg); } .icon-email-candidato { background-color: var(--terciaria); padding-right: 10px; padding-left: 10px; border-radius: 00.5rem; height: 35px; cursor: pointer; margin-top: 8px; transition: 0.3s; } .icon-email-candidato:hover { transition: 0.3s; background-color: var(--secundaria); } .cabecalhoCurso{ background-color: var(--veterinaria); border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; } /*TELA DE ENVIO DE DOCUMENTOS*/ .cabecalhoCurso{ background-color: var(--veterinaria); /*COR DO CURSO*/ border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; } .tituloEnvio{ color: black; font-weight: 600; font-size: 18px; } .subtexto{ color: var(--textcolor); font-size: 14px; text-align: justify; } ul.timeline{ list-style-type: none; position: relative; } ul.timeline:before{ content: ' '; background: #d4d9df; display: inline-block; position: absolute; left: 12px; width: 2px; height: 100%; z-index: 400; } ul.timeline > li:before{ content: ' '; background: white; display: inline-block; position: absolute; border-radius: 50%; border: 3px solid var(--secundaria); left: 0px; width: 25px; height: 25px; z-index: 400; } .subtexto2{ color: var(--textcolor2); font-size: 13px; text-align: justify; } .subtexto3{ color: var(--textcolor); font-size: 15px; text-align: justify; } /*TELA DE VIZUALIZAR DOCUMENTOS*/ .cabecalhoAzul{ background-color: var(--terciaria); border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; } .tituloDocumento{ color: black; font-weight: 700; font-size: 15px; } .textoDocumento{ color: var(--textcolor); font-weight: 600; font-size: 15px; } .tituloTipoDoc{ color: var(--terciaria); font-weight: 600; font-size: 24px; } .nomeDocumento{ color: var(--textcolor); font-weight: 600; font-size: 15px; } /**/ .caixaCurso{ border-radius: 0.5rem; background-color: var(--veterinaria); /*COR DO CURSO*/ } .textoChamada{ color: white; font-size: 20px; font-weight: 600; } .check-mark::after{ border-color: black; } label { font-weight: bolder; }
public/css/style.css
:root{ --textcolor: #373737; --textcolor2: #6C6C6C; --bgcolor: #f5f5f5; --primaria: #1CE8B1; --secundaria: #1492E6; --terciaria: #24CEE8; --textorodape: #707070; --veterinaria: #F97171; --bcc: #9BE2FC; --engalimentos: #FFCA61; --pedagogia: #FFDC2A; --zootec: #D693F2; --letras: #FF8FC0;; --agronomia: #7CEF90; --botao: #53BCF2; --atencao: #FF5E5E; } /* X CONFIG X */ /* CUSTOM */ body, html{ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } #header{ width: 100%; background-color: transparent; transition: background ease-out 0.2s; } #header .navbar-collapse{ width: auto; } #header .nav-link{ font-size: 13px; font-weight: bolder; padding-left: 0; padding-right: 0; color: var(--textcolor2); border-bottom: solid 3px transparent; } #header .nav-link:hover{ border-bottom: solid 3px #a5a5a5; } #header .active{ border-bottom: solid 3px var(--textcolor); } .fundo{ background-color: var(--bgcolor); } .data{ color: var(--secundaria); font-size: 25px; font-weight: bolder; border-bottom: solid 2px #f5f5f5; padding-bottom: 7px; } .redirecionamento{ color: var(--secundaria); font-weight: bolder; } .legenda{ color: black; font-weight: bolder; } .titulo{ color: var(--textcolor); font-size: 37px; font-weight: bolder; } .tituloBorda{ border-bottom: solid 3px var(--textcolor); padding-bottom: 6px; } .caixa{ border-radius: 0.5rem; background-color: white; } .textoRodape{ color: var(--textorodape); font-size: 15px; font-weight: 500; } .textoagronomia{ color: var(--agronomia); font-size: 20px; font-weight: bolder; margin-top: 30px; } .textobcc{ color: var(--bcc); font-size: 20px; font-weight: bolder; margin-top: 15px; } .textoeng{ color: var(--engalimentos); font-size: 20px; font-weight: bolder; margin-top: 15px; } .textovet{ color: var(--veterinaria); font-size: 20px; font-weight: bolder; margin-top: 15px; } .textozoo{ color: var(--zootec); font-size: 20px; font-weight: bolder; margin-top: 30px; } .textopedagogia{ color: var(--pedagogia); font-size: 20px; font-weight: bolder; margin-top: 30px; } .textoletras{ color: var(--letras); font-size: 20px; font-weight: bolder; margin-top: 15px; } .subtitulo{ color: var(--textcolor2); font-size: 13px; margin-top: 30px; } .subtitulo2{ color: var(--textcolor2); font-size: 13px; } .cabecalho{ background-color: var(--primaria); border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; } .corpo{ background-color: white; border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; } .tituloTabelas{ font-weight: bolder; font-size: 20px; color: white; } .img-card-data { display: inline-block; } /* X CUSTOM X */ /* CUSTOM 2 */ body, html{ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } #header{ width: 100%; background-color: transparent; transition: background ease-out 0.2s; } #header .navbar-collapse{ width: auto; } #header .nav-link{ font-size: 13px; font-weight: bolder; padding-left: 0; padding-right: 0; color: var(--textcolor2); border-bottom: solid 3px transparent; } #header .nav-link:hover{ border-bottom: solid 3px var(--textcolor); } .fundo{ background-color: var(--bgcolor); } .data{ color: var(--secundaria); font-size: 23px; font-weight: bolder; border-bottom: solid 2px #f5f5f5; padding-bottom: 7px; } .redirecionamento{ color: var(--secundaria); font-weight: bolder; } .legenda{ color: black; font-weight: bolder; } .titulo{ color: var(--textcolor); font-size: 37px; font-weight: bolder; } .tituloBorda{ border-bottom: solid 3px var(--textcolor); padding-bottom: 6px; } .caixa{ border-radius: 0.5rem; background-color: white; } .textoRodape{ color: var(--textorodape); font-size: 15px; font-weight: 500; } .textoagronomia{ color: var(--agronomia); font-size: 20px; font-weight: bolder; margin-top: 30px; } .textobcc{ color: var(--bcc); font-size: 20px; font-weight: bolder; margin-top: 15px; } .textoeng{ color: var(--engalimentos); font-size: 20px; font-weight: bolder; margin-top: 15px; } .textovet{ color: var(--veterinaria); font-size: 20px; font-weight: bolder; margin-top: 15px; } .textozoo{ color: var(--zootec); font-size: 20px; font-weight: bolder; margin-top: 30px; } .textopedagogia{ color: var(--pedagogia); font-size: 20px; font-weight: bolder; margin-top: 30px; } .textoletras{ color: var(--letras); font-size: 20px; font-weight: bolder; margin-top: 15px; } .subtitulo{ color: var(--textcolor2); font-size: 15px; margin-top: 30px; } .subtitulo2{ color: var(--textcolor2); font-size: 13px; } .cabecalho{ background-color: var(--primaria); border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; } .corpo{ background-color: white; border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; } .tituloTabelas{ font-weight: bolder; font-size: 20px; color: white; } .botao{ background-color: var(--botao); border-radius: 00.5rem; color: white; font-weight: bolder; } .fundo2{ background-color: var(--bgcolor); padding-top: 90px; padding-bottom: 90px; } .tituloLista{ color: black; font-weight: bolder; font-size: 16px; } .destaqueLista{ color: black; font-weight: 700; font-size: 16px; } .link{ color: var(--secundaria); font-size: 13px; } .listagemLista{ border-bottom:solid 2px #f5f5f5; } .datinha{ color: var(--textorodape); font-size: 13px; font-weight: bolder; } .subtexto{ color: var(--textorodape); font-size: 13px; } .textoInput{ color: black; font-size: 14px; } .checkbox{ color: var(--textorodape); font-size: 13px; } .caixaDeTexto{ background-color: #f5f5f5; border-radius: 0.5rem; border: 1px solid transparent; } .botaoEntrar{ background-color: var(--secundaria); size: 100%; color: white; font-weight: bolder; font-size: 17px; border-radius: 0.5rem; } .tituloEntrada{ font-size: 30px; color: var(--primaria); font-weight: 700; } .textoEntrada{ font-size: 18px; color: var(--textcolor); font-weight: bolder; } .modalFundo{ background-color: white; border-radius: 0.5rem; border: solid 1px transparent; } .tituloModal{ color: var(--secundaria); font-weight: bolder; font-size: 23px; border-bottom: solid 2px var(--secundaria); } .campoDeTexto{ background-color: #f5f5f5; border-radius: 00.5rem; border: 0px; } .textoModal{ color: var(--textcolor); font-weight: bolder; font-size: 15px; } .botaoVerde{ background-color: var(--primaria); border-radius: 00.5rem; color: white; font-weight: bolder } .form-label { font-weight: bolder; } /* X CUSTOM 2 X */ /*TELA DE VIZUALIZAR DOCUMENTOS*/ .cabecalhoAzul{ background-color: var(--terciaria); border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; } .tituloDocumento{ color: black; font-weight: 700; font-size: 15px; } .textoDocumento{ color: var(--textcolor); font-weight: 600; font-size: 15px; } .tituloTipoDoc{ color: var(--terciaria); font-weight: 600; font-size: 24px; } .nomeDocumento{ color: var(--textcolor); font-weight: 600; font-size: 15px; } /**/ .icon_order_table { padding: 3px; width: 25px; border-radius: 50px; transform: rotate(90deg); } .icon-email-candidato { background-color: var(--terciaria); padding-right: 10px; padding-left: 10px; border-radius: 00.5rem; height: 35px; cursor: pointer; margin-top: 8px; transition: 0.3s; } .icon-email-candidato:hover { transition: 0.3s; background-color: var(--secundaria); } .cabecalhoCurso{ background-color: var(--veterinaria); border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; } /*TELA DE ENVIO DE DOCUMENTOS*/ .cabecalhoCurso{ background-color: var(--veterinaria); /*COR DO CURSO*/ border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; } .tituloEnvio{ color: black; font-weight: 600; font-size: 18px; } .subtexto{ color: var(--textcolor); font-size: 14px; text-align: justify; } ul.timeline{ list-style-type: none; position: relative; } ul.timeline:before{ content: ' '; background: #d4d9df; display: inline-block; position: absolute; left: 12px; width: 2px; height: 100%; z-index: 400; } ul.timeline > li:before{ content: ' '; background: white; display: inline-block; position: absolute; border-radius: 50%; border: 3px solid var(--secundaria); left: 0px; width: 25px; height: 25px; z-index: 400; } .subtexto2{ color: var(--textcolor2); font-size: 13px; text-align: justify; } .subtexto3{ color: var(--textcolor); font-size: 15px; text-align: justify; } /*TELA DE VIZUALIZAR DOCUMENTOS*/ .cabecalhoAzul{ background-color: var(--terciaria); border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; } .tituloDocumento{ color: black; font-weight: 700; font-size: 15px; } .textoDocumento{ color: var(--textcolor); font-weight: 600; font-size: 15px; } .tituloTipoDoc{ color: var(--terciaria); font-weight: 600; font-size: 24px; } .nomeDocumento{ color: var(--textcolor); font-weight: 600; font-size: 15px; } /**/ .caixaCurso{ border-radius: 0.5rem; background-color: var(--veterinaria); /*COR DO CURSO*/ } .textoChamada{ color: white; font-size: 20px; font-weight: 600; } .check-mark::after{ border-color: black; } label { font-weight: bolder; }
0.384219
0.11742
body { background-color: #EFEFEF; font: 12px 'arial'; line-height: 16px; } * { margin: 0px; padding: 0px; } a { text-decoration: none; color: blue; } .sprite { background: url('img/sprite.png') no-repeat; } a:hover { text-decoration: underline; } .wrapper { width: 1000px; margin: 0 auto; } .leftBox { border: 1px solid #CDCDCD; border-radius: 5px; box-shadow: 1px 1px 10px #CDCDCD; width: 42.5%; height: 350px; overflow: hidden; float: left; margin-top: 20px; margin-left: 50px; background-color: #F9F9F9; } .lefttopBox { border-bottom: 1px solid #CDCDCD; color: #757575; float: left; background-color: #ffffff; padding-bottom: 40px; width: 100%; } .balanceDue { color: #757575; margin-top: 20px; text-align: center; } .payNowButton { background: #fcce44; /* Old browsers */ background: -moz-linear-gradient(top, #fcce44 20%, #fcd255 42%, #febf01 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(20%,#fcce44), color-stop(42%,#fcd255), color-stop(100%,#febf01)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fcce44 20%,#fcd255 42%,#febf01 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #fcce44 20%,#fcd255 42%,#febf01 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #fcce44 20%,#fcd255 42%,#febf01 100%); /* IE10+ */ background: linear-gradient(to bottom, #fcce44 20%,#fcd255 42%,#febf01 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcce44', endColorstr='#febf01',GradientType=0 ); /* IE6-9 */ padding: 12px 50px; border: 1px solid #c99d00; border-radius: 4px; box-shadow: 1px 1px 1px #cacaca; margin-top: 20px; margin-bottom: 12px; width: 100%; } .billPayment { float: left; width: 45%; margin-right: 10px; text-align: center; } .bill { margin-top: 35px; margin-bottom: 22px; color: #3E3730; font-size: 40px; } .autoPayment { float: left; width: 45%; text-align: center; } .leftbottomBox { background-color: #F9F9F9; color: #737375; padding: 5px; clear: both; } .leftbottomBox h5 { border-bottom: 1px dashed #c1c1c1; padding: 12px 0px 12px 12px; font-size: 13px; clear: both; } .leftbottomBox ul { list-style: none; } .leftbottomBox ul li { margin-top: 5px; padding-bottom: 4px; border-bottom: 1px solid #c1c1c1; } .leftbottomBox ul li:last-child { border-bottom: none; } .leftbottomBox ul li .date { font-size: 10px; padding: 0px 0px 0px 12px; } .leftbottomBox ul li .text { font-size: 12px; color: blue; padding: 0px 0px 0px 12px; } .rightBox { border: 1px solid #CDCDCD; border-radius: 5px; box-shadow: 1px 1px 10px #CDCDCD; width: 42.5%; height: 350px; float: left; margin-top: 20px; margin-left: 50px; background-color: #FEFEFE; font-family: 'arial'; margin-bottom: 20px; } .rightBox .header { height: 23px; background-color: #F9F9F9; border-radius: 5px 5px 0px 0px; border-bottom: 1px solid #CDCDCD; padding: 15px; } .tickMark { background-position: -100px -250px; width: 22px; height: 23px; display: inline-block; float: left; } .rightBox .header h5 { color: #A7C725; float: left; font-size: 14px; margin-left: 10px; margin-top: 4px; } .rightBox .header a { float: right; margin-top: 5px; } .rightBody { padding: 20px; padding-top: 40px; } .rightBody H2 { font-weight: normal; font-size: 25px; margin-bottom: 30px; } .rightBody H2 sup { font-size: 15px; } .upgrade { border-right: 1px solid black; padding: 0px 5px 0px 0px; } .rightBody ul { list-style: none; margin-top: 40px; } .rightBody ul li { padding-top: 15px; border-top: 1px dashed #c1c1c1; padding-bottom: 15px; } .bottombox { clear: both; background-color: #FFFFFF; height: 200px; width: 100%; } .greyband { display: inline-block; margin: 7px; width: 98%; height: 75px; background-color: #EFEFEF; } .bluebuttons { float: left; width: 140px; text-align: center; } .bluegradbox { height: 80px; width: 80px; background: #00b7ea; /* Old browsers */ background: -moz-linear-gradient(-45deg, #00b7ea 0%, #0082b2 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#00b7ea), color-stop(100%,#0082b2)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(-45deg, #00b7ea 0%,#0082b2 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(-45deg, #00b7ea 0%,#0082b2 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(-45deg, #00b7ea 0%,#0082b2 100%); /* IE10+ */ background: linear-gradient(135deg, #00b7ea 0%,#0082b2 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b7ea', endColorstr='#0082b2',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */ border: 5px solid white; border-radius: 15px; box-shadow: 1px 1px 10px #CDCDCD; margin: 25px 25px 10px 25px; float: left; text-align: center; } .bluebuttons strong { width: 120px; display: inline-block; } .greyband .bluebuttons .bluegradbox img { margin-top: 22px; display: inline-block; } .setup { background-position: -50px -154px; width: 50px; height: 40px; } .manage { background-position: -59px -206px; width: 31px; height: 35px; } .check { background-position: -55px -304px; width: 39px; height: 30px; } .move { background-position: -54px -1057px; width: 41px; height: 34px; } .get { background-position: -60px -502px; width: 29px; height: 44px; } .add { background-position: -56px -404px; width: 38px; height: 39px; } .users { background-position: -61px -254px; width: 28px; height: 37px; } @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) { .wrapper { width: 750px; } .leftBox, .rightBox { margin-top: 30px; width: 87%; } .bottombox { width: 87%; overflow-x: auto; margin-left: 50px; } }
comcast/comcast_style.css
body { background-color: #EFEFEF; font: 12px 'arial'; line-height: 16px; } * { margin: 0px; padding: 0px; } a { text-decoration: none; color: blue; } .sprite { background: url('img/sprite.png') no-repeat; } a:hover { text-decoration: underline; } .wrapper { width: 1000px; margin: 0 auto; } .leftBox { border: 1px solid #CDCDCD; border-radius: 5px; box-shadow: 1px 1px 10px #CDCDCD; width: 42.5%; height: 350px; overflow: hidden; float: left; margin-top: 20px; margin-left: 50px; background-color: #F9F9F9; } .lefttopBox { border-bottom: 1px solid #CDCDCD; color: #757575; float: left; background-color: #ffffff; padding-bottom: 40px; width: 100%; } .balanceDue { color: #757575; margin-top: 20px; text-align: center; } .payNowButton { background: #fcce44; /* Old browsers */ background: -moz-linear-gradient(top, #fcce44 20%, #fcd255 42%, #febf01 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(20%,#fcce44), color-stop(42%,#fcd255), color-stop(100%,#febf01)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fcce44 20%,#fcd255 42%,#febf01 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #fcce44 20%,#fcd255 42%,#febf01 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #fcce44 20%,#fcd255 42%,#febf01 100%); /* IE10+ */ background: linear-gradient(to bottom, #fcce44 20%,#fcd255 42%,#febf01 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcce44', endColorstr='#febf01',GradientType=0 ); /* IE6-9 */ padding: 12px 50px; border: 1px solid #c99d00; border-radius: 4px; box-shadow: 1px 1px 1px #cacaca; margin-top: 20px; margin-bottom: 12px; width: 100%; } .billPayment { float: left; width: 45%; margin-right: 10px; text-align: center; } .bill { margin-top: 35px; margin-bottom: 22px; color: #3E3730; font-size: 40px; } .autoPayment { float: left; width: 45%; text-align: center; } .leftbottomBox { background-color: #F9F9F9; color: #737375; padding: 5px; clear: both; } .leftbottomBox h5 { border-bottom: 1px dashed #c1c1c1; padding: 12px 0px 12px 12px; font-size: 13px; clear: both; } .leftbottomBox ul { list-style: none; } .leftbottomBox ul li { margin-top: 5px; padding-bottom: 4px; border-bottom: 1px solid #c1c1c1; } .leftbottomBox ul li:last-child { border-bottom: none; } .leftbottomBox ul li .date { font-size: 10px; padding: 0px 0px 0px 12px; } .leftbottomBox ul li .text { font-size: 12px; color: blue; padding: 0px 0px 0px 12px; } .rightBox { border: 1px solid #CDCDCD; border-radius: 5px; box-shadow: 1px 1px 10px #CDCDCD; width: 42.5%; height: 350px; float: left; margin-top: 20px; margin-left: 50px; background-color: #FEFEFE; font-family: 'arial'; margin-bottom: 20px; } .rightBox .header { height: 23px; background-color: #F9F9F9; border-radius: 5px 5px 0px 0px; border-bottom: 1px solid #CDCDCD; padding: 15px; } .tickMark { background-position: -100px -250px; width: 22px; height: 23px; display: inline-block; float: left; } .rightBox .header h5 { color: #A7C725; float: left; font-size: 14px; margin-left: 10px; margin-top: 4px; } .rightBox .header a { float: right; margin-top: 5px; } .rightBody { padding: 20px; padding-top: 40px; } .rightBody H2 { font-weight: normal; font-size: 25px; margin-bottom: 30px; } .rightBody H2 sup { font-size: 15px; } .upgrade { border-right: 1px solid black; padding: 0px 5px 0px 0px; } .rightBody ul { list-style: none; margin-top: 40px; } .rightBody ul li { padding-top: 15px; border-top: 1px dashed #c1c1c1; padding-bottom: 15px; } .bottombox { clear: both; background-color: #FFFFFF; height: 200px; width: 100%; } .greyband { display: inline-block; margin: 7px; width: 98%; height: 75px; background-color: #EFEFEF; } .bluebuttons { float: left; width: 140px; text-align: center; } .bluegradbox { height: 80px; width: 80px; background: #00b7ea; /* Old browsers */ background: -moz-linear-gradient(-45deg, #00b7ea 0%, #0082b2 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#00b7ea), color-stop(100%,#0082b2)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(-45deg, #00b7ea 0%,#0082b2 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(-45deg, #00b7ea 0%,#0082b2 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(-45deg, #00b7ea 0%,#0082b2 100%); /* IE10+ */ background: linear-gradient(135deg, #00b7ea 0%,#0082b2 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b7ea', endColorstr='#0082b2',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */ border: 5px solid white; border-radius: 15px; box-shadow: 1px 1px 10px #CDCDCD; margin: 25px 25px 10px 25px; float: left; text-align: center; } .bluebuttons strong { width: 120px; display: inline-block; } .greyband .bluebuttons .bluegradbox img { margin-top: 22px; display: inline-block; } .setup { background-position: -50px -154px; width: 50px; height: 40px; } .manage { background-position: -59px -206px; width: 31px; height: 35px; } .check { background-position: -55px -304px; width: 39px; height: 30px; } .move { background-position: -54px -1057px; width: 41px; height: 34px; } .get { background-position: -60px -502px; width: 29px; height: 44px; } .add { background-position: -56px -404px; width: 38px; height: 39px; } .users { background-position: -61px -254px; width: 28px; height: 37px; } @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) { .wrapper { width: 750px; } .leftBox, .rightBox { margin-top: 30px; width: 87%; } .bottombox { width: 87%; overflow-x: auto; margin-left: 50px; } }
0.305697
0.100613
#content { height: 100%; } /** * Container */ .OnBoarding { font-family: Montserrat, sans-serif; background-image: url(../images/onboarding-bg.svg); background-repeat: no-repeat; background-position: center 30px; background-size: 840px 600px; min-height: 100%; &.-registering { background-image: none; background-color: #f5f6f7; } } /** * Components */ .OnBoardingHeader { padding: 30px; .-brand { display: inline-block; } .-nav { float: right; a { padding: 7px 20px 6px 20px; font-size: 10px; text-transform: uppercase; color: #aab0b3; letter-spacing: 1px; font-weight: bold; &:hover { opacity: .8; } } a:first-child { border: 2px solid #aab0b3; border-radius: 100px; margin-right: 10px; } a:nth-child(2) { color: #919699; font-size: 11px; } img { width: 24px; height: 24px; vertical-align: middle; margin-right: 10px; border-radius: 100%; overflow: hidden; } span { color: white; font-family: Lato; font-weight: bold; letter-spacing: .5px; vertical-align: middle; } } } .OnBoardingStepHeading { font-size: 28px; font-weight: bold; color: #494b4d; width: 100%; text-align: center; line-height: 1.2; font-weight: bold; padding: 0 20px; box-sizing: border-box; margin-top: 40px; strong { color: #919699; letter-spacing: 1px; } div:nth-child(2) { margin: 0 auto; margin-top: 15px; text-align: center; font-size: 15px; line-height: 1.8; color: #616466; font-family: Lato, sans-serif; font-weight: lighter; } } .OnBoardingStepButton { color: white; } /** * Step components */ .OnBoardingHero { margin-top: 160px; .-title { font-size: 33px; font-weight: bold; color: #494b4d; width: 600px; margin: 0 auto; text-align: center; line-height: 1.3; letter-spacing: -1px; strong { color: #46b0ed; } } .-subtitle { margin: 0 auto; margin-top: 25px; text-align: center; font-size: 21px; color: #616466; font-family: Montserratlight, sans-serif; font-weight: lighter; } .-button-container { height: 56px; border-radius: 100px; /*background-color: #75cc1f;*/ color: white; text-align: center; margin: 0 auto; margin-top: 80px; } .-requirements { font-family: Lato; color: #797d80; font-size: 12px; width: 280px; text-align: center; margin: 0 auto; margin-top: 20px; } } .OnBoardingStepConnectGithub { margin: 0 auto; margin-top: 220px; max-width: 768px; } .OnBoardingStepPickRepository { margin: 0 auto; max-width: 768px; max-width: 600px; padding-bottom: 40px; } .OnBoardingStepPickCoreContributors { margin: 0 auto; max-width: 768px; padding-bottom: 40px; } .OnBoardingStepCreate { padding-bottom: 40px; .OnBoardingStepCreate-form-container { max-width: 660px; margin: 0 auto; margin-top: 60px; .flex-column { /*margin-right: 20px;*/ padding: 0 20px; } .OnBoardingStepCreate-imagepicker-cont { padding-top: 32px; padding-top: 2rem; padding-bottom: 24px; padding-bottom: 1.75rem; } .OnBoardingStepCreate-label { font-family: Lato; font-weight: bold; font-size: 15px; color: #797d80; padding-bottom: 10px; } .OnBoardingStepCreate-tos { font-family: Lato; font-size: 15px; font-weight: bold; padding: 0 20px; .Checkbox, span a, span span { vertical-align: middle; } span { margin-left: 5px; color: #aab0b3; } } } } .OnBoardingStepThankYou { margin: 0 auto; max-width: 768px; text-align: center; img { margin-bottom: 30px; margin-top: 100px; } .ShareIcon { font-size: 36px; margin: 0 5px; } } .OnBoardingButton { font-family: Montserrat; outline: 0; background-color: #75cc1f; text-decoration: none; cursor: pointer; display: inline-block; line-height: 18px; height: auto; vertical-align: middle; -webkit-appearance: none; color: white; font-size: 16px; font-weight: bold; padding: 19.2px 32px; border-radius: 28px; text-transform: uppercase; min-width: 280px; box-sizing: border-box; letter-spacing: 1px; &:not(.disabled):hover { opacity: .8; } &.disabled { background: #dde1e4; cursor: default; } } /** * Tweaks for general purpose components */ .OnBoarding { .ImagePicker-container { width: 250px; min-height: 230px; height: 100%; .ImagePicker-label { font-weight: bold; font-family: Lato; font-size: 16px; line-height: 1.3; color: #797d80; width: 200px; } .ImagePicker-dot-list { bottom: 30px; li:after { width: 12px; height: 12px; } } .ImagePicker-loader > div { margin: 105px auto; font-size: 20px; } .ImagePicker-preview { width: 100px; height: 100px; background: none; img { width: 100px; height: 100px; } } .ImagePicker-next, .ImagePicker-prev { height: 18px; } } .Notification { position: relative; } } /** * Responsiveness */ @media (--large-viewport) { .OnBoardingHero { .-title { font-size: 44px; width: 840px; } } } @media (--medium-viewport) { .OnBoardingHeader { .-brand svg:nth-child(2) { display: none; } } .OnBoardingHero { margin-top: 140px; .-title { font-size: 22px; width: 380px; } .-subtitle { font-size: 16px; } } .OnBoardingStepHeading { font-size: 24px; div:nth-child(2) { width: auto; } } .OnBoardingStepCreate { .OnBoardingStepCreate-tos { margin-top: 10px; } .OnBoardingStepCreate-form-container { margin-top: 0; } } } @media (--small-viewport) { .-brand { svg:nth-child(2) { display: none; } } .OnBoardingHeader { .-nav { a { padding: 6px 14px 5px 14px; } a:nth-child(1) { margin-right: 5px; font-size: 7px; } a:nth-child(2) { font-size: 8px; } } } .OnBoardingHero { margin-top: 100px; .-title { font-size: 20px; width: auto; } .-subtitle { font-size: 14px; width: auto; } .-requirements { width: auto; } } .ContributorPickerItem input { font-size: 13px; } }
frontend/src/css/containers/OnBoarding.css
#content { height: 100%; } /** * Container */ .OnBoarding { font-family: Montserrat, sans-serif; background-image: url(../images/onboarding-bg.svg); background-repeat: no-repeat; background-position: center 30px; background-size: 840px 600px; min-height: 100%; &.-registering { background-image: none; background-color: #f5f6f7; } } /** * Components */ .OnBoardingHeader { padding: 30px; .-brand { display: inline-block; } .-nav { float: right; a { padding: 7px 20px 6px 20px; font-size: 10px; text-transform: uppercase; color: #aab0b3; letter-spacing: 1px; font-weight: bold; &:hover { opacity: .8; } } a:first-child { border: 2px solid #aab0b3; border-radius: 100px; margin-right: 10px; } a:nth-child(2) { color: #919699; font-size: 11px; } img { width: 24px; height: 24px; vertical-align: middle; margin-right: 10px; border-radius: 100%; overflow: hidden; } span { color: white; font-family: Lato; font-weight: bold; letter-spacing: .5px; vertical-align: middle; } } } .OnBoardingStepHeading { font-size: 28px; font-weight: bold; color: #494b4d; width: 100%; text-align: center; line-height: 1.2; font-weight: bold; padding: 0 20px; box-sizing: border-box; margin-top: 40px; strong { color: #919699; letter-spacing: 1px; } div:nth-child(2) { margin: 0 auto; margin-top: 15px; text-align: center; font-size: 15px; line-height: 1.8; color: #616466; font-family: Lato, sans-serif; font-weight: lighter; } } .OnBoardingStepButton { color: white; } /** * Step components */ .OnBoardingHero { margin-top: 160px; .-title { font-size: 33px; font-weight: bold; color: #494b4d; width: 600px; margin: 0 auto; text-align: center; line-height: 1.3; letter-spacing: -1px; strong { color: #46b0ed; } } .-subtitle { margin: 0 auto; margin-top: 25px; text-align: center; font-size: 21px; color: #616466; font-family: Montserratlight, sans-serif; font-weight: lighter; } .-button-container { height: 56px; border-radius: 100px; /*background-color: #75cc1f;*/ color: white; text-align: center; margin: 0 auto; margin-top: 80px; } .-requirements { font-family: Lato; color: #797d80; font-size: 12px; width: 280px; text-align: center; margin: 0 auto; margin-top: 20px; } } .OnBoardingStepConnectGithub { margin: 0 auto; margin-top: 220px; max-width: 768px; } .OnBoardingStepPickRepository { margin: 0 auto; max-width: 768px; max-width: 600px; padding-bottom: 40px; } .OnBoardingStepPickCoreContributors { margin: 0 auto; max-width: 768px; padding-bottom: 40px; } .OnBoardingStepCreate { padding-bottom: 40px; .OnBoardingStepCreate-form-container { max-width: 660px; margin: 0 auto; margin-top: 60px; .flex-column { /*margin-right: 20px;*/ padding: 0 20px; } .OnBoardingStepCreate-imagepicker-cont { padding-top: 32px; padding-top: 2rem; padding-bottom: 24px; padding-bottom: 1.75rem; } .OnBoardingStepCreate-label { font-family: Lato; font-weight: bold; font-size: 15px; color: #797d80; padding-bottom: 10px; } .OnBoardingStepCreate-tos { font-family: Lato; font-size: 15px; font-weight: bold; padding: 0 20px; .Checkbox, span a, span span { vertical-align: middle; } span { margin-left: 5px; color: #aab0b3; } } } } .OnBoardingStepThankYou { margin: 0 auto; max-width: 768px; text-align: center; img { margin-bottom: 30px; margin-top: 100px; } .ShareIcon { font-size: 36px; margin: 0 5px; } } .OnBoardingButton { font-family: Montserrat; outline: 0; background-color: #75cc1f; text-decoration: none; cursor: pointer; display: inline-block; line-height: 18px; height: auto; vertical-align: middle; -webkit-appearance: none; color: white; font-size: 16px; font-weight: bold; padding: 19.2px 32px; border-radius: 28px; text-transform: uppercase; min-width: 280px; box-sizing: border-box; letter-spacing: 1px; &:not(.disabled):hover { opacity: .8; } &.disabled { background: #dde1e4; cursor: default; } } /** * Tweaks for general purpose components */ .OnBoarding { .ImagePicker-container { width: 250px; min-height: 230px; height: 100%; .ImagePicker-label { font-weight: bold; font-family: Lato; font-size: 16px; line-height: 1.3; color: #797d80; width: 200px; } .ImagePicker-dot-list { bottom: 30px; li:after { width: 12px; height: 12px; } } .ImagePicker-loader > div { margin: 105px auto; font-size: 20px; } .ImagePicker-preview { width: 100px; height: 100px; background: none; img { width: 100px; height: 100px; } } .ImagePicker-next, .ImagePicker-prev { height: 18px; } } .Notification { position: relative; } } /** * Responsiveness */ @media (--large-viewport) { .OnBoardingHero { .-title { font-size: 44px; width: 840px; } } } @media (--medium-viewport) { .OnBoardingHeader { .-brand svg:nth-child(2) { display: none; } } .OnBoardingHero { margin-top: 140px; .-title { font-size: 22px; width: 380px; } .-subtitle { font-size: 16px; } } .OnBoardingStepHeading { font-size: 24px; div:nth-child(2) { width: auto; } } .OnBoardingStepCreate { .OnBoardingStepCreate-tos { margin-top: 10px; } .OnBoardingStepCreate-form-container { margin-top: 0; } } } @media (--small-viewport) { .-brand { svg:nth-child(2) { display: none; } } .OnBoardingHeader { .-nav { a { padding: 6px 14px 5px 14px; } a:nth-child(1) { margin-right: 5px; font-size: 7px; } a:nth-child(2) { font-size: 8px; } } } .OnBoardingHero { margin-top: 100px; .-title { font-size: 20px; width: auto; } .-subtitle { font-size: 14px; width: auto; } .-requirements { width: auto; } } .ContributorPickerItem input { font-size: 13px; } }
0.319758
0.08218