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 |
|---|---|---|---|---|
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
height: 100%;
}
li {
list-style: none;
}
a {
text-decoration: none;
opacity: 0.9;
}
a:hover {
opacity: 1;
}
/* Background Cover Image */
#container {
background: url(../images/bg-image.jpg);
height: 100%;
background-position: center;
background-size: cover;
position: relative;
color: #fff;
font-family: 'Rambla', arial, sans-serif;
}
/* Navigation Bar Styling Section */
.overlay {
height: 0;
width: 100%;
position: fixed;
z-index: 1;
left: 0;
top: 0;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0, 0.9);
overflow-y: hidden;
transition: 0.5s;
}
.overlay-content {
position: relative;
top: 25%;
width: 100%;
text-align: center;
margin-top: 30px;
}
.overlay a {
padding: 8px;
text-decoration: none;
font-size: 36px;
color: #818181;
display: block;
transition: 0.3s;
}
.overlay a:hover, .overlay a:focus {
color: #f1f1f1;
}
.overlay .closebtn {
position: absolute;
top: 20px;
right: 25px;
font-size: 60px;
z-index: 99;
}
#container span {
position: fixed;
top: 1%;
right: 3%;
font-size: 34px;
color: #000;
}
#container span:hover {
cursor: pointer;
}
/* Title and Caption Section Styling */
#title {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#title h1 a {
font-size: 43px;
font-weight: 700;
color: #000;
}
#title p {
text-align: center;
font-size: 30px;
font-weight: 700;
color: #333;
margin-top: 4px;
}
/* Social Section Styling */
#social {
position: absolute;
bottom: 2px;
left: 16px;
}
#social h1 {
font-size: 25px;
font-family: 'Rambla', arial, sans-serif;
font-weight: 400;
}
#social ul {
display: flex;
flex-direction: row;
justify-content: center;
margin: 5px 0 60px 0;
}
#social ul li {
font-size: 23px;
padding: 8px 9px;
}
#social ul li a i {
color: #fff;
}
#social ul li a i:hover {
opacity: 0.8;
}
/* Footer Text Section Styling */
.footer {
text-align: center;
position: absolute;
bottom: 0;
right: 0;
left: 0;
font-size: 15.5px;
font-family: arial, sans-serif;
margin: 10px auto 2px auto;
}
.footer a {
color: #fff;
opacity: 0.9;
}
.footer a:hover {
opacity: 1;
}
.fa-heart {
color: red;
}
.fa-code {
color: lightskyblue;
}
/* Responsive Styling Section */
/* Main */
@media screen and (max-height: 530px) {
#title {
top: 40%;
}
#title h1 a {
font-size: 35px;
}
#title p {
20px;
}
}
/* Navigation Bar Section */
@media screen and (max-height: 650px) {
.overlay a {font-size: 30px}
.overlay .closebtn {
font-size: 40px;
top: 15px;
right: 35px;
}
}
/* Title and Caption Section */
@media screen and (min-width: 480px) and (max-width: 840px) {
#title h1 a {
text-align: center;
font-size: 42px;
}
}
@media screen and (min-width: 841px) {
#title {
top: 40%;
}
#title h1 a {
text-align: center;
font-size: 55px;
}
#title p {
font-size: 40px;
}
}
/* Social Section */
@media screen and (min-width: 670px) {
#social {
left: 8%;
}
#social h1 {
opacity: 0.92;
font-size: 32px;
}
#social ul li {
font-size: 35px;
}
}
/* Footer Text Section */
@media screen and (min-width: 670px) {
.footer {
font-size: 21px;
}
}
/**----- Synopsis Page Styling -----**/
#synopsis-txt {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#synopsis-txt h3 {
color: #000;
font-size: 29px;
}
#synopsis-txt h5 {
font-size: 20px;
font-family: arial, sans-serif;
color: #222;
margin: 4px auto;
}
#synopsis-txt p {
font-size: 15px;
font-weight: 500;
line-height: 1;
color: #333;
background: #fff;
opacity: 0.7;
}
/* Synopsis Page Responsive Styling */
@media screen and (min-width: 560px) and (max-width: 1080px) {
#synopsis-txt h3 {
font-size: 37px;
}
#synopsis-txt h5 {
font-size: 30px;
color: #444;
}
#synopsis-txt p {
font-size: 19px;
color: #333;
background: #fff;
opacity: 0.7;
}
}
@media screen and (min-width: 1081px) {
#synopsis-txt h3 {
font-size: 52px;
}
#synopsis-txt h5 {
font-size: 39px;
}
#synopsis-txt p {
font-size: 27px;
color: #333;
background: #fff;
opacity: 0.7;
}
}
/**----- Trailer Page Styling -----**/
#trailer-vid {
text-align: center;
position: absolute;
top: 10%;
left: 0;
right: 0;
}
#trailer-vid h1 a {
color: #000;
font-size: 43px;
}
#trailer-vid p {
color: #333;
margin: 20px 0;
font-weight: bold;
font-family: arial, sans-serif;
}
/* Trailer Page Responsive Styling */
@media screen and (max-width: 890px) {
#trailer-vid {
position: absolute;
top: 12%;
}
#trailer-vid h1 a {
color: #000;
font-size: 29px;
}
#trailer-vid p {
color: #333;
margin: 10px 0;
font-weight: bold;
font-family: arial, sans-serif;
}
#trailer-vid iframe {
max-width: 100%;
}
} | Day-7/css/style.css | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
height: 100%;
}
li {
list-style: none;
}
a {
text-decoration: none;
opacity: 0.9;
}
a:hover {
opacity: 1;
}
/* Background Cover Image */
#container {
background: url(../images/bg-image.jpg);
height: 100%;
background-position: center;
background-size: cover;
position: relative;
color: #fff;
font-family: 'Rambla', arial, sans-serif;
}
/* Navigation Bar Styling Section */
.overlay {
height: 0;
width: 100%;
position: fixed;
z-index: 1;
left: 0;
top: 0;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0, 0.9);
overflow-y: hidden;
transition: 0.5s;
}
.overlay-content {
position: relative;
top: 25%;
width: 100%;
text-align: center;
margin-top: 30px;
}
.overlay a {
padding: 8px;
text-decoration: none;
font-size: 36px;
color: #818181;
display: block;
transition: 0.3s;
}
.overlay a:hover, .overlay a:focus {
color: #f1f1f1;
}
.overlay .closebtn {
position: absolute;
top: 20px;
right: 25px;
font-size: 60px;
z-index: 99;
}
#container span {
position: fixed;
top: 1%;
right: 3%;
font-size: 34px;
color: #000;
}
#container span:hover {
cursor: pointer;
}
/* Title and Caption Section Styling */
#title {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#title h1 a {
font-size: 43px;
font-weight: 700;
color: #000;
}
#title p {
text-align: center;
font-size: 30px;
font-weight: 700;
color: #333;
margin-top: 4px;
}
/* Social Section Styling */
#social {
position: absolute;
bottom: 2px;
left: 16px;
}
#social h1 {
font-size: 25px;
font-family: 'Rambla', arial, sans-serif;
font-weight: 400;
}
#social ul {
display: flex;
flex-direction: row;
justify-content: center;
margin: 5px 0 60px 0;
}
#social ul li {
font-size: 23px;
padding: 8px 9px;
}
#social ul li a i {
color: #fff;
}
#social ul li a i:hover {
opacity: 0.8;
}
/* Footer Text Section Styling */
.footer {
text-align: center;
position: absolute;
bottom: 0;
right: 0;
left: 0;
font-size: 15.5px;
font-family: arial, sans-serif;
margin: 10px auto 2px auto;
}
.footer a {
color: #fff;
opacity: 0.9;
}
.footer a:hover {
opacity: 1;
}
.fa-heart {
color: red;
}
.fa-code {
color: lightskyblue;
}
/* Responsive Styling Section */
/* Main */
@media screen and (max-height: 530px) {
#title {
top: 40%;
}
#title h1 a {
font-size: 35px;
}
#title p {
20px;
}
}
/* Navigation Bar Section */
@media screen and (max-height: 650px) {
.overlay a {font-size: 30px}
.overlay .closebtn {
font-size: 40px;
top: 15px;
right: 35px;
}
}
/* Title and Caption Section */
@media screen and (min-width: 480px) and (max-width: 840px) {
#title h1 a {
text-align: center;
font-size: 42px;
}
}
@media screen and (min-width: 841px) {
#title {
top: 40%;
}
#title h1 a {
text-align: center;
font-size: 55px;
}
#title p {
font-size: 40px;
}
}
/* Social Section */
@media screen and (min-width: 670px) {
#social {
left: 8%;
}
#social h1 {
opacity: 0.92;
font-size: 32px;
}
#social ul li {
font-size: 35px;
}
}
/* Footer Text Section */
@media screen and (min-width: 670px) {
.footer {
font-size: 21px;
}
}
/**----- Synopsis Page Styling -----**/
#synopsis-txt {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#synopsis-txt h3 {
color: #000;
font-size: 29px;
}
#synopsis-txt h5 {
font-size: 20px;
font-family: arial, sans-serif;
color: #222;
margin: 4px auto;
}
#synopsis-txt p {
font-size: 15px;
font-weight: 500;
line-height: 1;
color: #333;
background: #fff;
opacity: 0.7;
}
/* Synopsis Page Responsive Styling */
@media screen and (min-width: 560px) and (max-width: 1080px) {
#synopsis-txt h3 {
font-size: 37px;
}
#synopsis-txt h5 {
font-size: 30px;
color: #444;
}
#synopsis-txt p {
font-size: 19px;
color: #333;
background: #fff;
opacity: 0.7;
}
}
@media screen and (min-width: 1081px) {
#synopsis-txt h3 {
font-size: 52px;
}
#synopsis-txt h5 {
font-size: 39px;
}
#synopsis-txt p {
font-size: 27px;
color: #333;
background: #fff;
opacity: 0.7;
}
}
/**----- Trailer Page Styling -----**/
#trailer-vid {
text-align: center;
position: absolute;
top: 10%;
left: 0;
right: 0;
}
#trailer-vid h1 a {
color: #000;
font-size: 43px;
}
#trailer-vid p {
color: #333;
margin: 20px 0;
font-weight: bold;
font-family: arial, sans-serif;
}
/* Trailer Page Responsive Styling */
@media screen and (max-width: 890px) {
#trailer-vid {
position: absolute;
top: 12%;
}
#trailer-vid h1 a {
color: #000;
font-size: 29px;
}
#trailer-vid p {
color: #333;
margin: 10px 0;
font-weight: bold;
font-family: arial, sans-serif;
}
#trailer-vid iframe {
max-width: 100%;
}
} | 0.408513 | 0.104067 |
.appHeader {
display: flex;
position: fixed;
justify-content: space-around;
align-items: center;
width: 100vw;
padding: 0 15px;
z-index: 999;
background: #f8f5f3 !important;
}
.Header {
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
height: 110px;
/* margin-left: 170px; */
object-fit: contain;
/* margin-right: 75px; */
cursor: pointer;
}
.link {
margin-left: 19px;
width: 152px;
font-size: 16px;
line-height: 19px;
color: #1f1155;
mix-blend-mode: normal;
text-decoration: none;
white-space: nowrap;
cursor: pointer;
font-family: "Rubik", sans-serif;
}
/* .appHeader__nav {
margin-right: 100px;
} */
.linkRight {
margin-right: 27px !important;
color: #1f1155;
mix-blend-mode: normal;
text-decoration: none;
white-space: nowrap;
}
.btn {
background-color: #1f1155 !important;
width: 125px !important;
height: 48px !important;
outline: 0 !important;
color: white !important;
border: none !important;
border-radius: 5px !important;
}
.btnSideL {
margin: 0 auto !important;
width: 150px !important;
height: 48px !important;
outline: 0 !important;
border: none !important;
border-radius: 5px !important;
}
.btnSide {
background-color: #1f1155 !important;
margin: 0 auto !important;
width: 150px !important;
height: 48px !important;
outline: 0 !important;
color: white !important;
border: none !important;
border-radius: 5px !important;
}
.btnLink {
text-decoration: none;
}
.appHeader__right {
/* margin-right: 200px; */
display: flex;
align-items: center;
}
.drawerMenu {
display: none !important;
}
@media screen and (max-width: 1024px) {
.drawerMenu {
display: flex !important;
}
.appHeader__nav {
display: none !important;
}
.appHeader__right {
display: none !important;
}
.appHeader {
display: flex !important;
justify-content: space-around !important;
align-items: center !important;
padding: 10px !important;
}
.logo {
height: 70px;
margin-left: 12px;
object-fit: contain;
}
}
.listItems {
margin-top: 40px !important;
}
.sideNav_link {
padding: 20px !important;
} | src/components/AppHeader/App.css | .appHeader {
display: flex;
position: fixed;
justify-content: space-around;
align-items: center;
width: 100vw;
padding: 0 15px;
z-index: 999;
background: #f8f5f3 !important;
}
.Header {
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
height: 110px;
/* margin-left: 170px; */
object-fit: contain;
/* margin-right: 75px; */
cursor: pointer;
}
.link {
margin-left: 19px;
width: 152px;
font-size: 16px;
line-height: 19px;
color: #1f1155;
mix-blend-mode: normal;
text-decoration: none;
white-space: nowrap;
cursor: pointer;
font-family: "Rubik", sans-serif;
}
/* .appHeader__nav {
margin-right: 100px;
} */
.linkRight {
margin-right: 27px !important;
color: #1f1155;
mix-blend-mode: normal;
text-decoration: none;
white-space: nowrap;
}
.btn {
background-color: #1f1155 !important;
width: 125px !important;
height: 48px !important;
outline: 0 !important;
color: white !important;
border: none !important;
border-radius: 5px !important;
}
.btnSideL {
margin: 0 auto !important;
width: 150px !important;
height: 48px !important;
outline: 0 !important;
border: none !important;
border-radius: 5px !important;
}
.btnSide {
background-color: #1f1155 !important;
margin: 0 auto !important;
width: 150px !important;
height: 48px !important;
outline: 0 !important;
color: white !important;
border: none !important;
border-radius: 5px !important;
}
.btnLink {
text-decoration: none;
}
.appHeader__right {
/* margin-right: 200px; */
display: flex;
align-items: center;
}
.drawerMenu {
display: none !important;
}
@media screen and (max-width: 1024px) {
.drawerMenu {
display: flex !important;
}
.appHeader__nav {
display: none !important;
}
.appHeader__right {
display: none !important;
}
.appHeader {
display: flex !important;
justify-content: space-around !important;
align-items: center !important;
padding: 10px !important;
}
.logo {
height: 70px;
margin-left: 12px;
object-fit: contain;
}
}
.listItems {
margin-top: 40px !important;
}
.sideNav_link {
padding: 20px !important;
} | 0.235196 | 0.053034 |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Lexend+Deca:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.main-container{
min-height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
background-color: hsl(233, 47%, 7%);
}
.container{
max-width: 1120px;
height: 450px;
margin: auto;
display: flex;
flex-direction: row;
border-radius: 10px;
}
.left-part{
width: 50%;
background-color: #1C1938;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
padding: 4.5rem;
}
.right-part{
background: #a25ed0;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
overflow: hidden;
}
.right-part img{
width: max-content;
height: 450px;
mix-blend-mode: multiply;
}
.left-part h1{
font-size: 2.2rem;
color: #FFFFFF;
font-family: 'Inter', sans-serif;
margin-bottom: 1.8rem;
letter-spacing: .2px;
}
span{
color: hsl(277, 64%, 61%);
}
.left-part p{
color: hsla(0, 0%, 100%, 0.75);
font-family: 'Lexend Deca', sans-serif;
font-weight: 300;
}
.left-part-word-container p{
line-height: 1.5rem;
margin-bottom: 4.3rem;
font-size: 1rem !important;
}
.left-part-number-section{
display: flex;
}
.number h2{
color: #fff;
font-family: 'Inter', sans-serif;
font-size: 1.5rem;
}
.number p{
text-transform: uppercase;
font-size: 0.8rem;
}
.number:not(:last-child){
margin-right: 4rem;
}
.number h2{
margin-bottom: 0.4rem;
}
@media (max-width: 1160px) {
.container{
display: flex;
flex-direction: column-reverse;
width: 450px;
height: 1120px;
margin: 25px;
}
.right-part{
border-top-left-radius: 10px;
border-bottom-right-radius: 0px;
height: 450px;
}
.left-part{
min-width: 450px;
border-top-left-radius: 0px;
border-bottom-right-radius: 10px;
padding: 3.5rem;
text-align: center;
}
.left-part-number-section{
flex-direction: column;
align-items: center;
}
.number:not(:last-child){
margin-right: 0;
margin-bottom: 2rem;
}
}
@media (max-width: 530px) {
.container{
width: 400px;
}
.left-part{
min-width: 400px;
}
.left-part h1{
font-size: 1.8rem;
}
}
@media (max-width: 460px) {
.container{
width: 360px;
}
.left-part{
min-width: 360px;
}
.left-part p{
font-size: 0.9rem !important;
}
}
@media (max-width: 400px) {
.container{
width: 300px;
}
.left-part{
min-width: 300px;
}
.left-part p{
font-size: 0.85rem !important;
}
}
@media (max-width: 340px) {
.container{
width: 260px;
}
.left-part{
min-width: 260px;
}
} | style/style.css | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Lexend+Deca:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.main-container{
min-height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
background-color: hsl(233, 47%, 7%);
}
.container{
max-width: 1120px;
height: 450px;
margin: auto;
display: flex;
flex-direction: row;
border-radius: 10px;
}
.left-part{
width: 50%;
background-color: #1C1938;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
padding: 4.5rem;
}
.right-part{
background: #a25ed0;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
overflow: hidden;
}
.right-part img{
width: max-content;
height: 450px;
mix-blend-mode: multiply;
}
.left-part h1{
font-size: 2.2rem;
color: #FFFFFF;
font-family: 'Inter', sans-serif;
margin-bottom: 1.8rem;
letter-spacing: .2px;
}
span{
color: hsl(277, 64%, 61%);
}
.left-part p{
color: hsla(0, 0%, 100%, 0.75);
font-family: 'Lexend Deca', sans-serif;
font-weight: 300;
}
.left-part-word-container p{
line-height: 1.5rem;
margin-bottom: 4.3rem;
font-size: 1rem !important;
}
.left-part-number-section{
display: flex;
}
.number h2{
color: #fff;
font-family: 'Inter', sans-serif;
font-size: 1.5rem;
}
.number p{
text-transform: uppercase;
font-size: 0.8rem;
}
.number:not(:last-child){
margin-right: 4rem;
}
.number h2{
margin-bottom: 0.4rem;
}
@media (max-width: 1160px) {
.container{
display: flex;
flex-direction: column-reverse;
width: 450px;
height: 1120px;
margin: 25px;
}
.right-part{
border-top-left-radius: 10px;
border-bottom-right-radius: 0px;
height: 450px;
}
.left-part{
min-width: 450px;
border-top-left-radius: 0px;
border-bottom-right-radius: 10px;
padding: 3.5rem;
text-align: center;
}
.left-part-number-section{
flex-direction: column;
align-items: center;
}
.number:not(:last-child){
margin-right: 0;
margin-bottom: 2rem;
}
}
@media (max-width: 530px) {
.container{
width: 400px;
}
.left-part{
min-width: 400px;
}
.left-part h1{
font-size: 1.8rem;
}
}
@media (max-width: 460px) {
.container{
width: 360px;
}
.left-part{
min-width: 360px;
}
.left-part p{
font-size: 0.9rem !important;
}
}
@media (max-width: 400px) {
.container{
width: 300px;
}
.left-part{
min-width: 300px;
}
.left-part p{
font-size: 0.85rem !important;
}
}
@media (max-width: 340px) {
.container{
width: 260px;
}
.left-part{
min-width: 260px;
}
} | 0.473414 | 0.087916 |
@import url('https://fonts.googleapis.com/css?family=Fira+Code&display=swap&subset=latin-ext');
html,
body {
margin: 0;
padding: 0;
height: 100%;
min-height: 100%;
font-size: 16px;
font-family: 'Fira Code', Consolas, sans-serif, 'PingFang SC',
'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
text-decoration: none;
color: #4183c4;
}
.box-card {
overflow-x: auto;
}
.el-input.el-input--small>input {
padding-left: 0.5em !important;
}
.stream .el-card__body, .box-card .el-card__body {
box-sizing: border-box;
max-height: 475px;
overflow: auto;
}
.stream .el-button, .el-input__inner, .el-button {
font-family: 'Fira Code', Consolas, sans-serif, 'PingFang SC',
'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial;
}
.no-select {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.full-height {
height: 100%;
}
.d-block {
display: block;
}
.d-inline-block {
display: inline-block;
}
.d-hide {
display: none;
}
.d-flex {
display: flex;
}
.justify-center {
justify-content: center;
}
.justify-space-between {
justify-content: space-between;
}
.align-center {
align-items: center;
}
::-webkit-selection {
background-color: #cce2ff;
}
::-moz-selection {
background-color: #cce2ff;
}
::selection {
background-color: #cce2ff;
}
input::-webkit-selection,
textarea::-webkit-selection {
background-color: rgba(100, 100, 100, 0.4);
color: rgba(0, 0, 0, 0.87);
}
input::-moz-selection,
textarea::-moz-selection {
background-color: rgba(100, 100, 100, 0.4);
color: rgba(0, 0, 0, 0.87);
}
input::selection,
textarea::selection {
background-color: rgba(100, 100, 100, 0.4);
color: rgba(0, 0, 0, 0.87);
}
::-webkit-scrollbar {
width: 0.4rem;
height: 0.4rem;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(0, 0, 0, 0.26);
} | src/assets/common.css | @import url('https://fonts.googleapis.com/css?family=Fira+Code&display=swap&subset=latin-ext');
html,
body {
margin: 0;
padding: 0;
height: 100%;
min-height: 100%;
font-size: 16px;
font-family: 'Fira Code', Consolas, sans-serif, 'PingFang SC',
'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
text-decoration: none;
color: #4183c4;
}
.box-card {
overflow-x: auto;
}
.el-input.el-input--small>input {
padding-left: 0.5em !important;
}
.stream .el-card__body, .box-card .el-card__body {
box-sizing: border-box;
max-height: 475px;
overflow: auto;
}
.stream .el-button, .el-input__inner, .el-button {
font-family: 'Fira Code', Consolas, sans-serif, 'PingFang SC',
'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial;
}
.no-select {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.full-height {
height: 100%;
}
.d-block {
display: block;
}
.d-inline-block {
display: inline-block;
}
.d-hide {
display: none;
}
.d-flex {
display: flex;
}
.justify-center {
justify-content: center;
}
.justify-space-between {
justify-content: space-between;
}
.align-center {
align-items: center;
}
::-webkit-selection {
background-color: #cce2ff;
}
::-moz-selection {
background-color: #cce2ff;
}
::selection {
background-color: #cce2ff;
}
input::-webkit-selection,
textarea::-webkit-selection {
background-color: rgba(100, 100, 100, 0.4);
color: rgba(0, 0, 0, 0.87);
}
input::-moz-selection,
textarea::-moz-selection {
background-color: rgba(100, 100, 100, 0.4);
color: rgba(0, 0, 0, 0.87);
}
input::selection,
textarea::selection {
background-color: rgba(100, 100, 100, 0.4);
color: rgba(0, 0, 0, 0.87);
}
::-webkit-scrollbar {
width: 0.4rem;
height: 0.4rem;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(0, 0, 0, 0.26);
} | 0.309545 | 0.058669 |
body {
font-family: sans-serif;
font-size: 10pt;
background-color: white;
}
hr {
margin-top: 10px;
margin-bottom: 10px;
margin-left: 27px;
margin-right: 27px;
}
.form-inline select.form-control {
font-size: small;
padding: 3px 6px;
height: 2em;
max-width: 15em;
margin-right: 2px;
margin-left: 2px;
}
.searchtextinput{
padding-bottom: 0px;
padding-top: 3px;
padding-left: 0px;
margin-left: 2px;
margin-right: 5px;
height: 2.2em;
max-width: 15em;
resize: none;
overflow: auto;
vertical-align: middle;
border-radius: 6px;
border-color: #E6F3FF !important;
border-width: 2px !important;
background-color: white !important;
}
.searchtextinput_disabled{
color: silver !important;
background-color: whitesmoke !important;;
}
.show-nodes-button{
margin-left: 2px !important;
margin-right: 2px !important;
margin-bottom: 0px !important;
margin-top: 0px !important;
padding-left: 4px !important;
padding-right: 3px !important;
padding-bottom: 0px !important;
padding-top: 3px !important;
background-color: whitesmoke;
border-color: silver;
}
.show-nodes-button-selected{
background-color: #E6F3FF !important;
}
.search-input {
font-size: small;
padding: 1px 6px;
height: 1.5em;
margin-left: 2px;
}
.search-input_hidden{
visibility: hidden;
width: 1em;
}
.search-input_terms{
width: 7em !important;
}
.search-input_topics{
width: 7em;
}
.search-input-text{
width: 30em;
}
.search-input-themes{
width: 13em;
}
.search-clear {
position: absolute;
right: 5px;
color: lightgrey;
top: 3px;
bottom: 3px;
font-size: 14px;
cursor: pointer;
}
.header-button {
line-height: 2.2em;
padding-left: 11px !important;
padding-right: 11px !important;
padding-top: 5px !important;
padding-bottom: 1px !important;
border-color: #E6F3FF !important;
border-width: 2px !important;
margin-right: 0px;
margin-left: 0px;
border-radius: 6px !important;
}
.header-button.disabled{
color: silver !important;
}
.right-button{
margin-right: 10px !important;
}
.left-button{
margin-left:10px !important;
}
.dataset-choices.disabled{
color: silver !important;
}
#newTheme {
margin-right: 6px;
}
#newModel {
margin-right: 6px;
}
/* noUi entries below have to do with sliders; if no sliders are used in this project, we could remove them */
.noUi-horizontal .noUi-handle {
width: 18px;
left: -9px;
}
.noUi-handle:after, .noUi-handle:before {
left: 6px;
}
.noUi-handle:after {
left: 9px;
}
.noUi-handle, .noUi-dragable {
cursor: ew-resize;
}
.bottom-margin {
margin-bottom: 10px;
}
.small-bottom-margin {
margin-bottom: 5px;
}
.no-bottom-margin {
margin-bottom: 0px;
}
.top-margin {
margin-top: 10px;
}
.small-top-margin {
margin-top: 5px;
}
.right-margin {
margin-right: 90px;
}
.small-right-margin {
margin-right: 5px;
}
.large-right-margin {
margin-right: 15px;
}
.left-margin {
margin-left: 10px;
}
.small-left-margin {
margin-left: 5px;
}
.large-left-margin {
margin-left: 15px;
}
.large-top-margin {
margin-top: 20px;
}
.page-header {
margin-top: 0px;
margin-left: 15px;
margin-right: 15px;
margin-bottom: 12px;
padding-bottom: 0px;
padding-top: 1px;
}
.row-main {
margin-top: 3px;
margin-left: 3px;
margin-right: 3px;
margin-bottom: 3px;
padding-left: 10px;
padding-top: 15px;
padding-bottom: 20px;
}
h2 {
margin-top: 13px;: 0px;
color: silver !important;
font-size: 50px;
letter-spacing: -5px;
font-weight: 200;
}
.title-blue {
/*text-shadow: 4px 4px 0px #E3F0FC;*/
text-shadow: 4px 4px 0px #E6F3FF;
}
h3 {
margin-top: 5px;
margin-bottom: 5px;
}
.panel-heading {
padding: 5px 5px;
border-bottom: 1px solid whitesmoke;
margin-bottom: 2px;
}
.panel-title{
color: grey !important;
margin-left: 0.2em;
line-height: 1.3em;
}
.title-span{
padding-top: 0.2em !important;
}
.hidden {
opacity: 0;
}
.not-displayed {
display: none !important;
}
.not-displayed-text {
display: none;
}
.displayed-text {
display: inline-block;
}
.label-button-container{
margin-left: 1em;
float: right;
}
.no-pointer-events {
pointer-events: none;
}
.auto-pointer-events {
pointer-events: auto;
}
#overlay {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
background-color: rgba(0, 0, 0, 0.5);
visibility: hidden;
z-index:1000;
pointer-events: none;
}
.index-label {
margin-right: 5px;
}
.topic-terms-container {
display: inline-block;
overflow: hidden;
font-size: x-small;
color: gray;
margin-bottom: -1px;
}
.topic-term-label {
margin-right: 10px;
}
.theme-remove-button {
margin-right: 1px;
margin-bottom: 0px;
font-size: x-small !important;
padding: 0px 3px;
}
.theme-element{
padding-right: 4px;
padding-left: 4px;
padding-bottom: 1px;
padding-top: 1px;
margin: 0px;
}
.topic-element{
padding-right: 7px;
padding-left: 7px;
padding-bottom: 12px;
padding-top: 17px;
margin: 0px;
}
.theme-topics-container {
display: inline-block;
overflow-y: hidden;
overflow-x: auto;
font-size: x-small;
color: darkgray;
margin-bottom: -3px;
}
.theme-topic-label {
margin-right: 10px;
white-space:nowrap;
}
.theme-topic-remove-button {
margin-left: 1px;
font-size: xx-small !important;
padding: 0px 2px;
}
#documentsContainerOuter {
overflow: auto;
padding: 0px;
}
#documentsContainer > tbody > tr:first-child > td {
border-top-width: 0px;
}
#termsList, #topicsList, #themesList {
overflow-y: auto;
}
#textsList{
overflow-y:scroll;
}
#bgSvgContainer {
position: absolute;
top: 0px;
left: 0px;
}
svg.svg-vis {
position: absolute;
pointer-events: visiblePainted;
}
line.terms-to-topics {
stroke: black;
/*stroke-width: 1;*/
stroke-linecap: round;
}
line.topics-to-themes {
stroke: black;
stroke-width: 2;
stroke-linecap: round;
}
.drop-feedback {
background-color: WhiteSmoke !important;
}
.direct-highlight, .direct-highlight.highlight{
background-color: #E6F3FF;
border-bottom: 1px solid !important;
border-color: #BDBDBD !important;
background: repeating-linear-gradient(
45deg,
#E6F3FF,
#E6F3FF 2px,
#F2F2F2 2px,
#E6E6E6 5px
/*
#F0F0F0 2px,
#E4E4E4 5px*/
) !important;
}
.highlight {
background-color: #E6F3FF !important;
border-bottom: 1px solid !important;
border-color: #BDBDBD !important;
background: repeating-linear-gradient(
45deg,
#E6F3FF,
#E6F3FF 2px,
#EFF8FB 2px,
white 5px
);
}
line.link-overlay-direct-highlight, line.link-overlay-direct-highlight.link-overlay-highlight {
stroke: #E6F3FF;
stroke-width: 4;
stroke-linecap: round;
}
line.link-overlay-highlight {
stroke: #E6F3FF;
stroke-width: 4;
stroke-linecap: round;
}
line.link-overlay-direct-highlight-bg, line.link-overlay-direct-highlight-bg.link-overlay-highlight-bg {
stroke: black;
stroke-width: 5;
stroke-linecap: round;
}
line.link-overlay-highlight-bg {
stroke: black;
stroke-width: 5;
stroke-linecap: round;
}
li {
margin-bottom: 0.01px !important;
margin-top: 0.01px !important;
border-left: dotted 1px #BDBDBD !important;
border-top: dotted 1px #BDBDBD !important;
border-bottom: dotted 1px #BDBDBD !important;
border-right: dotted 1px #BDBDBD !important;
color: #606060; !important;
}
li.direct-chosen {
/*background-color: #E6F3FF !important;*/
border-style: solid !important;
border-top-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-left-width: 1px !important;
border-color: #909090 !important;
color: #606060; !important;
border-radius: 10px !important;
background: repeating-linear-gradient(
60deg,
#E6F3FF,
#E6F3FF 2px,
#F2F2F2 2px,
#E6E6E6 5px
/*
#EFF8FB 3px,
whitesmoke 5px*/
);
}
li.direct-chosen * {
color: #606060;
font-style: normal;
}
li.indirect-chosen {
border-style: solid !important;
border-top-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-left-width: 1px !important;
border-color: #909090 !important;
border-radius: 10px !important;
display: block !important;
}
li.indirect-chosen * {
color: #606060;
font-style: normal;
}
/*
.text-margin {
margin-right: 100px;
margin-top: 100px;
}
*/
.text-badge {
margin-left: 2px;
margin-top: 1px;
margin-bottom: 1px;
border-radius: 5px !important;
color: whitesmoke !important;
padding-bottom: 5px !important;
padding-top: 5px !important;
padding-right: 6px !important;
padding-left: 6px !important;
font-family: Menlo, Consolas, "Courier New", Courier, monospace;
letter-spacing: 0px;
font-size: small;
text-shadow: 1px 1px 2px gray !important;
}
.badge-main-label {
margin-left: 11px !important;
margin-right: 0px !important;
margin-top: 0px !important;
padding-bottom: 4px !important;
padding-top: 4px !important;
}
.badge-main-label-user-chosen{
border-color: white !important;
border-style: double !important;
}
.badge-undecided {
background-color : silver !important;
border-radius: 5px !important;
color: whitesmoke !important;
padding-bottom: 6px !important;
padding-top: 5px !important;
}
.label-badge {
background-color : whitesmoke !important;
color: black !important;
border: solid !important;
border-width: thin !important;
border-color: lightgrey !important;
font-weight:normal !important;
padding-bottom: 2px !important;
padding-top: 2px !important;
margin-top: -3px !important;
margin-bottom: 2px !important;
margin-right: 5px !important;
}
.container-fluid{
border-radius: 10px !important;
margin-left: 25px !important;
margin-right: 25px !important;
margin-top: 17px !important;
background-color: #FAFAFA !important;
border: 2px solid !important;
border-color: #E6F3FF !important;
padding-bottom: 20px !important;
}
.not-chosen * {
}
.not-chosen-old * {
color : #d3d3d3 ;
font-style: oblique;
}
.title-label{
font-size: small !important;
}
.topic-input{
padding: 3px !important;
}
.remove-button{
border: none !important;
padding-left: 2px !important;
padding-right: 2px !important;
padding-top: 0px !important;
padding-bottom: 0px !important;
margin-left: 10 px !important;
margin-bottom: 0 px !important;
}
span.remove-glyph {
padding: 0px !important;
margin: 0px !important;
font-size: smaller !important;
border: none !important;
}
.texts-info-container{
margin-top: 4px !important;
margin-bottom: 10px !important;
}
.lang-link-container{
margin-top: 0px !important;
margin-bottom: 2px !important;
}
span.checkmark {
margin-right: 2px;
}
.type_1_button {
padding-top: 2px !important;
padding-bottom: 3px !important;
font-size: larger !important;
padding-left: 1px !important;
padding-right: 2px !important;
}
.type-2-button {
padding: 0px !important;
padding-bottom: 3px !important;
font-size: larger !important;
}
.save-button {
padding: 0px !important;
padding-top: 2px !important;
font-size: larger !important;
}
.choice-description{
color: #909090;
font-size: 17px;
margin-left: 40px;
vertical-align: middle !important;
letter-spacing: -1px;
}
.credit{
margin-left: 27px;
}
.lang-lang-remove-button{
border: none !important;
color: #606060;
margin-left: 1px;
margin-right: 0px;
padding-left: 2px;
padding-right: 2px;
padding-top: 0px;
padding-bottom: 1px;
background-color: transparent;
}
.term-element{
padding: 7px 7px;
}
.text-element{
padding-right: 8px;
padding-left: 8px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 100%;
}
.text-container{
background-color: white;
display: table;
padding:7px;
padding-left:9px;
border-radius: 7px;
max-width: 100%;
}
.text-border{
border: solid !important;
border-width: 1px !important;
padding:6px;
padding-left:8px;
border-color: lightgrey !important;
}
.themes-label-container{
margin-bottom: 2px;
margin-top: 2px;
}
.themes-additiona-label-container{
margin-bottom: 1px;
margin-top: 5px;
}
.full-text{
font-size: 105%;
color: #606060;
max-width: 85%;
float: left;
margin-right: 20px;
}
.snippet-text{
font-size: 105%;
color: #606060;
margin-right: 20px;
max-width: 85%;
float: left;
}
.city{
z-index: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
filter: alpha(opacity=20);
opacity: .2;
background-color: white;
}
.termintextnotchosen {
background-color: inherit !important;
}
.specifictermchosen {
background-color: #E6F3FF !important;
}
.list-group{
overflow-y: scroll;
}
.change-label-trigger{
cursor: pointer
}
.dropdown-toggle{
cursor: pointer
}
.choose-label-glyphicon{
margin-left: 3px !important;
margin-bottom: 0px !important;
padding-top: 2px !important;
padding-bottom: 0px !important;
font-size: x-small !important;
color: white !important;
}
.button-active{
background-color: #E6F3FF !important;
}
.panel-heading-marked{
border-style: solid !important;
border-top-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-left-width: 1px !important;
border-color: #909090 !important;
border-radius: 4px !important;
color: #E6F3FF !important;
background: repeating-linear-gradient(
60deg,
#E6F3FF,
#E6F3FF 2px,
#F2F2F2 2px,
#E6E6E6 5px
/*
#EFF8FB 3px,
whitesmoke 5px*/
);
}
.panel-marked{
border-style: solid !important;
border-top-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 1px !important;
border-left-width: 1px !important;
border-color:#909090 !important;
border-radius: 4px !important;
}
::-webkit-scrollbar {
-webkit-appearance: none;
width: 7px;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(0, 0, 0, .5);
-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}
.argumentation-button{
font-size: 11px;
margin-left: 0px !important;
margin-right: 1px;
padding-left: 3px !important;
padding-right: 3px !important;
padding-bottom: 4px !important;
padding-top: 4px !important;
color: black;
}
.oppose-button{
font-size: 11px;
margin-left: 0px !important;
margin-right: 15px;
padding-left: 3px !important;
padding-right: 3px !important;
padding-bottom: 4px !important;
padding-top: 4px !important;
color: black;
}
.sentiment-button{
margin-left: 15px;
}
.sentiment-marker{
border-style: solid;
border-color: grey;
border-width: thin;
border-style: solid solid solid solid;
background: repeating-linear-gradient(45deg, #ffe6e6 , white 50%, #e6ffe6);
}
.positive-marker{
background-color: #e6ffe6;
border-style: solid none;
border-color: green;
border-width: thin;
background: repeating-linear-gradient(45deg, white, #e6ffe6 50%, white);
}
.dragged{
background-color: red !important;
}
/* Japanese text */
rt.gloss{ text-decoration: overline;
}
rt.furigana{ text-decoration: underline;
} | user_interface/css/custom.css | body {
font-family: sans-serif;
font-size: 10pt;
background-color: white;
}
hr {
margin-top: 10px;
margin-bottom: 10px;
margin-left: 27px;
margin-right: 27px;
}
.form-inline select.form-control {
font-size: small;
padding: 3px 6px;
height: 2em;
max-width: 15em;
margin-right: 2px;
margin-left: 2px;
}
.searchtextinput{
padding-bottom: 0px;
padding-top: 3px;
padding-left: 0px;
margin-left: 2px;
margin-right: 5px;
height: 2.2em;
max-width: 15em;
resize: none;
overflow: auto;
vertical-align: middle;
border-radius: 6px;
border-color: #E6F3FF !important;
border-width: 2px !important;
background-color: white !important;
}
.searchtextinput_disabled{
color: silver !important;
background-color: whitesmoke !important;;
}
.show-nodes-button{
margin-left: 2px !important;
margin-right: 2px !important;
margin-bottom: 0px !important;
margin-top: 0px !important;
padding-left: 4px !important;
padding-right: 3px !important;
padding-bottom: 0px !important;
padding-top: 3px !important;
background-color: whitesmoke;
border-color: silver;
}
.show-nodes-button-selected{
background-color: #E6F3FF !important;
}
.search-input {
font-size: small;
padding: 1px 6px;
height: 1.5em;
margin-left: 2px;
}
.search-input_hidden{
visibility: hidden;
width: 1em;
}
.search-input_terms{
width: 7em !important;
}
.search-input_topics{
width: 7em;
}
.search-input-text{
width: 30em;
}
.search-input-themes{
width: 13em;
}
.search-clear {
position: absolute;
right: 5px;
color: lightgrey;
top: 3px;
bottom: 3px;
font-size: 14px;
cursor: pointer;
}
.header-button {
line-height: 2.2em;
padding-left: 11px !important;
padding-right: 11px !important;
padding-top: 5px !important;
padding-bottom: 1px !important;
border-color: #E6F3FF !important;
border-width: 2px !important;
margin-right: 0px;
margin-left: 0px;
border-radius: 6px !important;
}
.header-button.disabled{
color: silver !important;
}
.right-button{
margin-right: 10px !important;
}
.left-button{
margin-left:10px !important;
}
.dataset-choices.disabled{
color: silver !important;
}
#newTheme {
margin-right: 6px;
}
#newModel {
margin-right: 6px;
}
/* noUi entries below have to do with sliders; if no sliders are used in this project, we could remove them */
.noUi-horizontal .noUi-handle {
width: 18px;
left: -9px;
}
.noUi-handle:after, .noUi-handle:before {
left: 6px;
}
.noUi-handle:after {
left: 9px;
}
.noUi-handle, .noUi-dragable {
cursor: ew-resize;
}
.bottom-margin {
margin-bottom: 10px;
}
.small-bottom-margin {
margin-bottom: 5px;
}
.no-bottom-margin {
margin-bottom: 0px;
}
.top-margin {
margin-top: 10px;
}
.small-top-margin {
margin-top: 5px;
}
.right-margin {
margin-right: 90px;
}
.small-right-margin {
margin-right: 5px;
}
.large-right-margin {
margin-right: 15px;
}
.left-margin {
margin-left: 10px;
}
.small-left-margin {
margin-left: 5px;
}
.large-left-margin {
margin-left: 15px;
}
.large-top-margin {
margin-top: 20px;
}
.page-header {
margin-top: 0px;
margin-left: 15px;
margin-right: 15px;
margin-bottom: 12px;
padding-bottom: 0px;
padding-top: 1px;
}
.row-main {
margin-top: 3px;
margin-left: 3px;
margin-right: 3px;
margin-bottom: 3px;
padding-left: 10px;
padding-top: 15px;
padding-bottom: 20px;
}
h2 {
margin-top: 13px;: 0px;
color: silver !important;
font-size: 50px;
letter-spacing: -5px;
font-weight: 200;
}
.title-blue {
/*text-shadow: 4px 4px 0px #E3F0FC;*/
text-shadow: 4px 4px 0px #E6F3FF;
}
h3 {
margin-top: 5px;
margin-bottom: 5px;
}
.panel-heading {
padding: 5px 5px;
border-bottom: 1px solid whitesmoke;
margin-bottom: 2px;
}
.panel-title{
color: grey !important;
margin-left: 0.2em;
line-height: 1.3em;
}
.title-span{
padding-top: 0.2em !important;
}
.hidden {
opacity: 0;
}
.not-displayed {
display: none !important;
}
.not-displayed-text {
display: none;
}
.displayed-text {
display: inline-block;
}
.label-button-container{
margin-left: 1em;
float: right;
}
.no-pointer-events {
pointer-events: none;
}
.auto-pointer-events {
pointer-events: auto;
}
#overlay {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
background-color: rgba(0, 0, 0, 0.5);
visibility: hidden;
z-index:1000;
pointer-events: none;
}
.index-label {
margin-right: 5px;
}
.topic-terms-container {
display: inline-block;
overflow: hidden;
font-size: x-small;
color: gray;
margin-bottom: -1px;
}
.topic-term-label {
margin-right: 10px;
}
.theme-remove-button {
margin-right: 1px;
margin-bottom: 0px;
font-size: x-small !important;
padding: 0px 3px;
}
.theme-element{
padding-right: 4px;
padding-left: 4px;
padding-bottom: 1px;
padding-top: 1px;
margin: 0px;
}
.topic-element{
padding-right: 7px;
padding-left: 7px;
padding-bottom: 12px;
padding-top: 17px;
margin: 0px;
}
.theme-topics-container {
display: inline-block;
overflow-y: hidden;
overflow-x: auto;
font-size: x-small;
color: darkgray;
margin-bottom: -3px;
}
.theme-topic-label {
margin-right: 10px;
white-space:nowrap;
}
.theme-topic-remove-button {
margin-left: 1px;
font-size: xx-small !important;
padding: 0px 2px;
}
#documentsContainerOuter {
overflow: auto;
padding: 0px;
}
#documentsContainer > tbody > tr:first-child > td {
border-top-width: 0px;
}
#termsList, #topicsList, #themesList {
overflow-y: auto;
}
#textsList{
overflow-y:scroll;
}
#bgSvgContainer {
position: absolute;
top: 0px;
left: 0px;
}
svg.svg-vis {
position: absolute;
pointer-events: visiblePainted;
}
line.terms-to-topics {
stroke: black;
/*stroke-width: 1;*/
stroke-linecap: round;
}
line.topics-to-themes {
stroke: black;
stroke-width: 2;
stroke-linecap: round;
}
.drop-feedback {
background-color: WhiteSmoke !important;
}
.direct-highlight, .direct-highlight.highlight{
background-color: #E6F3FF;
border-bottom: 1px solid !important;
border-color: #BDBDBD !important;
background: repeating-linear-gradient(
45deg,
#E6F3FF,
#E6F3FF 2px,
#F2F2F2 2px,
#E6E6E6 5px
/*
#F0F0F0 2px,
#E4E4E4 5px*/
) !important;
}
.highlight {
background-color: #E6F3FF !important;
border-bottom: 1px solid !important;
border-color: #BDBDBD !important;
background: repeating-linear-gradient(
45deg,
#E6F3FF,
#E6F3FF 2px,
#EFF8FB 2px,
white 5px
);
}
line.link-overlay-direct-highlight, line.link-overlay-direct-highlight.link-overlay-highlight {
stroke: #E6F3FF;
stroke-width: 4;
stroke-linecap: round;
}
line.link-overlay-highlight {
stroke: #E6F3FF;
stroke-width: 4;
stroke-linecap: round;
}
line.link-overlay-direct-highlight-bg, line.link-overlay-direct-highlight-bg.link-overlay-highlight-bg {
stroke: black;
stroke-width: 5;
stroke-linecap: round;
}
line.link-overlay-highlight-bg {
stroke: black;
stroke-width: 5;
stroke-linecap: round;
}
li {
margin-bottom: 0.01px !important;
margin-top: 0.01px !important;
border-left: dotted 1px #BDBDBD !important;
border-top: dotted 1px #BDBDBD !important;
border-bottom: dotted 1px #BDBDBD !important;
border-right: dotted 1px #BDBDBD !important;
color: #606060; !important;
}
li.direct-chosen {
/*background-color: #E6F3FF !important;*/
border-style: solid !important;
border-top-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-left-width: 1px !important;
border-color: #909090 !important;
color: #606060; !important;
border-radius: 10px !important;
background: repeating-linear-gradient(
60deg,
#E6F3FF,
#E6F3FF 2px,
#F2F2F2 2px,
#E6E6E6 5px
/*
#EFF8FB 3px,
whitesmoke 5px*/
);
}
li.direct-chosen * {
color: #606060;
font-style: normal;
}
li.indirect-chosen {
border-style: solid !important;
border-top-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-left-width: 1px !important;
border-color: #909090 !important;
border-radius: 10px !important;
display: block !important;
}
li.indirect-chosen * {
color: #606060;
font-style: normal;
}
/*
.text-margin {
margin-right: 100px;
margin-top: 100px;
}
*/
.text-badge {
margin-left: 2px;
margin-top: 1px;
margin-bottom: 1px;
border-radius: 5px !important;
color: whitesmoke !important;
padding-bottom: 5px !important;
padding-top: 5px !important;
padding-right: 6px !important;
padding-left: 6px !important;
font-family: Menlo, Consolas, "Courier New", Courier, monospace;
letter-spacing: 0px;
font-size: small;
text-shadow: 1px 1px 2px gray !important;
}
.badge-main-label {
margin-left: 11px !important;
margin-right: 0px !important;
margin-top: 0px !important;
padding-bottom: 4px !important;
padding-top: 4px !important;
}
.badge-main-label-user-chosen{
border-color: white !important;
border-style: double !important;
}
.badge-undecided {
background-color : silver !important;
border-radius: 5px !important;
color: whitesmoke !important;
padding-bottom: 6px !important;
padding-top: 5px !important;
}
.label-badge {
background-color : whitesmoke !important;
color: black !important;
border: solid !important;
border-width: thin !important;
border-color: lightgrey !important;
font-weight:normal !important;
padding-bottom: 2px !important;
padding-top: 2px !important;
margin-top: -3px !important;
margin-bottom: 2px !important;
margin-right: 5px !important;
}
.container-fluid{
border-radius: 10px !important;
margin-left: 25px !important;
margin-right: 25px !important;
margin-top: 17px !important;
background-color: #FAFAFA !important;
border: 2px solid !important;
border-color: #E6F3FF !important;
padding-bottom: 20px !important;
}
.not-chosen * {
}
.not-chosen-old * {
color : #d3d3d3 ;
font-style: oblique;
}
.title-label{
font-size: small !important;
}
.topic-input{
padding: 3px !important;
}
.remove-button{
border: none !important;
padding-left: 2px !important;
padding-right: 2px !important;
padding-top: 0px !important;
padding-bottom: 0px !important;
margin-left: 10 px !important;
margin-bottom: 0 px !important;
}
span.remove-glyph {
padding: 0px !important;
margin: 0px !important;
font-size: smaller !important;
border: none !important;
}
.texts-info-container{
margin-top: 4px !important;
margin-bottom: 10px !important;
}
.lang-link-container{
margin-top: 0px !important;
margin-bottom: 2px !important;
}
span.checkmark {
margin-right: 2px;
}
.type_1_button {
padding-top: 2px !important;
padding-bottom: 3px !important;
font-size: larger !important;
padding-left: 1px !important;
padding-right: 2px !important;
}
.type-2-button {
padding: 0px !important;
padding-bottom: 3px !important;
font-size: larger !important;
}
.save-button {
padding: 0px !important;
padding-top: 2px !important;
font-size: larger !important;
}
.choice-description{
color: #909090;
font-size: 17px;
margin-left: 40px;
vertical-align: middle !important;
letter-spacing: -1px;
}
.credit{
margin-left: 27px;
}
.lang-lang-remove-button{
border: none !important;
color: #606060;
margin-left: 1px;
margin-right: 0px;
padding-left: 2px;
padding-right: 2px;
padding-top: 0px;
padding-bottom: 1px;
background-color: transparent;
}
.term-element{
padding: 7px 7px;
}
.text-element{
padding-right: 8px;
padding-left: 8px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 100%;
}
.text-container{
background-color: white;
display: table;
padding:7px;
padding-left:9px;
border-radius: 7px;
max-width: 100%;
}
.text-border{
border: solid !important;
border-width: 1px !important;
padding:6px;
padding-left:8px;
border-color: lightgrey !important;
}
.themes-label-container{
margin-bottom: 2px;
margin-top: 2px;
}
.themes-additiona-label-container{
margin-bottom: 1px;
margin-top: 5px;
}
.full-text{
font-size: 105%;
color: #606060;
max-width: 85%;
float: left;
margin-right: 20px;
}
.snippet-text{
font-size: 105%;
color: #606060;
margin-right: 20px;
max-width: 85%;
float: left;
}
.city{
z-index: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
filter: alpha(opacity=20);
opacity: .2;
background-color: white;
}
.termintextnotchosen {
background-color: inherit !important;
}
.specifictermchosen {
background-color: #E6F3FF !important;
}
.list-group{
overflow-y: scroll;
}
.change-label-trigger{
cursor: pointer
}
.dropdown-toggle{
cursor: pointer
}
.choose-label-glyphicon{
margin-left: 3px !important;
margin-bottom: 0px !important;
padding-top: 2px !important;
padding-bottom: 0px !important;
font-size: x-small !important;
color: white !important;
}
.button-active{
background-color: #E6F3FF !important;
}
.panel-heading-marked{
border-style: solid !important;
border-top-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-left-width: 1px !important;
border-color: #909090 !important;
border-radius: 4px !important;
color: #E6F3FF !important;
background: repeating-linear-gradient(
60deg,
#E6F3FF,
#E6F3FF 2px,
#F2F2F2 2px,
#E6E6E6 5px
/*
#EFF8FB 3px,
whitesmoke 5px*/
);
}
.panel-marked{
border-style: solid !important;
border-top-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 1px !important;
border-left-width: 1px !important;
border-color:#909090 !important;
border-radius: 4px !important;
}
::-webkit-scrollbar {
-webkit-appearance: none;
width: 7px;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(0, 0, 0, .5);
-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}
.argumentation-button{
font-size: 11px;
margin-left: 0px !important;
margin-right: 1px;
padding-left: 3px !important;
padding-right: 3px !important;
padding-bottom: 4px !important;
padding-top: 4px !important;
color: black;
}
.oppose-button{
font-size: 11px;
margin-left: 0px !important;
margin-right: 15px;
padding-left: 3px !important;
padding-right: 3px !important;
padding-bottom: 4px !important;
padding-top: 4px !important;
color: black;
}
.sentiment-button{
margin-left: 15px;
}
.sentiment-marker{
border-style: solid;
border-color: grey;
border-width: thin;
border-style: solid solid solid solid;
background: repeating-linear-gradient(45deg, #ffe6e6 , white 50%, #e6ffe6);
}
.positive-marker{
background-color: #e6ffe6;
border-style: solid none;
border-color: green;
border-width: thin;
background: repeating-linear-gradient(45deg, white, #e6ffe6 50%, white);
}
.dragged{
background-color: red !important;
}
/* Japanese text */
rt.gloss{ text-decoration: overline;
}
rt.furigana{ text-decoration: underline;
} | 0.379378 | 0.088112 |
*{margin:0; padding:0;box-sizing:border-box;}
ul{list-style:none;}
a{transition: 0.2s}
.body{ width:100%;
border-top: 7px solid #765495;}
/* .container{ width: 100%; display: block;height:50%} */
.main-menu { display: block;
width: 70%;
font-family: 'fira_sansbook';
float: right;
font-size: 20px;
animation-name: anim1;
animation-duration: 2s;
display: block;
/* display: inline-block; */
/* overflow: hidden; */
}
.pic{ float: left;
z-index:1;
position: relative;
width:30%; }
.icofont-search-1{font-family: "IcoFont"; font-size:30px ;font-style: italic; }
.icofont-gears{ font-size: 50px;}
.menu-items{float: right;}
.quatation { width: 70%;
float: right; }
.quatation p{ position: relative;
float: left;
width: 100%;
/* margin-right: 45px; */
font-size: 140%;
padding: 2%;
top: 0px;
/* overflow: hidden; */
/* margin-top: -110px; */
font-family: 'fira_sansbold_italic';
/* padding: 100px 20px; */
text-shadow: 13px 8px 12px #332e2e;
/* opacity: 0; */
animation-name: anim;
animation-duration: 3s;
animation-fill-mode: forwards;
z-index: -8;
transition: all 50s ease 0s;
}
.main-menu ul:hover> .quatation { transform:scale(0,0);
}
@keyframes anim1 {
0% {transform: translateX(-500px);}
/* 50% {transform: scaleX(.5);} */
100% {transform: translateX(0px);}
}
@keyframes anim {
0% {opacity: 0;);}
50% {opacity: 0;}
100% {opacity: 1;}
}
.main-menu ul { float: right;
/* margin-right: 10px; */
/* width: 93%; */}
.main-menu ul li { display: inline-block;
}
.main-menu a{ float: right;
font-size: 110%;
font-color: #f8dabcfc;
text-shadow: 0 0 black;
text-decoration: none;
padding: 10px;
background: #fff8ef /* #ffffff00 */;
box-shadow: 4px 3px 3px 0px;
}
.main-menu ul li .sub-menu{ position: absolute;
/* border-top: 2px solid #765495; */
top: 70px;
/* visibility: hidden; */
transition: all .2s ease 0s;
opacity: 0;
}
.main-menu ul li:hover> .sub-menu{ opacity:1; top: 60px;}
.main-menu ul li:hover> a{color:#9431ee; text-shadow: 0 0 black; transform:scale(1.05,1.05);}
.main-menu ul li .sub-menu li{ /* right: 5%; */
display: block;
width: 35%;
padding: 2%;
}
.main-menu ul li .sub-menu li a{ padding: 10px;
float: left;
/* font-size: 92%; */
border-bottom: 2px solid #765495;
/* background: #ffffff00; */
}
.main-menu ul li .sub-menu li:hover> a{padding:20px;}
/* slider*/
.slider { position: relative;
width: 86%;
/* height: 67%; */
/* display: inline-block; */
margin-top: 5%;
left: 7%;
/* float: right; */
padding: 1.5%;
text-align: center;
background: #765495;
overflow: hidden;
animation-name: anim;
animation-duration: 2.5s;
animation-fill-mode: forwards;
z-index: 8;
}
.slide { /* overflow: hidden; */
width: 100%;
/* height: 550px; */
padding: 30%;
position: relative;
background-size: cover;
background-position: top;
}
.slide a{ font-size: 100%;
font-family: 'fira_sansbook';
text-align: center;
/* float: left; */
/* left: -28%; */
margin-right: 34%;
margin-left: 24%;
/* margin-block: 50%; */
display: inline-block;
text-decoration: none;
border: 2px solid #765495;
margin-top: -16%;
/* margin: 41%; */
/* margin-bottom: 169px; */
/* padding: 10px; */
background: #ffffff50;
transition: all 0.1s ease 0s;
}
.slide a:hover{background: #ffffff90;}
.owl-nav{overflow:hidden; height:0px;}
.icofont-curved-left { /* backface-visibility: visible; */
/* background-color: black; */
font-size: 500%;
position: absolute;
top: 40%;
left: -2%;
color: #ffffff90 ;
font-style: normal;
/* float: left; */
}
.icofont-curved-right { /* backface-visibility: visible; */
/* background-color: black; */
font-size: 500%;
position: absolute;
top: 40%;
right: -2%;
color: #ffffff90 ;
font-style: normal;
/* float: left; */
}
.owl-dots{ /* background: aqua; */
/* overflow: hidden; */
/* height: 50px; */
/* width: 585px; */
top: 80%;
left: 45%;
position: absolute;
/* z-index: 999; */
}
.owl-dot { background: red;
/* color: red; */
/* border: none; */
padding: 7px;
margin: 2px;
border-radius: 15px;
/* font-size: 500px; */
}
.petrol-engine{ width: 100%;
height: 300px;
float: right;
font-size: 130%;
overflow: hidden;
/* margin-top: 100px; */
font-family: 'fira_sansbold_italic';
/* top: 500px; */
background-color: #ffe9cdfc;
padding: 1%;
/* margin-top: 550px; */
} | css/style.css | *{margin:0; padding:0;box-sizing:border-box;}
ul{list-style:none;}
a{transition: 0.2s}
.body{ width:100%;
border-top: 7px solid #765495;}
/* .container{ width: 100%; display: block;height:50%} */
.main-menu { display: block;
width: 70%;
font-family: 'fira_sansbook';
float: right;
font-size: 20px;
animation-name: anim1;
animation-duration: 2s;
display: block;
/* display: inline-block; */
/* overflow: hidden; */
}
.pic{ float: left;
z-index:1;
position: relative;
width:30%; }
.icofont-search-1{font-family: "IcoFont"; font-size:30px ;font-style: italic; }
.icofont-gears{ font-size: 50px;}
.menu-items{float: right;}
.quatation { width: 70%;
float: right; }
.quatation p{ position: relative;
float: left;
width: 100%;
/* margin-right: 45px; */
font-size: 140%;
padding: 2%;
top: 0px;
/* overflow: hidden; */
/* margin-top: -110px; */
font-family: 'fira_sansbold_italic';
/* padding: 100px 20px; */
text-shadow: 13px 8px 12px #332e2e;
/* opacity: 0; */
animation-name: anim;
animation-duration: 3s;
animation-fill-mode: forwards;
z-index: -8;
transition: all 50s ease 0s;
}
.main-menu ul:hover> .quatation { transform:scale(0,0);
}
@keyframes anim1 {
0% {transform: translateX(-500px);}
/* 50% {transform: scaleX(.5);} */
100% {transform: translateX(0px);}
}
@keyframes anim {
0% {opacity: 0;);}
50% {opacity: 0;}
100% {opacity: 1;}
}
.main-menu ul { float: right;
/* margin-right: 10px; */
/* width: 93%; */}
.main-menu ul li { display: inline-block;
}
.main-menu a{ float: right;
font-size: 110%;
font-color: #f8dabcfc;
text-shadow: 0 0 black;
text-decoration: none;
padding: 10px;
background: #fff8ef /* #ffffff00 */;
box-shadow: 4px 3px 3px 0px;
}
.main-menu ul li .sub-menu{ position: absolute;
/* border-top: 2px solid #765495; */
top: 70px;
/* visibility: hidden; */
transition: all .2s ease 0s;
opacity: 0;
}
.main-menu ul li:hover> .sub-menu{ opacity:1; top: 60px;}
.main-menu ul li:hover> a{color:#9431ee; text-shadow: 0 0 black; transform:scale(1.05,1.05);}
.main-menu ul li .sub-menu li{ /* right: 5%; */
display: block;
width: 35%;
padding: 2%;
}
.main-menu ul li .sub-menu li a{ padding: 10px;
float: left;
/* font-size: 92%; */
border-bottom: 2px solid #765495;
/* background: #ffffff00; */
}
.main-menu ul li .sub-menu li:hover> a{padding:20px;}
/* slider*/
.slider { position: relative;
width: 86%;
/* height: 67%; */
/* display: inline-block; */
margin-top: 5%;
left: 7%;
/* float: right; */
padding: 1.5%;
text-align: center;
background: #765495;
overflow: hidden;
animation-name: anim;
animation-duration: 2.5s;
animation-fill-mode: forwards;
z-index: 8;
}
.slide { /* overflow: hidden; */
width: 100%;
/* height: 550px; */
padding: 30%;
position: relative;
background-size: cover;
background-position: top;
}
.slide a{ font-size: 100%;
font-family: 'fira_sansbook';
text-align: center;
/* float: left; */
/* left: -28%; */
margin-right: 34%;
margin-left: 24%;
/* margin-block: 50%; */
display: inline-block;
text-decoration: none;
border: 2px solid #765495;
margin-top: -16%;
/* margin: 41%; */
/* margin-bottom: 169px; */
/* padding: 10px; */
background: #ffffff50;
transition: all 0.1s ease 0s;
}
.slide a:hover{background: #ffffff90;}
.owl-nav{overflow:hidden; height:0px;}
.icofont-curved-left { /* backface-visibility: visible; */
/* background-color: black; */
font-size: 500%;
position: absolute;
top: 40%;
left: -2%;
color: #ffffff90 ;
font-style: normal;
/* float: left; */
}
.icofont-curved-right { /* backface-visibility: visible; */
/* background-color: black; */
font-size: 500%;
position: absolute;
top: 40%;
right: -2%;
color: #ffffff90 ;
font-style: normal;
/* float: left; */
}
.owl-dots{ /* background: aqua; */
/* overflow: hidden; */
/* height: 50px; */
/* width: 585px; */
top: 80%;
left: 45%;
position: absolute;
/* z-index: 999; */
}
.owl-dot { background: red;
/* color: red; */
/* border: none; */
padding: 7px;
margin: 2px;
border-radius: 15px;
/* font-size: 500px; */
}
.petrol-engine{ width: 100%;
height: 300px;
float: right;
font-size: 130%;
overflow: hidden;
/* margin-top: 100px; */
font-family: 'fira_sansbold_italic';
/* top: 500px; */
background-color: #ffe9cdfc;
padding: 1%;
/* margin-top: 550px; */
} | 0.292494 | 0.079317 |
.dn{display:none!important}
@media(max-width:575.98px){
.dn_x_only,.dn_x,.dn_s,.dn_sm{display:none!important}
}
@media(min-width:576px) and (max-width:767.98px) {
.dn_s_only,.dn_s,.dn_sm{display:none!important}
}
@media(min-width:768px) and (max-width:991.98px){
.dn_m_only,.dn_m,.dn_sm,.dn_ml{display:none!important}
}
@media(min-width:992px) and (max-width:1199.98px){
.dn_l_only,.dn_l,.dn_ml{display:none!important}
}
@media(min-width:1200px) and (max-width:1599.98px){
.dn_h_only,.dn_h,.dn_ml,.dn_l{display:none!important}
}
@media(min-width:1600px){
.dn_f_only,.dn_f,.dn_ml,.dn_l,.dn_h{display:none!important}
}
@media (hover:none), (high-contrast: none) {
.dn_touch {display:none!important}
}
@media(max-width:767.98px){
.clb_s:after,.clb_sm:after,.clb:after{clear:both}
.clb_s:before,.clb_s:after,.clb_sm:before,.clb_sm:after,.clb:before,.clb:after{content:" ";display:table}
.trs03_s,.trs03_sm,.trs03{transition:all .3s ease!important}
.trs0_s,.trs0_sm,.trs0{transition:none!important}
.za_s,.za_sm,.za{z-index:auto!important}
.z0_s,.z0_sm,.z0{z-index:0!important}
.z1_s,.z1_sm,.z1{z-index:1!important}
.z9_s,.z9_sm,.z9{z-index:9!important}
.ord0_s,.ord0_sm,.ord0{order:-1}
.ord99_s,.ord99_sm,.ord99{order:99}
.jcfs_s,.jcfs_sm,.jcfs{justify-content:flex-start}
.jcc_s,.jcc_sm,.jcc{justify-content:center}
.jcfe_s,.jcfe_sm,.jcfe{justify-content:flex-end}
.aifs_s,.aifs_sm,.aifs{align-items:flex-start}
.aic_s,.aic_sm,.aic{align-items:center}
.aife_s,.aife_sm,.aife{align-items:flex-end}
.fx_s,.fx_sm,.fx{flex:0 1 auto!important}
.df_s,.df_sm,.df{display:flex!important}
.dt_s,.dt_sm,.dt{display:table!important}
.db_s,.db_sm,.db{display:block!important}
.dib_s,.dib_sm,.dib{display:inline-block!important}
.fln_s,.fln_sm,.fln{float:none!important}
.fll_s,.fll_sm,.fll{float:left!important}
.flr_s,.flr_sm,.flr{float:right!important}
.posr_s,.posr_sm,.posr{position:relative!important}
.posa_s,.posa_sm,.posa{position:absolute!important}
.posf_s,.posf_sm,.posf{position:fixed!important}
.ovh_s,.ovh_sm,.ovh{overflow:hidden!important}
.ovv_s,.ovv_sm,.ovv{overflow:visible!important}
.mawn_s,.mawn_sm,.mawn{max-width:none!important}
.maw100pc_s,.maw100pc_sm,.maw100pc{max-width:100%!important}
.ha_s,.ha_sm,.ha{height:auto!important}
.fi_s,.fi_sm,.fi{filter:invert(1)!important}
.tshn_s,.tshn_sm,.tshn{text-shadow:none!important}
.bxshn_s,.bxshn_sm,.bxshn{box-shadow:none!important}
.w100pc_s,.w100pc_sm,.w100pc{width:100%!important}
.h100pc_s,.h100pc_sm,.h100pc{height:100%!important}
.tal_s,.tal_sm,.tal{text-align:left!important}
.tar_s,.tar_sm,.tar{text-align:right!important}
.tac_s,.tac_sm,.tac{text-align:center!important}
.ttu_s,.ttu_sm,.ttu{text-transform:uppercase!important}
.tdu_s,.tdu_sm,.tdu{text-decoration:underline!important}
.fwb_s,.fwb_sm,.fwb{font-weight:600!important}
.cfff_s,.cfff_sm,.cfff{color:#fff!important}
.c000_s,.c000_sm,.c000{color:#000!important}
.mlra_s,.mlra_sm,.mlra{margin-left:auto!important;margin-right:auto!important}
.m0px_s,.m0px_sm,.m0px{margin:0!important}
.mt0px_s,.mt0px_sm,.mt0px{margin-top:0!important}
.mt5px_s,.mt5px_sm,.mt5px{margin-top:5px!important}
.mt10px_s,.mt10px_sm,.mt10px{margin-top:10px!important}
.mt15px_s,.mt15px_sm,.mt15px{margin-top:15px!important}
.mt20px_s,.mt20px_sm,.mt20px{margin-top:20px!important}
.mt30px_s,.mt30px_sm,.mt30px{margin-top:30px!important}
.mt45px_s,.mt45px_sm,.mt45px{margin-top:45px!important}
.mt60px_s,.mt60px_sm,.mt60px{margin-top:60px!important}
.mt75px_s,.mt75px_sm,.mt75px{margin-top:75px!important}
.mb0px_s,.mb0px_sm,.mb0px{margin-bottom:0!important}
.mb5px_s,.mb5px_sm,.mb5px{margin-bottom:5px!important}
.mb10px_s,.mb10px_sm,.mb10px{margin-bottom:10px!important}
.mb15px_s,.mb15px_sm,.mb15px{margin-bottom:15px!important}
.mb20px_s,.mb20px_sm,.mb20px{margin-bottom:20px!important}
.mb30px_s,.mb30px_sm,.mb30px{margin-bottom:30px!important}
.mb45px_s,.mb45px_sm,.mb45px{margin-bottom:45px!important}
.mb60px_s,.mb60px_sm,.mb60px{margin-bottom:60px!important}
.mb75px_s,.mb75px_sm,.mb75px{margin-bottom:75px!important}
.ml0px_s,.ml0px_sm,.ml0px{margin-left:0!important}
.ml5px_s,.ml5px_sm,.ml5px{margin-left:5px!important}
.ml10px_s,.ml10px_sm,.ml10px{margin-left:10px!important}
.ml15px_s,.ml15px_sm,.ml15px{margin-left:15px!important}
.ml20px_s,.ml20px_sm,.ml20px{margin-left:20px!important}
.ml30px_s,.ml30px_sm,.ml30px{margin-left:30px!important}
.ml45px_s,.ml45px_sm,.ml45px{margin-left:45px!important}
.ml60px_s,.ml60px_sm,.ml60px{margin-left:60px!important}
.ml75px_s,.ml75px_sm,.ml75px{margin-left:75px!important}
.mr0px_s,.mr0px_sm,.mr0px{margin-right:0!important}
.mr5px_s,.mr5px_sm,.mr5px{margin-right:5px!important}
.mr10px_s,.mr10px_sm,.mr10px{margin-right:10px!important}
.mr15px_s,.mr15px_sm,.mr15px{margin-right:15px!important}
.mr20px_s,.mr20px_sm,.mr20px{margin-right:20px!important}
.mr30px_s,.mr30px_sm,.mr30px{margin-right:30px!important}
.mr45px_s,.mr45px_sm,.mr45px{margin-right:45px!important}
.mr60px_s,.mr60px_sm,.mr60px{margin-right:60px!important}
.mr75px_s,.mr75px_sm,.mr75px{margin-right:75px!important}
.p0px_s,.p0px_sm,.p0px{padding:0!important}
.pt0px_s,.pt0px_sm,.pt0{padding-top:0!important}
.pt5px_s,.pt5px_sm,.pt5px{padding-top:5px!important}
.pt10px_s,.pt10px_sm,.pt10px{padding-top:10px!important}
.pt15px_s,.pt15px_sm,.pt15px{padding-top:15px!important}
.pt20px_s,.pt20px_sm,.pt20px{padding-top:20px!important}
.pt30px_s,.pt30px_sm,.pt30px{padding-top:30px!important}
.pt45px_s,.pt45px_sm,.pt45px{padding-top:45px!important}
.pt60px_s,.pt60px_sm,.pt60px{padding-top:60px!important}
.pt75px_s,.pt75px_sm,.pt75px{padding-top:75px!important}
.pb0_s,.pb0px_sm,.pb0px{padding-bottom:0!important}
.pb5px_s,.pb5px_sm,.pb5px{padding-bottom:5px!important}
.pb10px_s,.pb10px_sm,.pb10px{padding-bottom:10px!important}
.pb15px_s,.pb15px_sm,.pb15px{padding-bottom:15px!important}
.pb20px_s,.pb20px_sm,.pb20px{padding-bottom:20px!important}
.pb30px_s,.pb30px_sm,.pb30px{padding-bottom:30px!important}
.pb45px_s,.pb45px_sm,.pb45px{padding-bottom:45px!important}
.pb60px_s,.pb60px_sm,.pb60px{padding-bottom:60px!important}
.pb75px_s,.pb75px_sm,.pb75px{padding-bottom:75px!important}
.pl0px_s,.pl0px_sm,.pl0px{padding-left:0!important}
.pl5px_s,.pl5px_sm,.pl5px{padding-left:5px!important}
.pl10px_s,.pl10px_sm,.pl10px{padding-left:10px!important}
.pl15px_s,.pl15px_sm,.pl15px{padding-left:15px!important}
.pl20px_s,.pl20px_sm,.pl20px{padding-left:20px!important}
.pl30px_s,.pl30px_sm,.pl30px{padding-left:30px!important}
.pl45px_s,.pl45px_sm,.pl45px{padding-left:45px!important}
.pl60px_s,.pl60px_sm,.pl60px{padding-left:60px!important}
.pl75px_s,.pl75px_sm,.pl75px{padding-left:75px!important}
.pr0px_s,.pr0px_sm,.pr0px{padding-right:0!important}
.pr5px_s,.pr5px_sm,.pr5px{padding-right:5px!important}
.pr10px_s,.pr10px_sm,.pr10px{padding-right:10px!important}
.pr15px_s,.pr15px_sm,.pr15px{padding-right:15px!important}
.pr20px_s,.pr20px_sm,.pr20px{padding-right:20px!important}
.pr30px_s,.pr30px_sm,.pr30px{padding-right:30px!important}
.pr45px_s,.pr45px_sm,.pr45px{padding-right:45px!important}
.pr60px_s,.pr60px_sm,.pr60px{padding-right:60px!important}
.pr75px_s,.pr75px_sm,.pr75px{padding-right:75px!important}
}
@media(max-width:575.98px){
.clb_x:after{clear:both}
.clb_x:before,.clb_x:after{content:" ";display:table}
.trs03_x{transition:all .3s ease!important}
.trs0_x{transition:none!important}
.za_x{z-index:auto!important}
.z0_x{z-index:0!important}
.z1_x{z-index:1!important}
.z9_x{z-index:9!important}
.ord0_x{order:-1}
.ord99_x{order:99}
.jcfs_x{justify-content:flex-start}
.jcc_x{justify-content:center}
.jcfe_x{justify-content:flex-end}
.aifs_x{align-items:flex-start}
.aic_x{align-items:center}
.aife_x{align-items:flex-end}
.fx_x{flex:0 1 auto!important}
.df_x{display:flex!important}
.dt_x{display:table!important}
.db_x{display:block!important}
.dib_x{display:inline-block!important}
.fln_x{float:none!important}
.fll_x{float:left!important}
.flr_x{float:right!important}
.posr_x{position:relative!important}
.posa_x{position:absolute!important}
.posf_x{position:fixed!important}
.ovh_x{overflow:hidden!important}
.ovv_x{overflow:visible!important}
.mawn_x{max-width:none!important}
.maw100pc_x{max-width:100%!important}
.ha_x{height:auto!important}
.fi_x{filter:invert(1)!important}
.tshn_x{text-shadow:none!important}
.bxshn_x{box-shadow:none!important}
.w100pc_x{width:100%!important}
.h100pc_x{height:100%!important}
.tal_x{text-align:left!important}
.tar_x{text-align:right!important}
.tac_x{text-align:center!important}
.ttu_x{text-transform:uppercase!important}
.tdu_x{text-decoration:underline!important}
.fwb_x{font-weight:600!important}
.cfff_x{color:#fff!important}
.c000_x{color:#000!important}
.mlra_x{margin-left:auto!important;margin-right:auto!important}
.m0px_x{margin:0!important}
.mt0px_x{margin-top:0!important}
.mt5px_x{margin-top:5px!important}
.mt10px_x{margin-top:10px!important}
.mt15px_x{margin-top:15px!important}
.mt20px_x{margin-top:20px!important}
.mt30px_x{margin-top:30px!important}
.mt45px_x{margin-top:45px!important}
.mt60px_x{margin-top:60px!important}
.mt75px_x{margin-top:75px!important}
.mb0px_x{margin-bottom:0!important}
.mb5px_x{margin-bottom:5px!important}
.mb10px_x{margin-bottom:10px!important}
.mb15px_x{margin-bottom:15px!important}
.mb20px_x{margin-bottom:20px!important}
.mb30px_x{margin-bottom:30px!important}
.mb45px_x{margin-bottom:45px!important}
.mb60px_x{margin-bottom:60px!important}
.mb75px_x{margin-bottom:75px!important}
.ml0px_x{margin-left:0!important}
.ml5px_x{margin-left:5px!important}
.ml10px_x{margin-left:10px!important}
.ml15px_x{margin-left:15px!important}
.ml20px_x{margin-left:20px!important}
.ml30px_x{margin-left:30px!important}
.ml45px_x{margin-left:45px!important}
.ml60px_x{margin-left:60px!important}
.ml75px_x{margin-left:75px!important}
.mr0px_x{margin-right:0!important}
.mr5px_x{margin-right:5px!important}
.mr10px_x{margin-right:10px!important}
.mr15px_x{margin-right:15px!important}
.mr20px_x{margin-right:20px!important}
.mr30px_x{margin-right:30px!important}
.mr45px_x{margin-right:45px!important}
.mr60px_x{margin-right:60px!important}
.mr75px_x{margin-right:75px!important}
.p0px_x{padding:0!important}
.pt0px_x{padding-top:0!important}
.pt5px_x{padding-top:5px!important}
.pt10px_x{padding-top:10px!important}
.pt15px_x{padding-top:15px!important}
.pt20px_x{padding-top:20px!important}
.pt30px_x{padding-top:30px!important}
.pt45px_x{padding-top:45px!important}
.pt60px_x{padding-top:60px!important}
.pt75px_x{padding-top:75px!important}
.pb0_x{padding-bottom:0!important}
.pb5px_x{padding-bottom:5px!important}
.pb10px_x{padding-bottom:10px!important}
.pb15px_x{padding-bottom:15px!important}
.pb20px_x{padding-bottom:20px!important}
.pb30px_x{padding-bottom:30px!important}
.pb45px_x{padding-bottom:45px!important}
.pb60px_x{padding-bottom:60px!important}
.pb75px_x{padding-bottom:75px!important}
.pl0px_x{padding-left:0!important}
.pl5px_x{padding-left:5px!important}
.pl10px_x{padding-left:10px!important}
.pl15px_x{padding-left:15px!important}
.pl20px_x{padding-left:20px!important}
.pl30px_x{padding-left:30px!important}
.pl45px_x{padding-left:45px!important}
.pl60px_x{padding-left:60px!important}
.pl75px_x{padding-left:75px!important}
.pr0px_x{padding-right:0!important}
.pr5px_x{padding-right:5px!important}
.pr10px_x{padding-right:10px!important}
.pr15px_x{padding-right:15px!important}
.pr20px_x{padding-right:20px!important}
.pr30px_x{padding-right:30px!important}
.pr45px_x{padding-right:45px!important}
.pr60px_x{padding-right:60px!important}
.pr75px_x{padding-right:75px!important}
}
@media (min-width:768px) and (max-width:991.98px){
.clb_m:after,.clb_sm:after,.clb_ml:after,.clb:after{clear:both}
.clb_m:before,.clb_m:after,.clb_sm:before,.clb_sm:after,.clb_ml:before,.clb_ml:after,.clb:before,.clb:after{content:" ";display:table}
.trs03_m,.trs03_sm,.trs03_ml,.trs03{transition:all .3s ease!important}
.trs0_m,.trs0_sm,.trs0_ml,.trs0{transition:none!important}
.za_m,.za_sm,.za_ml,.za{z-index:auto!important}
.z0_m,.z0_sm,.z0_ml,.z0{z-index:0!important}
.z1_m,.z1_sm,.z1_ml,.z1{z-index:1!important}
.z9_m,.z9_sm,.z9_ml,.z9{z-index:9!important}
.ord0_m,.ord0_sm,.ord0_ml,.ord0{order:-1}
.ord99_m,.ord99_sm,.ord99_ml,.ord99{order:99}
.jcfs_m,.jcfs_sm,.jcfs_ml,.jcfs{justify-content:flex-start}
.jcc_m,.jcc_sm,.jcc_ml,.jcc{justify-content:center}
.jcfe_m,.jcfe_sm,.jcfe_ml,.jcfe{justify-content:flex-end}
.aifs_m,.aifs_sm,.aifs_ml,.aifs{align-items:flex-start}
.aic_m,.aic_sm,.aic_ml,.aic{align-items:center}
.aife_m,.aife_sm,.aife_ml,.aife{align-items:flex-end}
.fx_m,.fx_sm,.fx_ml,.fx{flex:0 1 auto!important}
.df_m,.df_sm,.df_ml,.df{display:flex!important}
.dt_m,.dt_sm,.dt_ml,.dt{display:table!important}
.db_m,.db_sm,.db_ml,.db{display:block!important}
.dib_m,.dib_sm,.dib_ml,.dib{display:inline-block!important}
.fln_m,.fln_sm,.fln_ml,.fln{float:none!important}
.fll_m,.fll_sm,.fll_ml,.fll{float:left!important}
.flr_m,.flr_sm,.flr_ml,.flr{float:right!important}
.posr_m,.posr_sm,.posr_ml,.posr{position:relative!important}
.posa_m,.posa_sm,.posa_ml,.posa{position:absolute!important}
.posf_m,.posf_sm,.posf_ml,.posf{position:fixed!important}
.ovh_m,.ovh_sm,.ovh_ml,.ovh{overflow:hidden!important}
.ovv_m,.ovv_sm,.ovv_ml,.ovv{overflow:visible!important}
.mawn_m,.mawn_sm,.mawn_ml,.mawn{max-width:none!important}
.maw100pc_m,.maw100pc_sm,.maw100pc_ml,.maw100pc{max-width:100%!important}
.ha_m,.ha_sm,.ha_ml,.ha{height:auto!important}
.fi_m,.fi_sm,.fi_ml,.fi{filter:invert(1)!important}
.tshn_m,.tshn_sm,.tshn_ml,.tshn{text-shadow:none!important}
.bxshn_m,.bxshn_sm,.bxshn_ml,.bxshn{box-shadow:none!important}
.w100pc_m,.w100pc_sm,.w100pc_ml,.w100pc{width:100%!important}
.h100pc_m,.h100pc_sm,.h100pc_ml,.h100pc{height:100%!important}
.tal_m,.tal_sm,.tal_ml,.tal{text-align:left!important}
.tar_m,.tar_sm,.tar_ml,.tar{text-align:right!important}
.tac_m,.tac_sm,.tac_ml,.tac{text-align:center!important}
.ttu_m,.ttu_sm,.ttu_ml,.ttu{text-transform:uppercase!important}
.tdu_m,.tdu_sm,.tdu_ml,.tdu{text-decoration:underline!important}
.fwb_m,.fwb_sm,.fwb_ml,.fwb{font-weight:600!important}
.cfff_m,.cfff_sm,.cfff_ml,.cfff{color:#fff!important}
.c000_m,.c000_sm,.c000_ml,.c000{color:#000!important}
.mlra_m,.mlra_sm,.mlra_ml,.mlra{margin-left:auto!important;margin-right:auto!important}
.m0px_m,.m0px_sm,.m0px_ml,.m0px{margin:0!important}
.mt0px_m,.mt0px_sm,.mt0px_ml,.mt0px{margin-top:0!important}
.mt5px_m,.mt5px_sm,.mt5px_ml,.mt5px{margin-top:5px!important}
.mt10px_m,.mt10px_sm,.mt10px_ml,.mt10px{margin-top:10px!important}
.mt15px_m,.mt15px_sm,.mt15px_ml,.mt15px{margin-top:15px!important}
.mt20px_m,.mt20px_sm,.mt20px_ml,.mt20px{margin-top:20px!important}
.mt30px_m,.mt30px_sm,.mt30px_ml,.mt30px{margin-top:30px!important}
.mt45px_m,.mt45px_sm,.mt45px_ml,.mt45px{margin-top:45px!important}
.mt60px_m,.mt60px_sm,.mt60px_ml,.mt60px{margin-top:60px!important}
.mt75px_m,.mt75px_sm,.mt75px_ml,.mt75px{margin-top:75px!important}
.mb0px_m,.mb0px_sm,.mb0px_ml,.mb0px{margin-bottom:0!important}
.mb5px_m,.mb5px_sm,.mb5px_ml,.mb5px{margin-bottom:5px!important}
.mb10px_m,.mb10px_sm,.mb10px_ml,.mb10px{margin-bottom:10px!important}
.mb15px_m,.mb15px_sm,.mb15px_ml,.mb15px{margin-bottom:15px!important}
.mb20px_m,.mb20px_sm,.mb20px_ml,.mb20px{margin-bottom:20px!important}
.mb30px_m,.mb30px_sm,.mb30px_ml,.mb30px{margin-bottom:30px!important}
.mb45px_m,.mb45px_sm,.mb45px_ml,.mb45px{margin-bottom:45px!important}
.mb60px_m,.mb60px_sm,.mb60px_ml,.mb60px{margin-bottom:60px!important}
.mb75px_m,.mb75px_sm,.mb75px_ml,.mb75px{margin-bottom:75px!important}
.ml0px_m,.ml0px_sm,.ml0px_ml,.ml0px{margin-left:0!important}
.ml5px_m,.ml5px_sm,.ml5px_ml,.ml5px{margin-left:5px!important}
.ml10px_m,.ml10px_sm,.ml10px_ml,.ml10px{margin-left:10px!important}
.ml15px_m,.ml15px_sm,.ml15px_ml,.ml15px{margin-left:15px!important}
.ml20px_m,.ml20px_sm,.ml20px_ml,.ml20px{margin-left:20px!important}
.ml30px_m,.ml30px_sm,.ml30px_ml,.ml30px{margin-left:30px!important}
.ml45px_m,.ml45px_sm,.ml45px_ml,.ml45px{margin-left:45px!important}
.ml60px_m,.ml60px_sm,.ml60px_ml,.ml60px{margin-left:60px!important}
.ml75px_m,.ml75px_sm,.ml75px_ml,.ml75px{margin-left:75px!important}
.mr0px_m,.mr0px_sm,.mr0px_ml,.mr0px{margin-right:0!important}
.mr5px_m,.mr5px_sm,.mr5px_ml,.mr5px{margin-right:5px!important}
.mr10px_m,.mr10px_sm,.mr10px_ml,.mr10px{margin-right:10px!important}
.mr15px_m,.mr15px_sm,.mr15px_ml,.mr15px{margin-right:15px!important}
.mr20px_m,.mr20px_sm,.mr20px_ml,.mr20px{margin-right:20px!important}
.mr30px_m,.mr30px_sm,.mr30px_ml,.mr30px{margin-right:30px!important}
.mr45px_m,.mr45px_sm,.mr45px_ml,.mr45px{margin-right:45px!important}
.mr60px_m,.mr60px_sm,.mr60px_ml,.mr60px{margin-right:60px!important}
.mr75px_m,.mr75px_sm,.mr75px_ml,.mr75px{margin-right:75px!important}
.p0px_m,.p0px_sm,.p0px_ml,.p0px{padding:0!important}
.pt0px_m,.pt0px_sm,.pt0px_ml,.pt0{padding-top:0!important}
.pt5px_m,.pt5px_sm,.pt5px_ml,.pt5px{padding-top:5px!important}
.pt10px_m,.pt10px_sm,.pt10px_ml,.pt10px{padding-top:10px!important}
.pt15px_m,.pt15px_sm,.pt15px_ml,.pt15px{padding-top:15px!important}
.pt20px_m,.pt20px_sm,.pt20px_ml,.pt20px{padding-top:20px!important}
.pt30px_m,.pt30px_sm,.pt30px_ml,.pt30px{padding-top:30px!important}
.pt45px_m,.pt45px_sm,.pt45px_ml,.pt45px{padding-top:45px!important}
.pt60px_m,.pt60px_sm,.pt60px_ml,.pt60px{padding-top:60px!important}
.pt75px_m,.pt75px_sm,.pt75px_ml,.pt75px{padding-top:75px!important}
.pb0_m,.pb0px_sm,.pb0px_ml,.pb0px{padding-bottom:0!important}
.pb5px_m,.pb5px_sm,.pb5px_ml,.pb5px{padding-bottom:5px!important}
.pb10px_m,.pb10px_sm,.pb10px_ml,.pb10px{padding-bottom:10px!important}
.pb15px_m,.pb15px_sm,.pb15px_ml,.pb15px{padding-bottom:15px!important}
.pb20px_m,.pb20px_sm,.pb20px_ml,.pb20px{padding-bottom:20px!important}
.pb30px_m,.pb30px_sm,.pb30px_ml,.pb30px{padding-bottom:30px!important}
.pb45px_m,.pb45px_sm,.pb45px_ml,.pb45px{padding-bottom:45px!important}
.pb60px_m,.pb60px_sm,.pb60px_ml,.pb60px{padding-bottom:60px!important}
.pb75px_m,.pb75px_sm,.pb75px_ml,.pb75px{padding-bottom:75px!important}
.pl0px_m,.pl0px_sm,.pl0px_ml,.pl0px{padding-left:0!important}
.pl5px_m,.pl5px_sm,.pl5px_ml,.pl5px{padding-left:5px!important}
.pl10px_m,.pl10px_sm,.pl10px_ml,.pl10px{padding-left:10px!important}
.pl15px_m,.pl15px_sm,.pl15px_ml,.pl15px{padding-left:15px!important}
.pl20px_m,.pl20px_sm,.pl20px_ml,.pl20px{padding-left:20px!important}
.pl30px_m,.pl30px_sm,.pl30px_ml,.pl30px{padding-left:30px!important}
.pl45px_m,.pl45px_sm,.pl45px_ml,.pl45px{padding-left:45px!important}
.pl60px_m,.pl60px_sm,.pl60px_ml,.pl60px{padding-left:60px!important}
.pl75px_m,.pl75px_sm,.pl75px_ml,.pl75px{padding-left:75px!important}
.pr0px_m,.pr0px_sm,.pr0px_ml,.pr0px{padding-right:0!important}
.pr5px_m,.pr5px_sm,.pr5px_ml,.pr5px{padding-right:5px!important}
.pr10px_m,.pr10px_sm,.pr10px_ml,.pr10px{padding-right:10px!important}
.pr15px_m,.pr15px_sm,.pr15px_ml,.pr15px{padding-right:15px!important}
.pr20px_m,.pr20px_sm,.pr20px_ml,.pr20px{padding-right:20px!important}
.pr30px_m,.pr30px_sm,.pr30px_ml,.pr30px{padding-right:30px!important}
.pr45px_m,.pr45px_sm,.pr45px_ml,.pr45px{padding-right:45px!important}
.pr60px_m,.pr60px_sm,.pr60px_ml,.pr60px{padding-right:60px!important}
.pr75px_m,.pr75px_sm,.pr75px_ml,.pr75px{padding-right:75px!important}
}
@media(min-width:992px){
.clb_l:after,.clb_ml:after,.clb:after{clear:both}
.clb_l:before,.clb_l:after,.clb_ml:before,.clb_ml:after,.clb:before,.clb:after{content:" ";display:table}
.trs03_l,.trs03_ml,.trs03{transition:all .3s ease!important}
.trs0_l,.trs0_ml,.trs0{transition:none!important}
.za_l,.za_ml,.za{z-index:auto!important}
.z0_l,.z0_ml,.z0{z-index:0!important}
.z1_l,.z1_ml,.z1{z-index:1!important}
.z9_l,.z9_ml,.z9{z-index:9!important}
.ord0_l,.ord0_ml,.ord0{order:-1}
.ord99_l,.ord99_ml,.ord99{order:99}
.jcfs_l,.jcfs_ml,.jcfs{justify-content:flex-start}
.jcc_l,.jcc_ml,.jcc{justify-content:center}
.jcfe_l,.jcfe_ml,.jcfe{justify-content:flex-end}
.aifs_l,.aifs_ml,.aifs{align-items:flex-start}
.aic_l,.aic_ml,.aic{align-items:center}
.aife_l,.aife_ml,.aife{align-items:flex-end}
.fx_l,.fx_ml,.fx{flex:0 1 auto!important}
.df_l,.df_ml,.df{display:flex!important}
.dt_l,.dt_ml,.dt{display:table!important}
.db_l,.db_ml,.db{display:block!important}
.dib_l,.dib_ml,.dib{display:inline-block!important}
.fln_l,.fln_ml,.fln{float:none!important}
.fll_l,.fll_ml,.fll{float:left!important}
.flr_l,.flr_ml,.flr{float:right!important}
.posr_l,.posr_ml,.posr{position:relative!important}
.posa_l,.posa_ml,.posa{position:absolute!important}
.posf_l,.posf_ml,.posf{position:fixed!important}
.ovh_l,.ovh_ml,.ovh{overflow:hidden!important}
.ovv_l,.ovv_ml,.ovv{overflow:visible!important}
.mawn_l,.mawn_ml,.mawn{max-width:none!important}
.maw100pc_l,.maw100pc_ml,.maw100pc{max-width:100%!important}
.ha_l,.ha_ml,.ha{height:auto!important}
.fi_l,.fi_ml,.fi{filter:invert(1)!important}
.tshn_l,.tshn_ml,.tshn{text-shadow:none!important}
.bxshn_l,.bxshn_ml,.bxshn{box-shadow:none!important}
.w100pc_l,.w100pc_ml,.w100pc{width:100%!important}
.h100pc_l,.h100pc_ml,.h100pc{height:100%!important}
.tal_l,.tal_ml,.tal{text-align:left!important}
.tar_l,.tar_ml,.tar{text-align:right!important}
.tac_l,.tac_ml,.tac{text-align:center!important}
.ttu_l,.ttu_ml,.ttu{text-transform:uppercase!important}
.tdu_l,.tdu_ml,.tdu{text-decoration:underline!important}
.fwb_l,.fwb_ml,.fwb{font-weight:600!important}
.cfff_l,.cfff_ml,.cfff{color:#fff!important}
.c000_l,.c000_ml,.c000{color:#000!important}
.mlra_l,.mlra_ml,.mlra{margin-left:auto!important;margin-right:auto!important}
.m0px_l,.m0px_ml,.m0px{margin:0!important}
.mt0px_l,.mt0px_ml,.mt0px{margin-top:0!important}
.mt5px_l,.mt5px_ml,.mt5px{margin-top:5px!important}
.mt10px_l,.mt10px_ml,.mt10px{margin-top:10px!important}
.mt15px_l,.mt15px_ml,.mt15px{margin-top:15px!important}
.mt20px_l,.mt20px_ml,.mt20px{margin-top:20px!important}
.mt30px_l,.mt30px_ml,.mt30px{margin-top:30px!important}
.mt45px_l,.mt45px_ml,.mt45px{margin-top:45px!important}
.mt60px_l,.mt60px_ml,.mt60px{margin-top:60px!important}
.mt75px_l,.mt75px_ml,.mt75px{margin-top:75px!important}
.mb0px_l,.mb0px_ml,.mb0px{margin-bottom:0!important}
.mb5px_l,.mb5px_ml,.mb5px{margin-bottom:5px!important}
.mb10px_l,.mb10px_ml,.mb10px{margin-bottom:10px!important}
.mb15px_l,.mb15px_ml,.mb15px{margin-bottom:15px!important}
.mb20px_l,.mb20px_ml,.mb20px{margin-bottom:20px!important}
.mb30px_l,.mb30px_ml,.mb30px{margin-bottom:30px!important}
.mb45px_l,.mb45px_ml,.mb45px{margin-bottom:45px!important}
.mb60px_l,.mb60px_ml,.mb60px{margin-bottom:60px!important}
.mb75px_l,.mb75px_ml,.mb75px{margin-bottom:75px!important}
.ml0px_l,.ml0px_ml,.ml0px{margin-left:0!important}
.ml5px_l,.ml5px_ml,.ml5px{margin-left:5px!important}
.ml10px_l,.ml10px_ml,.ml10px{margin-left:10px!important}
.ml15px_l,.ml15px_ml,.ml15px{margin-left:15px!important}
.ml20px_l,.ml20px_ml,.ml20px{margin-left:20px!important}
.ml30px_l,.ml30px_ml,.ml30px{margin-left:30px!important}
.ml45px_l,.ml45px_ml,.ml45px{margin-left:45px!important}
.ml60px_l,.ml60px_ml,.ml60px{margin-left:60px!important}
.ml75px_l,.ml75px_ml,.ml75px{margin-left:75px!important}
.mr0px_l,.mr0px_ml,.mr0px{margin-right:0!important}
.mr5px_l,.mr5px_ml,.mr5px{margin-right:5px!important}
.mr10px_l,.mr10px_ml,.mr10px{margin-right:10px!important}
.mr15px_l,.mr15px_ml,.mr15px{margin-right:15px!important}
.mr20px_l,.mr20px_ml,.mr20px{margin-right:20px!important}
.mr30px_l,.mr30px_ml,.mr30px{margin-right:30px!important}
.mr45px_l,.mr45px_ml,.mr45px{margin-right:45px!important}
.mr60px_l,.mr60px_ml,.mr60px{margin-right:60px!important}
.mr75px_l,.mr75px_ml,.mr75px{margin-right:75px!important}
.p0px_l,.p0px_ml,.p0px{padding:0!important}
.pt0px_l,.pt0px_ml,.pt0{padding-top:0!important}
.pt5px_l,.pt5px_ml,.pt5px{padding-top:5px!important}
.pt10px_l,.pt10px_ml,.pt10px{padding-top:10px!important}
.pt15px_l,.pt15px_ml,.pt15px{padding-top:15px!important}
.pt20px_l,.pt20px_ml,.pt20px{padding-top:20px!important}
.pt30px_l,.pt30px_ml,.pt30px{padding-top:30px!important}
.pt45px_l,.pt45px_ml,.pt45px{padding-top:45px!important}
.pt60px_l,.pt60px_ml,.pt60px{padding-top:60px!important}
.pt75px_l,.pt75px_ml,.pt75px{padding-top:75px!important}
.pb0_l,.pb0px_ml,.pb0px{padding-bottom:0!important}
.pb5px_l,.pb5px_ml,.pb5px{padding-bottom:5px!important}
.pb10px_l,.pb10px_ml,.pb10px{padding-bottom:10px!important}
.pb15px_l,.pb15px_ml,.pb15px{padding-bottom:15px!important}
.pb20px_l,.pb20px_ml,.pb20px{padding-bottom:20px!important}
.pb30px_l,.pb30px_ml,.pb30px{padding-bottom:30px!important}
.pb45px_l,.pb45px_ml,.pb45px{padding-bottom:45px!important}
.pb60px_l,.pb60px_ml,.pb60px{padding-bottom:60px!important}
.pb75px_l,.pb75px_ml,.pb75px{padding-bottom:75px!important}
.pl0px_l,.pl0px_ml,.pl0px{padding-left:0!important}
.pl5px_l,.pl5px_ml,.pl5px{padding-left:5px!important}
.pl10px_l,.pl10px_ml,.pl10px{padding-left:10px!important}
.pl15px_l,.pl15px_ml,.pl15px{padding-left:15px!important}
.pl20px_l,.pl20px_ml,.pl20px{padding-left:20px!important}
.pl30px_l,.pl30px_ml,.pl30px{padding-left:30px!important}
.pl45px_l,.pl45px_ml,.pl45px{padding-left:45px!important}
.pl60px_l,.pl60px_ml,.pl60px{padding-left:60px!important}
.pl75px_l,.pl75px_ml,.pl75px{padding-left:75px!important}
.pr0px_l,.pr0px_ml,.pr0px{padding-right:0!important}
.pr5px_l,.pr5px_ml,.pr5px{padding-right:5px!important}
.pr10px_l,.pr10px_ml,.pr10px{padding-right:10px!important}
.pr15px_l,.pr15px_ml,.pr15px{padding-right:15px!important}
.pr20px_l,.pr20px_ml,.pr20px{padding-right:20px!important}
.pr30px_l,.pr30px_ml,.pr30px{padding-right:30px!important}
.pr45px_l,.pr45px_ml,.pr45px{padding-right:45px!important}
.pr60px_l,.pr60px_ml,.pr60px{padding-right:60px!important}
.pr75px_l,.pr75px_ml,.pr75px{padding-right:75px!important}
}
@media(min-width:1200px){
.clb_h:after{clear:both}
.clb_h:before,.clb_h:after{content:" ";display:table}
.trs03_h{transition:all .3s ease!important}
.trs0_h{transition:none!important}
.za_h{z-index:auto!important}
.z0_h{z-index:0!important}
.z1_h{z-index:1!important}
.z9_h{z-index:9!important}
.ord0_h{order:-1}
.ord99_h{order:99}
.jcfs_h{justify-content:flex-start}
.jcc_h{justify-content:center}
.jcfe_h{justify-content:flex-end}
.aifs_h{align-items:flex-start}
.aic_h{align-items:center}
.aife_h{align-items:flex-end}
.fx_h{flex:0 1 auto!important}
.df_h{display:flex!important}
.dt_h{display:table!important}
.db_h{display:block!important}
.dib_h{display:inline-block!important}
.fln_h{float:none!important}
.fll_h{float:left!important}
.flr_h{float:right!important}
.posr_h{position:relative!important}
.posa_h{position:absolute!important}
.posf_h{position:fixed!important}
.ovh_h{overflow:hidden!important}
.ovv_h{overflow:visible!important}
.mawn_h{max-width:none!important}
.maw100pc_h{max-width:100%!important}
.ha_h{height:auto!important}
.fi_h{filter:invert(1)!important}
.tshn_h{text-shadow:none!important}
.bxshn_h{box-shadow:none!important}
.w100pc_h{width:100%!important}
.h100pc_h{height:100%!important}
.tal_h{text-align:left!important}
.tar_h{text-align:right!important}
.tac_h{text-align:center!important}
.ttu_h{text-transform:uppercase!important}
.tdu_h{text-decoration:underline!important}
.fwb_h{font-weight:600!important}
.cfff_h{color:#fff!important}
.c000_h{color:#000!important}
.mlra_h{margin-left:auto!important;margin-right:auto!important}
.m0px_h{margin:0!important}
.mt0px_h{margin-top:0!important}
.mt5px_h{margin-top:5px!important}
.mt10px_h{margin-top:10px!important}
.mt15px_h{margin-top:15px!important}
.mt20px_h{margin-top:20px!important}
.mt30px_h{margin-top:30px!important}
.mt45px_h{margin-top:45px!important}
.mt60px_h{margin-top:60px!important}
.mt75px_h{margin-top:75px!important}
.mb0px_h{margin-bottom:0!important}
.mb5px_h{margin-bottom:5px!important}
.mb10px_h{margin-bottom:10px!important}
.mb15px_h{margin-bottom:15px!important}
.mb20px_h{margin-bottom:20px!important}
.mb30px_h{margin-bottom:30px!important}
.mb45px_h{margin-bottom:45px!important}
.mb60px_h{margin-bottom:60px!important}
.mb75px_h{margin-bottom:75px!important}
.ml0px_h{margin-left:0!important}
.ml5px_h{margin-left:5px!important}
.ml10px_h{margin-left:10px!important}
.ml15px_h{margin-left:15px!important}
.ml20px_h{margin-left:20px!important}
.ml30px_h{margin-left:30px!important}
.ml45px_h{margin-left:45px!important}
.ml60px_h{margin-left:60px!important}
.ml75px_h{margin-left:75px!important}
.mr0px_h{margin-right:0!important}
.mr5px_h{margin-right:5px!important}
.mr10px_h{margin-right:10px!important}
.mr15px_h{margin-right:15px!important}
.mr20px_h{margin-right:20px!important}
.mr30px_h{margin-right:30px!important}
.mr45px_h{margin-right:45px!important}
.mr60px_h{margin-right:60px!important}
.mr75px_h{margin-right:75px!important}
.p0px_h{padding:0!important}
.pt0px_h{padding-top:0!important}
.pt5px_h{padding-top:5px!important}
.pt10px_h{padding-top:10px!important}
.pt15px_h{padding-top:15px!important}
.pt20px_h{padding-top:20px!important}
.pt30px_h{padding-top:30px!important}
.pt45px_h{padding-top:45px!important}
.pt60px_h{padding-top:60px!important}
.pt75px_h{padding-top:75px!important}
.pb0_h{padding-bottom:0!important}
.pb5px_h{padding-bottom:5px!important}
.pb10px_h{padding-bottom:10px!important}
.pb15px_h{padding-bottom:15px!important}
.pb20px_h{padding-bottom:20px!important}
.pb30px_h{padding-bottom:30px!important}
.pb45px_h{padding-bottom:45px!important}
.pb60px_h{padding-bottom:60px!important}
.pb75px_h{padding-bottom:75px!important}
.pl0px_h{padding-left:0!important}
.pl5px_h{padding-left:5px!important}
.pl10px_h{padding-left:10px!important}
.pl15px_h{padding-left:15px!important}
.pl20px_h{padding-left:20px!important}
.pl30px_h{padding-left:30px!important}
.pl45px_h{padding-left:45px!important}
.pl60px_h{padding-left:60px!important}
.pl75px_h{padding-left:75px!important}
.pr0px_h{padding-right:0!important}
.pr5px_h{padding-right:5px!important}
.pr10px_h{padding-right:10px!important}
.pr15px_h{padding-right:15px!important}
.pr20px_h{padding-right:20px!important}
.pr30px_h{padding-right:30px!important}
.pr45px_h{padding-right:45px!important}
.pr60px_h{padding-right:60px!important}
.pr75px_h{padding-right:75px!important}
}
@media(min-width:1600px) {
.clb_f:after{clear:both}
.clb_f:before,.clb_f:after{content:" ";display:table}
.trs03_f{transition:all .3s ease!important}
.trs0_f{transition:none!important}
.za_f{z-index:auto!important}
.z0_f{z-index:0!important}
.z1_f{z-index:1!important}
.z9_f{z-index:9!important}
.ord0_f{order:-1}
.ord99_f{order:99}
.jcfs_f{justify-content:flex-start}
.jcc_f{justify-content:center}
.jcfe_f{justify-content:flex-end}
.aifs_f{align-items:flex-start}
.aic_f{align-items:center}
.aife_f{align-items:flex-end}
.fx_f{flex:0 1 auto!important}
.df_f{display:flex!important}
.dt_f{display:table!important}
.db_f{display:block!important}
.dib_f{display:inline-block!important}
.fln_f{float:none!important}
.fll_f{float:left!important}
.flr_f{float:right!important}
.posr_f{position:relative!important}
.posa_f{position:absolute!important}
.posf_f{position:fixed!important}
.ovh_f{overflow:hidden!important}
.ovv_f{overflow:visible!important}
.mawn_f{max-width:none!important}
.maw100pc_f{max-width:100%!important}
.ha_f{height:auto!important}
.fi_f{filter:invert(1)!important}
.tshn_f{text-shadow:none!important}
.bxshn_f{box-shadow:none!important}
.w100pc_f{width:100%!important}
.h100pc_f{height:100%!important}
.tal_f{text-align:left!important}
.tar_f{text-align:right!important}
.tac_f{text-align:center!important}
.ttu_f{text-transform:uppercase!important}
.tdu_f{text-decoration:underline!important}
.fwb_f{font-weight:600!important}
.cfff_f{color:#fff!important}
.c000_f{color:#000!important}
.mlra_f{margin-left:auto!important;margin-right:auto!important}
.m0px_f{margin:0!important}
.mt0px_f{margin-top:0!important}
.mt5px_f{margin-top:5px!important}
.mt10px_f{margin-top:10px!important}
.mt15px_f{margin-top:15px!important}
.mt20px_f{margin-top:20px!important}
.mt30px_f{margin-top:30px!important}
.mt45px_f{margin-top:45px!important}
.mt60px_f{margin-top:60px!important}
.mt75px_f{margin-top:75px!important}
.mb0px_f{margin-bottom:0!important}
.mb5px_f{margin-bottom:5px!important}
.mb10px_f{margin-bottom:10px!important}
.mb15px_f{margin-bottom:15px!important}
.mb20px_f{margin-bottom:20px!important}
.mb30px_f{margin-bottom:30px!important}
.mb45px_f{margin-bottom:45px!important}
.mb60px_f{margin-bottom:60px!important}
.mb75px_f{margin-bottom:75px!important}
.ml0px_f{margin-left:0!important}
.ml5px_f{margin-left:5px!important}
.ml10px_f{margin-left:10px!important}
.ml15px_f{margin-left:15px!important}
.ml20px_f{margin-left:20px!important}
.ml30px_f{margin-left:30px!important}
.ml45px_f{margin-left:45px!important}
.ml60px_f{margin-left:60px!important}
.ml75px_f{margin-left:75px!important}
.mr0px_f{margin-right:0!important}
.mr5px_f{margin-right:5px!important}
.mr10px_f{margin-right:10px!important}
.mr15px_f{margin-right:15px!important}
.mr20px_f{margin-right:20px!important}
.mr30px_f{margin-right:30px!important}
.mr45px_f{margin-right:45px!important}
.mr60px_f{margin-right:60px!important}
.mr75px_f{margin-right:75px!important}
.p0px_f{padding:0!important}
.pt0px_f{padding-top:0!important}
.pt5px_f{padding-top:5px!important}
.pt10px_f{padding-top:10px!important}
.pt15px_f{padding-top:15px!important}
.pt20px_f{padding-top:20px!important}
.pt30px_f{padding-top:30px!important}
.pt45px_f{padding-top:45px!important}
.pt60px_f{padding-top:60px!important}
.pt75px_f{padding-top:75px!important}
.pb0_f{padding-bottom:0!important}
.pb5px_f{padding-bottom:5px!important}
.pb10px_f{padding-bottom:10px!important}
.pb15px_f{padding-bottom:15px!important}
.pb20px_f{padding-bottom:20px!important}
.pb30px_f{padding-bottom:30px!important}
.pb45px_f{padding-bottom:45px!important}
.pb60px_f{padding-bottom:60px!important}
.pb75px_f{padding-bottom:75px!important}
.pl0px_f{padding-left:0!important}
.pl5px_f{padding-left:5px!important}
.pl10px_f{padding-left:10px!important}
.pl15px_f{padding-left:15px!important}
.pl20px_f{padding-left:20px!important}
.pl30px_f{padding-left:30px!important}
.pl45px_f{padding-left:45px!important}
.pl60px_f{padding-left:60px!important}
.pl75px_f{padding-left:75px!important}
.pr0px_f{padding-right:0!important}
.pr5px_f{padding-right:5px!important}
.pr10px_f{padding-right:10px!important}
.pr15px_f{padding-right:15px!important}
.pr20px_f{padding-right:20px!important}
.pr30px_f{padding-right:30px!important}
.pr45px_f{padding-right:45px!important}
.pr60px_f{padding-right:60px!important}
.pr75px_f{padding-right:75px!important}
} | src/lustrap.util.css | .dn{display:none!important}
@media(max-width:575.98px){
.dn_x_only,.dn_x,.dn_s,.dn_sm{display:none!important}
}
@media(min-width:576px) and (max-width:767.98px) {
.dn_s_only,.dn_s,.dn_sm{display:none!important}
}
@media(min-width:768px) and (max-width:991.98px){
.dn_m_only,.dn_m,.dn_sm,.dn_ml{display:none!important}
}
@media(min-width:992px) and (max-width:1199.98px){
.dn_l_only,.dn_l,.dn_ml{display:none!important}
}
@media(min-width:1200px) and (max-width:1599.98px){
.dn_h_only,.dn_h,.dn_ml,.dn_l{display:none!important}
}
@media(min-width:1600px){
.dn_f_only,.dn_f,.dn_ml,.dn_l,.dn_h{display:none!important}
}
@media (hover:none), (high-contrast: none) {
.dn_touch {display:none!important}
}
@media(max-width:767.98px){
.clb_s:after,.clb_sm:after,.clb:after{clear:both}
.clb_s:before,.clb_s:after,.clb_sm:before,.clb_sm:after,.clb:before,.clb:after{content:" ";display:table}
.trs03_s,.trs03_sm,.trs03{transition:all .3s ease!important}
.trs0_s,.trs0_sm,.trs0{transition:none!important}
.za_s,.za_sm,.za{z-index:auto!important}
.z0_s,.z0_sm,.z0{z-index:0!important}
.z1_s,.z1_sm,.z1{z-index:1!important}
.z9_s,.z9_sm,.z9{z-index:9!important}
.ord0_s,.ord0_sm,.ord0{order:-1}
.ord99_s,.ord99_sm,.ord99{order:99}
.jcfs_s,.jcfs_sm,.jcfs{justify-content:flex-start}
.jcc_s,.jcc_sm,.jcc{justify-content:center}
.jcfe_s,.jcfe_sm,.jcfe{justify-content:flex-end}
.aifs_s,.aifs_sm,.aifs{align-items:flex-start}
.aic_s,.aic_sm,.aic{align-items:center}
.aife_s,.aife_sm,.aife{align-items:flex-end}
.fx_s,.fx_sm,.fx{flex:0 1 auto!important}
.df_s,.df_sm,.df{display:flex!important}
.dt_s,.dt_sm,.dt{display:table!important}
.db_s,.db_sm,.db{display:block!important}
.dib_s,.dib_sm,.dib{display:inline-block!important}
.fln_s,.fln_sm,.fln{float:none!important}
.fll_s,.fll_sm,.fll{float:left!important}
.flr_s,.flr_sm,.flr{float:right!important}
.posr_s,.posr_sm,.posr{position:relative!important}
.posa_s,.posa_sm,.posa{position:absolute!important}
.posf_s,.posf_sm,.posf{position:fixed!important}
.ovh_s,.ovh_sm,.ovh{overflow:hidden!important}
.ovv_s,.ovv_sm,.ovv{overflow:visible!important}
.mawn_s,.mawn_sm,.mawn{max-width:none!important}
.maw100pc_s,.maw100pc_sm,.maw100pc{max-width:100%!important}
.ha_s,.ha_sm,.ha{height:auto!important}
.fi_s,.fi_sm,.fi{filter:invert(1)!important}
.tshn_s,.tshn_sm,.tshn{text-shadow:none!important}
.bxshn_s,.bxshn_sm,.bxshn{box-shadow:none!important}
.w100pc_s,.w100pc_sm,.w100pc{width:100%!important}
.h100pc_s,.h100pc_sm,.h100pc{height:100%!important}
.tal_s,.tal_sm,.tal{text-align:left!important}
.tar_s,.tar_sm,.tar{text-align:right!important}
.tac_s,.tac_sm,.tac{text-align:center!important}
.ttu_s,.ttu_sm,.ttu{text-transform:uppercase!important}
.tdu_s,.tdu_sm,.tdu{text-decoration:underline!important}
.fwb_s,.fwb_sm,.fwb{font-weight:600!important}
.cfff_s,.cfff_sm,.cfff{color:#fff!important}
.c000_s,.c000_sm,.c000{color:#000!important}
.mlra_s,.mlra_sm,.mlra{margin-left:auto!important;margin-right:auto!important}
.m0px_s,.m0px_sm,.m0px{margin:0!important}
.mt0px_s,.mt0px_sm,.mt0px{margin-top:0!important}
.mt5px_s,.mt5px_sm,.mt5px{margin-top:5px!important}
.mt10px_s,.mt10px_sm,.mt10px{margin-top:10px!important}
.mt15px_s,.mt15px_sm,.mt15px{margin-top:15px!important}
.mt20px_s,.mt20px_sm,.mt20px{margin-top:20px!important}
.mt30px_s,.mt30px_sm,.mt30px{margin-top:30px!important}
.mt45px_s,.mt45px_sm,.mt45px{margin-top:45px!important}
.mt60px_s,.mt60px_sm,.mt60px{margin-top:60px!important}
.mt75px_s,.mt75px_sm,.mt75px{margin-top:75px!important}
.mb0px_s,.mb0px_sm,.mb0px{margin-bottom:0!important}
.mb5px_s,.mb5px_sm,.mb5px{margin-bottom:5px!important}
.mb10px_s,.mb10px_sm,.mb10px{margin-bottom:10px!important}
.mb15px_s,.mb15px_sm,.mb15px{margin-bottom:15px!important}
.mb20px_s,.mb20px_sm,.mb20px{margin-bottom:20px!important}
.mb30px_s,.mb30px_sm,.mb30px{margin-bottom:30px!important}
.mb45px_s,.mb45px_sm,.mb45px{margin-bottom:45px!important}
.mb60px_s,.mb60px_sm,.mb60px{margin-bottom:60px!important}
.mb75px_s,.mb75px_sm,.mb75px{margin-bottom:75px!important}
.ml0px_s,.ml0px_sm,.ml0px{margin-left:0!important}
.ml5px_s,.ml5px_sm,.ml5px{margin-left:5px!important}
.ml10px_s,.ml10px_sm,.ml10px{margin-left:10px!important}
.ml15px_s,.ml15px_sm,.ml15px{margin-left:15px!important}
.ml20px_s,.ml20px_sm,.ml20px{margin-left:20px!important}
.ml30px_s,.ml30px_sm,.ml30px{margin-left:30px!important}
.ml45px_s,.ml45px_sm,.ml45px{margin-left:45px!important}
.ml60px_s,.ml60px_sm,.ml60px{margin-left:60px!important}
.ml75px_s,.ml75px_sm,.ml75px{margin-left:75px!important}
.mr0px_s,.mr0px_sm,.mr0px{margin-right:0!important}
.mr5px_s,.mr5px_sm,.mr5px{margin-right:5px!important}
.mr10px_s,.mr10px_sm,.mr10px{margin-right:10px!important}
.mr15px_s,.mr15px_sm,.mr15px{margin-right:15px!important}
.mr20px_s,.mr20px_sm,.mr20px{margin-right:20px!important}
.mr30px_s,.mr30px_sm,.mr30px{margin-right:30px!important}
.mr45px_s,.mr45px_sm,.mr45px{margin-right:45px!important}
.mr60px_s,.mr60px_sm,.mr60px{margin-right:60px!important}
.mr75px_s,.mr75px_sm,.mr75px{margin-right:75px!important}
.p0px_s,.p0px_sm,.p0px{padding:0!important}
.pt0px_s,.pt0px_sm,.pt0{padding-top:0!important}
.pt5px_s,.pt5px_sm,.pt5px{padding-top:5px!important}
.pt10px_s,.pt10px_sm,.pt10px{padding-top:10px!important}
.pt15px_s,.pt15px_sm,.pt15px{padding-top:15px!important}
.pt20px_s,.pt20px_sm,.pt20px{padding-top:20px!important}
.pt30px_s,.pt30px_sm,.pt30px{padding-top:30px!important}
.pt45px_s,.pt45px_sm,.pt45px{padding-top:45px!important}
.pt60px_s,.pt60px_sm,.pt60px{padding-top:60px!important}
.pt75px_s,.pt75px_sm,.pt75px{padding-top:75px!important}
.pb0_s,.pb0px_sm,.pb0px{padding-bottom:0!important}
.pb5px_s,.pb5px_sm,.pb5px{padding-bottom:5px!important}
.pb10px_s,.pb10px_sm,.pb10px{padding-bottom:10px!important}
.pb15px_s,.pb15px_sm,.pb15px{padding-bottom:15px!important}
.pb20px_s,.pb20px_sm,.pb20px{padding-bottom:20px!important}
.pb30px_s,.pb30px_sm,.pb30px{padding-bottom:30px!important}
.pb45px_s,.pb45px_sm,.pb45px{padding-bottom:45px!important}
.pb60px_s,.pb60px_sm,.pb60px{padding-bottom:60px!important}
.pb75px_s,.pb75px_sm,.pb75px{padding-bottom:75px!important}
.pl0px_s,.pl0px_sm,.pl0px{padding-left:0!important}
.pl5px_s,.pl5px_sm,.pl5px{padding-left:5px!important}
.pl10px_s,.pl10px_sm,.pl10px{padding-left:10px!important}
.pl15px_s,.pl15px_sm,.pl15px{padding-left:15px!important}
.pl20px_s,.pl20px_sm,.pl20px{padding-left:20px!important}
.pl30px_s,.pl30px_sm,.pl30px{padding-left:30px!important}
.pl45px_s,.pl45px_sm,.pl45px{padding-left:45px!important}
.pl60px_s,.pl60px_sm,.pl60px{padding-left:60px!important}
.pl75px_s,.pl75px_sm,.pl75px{padding-left:75px!important}
.pr0px_s,.pr0px_sm,.pr0px{padding-right:0!important}
.pr5px_s,.pr5px_sm,.pr5px{padding-right:5px!important}
.pr10px_s,.pr10px_sm,.pr10px{padding-right:10px!important}
.pr15px_s,.pr15px_sm,.pr15px{padding-right:15px!important}
.pr20px_s,.pr20px_sm,.pr20px{padding-right:20px!important}
.pr30px_s,.pr30px_sm,.pr30px{padding-right:30px!important}
.pr45px_s,.pr45px_sm,.pr45px{padding-right:45px!important}
.pr60px_s,.pr60px_sm,.pr60px{padding-right:60px!important}
.pr75px_s,.pr75px_sm,.pr75px{padding-right:75px!important}
}
@media(max-width:575.98px){
.clb_x:after{clear:both}
.clb_x:before,.clb_x:after{content:" ";display:table}
.trs03_x{transition:all .3s ease!important}
.trs0_x{transition:none!important}
.za_x{z-index:auto!important}
.z0_x{z-index:0!important}
.z1_x{z-index:1!important}
.z9_x{z-index:9!important}
.ord0_x{order:-1}
.ord99_x{order:99}
.jcfs_x{justify-content:flex-start}
.jcc_x{justify-content:center}
.jcfe_x{justify-content:flex-end}
.aifs_x{align-items:flex-start}
.aic_x{align-items:center}
.aife_x{align-items:flex-end}
.fx_x{flex:0 1 auto!important}
.df_x{display:flex!important}
.dt_x{display:table!important}
.db_x{display:block!important}
.dib_x{display:inline-block!important}
.fln_x{float:none!important}
.fll_x{float:left!important}
.flr_x{float:right!important}
.posr_x{position:relative!important}
.posa_x{position:absolute!important}
.posf_x{position:fixed!important}
.ovh_x{overflow:hidden!important}
.ovv_x{overflow:visible!important}
.mawn_x{max-width:none!important}
.maw100pc_x{max-width:100%!important}
.ha_x{height:auto!important}
.fi_x{filter:invert(1)!important}
.tshn_x{text-shadow:none!important}
.bxshn_x{box-shadow:none!important}
.w100pc_x{width:100%!important}
.h100pc_x{height:100%!important}
.tal_x{text-align:left!important}
.tar_x{text-align:right!important}
.tac_x{text-align:center!important}
.ttu_x{text-transform:uppercase!important}
.tdu_x{text-decoration:underline!important}
.fwb_x{font-weight:600!important}
.cfff_x{color:#fff!important}
.c000_x{color:#000!important}
.mlra_x{margin-left:auto!important;margin-right:auto!important}
.m0px_x{margin:0!important}
.mt0px_x{margin-top:0!important}
.mt5px_x{margin-top:5px!important}
.mt10px_x{margin-top:10px!important}
.mt15px_x{margin-top:15px!important}
.mt20px_x{margin-top:20px!important}
.mt30px_x{margin-top:30px!important}
.mt45px_x{margin-top:45px!important}
.mt60px_x{margin-top:60px!important}
.mt75px_x{margin-top:75px!important}
.mb0px_x{margin-bottom:0!important}
.mb5px_x{margin-bottom:5px!important}
.mb10px_x{margin-bottom:10px!important}
.mb15px_x{margin-bottom:15px!important}
.mb20px_x{margin-bottom:20px!important}
.mb30px_x{margin-bottom:30px!important}
.mb45px_x{margin-bottom:45px!important}
.mb60px_x{margin-bottom:60px!important}
.mb75px_x{margin-bottom:75px!important}
.ml0px_x{margin-left:0!important}
.ml5px_x{margin-left:5px!important}
.ml10px_x{margin-left:10px!important}
.ml15px_x{margin-left:15px!important}
.ml20px_x{margin-left:20px!important}
.ml30px_x{margin-left:30px!important}
.ml45px_x{margin-left:45px!important}
.ml60px_x{margin-left:60px!important}
.ml75px_x{margin-left:75px!important}
.mr0px_x{margin-right:0!important}
.mr5px_x{margin-right:5px!important}
.mr10px_x{margin-right:10px!important}
.mr15px_x{margin-right:15px!important}
.mr20px_x{margin-right:20px!important}
.mr30px_x{margin-right:30px!important}
.mr45px_x{margin-right:45px!important}
.mr60px_x{margin-right:60px!important}
.mr75px_x{margin-right:75px!important}
.p0px_x{padding:0!important}
.pt0px_x{padding-top:0!important}
.pt5px_x{padding-top:5px!important}
.pt10px_x{padding-top:10px!important}
.pt15px_x{padding-top:15px!important}
.pt20px_x{padding-top:20px!important}
.pt30px_x{padding-top:30px!important}
.pt45px_x{padding-top:45px!important}
.pt60px_x{padding-top:60px!important}
.pt75px_x{padding-top:75px!important}
.pb0_x{padding-bottom:0!important}
.pb5px_x{padding-bottom:5px!important}
.pb10px_x{padding-bottom:10px!important}
.pb15px_x{padding-bottom:15px!important}
.pb20px_x{padding-bottom:20px!important}
.pb30px_x{padding-bottom:30px!important}
.pb45px_x{padding-bottom:45px!important}
.pb60px_x{padding-bottom:60px!important}
.pb75px_x{padding-bottom:75px!important}
.pl0px_x{padding-left:0!important}
.pl5px_x{padding-left:5px!important}
.pl10px_x{padding-left:10px!important}
.pl15px_x{padding-left:15px!important}
.pl20px_x{padding-left:20px!important}
.pl30px_x{padding-left:30px!important}
.pl45px_x{padding-left:45px!important}
.pl60px_x{padding-left:60px!important}
.pl75px_x{padding-left:75px!important}
.pr0px_x{padding-right:0!important}
.pr5px_x{padding-right:5px!important}
.pr10px_x{padding-right:10px!important}
.pr15px_x{padding-right:15px!important}
.pr20px_x{padding-right:20px!important}
.pr30px_x{padding-right:30px!important}
.pr45px_x{padding-right:45px!important}
.pr60px_x{padding-right:60px!important}
.pr75px_x{padding-right:75px!important}
}
@media (min-width:768px) and (max-width:991.98px){
.clb_m:after,.clb_sm:after,.clb_ml:after,.clb:after{clear:both}
.clb_m:before,.clb_m:after,.clb_sm:before,.clb_sm:after,.clb_ml:before,.clb_ml:after,.clb:before,.clb:after{content:" ";display:table}
.trs03_m,.trs03_sm,.trs03_ml,.trs03{transition:all .3s ease!important}
.trs0_m,.trs0_sm,.trs0_ml,.trs0{transition:none!important}
.za_m,.za_sm,.za_ml,.za{z-index:auto!important}
.z0_m,.z0_sm,.z0_ml,.z0{z-index:0!important}
.z1_m,.z1_sm,.z1_ml,.z1{z-index:1!important}
.z9_m,.z9_sm,.z9_ml,.z9{z-index:9!important}
.ord0_m,.ord0_sm,.ord0_ml,.ord0{order:-1}
.ord99_m,.ord99_sm,.ord99_ml,.ord99{order:99}
.jcfs_m,.jcfs_sm,.jcfs_ml,.jcfs{justify-content:flex-start}
.jcc_m,.jcc_sm,.jcc_ml,.jcc{justify-content:center}
.jcfe_m,.jcfe_sm,.jcfe_ml,.jcfe{justify-content:flex-end}
.aifs_m,.aifs_sm,.aifs_ml,.aifs{align-items:flex-start}
.aic_m,.aic_sm,.aic_ml,.aic{align-items:center}
.aife_m,.aife_sm,.aife_ml,.aife{align-items:flex-end}
.fx_m,.fx_sm,.fx_ml,.fx{flex:0 1 auto!important}
.df_m,.df_sm,.df_ml,.df{display:flex!important}
.dt_m,.dt_sm,.dt_ml,.dt{display:table!important}
.db_m,.db_sm,.db_ml,.db{display:block!important}
.dib_m,.dib_sm,.dib_ml,.dib{display:inline-block!important}
.fln_m,.fln_sm,.fln_ml,.fln{float:none!important}
.fll_m,.fll_sm,.fll_ml,.fll{float:left!important}
.flr_m,.flr_sm,.flr_ml,.flr{float:right!important}
.posr_m,.posr_sm,.posr_ml,.posr{position:relative!important}
.posa_m,.posa_sm,.posa_ml,.posa{position:absolute!important}
.posf_m,.posf_sm,.posf_ml,.posf{position:fixed!important}
.ovh_m,.ovh_sm,.ovh_ml,.ovh{overflow:hidden!important}
.ovv_m,.ovv_sm,.ovv_ml,.ovv{overflow:visible!important}
.mawn_m,.mawn_sm,.mawn_ml,.mawn{max-width:none!important}
.maw100pc_m,.maw100pc_sm,.maw100pc_ml,.maw100pc{max-width:100%!important}
.ha_m,.ha_sm,.ha_ml,.ha{height:auto!important}
.fi_m,.fi_sm,.fi_ml,.fi{filter:invert(1)!important}
.tshn_m,.tshn_sm,.tshn_ml,.tshn{text-shadow:none!important}
.bxshn_m,.bxshn_sm,.bxshn_ml,.bxshn{box-shadow:none!important}
.w100pc_m,.w100pc_sm,.w100pc_ml,.w100pc{width:100%!important}
.h100pc_m,.h100pc_sm,.h100pc_ml,.h100pc{height:100%!important}
.tal_m,.tal_sm,.tal_ml,.tal{text-align:left!important}
.tar_m,.tar_sm,.tar_ml,.tar{text-align:right!important}
.tac_m,.tac_sm,.tac_ml,.tac{text-align:center!important}
.ttu_m,.ttu_sm,.ttu_ml,.ttu{text-transform:uppercase!important}
.tdu_m,.tdu_sm,.tdu_ml,.tdu{text-decoration:underline!important}
.fwb_m,.fwb_sm,.fwb_ml,.fwb{font-weight:600!important}
.cfff_m,.cfff_sm,.cfff_ml,.cfff{color:#fff!important}
.c000_m,.c000_sm,.c000_ml,.c000{color:#000!important}
.mlra_m,.mlra_sm,.mlra_ml,.mlra{margin-left:auto!important;margin-right:auto!important}
.m0px_m,.m0px_sm,.m0px_ml,.m0px{margin:0!important}
.mt0px_m,.mt0px_sm,.mt0px_ml,.mt0px{margin-top:0!important}
.mt5px_m,.mt5px_sm,.mt5px_ml,.mt5px{margin-top:5px!important}
.mt10px_m,.mt10px_sm,.mt10px_ml,.mt10px{margin-top:10px!important}
.mt15px_m,.mt15px_sm,.mt15px_ml,.mt15px{margin-top:15px!important}
.mt20px_m,.mt20px_sm,.mt20px_ml,.mt20px{margin-top:20px!important}
.mt30px_m,.mt30px_sm,.mt30px_ml,.mt30px{margin-top:30px!important}
.mt45px_m,.mt45px_sm,.mt45px_ml,.mt45px{margin-top:45px!important}
.mt60px_m,.mt60px_sm,.mt60px_ml,.mt60px{margin-top:60px!important}
.mt75px_m,.mt75px_sm,.mt75px_ml,.mt75px{margin-top:75px!important}
.mb0px_m,.mb0px_sm,.mb0px_ml,.mb0px{margin-bottom:0!important}
.mb5px_m,.mb5px_sm,.mb5px_ml,.mb5px{margin-bottom:5px!important}
.mb10px_m,.mb10px_sm,.mb10px_ml,.mb10px{margin-bottom:10px!important}
.mb15px_m,.mb15px_sm,.mb15px_ml,.mb15px{margin-bottom:15px!important}
.mb20px_m,.mb20px_sm,.mb20px_ml,.mb20px{margin-bottom:20px!important}
.mb30px_m,.mb30px_sm,.mb30px_ml,.mb30px{margin-bottom:30px!important}
.mb45px_m,.mb45px_sm,.mb45px_ml,.mb45px{margin-bottom:45px!important}
.mb60px_m,.mb60px_sm,.mb60px_ml,.mb60px{margin-bottom:60px!important}
.mb75px_m,.mb75px_sm,.mb75px_ml,.mb75px{margin-bottom:75px!important}
.ml0px_m,.ml0px_sm,.ml0px_ml,.ml0px{margin-left:0!important}
.ml5px_m,.ml5px_sm,.ml5px_ml,.ml5px{margin-left:5px!important}
.ml10px_m,.ml10px_sm,.ml10px_ml,.ml10px{margin-left:10px!important}
.ml15px_m,.ml15px_sm,.ml15px_ml,.ml15px{margin-left:15px!important}
.ml20px_m,.ml20px_sm,.ml20px_ml,.ml20px{margin-left:20px!important}
.ml30px_m,.ml30px_sm,.ml30px_ml,.ml30px{margin-left:30px!important}
.ml45px_m,.ml45px_sm,.ml45px_ml,.ml45px{margin-left:45px!important}
.ml60px_m,.ml60px_sm,.ml60px_ml,.ml60px{margin-left:60px!important}
.ml75px_m,.ml75px_sm,.ml75px_ml,.ml75px{margin-left:75px!important}
.mr0px_m,.mr0px_sm,.mr0px_ml,.mr0px{margin-right:0!important}
.mr5px_m,.mr5px_sm,.mr5px_ml,.mr5px{margin-right:5px!important}
.mr10px_m,.mr10px_sm,.mr10px_ml,.mr10px{margin-right:10px!important}
.mr15px_m,.mr15px_sm,.mr15px_ml,.mr15px{margin-right:15px!important}
.mr20px_m,.mr20px_sm,.mr20px_ml,.mr20px{margin-right:20px!important}
.mr30px_m,.mr30px_sm,.mr30px_ml,.mr30px{margin-right:30px!important}
.mr45px_m,.mr45px_sm,.mr45px_ml,.mr45px{margin-right:45px!important}
.mr60px_m,.mr60px_sm,.mr60px_ml,.mr60px{margin-right:60px!important}
.mr75px_m,.mr75px_sm,.mr75px_ml,.mr75px{margin-right:75px!important}
.p0px_m,.p0px_sm,.p0px_ml,.p0px{padding:0!important}
.pt0px_m,.pt0px_sm,.pt0px_ml,.pt0{padding-top:0!important}
.pt5px_m,.pt5px_sm,.pt5px_ml,.pt5px{padding-top:5px!important}
.pt10px_m,.pt10px_sm,.pt10px_ml,.pt10px{padding-top:10px!important}
.pt15px_m,.pt15px_sm,.pt15px_ml,.pt15px{padding-top:15px!important}
.pt20px_m,.pt20px_sm,.pt20px_ml,.pt20px{padding-top:20px!important}
.pt30px_m,.pt30px_sm,.pt30px_ml,.pt30px{padding-top:30px!important}
.pt45px_m,.pt45px_sm,.pt45px_ml,.pt45px{padding-top:45px!important}
.pt60px_m,.pt60px_sm,.pt60px_ml,.pt60px{padding-top:60px!important}
.pt75px_m,.pt75px_sm,.pt75px_ml,.pt75px{padding-top:75px!important}
.pb0_m,.pb0px_sm,.pb0px_ml,.pb0px{padding-bottom:0!important}
.pb5px_m,.pb5px_sm,.pb5px_ml,.pb5px{padding-bottom:5px!important}
.pb10px_m,.pb10px_sm,.pb10px_ml,.pb10px{padding-bottom:10px!important}
.pb15px_m,.pb15px_sm,.pb15px_ml,.pb15px{padding-bottom:15px!important}
.pb20px_m,.pb20px_sm,.pb20px_ml,.pb20px{padding-bottom:20px!important}
.pb30px_m,.pb30px_sm,.pb30px_ml,.pb30px{padding-bottom:30px!important}
.pb45px_m,.pb45px_sm,.pb45px_ml,.pb45px{padding-bottom:45px!important}
.pb60px_m,.pb60px_sm,.pb60px_ml,.pb60px{padding-bottom:60px!important}
.pb75px_m,.pb75px_sm,.pb75px_ml,.pb75px{padding-bottom:75px!important}
.pl0px_m,.pl0px_sm,.pl0px_ml,.pl0px{padding-left:0!important}
.pl5px_m,.pl5px_sm,.pl5px_ml,.pl5px{padding-left:5px!important}
.pl10px_m,.pl10px_sm,.pl10px_ml,.pl10px{padding-left:10px!important}
.pl15px_m,.pl15px_sm,.pl15px_ml,.pl15px{padding-left:15px!important}
.pl20px_m,.pl20px_sm,.pl20px_ml,.pl20px{padding-left:20px!important}
.pl30px_m,.pl30px_sm,.pl30px_ml,.pl30px{padding-left:30px!important}
.pl45px_m,.pl45px_sm,.pl45px_ml,.pl45px{padding-left:45px!important}
.pl60px_m,.pl60px_sm,.pl60px_ml,.pl60px{padding-left:60px!important}
.pl75px_m,.pl75px_sm,.pl75px_ml,.pl75px{padding-left:75px!important}
.pr0px_m,.pr0px_sm,.pr0px_ml,.pr0px{padding-right:0!important}
.pr5px_m,.pr5px_sm,.pr5px_ml,.pr5px{padding-right:5px!important}
.pr10px_m,.pr10px_sm,.pr10px_ml,.pr10px{padding-right:10px!important}
.pr15px_m,.pr15px_sm,.pr15px_ml,.pr15px{padding-right:15px!important}
.pr20px_m,.pr20px_sm,.pr20px_ml,.pr20px{padding-right:20px!important}
.pr30px_m,.pr30px_sm,.pr30px_ml,.pr30px{padding-right:30px!important}
.pr45px_m,.pr45px_sm,.pr45px_ml,.pr45px{padding-right:45px!important}
.pr60px_m,.pr60px_sm,.pr60px_ml,.pr60px{padding-right:60px!important}
.pr75px_m,.pr75px_sm,.pr75px_ml,.pr75px{padding-right:75px!important}
}
@media(min-width:992px){
.clb_l:after,.clb_ml:after,.clb:after{clear:both}
.clb_l:before,.clb_l:after,.clb_ml:before,.clb_ml:after,.clb:before,.clb:after{content:" ";display:table}
.trs03_l,.trs03_ml,.trs03{transition:all .3s ease!important}
.trs0_l,.trs0_ml,.trs0{transition:none!important}
.za_l,.za_ml,.za{z-index:auto!important}
.z0_l,.z0_ml,.z0{z-index:0!important}
.z1_l,.z1_ml,.z1{z-index:1!important}
.z9_l,.z9_ml,.z9{z-index:9!important}
.ord0_l,.ord0_ml,.ord0{order:-1}
.ord99_l,.ord99_ml,.ord99{order:99}
.jcfs_l,.jcfs_ml,.jcfs{justify-content:flex-start}
.jcc_l,.jcc_ml,.jcc{justify-content:center}
.jcfe_l,.jcfe_ml,.jcfe{justify-content:flex-end}
.aifs_l,.aifs_ml,.aifs{align-items:flex-start}
.aic_l,.aic_ml,.aic{align-items:center}
.aife_l,.aife_ml,.aife{align-items:flex-end}
.fx_l,.fx_ml,.fx{flex:0 1 auto!important}
.df_l,.df_ml,.df{display:flex!important}
.dt_l,.dt_ml,.dt{display:table!important}
.db_l,.db_ml,.db{display:block!important}
.dib_l,.dib_ml,.dib{display:inline-block!important}
.fln_l,.fln_ml,.fln{float:none!important}
.fll_l,.fll_ml,.fll{float:left!important}
.flr_l,.flr_ml,.flr{float:right!important}
.posr_l,.posr_ml,.posr{position:relative!important}
.posa_l,.posa_ml,.posa{position:absolute!important}
.posf_l,.posf_ml,.posf{position:fixed!important}
.ovh_l,.ovh_ml,.ovh{overflow:hidden!important}
.ovv_l,.ovv_ml,.ovv{overflow:visible!important}
.mawn_l,.mawn_ml,.mawn{max-width:none!important}
.maw100pc_l,.maw100pc_ml,.maw100pc{max-width:100%!important}
.ha_l,.ha_ml,.ha{height:auto!important}
.fi_l,.fi_ml,.fi{filter:invert(1)!important}
.tshn_l,.tshn_ml,.tshn{text-shadow:none!important}
.bxshn_l,.bxshn_ml,.bxshn{box-shadow:none!important}
.w100pc_l,.w100pc_ml,.w100pc{width:100%!important}
.h100pc_l,.h100pc_ml,.h100pc{height:100%!important}
.tal_l,.tal_ml,.tal{text-align:left!important}
.tar_l,.tar_ml,.tar{text-align:right!important}
.tac_l,.tac_ml,.tac{text-align:center!important}
.ttu_l,.ttu_ml,.ttu{text-transform:uppercase!important}
.tdu_l,.tdu_ml,.tdu{text-decoration:underline!important}
.fwb_l,.fwb_ml,.fwb{font-weight:600!important}
.cfff_l,.cfff_ml,.cfff{color:#fff!important}
.c000_l,.c000_ml,.c000{color:#000!important}
.mlra_l,.mlra_ml,.mlra{margin-left:auto!important;margin-right:auto!important}
.m0px_l,.m0px_ml,.m0px{margin:0!important}
.mt0px_l,.mt0px_ml,.mt0px{margin-top:0!important}
.mt5px_l,.mt5px_ml,.mt5px{margin-top:5px!important}
.mt10px_l,.mt10px_ml,.mt10px{margin-top:10px!important}
.mt15px_l,.mt15px_ml,.mt15px{margin-top:15px!important}
.mt20px_l,.mt20px_ml,.mt20px{margin-top:20px!important}
.mt30px_l,.mt30px_ml,.mt30px{margin-top:30px!important}
.mt45px_l,.mt45px_ml,.mt45px{margin-top:45px!important}
.mt60px_l,.mt60px_ml,.mt60px{margin-top:60px!important}
.mt75px_l,.mt75px_ml,.mt75px{margin-top:75px!important}
.mb0px_l,.mb0px_ml,.mb0px{margin-bottom:0!important}
.mb5px_l,.mb5px_ml,.mb5px{margin-bottom:5px!important}
.mb10px_l,.mb10px_ml,.mb10px{margin-bottom:10px!important}
.mb15px_l,.mb15px_ml,.mb15px{margin-bottom:15px!important}
.mb20px_l,.mb20px_ml,.mb20px{margin-bottom:20px!important}
.mb30px_l,.mb30px_ml,.mb30px{margin-bottom:30px!important}
.mb45px_l,.mb45px_ml,.mb45px{margin-bottom:45px!important}
.mb60px_l,.mb60px_ml,.mb60px{margin-bottom:60px!important}
.mb75px_l,.mb75px_ml,.mb75px{margin-bottom:75px!important}
.ml0px_l,.ml0px_ml,.ml0px{margin-left:0!important}
.ml5px_l,.ml5px_ml,.ml5px{margin-left:5px!important}
.ml10px_l,.ml10px_ml,.ml10px{margin-left:10px!important}
.ml15px_l,.ml15px_ml,.ml15px{margin-left:15px!important}
.ml20px_l,.ml20px_ml,.ml20px{margin-left:20px!important}
.ml30px_l,.ml30px_ml,.ml30px{margin-left:30px!important}
.ml45px_l,.ml45px_ml,.ml45px{margin-left:45px!important}
.ml60px_l,.ml60px_ml,.ml60px{margin-left:60px!important}
.ml75px_l,.ml75px_ml,.ml75px{margin-left:75px!important}
.mr0px_l,.mr0px_ml,.mr0px{margin-right:0!important}
.mr5px_l,.mr5px_ml,.mr5px{margin-right:5px!important}
.mr10px_l,.mr10px_ml,.mr10px{margin-right:10px!important}
.mr15px_l,.mr15px_ml,.mr15px{margin-right:15px!important}
.mr20px_l,.mr20px_ml,.mr20px{margin-right:20px!important}
.mr30px_l,.mr30px_ml,.mr30px{margin-right:30px!important}
.mr45px_l,.mr45px_ml,.mr45px{margin-right:45px!important}
.mr60px_l,.mr60px_ml,.mr60px{margin-right:60px!important}
.mr75px_l,.mr75px_ml,.mr75px{margin-right:75px!important}
.p0px_l,.p0px_ml,.p0px{padding:0!important}
.pt0px_l,.pt0px_ml,.pt0{padding-top:0!important}
.pt5px_l,.pt5px_ml,.pt5px{padding-top:5px!important}
.pt10px_l,.pt10px_ml,.pt10px{padding-top:10px!important}
.pt15px_l,.pt15px_ml,.pt15px{padding-top:15px!important}
.pt20px_l,.pt20px_ml,.pt20px{padding-top:20px!important}
.pt30px_l,.pt30px_ml,.pt30px{padding-top:30px!important}
.pt45px_l,.pt45px_ml,.pt45px{padding-top:45px!important}
.pt60px_l,.pt60px_ml,.pt60px{padding-top:60px!important}
.pt75px_l,.pt75px_ml,.pt75px{padding-top:75px!important}
.pb0_l,.pb0px_ml,.pb0px{padding-bottom:0!important}
.pb5px_l,.pb5px_ml,.pb5px{padding-bottom:5px!important}
.pb10px_l,.pb10px_ml,.pb10px{padding-bottom:10px!important}
.pb15px_l,.pb15px_ml,.pb15px{padding-bottom:15px!important}
.pb20px_l,.pb20px_ml,.pb20px{padding-bottom:20px!important}
.pb30px_l,.pb30px_ml,.pb30px{padding-bottom:30px!important}
.pb45px_l,.pb45px_ml,.pb45px{padding-bottom:45px!important}
.pb60px_l,.pb60px_ml,.pb60px{padding-bottom:60px!important}
.pb75px_l,.pb75px_ml,.pb75px{padding-bottom:75px!important}
.pl0px_l,.pl0px_ml,.pl0px{padding-left:0!important}
.pl5px_l,.pl5px_ml,.pl5px{padding-left:5px!important}
.pl10px_l,.pl10px_ml,.pl10px{padding-left:10px!important}
.pl15px_l,.pl15px_ml,.pl15px{padding-left:15px!important}
.pl20px_l,.pl20px_ml,.pl20px{padding-left:20px!important}
.pl30px_l,.pl30px_ml,.pl30px{padding-left:30px!important}
.pl45px_l,.pl45px_ml,.pl45px{padding-left:45px!important}
.pl60px_l,.pl60px_ml,.pl60px{padding-left:60px!important}
.pl75px_l,.pl75px_ml,.pl75px{padding-left:75px!important}
.pr0px_l,.pr0px_ml,.pr0px{padding-right:0!important}
.pr5px_l,.pr5px_ml,.pr5px{padding-right:5px!important}
.pr10px_l,.pr10px_ml,.pr10px{padding-right:10px!important}
.pr15px_l,.pr15px_ml,.pr15px{padding-right:15px!important}
.pr20px_l,.pr20px_ml,.pr20px{padding-right:20px!important}
.pr30px_l,.pr30px_ml,.pr30px{padding-right:30px!important}
.pr45px_l,.pr45px_ml,.pr45px{padding-right:45px!important}
.pr60px_l,.pr60px_ml,.pr60px{padding-right:60px!important}
.pr75px_l,.pr75px_ml,.pr75px{padding-right:75px!important}
}
@media(min-width:1200px){
.clb_h:after{clear:both}
.clb_h:before,.clb_h:after{content:" ";display:table}
.trs03_h{transition:all .3s ease!important}
.trs0_h{transition:none!important}
.za_h{z-index:auto!important}
.z0_h{z-index:0!important}
.z1_h{z-index:1!important}
.z9_h{z-index:9!important}
.ord0_h{order:-1}
.ord99_h{order:99}
.jcfs_h{justify-content:flex-start}
.jcc_h{justify-content:center}
.jcfe_h{justify-content:flex-end}
.aifs_h{align-items:flex-start}
.aic_h{align-items:center}
.aife_h{align-items:flex-end}
.fx_h{flex:0 1 auto!important}
.df_h{display:flex!important}
.dt_h{display:table!important}
.db_h{display:block!important}
.dib_h{display:inline-block!important}
.fln_h{float:none!important}
.fll_h{float:left!important}
.flr_h{float:right!important}
.posr_h{position:relative!important}
.posa_h{position:absolute!important}
.posf_h{position:fixed!important}
.ovh_h{overflow:hidden!important}
.ovv_h{overflow:visible!important}
.mawn_h{max-width:none!important}
.maw100pc_h{max-width:100%!important}
.ha_h{height:auto!important}
.fi_h{filter:invert(1)!important}
.tshn_h{text-shadow:none!important}
.bxshn_h{box-shadow:none!important}
.w100pc_h{width:100%!important}
.h100pc_h{height:100%!important}
.tal_h{text-align:left!important}
.tar_h{text-align:right!important}
.tac_h{text-align:center!important}
.ttu_h{text-transform:uppercase!important}
.tdu_h{text-decoration:underline!important}
.fwb_h{font-weight:600!important}
.cfff_h{color:#fff!important}
.c000_h{color:#000!important}
.mlra_h{margin-left:auto!important;margin-right:auto!important}
.m0px_h{margin:0!important}
.mt0px_h{margin-top:0!important}
.mt5px_h{margin-top:5px!important}
.mt10px_h{margin-top:10px!important}
.mt15px_h{margin-top:15px!important}
.mt20px_h{margin-top:20px!important}
.mt30px_h{margin-top:30px!important}
.mt45px_h{margin-top:45px!important}
.mt60px_h{margin-top:60px!important}
.mt75px_h{margin-top:75px!important}
.mb0px_h{margin-bottom:0!important}
.mb5px_h{margin-bottom:5px!important}
.mb10px_h{margin-bottom:10px!important}
.mb15px_h{margin-bottom:15px!important}
.mb20px_h{margin-bottom:20px!important}
.mb30px_h{margin-bottom:30px!important}
.mb45px_h{margin-bottom:45px!important}
.mb60px_h{margin-bottom:60px!important}
.mb75px_h{margin-bottom:75px!important}
.ml0px_h{margin-left:0!important}
.ml5px_h{margin-left:5px!important}
.ml10px_h{margin-left:10px!important}
.ml15px_h{margin-left:15px!important}
.ml20px_h{margin-left:20px!important}
.ml30px_h{margin-left:30px!important}
.ml45px_h{margin-left:45px!important}
.ml60px_h{margin-left:60px!important}
.ml75px_h{margin-left:75px!important}
.mr0px_h{margin-right:0!important}
.mr5px_h{margin-right:5px!important}
.mr10px_h{margin-right:10px!important}
.mr15px_h{margin-right:15px!important}
.mr20px_h{margin-right:20px!important}
.mr30px_h{margin-right:30px!important}
.mr45px_h{margin-right:45px!important}
.mr60px_h{margin-right:60px!important}
.mr75px_h{margin-right:75px!important}
.p0px_h{padding:0!important}
.pt0px_h{padding-top:0!important}
.pt5px_h{padding-top:5px!important}
.pt10px_h{padding-top:10px!important}
.pt15px_h{padding-top:15px!important}
.pt20px_h{padding-top:20px!important}
.pt30px_h{padding-top:30px!important}
.pt45px_h{padding-top:45px!important}
.pt60px_h{padding-top:60px!important}
.pt75px_h{padding-top:75px!important}
.pb0_h{padding-bottom:0!important}
.pb5px_h{padding-bottom:5px!important}
.pb10px_h{padding-bottom:10px!important}
.pb15px_h{padding-bottom:15px!important}
.pb20px_h{padding-bottom:20px!important}
.pb30px_h{padding-bottom:30px!important}
.pb45px_h{padding-bottom:45px!important}
.pb60px_h{padding-bottom:60px!important}
.pb75px_h{padding-bottom:75px!important}
.pl0px_h{padding-left:0!important}
.pl5px_h{padding-left:5px!important}
.pl10px_h{padding-left:10px!important}
.pl15px_h{padding-left:15px!important}
.pl20px_h{padding-left:20px!important}
.pl30px_h{padding-left:30px!important}
.pl45px_h{padding-left:45px!important}
.pl60px_h{padding-left:60px!important}
.pl75px_h{padding-left:75px!important}
.pr0px_h{padding-right:0!important}
.pr5px_h{padding-right:5px!important}
.pr10px_h{padding-right:10px!important}
.pr15px_h{padding-right:15px!important}
.pr20px_h{padding-right:20px!important}
.pr30px_h{padding-right:30px!important}
.pr45px_h{padding-right:45px!important}
.pr60px_h{padding-right:60px!important}
.pr75px_h{padding-right:75px!important}
}
@media(min-width:1600px) {
.clb_f:after{clear:both}
.clb_f:before,.clb_f:after{content:" ";display:table}
.trs03_f{transition:all .3s ease!important}
.trs0_f{transition:none!important}
.za_f{z-index:auto!important}
.z0_f{z-index:0!important}
.z1_f{z-index:1!important}
.z9_f{z-index:9!important}
.ord0_f{order:-1}
.ord99_f{order:99}
.jcfs_f{justify-content:flex-start}
.jcc_f{justify-content:center}
.jcfe_f{justify-content:flex-end}
.aifs_f{align-items:flex-start}
.aic_f{align-items:center}
.aife_f{align-items:flex-end}
.fx_f{flex:0 1 auto!important}
.df_f{display:flex!important}
.dt_f{display:table!important}
.db_f{display:block!important}
.dib_f{display:inline-block!important}
.fln_f{float:none!important}
.fll_f{float:left!important}
.flr_f{float:right!important}
.posr_f{position:relative!important}
.posa_f{position:absolute!important}
.posf_f{position:fixed!important}
.ovh_f{overflow:hidden!important}
.ovv_f{overflow:visible!important}
.mawn_f{max-width:none!important}
.maw100pc_f{max-width:100%!important}
.ha_f{height:auto!important}
.fi_f{filter:invert(1)!important}
.tshn_f{text-shadow:none!important}
.bxshn_f{box-shadow:none!important}
.w100pc_f{width:100%!important}
.h100pc_f{height:100%!important}
.tal_f{text-align:left!important}
.tar_f{text-align:right!important}
.tac_f{text-align:center!important}
.ttu_f{text-transform:uppercase!important}
.tdu_f{text-decoration:underline!important}
.fwb_f{font-weight:600!important}
.cfff_f{color:#fff!important}
.c000_f{color:#000!important}
.mlra_f{margin-left:auto!important;margin-right:auto!important}
.m0px_f{margin:0!important}
.mt0px_f{margin-top:0!important}
.mt5px_f{margin-top:5px!important}
.mt10px_f{margin-top:10px!important}
.mt15px_f{margin-top:15px!important}
.mt20px_f{margin-top:20px!important}
.mt30px_f{margin-top:30px!important}
.mt45px_f{margin-top:45px!important}
.mt60px_f{margin-top:60px!important}
.mt75px_f{margin-top:75px!important}
.mb0px_f{margin-bottom:0!important}
.mb5px_f{margin-bottom:5px!important}
.mb10px_f{margin-bottom:10px!important}
.mb15px_f{margin-bottom:15px!important}
.mb20px_f{margin-bottom:20px!important}
.mb30px_f{margin-bottom:30px!important}
.mb45px_f{margin-bottom:45px!important}
.mb60px_f{margin-bottom:60px!important}
.mb75px_f{margin-bottom:75px!important}
.ml0px_f{margin-left:0!important}
.ml5px_f{margin-left:5px!important}
.ml10px_f{margin-left:10px!important}
.ml15px_f{margin-left:15px!important}
.ml20px_f{margin-left:20px!important}
.ml30px_f{margin-left:30px!important}
.ml45px_f{margin-left:45px!important}
.ml60px_f{margin-left:60px!important}
.ml75px_f{margin-left:75px!important}
.mr0px_f{margin-right:0!important}
.mr5px_f{margin-right:5px!important}
.mr10px_f{margin-right:10px!important}
.mr15px_f{margin-right:15px!important}
.mr20px_f{margin-right:20px!important}
.mr30px_f{margin-right:30px!important}
.mr45px_f{margin-right:45px!important}
.mr60px_f{margin-right:60px!important}
.mr75px_f{margin-right:75px!important}
.p0px_f{padding:0!important}
.pt0px_f{padding-top:0!important}
.pt5px_f{padding-top:5px!important}
.pt10px_f{padding-top:10px!important}
.pt15px_f{padding-top:15px!important}
.pt20px_f{padding-top:20px!important}
.pt30px_f{padding-top:30px!important}
.pt45px_f{padding-top:45px!important}
.pt60px_f{padding-top:60px!important}
.pt75px_f{padding-top:75px!important}
.pb0_f{padding-bottom:0!important}
.pb5px_f{padding-bottom:5px!important}
.pb10px_f{padding-bottom:10px!important}
.pb15px_f{padding-bottom:15px!important}
.pb20px_f{padding-bottom:20px!important}
.pb30px_f{padding-bottom:30px!important}
.pb45px_f{padding-bottom:45px!important}
.pb60px_f{padding-bottom:60px!important}
.pb75px_f{padding-bottom:75px!important}
.pl0px_f{padding-left:0!important}
.pl5px_f{padding-left:5px!important}
.pl10px_f{padding-left:10px!important}
.pl15px_f{padding-left:15px!important}
.pl20px_f{padding-left:20px!important}
.pl30px_f{padding-left:30px!important}
.pl45px_f{padding-left:45px!important}
.pl60px_f{padding-left:60px!important}
.pl75px_f{padding-left:75px!important}
.pr0px_f{padding-right:0!important}
.pr5px_f{padding-right:5px!important}
.pr10px_f{padding-right:10px!important}
.pr15px_f{padding-right:15px!important}
.pr20px_f{padding-right:20px!important}
.pr30px_f{padding-right:30px!important}
.pr45px_f{padding-right:45px!important}
.pr60px_f{padding-right:60px!important}
.pr75px_f{padding-right:75px!important}
} | 0.154887 | 0.077378 |
div.my-pager {
font-family: helvetica, arial, freesans, clean, sans-serif;
font-size: 11px;
}
div.my-pager {
width: 550px; /* 476 */
height: 22px;
/* background-color: #eee;*/
background-color: #F7F7F7;
border-left: solid 1px #ccc;
border-right: solid 1px #ccc;
border-bottom: solid 1px #ccc;
border-top: solid 1px #ccc;
cursor: default;
padding: 2px;
text-shadow: 1px 1px 0 white;
}
div.my-pager
{
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
-khtml-border-radius: 5px;
behavior:url(/css/pie/PIE.htc);
}
input.my-page-input {
font-size: 11px;
width: 25px;
margin: 0;
}
span.my-pager-message {
float: left;
padding: 2px;
color: #666;
}
table.my-pager-table {
float: right;
font-size: 11px;
margin: 0;
}
table.my-pager-table td {
padding-left: 2px;
padding-right: 2px;
}
a.my-pager-control {
cursor: pointer;
text-decoration: none;
}
div.my-pager-loader {
background: url(images/mtg-loader.gif) center no-repeat transparent;
width: 16px;
height: 16px;
}
div.first-page {
background: url(images/first.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.first-page-disabled {
background: url(images/first-disabled.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.previous-page {
background: url(images/prev.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.previous-page-disabled {
background: url(images/prev-disabled.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.next-page {
background: url(images/next.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.next-page-disabled {
background: url(images/next-disabled.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.last-page {
background: url(images/last.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.last-page-disabled {
background: url(images/last-disabled.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.my-pager-separator {
background: url(images/y-sep.png) center no-repeat transparent;
width: 2px;
/* height: 13px;*/
} | public/css/paginator/paginator.css | div.my-pager {
font-family: helvetica, arial, freesans, clean, sans-serif;
font-size: 11px;
}
div.my-pager {
width: 550px; /* 476 */
height: 22px;
/* background-color: #eee;*/
background-color: #F7F7F7;
border-left: solid 1px #ccc;
border-right: solid 1px #ccc;
border-bottom: solid 1px #ccc;
border-top: solid 1px #ccc;
cursor: default;
padding: 2px;
text-shadow: 1px 1px 0 white;
}
div.my-pager
{
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
-khtml-border-radius: 5px;
behavior:url(/css/pie/PIE.htc);
}
input.my-page-input {
font-size: 11px;
width: 25px;
margin: 0;
}
span.my-pager-message {
float: left;
padding: 2px;
color: #666;
}
table.my-pager-table {
float: right;
font-size: 11px;
margin: 0;
}
table.my-pager-table td {
padding-left: 2px;
padding-right: 2px;
}
a.my-pager-control {
cursor: pointer;
text-decoration: none;
}
div.my-pager-loader {
background: url(images/mtg-loader.gif) center no-repeat transparent;
width: 16px;
height: 16px;
}
div.first-page {
background: url(images/first.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.first-page-disabled {
background: url(images/first-disabled.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.previous-page {
background: url(images/prev.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.previous-page-disabled {
background: url(images/prev-disabled.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.next-page {
background: url(images/next.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.next-page-disabled {
background: url(images/next-disabled.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.last-page {
background: url(images/last.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.last-page-disabled {
background: url(images/last-disabled.gif) center no-repeat transparent;
width: 16px;
/* height: 16px;*/
}
div.my-pager-separator {
background: url(images/y-sep.png) center no-repeat transparent;
width: 2px;
/* height: 13px;*/
} | 0.177989 | 0.104752 |
@font-face {
font-family: OutRun;
src: url("https://jackphilippi.com.au/cdn/fonts/outrun_future.otf") format("opentype");
}
html, body {
height: 100%;
}
body {
text-align: center;
font-family: "Open Sans", sans-serif;
-webkit-font-smoothing: antialiased;
background: #111;
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
background: linear-gradient(#0c141f 40%, #cf33d9 41%, #0c141f 60%);
}
.inner-wrapper {
width: 100%;
height: 100%;
position: absolute;
margin: 0 auto;
perspective: 180px;
perspective-origin: 50% 40%;
}
.landscape {
position: absolute;
width: 200%;
left: -50%;
height: 130%;
bottom: -30%;
background-image: -webkit-linear-gradient(top, #CF33D9 2px, transparent 2px), -webkit-linear-gradient(left, #CF33D9 2px, transparent 2px);
background-size: 50px 50px, 80px 80px;
background-position: -1px -1px, -1px -1px;
transform: rotateX(85deg);
animation: moveUp 1s infinite linear;
}
.nrw {
z-index: 50;
}
.triangle {
z-index: 0;
position: absolute;
margin: auto;
left: 0;
right: 0;
width: 0;
height: 0;
border-left: 200px solid transparent;
border-right: 250px solid transparent;
border-bottom: 200px solid rgba(5, 5, 5, 0.33);
transform: rotate(15deg);
}
.new {
font-size: 5.2em;
text-transform: uppercase;
font-family: "Open Sans";
color: transparent;
position: relative;
display: block;
letter-spacing: -15px;
transform: rotate(-10deg) skew(-20deg);
margin-left: -100px;
margin-bottom: -36px;
}
.new > .letter {
-webkit-text-stroke: 2px #F4C6F4;
margin-top: -8px;
display: inline-block;
padding: 0 1px;
animation: glow 2.5s linear infinite;
}
@keyframes moveUp{
0% {
background-position: -1px -1px, -1px -1px;
}
100% {
background-position: -50px -50px, -1px -1px;
}
}
@keyframes glow {
0% {
filter: drop-shadow(0 0 6px #CF33D9) drop-shadow(0 0 6px #CF33D9);
}
50% {
filter: drop-shadow(0 0 1px #CF33D9) drop-shadow(0 0 1px #CF33D9);
}
100% {
filter: drop-shadow(0 0 6px #CF33D9) drop-shadow(0 0 6px #CF33D9);
}
}
.retro {
font-size: 5.5em;
font-weight: 800;
display: block;
text-transform: uppercase;
letter-spacing: -12px;
transform: rotate(-10deg) skew(-15deg);
margin-bottom: -20px;
}
.retro > .letter {
display: inline-block;
padding: 0 10px;
margin: 0 -10px;
background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIzMiUiIHN0b3AtY29sb3I9IiMxODE5MWEiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzE1N2JlNiIvPjxzdG9wIG9mZnNldD0iNTIlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PHN0b3Agb2Zmc2V0PSI1NiUiIHN0b3AtY29sb3I9IiMxODE5MWEiLz48c3RvcCBvZmZzZXQ9Ijg1JSIgc3RvcC1jb2xvcj0iIzE1N2JlNiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(32%, #18191a), color-stop(40%, #157be6), color-stop(52%, #ffffff), color-stop(56%, #18191a), color-stop(85%, #157be6), color-stop(100%, #ffffff));
background: -moz-linear-gradient(top, #18191a 32%, #157be6 40%, #ffffff 52%, #18191a 56%, #157be6 85%, #ffffff);
background: -webkit-linear-gradient(top, #18191a 32%, #157be6 40%, #ffffff 52%, #18191a 56%, #157be6 85%, #ffffff);
background: linear-gradient(to bottom, #18191a 32%, #157be6 40%, #ffffff 52%, #18191a 56%, #157be6 85%, #ffffff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #FFF;
}
.wave {
position: relative;
z-index: 100;
font-family: "OutRun", "Helvetica", sans-serif;
font-size: 3.8em;
color: #FA26F7;
text-transform: uppercase;
letter-spacing: -10px;
transform: rotate(-3deg) skew(-3deg);
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #000;
} | fss2/assets/css/style3.css | @font-face {
font-family: OutRun;
src: url("https://jackphilippi.com.au/cdn/fonts/outrun_future.otf") format("opentype");
}
html, body {
height: 100%;
}
body {
text-align: center;
font-family: "Open Sans", sans-serif;
-webkit-font-smoothing: antialiased;
background: #111;
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
background: linear-gradient(#0c141f 40%, #cf33d9 41%, #0c141f 60%);
}
.inner-wrapper {
width: 100%;
height: 100%;
position: absolute;
margin: 0 auto;
perspective: 180px;
perspective-origin: 50% 40%;
}
.landscape {
position: absolute;
width: 200%;
left: -50%;
height: 130%;
bottom: -30%;
background-image: -webkit-linear-gradient(top, #CF33D9 2px, transparent 2px), -webkit-linear-gradient(left, #CF33D9 2px, transparent 2px);
background-size: 50px 50px, 80px 80px;
background-position: -1px -1px, -1px -1px;
transform: rotateX(85deg);
animation: moveUp 1s infinite linear;
}
.nrw {
z-index: 50;
}
.triangle {
z-index: 0;
position: absolute;
margin: auto;
left: 0;
right: 0;
width: 0;
height: 0;
border-left: 200px solid transparent;
border-right: 250px solid transparent;
border-bottom: 200px solid rgba(5, 5, 5, 0.33);
transform: rotate(15deg);
}
.new {
font-size: 5.2em;
text-transform: uppercase;
font-family: "Open Sans";
color: transparent;
position: relative;
display: block;
letter-spacing: -15px;
transform: rotate(-10deg) skew(-20deg);
margin-left: -100px;
margin-bottom: -36px;
}
.new > .letter {
-webkit-text-stroke: 2px #F4C6F4;
margin-top: -8px;
display: inline-block;
padding: 0 1px;
animation: glow 2.5s linear infinite;
}
@keyframes moveUp{
0% {
background-position: -1px -1px, -1px -1px;
}
100% {
background-position: -50px -50px, -1px -1px;
}
}
@keyframes glow {
0% {
filter: drop-shadow(0 0 6px #CF33D9) drop-shadow(0 0 6px #CF33D9);
}
50% {
filter: drop-shadow(0 0 1px #CF33D9) drop-shadow(0 0 1px #CF33D9);
}
100% {
filter: drop-shadow(0 0 6px #CF33D9) drop-shadow(0 0 6px #CF33D9);
}
}
.retro {
font-size: 5.5em;
font-weight: 800;
display: block;
text-transform: uppercase;
letter-spacing: -12px;
transform: rotate(-10deg) skew(-15deg);
margin-bottom: -20px;
}
.retro > .letter {
display: inline-block;
padding: 0 10px;
margin: 0 -10px;
background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIzMiUiIHN0b3AtY29sb3I9IiMxODE5MWEiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzE1N2JlNiIvPjxzdG9wIG9mZnNldD0iNTIlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PHN0b3Agb2Zmc2V0PSI1NiUiIHN0b3AtY29sb3I9IiMxODE5MWEiLz48c3RvcCBvZmZzZXQ9Ijg1JSIgc3RvcC1jb2xvcj0iIzE1N2JlNiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(32%, #18191a), color-stop(40%, #157be6), color-stop(52%, #ffffff), color-stop(56%, #18191a), color-stop(85%, #157be6), color-stop(100%, #ffffff));
background: -moz-linear-gradient(top, #18191a 32%, #157be6 40%, #ffffff 52%, #18191a 56%, #157be6 85%, #ffffff);
background: -webkit-linear-gradient(top, #18191a 32%, #157be6 40%, #ffffff 52%, #18191a 56%, #157be6 85%, #ffffff);
background: linear-gradient(to bottom, #18191a 32%, #157be6 40%, #ffffff 52%, #18191a 56%, #157be6 85%, #ffffff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #FFF;
}
.wave {
position: relative;
z-index: 100;
font-family: "OutRun", "Helvetica", sans-serif;
font-size: 3.8em;
color: #FA26F7;
text-transform: uppercase;
letter-spacing: -10px;
transform: rotate(-3deg) skew(-3deg);
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #000;
} | 0.390941 | 0.115511 |
# General
--------------------------------------------------------------*/
body {
background: #fff;
color: #666666;
font-family: "Open Sans", sans-serif;
font-size:1rem;
}
a {
color: #68005f;
transition: 0.5s;
}
a:hover, a:active, a:focus {
color: #fff ;
outline: none;
text-decoration: none;
}
p {
padding: 0;
margin: 0 0 30px 0;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Montserrat", sans-serif;
font-weight: 400;
margin: 0 0 20px 0;
padding: 0;
}
/* Back to top button */
.back-to-top {
position: fixed;
display: none;
background: #68005f;
color: #fff;
display: inline-block;
width: 44px;
height: 44px;
text-align: center;
line-height: 1;
font-size: 16px;
border-radius: 50%;
right: 15px;
bottom: 100px;
transition: background 0.5s;
z-index: 11;
}
.back-to-top i {
padding-top: 12px;
color: #fff;
}
@media (max-width: 768px) {
.back-to-top {
bottom: 15px;
}
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
padding: 10px 0 0 0;
height: 130px;
position: relative;
left: 0;
top: 0;
right: 0;
transition: all 0.5s;
z-index: 997;
}
#header.header-scrolled {
position: fixed;
background: rgba(255, 255, 255, 1);
padding: 5px 0;
height: 120px;
transition: all 0.5s;
box-shadow: 0 1px 15px rgba(0, 0, 0, 0.3);
}
#header #logo {
float: left;
display: inline-block;
margin: 10px 10px 10px 0;
line-height: 1em;
vertical-align: top;
max-height: 100%;
}
#header #logo a{
display: inline-block;
padding: 0;
border-bottom: 0;
}
@media (min-width: 1024px) {
#header #logo {
/*padding-left: 60px;*/
}
}
#header #logo h1 {
font-size: 34px;
margin: 0;
padding: 0;
line-height: 1;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: 3px;
}
#header #logo h1 a, #header #logo h1 a:hover {
color: #fff;
padding-left: 10px;
border-left: 4px solid #68005f;
}
#header #logo img {
padding: 0;
margin: 0;
max-height: 96px;
display: block;
}
@media (max-width: 768px) {
#header #logo h1 {
font-size: 28px;
}
#header #logo img {
max-height: 80px;
}
}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
display: table;
width: 100%;
height: 100vh;
background: #000;
}
#intro .carousel-item {
width: 100%;
height: 100vh;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
#intro .carousel-item::before {
content: '';
background-color: rgba(0, 0, 0, 0.7);
position: absolute;
height: 100%;
width: 100%;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
#intro .carousel-container {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
}
#intro .carousel-content {
text-align: center;
}
#intro h2 {
color: #fff;
margin-bottom: 30px;
font-size: 40px;
font-weight: 700;
}
@media (max-width: 768px) {
#intro h2 {
font-size: 28px;
}
}
#intro p {
width: 80%;
margin: 0 auto 30px auto;
color: #fff;
}
@media (min-width: 1024px) {
#intro p {
width: 60%;
}
}
#intro .carousel-fade .carousel-inner .carousel-item {
-webkit-transition-property: opacity;
transition-property: opacity;
}
#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
opacity: 0;
}
#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
opacity: 1;
transition: 0.5s;
}
#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
left: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
#intro .carousel-control-prev, #intro .carousel-control-next {
width: 10%;
}
@media (min-width: 1024px) {
#intro .carousel-control-prev, #intro .carousel-control-next {
width: 5%;
}
}
#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
background: none;
font-size: 32px;
line-height: 1;
}
#intro .carousel-indicators li {
cursor: pointer;
}
#intro .btn-get-started {
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
display: inline-block;
padding: 8px 32px;
border-radius: 50px;
transition: 0.5s;
margin: 10px;
color: #fff;
background: #68005f;
}
#intro .btn-get-started:hover {
background: #fff;
color: #68005f;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
margin: 0;
padding: 0;
list-style: none;
}
.nav-menu ul {
position: absolute;
display: none;
top: 100%;
left: 0;
z-index: 99;
}
.nav-menu li {
position: relative;
white-space: nowrap;
}
.nav-menu > li {
float: left;
}
.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
display: block;
}
.nav-menu ul ul {
top: 0;
left: 100%;
}
.nav-menu ul li {
min-width: 180px;
}
/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
padding-right: 30px;
}
.sf-arrows .sf-with-ul:after {
content: "\f107";
position: absolute;
right: 15px;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
}
.sf-arrows ul .sf-with-ul:after {
content: "\f105";
}
/* Nav Meu Container */
#nav-menu-container {
float: right;
margin: 10px 0 0 0;
}
@media (min-width: 1024px) {
#nav-menu-container {
padding-right: 20px;
}
}
@media (max-width: 768px) {
#nav-menu-container {
display: none;
}
}
/* Nav Meu Styling */
.nav-menu a {
padding: 0 10px;
text-decoration: none;
display: inline-block;
color: #000;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 14px;
text-transform: uppercase;
outline: none;
line-height: 100px;
}
.submenu a{ line-height: 1em;}
.nav-menu li:hover > a, .nav-menu > .menu-active > a {
color: #68005f;
}
.nav-menu > li {
/*margin-left: 10px;*/
}
.nav-menu ul {
margin: 4px 0 0 0;
padding: 10px;
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
background: #fff;
}
.nav-menu ul li {
transition: 0.3s;
}
.nav-menu ul li a {
padding: 10px;
color: #333;
transition: 0.3s;
display: block;
font-size: 13px;
text-transform: uppercase;
}
.nav-menu ul li:hover > a {
color: #68005f;
}
.nav-menu ul ul {
margin: 0;
}
/* Mobile Nav Toggle */
#mobile-nav-toggle {
position: fixed;
right: 0;
top: 0;
z-index: 999;
margin: 55px 20px 0 0;
border: 0;
background: #f4f6f6;
font-size: 24px;
display: none;
transition: all 0.4s;
outline: none;
cursor: pointer;
}
#mobile-nav-toggle i {
color: #586266;
}
@media (max-width: 768px) {
#mobile-nav-toggle {
display: inline;
}
}
/* Mobile Nav Styling */
#mobile-nav {
position: fixed;
top: 0;
padding-top: 18px;
bottom: 0;
z-index: 998;
background: rgba(0, 0, 0, 0.8);
left: -260px;
width: 260px;
overflow-y: auto;
transition: 0.4s;
}
#mobile-nav ul {
padding: 0;
margin: 0;
list-style: none;
}
#mobile-nav ul li {
position: relative;
}
#mobile-nav ul li a {
color: #fff;
font-size: 13px;
text-transform: uppercase;
overflow: hidden;
padding: 10px 22px 10px 15px;
position: relative;
text-decoration: none;
width: 100%;
display: block;
outline: none;
font-weight: 700;
font-family: "Montserrat", sans-serif;
}
#mobile-nav ul li a:hover {
color: #fff;
}
#mobile-nav ul li li {
padding-left: 30px;
}
#mobile-nav ul .menu-has-children i {
position: absolute;
right: 0;
z-index: 99;
padding: 15px;
cursor: pointer;
color: #fff;
}
#mobile-nav ul .menu-has-children i.fa-chevron-up {
color: #68005f;
}
#mobile-nav ul .menu-has-children li a {
text-transform: none;
}
#mobile-nav ul .menu-item-active {
color: #68005f;
}
#mobile-body-overly {
width: 100%;
height: 100%;
z-index: 997;
top: 0;
left: 0;
position: fixed;
background: rgba(0, 0, 0, 0.7);
display: none;
}
/* Mobile Nav body classes */
body.mobile-nav-active {
overflow: hidden;
}
body.mobile-nav-active #mobile-nav {
left: 0;
}
body.mobile-nav-active #mobile-nav-toggle {
color: #fff;
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header h3 {
font-size: 28px;
color: #111;
text-transform: uppercase;
text-align: center;
font-weight: 700;
position: relative;
padding-bottom: 15px;
}
.section-header h3::before {
content: '';
position: absolute;
display: block;
width: 120px;
height: 1px;
background: #ddd;
bottom: 1px;
left: calc(50% - 60px);
}
.section-header h3::after {
content: '';
position: absolute;
display: block;
width: 40px;
height: 3px;
background: #68005f;
bottom: 0;
left: calc(50% - 20px);
}
.section-header p {
text-align: center;
padding-bottom: 30px;
color: #333;
}
/* Section with background
--------------------------------*/
.section-bg {
background: #f7f7f7;
}
/* Featured Services Section
--------------------------------*/
#featured-services {
background: #000;
}
#featured-services .box {
padding: 30px 20px;
}
#featured-services .box-bg {
background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}
#featured-services i {
color: #68005f;
font-size: 48px;
display: inline-block;
line-height: 1;
}
#featured-services h4 {
font-weight: 400;
margin: 15px 0;
font-size: 18px;
}
#featured-services h4 a {
color: #fff;
}
#featured-services h4 a:hover {
color: #68005f;
}
#featured-services p {
font-size: 14px;
line-height: 24px;
color: #fff;
margin-bottom: 0;
}
/* About Us Section
--------------------------------*/
#about {
background: url("../img/about-bg.jpg") center top no-repeat fixed;
background-size: cover;
padding: 60px 0 40px 0;
position: relative;
}
#about::before {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.92);
z-index: 9;
}
#about .container {
position: relative;
z-index: 10;
}
#about .about-col {
background: #fff;
border-radius: 0 0 4px 4px;
box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
margin-bottom: 20px;
}
#about .about-col .img {
position: relative;
}
#about .about-col .img img {
border-radius: 4px 4px 0 0;
}
#about .about-col .icon {
width: 64px;
height: 64px;
padding-top: 8px;
text-align: center;
position: absolute;
background-color: #68005f;
border-radius: 50%;
text-align: center;
border: 4px solid #fff;
left: calc( 50% - 32px);
bottom: -30px;
transition: 0.3s;
}
#about .about-col i {
font-size: 36px;
line-height: 1;
color: #fff;
transition: 0.3s;
}
#about .about-col:hover .icon {
background-color: #fff;
}
#about .about-col:hover i {
color: #68005f;
}
#about .about-col h2 {
color: #000;
text-align: center;
font-weight: 700;
font-size: 20px;
padding: 0;
margin: 40px 0 12px 0;
}
#about .about-col h2 a {
color: #000;
}
#about .about-col h2 a:hover {
color: #68005f;
}
#about .about-col p {
font-size: 14px;
line-height: 24px;
color: #333;
margin-bottom: 0;
padding: 0 20px 20px 20px;
}
/* Services Section
--------------------------------*/
#services {
background: #fff;
background-size: cover;
padding: 60px 0 40px 0;
}
#services .box {
margin-bottom: 30px;
}
#services .icon {
float: left;
margin: -5px 0 0px 0;
}
#services .icon i {
color: #68005f;
font-size: 36px;
line-height: 1;
transition: 0.5s;
}
#services .title {
margin-left: 60px;
font-weight: 700;
margin-bottom: 15px;
font-size: 20px;
}
#services .title a {
color: #111;
}
#services .box:hover .title a {
color: #68005f;
}
#services .description {
font-size: 16px;
margin-left: 60px;
line-height: 24px;
margin-bottom: 0;
word-spacing: 2px;
text-align: justify;
}
/* Call To Action Section
--------------------------------*/
#call-to-action {
background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/call-to-action-bg.jpg) fixed center center;
background-size: cover;
padding: 60px 0;
}
#call-to-action h3 {
color: #fff;
font-size: 28px;
font-weight: 700;
}
#call-to-action p {
color: #fff;
}
#call-to-action .cta-btn {
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
display: inline-block;
padding: 8px 28px;
border-radius: 25px;
transition: 0.5s;
margin-top: 10px;
border: 2px solid #fff;
color: #fff;
}
#call-to-action .cta-btn:hover {
background: #68005f;
border: 2px solid #68005f;
}
/* Call To Action Section
--------------------------------*/
#skills {
padding: 60px 0;
}
#skills .progress {
height: 35px;
margin-bottom: 10px;
}
#skills .progress .skill {
font-family: "Open Sans", sans-serif;
line-height: 35px;
padding: 0;
margin: 0 0 0 20px;
text-transform: uppercase;
}
#skills .progress .skill .val {
float: right;
font-style: normal;
margin: 0 20px 0 0;
}
#skills .progress-bar {
width: 1px;
text-align: left;
transition: .9s;
}
.progress{font-size: 0.80rem;}
/* Facts Section
--------------------------------*/
#facts {
/*background: url("../img/facts-bg.jpg") center top no-repeat fixed;*/
background: url("../img/abroad-bg.jpg") center top no-repeat fixed;
background-size: cover;
padding: 60px 0 0 0;
position: relative;
}
#facts::before {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.8);
z-index: 9;
}
#facts .container {
position: relative;
z-index: 10;
}
#facts .counters span {
font-family: "Montserrat", sans-serif;
font-weight: bold;
font-size: 48px;
display: block;
color: #68005f;
}
#facts .counters p {
padding: 0;
margin: 0 0 20px 0;
font-family: "Montserrat", sans-serif;
font-size: 16px;
color: #111;
}
#facts .facts-img {
text-align: center;
padding-top: 30px;
}
#facts .cta-btn {
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
display: inline-block;
padding: 8px 28px;
border-radius: 25px;
transition: 0.5s;
border: 2px solid #68005f;
color: #68005f;
}
#facts .cta-btn:hover, #clients .cta-btn:hover{
background: #68005f;
border: 2px solid #68005f;
color: #fff;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 70%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 70%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
#facts .title{
color: #68005f;
font-size: 22px;
}
/* Portfolio Section
--------------------------------*/
#portfolio {
padding: 60px 0;
}
#portfolio #portfolio-flters {
padding: 0;
margin: 5px 0 35px 0;
list-style: none;
text-align: center;
}
#portfolio #portfolio-flters li {
cursor: pointer;
margin: 15px 15px 15px 0;
display: inline-block;
padding: 10px 20px;
font-size: 14px;
line-height: 20px;
color: #666666;
border-radius: 4px;
text-transform: uppercase;
background: #fff;
margin-bottom: 5px;
transition: all 0.3s ease-in-out;
}
#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
background: #68005f;
color: #fff;
}
#portfolio #portfolio-flters li:last-child {
margin-right: 0;
}
#portfolio .portfolio-wrap {
box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
transition: 0.3s;
}
#portfolio .portfolio-wrap:hover {
box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}
#portfolio .portfolio-item {
position: relative;
height: 360px;
overflow: hidden;
}
#portfolio .portfolio-item figure {
background: #000;
overflow: hidden;
height: 240px;
position: relative;
border-radius: 4px 4px 0 0;
margin: 0;
}
#portfolio .portfolio-item figure:hover img {
opacity: 0.4;
transition: 0.3s;
}
#portfolio .portfolio-item .img-fluid {
height: 240px;
}
#portfolio .portfolio-item figure .link-preview, #portfolio .portfolio-item figure .link-details {
position: absolute;
display: inline-block;
opacity: 0;
line-height: 1;
text-align: center;
width: 36px;
height: 36px;
background: #fff;
border-radius: 50%;
transition: 0.2s linear;
}
#portfolio .portfolio-item figure .link-preview i, #portfolio .portfolio-item figure .link-details i {
padding-top: 6px;
font-size: 22px;
color: #333;
}
#portfolio .portfolio-item figure .link-preview:hover, #portfolio .portfolio-item figure .link-details:hover {
background: #68005f;
}
#portfolio .portfolio-item figure .link-preview:hover i, #portfolio .portfolio-item figure .link-details:hover i {
color: #fff;
}
#portfolio .portfolio-item figure .link-preview {
left: calc(50% - 38px);
top: calc(50% - 18px);
}
#portfolio .portfolio-item figure .link-details {
right: calc(50% - 38px);
top: calc(50% - 18px);
}
#portfolio .portfolio-item figure:hover .link-preview {
opacity: 1;
left: calc(50% - 15px);
}
#portfolio .portfolio-item figure:hover .link-details {
opacity: 1;
right: calc(50% - 44px);
}
#portfolio .portfolio-item .portfolio-info {
background: #fff;
text-align: center;
padding: 30px;
height: 90px;
border-radius: 0 0 3px 3px;
}
#portfolio .portfolio-item .portfolio-info h4 {
font-size: 18px;
line-height: 1px;
font-weight: 700;
margin-bottom: 18px;
padding-bottom: 0;
}
#portfolio .portfolio-item .portfolio-info h4 a {
color: #333;
}
#portfolio .portfolio-item .portfolio-info h4 a:hover {
color: #68005f;
}
#portfolio .portfolio-item .portfolio-info p {
padding: 0;
margin: 0;
color: #b8b8b8;
font-weight: 500;
font-size: 14px;
text-transform: uppercase;
}
/* Events Section
--------------------------------*/
#events {
padding: 60px 0;
}
#events #events-flters {
padding: 0;
margin: 5px 0 35px 0;
list-style: none;
text-align: center;
}
#events #events-flters li {
cursor: pointer;
margin: 15px 15px 15px 0;
display: inline-block;
padding: 10px 20px;
font-size: 12px;
line-height: 20px;
color: #666666;
border-radius: 4px;
text-transform: uppercase;
background: #fff;
margin-bottom: 5px;
transition: all 0.3s ease-in-out;
}
#events #events-flters li:hover, #events #events-flters li.filter-active {
background: #68005f;
color: #fff;
}
#events #events-flters li:last-child {
margin-right: 0;
}
#events .events-wrap {
box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
transition: 0.3s;
}
#events .events-wrap:hover {
box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}
#events .events-item {
position: relative;
height: 360px;
overflow: hidden;
}
#events .events-item figure {
background: #000;
overflow: hidden;
height: 240px;
position: relative;
border-radius: 4px 4px 0 0;
margin: 0;
}
#events .events-item figure:hover img {
opacity: 0.4;
transition: 0.3s;
}
#events .events-item figure .link-preview, #events .events-item figure .link-details {
position: absolute;
display: inline-block;
opacity: 0;
line-height: 1;
text-align: center;
width: 36px;
height: 36px;
background: #fff;
border-radius: 50%;
transition: 0.2s linear;
}
#events .events-item figure .link-preview i, #events .events-item figure .link-details i {
padding-top: 6px;
font-size: 22px;
color: #333;
}
#events .events-item figure .link-preview:hover, #events .events-item figure .link-details:hover {
background: #68005f;
}
#events .events-item figure .link-preview:hover i, #events .events-item figure .link-details:hover i {
color: #fff;
}
#events .events-item figure .link-preview {
left: calc(50% - 38px);
top: calc(50% - 18px);
}
#events .events-item figure .link-details {
right: calc(50% - 38px);
top: calc(50% - 18px);
}
#events .events-item figure:hover .link-preview {
opacity: 1;
left: calc(50% - 15px);
}
#events .events-item figure:hover .link-details {
opacity: 1;
right: calc(50% - 44px);
}
#events .events-item .events-info {
background: #fff;
text-align: center;
padding: 30px;
height: 90px;
border-radius: 0 0 3px 3px;
}
#events .events-item .events-info h4 {
font-size: 18px;
line-height: 1px;
font-weight: 700;
margin-bottom: 18px;
padding-bottom: 0;
}
#events .events-item .events-info h4 a {
color: #333;
}
#events .events-item .events-info h4 a:hover {
color: #68005f;
}
#events .events-item .events-info p {
padding: 0;
margin: 0;
color: #b8b8b8;
font-weight: 500;
font-size: 14px;
text-transform: uppercase;
}
#events .cal-icon{
float:left;
margin: 6px 10px 0 10px;
font-size: 26px;
}
#events .event-date{
font-size: 12px;
margin: 2px 0px 2px 0;
}
#events .title {
font-weight: 700;
margin-bottom: 15px;
font-size: 16px;
color: #68005f;
margin-left: 25px;
text-transform: uppercase;
}
#events .icon i {
color: #68005f;
font-size: 21px;
line-height: 1;
transition: 0.5s;
float: left;
}
.wrapper{
width:70%;
}
@media(max-width:992px){
.wrapper{
width:100%;
}
}
.panel-heading {
padding: 0;
border:0;
}
/* Clients Section
--------------------------------*/
#clients {
/*background: url("../img/background.jpg") center top no-repeat fixed;*//*rgb(241, 232, 241)*/
background: linear-gradient(rgba(247, 239, 247, 0.1), rgba(0, 0, 0, 0.1)), url(../img/partners-bg.jpg) fixed center center;
background-size: cover;
padding: 60px 0 0 0;
/* position: relative;*/
}
/*#clients::before {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background:rgba(255, 255, 255, 0.5);
z-index: 9;
}*/
#clients .container {
position: relative;
z-index: 10;
}
#clients {
padding: 60px 0;
}
#clients img {
max-width: 100%;
opacity: 0.85;
transition: 0.3s;
padding: 15px 0;
}
#clients img:hover {
opacity: 1;
}
#clients .owl-nav, #clients .owl-dots {
margin-top: 5px;
text-align: center;
}
#clients .owl-dot {
display: inline-block;
margin: 0 5px;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #ddd;
}
#clients .owl-dot.active {
background-color: #68005f;
}
.clients p{
margin-top: 60px;
padding: 0;
}
#clients .cta-btn {
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
display: inline-block;
padding: 8px 28px;
border-radius: 25px;
transition: 0.5s;
border: 2px solid #fff;
color: #fff;
}
/* Testimonials Section
--------------------------------*/
#testimonials {
padding: 60px 0;
}
#testimonials .section-header {
margin-bottom: 40px;
}
#testimonials .testimonial-item {
text-align: center;
}
#testimonials .testimonial-item .testimonial-img {
width: 120px;
border-radius: 50%;
border: 4px solid #fff;
margin: 0 auto;
}
#testimonials .testimonial-item h3 {
font-size: 20px;
font-weight: bold;
margin: 10px 0 5px 0;
color: #111;
}
#testimonials .testimonial-item h4 {
font-size: 14px;
color: #999;
margin: 0 0 15px 0;
}
#testimonials .testimonial-item .quote-sign-left {
margin-top: -15px;
padding-right: 10px;
display: inline-block;
width: 37px;
}
#testimonials .testimonial-item .quote-sign-right {
margin-bottom: -15px;
padding-left: 10px;
display: inline-block;
max-width: 100%;
width: 37px;
}
#testimonials .testimonial-item p {
font-style: italic;
margin: 0 auto 15px auto;
}
@media (min-width: 992px) {
#testimonials .testimonial-item p {
width: 80%;
}
}
#testimonials .owl-nav, #testimonials .owl-dots {
margin-top: 5px;
text-align: center;
}
#testimonials .owl-dot {
display: inline-block;
margin: 0 5px;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #ddd;
}
#testimonials .owl-dot.active {
background-color: #68005f;
}
/* Team Section
--------------------------------*/
#team {
background: #fff;
padding: 60px 0;
}
#team .member {
text-align: center;
margin-bottom: 20px;
background: #000;
position: relative;
}
#team .member .member-info {
opacity: 0;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
transition: 0.2s;
}
#team .member .member-info-content {
margin-top: -50px;
transition: margin 0.2s;
}
#team .member:hover .member-info {
background: rgba(0, 0, 0, 0.7);
opacity: 1;
transition: 0.4s;
}
#team .member:hover .member-info-content {
margin-top: 0;
transition: margin 0.4s;
}
#team .member h4 {
font-weight: 700;
margin-bottom: 2px;
font-size: 18px;
color: #fff;
}
#team .member span {
font-style: italic;
display: block;
font-size: 13px;
color: #fff;
}
#team .member .social {
margin-top: 15px;
}
#team .member .social a {
transition: none;
color: #fff;
}
#team .member .social a:hover {
color: #68005f;
}
#team .member .social i {
font-size: 18px;
margin: 0 2px;
}
/* Contact Section
--------------------------------*/
#contact {
padding: 0 0 60px 0;
}
#contact .contact-info {
margin-bottom: 20px;
text-align: center;
}
#contact .contact-info i {
font-size: 48px;
display: inline-block;
margin-bottom: 10px;
color: #68005f;
}
#contact .contact-info address, #contact .contact-info p {
margin-bottom: 0;
color: #000;
}
#contact .contact-info h3 {
font-size: 18px;
margin-bottom: 15px;
font-weight: bold;
text-transform: uppercase;
color: #999;
}
#contact .contact-info a {
color: #000;
}
#contact .contact-info p{
font-size: 16px;
}
#contact .contact-info a:hover {
color: #68005f;
}
#contact .contact-address, #contact .contact-phone, #contact .contact-email {
margin-bottom: 20px;
}
@media (min-width: 768px) {
#contact .contact-address, #contact .contact-phone, #contact .contact-email {
padding: 20px 0;
}
}
@media (min-width: 768px) {
#contact .contact-phone {
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
}
}
#contact .form #sendmessage {
color: #28a745;
border: 1px solid #28a745;
display: none;
text-align: center;
padding: 15px;
font-weight: 600;
margin-bottom: 15px;
}
#contact .form #errormessage {
color: red;
display: none;
border: 1px solid red;
text-align: center;
padding: 15px;
font-weight: 600;
margin-bottom: 15px;
}
#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
display: block;
}
#contact .form .validation {
color: red;
display: none;
margin: 0 0 20px;
font-weight: 400;
font-size: 13px;
}
#contact .form input, #contact .form textarea {
padding: 10px 14px;
border-radius: 0;
box-shadow: none;
font-size: 17px;
}
#contact .form button[type="submit"] {
background: #68005f;
border: 0;
padding: 10px 30px;
color: #fff;
transition: 0.4s;
cursor: pointer;
border-radius: 0;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 70%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 70%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
#contact .form button[type="submit"]:hover {
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 30%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 30%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 30%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
/*Study abroad*/
#enrollment_form .form button[type="submit"] {
background: #68005f;
border: 0;
padding: 10px 30px;
color: #fff;
transition: 0.4s;
cursor: pointer;
border-radius: 0;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 70%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 70%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
#enrollment_form .form button[type="submit"]:hover {
background: #68005f;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 30%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 30%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 30%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
.note{font-size: 15px;}
.modal-body .success{
color: #28a745;
font-size: 20px;
font-weight: 600;
text-align: center;
}
/* Contact Section
--------------------------------*/
/*career section*/
#career {
padding: 60px 0;
}
#career .contact-info {
margin-bottom: 20px;
text-align: center;
}
#career .contact-info i {
font-size: 48px;
display: inline-block;
margin-bottom: 10px;
color: #68005f;
}
#career .contact-info address, #career .contact-info p {
margin-bottom: 0;
color: #000;
}
#career .contact-info h3 {
font-size: 18px;
margin-bottom: 15px;
font-weight: bold;
text-transform: uppercase;
color: #999;
}
#career .contact-info a {
color: #000;
}
#career .contact-info a:hover {
color: #68005f;
}
#career .contact-address, #career .contact-phone, #career .contact-email {
margin-bottom: 20px;
}
@media (min-width: 768px) {
#career .contact-address, #career .contact-phone, #career .contact-email {
padding: 20px 0;
}
}
@media (min-width: 768px) {
#career .contact-phone {
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
}
}
#career .form #sendmessage {
color: #28a745;
border: 1px solid #28a745;
display: none;
text-align: center;
padding: 15px;
font-weight: 600;
margin-bottom: 15px;
}
#career .form #errormessage {
color: red;
display: none;
border: 1px solid red;
text-align: center;
padding: 15px;
font-weight: 600;
margin-bottom: 15px;
}
#career .form #sendmessage.show, #career .form #errormessage.show, #career .form .show {
display: block;
}
#career .form .validation {
color: red;
display: none;
margin: 0 0 20px;
font-weight: 400;
font-size: 13px;
}
#career .form input, #career .form textarea {
padding: 10px 14px;
border-radius: 0;
box-shadow: none;
font-size: 17px;
}
#career .form button[type="submit"] {
background: #68005f;
border: 0;
padding: 10px 30px;
color: #fff;
transition: 0.4s;
cursor: pointer;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 70%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 70%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
#career .form button[type="submit"]:hover {
background: #68005f;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 30%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 30%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 30%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
#career .btn-lg {
background: #68005f;
border: 0;
padding: 10px 20px;
color: #fff;
transition: 0.4s;
cursor: pointer;
border-radius: 0;
}
#career .btn-lg:hover {
background: #68005f;
}
#career .box {
margin-bottom: 30px;
}
#career .icon {
float: left;
}
#career .icon i {
color: #68005f;
font-size: 36px;
line-height: 1;
transition: 0.5s;
}
#career .title {
font-weight: 700;
margin-bottom: 15px;
font-size: 16px;
color: #68005f;
margin-left:25px;
text-transform: uppercase;
}
#career .box:hover .title a {
color: #68005f;
}
#career .quote{
font-style: italic;
margin: 0 auto 15px auto;
}
#career .icon {
float: left;
}
#career .icon i {
color: #68005f;
font-size: 21px;
line-height: 1;
transition: 0.5s;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
background: #000;
padding: 0 0 30px 0;
color: #eee;
font-size: 16px;
}
#footer .footer-top {
background: #999;
padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
font-size: 34px;
margin: 0 0 20px 0;
padding: 2px 0 2px 10px;
line-height: 1;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: 3px;
border-left: 4px solid #68005f;
}
#footer .footer-top .footer-info p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: "Montserrat", sans-serif;
color: #eee;
}
#footer .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #333;
color: #eee;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
background: #68005f;
color: #fff;
}
#footer .footer-top h4 {
font-size: 14px;
font-weight: bold;
color: #fff;
text-transform: uppercase;
position: relative;
padding-bottom: 12px;
}
#footer .footer-top h4::before, #footer .footer-top h4::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
height: 2px;
}
#footer .footer-top h4::before {
right: 0;
background: #555;
}
#footer .footer-top h4::after {
background: #68005f;
width: 60px;
}
#footer .footer-top .footer-links {
margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer .footer-top .footer-links ul i {
padding-right: 8px;
color: #ddd;
}
#footer .footer-top .footer-links ul li {
border-bottom: 1px solid #333;
padding: 10px 0;
}
#footer .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer .footer-top .footer-links ul a {
color: #eee;
}
#footer .footer-top .footer-links ul a:hover {
color: #68005f;
}
#footer .footer-top .footer-contact {
margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
line-height: 26px;
}
#footer .footer-top .footer-newsletter {
margin-bottom: 30px;
}
#footer .footer-top .footer-newsletter input[type="email"] {
border: 0;
padding: 6px 8px;
width: 65%;
}
#footer .footer-top .footer-newsletter input[type="submit"] {
background: #68005f;
border: 0;
width: 35%;
padding: 6px 0;
text-align: center;
color: #fff;
transition: 0.3s;
cursor: pointer;
}
#footer .footer-top .footer-newsletter input[type="submit"]:hover {
background: #68005f;
}
#footer .copyright {
text-align: center;
padding-top: 30px;
}
#footer .credits {
text-align: center;
font-size: 13px;
color: #ddd;
}
/*graph*/
#graph.masthead {
position: relative;
/*overflow: hidden;*/
padding-top: calc(7rem + 72px);
padding-bottom: 7rem;
background: linear-gradient(0deg, #ff6a00 0%, #ee0979 100%);
background-repeat: no-repeat;
background-position: center center;
background-attachment: scroll;
background-size: cover;
}
#graph.masthead .masthead-content {
z-index: 1;
position: relative;
}
#graph.masthead .masthead-content .masthead-heading {
font-size: 48px;
font-weight: 700;
}
#graph.masthead .masthead-content .masthead-subheading {
font-size: 40px;
font-weight: 700;
}
#graph.masthead .bg-circle {
z-index: 0;
position: absolute;
border-radius: 100%;
background: linear-gradient(0deg, #ee0979 0%, #ff6a00 100%);
}
#graph.masthead .bg-circle-1 {
height: 90rem;
width: 90rem;
bottom: -55rem;
left: -55rem;
}
#graph.masthead .bg-circle-2 {
height: 50rem;
width: 50rem;
top: -25rem;
right: -25rem;
}
#graph.masthead .bg-circle-3 {
height: 20rem;
width: 20rem;
bottom: -10rem;
right: 5%;
}
#graph.masthead .bg-circle-4 {
height: 30rem;
width: 30rem;
top: -5rem;
right: 35%;
}
@media (min-width: 992px) {
#graph.masthead {
padding-top: calc(10rem + 55px);
padding-bottom: 10rem;
}
#graph.masthead .masthead-content .masthead-heading {
font-size: 48px;
font-weight: 700;
}
#graph.masthead .masthead-content .masthead-subheading {
font-size: 40px;
font-weight: 700;
}
}
/*accordian menu*/
#events .panel-heading .accordion-toggle:after {
/* symbol for "opening" panels */
font-family: 'FontAwesome'; /* essential for enabling glyphicon */
content: "\f107"; /* adjust as needed, taken from bootstrap.css */
float: right; /* adjust as needed */
color: #fff; /* adjust as needed */
font-size: 25px;
margin: -30px 5px 0px 0px;
}
#events .panel-heading .accordion-toggle.collapsed:after {
/* symbol for "collapsed" panels */
content: "\f105"; /* adjust as needed, taken from bootstrap.css */
}
.panel-heading .accordion-toggle:after {
/* symbol for "opening" panels */
font-family: 'FontAwesome'; /* essential for enabling glyphicon */
content: "\f107"; /* adjust as needed, taken from bootstrap.css */
float: right; /* adjust as needed */
color: #fff; /* adjust as needed */
font-size: 15px;
}
.panel-heading .accordion-toggle.collapsed:after {
/* symbol for "collapsed" panels */
content: "\f105"; /* adjust as needed, taken from bootstrap.css */
}
.panel-default>.panel-heading {
color: #fff;
background-color: #68005f;
border-color: #68005f;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 30%);
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 30%);
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 30%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 );
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.panel-title>a, .panel-title>a:active{
display:block;
padding:7px;
color:#fff;
font-size:13px;
letter-spacing:1px;
word-spacing:3px;
text-decoration:none;
font-weight: 500;
}
#events .panel-title>a,#events .panel-title>a:active{
font-size:15px;
padding:5px;
}
.panel-heading a:before {
float: right;
transition: all 0.5s;
}
.panel-heading.active a:before {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
transform: rotate(180deg);
}
/*.collapse.in {
display: block;
}*/
.panel-default>.panel-heading+.panel-collapse>.panel-body {
border-top-color: #68005f;
}
.panel-group .panel-heading+.panel-collapse>.list-group, .panel-group .panel-heading+.panel-collapse>.panel-body {
border: 1px solid #ddd;
background-color: #fff;
}
.panel-body {
padding: 15px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.panel-group {margin-bottom: 10px;}
.panel-group .panel-heading {
border-bottom: 0;
}
.panel-heading {
/*padding: 10px 15px;*/
border-bottom: 1px solid transparent;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
.panel-title {margin:0;}
.panel-body h4 {
font-weight: 400;
margin: 0 0 2px 0;
font-size: 14px;
color:#68005f;
text-transform: uppercase;
}
.panel-body p{
font-size: 15px;
line-height: 23px;
word-spacing: 1px;
}
.panel-body .job-title{
color: #68005f;
font-weight: 700;
margin: 15px 0;
font-size: 14px;
}
/*bullet list*/
.panel-body ul {
position: relative;
list-style: none;
margin-left: 0;
padding-left: 1.2em;
}
.panel-body ul li:before {
/*content: "+";*/
font-family: 'FontAwesome';
content: "\f101";
position: absolute;
left: 0;
color:#68005f;
}
.panel-body li{ font-size: 16px;
line-height: 24px;
}
/*--------end---------panel accordian*/
/*parners*/
#partner {
padding: 60px 0;
}
#partner .form button[type="submit"] {
background: #68005f;
border: 0;
padding: 10px 30px;
color: #fff;
transition: 0.4s;
cursor: pointer;
border-radius: 0;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 70%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 70%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
#partner .form input, #partner .form textarea {
padding: 10px 14px;
border-radius: 0;
box-shadow: none;
font-size: 17px;
}
#partner .form button[type="submit"]:hover {
background: #68005f;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 30%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 30%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 30%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
#partner .form #sendmessage {
color: #28a745;
border: 1px solid #28a745;
display: none;
text-align: center;
padding: 15px;
font-weight: 600;
margin-bottom: 15px;
}
#partner .form #errormessage {
color: red;
display: none;
border: 1px solid red;
text-align: center;
padding: 15px;
font-weight: 600;
margin-bottom: 15px;
}
#partner .form #sendmessage.show, #partner .form #errormessage.show, #partner .form .show {
display: block;
}
#partner .form .validation {
color: red;
display: none;
margin: 0 0 20px;
font-weight: 400;
font-size: 13px;
}
/*models*/
#models {
padding: 60px 0;
}
#models ul {
position: relative;
list-style: none;
margin-left: 0;
padding-left: 1.2em;
}
#models ul li:before {
/*content: "+";*/
font-family: 'FontAwesome';
content: "\f101";
position: absolute;
left: 0;
color:#68005f;
}
#models li{ font-size: 16px;
line-height: 24px;
}
#models .btn-lg {
background: #68005f;
border: 0;
padding: 8px 10px;
color: #fff;
transition: 0.4s;
cursor: pointer;
}
#models .btn-lg:hover {
background: #68005f;
}
#models .title{
font-weight: bold;
color: #68005f;
font-size: 18px;
}
#models .subtitle{
margin-top: 15px;
color: #68005f;
font-size: 18px;
}
/* top most header */
.header-outer{
background-color: #21252b;
position:relative;
-webkit-transition: background 0.1s ease-in-out 0s;
-moz-transition: background 0.1s ease-in-out 0s;
-ms-transition: background 0.1s ease-in-out 0s;
-o-transition: background 0.1s ease-in-out 0s;
transition: background 0.1s ease-in-out 0s;
}
/* new top header bar css*/
.pi-section-dark {
color: #858d91;
}
.pi-section-dark {
background-color: #21252b;
}
.pi-section-w {
position: relative;
-webkit-transition: background 0.1s ease-in-out 0s;
-moz-transition: background 0.1s ease-in-out 0s;
-ms-transition: background 0.1s ease-in-out 0s;
-o-transition: background 0.1s ease-in-out 0s;
transition: background 0.1s ease-in-out 0s;
}
.pi-row-sm {
font-size: 14px;
}
-row-sm, .pi-row-md, .pi-row-lg {
padding-top: 0;
padding-bottom: 0;
}
.pi-section {
max-width: 1120px;
margin: 0 auto;
padding: 5px 25px 45px;
position: relative;
}
.pi-row-block:first-child:not(.pi-pull-right) {
margin-left: 0;
}
.pi-row-sm .pi-row-block-txt {
margin-top: 9px;
margin-bottom: 9px;
}
.pi-row-block-txt {
position: relative;
line-height: 28px;
}
.pi-row-block {
display: inline-block;
margin: 0 10px;
float: left;
line-height: 1em;
vertical-align: top;
max-height: 100%;
}
.pi-pull-right {
float: right !important;
}
.pi-row-block.pi-pull-right:first-child, .pi-row-block:not(.pi-pull-right) + .pi-pull-right {
margin-right: 0;
}
.pi-row-block-icon.pi-icon-circle, .pi-row-block-icon.pi-icon-square {
top: -1px;
height: 26px;
width: 26px;
font-size: 14px;
line-height: 26px;
margin: 0 8px -9px 0;
}
.pi-icon-base {
background: #68005f;
color: #fff;
}
.pi-icon-circle, .pi-icon-square {
background: #68005f;
color: #fff;
}
.pi-icon-square {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.pi-icon-circle, .pi-icon-square {
position: relative;
margin: 0 0 -8px 0;
display: inline-block;
font-size: 14px;
width: 26px;
height: 26px;
overflow: hidden;
line-height: 25px;
text-align: center;
}
.pi-row-block-icon {
position: relative;
margin: -3px 6px 0 0;
font-size: 14px;
}
.pi-section-dark abbr, .pi-section-dark acronym, .pi-section-dark strong, .pi-section-dark b {
color: #ccccd5;
font-weight: 600;
}
.pi-row-block-icon.pi-icon-circle, .pi-row-block-icon.pi-icon-square {
top: -1px;
height: 26px;
width: 26px;
font-size: 14px;
line-height: 26px;
margin: 0 8px -9px 0;
}
.pi-section-dark a {
color: #fff;
}
.pi-row-block-txt a {
border-bottom: 1px solid transparent;
-webkit-transition: all 0.1s ease-in-out 0s;
-moz-transition: all 0.1s ease-in-out 0s;
-ms-transition: all 0.1s ease-in-out 0s;
-o-transition: all 0.1s ease-in-out 0s;
transition: all 0.1s ease-in-out 0s;
}
.pi-row-block a {
max-height: 100%;
}
.pi-row-sm .pi-social-icons.pi-stacked {
margin: 0;
}
.pi-row-sm .pi-social-icons.pi-small {
margin-top: 9px;
margin-bottom: 9px;
}
.pi-row-sm .pi-social-icons {
margin-top: 2px;
margin-bottom: 2px;
}
.pi-social-icons.pi-stacked {
margin-bottom: 20px;
}
.pi-row-sm .pi-full-height, .pi-row-md .pi-full-height, .pi-row-lg .pi-full-height {
vertical-align: top;
}
.pi-social-icons {
margin-bottom: 12px;
}
.pi-social-icons, .pi-social-icons-simple {
display: inline-block;
list-style: none;
margin: 0;
padding: 0;
line-height: 0;
font-size: 0;
-webkit-padding-start: 0;
}
.pi-bordered {
position: relative;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
}
.pi-section-dark .pi-social-icons.pi-full-height.pi-bordered li {
background: #68005f;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 30%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 30%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 30%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
border-radius: 50%;
}
.pi-row-sm .pi-social-icons li {
margin-bottom: 0;
}
.pi-social-icons.pi-bordered li {
margin-left: -1px;
}
.pi-social-icons.pi-stacked li {
margin: 0 5px 0 0;
}
.pi-social-icons li {
margin: 0 8px 8px 0;
}
.pi-social-icons li, .pi-social-icons-simple li {
display: inline-block;
margin: 0;
letter-spacing: normal;
zoom: 1;
line-height: normal;
font-size: 14px;
}
.pi-section-dark .pi-social-icons.pi-full-height a {
color: #fff;
}
.pi-row-sm .pi-social-icons.pi-full-height a {
width: 30px;
height: 25px;
font-size: 14px;
}
.pi-row-sm .pi-full-height > li > a {
line-height: 29px;
}
.pi-section-dark .pi-social-icons a {
color: #fff;
}
.pi-social-icons.pi-small a {
font-size: 14px;
}
.pi-social-icons.pi-small a, .pi-social-icons.pi-small a i {
width: 15px;
height: 15px;
}
.pi-social-icons a {
position: relative;
border-width: 0;
font-size: 18px;
-webkit-transition: all 0.1s ease-in-out 0s;
-moz-transition: all 0.1s ease-in-out 0s;
-ms-transition: all 0.1s ease-in-out 0s;
-o-transition: all 0.1s ease-in-out 0s;
transition: all 0.1s ease-in-out 0s;
}
.pi-social-icons a, .pi-social-icons a i {
display: inline-block;
width: 42px;
height: 42px;
text-align: center;
}
.pi-social-icons a, .pi-social-icons-simple a {
padding: 0;
}
.pi-social-icons a, .pi-social-icons-simple a, .pi-social-icons a:hover, .pi-social-icons-simple a:hover {
text-decoration: none;
border: 0;
overflow: hidden;
}
.pi-row-block a {
max-height: 100%;
}
.pi-row-sm .pi-social-icons.pi-stacked {
margin: 5px 0 0 0px;
}
@media (max-width:479px) {
.pi-hidden-2xs {
display: none !important;
}
#mobile-nav-toggle {
display: inline;
}
}
@media (max-width:768px) {
.pi-hidden-xs {
display: none !important;
}
}
@media (max-width: 992px ){
#header #logo img {
max-height: 80px;
}
#nav-menu-container {
display: none;
}
#mobile-nav-toggle {
display: inline;
}
}
@media (min-width: 992px ) and (max-width: 1200px){
#nav-menu-container {
padding-right: 0 !important;
}
}
@media (min-width: 479px ) and (max-width: 768px){
#mobile-nav-toggle {
display: inline;
}
}
.owl-carousel {
margin: 0;
}
.owl-carousel .owl-nav [class*=owl-] {
color: rgba(255, 255, 255, 0.5);
font-size: 30px;
width: 30px;
height: 30px;
line-height: 30px;
border-radius: 0;
text-align: center;
}
.owl-carousel .owl-nav [class*=owl-]:hover {
color: #fff;
opacity: 1;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next {
position: absolute;
bottom: 0;
top:0;
height: 30px;
margin: auto !important;
}
.owl-carousel .owl-prev {
/*right: 0px;*/
}
.owl-carousel .owl-next {
right: 0px;
}
.owl-carousel .owl-dots {
display: none !important;
}
#event-modal-dialog{
max-width: 70%;
}
.modal-backdrop {
background-color: #000;
opacity:0.8!important;
}
.event-gallery .close{font-size: 3rem;}
.event-gallery .modal-footer{padding: 0 10px 0px 0px;}
.event-gallery .testimonial-item img{width:100%;}
.event-gallery .event-info{margin: 10px 0 0 0; color: #000;font-size: 13px;font-weight: 700;} | assets/css/style.css | # General
--------------------------------------------------------------*/
body {
background: #fff;
color: #666666;
font-family: "Open Sans", sans-serif;
font-size:1rem;
}
a {
color: #68005f;
transition: 0.5s;
}
a:hover, a:active, a:focus {
color: #fff ;
outline: none;
text-decoration: none;
}
p {
padding: 0;
margin: 0 0 30px 0;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Montserrat", sans-serif;
font-weight: 400;
margin: 0 0 20px 0;
padding: 0;
}
/* Back to top button */
.back-to-top {
position: fixed;
display: none;
background: #68005f;
color: #fff;
display: inline-block;
width: 44px;
height: 44px;
text-align: center;
line-height: 1;
font-size: 16px;
border-radius: 50%;
right: 15px;
bottom: 100px;
transition: background 0.5s;
z-index: 11;
}
.back-to-top i {
padding-top: 12px;
color: #fff;
}
@media (max-width: 768px) {
.back-to-top {
bottom: 15px;
}
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
padding: 10px 0 0 0;
height: 130px;
position: relative;
left: 0;
top: 0;
right: 0;
transition: all 0.5s;
z-index: 997;
}
#header.header-scrolled {
position: fixed;
background: rgba(255, 255, 255, 1);
padding: 5px 0;
height: 120px;
transition: all 0.5s;
box-shadow: 0 1px 15px rgba(0, 0, 0, 0.3);
}
#header #logo {
float: left;
display: inline-block;
margin: 10px 10px 10px 0;
line-height: 1em;
vertical-align: top;
max-height: 100%;
}
#header #logo a{
display: inline-block;
padding: 0;
border-bottom: 0;
}
@media (min-width: 1024px) {
#header #logo {
/*padding-left: 60px;*/
}
}
#header #logo h1 {
font-size: 34px;
margin: 0;
padding: 0;
line-height: 1;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: 3px;
}
#header #logo h1 a, #header #logo h1 a:hover {
color: #fff;
padding-left: 10px;
border-left: 4px solid #68005f;
}
#header #logo img {
padding: 0;
margin: 0;
max-height: 96px;
display: block;
}
@media (max-width: 768px) {
#header #logo h1 {
font-size: 28px;
}
#header #logo img {
max-height: 80px;
}
}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
display: table;
width: 100%;
height: 100vh;
background: #000;
}
#intro .carousel-item {
width: 100%;
height: 100vh;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
#intro .carousel-item::before {
content: '';
background-color: rgba(0, 0, 0, 0.7);
position: absolute;
height: 100%;
width: 100%;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
#intro .carousel-container {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
}
#intro .carousel-content {
text-align: center;
}
#intro h2 {
color: #fff;
margin-bottom: 30px;
font-size: 40px;
font-weight: 700;
}
@media (max-width: 768px) {
#intro h2 {
font-size: 28px;
}
}
#intro p {
width: 80%;
margin: 0 auto 30px auto;
color: #fff;
}
@media (min-width: 1024px) {
#intro p {
width: 60%;
}
}
#intro .carousel-fade .carousel-inner .carousel-item {
-webkit-transition-property: opacity;
transition-property: opacity;
}
#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
opacity: 0;
}
#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
opacity: 1;
transition: 0.5s;
}
#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
left: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
#intro .carousel-control-prev, #intro .carousel-control-next {
width: 10%;
}
@media (min-width: 1024px) {
#intro .carousel-control-prev, #intro .carousel-control-next {
width: 5%;
}
}
#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
background: none;
font-size: 32px;
line-height: 1;
}
#intro .carousel-indicators li {
cursor: pointer;
}
#intro .btn-get-started {
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
display: inline-block;
padding: 8px 32px;
border-radius: 50px;
transition: 0.5s;
margin: 10px;
color: #fff;
background: #68005f;
}
#intro .btn-get-started:hover {
background: #fff;
color: #68005f;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
margin: 0;
padding: 0;
list-style: none;
}
.nav-menu ul {
position: absolute;
display: none;
top: 100%;
left: 0;
z-index: 99;
}
.nav-menu li {
position: relative;
white-space: nowrap;
}
.nav-menu > li {
float: left;
}
.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
display: block;
}
.nav-menu ul ul {
top: 0;
left: 100%;
}
.nav-menu ul li {
min-width: 180px;
}
/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
padding-right: 30px;
}
.sf-arrows .sf-with-ul:after {
content: "\f107";
position: absolute;
right: 15px;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
}
.sf-arrows ul .sf-with-ul:after {
content: "\f105";
}
/* Nav Meu Container */
#nav-menu-container {
float: right;
margin: 10px 0 0 0;
}
@media (min-width: 1024px) {
#nav-menu-container {
padding-right: 20px;
}
}
@media (max-width: 768px) {
#nav-menu-container {
display: none;
}
}
/* Nav Meu Styling */
.nav-menu a {
padding: 0 10px;
text-decoration: none;
display: inline-block;
color: #000;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 14px;
text-transform: uppercase;
outline: none;
line-height: 100px;
}
.submenu a{ line-height: 1em;}
.nav-menu li:hover > a, .nav-menu > .menu-active > a {
color: #68005f;
}
.nav-menu > li {
/*margin-left: 10px;*/
}
.nav-menu ul {
margin: 4px 0 0 0;
padding: 10px;
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
background: #fff;
}
.nav-menu ul li {
transition: 0.3s;
}
.nav-menu ul li a {
padding: 10px;
color: #333;
transition: 0.3s;
display: block;
font-size: 13px;
text-transform: uppercase;
}
.nav-menu ul li:hover > a {
color: #68005f;
}
.nav-menu ul ul {
margin: 0;
}
/* Mobile Nav Toggle */
#mobile-nav-toggle {
position: fixed;
right: 0;
top: 0;
z-index: 999;
margin: 55px 20px 0 0;
border: 0;
background: #f4f6f6;
font-size: 24px;
display: none;
transition: all 0.4s;
outline: none;
cursor: pointer;
}
#mobile-nav-toggle i {
color: #586266;
}
@media (max-width: 768px) {
#mobile-nav-toggle {
display: inline;
}
}
/* Mobile Nav Styling */
#mobile-nav {
position: fixed;
top: 0;
padding-top: 18px;
bottom: 0;
z-index: 998;
background: rgba(0, 0, 0, 0.8);
left: -260px;
width: 260px;
overflow-y: auto;
transition: 0.4s;
}
#mobile-nav ul {
padding: 0;
margin: 0;
list-style: none;
}
#mobile-nav ul li {
position: relative;
}
#mobile-nav ul li a {
color: #fff;
font-size: 13px;
text-transform: uppercase;
overflow: hidden;
padding: 10px 22px 10px 15px;
position: relative;
text-decoration: none;
width: 100%;
display: block;
outline: none;
font-weight: 700;
font-family: "Montserrat", sans-serif;
}
#mobile-nav ul li a:hover {
color: #fff;
}
#mobile-nav ul li li {
padding-left: 30px;
}
#mobile-nav ul .menu-has-children i {
position: absolute;
right: 0;
z-index: 99;
padding: 15px;
cursor: pointer;
color: #fff;
}
#mobile-nav ul .menu-has-children i.fa-chevron-up {
color: #68005f;
}
#mobile-nav ul .menu-has-children li a {
text-transform: none;
}
#mobile-nav ul .menu-item-active {
color: #68005f;
}
#mobile-body-overly {
width: 100%;
height: 100%;
z-index: 997;
top: 0;
left: 0;
position: fixed;
background: rgba(0, 0, 0, 0.7);
display: none;
}
/* Mobile Nav body classes */
body.mobile-nav-active {
overflow: hidden;
}
body.mobile-nav-active #mobile-nav {
left: 0;
}
body.mobile-nav-active #mobile-nav-toggle {
color: #fff;
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header h3 {
font-size: 28px;
color: #111;
text-transform: uppercase;
text-align: center;
font-weight: 700;
position: relative;
padding-bottom: 15px;
}
.section-header h3::before {
content: '';
position: absolute;
display: block;
width: 120px;
height: 1px;
background: #ddd;
bottom: 1px;
left: calc(50% - 60px);
}
.section-header h3::after {
content: '';
position: absolute;
display: block;
width: 40px;
height: 3px;
background: #68005f;
bottom: 0;
left: calc(50% - 20px);
}
.section-header p {
text-align: center;
padding-bottom: 30px;
color: #333;
}
/* Section with background
--------------------------------*/
.section-bg {
background: #f7f7f7;
}
/* Featured Services Section
--------------------------------*/
#featured-services {
background: #000;
}
#featured-services .box {
padding: 30px 20px;
}
#featured-services .box-bg {
background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}
#featured-services i {
color: #68005f;
font-size: 48px;
display: inline-block;
line-height: 1;
}
#featured-services h4 {
font-weight: 400;
margin: 15px 0;
font-size: 18px;
}
#featured-services h4 a {
color: #fff;
}
#featured-services h4 a:hover {
color: #68005f;
}
#featured-services p {
font-size: 14px;
line-height: 24px;
color: #fff;
margin-bottom: 0;
}
/* About Us Section
--------------------------------*/
#about {
background: url("../img/about-bg.jpg") center top no-repeat fixed;
background-size: cover;
padding: 60px 0 40px 0;
position: relative;
}
#about::before {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.92);
z-index: 9;
}
#about .container {
position: relative;
z-index: 10;
}
#about .about-col {
background: #fff;
border-radius: 0 0 4px 4px;
box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
margin-bottom: 20px;
}
#about .about-col .img {
position: relative;
}
#about .about-col .img img {
border-radius: 4px 4px 0 0;
}
#about .about-col .icon {
width: 64px;
height: 64px;
padding-top: 8px;
text-align: center;
position: absolute;
background-color: #68005f;
border-radius: 50%;
text-align: center;
border: 4px solid #fff;
left: calc( 50% - 32px);
bottom: -30px;
transition: 0.3s;
}
#about .about-col i {
font-size: 36px;
line-height: 1;
color: #fff;
transition: 0.3s;
}
#about .about-col:hover .icon {
background-color: #fff;
}
#about .about-col:hover i {
color: #68005f;
}
#about .about-col h2 {
color: #000;
text-align: center;
font-weight: 700;
font-size: 20px;
padding: 0;
margin: 40px 0 12px 0;
}
#about .about-col h2 a {
color: #000;
}
#about .about-col h2 a:hover {
color: #68005f;
}
#about .about-col p {
font-size: 14px;
line-height: 24px;
color: #333;
margin-bottom: 0;
padding: 0 20px 20px 20px;
}
/* Services Section
--------------------------------*/
#services {
background: #fff;
background-size: cover;
padding: 60px 0 40px 0;
}
#services .box {
margin-bottom: 30px;
}
#services .icon {
float: left;
margin: -5px 0 0px 0;
}
#services .icon i {
color: #68005f;
font-size: 36px;
line-height: 1;
transition: 0.5s;
}
#services .title {
margin-left: 60px;
font-weight: 700;
margin-bottom: 15px;
font-size: 20px;
}
#services .title a {
color: #111;
}
#services .box:hover .title a {
color: #68005f;
}
#services .description {
font-size: 16px;
margin-left: 60px;
line-height: 24px;
margin-bottom: 0;
word-spacing: 2px;
text-align: justify;
}
/* Call To Action Section
--------------------------------*/
#call-to-action {
background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/call-to-action-bg.jpg) fixed center center;
background-size: cover;
padding: 60px 0;
}
#call-to-action h3 {
color: #fff;
font-size: 28px;
font-weight: 700;
}
#call-to-action p {
color: #fff;
}
#call-to-action .cta-btn {
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
display: inline-block;
padding: 8px 28px;
border-radius: 25px;
transition: 0.5s;
margin-top: 10px;
border: 2px solid #fff;
color: #fff;
}
#call-to-action .cta-btn:hover {
background: #68005f;
border: 2px solid #68005f;
}
/* Call To Action Section
--------------------------------*/
#skills {
padding: 60px 0;
}
#skills .progress {
height: 35px;
margin-bottom: 10px;
}
#skills .progress .skill {
font-family: "Open Sans", sans-serif;
line-height: 35px;
padding: 0;
margin: 0 0 0 20px;
text-transform: uppercase;
}
#skills .progress .skill .val {
float: right;
font-style: normal;
margin: 0 20px 0 0;
}
#skills .progress-bar {
width: 1px;
text-align: left;
transition: .9s;
}
.progress{font-size: 0.80rem;}
/* Facts Section
--------------------------------*/
#facts {
/*background: url("../img/facts-bg.jpg") center top no-repeat fixed;*/
background: url("../img/abroad-bg.jpg") center top no-repeat fixed;
background-size: cover;
padding: 60px 0 0 0;
position: relative;
}
#facts::before {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.8);
z-index: 9;
}
#facts .container {
position: relative;
z-index: 10;
}
#facts .counters span {
font-family: "Montserrat", sans-serif;
font-weight: bold;
font-size: 48px;
display: block;
color: #68005f;
}
#facts .counters p {
padding: 0;
margin: 0 0 20px 0;
font-family: "Montserrat", sans-serif;
font-size: 16px;
color: #111;
}
#facts .facts-img {
text-align: center;
padding-top: 30px;
}
#facts .cta-btn {
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
display: inline-block;
padding: 8px 28px;
border-radius: 25px;
transition: 0.5s;
border: 2px solid #68005f;
color: #68005f;
}
#facts .cta-btn:hover, #clients .cta-btn:hover{
background: #68005f;
border: 2px solid #68005f;
color: #fff;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 70%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 70%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
#facts .title{
color: #68005f;
font-size: 22px;
}
/* Portfolio Section
--------------------------------*/
#portfolio {
padding: 60px 0;
}
#portfolio #portfolio-flters {
padding: 0;
margin: 5px 0 35px 0;
list-style: none;
text-align: center;
}
#portfolio #portfolio-flters li {
cursor: pointer;
margin: 15px 15px 15px 0;
display: inline-block;
padding: 10px 20px;
font-size: 14px;
line-height: 20px;
color: #666666;
border-radius: 4px;
text-transform: uppercase;
background: #fff;
margin-bottom: 5px;
transition: all 0.3s ease-in-out;
}
#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
background: #68005f;
color: #fff;
}
#portfolio #portfolio-flters li:last-child {
margin-right: 0;
}
#portfolio .portfolio-wrap {
box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
transition: 0.3s;
}
#portfolio .portfolio-wrap:hover {
box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}
#portfolio .portfolio-item {
position: relative;
height: 360px;
overflow: hidden;
}
#portfolio .portfolio-item figure {
background: #000;
overflow: hidden;
height: 240px;
position: relative;
border-radius: 4px 4px 0 0;
margin: 0;
}
#portfolio .portfolio-item figure:hover img {
opacity: 0.4;
transition: 0.3s;
}
#portfolio .portfolio-item .img-fluid {
height: 240px;
}
#portfolio .portfolio-item figure .link-preview, #portfolio .portfolio-item figure .link-details {
position: absolute;
display: inline-block;
opacity: 0;
line-height: 1;
text-align: center;
width: 36px;
height: 36px;
background: #fff;
border-radius: 50%;
transition: 0.2s linear;
}
#portfolio .portfolio-item figure .link-preview i, #portfolio .portfolio-item figure .link-details i {
padding-top: 6px;
font-size: 22px;
color: #333;
}
#portfolio .portfolio-item figure .link-preview:hover, #portfolio .portfolio-item figure .link-details:hover {
background: #68005f;
}
#portfolio .portfolio-item figure .link-preview:hover i, #portfolio .portfolio-item figure .link-details:hover i {
color: #fff;
}
#portfolio .portfolio-item figure .link-preview {
left: calc(50% - 38px);
top: calc(50% - 18px);
}
#portfolio .portfolio-item figure .link-details {
right: calc(50% - 38px);
top: calc(50% - 18px);
}
#portfolio .portfolio-item figure:hover .link-preview {
opacity: 1;
left: calc(50% - 15px);
}
#portfolio .portfolio-item figure:hover .link-details {
opacity: 1;
right: calc(50% - 44px);
}
#portfolio .portfolio-item .portfolio-info {
background: #fff;
text-align: center;
padding: 30px;
height: 90px;
border-radius: 0 0 3px 3px;
}
#portfolio .portfolio-item .portfolio-info h4 {
font-size: 18px;
line-height: 1px;
font-weight: 700;
margin-bottom: 18px;
padding-bottom: 0;
}
#portfolio .portfolio-item .portfolio-info h4 a {
color: #333;
}
#portfolio .portfolio-item .portfolio-info h4 a:hover {
color: #68005f;
}
#portfolio .portfolio-item .portfolio-info p {
padding: 0;
margin: 0;
color: #b8b8b8;
font-weight: 500;
font-size: 14px;
text-transform: uppercase;
}
/* Events Section
--------------------------------*/
#events {
padding: 60px 0;
}
#events #events-flters {
padding: 0;
margin: 5px 0 35px 0;
list-style: none;
text-align: center;
}
#events #events-flters li {
cursor: pointer;
margin: 15px 15px 15px 0;
display: inline-block;
padding: 10px 20px;
font-size: 12px;
line-height: 20px;
color: #666666;
border-radius: 4px;
text-transform: uppercase;
background: #fff;
margin-bottom: 5px;
transition: all 0.3s ease-in-out;
}
#events #events-flters li:hover, #events #events-flters li.filter-active {
background: #68005f;
color: #fff;
}
#events #events-flters li:last-child {
margin-right: 0;
}
#events .events-wrap {
box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
transition: 0.3s;
}
#events .events-wrap:hover {
box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}
#events .events-item {
position: relative;
height: 360px;
overflow: hidden;
}
#events .events-item figure {
background: #000;
overflow: hidden;
height: 240px;
position: relative;
border-radius: 4px 4px 0 0;
margin: 0;
}
#events .events-item figure:hover img {
opacity: 0.4;
transition: 0.3s;
}
#events .events-item figure .link-preview, #events .events-item figure .link-details {
position: absolute;
display: inline-block;
opacity: 0;
line-height: 1;
text-align: center;
width: 36px;
height: 36px;
background: #fff;
border-radius: 50%;
transition: 0.2s linear;
}
#events .events-item figure .link-preview i, #events .events-item figure .link-details i {
padding-top: 6px;
font-size: 22px;
color: #333;
}
#events .events-item figure .link-preview:hover, #events .events-item figure .link-details:hover {
background: #68005f;
}
#events .events-item figure .link-preview:hover i, #events .events-item figure .link-details:hover i {
color: #fff;
}
#events .events-item figure .link-preview {
left: calc(50% - 38px);
top: calc(50% - 18px);
}
#events .events-item figure .link-details {
right: calc(50% - 38px);
top: calc(50% - 18px);
}
#events .events-item figure:hover .link-preview {
opacity: 1;
left: calc(50% - 15px);
}
#events .events-item figure:hover .link-details {
opacity: 1;
right: calc(50% - 44px);
}
#events .events-item .events-info {
background: #fff;
text-align: center;
padding: 30px;
height: 90px;
border-radius: 0 0 3px 3px;
}
#events .events-item .events-info h4 {
font-size: 18px;
line-height: 1px;
font-weight: 700;
margin-bottom: 18px;
padding-bottom: 0;
}
#events .events-item .events-info h4 a {
color: #333;
}
#events .events-item .events-info h4 a:hover {
color: #68005f;
}
#events .events-item .events-info p {
padding: 0;
margin: 0;
color: #b8b8b8;
font-weight: 500;
font-size: 14px;
text-transform: uppercase;
}
#events .cal-icon{
float:left;
margin: 6px 10px 0 10px;
font-size: 26px;
}
#events .event-date{
font-size: 12px;
margin: 2px 0px 2px 0;
}
#events .title {
font-weight: 700;
margin-bottom: 15px;
font-size: 16px;
color: #68005f;
margin-left: 25px;
text-transform: uppercase;
}
#events .icon i {
color: #68005f;
font-size: 21px;
line-height: 1;
transition: 0.5s;
float: left;
}
.wrapper{
width:70%;
}
@media(max-width:992px){
.wrapper{
width:100%;
}
}
.panel-heading {
padding: 0;
border:0;
}
/* Clients Section
--------------------------------*/
#clients {
/*background: url("../img/background.jpg") center top no-repeat fixed;*//*rgb(241, 232, 241)*/
background: linear-gradient(rgba(247, 239, 247, 0.1), rgba(0, 0, 0, 0.1)), url(../img/partners-bg.jpg) fixed center center;
background-size: cover;
padding: 60px 0 0 0;
/* position: relative;*/
}
/*#clients::before {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background:rgba(255, 255, 255, 0.5);
z-index: 9;
}*/
#clients .container {
position: relative;
z-index: 10;
}
#clients {
padding: 60px 0;
}
#clients img {
max-width: 100%;
opacity: 0.85;
transition: 0.3s;
padding: 15px 0;
}
#clients img:hover {
opacity: 1;
}
#clients .owl-nav, #clients .owl-dots {
margin-top: 5px;
text-align: center;
}
#clients .owl-dot {
display: inline-block;
margin: 0 5px;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #ddd;
}
#clients .owl-dot.active {
background-color: #68005f;
}
.clients p{
margin-top: 60px;
padding: 0;
}
#clients .cta-btn {
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
display: inline-block;
padding: 8px 28px;
border-radius: 25px;
transition: 0.5s;
border: 2px solid #fff;
color: #fff;
}
/* Testimonials Section
--------------------------------*/
#testimonials {
padding: 60px 0;
}
#testimonials .section-header {
margin-bottom: 40px;
}
#testimonials .testimonial-item {
text-align: center;
}
#testimonials .testimonial-item .testimonial-img {
width: 120px;
border-radius: 50%;
border: 4px solid #fff;
margin: 0 auto;
}
#testimonials .testimonial-item h3 {
font-size: 20px;
font-weight: bold;
margin: 10px 0 5px 0;
color: #111;
}
#testimonials .testimonial-item h4 {
font-size: 14px;
color: #999;
margin: 0 0 15px 0;
}
#testimonials .testimonial-item .quote-sign-left {
margin-top: -15px;
padding-right: 10px;
display: inline-block;
width: 37px;
}
#testimonials .testimonial-item .quote-sign-right {
margin-bottom: -15px;
padding-left: 10px;
display: inline-block;
max-width: 100%;
width: 37px;
}
#testimonials .testimonial-item p {
font-style: italic;
margin: 0 auto 15px auto;
}
@media (min-width: 992px) {
#testimonials .testimonial-item p {
width: 80%;
}
}
#testimonials .owl-nav, #testimonials .owl-dots {
margin-top: 5px;
text-align: center;
}
#testimonials .owl-dot {
display: inline-block;
margin: 0 5px;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #ddd;
}
#testimonials .owl-dot.active {
background-color: #68005f;
}
/* Team Section
--------------------------------*/
#team {
background: #fff;
padding: 60px 0;
}
#team .member {
text-align: center;
margin-bottom: 20px;
background: #000;
position: relative;
}
#team .member .member-info {
opacity: 0;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
transition: 0.2s;
}
#team .member .member-info-content {
margin-top: -50px;
transition: margin 0.2s;
}
#team .member:hover .member-info {
background: rgba(0, 0, 0, 0.7);
opacity: 1;
transition: 0.4s;
}
#team .member:hover .member-info-content {
margin-top: 0;
transition: margin 0.4s;
}
#team .member h4 {
font-weight: 700;
margin-bottom: 2px;
font-size: 18px;
color: #fff;
}
#team .member span {
font-style: italic;
display: block;
font-size: 13px;
color: #fff;
}
#team .member .social {
margin-top: 15px;
}
#team .member .social a {
transition: none;
color: #fff;
}
#team .member .social a:hover {
color: #68005f;
}
#team .member .social i {
font-size: 18px;
margin: 0 2px;
}
/* Contact Section
--------------------------------*/
#contact {
padding: 0 0 60px 0;
}
#contact .contact-info {
margin-bottom: 20px;
text-align: center;
}
#contact .contact-info i {
font-size: 48px;
display: inline-block;
margin-bottom: 10px;
color: #68005f;
}
#contact .contact-info address, #contact .contact-info p {
margin-bottom: 0;
color: #000;
}
#contact .contact-info h3 {
font-size: 18px;
margin-bottom: 15px;
font-weight: bold;
text-transform: uppercase;
color: #999;
}
#contact .contact-info a {
color: #000;
}
#contact .contact-info p{
font-size: 16px;
}
#contact .contact-info a:hover {
color: #68005f;
}
#contact .contact-address, #contact .contact-phone, #contact .contact-email {
margin-bottom: 20px;
}
@media (min-width: 768px) {
#contact .contact-address, #contact .contact-phone, #contact .contact-email {
padding: 20px 0;
}
}
@media (min-width: 768px) {
#contact .contact-phone {
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
}
}
#contact .form #sendmessage {
color: #28a745;
border: 1px solid #28a745;
display: none;
text-align: center;
padding: 15px;
font-weight: 600;
margin-bottom: 15px;
}
#contact .form #errormessage {
color: red;
display: none;
border: 1px solid red;
text-align: center;
padding: 15px;
font-weight: 600;
margin-bottom: 15px;
}
#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
display: block;
}
#contact .form .validation {
color: red;
display: none;
margin: 0 0 20px;
font-weight: 400;
font-size: 13px;
}
#contact .form input, #contact .form textarea {
padding: 10px 14px;
border-radius: 0;
box-shadow: none;
font-size: 17px;
}
#contact .form button[type="submit"] {
background: #68005f;
border: 0;
padding: 10px 30px;
color: #fff;
transition: 0.4s;
cursor: pointer;
border-radius: 0;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 70%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 70%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
#contact .form button[type="submit"]:hover {
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 30%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 30%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 30%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
/*Study abroad*/
#enrollment_form .form button[type="submit"] {
background: #68005f;
border: 0;
padding: 10px 30px;
color: #fff;
transition: 0.4s;
cursor: pointer;
border-radius: 0;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 70%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 70%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
#enrollment_form .form button[type="submit"]:hover {
background: #68005f;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 30%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 30%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 30%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
.note{font-size: 15px;}
.modal-body .success{
color: #28a745;
font-size: 20px;
font-weight: 600;
text-align: center;
}
/* Contact Section
--------------------------------*/
/*career section*/
#career {
padding: 60px 0;
}
#career .contact-info {
margin-bottom: 20px;
text-align: center;
}
#career .contact-info i {
font-size: 48px;
display: inline-block;
margin-bottom: 10px;
color: #68005f;
}
#career .contact-info address, #career .contact-info p {
margin-bottom: 0;
color: #000;
}
#career .contact-info h3 {
font-size: 18px;
margin-bottom: 15px;
font-weight: bold;
text-transform: uppercase;
color: #999;
}
#career .contact-info a {
color: #000;
}
#career .contact-info a:hover {
color: #68005f;
}
#career .contact-address, #career .contact-phone, #career .contact-email {
margin-bottom: 20px;
}
@media (min-width: 768px) {
#career .contact-address, #career .contact-phone, #career .contact-email {
padding: 20px 0;
}
}
@media (min-width: 768px) {
#career .contact-phone {
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
}
}
#career .form #sendmessage {
color: #28a745;
border: 1px solid #28a745;
display: none;
text-align: center;
padding: 15px;
font-weight: 600;
margin-bottom: 15px;
}
#career .form #errormessage {
color: red;
display: none;
border: 1px solid red;
text-align: center;
padding: 15px;
font-weight: 600;
margin-bottom: 15px;
}
#career .form #sendmessage.show, #career .form #errormessage.show, #career .form .show {
display: block;
}
#career .form .validation {
color: red;
display: none;
margin: 0 0 20px;
font-weight: 400;
font-size: 13px;
}
#career .form input, #career .form textarea {
padding: 10px 14px;
border-radius: 0;
box-shadow: none;
font-size: 17px;
}
#career .form button[type="submit"] {
background: #68005f;
border: 0;
padding: 10px 30px;
color: #fff;
transition: 0.4s;
cursor: pointer;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 70%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 70%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
#career .form button[type="submit"]:hover {
background: #68005f;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 30%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 30%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 30%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
#career .btn-lg {
background: #68005f;
border: 0;
padding: 10px 20px;
color: #fff;
transition: 0.4s;
cursor: pointer;
border-radius: 0;
}
#career .btn-lg:hover {
background: #68005f;
}
#career .box {
margin-bottom: 30px;
}
#career .icon {
float: left;
}
#career .icon i {
color: #68005f;
font-size: 36px;
line-height: 1;
transition: 0.5s;
}
#career .title {
font-weight: 700;
margin-bottom: 15px;
font-size: 16px;
color: #68005f;
margin-left:25px;
text-transform: uppercase;
}
#career .box:hover .title a {
color: #68005f;
}
#career .quote{
font-style: italic;
margin: 0 auto 15px auto;
}
#career .icon {
float: left;
}
#career .icon i {
color: #68005f;
font-size: 21px;
line-height: 1;
transition: 0.5s;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
background: #000;
padding: 0 0 30px 0;
color: #eee;
font-size: 16px;
}
#footer .footer-top {
background: #999;
padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
font-size: 34px;
margin: 0 0 20px 0;
padding: 2px 0 2px 10px;
line-height: 1;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: 3px;
border-left: 4px solid #68005f;
}
#footer .footer-top .footer-info p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: "Montserrat", sans-serif;
color: #eee;
}
#footer .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #333;
color: #eee;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
background: #68005f;
color: #fff;
}
#footer .footer-top h4 {
font-size: 14px;
font-weight: bold;
color: #fff;
text-transform: uppercase;
position: relative;
padding-bottom: 12px;
}
#footer .footer-top h4::before, #footer .footer-top h4::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
height: 2px;
}
#footer .footer-top h4::before {
right: 0;
background: #555;
}
#footer .footer-top h4::after {
background: #68005f;
width: 60px;
}
#footer .footer-top .footer-links {
margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer .footer-top .footer-links ul i {
padding-right: 8px;
color: #ddd;
}
#footer .footer-top .footer-links ul li {
border-bottom: 1px solid #333;
padding: 10px 0;
}
#footer .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer .footer-top .footer-links ul a {
color: #eee;
}
#footer .footer-top .footer-links ul a:hover {
color: #68005f;
}
#footer .footer-top .footer-contact {
margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
line-height: 26px;
}
#footer .footer-top .footer-newsletter {
margin-bottom: 30px;
}
#footer .footer-top .footer-newsletter input[type="email"] {
border: 0;
padding: 6px 8px;
width: 65%;
}
#footer .footer-top .footer-newsletter input[type="submit"] {
background: #68005f;
border: 0;
width: 35%;
padding: 6px 0;
text-align: center;
color: #fff;
transition: 0.3s;
cursor: pointer;
}
#footer .footer-top .footer-newsletter input[type="submit"]:hover {
background: #68005f;
}
#footer .copyright {
text-align: center;
padding-top: 30px;
}
#footer .credits {
text-align: center;
font-size: 13px;
color: #ddd;
}
/*graph*/
#graph.masthead {
position: relative;
/*overflow: hidden;*/
padding-top: calc(7rem + 72px);
padding-bottom: 7rem;
background: linear-gradient(0deg, #ff6a00 0%, #ee0979 100%);
background-repeat: no-repeat;
background-position: center center;
background-attachment: scroll;
background-size: cover;
}
#graph.masthead .masthead-content {
z-index: 1;
position: relative;
}
#graph.masthead .masthead-content .masthead-heading {
font-size: 48px;
font-weight: 700;
}
#graph.masthead .masthead-content .masthead-subheading {
font-size: 40px;
font-weight: 700;
}
#graph.masthead .bg-circle {
z-index: 0;
position: absolute;
border-radius: 100%;
background: linear-gradient(0deg, #ee0979 0%, #ff6a00 100%);
}
#graph.masthead .bg-circle-1 {
height: 90rem;
width: 90rem;
bottom: -55rem;
left: -55rem;
}
#graph.masthead .bg-circle-2 {
height: 50rem;
width: 50rem;
top: -25rem;
right: -25rem;
}
#graph.masthead .bg-circle-3 {
height: 20rem;
width: 20rem;
bottom: -10rem;
right: 5%;
}
#graph.masthead .bg-circle-4 {
height: 30rem;
width: 30rem;
top: -5rem;
right: 35%;
}
@media (min-width: 992px) {
#graph.masthead {
padding-top: calc(10rem + 55px);
padding-bottom: 10rem;
}
#graph.masthead .masthead-content .masthead-heading {
font-size: 48px;
font-weight: 700;
}
#graph.masthead .masthead-content .masthead-subheading {
font-size: 40px;
font-weight: 700;
}
}
/*accordian menu*/
#events .panel-heading .accordion-toggle:after {
/* symbol for "opening" panels */
font-family: 'FontAwesome'; /* essential for enabling glyphicon */
content: "\f107"; /* adjust as needed, taken from bootstrap.css */
float: right; /* adjust as needed */
color: #fff; /* adjust as needed */
font-size: 25px;
margin: -30px 5px 0px 0px;
}
#events .panel-heading .accordion-toggle.collapsed:after {
/* symbol for "collapsed" panels */
content: "\f105"; /* adjust as needed, taken from bootstrap.css */
}
.panel-heading .accordion-toggle:after {
/* symbol for "opening" panels */
font-family: 'FontAwesome'; /* essential for enabling glyphicon */
content: "\f107"; /* adjust as needed, taken from bootstrap.css */
float: right; /* adjust as needed */
color: #fff; /* adjust as needed */
font-size: 15px;
}
.panel-heading .accordion-toggle.collapsed:after {
/* symbol for "collapsed" panels */
content: "\f105"; /* adjust as needed, taken from bootstrap.css */
}
.panel-default>.panel-heading {
color: #fff;
background-color: #68005f;
border-color: #68005f;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 30%);
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 30%);
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 30%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 );
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.panel-title>a, .panel-title>a:active{
display:block;
padding:7px;
color:#fff;
font-size:13px;
letter-spacing:1px;
word-spacing:3px;
text-decoration:none;
font-weight: 500;
}
#events .panel-title>a,#events .panel-title>a:active{
font-size:15px;
padding:5px;
}
.panel-heading a:before {
float: right;
transition: all 0.5s;
}
.panel-heading.active a:before {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
transform: rotate(180deg);
}
/*.collapse.in {
display: block;
}*/
.panel-default>.panel-heading+.panel-collapse>.panel-body {
border-top-color: #68005f;
}
.panel-group .panel-heading+.panel-collapse>.list-group, .panel-group .panel-heading+.panel-collapse>.panel-body {
border: 1px solid #ddd;
background-color: #fff;
}
.panel-body {
padding: 15px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.panel-group {margin-bottom: 10px;}
.panel-group .panel-heading {
border-bottom: 0;
}
.panel-heading {
/*padding: 10px 15px;*/
border-bottom: 1px solid transparent;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
.panel-title {margin:0;}
.panel-body h4 {
font-weight: 400;
margin: 0 0 2px 0;
font-size: 14px;
color:#68005f;
text-transform: uppercase;
}
.panel-body p{
font-size: 15px;
line-height: 23px;
word-spacing: 1px;
}
.panel-body .job-title{
color: #68005f;
font-weight: 700;
margin: 15px 0;
font-size: 14px;
}
/*bullet list*/
.panel-body ul {
position: relative;
list-style: none;
margin-left: 0;
padding-left: 1.2em;
}
.panel-body ul li:before {
/*content: "+";*/
font-family: 'FontAwesome';
content: "\f101";
position: absolute;
left: 0;
color:#68005f;
}
.panel-body li{ font-size: 16px;
line-height: 24px;
}
/*--------end---------panel accordian*/
/*parners*/
#partner {
padding: 60px 0;
}
#partner .form button[type="submit"] {
background: #68005f;
border: 0;
padding: 10px 30px;
color: #fff;
transition: 0.4s;
cursor: pointer;
border-radius: 0;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 70%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 70%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
#partner .form input, #partner .form textarea {
padding: 10px 14px;
border-radius: 0;
box-shadow: none;
font-size: 17px;
}
#partner .form button[type="submit"]:hover {
background: #68005f;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 30%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 30%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 30%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
}
#partner .form #sendmessage {
color: #28a745;
border: 1px solid #28a745;
display: none;
text-align: center;
padding: 15px;
font-weight: 600;
margin-bottom: 15px;
}
#partner .form #errormessage {
color: red;
display: none;
border: 1px solid red;
text-align: center;
padding: 15px;
font-weight: 600;
margin-bottom: 15px;
}
#partner .form #sendmessage.show, #partner .form #errormessage.show, #partner .form .show {
display: block;
}
#partner .form .validation {
color: red;
display: none;
margin: 0 0 20px;
font-weight: 400;
font-size: 13px;
}
/*models*/
#models {
padding: 60px 0;
}
#models ul {
position: relative;
list-style: none;
margin-left: 0;
padding-left: 1.2em;
}
#models ul li:before {
/*content: "+";*/
font-family: 'FontAwesome';
content: "\f101";
position: absolute;
left: 0;
color:#68005f;
}
#models li{ font-size: 16px;
line-height: 24px;
}
#models .btn-lg {
background: #68005f;
border: 0;
padding: 8px 10px;
color: #fff;
transition: 0.4s;
cursor: pointer;
}
#models .btn-lg:hover {
background: #68005f;
}
#models .title{
font-weight: bold;
color: #68005f;
font-size: 18px;
}
#models .subtitle{
margin-top: 15px;
color: #68005f;
font-size: 18px;
}
/* top most header */
.header-outer{
background-color: #21252b;
position:relative;
-webkit-transition: background 0.1s ease-in-out 0s;
-moz-transition: background 0.1s ease-in-out 0s;
-ms-transition: background 0.1s ease-in-out 0s;
-o-transition: background 0.1s ease-in-out 0s;
transition: background 0.1s ease-in-out 0s;
}
/* new top header bar css*/
.pi-section-dark {
color: #858d91;
}
.pi-section-dark {
background-color: #21252b;
}
.pi-section-w {
position: relative;
-webkit-transition: background 0.1s ease-in-out 0s;
-moz-transition: background 0.1s ease-in-out 0s;
-ms-transition: background 0.1s ease-in-out 0s;
-o-transition: background 0.1s ease-in-out 0s;
transition: background 0.1s ease-in-out 0s;
}
.pi-row-sm {
font-size: 14px;
}
-row-sm, .pi-row-md, .pi-row-lg {
padding-top: 0;
padding-bottom: 0;
}
.pi-section {
max-width: 1120px;
margin: 0 auto;
padding: 5px 25px 45px;
position: relative;
}
.pi-row-block:first-child:not(.pi-pull-right) {
margin-left: 0;
}
.pi-row-sm .pi-row-block-txt {
margin-top: 9px;
margin-bottom: 9px;
}
.pi-row-block-txt {
position: relative;
line-height: 28px;
}
.pi-row-block {
display: inline-block;
margin: 0 10px;
float: left;
line-height: 1em;
vertical-align: top;
max-height: 100%;
}
.pi-pull-right {
float: right !important;
}
.pi-row-block.pi-pull-right:first-child, .pi-row-block:not(.pi-pull-right) + .pi-pull-right {
margin-right: 0;
}
.pi-row-block-icon.pi-icon-circle, .pi-row-block-icon.pi-icon-square {
top: -1px;
height: 26px;
width: 26px;
font-size: 14px;
line-height: 26px;
margin: 0 8px -9px 0;
}
.pi-icon-base {
background: #68005f;
color: #fff;
}
.pi-icon-circle, .pi-icon-square {
background: #68005f;
color: #fff;
}
.pi-icon-square {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.pi-icon-circle, .pi-icon-square {
position: relative;
margin: 0 0 -8px 0;
display: inline-block;
font-size: 14px;
width: 26px;
height: 26px;
overflow: hidden;
line-height: 25px;
text-align: center;
}
.pi-row-block-icon {
position: relative;
margin: -3px 6px 0 0;
font-size: 14px;
}
.pi-section-dark abbr, .pi-section-dark acronym, .pi-section-dark strong, .pi-section-dark b {
color: #ccccd5;
font-weight: 600;
}
.pi-row-block-icon.pi-icon-circle, .pi-row-block-icon.pi-icon-square {
top: -1px;
height: 26px;
width: 26px;
font-size: 14px;
line-height: 26px;
margin: 0 8px -9px 0;
}
.pi-section-dark a {
color: #fff;
}
.pi-row-block-txt a {
border-bottom: 1px solid transparent;
-webkit-transition: all 0.1s ease-in-out 0s;
-moz-transition: all 0.1s ease-in-out 0s;
-ms-transition: all 0.1s ease-in-out 0s;
-o-transition: all 0.1s ease-in-out 0s;
transition: all 0.1s ease-in-out 0s;
}
.pi-row-block a {
max-height: 100%;
}
.pi-row-sm .pi-social-icons.pi-stacked {
margin: 0;
}
.pi-row-sm .pi-social-icons.pi-small {
margin-top: 9px;
margin-bottom: 9px;
}
.pi-row-sm .pi-social-icons {
margin-top: 2px;
margin-bottom: 2px;
}
.pi-social-icons.pi-stacked {
margin-bottom: 20px;
}
.pi-row-sm .pi-full-height, .pi-row-md .pi-full-height, .pi-row-lg .pi-full-height {
vertical-align: top;
}
.pi-social-icons {
margin-bottom: 12px;
}
.pi-social-icons, .pi-social-icons-simple {
display: inline-block;
list-style: none;
margin: 0;
padding: 0;
line-height: 0;
font-size: 0;
-webkit-padding-start: 0;
}
.pi-bordered {
position: relative;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
}
.pi-section-dark .pi-social-icons.pi-full-height.pi-bordered li {
background: #68005f;
background: -moz-linear-gradient(top, #ba39ad 0%, #68005f 30%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ba39ad 0%,#68005f 30%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ba39ad 0%,#68005f 30%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba39ad', endColorstr='#68005f',GradientType=0 ); /* IE6-9 */
border-radius: 50%;
}
.pi-row-sm .pi-social-icons li {
margin-bottom: 0;
}
.pi-social-icons.pi-bordered li {
margin-left: -1px;
}
.pi-social-icons.pi-stacked li {
margin: 0 5px 0 0;
}
.pi-social-icons li {
margin: 0 8px 8px 0;
}
.pi-social-icons li, .pi-social-icons-simple li {
display: inline-block;
margin: 0;
letter-spacing: normal;
zoom: 1;
line-height: normal;
font-size: 14px;
}
.pi-section-dark .pi-social-icons.pi-full-height a {
color: #fff;
}
.pi-row-sm .pi-social-icons.pi-full-height a {
width: 30px;
height: 25px;
font-size: 14px;
}
.pi-row-sm .pi-full-height > li > a {
line-height: 29px;
}
.pi-section-dark .pi-social-icons a {
color: #fff;
}
.pi-social-icons.pi-small a {
font-size: 14px;
}
.pi-social-icons.pi-small a, .pi-social-icons.pi-small a i {
width: 15px;
height: 15px;
}
.pi-social-icons a {
position: relative;
border-width: 0;
font-size: 18px;
-webkit-transition: all 0.1s ease-in-out 0s;
-moz-transition: all 0.1s ease-in-out 0s;
-ms-transition: all 0.1s ease-in-out 0s;
-o-transition: all 0.1s ease-in-out 0s;
transition: all 0.1s ease-in-out 0s;
}
.pi-social-icons a, .pi-social-icons a i {
display: inline-block;
width: 42px;
height: 42px;
text-align: center;
}
.pi-social-icons a, .pi-social-icons-simple a {
padding: 0;
}
.pi-social-icons a, .pi-social-icons-simple a, .pi-social-icons a:hover, .pi-social-icons-simple a:hover {
text-decoration: none;
border: 0;
overflow: hidden;
}
.pi-row-block a {
max-height: 100%;
}
.pi-row-sm .pi-social-icons.pi-stacked {
margin: 5px 0 0 0px;
}
@media (max-width:479px) {
.pi-hidden-2xs {
display: none !important;
}
#mobile-nav-toggle {
display: inline;
}
}
@media (max-width:768px) {
.pi-hidden-xs {
display: none !important;
}
}
@media (max-width: 992px ){
#header #logo img {
max-height: 80px;
}
#nav-menu-container {
display: none;
}
#mobile-nav-toggle {
display: inline;
}
}
@media (min-width: 992px ) and (max-width: 1200px){
#nav-menu-container {
padding-right: 0 !important;
}
}
@media (min-width: 479px ) and (max-width: 768px){
#mobile-nav-toggle {
display: inline;
}
}
.owl-carousel {
margin: 0;
}
.owl-carousel .owl-nav [class*=owl-] {
color: rgba(255, 255, 255, 0.5);
font-size: 30px;
width: 30px;
height: 30px;
line-height: 30px;
border-radius: 0;
text-align: center;
}
.owl-carousel .owl-nav [class*=owl-]:hover {
color: #fff;
opacity: 1;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next {
position: absolute;
bottom: 0;
top:0;
height: 30px;
margin: auto !important;
}
.owl-carousel .owl-prev {
/*right: 0px;*/
}
.owl-carousel .owl-next {
right: 0px;
}
.owl-carousel .owl-dots {
display: none !important;
}
#event-modal-dialog{
max-width: 70%;
}
.modal-backdrop {
background-color: #000;
opacity:0.8!important;
}
.event-gallery .close{font-size: 3rem;}
.event-gallery .modal-footer{padding: 0 10px 0px 0px;}
.event-gallery .testimonial-item img{width:100%;}
.event-gallery .event-info{margin: 10px 0 0 0; color: #000;font-size: 13px;font-weight: 700;} | 0.320609 | 0.064183 |
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro&display=swap');
:root {
--fonte-padrao: Arial, Helvetica, verdana, sans-serif;
--fonte-notoserif: 'Noto Serif';
--fonte-source: 'Source Sans Pro';
--verdeescuro: #61ad0bd5;
--verde:#97e939d2;
--verdeclaro: #95fb20e7;
--roxo: #9400AD;
--roxoclaro: #DB20FA;
}
* {
margin: 0px;
padding: 0px;
}
body {
background-color: var(--verde);
}
header {
background-color: var(--verdeescuro);
min-height: 65px;
padding-top: 30px;
}
header > h1 {
font-family: var(--fonte-notoserif);
font-size: 2.2em;
color: black;
text-align: center;
}
nav {
background-color: var(--verdeescuro);
padding-bottom: 8px;
text-align: center;
box-shadow: 1px 7px 7px rgba(0, 0, 0, 0.582);
}
nav > a {
font-family: var(--fonte-source);
font-size: 1.1em;
font-weight: bold;
color: black;
text-decoration: none;
padding: 4px;
border-radius: 5px;
transition-duration: 0.3s;
}
nav >a:hover{
background-color: var(--verdeclaro);
color: var(--roxoclaro);
}
ol {
margin: 30px 5px 20px 60px;
}
main ol li {
margin-top: 8px;
}
main {
min-width: 300px;
max-width: 1000px;
margin: auto;
margin-top: 14px;
margin-bottom: 30px;
background-color: var(--verdeescuro);
padding: 22px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.671);
border-radius: 10px;
}
main h2 {
font-family: var(--fonte-notoserif);
font-size: 1.8em;
color: black;
padding: 8px;
}
main p {
font-family: var(--fonte-padrao);
font-size: 1.15em;
color: black;
text-align: justify;
text-indent: 30px;
margin: 15px 0px;
line-height: 1.3em;
}
main a {
background-color: var(--verde);
text-align: center;
color: black;
text-decoration: none;
border-radius: 4px;
padding: 1px;
transition-duration: 0.3s;
}
main a:hover{
box-shadow: 1px 7px 7px rgba(0, 0, 0, 0.582);
color: var(--roxoclaro);
}
main img {
max-width: 100%;
padding-bottom: 10px ;
}
div {
display: flex;
justify-content: center;
}
figure {
padding-bottom: 20px;
}
figcaption {
font-size: 0.9em;
}
ul {
font-family: var(--fonte-padrao);
font-size: 1.15em;
color: black;
list-style-type: '\2714\00A0\00A0';
list-style-position: inside;
line-height: 1.3em;
text-align: justify;
padding-top: 10px; padding-bottom: 10px;
margin-left: 40px;
}
a.externo::after {
content: '\1F517';
}
footer > p{
text-align: center;
background-color: var(--verdeescuro);
border-radius: 6px;
min-width: 300px;
max-width: 600px;
margin: auto;
margin-bottom: 16px;
box-shadow: 1px 7px 7px rgba(0, 0, 0, 0.582);
} | style.css | @charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro&display=swap');
:root {
--fonte-padrao: Arial, Helvetica, verdana, sans-serif;
--fonte-notoserif: 'Noto Serif';
--fonte-source: 'Source Sans Pro';
--verdeescuro: #61ad0bd5;
--verde:#97e939d2;
--verdeclaro: #95fb20e7;
--roxo: #9400AD;
--roxoclaro: #DB20FA;
}
* {
margin: 0px;
padding: 0px;
}
body {
background-color: var(--verde);
}
header {
background-color: var(--verdeescuro);
min-height: 65px;
padding-top: 30px;
}
header > h1 {
font-family: var(--fonte-notoserif);
font-size: 2.2em;
color: black;
text-align: center;
}
nav {
background-color: var(--verdeescuro);
padding-bottom: 8px;
text-align: center;
box-shadow: 1px 7px 7px rgba(0, 0, 0, 0.582);
}
nav > a {
font-family: var(--fonte-source);
font-size: 1.1em;
font-weight: bold;
color: black;
text-decoration: none;
padding: 4px;
border-radius: 5px;
transition-duration: 0.3s;
}
nav >a:hover{
background-color: var(--verdeclaro);
color: var(--roxoclaro);
}
ol {
margin: 30px 5px 20px 60px;
}
main ol li {
margin-top: 8px;
}
main {
min-width: 300px;
max-width: 1000px;
margin: auto;
margin-top: 14px;
margin-bottom: 30px;
background-color: var(--verdeescuro);
padding: 22px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.671);
border-radius: 10px;
}
main h2 {
font-family: var(--fonte-notoserif);
font-size: 1.8em;
color: black;
padding: 8px;
}
main p {
font-family: var(--fonte-padrao);
font-size: 1.15em;
color: black;
text-align: justify;
text-indent: 30px;
margin: 15px 0px;
line-height: 1.3em;
}
main a {
background-color: var(--verde);
text-align: center;
color: black;
text-decoration: none;
border-radius: 4px;
padding: 1px;
transition-duration: 0.3s;
}
main a:hover{
box-shadow: 1px 7px 7px rgba(0, 0, 0, 0.582);
color: var(--roxoclaro);
}
main img {
max-width: 100%;
padding-bottom: 10px ;
}
div {
display: flex;
justify-content: center;
}
figure {
padding-bottom: 20px;
}
figcaption {
font-size: 0.9em;
}
ul {
font-family: var(--fonte-padrao);
font-size: 1.15em;
color: black;
list-style-type: '\2714\00A0\00A0';
list-style-position: inside;
line-height: 1.3em;
text-align: justify;
padding-top: 10px; padding-bottom: 10px;
margin-left: 40px;
}
a.externo::after {
content: '\1F517';
}
footer > p{
text-align: center;
background-color: var(--verdeescuro);
border-radius: 6px;
min-width: 300px;
max-width: 600px;
margin: auto;
margin-bottom: 16px;
box-shadow: 1px 7px 7px rgba(0, 0, 0, 0.582);
} | 0.306008 | 0.097907 |
[GBS] GLOBAL/BOOTSTRAP STYLE
------------------------------------*/
body, html {
height: 100%;
}
body {
font-family: "Lato", sans-serif;
font-size: 15px;
color: #555;
}
/*-- HEADINGS --*/
h1, h2, h3, h4, h5, h6 {
font-family: "Droid Sans", sans-serif;
color: #b5b5b5;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small,
.h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small,
h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small,
.h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
color: #dadada;
}
/*-- BLOCKQUOTE --*/
blockquote,
.blockquote-reverse,
blockquote.pull-right {
border-color: #eee;
}
blockquote footer,
blockquote small,
blockquote .small {
color: #b5b5b5;
}
/*-- TABLES --*/
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td,
.table-bordered {
border-color: #eee;
}
.table-striped > tbody > tr:nth-child(2n+1) > td,
.table-striped > tbody > tr:nth-child(2n+1) > th,
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th,
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
background-color: #fafafa;
}
/*-- FORMS --*/
input.form-control,
select.form-control,
textarea.form-control {
border-color: #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .025) inset;
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .025) inset;
box-shadow: 0 1px 1px rgba(0, 0, 0, .025) inset;
font-size: 15px;
}
input.form-control:focus,
select.form-control:focus,
textarea.form-control:focus {
border-color: #b5b5b5;
-webkit-box-shadow: 0 0 8px #eee;
-moz-box-shadow: 0 0 8px #eee;
box-shadow: 0 0 8px #eee;
}
::-webkit-input-placeholder {
color: #b5b5b5 !important;
font-size: 13px !important;
}
:-moz-placeholder { /* Firefox 18- */
color: #b5b5b5 !important;
font-size: 13px !important;
}
::-moz-placeholder { /* Firefox 19+ */
color: #b5b5b5 !important;
font-size: 13px !important;
}
:-ms-input-placeholder {
color: #b5b5b5 !important;
font-size: 13px !important;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background-color: #eee;
}
.input-group-addon {
background: #fafafa;
border-color: #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
font-size: inherit;
color: inherit;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn,
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
/*-- BUTTONS --*/
.btn {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
font-family: "Droid Sans", sans-serif;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.btn-default {
background: #eee;
border-color: #eaeaea;
color: #b5b5b5;
}
.btn-default:hover {
background: #dedede;
color: #888;
}
a:active,
a:focus,
.btn:active,
.btn:focus {
outline: none !important;
}
a,
.btn-link {
color: #b5b5b5;
}
a:hover,
a:focus,
.btn-link:hover {
color: #888;
}
/*-- PAGINATION --*/
.pagination {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
-webkit-border-radius: 2px 0 0 2px;
-moz-border-radius: 2px 0 0 2px;
border-radius: 2px 0 0 2px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
-webkit-border-radius: 0 2px 2px 0;
-moz-border-radius: 0 2px 2px 0;
border-radius: 0 2px 2px 0;
}
.pagination > li > a,
.pagination > li > span {
color: #b5b5b5;
border-color: #eee;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus,
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
background-color: #eee;
border-color: #eee;
color: #888;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
background-color: #fafafa;
border-color: #eee;
color: #ccc;
}
/*-- PAGER --*/
.pager li > a,
.pager li > span {
padding: 3px 11px;
background-color: #fff;
border-color: #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.pager li > a:hover,
.pager li > a:focus {
background-color: #eee;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
color: #ccc;
background-color: #fafafa;
}
/*-- LABEL/BADGE --*/
.label {
-webkit-border-radius: .15em;
-moz-border-radius: .15em;
border-radius: .15em;
}
.label-default,
.badge {
background-color: #aaa;
}
a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
color: #fff;
background-color: #d9534f;
}
.nav-pills > .active > a > .badge {
margin-top: 3px;
}
/*-- JUMBOTRON --*/
.container .jumbotron{
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.jumbotron {
background-color: #fafafa;
}
/*-- THUMBNAIL --*/
.thumbnail {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
border-color: #eee;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
border-color: #b5b5b5;
}
/*-- ALERT --*/
.alert {
border-color: transparent !important;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
/*-- PROGRESS BAR --*/
.progress {
background-color: #fafafa;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.progress-bar {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
/*-- LIST GROUP --*/
.list-group-item {
border-color: #eee;
}
.list-group-item:first-child {
-webkit-border-radius: 2px 0 0 2px;
-moz-border-radius: 2px 0 0 2px;
border-radius: 2px 0 0 2px;
}
.list-group-item:last-child {
-webkit-border-radius: 0 0 2px 2px;
-moz-border-radius: 0 0 2px 2px;
border-radius: 0 0 2px 2px;
}
a.list-group-item:hover,
a.list-group-item:focus {
background-color: #fafafa;
}
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
border-color: #eee;
background-color: #f5f5f5;
color: #aaa;
}
a.list-group-item-success:hover,
a.list-group-item-success:focus {
background-color: #d0e9c6;
}
a.list-group-item-info:hover,
a.list-group-item-info:focus {
background-color: #c4e3f3;
}
a.list-group-item-warning:hover,
a.list-group-item-warning:focus {
background-color: #faf2cc;
}
a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
background-color: #ebcccc;
}
/*-- PANEL --*/
.panel {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.panel-heading {
-webkit-border-radius: 1px 1px 0 0;
-moz-border-radius: 1px 1px 0 0;
border-radius: 1px 1px 0 0;
}
.panel-footer{
border-color: #eee;
background-color: #fafafa;
-webkit-border-radius: 0 0 1px 1px;
-moz-border-radius: 0 0 1px 1px;
border-radius: 0 0 1px 1px;
}
.panel-default {
border-color: #eee;
}
.panel-default > .panel-heading {
color: inherit;
background-color: #fafafa;
border-color: #eee;
}
/*-- WELL --*/
.well {
background-color: #f5f5f5;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
/*-- TABS/PILLS --*/
.nav-tabs {
border-bottom: 0;
}
.nav-pills {
margin-bottom: 10px;
}
.nav-tabs > li > a,
.nav-pills > li > a {
background: #fbfbfb;
border: 1px solid transparent;
-webkit-border-radius: 2px 2px 0 0;
-moz-border-radius: 2px 2px 0 0;
border-radius: 2px 2px 0 0;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s
}
.nav-pills > li > a {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.nav-tabs > li > a:hover {
background: #eee;
border-color: transparent;
border-bottom-color: #eee;
color: #888;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus,
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.nav.nav-tabs > li > a:focus,
.nav.nav-pills > li > a:focus {
background: #fafafa;
border-color: #eee;
color: inherit;
border-bottom: 1px solid #fafafa;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
border-bottom: 1px solid #eee;
}
.nav-tabs > li.active > a {
position: relative;
z-index: 3;
}
.tab-pane {
position: relative;
z-index: 2;
padding: 5px 10px;
background: #fafafa;
border: 1px solid #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
/*-- TOOLTIP --*/
.tooltip-inner {
color: #b5b5b5;
background-color: #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.tooltip.top .tooltip-arrow,
.tooltip.top-left .tooltip-arrow,
.tooltip.top-right .tooltip-arrow {
border-top-color: #eee;
}
.tooltip.right .tooltip-arrow {
border-right-color: #eee;
}
.tooltip.left .tooltip-arrow {
border-left-color: #eee;
}
.tooltip.bottom .tooltip-arrow,
.tooltip.bottom-left .tooltip-arrow,
.tooltip.bottom-right .tooltip-arrow {
border-bottom-color: #eee;
}
/*-- POPOVER --*/
.popover {
padding: 0;
border-color: #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 2px 4px #eee;
-moz-box-shadow: 0 2px 4px #eee;
box-shadow: 0 2px 4px #eee;
}
.popover-title {
border-color: #eee;
background: #f5f5f5;
-webkit-border-radius: 1px 1px 0 0;
-moz-border-radius: 1px 1px 0 0;
border-radius: 1px 1px 0 0;
}
.popover.right > .arrow {
border-right-color: #eee;
}
.popover.left > .arrow {
border-left-color: #eee;
}
.popover.top > .arrow {
border-top-color: #eee;
}
.popover.bottom > .arrow {
border-bottom-color: #eee;
}
.popover.bottom > .arrow:after {
border-bottom-color: #f5f5f5;
}
/*-- CODE/PRE --*/
code, pre {
background: #eee;
border: 0;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
color: inherit;
}
/*-- DROPDOWN --*/
.dropdown-menu {
background-color: #fafafa;
border-color: #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 0 8px #eee;
-moz-box-shadow: 0 0 8px #eee;
box-shadow: 0 0 8px #eee;
font-size: inherit;
}
.dropdown-menu li > a:hover {
background-color: #f5f5f5;
color: #444;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
color: #888;
background-color: #eee;
}
.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
background-color: #eee;
border-color: #888;
}
.dropdown-menu .divider {
background-color: #eee;
margin: 0;
}
/*-- MODAL --*/
.modal-content {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.modal-header,
.modal-footer {
border-color: #eee;
}
/*------------------------------------
[SHS] SHARED STYLE
------------------------------------*/
.section-wrap {
min-height: 100%;
padding: 90px 0;
border-bottom: 1px dotted #eee;
}
.heading {
margin: 0 0 14px;
padding: 0 0 8px;
border-bottom: 1px dotted #b5b5b5;
font-size: 22px;
}
.fa-ul .fa-li { /* Font Awesome icon list color */
color: #b5b5b5;
}
/*------------------------------------
[HRS] HEADER STYLE
------------------------------------*/
.main-header .navbar {
height: 50px;
background: #fafafa;
border-bottom: 2px solid #eee;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.main-header .container > .navbar-header {
margin: 0;
}
.main-header .navbar-nav.navbar-right:last-child {
margin-right: 0;
}
.logo img {
height: 40px;
margin-top: 4px;
}
.logo:hover,
.logo:focus {
text-decoration: none;
}
.nav-style > li > a,
.nav-style > li > a:focus {
height: 50px;
padding: 0 15px;
border-bottom: 2px solid transparent;
color: #aaa;
font-family: "Droid Sans", sans-serif;
line-height: 50px;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.nav-style > li > a:hover {
background: #f5f5f5;
border-color: #888;
color: #888;
}
.nav-style > li > a:active,
.nav-style > li > a:focus {
background: #eee;
}
.nav-style .active > a,
.nav-style .active > a:focus {
background: #eee;
text-shadow: 0 1px #fff;
}
.nav-style .dropdown-menu{
background-color: #fafafa;
padding: 0;
border-color: #eee;
border-bottom: 2px solid #eee;
-webkit-border-radius: 0 0 2px 2px;
-moz-border-radius: 0 0 2px 2px;
border-radius: 0 0 2px 2px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
font-size: inherit;
}
.nav-style .dropdown-menu > li > a {
padding: 6px 20px;
border-bottom: 1px solid #eee;
color: #b5b5b5;
}
.nav-style .dropdown-menu > li > a:hover {
background-color: #f5f5f5;
}
.nav-style .open > a,
.nav-style .open > a:hover,
.nav-style .open > a:focus {
background-color: #eee;
border-color: transparent;
text-shadow: 0 1px #fff;
}
/*------------------------------------
[HOS] HERO SECTION
------------------------------------*/
#hero {
height: 100%;
background-image: url("img/bg-img.jpg");
background-position: top center;
padding: 0;
overflow: hidden;
}
#hero > .container {
position: relative;
min-height: 100%;
}
.hero-content {
position: absolute;
top: 50%;
right: 10%;
width: 500px;
text-align: center;
overflow: hidden;
}
.hero-content-title {
margin: 0 0 20px;
padding: 0;
font-size: 80px;
font-family: "Revalia", sans-serif;
color: #fff;
letter-spacing: -2px;
text-shadow: 0 1px 5px rgba(0, 0, 0, .15);
text-transform: capitalize;
}
.hero-content p {
display: inline-block;
width: 300px;
margin: 0 0 40px;
font-size: 16px;
color: #666;
text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
}
.hero-figure {
background-image: url("img/hero-figure-sm.jpg");
}
.hero-figure > img {
position: absolute;
left: 10%;
bottom: 0;
height: 90%;
}
/*------------------------------------
[PRS] PROFILE SECTION
------------------------------------*/
#profile {
height: 100%;
overflow: hidden;
}
#profile > .container {
position: relative;
min-height: 100%;
}
.profile-content {
margin-left: -15px;
}
.profile-figure {
position: absolute;
right: 0;
top: 0;
z-index: -1;
width: 40%;
}
/*------------------------------------
[QFS] QUALIFICATION SECTION
------------------------------------*/
.qualification-summary {
margin-bottom: 40px;
}
.qualification-education li {
margin-bottom: 20px;
}
.qualification-education-title {
margin: 0;
font-size: 17px;
font-style: italic;
color: inherit;
}
/*------------------------------------
[SKS] SKILL SECTION
------------------------------------*/
.skill-wrap {
text-align: center;
}
.skill-wrap .fa-ul > li,
.skill-desc {
text-align: left;
}
.skill-title {
padding: 0 0 10px;
border-bottom: 1px dotted #b5b5b5;
font-size: 20px;
}
.chart {
position: relative;
display: inline-block;
width: 150px;
height: 150px;
margin: 30px 0;
}
.chart > .percent {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
font-size: 36px;
font-weight: bold;
color: #b5b5b5;
line-height: 150px;
text-align: center;
}
.chart > .percent:after {
content: ' %';
position: absolute;
top: 0;
margin-left: 3px;
font-size: 12px;
color: #b5b5b5;
}
/*------------------------------------
[EXS] EXPERIENCE SECTION
------------------------------------*/
.timeline {
position: relative;
width: 851px;
padding: 0 0 100px;
margin: 0 auto;
list-style: none;
overflow: hidden;
}
.timeline:before {
content: "";
position: absolute;
top: 0;
left: 50%;
width: 2px;
height: 100%;
background: #eee;
margin-left: -1px;
}
.timeline > li {
position: relative;
clear: both;
float: left;
width: 360px;
background: #fafafa;
padding: 20px;
border: 1px solid #eee;
margin: -150px 0 0;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
text-align: center;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.timeline > li:before { /* Marker line */
content: "";
position: absolute;
right: -51px;
top: 50%;
width: 50px;
height: 1px;
background: #eee;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.timeline > li:after { /* Marker dot */
content: "";
position: absolute;
right: -75px;
top: 50%;
width: 16px;
height: 16px;
background: #eee;
margin-top: -8px;
border: 3px solid #fff;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.timeline > li.right {
float:right;
}
.timeline > li.right:before { /* Marker line for right box */
left: -51px;
right: auto;
}
.timeline > li.right:after { /* Marker dot for right box */
left: -74px;
right: auto;
}
.timeline > li.present:after,
.timeline > li.right.present:after { /* Alternative marker style within .present */
top: 50%;
right: -82px;
width: 32px;
height: 32px;
background: #fff;
border-color: #eee;
margin-top: -16px;
}
.timeline > li.right.present:after { /* Alternative marker style within .present right box */
left: -83px;
right: auto;
}
.timeline > li:hover {
border-color: #aaa;
-webkit-box-shadow: 0 0 8px #eee;
-moz-box-shadow: 0 0 8px #eee;
box-shadow: 0 0 8px #eee;
}
.timeline > li:hover:before,
.timeline > li:hover:after {
background: #b5b5b5;
}
.timeline > li.present:hover:after,
.timeline > li.right.present:hover:after {
background: #fff;
border-color: #b5b5b5;
}
.timeline .year span {
display: inline-block;
background: #fafafa;
padding: 6px 12px;
border: 1px solid #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
font-size: 20px;
font-family: "Droid sans", sans-serif;
color: #b5b5b5;
}
.timeline > li.year { /* Year style */
float: none;
clear: both;
width: 100%;
background: transparent;
margin: 0;
padding: 100px 0 200px;
border: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
text-align: center;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.timeline > li.year.top { /* Top year style */
padding-top: 0;
}
.timeline > li.year:hover,
.timeline > li.year.top:hover {
border-color: #eee;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.timeline > li.break { /* Fix overlapped box */
margin: 40px 0;
}
.tl-header {
margin-bottom: 15px;
padding-bottom: 5px;
border-bottom: 1px solid #eee;
-webkit-box-shadow: 0 1px #fff;
-moz-box-shadow: 0 1px #fff;
box-shadow: 0 1px #fff;
text-align: center;
text-shadow: 0 1px #fff;
}
.tl-role,
.tl-company {
margin: 0;
padding: 0;
font-size: 24px;
line-height: 22px;
}
.tl-company {
margin: 0 0 10px;
font-size: 16px;
}
.tl-time {
font-size: 16px;
letter-spacing: -1px;
color: #b5b5b5;
font-family: "Droid Sans", sans-serif;
}
.timeline > li img,
.timeline > li .video-wrap {
display: inline-block;
max-width: 100%;
margin-bottom: 20px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
border-bottom: 1px solid #eee;
-webkit-box-shadow: 0 1px #fff;
-moz-box-shadow: 0 1px #fff;
box-shadow: 0 1px #fff;
}
.timeline > li .video-wrap {
width: 100%;
overflow: hidden;
}
.tl-content {
text-align: left;
}
/*------------------------------------
[GAL] GALLERY
------------------------------------*/
.gallery {
margin-bottom: 40px;
}
.gallery-wrap {
text-align: center;
}
.gallery-frame {
display: inline-block;
width: 290px;
height: 200px;
margin-bottom: 40px;
border: 1px solid transparent;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
overflow: hidden;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.gallery-frame img {
width: 100%;
-webkit-transition: .2s ease-out;
-moz-transition: .2s ease-out;
transition: .2s ease-out;
}
.gallery-frame:hover {
-webkit-box-shadow: 2px 2px 8px #b5b5b5;
-moz-box-shadow: 2px 2px 8px #b5b5b5;
box-shadow: 2px 2px 8px #b5b5b5;
border-color: #b5b5b5;
}
.gallery-frame:hover img {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.gallery-control {
text-align: center;
margin-bottom: 40px;
}
.gallery-control > ul > li {
position: relative;
color: #b5b5b5;
margin: 5px;
}
.gallery-control > ul > li:before {
content: "|";
position: absolute;
right: -9px;
}
.gallery-control > ul > li:last-child:before {
display: none;
}
.gallery-control > ul > li > span {
display: block;
height: 30px;
border-bottom: 2px solid transparent;
cursor: pointer;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.gallery-control > ul > li > span:hover {
border-bottom: 2px solid #555;
text-decoration: none;
color: #555;
}
/*------------------------------------
[BLG] BLOG
------------------------------------*/
.blog-post {
overflow: auto;
padding-bottom: 40px;
}
.blog-title {
margin-bottom: 20px;
font-size: 22px;
text-align: center;
}
.blog-thumb {
width: 100%;
margin-bottom: 20px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.blog-meta {
height: 48px;
margin-bottom: 20px;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
text-align: center;
line-height: 48px;
vertical-align: middle;
}
.blog-meta i.fa {
color: #b5b5b5;
}
.blog-page {
padding-top: 50px;
}
.blog-page .navbar {
margin-bottom: 0;
}
.blog-page .subheader {
height: 50px;
background: #f9f9f9;
line-height: 50px;
}
.blog-page .breadcrumb {
display: inline-block;
background: transparent;
margin: 0;
padding-left: 0;
padding-top: 0;
padding-bottom: 0;
font-size: 13px;
}
.blog-search {
position: relative;
}
.blog-search:before {
content: "\f002";
position: absolute;
right: 12px;
display: inline-block;
font-family: FontAwesome;
color: #b5b5b5;
}
.blog-search input {
display: inline-block;
height: auto;
background: #f5f5f5;
padding: 4px 36px 4px 12px;
-webkit-border-radius: 50px;
-moz-border-radius: 50px;
border-radius: 50px;
}
.blog-search ::-webkit-input-placeholder {
font-style: italic;
}
.blog-search ::-moz-placeholder {
font-style: italic;
}
.blog-search :-moz-placeholder {
font-style: italic;
}
.blog-search :-ms-placeholder {
font-style: italic;
}
.blog-search input:focus {
border-color: #b5b5b5;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.blog-page .blog {
margin-bottom: 0;
padding-bottom: 40px;
padding-top: 40px;
padding-right: 40px;
border-right: 2px solid #f5f5f5;
}
.blog-page .blog-title {
margin-top: 0;
font-size: 32px;
text-align: left;
}
.blog-page .blog-meta {
text-align: left;
}
.blog-page .sidebar {
margin-left: -30px;
padding-top: 80px;
}
.sidebar-wrap {
margin-bottom: 80px;
margin-left: 10px;
}
.sidebar-title {
position: relative;
background: #fafafa;
padding: 5px;
font-size: 18px;
}
.sidebar-title:before {
content: "";
position: absolute;
top: 0;
left: -12px;
display: block;
width: 6px;
height: 100%;
background: #f5f5f5;
}
.sidebar-list > li {
margin-bottom: 10px;
}
.blog-single .pager {
margin-bottom: 40px;
}
.main-comment {
padding: 20px;
background: #fafafa;
border: 1px solid #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.main-comment .media-object {
height: 100px;
width: 100px;
border: 1px solid #eee;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
overflow: hidden;
}
.main-comment .media-object > img {
width: 100%;
}
.main-comment .nested-comment .media-object {
height: 70px;
width: 70px;
}
.nested-comment {
background: #f5f5f5;
padding: 10px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.comment-author {
font-size: 17px;
}
.comment-reply {
font-size: 13px;
}
.comment-form {
margin: 40px 0;
}
/*------------------------------------
[TWT] TWITTER WIDGET
------------------------------------*/
.twitter-widget {
display: block;
background: #fafafa;
padding: 5px 10px;
}
.twitter-widget ul {
padding: 0;
margin: 0;
list-style: none;
}
.twitter-widget ul > li {
margin-bottom: 20px;
border-bottom: 1px solid #eee;
overflow: auto;
clear: both;
-webkit-box-shadow: 0 1px #fff;
-moz-box-shadow: 0 1px #fff;
box-shadow: 0 1px #fff;
}
.twitter-widget ul > li:last-child {
margin-bottom: 0;
border-bottom: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.twitter-widget .tweet {
overflow: hidden;
}
.twitter-widget .timePosted,
.twitter-widget .interact {
display: inline-block;
}
.twitter-widget .timePosted {
margin-right: 5px;
}
.twitter-widget .interact a {
margin-left: 5px;
}
.twitter-meta {
float: right;
font-size: 13px;
}
.twitter-widget .user a img {
float: left;
margin-right: 10px;
margin-top: 5px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.twitter-widget .user > a {
color: #888;
}
.twitter-widget .user > a:hover {
color: #888;
cursor: default;
text-decoration: none;
}
.twitter-widget .user > a > span[data-scribe="element:screen_name"] {
color: #b5b5b5;
}
.twitter-widget .user > a > span[data-scribe="element:screen_name"]:hover {
color: #888;
text-decoration: underline;
cursor: pointer;
}
/*------------------------------------
[UTL] UTILITIES
------------------------------------*/
/*-- MAGNIFIC POPUP LIGHTBOX --*/
.mfp-fade.mfp-bg {
opacity: 0;
-webkit-transition: .2s ease-out;
-moz-transition: .2s ease-out;
transition: .2s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
opacity: .8;
}
.mfp-fade.mfp-bg.mfp-removing {
opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
opacity: 0;
-webkit-transition: .2s ease-out;
-moz-transition: .2s ease-out;
transition: .2s ease-out;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
opacity: 0;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
}
.mfp-close {
position: absolute;
top: 0;
right: 0;
z-index: 2;
}
.mfp-zoom-out-cur {
cursor: auto;
}
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: pointer;
}
/*-- COLLAPSE/ACCORDION --*/
.panel-custom {
margin: 0 0 5px !important;
}
.panel-custom .panel-heading {
padding: 0;
}
.panel-custom .panel-body {
background: #fafafa;
margin-top: -2px;
border: 1px solid #eee;
border-top-color: transparent !important;
-webkit-border-radius: 2px !important;
-moz-border-radius: 2px !important;
border-radius: 2px !important;
}
.panel-custom .panel-heading a {
position: relative;
display: block;
padding: 20px 10px !important;
background: #fafafa;
border: 1px solid #eee;
-webkit-border-radius: 2px 2px 0 0 !important;
-moz-border-radius: 2px 2px 0 0 !important;
border-radius: 2px 2px 0 0 !important;
color: #b5b5b5;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.panel-custom .panel-heading a:hover {
background: #f5f5f5;
}
.panel-custom .panel-heading a:hover,
.panel-custom .panel-heading a:focus {
text-decoration: none;
}
.panel-custom .panel-heading a:before {
content: "\f105";
font-family: FontAwesome;
position: absolute;
right: 10px;
display: inline-block;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
.panel-custom .panel-heading a.collapsed {
border-color: transparent;
-webkit-border-radius: 2px !important;
-moz-border-radius: 2px !important;
border-radius: 2px !important;
}
.panel-custom .panel-heading a.collapsed:before {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
/*-- SOCIAL ICONS --*/
.social-icon.twitter-icon:hover {
color: #00aced;
border-color: #00aced;
}
.social-icon.facebook-icon:hover {
color: #3b5998;
border-color: #3b5998;
}
.social-icon.google-plus-icon:hover {
color: #bb4b39;
border-color: #bb4b39;
}
.social-icon.youtube-icon:hover {
color: #bb0000;
border-color: #bb0000;
}
.social-icon.vimeo-icon:hover {
color: #aad450;
border-color: #aad450;
}
.social-icon.flickr-icon:hover {
color: #ff0084;
border-color: #ff0084;
}
.social-icon.pinterest-icon:hover {
color: #cb2027;
border-color: #cb2027;
}
.social-icon.github-icon:hover {
color: #333;
border-color: #333;
}
.social-icon.tumblr-icon:hover {
color: #32506d;
border-color: #32506d;
}
.social-icon.instagram-icon:hover {
color: #517fa4;
border-color: #517fa4;
}
.social-icon.skype-icon:hover {
color: #12a5f4;
border-color: #12a5f4;
}
.social-icon.foursquare-icon:hover {
color: #0072b1;
border-color: #0072b1;
}
.social-icon.dribbble-icon:hover {
color: #ea4c89;
border-color: #ea4c89;
}
.social-icon.linkedin-icon:hover {
color: #007bb6;
border-color: #007bb6;
}
/*-- PRELOADER --*/
#preloader {
position: fixed;
top: 0;
left: 0;
z-index: 9999;
width: 100%;
height: 100%;
background: #fafafa;
}
.pre-wrap {
position: absolute;
top: 50%;
left: 50%;
width: 40px;
height: 40px;
margin-top: -20px;
margin-left: -20px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.square {
position: absolute;
width: 45%;
height: 45%;
background: #b5b5b5;
border: 1px solid #b5b5b5;
}
.square-1 {
top: 0;
left: 0;
-webkit-animation: blip-1 2s infinite;
-moz-animation: blip-1 2s infinite;
animation: blip-1 2s infinite;
}
.square-2 {
top: 0;
right: 0;
-webkit-animation: blip-2 2s infinite;
-moz-animation: blip-2 2s infinite;
animation: blip-2 2s infinite;
}
.square-3 {
bottom: 0;
right: 0;
-webkit-animation: blip-3 2s infinite;
-moz-animation: blip-3 2s infinite;
animation: blip-3 2s infinite;
}
.square-4 {
bottom: 0;
left: 0;
-webkit-animation: blip-4 2s infinite;
-moz-animation: blip-4 2s infinite;
animation: blip-4 2s infinite;
}
@-webkit-keyframes blip-1 {
0% {background: #b5b5b5;}
10% {background: #f5f5f5;}
15% {background: #f5f5f5;}
25% {background: #b5b5b5;}
}
@-moz-keyframes blip-1 {
0% {background: #b5b5b5;}
10% {background: #f5f5f5;}
15% {background: #f5f5f5;}
25% {background: #b5b5b5;}
}
@keyframes blip-1 {
0% {background: #b5b5b5;}
10% {background: #f5f5f5;}
15% {background: #f5f5f5;}
25% {background: #b5b5b5;}
}
@-webkit-keyframes blip-2 {
25% {background: #b5b5b5;}
35% {background: #f5f5f5;}
40% {background: #f5f5f5;}
50% {background: #b5b5b5;}
}
@-moz-keyframes blip-2 {
25% {background: #b5b5b5;}
35% {background: #f5f5f5;}
40% {background: #f5f5f5;}
50% {background: #b5b5b5;}
}
@keyframes blip-2 {
25% {background: #b5b5b5;}
35% {background: #f5f5f5;}
40% {background: #f5f5f5;}
50% {background: #b5b5b5;}
}
@-webkit-keyframes blip-3 {
50% {background: #b5b5b5;}
60% {background: #f5f5f5;}
65% {background: #f5f5f5;}
75% {background: #b5b5b5;}
}
@-moz-keyframes blip-3 {
50% {background: #b5b5b5;}
60% {background: #f5f5f5;}
65% {background: #f5f5f5;}
75% {background: #b5b5b5;}
}
@keyframes blip-3 {
50% {background: #b5b5b5;}
60% {background: #f5f5f5;}
65% {background: #f5f5f5;}
75% {background: #b5b5b5;}
}
@-webkit-keyframes blip-4 {
75% {background: #b5b5b5;}
85% {background: #f5f5f5;}
90% {background: #f5f5f5;}
100% {background: #b5b5b5;}
}
@-moz-keyframes blip-4 {
75% {background: #b5b5b5;}
85% {background: #f5f5f5;}
90% {background: #f5f5f5;}
100% {background: #b5b5b5;}
}
@keyframes blip-4 {
75% {background: #b5b5b5;}
85% {background: #f5f5f5;}
90% {background: #f5f5f5;}
100% {background: #b5b5b5;}
}
/*------------------------------------
[CTS] CONTACT SECTION
------------------------------------*/
#contact {
min-height: 0;
padding-bottom: 50px;
}
.contact-inner {
text-align: center;
}
.contact-wrap {
padding-bottom: 20px;
margin-bottom: 20px;
border-bottom: 1px dotted #eee;
}
.contact-wrap span {
display: block;
}
.contact-form {
overflow: auto;
}
.contact-form .form-group {
position: relative;
}
.contact-form .has-success:before,
.contact-form .has-error:before {
position: absolute;
top: 50%;
right: 10px;
display: inline-block;
margin-top: -12px;
font-family: FontAwesome;
}
.contact-form .has-success:before {
content: "\f00c";
color: #47a447;
}
.contact-form .has-error:before {
content: "\f00d";
color: #d2322d;
}
.contact-notif {
position: fixed;
top: 60px;
left: 50%;
display: none;
width: 500px;
background: #eee;
margin-left: -250px;
padding: 10px 20px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
opacity: .85;
text-align: center;
}
.contact-notif.success {
background: #dff0d8;
color: #47a447;
}
.contact-notif.error {
background: #f2dede;
color: #d2322d;
}
.social {
display: inline-block;
width: 100%;
text-align: center;
}
.social li > a {
display: block;
width: 30px;
height: 30px;
background: #eee;
border-bottom: 2px solid transparent;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
color: #b5b5b5;
line-height: 30px;
vertical-align: middle;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.social li > a:hover {
border-color: #888;
color: #888;
text-decoration: none
}
.map-wrap {
position: relative;
height: 400px;
margin-top: 60px;
}
.map-wrap:before {
content: "";
position: absolute;
top: 0;
left: 0;
z-index: 99;
width: 100%;
height: 6px;
background: transparent;
background: -webkit-linear-gradient(rgba(0, 0, 0, .05), rgba(0, 0, 0, 0));
background: -moz-linear-gradient(rgba(0, 0, 0, .05), rgba(0, 0, 0, 0));
background: -o-linear-gradient(rgba(0, 0, 0, .05), rgba(0, 0, 0, 0));
background: linear-gradient(rgba(0, 0, 0, .05), rgba(0, 0, 0, 0));
}
.map-wrap > div {
width: 100%;
height: 100%;
}
/*------------------------------------
[FOS] FOOTER STYLE
------------------------------------*/
.main-footer {
height: 50px;
background: #fafafa;
border-top: 2px solid #eee;
font-family: "Droid Sans", sans-serif;
color: #b5b5b5;
line-height: 48px;
}
.archive {
float: right;
margin: 0;
}
.archive > li {
margin-left: 30px;
}
.archive .fa-li {
position: static;
}
.archive a:hover {
text-decoration: none;
}
.copyright {
float: left;
}
/*------------------------------------
[MDQ] MEDIA QUERIES
------------------------------------*/
@media screen and (min-width: 992px) and (max-width: 1199px) {
.hero-content {
right: 5%;
}
.hero-figure > img {
left: 5%;
}
}
@media screen and (min-width: 992px) {
.hero-figure {
background: none !important;
}
}
@media screen and (max-width: 991px) {
.section-wrap {
padding: 70px 0;
}
#hero {
height: auto;
}
.hero-figure > img {
display: none;
}
.hero-figure { /* Figure img replacement */
display: block;
width: 300px;
height: 300px;
background-position: center center;
background-size: cover;
margin: 0 auto 40px;
border: 2px solid #fafafa;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .15);
-moz-box-shadow: 0 0 10px rgba(0, 0, 0, .15);
box-shadow: 0 0 10px rgba(0, 0, 0, .15)
}
.hero-content {
width: 100%;
margin: 0 auto;
position: static;
}
.hero-content-title {
font-size: 80px;
}
.profile-content {
padding: 0;
margin-left: 0;
}
.qualification-education {
margin-bottom: 60px;
}
.skill-wrap {
margin-bottom: 80px;
}
.blog-page .blog {
padding-right: 0;
border: 0;
}
.blog-page .sidebar {
margin-left: 0;
}
.sidebar-wrap {
margin-left: 12px;
}
}
@media screen and (min-width: 768px) and (max-width: 991px) {
.profile-figure {
top: auto;
bottom: -70px;
}
#exp > .container {
padding: 0;
}
.timeline {
width: 731px;
}
.timeline > li {
width: 320px;
}
.timeline > li:after {
right: -55px;
}
.timeline > li.right:after {
left: -55px;
}
.timeline > li.present:after {
right: -62px;
}
.timeline > li.right.present:after {
left: -63px;
}
}
@media screen and (max-width: 767px) {
.logo {
float: left;
}
.main-header .navbar-nav.navbar-right:last-child {
margin-right: -15px;
}
.navbar-toggle {
float: right;
height: 50px;
margin: 0;
padding: 0 10px;
line-height: 50px;
vertical-align: middle;
color: #b5b5b5;
}
.navbar-collapse {
background: #fafafa;
border-top: 0;
border-bottom: 2px solid #eee;
}
.navbar-collapse .nav-style li > a {
height: 50px;
line-height: 50px;
}
.navbar-collapse .nav-style li > a:hover {
border-color: transparent;
}
.navbar-collapse .nav-style li > a:focus {
text-shadow: 0 1px #fff;
}
.navbar-collapse .navbar-nav {
margin: 0 -15px;
}
.navbar-nav .open .dropdown-menu > li > a {
line-height: 39px;
}
.hero-content-title {
font-size: 30px;
}
.hero-content p {
width: 100%;
font-size: 16px;
}
.hero-figure { /* Figure img replacement */
width: 100px;
height: 100px;
}
#profile {
height: auto;
}
.profile-figure {
display: block;
width: 100%;
position: static;
margin-bottom: -70px;
}
.qualification-summary,
.qualification-education {
margin-bottom: 40px;
}
.skill-wrap {
margin-bottom: 60px;
}
.timeline {
width: 100%;
}
.timeline > li {
width: 90%;
margin: 40px 0;
}
.timeline > li:before,
.timeline > li:after {
display: none;
}
.timeline > li.year.top {
padding: 0 0 60px;
}
.timeline > li.year {
padding: 40px 0 60px;
}
.blog-page .subheader {
height: auto;
text-align: center;
}
.blog-page .blog-meta {
height: auto;
line-height: 36px;
}
.main-comment .media-object {
width: 50px;
height: 50px;
}
.main-comment .nested-comment .media-object {
width: 35px;
height: 35px;
}
#contact {
padding-bottom: 0;
}
.social {
margin-bottom: 60px;
}
#map {
margin-bottom: 0;
}
.main-footer {
position: static;
height: auto;
text-align: center;
}
.archive {
float: none;
display: inline-block;
}
.archive.fa-ul {
margin: 0;
padding: 0;
text-align: center;
}
.archive > li {
margin: 0;
}
.copyright {
float: none;
display: block;
}
.pre-wrap {
width: 30px;
height: 30px;
margin-top: -15px;
margin-left: -15px;
}
}
@media screen and (max-width: 500px) {
.contact-notif {
left: auto;
width: 90%;
margin-left: 5%;
}
} | past_themes/CIV THEME/LayoutTemplate/products_WB058XR4F/doc/style.css | [GBS] GLOBAL/BOOTSTRAP STYLE
------------------------------------*/
body, html {
height: 100%;
}
body {
font-family: "Lato", sans-serif;
font-size: 15px;
color: #555;
}
/*-- HEADINGS --*/
h1, h2, h3, h4, h5, h6 {
font-family: "Droid Sans", sans-serif;
color: #b5b5b5;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small,
.h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small,
h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small,
.h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
color: #dadada;
}
/*-- BLOCKQUOTE --*/
blockquote,
.blockquote-reverse,
blockquote.pull-right {
border-color: #eee;
}
blockquote footer,
blockquote small,
blockquote .small {
color: #b5b5b5;
}
/*-- TABLES --*/
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td,
.table-bordered {
border-color: #eee;
}
.table-striped > tbody > tr:nth-child(2n+1) > td,
.table-striped > tbody > tr:nth-child(2n+1) > th,
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th,
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
background-color: #fafafa;
}
/*-- FORMS --*/
input.form-control,
select.form-control,
textarea.form-control {
border-color: #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .025) inset;
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .025) inset;
box-shadow: 0 1px 1px rgba(0, 0, 0, .025) inset;
font-size: 15px;
}
input.form-control:focus,
select.form-control:focus,
textarea.form-control:focus {
border-color: #b5b5b5;
-webkit-box-shadow: 0 0 8px #eee;
-moz-box-shadow: 0 0 8px #eee;
box-shadow: 0 0 8px #eee;
}
::-webkit-input-placeholder {
color: #b5b5b5 !important;
font-size: 13px !important;
}
:-moz-placeholder { /* Firefox 18- */
color: #b5b5b5 !important;
font-size: 13px !important;
}
::-moz-placeholder { /* Firefox 19+ */
color: #b5b5b5 !important;
font-size: 13px !important;
}
:-ms-input-placeholder {
color: #b5b5b5 !important;
font-size: 13px !important;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background-color: #eee;
}
.input-group-addon {
background: #fafafa;
border-color: #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
font-size: inherit;
color: inherit;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn,
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
/*-- BUTTONS --*/
.btn {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
font-family: "Droid Sans", sans-serif;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.btn-default {
background: #eee;
border-color: #eaeaea;
color: #b5b5b5;
}
.btn-default:hover {
background: #dedede;
color: #888;
}
a:active,
a:focus,
.btn:active,
.btn:focus {
outline: none !important;
}
a,
.btn-link {
color: #b5b5b5;
}
a:hover,
a:focus,
.btn-link:hover {
color: #888;
}
/*-- PAGINATION --*/
.pagination {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
-webkit-border-radius: 2px 0 0 2px;
-moz-border-radius: 2px 0 0 2px;
border-radius: 2px 0 0 2px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
-webkit-border-radius: 0 2px 2px 0;
-moz-border-radius: 0 2px 2px 0;
border-radius: 0 2px 2px 0;
}
.pagination > li > a,
.pagination > li > span {
color: #b5b5b5;
border-color: #eee;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus,
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
background-color: #eee;
border-color: #eee;
color: #888;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
background-color: #fafafa;
border-color: #eee;
color: #ccc;
}
/*-- PAGER --*/
.pager li > a,
.pager li > span {
padding: 3px 11px;
background-color: #fff;
border-color: #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.pager li > a:hover,
.pager li > a:focus {
background-color: #eee;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
color: #ccc;
background-color: #fafafa;
}
/*-- LABEL/BADGE --*/
.label {
-webkit-border-radius: .15em;
-moz-border-radius: .15em;
border-radius: .15em;
}
.label-default,
.badge {
background-color: #aaa;
}
a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
color: #fff;
background-color: #d9534f;
}
.nav-pills > .active > a > .badge {
margin-top: 3px;
}
/*-- JUMBOTRON --*/
.container .jumbotron{
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.jumbotron {
background-color: #fafafa;
}
/*-- THUMBNAIL --*/
.thumbnail {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
border-color: #eee;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
border-color: #b5b5b5;
}
/*-- ALERT --*/
.alert {
border-color: transparent !important;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
/*-- PROGRESS BAR --*/
.progress {
background-color: #fafafa;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.progress-bar {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
/*-- LIST GROUP --*/
.list-group-item {
border-color: #eee;
}
.list-group-item:first-child {
-webkit-border-radius: 2px 0 0 2px;
-moz-border-radius: 2px 0 0 2px;
border-radius: 2px 0 0 2px;
}
.list-group-item:last-child {
-webkit-border-radius: 0 0 2px 2px;
-moz-border-radius: 0 0 2px 2px;
border-radius: 0 0 2px 2px;
}
a.list-group-item:hover,
a.list-group-item:focus {
background-color: #fafafa;
}
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
border-color: #eee;
background-color: #f5f5f5;
color: #aaa;
}
a.list-group-item-success:hover,
a.list-group-item-success:focus {
background-color: #d0e9c6;
}
a.list-group-item-info:hover,
a.list-group-item-info:focus {
background-color: #c4e3f3;
}
a.list-group-item-warning:hover,
a.list-group-item-warning:focus {
background-color: #faf2cc;
}
a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
background-color: #ebcccc;
}
/*-- PANEL --*/
.panel {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.panel-heading {
-webkit-border-radius: 1px 1px 0 0;
-moz-border-radius: 1px 1px 0 0;
border-radius: 1px 1px 0 0;
}
.panel-footer{
border-color: #eee;
background-color: #fafafa;
-webkit-border-radius: 0 0 1px 1px;
-moz-border-radius: 0 0 1px 1px;
border-radius: 0 0 1px 1px;
}
.panel-default {
border-color: #eee;
}
.panel-default > .panel-heading {
color: inherit;
background-color: #fafafa;
border-color: #eee;
}
/*-- WELL --*/
.well {
background-color: #f5f5f5;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
/*-- TABS/PILLS --*/
.nav-tabs {
border-bottom: 0;
}
.nav-pills {
margin-bottom: 10px;
}
.nav-tabs > li > a,
.nav-pills > li > a {
background: #fbfbfb;
border: 1px solid transparent;
-webkit-border-radius: 2px 2px 0 0;
-moz-border-radius: 2px 2px 0 0;
border-radius: 2px 2px 0 0;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s
}
.nav-pills > li > a {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.nav-tabs > li > a:hover {
background: #eee;
border-color: transparent;
border-bottom-color: #eee;
color: #888;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus,
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.nav.nav-tabs > li > a:focus,
.nav.nav-pills > li > a:focus {
background: #fafafa;
border-color: #eee;
color: inherit;
border-bottom: 1px solid #fafafa;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
border-bottom: 1px solid #eee;
}
.nav-tabs > li.active > a {
position: relative;
z-index: 3;
}
.tab-pane {
position: relative;
z-index: 2;
padding: 5px 10px;
background: #fafafa;
border: 1px solid #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
/*-- TOOLTIP --*/
.tooltip-inner {
color: #b5b5b5;
background-color: #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.tooltip.top .tooltip-arrow,
.tooltip.top-left .tooltip-arrow,
.tooltip.top-right .tooltip-arrow {
border-top-color: #eee;
}
.tooltip.right .tooltip-arrow {
border-right-color: #eee;
}
.tooltip.left .tooltip-arrow {
border-left-color: #eee;
}
.tooltip.bottom .tooltip-arrow,
.tooltip.bottom-left .tooltip-arrow,
.tooltip.bottom-right .tooltip-arrow {
border-bottom-color: #eee;
}
/*-- POPOVER --*/
.popover {
padding: 0;
border-color: #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 2px 4px #eee;
-moz-box-shadow: 0 2px 4px #eee;
box-shadow: 0 2px 4px #eee;
}
.popover-title {
border-color: #eee;
background: #f5f5f5;
-webkit-border-radius: 1px 1px 0 0;
-moz-border-radius: 1px 1px 0 0;
border-radius: 1px 1px 0 0;
}
.popover.right > .arrow {
border-right-color: #eee;
}
.popover.left > .arrow {
border-left-color: #eee;
}
.popover.top > .arrow {
border-top-color: #eee;
}
.popover.bottom > .arrow {
border-bottom-color: #eee;
}
.popover.bottom > .arrow:after {
border-bottom-color: #f5f5f5;
}
/*-- CODE/PRE --*/
code, pre {
background: #eee;
border: 0;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
color: inherit;
}
/*-- DROPDOWN --*/
.dropdown-menu {
background-color: #fafafa;
border-color: #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 0 8px #eee;
-moz-box-shadow: 0 0 8px #eee;
box-shadow: 0 0 8px #eee;
font-size: inherit;
}
.dropdown-menu li > a:hover {
background-color: #f5f5f5;
color: #444;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
color: #888;
background-color: #eee;
}
.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
background-color: #eee;
border-color: #888;
}
.dropdown-menu .divider {
background-color: #eee;
margin: 0;
}
/*-- MODAL --*/
.modal-content {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.modal-header,
.modal-footer {
border-color: #eee;
}
/*------------------------------------
[SHS] SHARED STYLE
------------------------------------*/
.section-wrap {
min-height: 100%;
padding: 90px 0;
border-bottom: 1px dotted #eee;
}
.heading {
margin: 0 0 14px;
padding: 0 0 8px;
border-bottom: 1px dotted #b5b5b5;
font-size: 22px;
}
.fa-ul .fa-li { /* Font Awesome icon list color */
color: #b5b5b5;
}
/*------------------------------------
[HRS] HEADER STYLE
------------------------------------*/
.main-header .navbar {
height: 50px;
background: #fafafa;
border-bottom: 2px solid #eee;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.main-header .container > .navbar-header {
margin: 0;
}
.main-header .navbar-nav.navbar-right:last-child {
margin-right: 0;
}
.logo img {
height: 40px;
margin-top: 4px;
}
.logo:hover,
.logo:focus {
text-decoration: none;
}
.nav-style > li > a,
.nav-style > li > a:focus {
height: 50px;
padding: 0 15px;
border-bottom: 2px solid transparent;
color: #aaa;
font-family: "Droid Sans", sans-serif;
line-height: 50px;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.nav-style > li > a:hover {
background: #f5f5f5;
border-color: #888;
color: #888;
}
.nav-style > li > a:active,
.nav-style > li > a:focus {
background: #eee;
}
.nav-style .active > a,
.nav-style .active > a:focus {
background: #eee;
text-shadow: 0 1px #fff;
}
.nav-style .dropdown-menu{
background-color: #fafafa;
padding: 0;
border-color: #eee;
border-bottom: 2px solid #eee;
-webkit-border-radius: 0 0 2px 2px;
-moz-border-radius: 0 0 2px 2px;
border-radius: 0 0 2px 2px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
font-size: inherit;
}
.nav-style .dropdown-menu > li > a {
padding: 6px 20px;
border-bottom: 1px solid #eee;
color: #b5b5b5;
}
.nav-style .dropdown-menu > li > a:hover {
background-color: #f5f5f5;
}
.nav-style .open > a,
.nav-style .open > a:hover,
.nav-style .open > a:focus {
background-color: #eee;
border-color: transparent;
text-shadow: 0 1px #fff;
}
/*------------------------------------
[HOS] HERO SECTION
------------------------------------*/
#hero {
height: 100%;
background-image: url("img/bg-img.jpg");
background-position: top center;
padding: 0;
overflow: hidden;
}
#hero > .container {
position: relative;
min-height: 100%;
}
.hero-content {
position: absolute;
top: 50%;
right: 10%;
width: 500px;
text-align: center;
overflow: hidden;
}
.hero-content-title {
margin: 0 0 20px;
padding: 0;
font-size: 80px;
font-family: "Revalia", sans-serif;
color: #fff;
letter-spacing: -2px;
text-shadow: 0 1px 5px rgba(0, 0, 0, .15);
text-transform: capitalize;
}
.hero-content p {
display: inline-block;
width: 300px;
margin: 0 0 40px;
font-size: 16px;
color: #666;
text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
}
.hero-figure {
background-image: url("img/hero-figure-sm.jpg");
}
.hero-figure > img {
position: absolute;
left: 10%;
bottom: 0;
height: 90%;
}
/*------------------------------------
[PRS] PROFILE SECTION
------------------------------------*/
#profile {
height: 100%;
overflow: hidden;
}
#profile > .container {
position: relative;
min-height: 100%;
}
.profile-content {
margin-left: -15px;
}
.profile-figure {
position: absolute;
right: 0;
top: 0;
z-index: -1;
width: 40%;
}
/*------------------------------------
[QFS] QUALIFICATION SECTION
------------------------------------*/
.qualification-summary {
margin-bottom: 40px;
}
.qualification-education li {
margin-bottom: 20px;
}
.qualification-education-title {
margin: 0;
font-size: 17px;
font-style: italic;
color: inherit;
}
/*------------------------------------
[SKS] SKILL SECTION
------------------------------------*/
.skill-wrap {
text-align: center;
}
.skill-wrap .fa-ul > li,
.skill-desc {
text-align: left;
}
.skill-title {
padding: 0 0 10px;
border-bottom: 1px dotted #b5b5b5;
font-size: 20px;
}
.chart {
position: relative;
display: inline-block;
width: 150px;
height: 150px;
margin: 30px 0;
}
.chart > .percent {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
font-size: 36px;
font-weight: bold;
color: #b5b5b5;
line-height: 150px;
text-align: center;
}
.chart > .percent:after {
content: ' %';
position: absolute;
top: 0;
margin-left: 3px;
font-size: 12px;
color: #b5b5b5;
}
/*------------------------------------
[EXS] EXPERIENCE SECTION
------------------------------------*/
.timeline {
position: relative;
width: 851px;
padding: 0 0 100px;
margin: 0 auto;
list-style: none;
overflow: hidden;
}
.timeline:before {
content: "";
position: absolute;
top: 0;
left: 50%;
width: 2px;
height: 100%;
background: #eee;
margin-left: -1px;
}
.timeline > li {
position: relative;
clear: both;
float: left;
width: 360px;
background: #fafafa;
padding: 20px;
border: 1px solid #eee;
margin: -150px 0 0;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
text-align: center;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.timeline > li:before { /* Marker line */
content: "";
position: absolute;
right: -51px;
top: 50%;
width: 50px;
height: 1px;
background: #eee;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.timeline > li:after { /* Marker dot */
content: "";
position: absolute;
right: -75px;
top: 50%;
width: 16px;
height: 16px;
background: #eee;
margin-top: -8px;
border: 3px solid #fff;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.timeline > li.right {
float:right;
}
.timeline > li.right:before { /* Marker line for right box */
left: -51px;
right: auto;
}
.timeline > li.right:after { /* Marker dot for right box */
left: -74px;
right: auto;
}
.timeline > li.present:after,
.timeline > li.right.present:after { /* Alternative marker style within .present */
top: 50%;
right: -82px;
width: 32px;
height: 32px;
background: #fff;
border-color: #eee;
margin-top: -16px;
}
.timeline > li.right.present:after { /* Alternative marker style within .present right box */
left: -83px;
right: auto;
}
.timeline > li:hover {
border-color: #aaa;
-webkit-box-shadow: 0 0 8px #eee;
-moz-box-shadow: 0 0 8px #eee;
box-shadow: 0 0 8px #eee;
}
.timeline > li:hover:before,
.timeline > li:hover:after {
background: #b5b5b5;
}
.timeline > li.present:hover:after,
.timeline > li.right.present:hover:after {
background: #fff;
border-color: #b5b5b5;
}
.timeline .year span {
display: inline-block;
background: #fafafa;
padding: 6px 12px;
border: 1px solid #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
font-size: 20px;
font-family: "Droid sans", sans-serif;
color: #b5b5b5;
}
.timeline > li.year { /* Year style */
float: none;
clear: both;
width: 100%;
background: transparent;
margin: 0;
padding: 100px 0 200px;
border: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
text-align: center;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.timeline > li.year.top { /* Top year style */
padding-top: 0;
}
.timeline > li.year:hover,
.timeline > li.year.top:hover {
border-color: #eee;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.timeline > li.break { /* Fix overlapped box */
margin: 40px 0;
}
.tl-header {
margin-bottom: 15px;
padding-bottom: 5px;
border-bottom: 1px solid #eee;
-webkit-box-shadow: 0 1px #fff;
-moz-box-shadow: 0 1px #fff;
box-shadow: 0 1px #fff;
text-align: center;
text-shadow: 0 1px #fff;
}
.tl-role,
.tl-company {
margin: 0;
padding: 0;
font-size: 24px;
line-height: 22px;
}
.tl-company {
margin: 0 0 10px;
font-size: 16px;
}
.tl-time {
font-size: 16px;
letter-spacing: -1px;
color: #b5b5b5;
font-family: "Droid Sans", sans-serif;
}
.timeline > li img,
.timeline > li .video-wrap {
display: inline-block;
max-width: 100%;
margin-bottom: 20px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
border-bottom: 1px solid #eee;
-webkit-box-shadow: 0 1px #fff;
-moz-box-shadow: 0 1px #fff;
box-shadow: 0 1px #fff;
}
.timeline > li .video-wrap {
width: 100%;
overflow: hidden;
}
.tl-content {
text-align: left;
}
/*------------------------------------
[GAL] GALLERY
------------------------------------*/
.gallery {
margin-bottom: 40px;
}
.gallery-wrap {
text-align: center;
}
.gallery-frame {
display: inline-block;
width: 290px;
height: 200px;
margin-bottom: 40px;
border: 1px solid transparent;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
overflow: hidden;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.gallery-frame img {
width: 100%;
-webkit-transition: .2s ease-out;
-moz-transition: .2s ease-out;
transition: .2s ease-out;
}
.gallery-frame:hover {
-webkit-box-shadow: 2px 2px 8px #b5b5b5;
-moz-box-shadow: 2px 2px 8px #b5b5b5;
box-shadow: 2px 2px 8px #b5b5b5;
border-color: #b5b5b5;
}
.gallery-frame:hover img {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.gallery-control {
text-align: center;
margin-bottom: 40px;
}
.gallery-control > ul > li {
position: relative;
color: #b5b5b5;
margin: 5px;
}
.gallery-control > ul > li:before {
content: "|";
position: absolute;
right: -9px;
}
.gallery-control > ul > li:last-child:before {
display: none;
}
.gallery-control > ul > li > span {
display: block;
height: 30px;
border-bottom: 2px solid transparent;
cursor: pointer;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.gallery-control > ul > li > span:hover {
border-bottom: 2px solid #555;
text-decoration: none;
color: #555;
}
/*------------------------------------
[BLG] BLOG
------------------------------------*/
.blog-post {
overflow: auto;
padding-bottom: 40px;
}
.blog-title {
margin-bottom: 20px;
font-size: 22px;
text-align: center;
}
.blog-thumb {
width: 100%;
margin-bottom: 20px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.blog-meta {
height: 48px;
margin-bottom: 20px;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
text-align: center;
line-height: 48px;
vertical-align: middle;
}
.blog-meta i.fa {
color: #b5b5b5;
}
.blog-page {
padding-top: 50px;
}
.blog-page .navbar {
margin-bottom: 0;
}
.blog-page .subheader {
height: 50px;
background: #f9f9f9;
line-height: 50px;
}
.blog-page .breadcrumb {
display: inline-block;
background: transparent;
margin: 0;
padding-left: 0;
padding-top: 0;
padding-bottom: 0;
font-size: 13px;
}
.blog-search {
position: relative;
}
.blog-search:before {
content: "\f002";
position: absolute;
right: 12px;
display: inline-block;
font-family: FontAwesome;
color: #b5b5b5;
}
.blog-search input {
display: inline-block;
height: auto;
background: #f5f5f5;
padding: 4px 36px 4px 12px;
-webkit-border-radius: 50px;
-moz-border-radius: 50px;
border-radius: 50px;
}
.blog-search ::-webkit-input-placeholder {
font-style: italic;
}
.blog-search ::-moz-placeholder {
font-style: italic;
}
.blog-search :-moz-placeholder {
font-style: italic;
}
.blog-search :-ms-placeholder {
font-style: italic;
}
.blog-search input:focus {
border-color: #b5b5b5;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.blog-page .blog {
margin-bottom: 0;
padding-bottom: 40px;
padding-top: 40px;
padding-right: 40px;
border-right: 2px solid #f5f5f5;
}
.blog-page .blog-title {
margin-top: 0;
font-size: 32px;
text-align: left;
}
.blog-page .blog-meta {
text-align: left;
}
.blog-page .sidebar {
margin-left: -30px;
padding-top: 80px;
}
.sidebar-wrap {
margin-bottom: 80px;
margin-left: 10px;
}
.sidebar-title {
position: relative;
background: #fafafa;
padding: 5px;
font-size: 18px;
}
.sidebar-title:before {
content: "";
position: absolute;
top: 0;
left: -12px;
display: block;
width: 6px;
height: 100%;
background: #f5f5f5;
}
.sidebar-list > li {
margin-bottom: 10px;
}
.blog-single .pager {
margin-bottom: 40px;
}
.main-comment {
padding: 20px;
background: #fafafa;
border: 1px solid #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.main-comment .media-object {
height: 100px;
width: 100px;
border: 1px solid #eee;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
overflow: hidden;
}
.main-comment .media-object > img {
width: 100%;
}
.main-comment .nested-comment .media-object {
height: 70px;
width: 70px;
}
.nested-comment {
background: #f5f5f5;
padding: 10px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.comment-author {
font-size: 17px;
}
.comment-reply {
font-size: 13px;
}
.comment-form {
margin: 40px 0;
}
/*------------------------------------
[TWT] TWITTER WIDGET
------------------------------------*/
.twitter-widget {
display: block;
background: #fafafa;
padding: 5px 10px;
}
.twitter-widget ul {
padding: 0;
margin: 0;
list-style: none;
}
.twitter-widget ul > li {
margin-bottom: 20px;
border-bottom: 1px solid #eee;
overflow: auto;
clear: both;
-webkit-box-shadow: 0 1px #fff;
-moz-box-shadow: 0 1px #fff;
box-shadow: 0 1px #fff;
}
.twitter-widget ul > li:last-child {
margin-bottom: 0;
border-bottom: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.twitter-widget .tweet {
overflow: hidden;
}
.twitter-widget .timePosted,
.twitter-widget .interact {
display: inline-block;
}
.twitter-widget .timePosted {
margin-right: 5px;
}
.twitter-widget .interact a {
margin-left: 5px;
}
.twitter-meta {
float: right;
font-size: 13px;
}
.twitter-widget .user a img {
float: left;
margin-right: 10px;
margin-top: 5px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.twitter-widget .user > a {
color: #888;
}
.twitter-widget .user > a:hover {
color: #888;
cursor: default;
text-decoration: none;
}
.twitter-widget .user > a > span[data-scribe="element:screen_name"] {
color: #b5b5b5;
}
.twitter-widget .user > a > span[data-scribe="element:screen_name"]:hover {
color: #888;
text-decoration: underline;
cursor: pointer;
}
/*------------------------------------
[UTL] UTILITIES
------------------------------------*/
/*-- MAGNIFIC POPUP LIGHTBOX --*/
.mfp-fade.mfp-bg {
opacity: 0;
-webkit-transition: .2s ease-out;
-moz-transition: .2s ease-out;
transition: .2s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
opacity: .8;
}
.mfp-fade.mfp-bg.mfp-removing {
opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
opacity: 0;
-webkit-transition: .2s ease-out;
-moz-transition: .2s ease-out;
transition: .2s ease-out;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
opacity: 0;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
}
.mfp-close {
position: absolute;
top: 0;
right: 0;
z-index: 2;
}
.mfp-zoom-out-cur {
cursor: auto;
}
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: pointer;
}
/*-- COLLAPSE/ACCORDION --*/
.panel-custom {
margin: 0 0 5px !important;
}
.panel-custom .panel-heading {
padding: 0;
}
.panel-custom .panel-body {
background: #fafafa;
margin-top: -2px;
border: 1px solid #eee;
border-top-color: transparent !important;
-webkit-border-radius: 2px !important;
-moz-border-radius: 2px !important;
border-radius: 2px !important;
}
.panel-custom .panel-heading a {
position: relative;
display: block;
padding: 20px 10px !important;
background: #fafafa;
border: 1px solid #eee;
-webkit-border-radius: 2px 2px 0 0 !important;
-moz-border-radius: 2px 2px 0 0 !important;
border-radius: 2px 2px 0 0 !important;
color: #b5b5b5;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.panel-custom .panel-heading a:hover {
background: #f5f5f5;
}
.panel-custom .panel-heading a:hover,
.panel-custom .panel-heading a:focus {
text-decoration: none;
}
.panel-custom .panel-heading a:before {
content: "\f105";
font-family: FontAwesome;
position: absolute;
right: 10px;
display: inline-block;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
.panel-custom .panel-heading a.collapsed {
border-color: transparent;
-webkit-border-radius: 2px !important;
-moz-border-radius: 2px !important;
border-radius: 2px !important;
}
.panel-custom .panel-heading a.collapsed:before {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
/*-- SOCIAL ICONS --*/
.social-icon.twitter-icon:hover {
color: #00aced;
border-color: #00aced;
}
.social-icon.facebook-icon:hover {
color: #3b5998;
border-color: #3b5998;
}
.social-icon.google-plus-icon:hover {
color: #bb4b39;
border-color: #bb4b39;
}
.social-icon.youtube-icon:hover {
color: #bb0000;
border-color: #bb0000;
}
.social-icon.vimeo-icon:hover {
color: #aad450;
border-color: #aad450;
}
.social-icon.flickr-icon:hover {
color: #ff0084;
border-color: #ff0084;
}
.social-icon.pinterest-icon:hover {
color: #cb2027;
border-color: #cb2027;
}
.social-icon.github-icon:hover {
color: #333;
border-color: #333;
}
.social-icon.tumblr-icon:hover {
color: #32506d;
border-color: #32506d;
}
.social-icon.instagram-icon:hover {
color: #517fa4;
border-color: #517fa4;
}
.social-icon.skype-icon:hover {
color: #12a5f4;
border-color: #12a5f4;
}
.social-icon.foursquare-icon:hover {
color: #0072b1;
border-color: #0072b1;
}
.social-icon.dribbble-icon:hover {
color: #ea4c89;
border-color: #ea4c89;
}
.social-icon.linkedin-icon:hover {
color: #007bb6;
border-color: #007bb6;
}
/*-- PRELOADER --*/
#preloader {
position: fixed;
top: 0;
left: 0;
z-index: 9999;
width: 100%;
height: 100%;
background: #fafafa;
}
.pre-wrap {
position: absolute;
top: 50%;
left: 50%;
width: 40px;
height: 40px;
margin-top: -20px;
margin-left: -20px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.square {
position: absolute;
width: 45%;
height: 45%;
background: #b5b5b5;
border: 1px solid #b5b5b5;
}
.square-1 {
top: 0;
left: 0;
-webkit-animation: blip-1 2s infinite;
-moz-animation: blip-1 2s infinite;
animation: blip-1 2s infinite;
}
.square-2 {
top: 0;
right: 0;
-webkit-animation: blip-2 2s infinite;
-moz-animation: blip-2 2s infinite;
animation: blip-2 2s infinite;
}
.square-3 {
bottom: 0;
right: 0;
-webkit-animation: blip-3 2s infinite;
-moz-animation: blip-3 2s infinite;
animation: blip-3 2s infinite;
}
.square-4 {
bottom: 0;
left: 0;
-webkit-animation: blip-4 2s infinite;
-moz-animation: blip-4 2s infinite;
animation: blip-4 2s infinite;
}
@-webkit-keyframes blip-1 {
0% {background: #b5b5b5;}
10% {background: #f5f5f5;}
15% {background: #f5f5f5;}
25% {background: #b5b5b5;}
}
@-moz-keyframes blip-1 {
0% {background: #b5b5b5;}
10% {background: #f5f5f5;}
15% {background: #f5f5f5;}
25% {background: #b5b5b5;}
}
@keyframes blip-1 {
0% {background: #b5b5b5;}
10% {background: #f5f5f5;}
15% {background: #f5f5f5;}
25% {background: #b5b5b5;}
}
@-webkit-keyframes blip-2 {
25% {background: #b5b5b5;}
35% {background: #f5f5f5;}
40% {background: #f5f5f5;}
50% {background: #b5b5b5;}
}
@-moz-keyframes blip-2 {
25% {background: #b5b5b5;}
35% {background: #f5f5f5;}
40% {background: #f5f5f5;}
50% {background: #b5b5b5;}
}
@keyframes blip-2 {
25% {background: #b5b5b5;}
35% {background: #f5f5f5;}
40% {background: #f5f5f5;}
50% {background: #b5b5b5;}
}
@-webkit-keyframes blip-3 {
50% {background: #b5b5b5;}
60% {background: #f5f5f5;}
65% {background: #f5f5f5;}
75% {background: #b5b5b5;}
}
@-moz-keyframes blip-3 {
50% {background: #b5b5b5;}
60% {background: #f5f5f5;}
65% {background: #f5f5f5;}
75% {background: #b5b5b5;}
}
@keyframes blip-3 {
50% {background: #b5b5b5;}
60% {background: #f5f5f5;}
65% {background: #f5f5f5;}
75% {background: #b5b5b5;}
}
@-webkit-keyframes blip-4 {
75% {background: #b5b5b5;}
85% {background: #f5f5f5;}
90% {background: #f5f5f5;}
100% {background: #b5b5b5;}
}
@-moz-keyframes blip-4 {
75% {background: #b5b5b5;}
85% {background: #f5f5f5;}
90% {background: #f5f5f5;}
100% {background: #b5b5b5;}
}
@keyframes blip-4 {
75% {background: #b5b5b5;}
85% {background: #f5f5f5;}
90% {background: #f5f5f5;}
100% {background: #b5b5b5;}
}
/*------------------------------------
[CTS] CONTACT SECTION
------------------------------------*/
#contact {
min-height: 0;
padding-bottom: 50px;
}
.contact-inner {
text-align: center;
}
.contact-wrap {
padding-bottom: 20px;
margin-bottom: 20px;
border-bottom: 1px dotted #eee;
}
.contact-wrap span {
display: block;
}
.contact-form {
overflow: auto;
}
.contact-form .form-group {
position: relative;
}
.contact-form .has-success:before,
.contact-form .has-error:before {
position: absolute;
top: 50%;
right: 10px;
display: inline-block;
margin-top: -12px;
font-family: FontAwesome;
}
.contact-form .has-success:before {
content: "\f00c";
color: #47a447;
}
.contact-form .has-error:before {
content: "\f00d";
color: #d2322d;
}
.contact-notif {
position: fixed;
top: 60px;
left: 50%;
display: none;
width: 500px;
background: #eee;
margin-left: -250px;
padding: 10px 20px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
opacity: .85;
text-align: center;
}
.contact-notif.success {
background: #dff0d8;
color: #47a447;
}
.contact-notif.error {
background: #f2dede;
color: #d2322d;
}
.social {
display: inline-block;
width: 100%;
text-align: center;
}
.social li > a {
display: block;
width: 30px;
height: 30px;
background: #eee;
border-bottom: 2px solid transparent;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
color: #b5b5b5;
line-height: 30px;
vertical-align: middle;
-webkit-transition: .2s;
-moz-transition: .2s;
transition: .2s;
}
.social li > a:hover {
border-color: #888;
color: #888;
text-decoration: none
}
.map-wrap {
position: relative;
height: 400px;
margin-top: 60px;
}
.map-wrap:before {
content: "";
position: absolute;
top: 0;
left: 0;
z-index: 99;
width: 100%;
height: 6px;
background: transparent;
background: -webkit-linear-gradient(rgba(0, 0, 0, .05), rgba(0, 0, 0, 0));
background: -moz-linear-gradient(rgba(0, 0, 0, .05), rgba(0, 0, 0, 0));
background: -o-linear-gradient(rgba(0, 0, 0, .05), rgba(0, 0, 0, 0));
background: linear-gradient(rgba(0, 0, 0, .05), rgba(0, 0, 0, 0));
}
.map-wrap > div {
width: 100%;
height: 100%;
}
/*------------------------------------
[FOS] FOOTER STYLE
------------------------------------*/
.main-footer {
height: 50px;
background: #fafafa;
border-top: 2px solid #eee;
font-family: "Droid Sans", sans-serif;
color: #b5b5b5;
line-height: 48px;
}
.archive {
float: right;
margin: 0;
}
.archive > li {
margin-left: 30px;
}
.archive .fa-li {
position: static;
}
.archive a:hover {
text-decoration: none;
}
.copyright {
float: left;
}
/*------------------------------------
[MDQ] MEDIA QUERIES
------------------------------------*/
@media screen and (min-width: 992px) and (max-width: 1199px) {
.hero-content {
right: 5%;
}
.hero-figure > img {
left: 5%;
}
}
@media screen and (min-width: 992px) {
.hero-figure {
background: none !important;
}
}
@media screen and (max-width: 991px) {
.section-wrap {
padding: 70px 0;
}
#hero {
height: auto;
}
.hero-figure > img {
display: none;
}
.hero-figure { /* Figure img replacement */
display: block;
width: 300px;
height: 300px;
background-position: center center;
background-size: cover;
margin: 0 auto 40px;
border: 2px solid #fafafa;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .15);
-moz-box-shadow: 0 0 10px rgba(0, 0, 0, .15);
box-shadow: 0 0 10px rgba(0, 0, 0, .15)
}
.hero-content {
width: 100%;
margin: 0 auto;
position: static;
}
.hero-content-title {
font-size: 80px;
}
.profile-content {
padding: 0;
margin-left: 0;
}
.qualification-education {
margin-bottom: 60px;
}
.skill-wrap {
margin-bottom: 80px;
}
.blog-page .blog {
padding-right: 0;
border: 0;
}
.blog-page .sidebar {
margin-left: 0;
}
.sidebar-wrap {
margin-left: 12px;
}
}
@media screen and (min-width: 768px) and (max-width: 991px) {
.profile-figure {
top: auto;
bottom: -70px;
}
#exp > .container {
padding: 0;
}
.timeline {
width: 731px;
}
.timeline > li {
width: 320px;
}
.timeline > li:after {
right: -55px;
}
.timeline > li.right:after {
left: -55px;
}
.timeline > li.present:after {
right: -62px;
}
.timeline > li.right.present:after {
left: -63px;
}
}
@media screen and (max-width: 767px) {
.logo {
float: left;
}
.main-header .navbar-nav.navbar-right:last-child {
margin-right: -15px;
}
.navbar-toggle {
float: right;
height: 50px;
margin: 0;
padding: 0 10px;
line-height: 50px;
vertical-align: middle;
color: #b5b5b5;
}
.navbar-collapse {
background: #fafafa;
border-top: 0;
border-bottom: 2px solid #eee;
}
.navbar-collapse .nav-style li > a {
height: 50px;
line-height: 50px;
}
.navbar-collapse .nav-style li > a:hover {
border-color: transparent;
}
.navbar-collapse .nav-style li > a:focus {
text-shadow: 0 1px #fff;
}
.navbar-collapse .navbar-nav {
margin: 0 -15px;
}
.navbar-nav .open .dropdown-menu > li > a {
line-height: 39px;
}
.hero-content-title {
font-size: 30px;
}
.hero-content p {
width: 100%;
font-size: 16px;
}
.hero-figure { /* Figure img replacement */
width: 100px;
height: 100px;
}
#profile {
height: auto;
}
.profile-figure {
display: block;
width: 100%;
position: static;
margin-bottom: -70px;
}
.qualification-summary,
.qualification-education {
margin-bottom: 40px;
}
.skill-wrap {
margin-bottom: 60px;
}
.timeline {
width: 100%;
}
.timeline > li {
width: 90%;
margin: 40px 0;
}
.timeline > li:before,
.timeline > li:after {
display: none;
}
.timeline > li.year.top {
padding: 0 0 60px;
}
.timeline > li.year {
padding: 40px 0 60px;
}
.blog-page .subheader {
height: auto;
text-align: center;
}
.blog-page .blog-meta {
height: auto;
line-height: 36px;
}
.main-comment .media-object {
width: 50px;
height: 50px;
}
.main-comment .nested-comment .media-object {
width: 35px;
height: 35px;
}
#contact {
padding-bottom: 0;
}
.social {
margin-bottom: 60px;
}
#map {
margin-bottom: 0;
}
.main-footer {
position: static;
height: auto;
text-align: center;
}
.archive {
float: none;
display: inline-block;
}
.archive.fa-ul {
margin: 0;
padding: 0;
text-align: center;
}
.archive > li {
margin: 0;
}
.copyright {
float: none;
display: block;
}
.pre-wrap {
width: 30px;
height: 30px;
margin-top: -15px;
margin-left: -15px;
}
}
@media screen and (max-width: 500px) {
.contact-notif {
left: auto;
width: 90%;
margin-left: 5%;
}
} | 0.142441 | 0.108519 |
:root{
--footer_height: 28px;
--theme-color-1: #173F5F;
--theme-color-2: #20639B;
--theme-color-3: #005194;
--theme-color-4: #F6D55C;
--theme-color-5: #f69a5c;
--text-color-1: #00aeff;
}
*{
transition: opacity 1s, z-index 1s;
color: var(--text-color-1);
}
/*
page mask
*/
#page_mask{
position: fixed;
left: 0;
top: 0;
margin: 0;
width: 100%;
height: 100%;
background-color: #000000;
z-index: 5;
transition: opacity 1s, z-index 2s;
}
/*
basic layout
*/
body{
position: fixed;
left: 0;
top: 0;
margin: 0;
width: 100%;
height: 100%;
display: grid;
grid-template-columns: auto 1fr;
grid-template-rows: 1fr var(--footer_height);
background-color: var(--theme-color-2);
}
header{
grid-column: 1 / span 1;
grid-row: 1 / span 1;
background-color: var(--theme-color-1);
padding: 5px;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto 1fr auto;
}
main{
grid-column: 2 / span 1;
grid-row: 1 / span 1;
background-color: var(--theme-color-2);
height: calc(100vh - var(--footer_height));
}
footer{
grid-column: 1 / span 2;
grid-row: 2 / span 1;
background-color: var(--theme-color-3);
text-align: right;
padding: 5px;
}
header>section{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5px;
}
/*
labels
*/
input[type="radio"]{
display: none;
}
label{
background-color: var(--theme-color-4);
padding: 5px;
border-radius: 5px;
}
label:hover{
filter: brightness(80%);
}
/*
buttons
*/
button{
background-color: var(--theme-color-4);
padding: 5px;
border: solid 2px var(--theme-color-5);
border-radius: 5px;
}
button:hover{
filter: brightness(80%);
}
button:disabled{
filter: grayscale(100%);
}
/*
links
*/
a{
color: var(--theme-color-4)
}
/*
dataoptions
*/
#data_options_temperature:checked~#data_options_temperature_label, #data_options_humidity:checked~#data_options_humidity_label{
background-color: var(--theme-color-5);
}
/*
locationoptions
*/
#location_options{
grid-column: 1 / span 2;
padding: 5px;
}
/*
*/
#station_options_hidden:checked~#station_options_hidden_label, #station_options_visable:checked~#station_options_visable_label{
background-color: var(--theme-color-5);
}
/*
timeoptions
*/
#time_options_timepoint:checked~header>section>#time_options_timepoint_label, #time_options_timerange:checked~header>section>#time_options_timerange_label{
background-color: var(--theme-color-5);
}
#timepoint_options, #timerange_options{
opacity: 0;
z-index: -1;
}
#time_options_timepoint:checked~header>section>#timepoint_options, #time_options_timerange:checked~header>section>#timerange_options{
opacity: 1;
z-index: 1;
}
/*
timepoint
*/
#timepoint_options{
grid-column: 1 / span 2;
grid-row: 5 / span 1;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr;
gap: 5px;
}
#timepoint_format_png:checked~#timepoint_format_png_label, #timepoint_format_jpg:checked~#timepoint_format_jpg_label{
background-color: var(--theme-color-5);
}
#timepoint_datetime{
grid-column: 1 / span 2;
grid-row: 2 / span 1;
}
#timepoint_options>button{
grid-column: 1 / span 2;
grid-row: 3 / span 1;
}
#display_timepoint{
display: none;
}
/*
timerange
*/
#timerange_options{
grid-column: 1 / span 2;
grid-row: 5 / span 1;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr;
gap: 5px;
}
#timerange_format_mp4:checked~#timerange_format_mp4_label{
background-color: var(--theme-color-5);
}
#timepoint_datetime_start{
grid-row: 2 / span 1;
}
#timepoint_datetime_end{
grid-row: 3 / span 1;
}
#timerange_options>button{
grid-row: 4 / span 1;
}
#display_timerange{
display: none;
}
#time_options_timepoint:checked~main>#display_timepoint, #time_options_timerange:checked~main>#display_timerange{
display: block;
margin-left: auto;
margin-right: auto;
max-height: 100%;
max-width: 100%;
}
/*
loader
*/
main{
position: relative;
}
#display_loader{
position: absolute;
display: block;
top: 50%;
left: 50%;
width: 100px;
height: 100px;
transform: translate(-50%, -50%);
z-index: 2;
opacity: 0;
border-top: 10px solid var(--theme-color-5);
border-left: 10px solid var(--text-color-1);
border-bottom: 10px solid var(--text-color-1);
border-right: 10px solid var(--text-color-1);
border-radius: 50%;
animation: spin 1.5s infinite;
}
@keyframes spin {
0% { transform: translate(-50%, -50%) rotate(0deg); }
100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/*
save
*/
header>form{
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
gap: 5px;
margin: 0;
}
/*
popup
*/
#data_downloaded{
display: none;
}
#popup{
display: none;
z-index: 3;
}
#popup_background_mask{
display: none;
}
#data_downloaded:not(:checked)~#popup{
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background-color: var(--theme-color-1);
border-radius: 5px;
padding: 5px;
border: 2px solid var(--theme-color-5);
display: grid;
gap: 5px;
}
#data_downloaded:not(:checked)~#popup_background_mask{
display: block;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #000000AA;
z-index: 2;
} | src/interface/style.css | :root{
--footer_height: 28px;
--theme-color-1: #173F5F;
--theme-color-2: #20639B;
--theme-color-3: #005194;
--theme-color-4: #F6D55C;
--theme-color-5: #f69a5c;
--text-color-1: #00aeff;
}
*{
transition: opacity 1s, z-index 1s;
color: var(--text-color-1);
}
/*
page mask
*/
#page_mask{
position: fixed;
left: 0;
top: 0;
margin: 0;
width: 100%;
height: 100%;
background-color: #000000;
z-index: 5;
transition: opacity 1s, z-index 2s;
}
/*
basic layout
*/
body{
position: fixed;
left: 0;
top: 0;
margin: 0;
width: 100%;
height: 100%;
display: grid;
grid-template-columns: auto 1fr;
grid-template-rows: 1fr var(--footer_height);
background-color: var(--theme-color-2);
}
header{
grid-column: 1 / span 1;
grid-row: 1 / span 1;
background-color: var(--theme-color-1);
padding: 5px;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto 1fr auto;
}
main{
grid-column: 2 / span 1;
grid-row: 1 / span 1;
background-color: var(--theme-color-2);
height: calc(100vh - var(--footer_height));
}
footer{
grid-column: 1 / span 2;
grid-row: 2 / span 1;
background-color: var(--theme-color-3);
text-align: right;
padding: 5px;
}
header>section{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5px;
}
/*
labels
*/
input[type="radio"]{
display: none;
}
label{
background-color: var(--theme-color-4);
padding: 5px;
border-radius: 5px;
}
label:hover{
filter: brightness(80%);
}
/*
buttons
*/
button{
background-color: var(--theme-color-4);
padding: 5px;
border: solid 2px var(--theme-color-5);
border-radius: 5px;
}
button:hover{
filter: brightness(80%);
}
button:disabled{
filter: grayscale(100%);
}
/*
links
*/
a{
color: var(--theme-color-4)
}
/*
dataoptions
*/
#data_options_temperature:checked~#data_options_temperature_label, #data_options_humidity:checked~#data_options_humidity_label{
background-color: var(--theme-color-5);
}
/*
locationoptions
*/
#location_options{
grid-column: 1 / span 2;
padding: 5px;
}
/*
*/
#station_options_hidden:checked~#station_options_hidden_label, #station_options_visable:checked~#station_options_visable_label{
background-color: var(--theme-color-5);
}
/*
timeoptions
*/
#time_options_timepoint:checked~header>section>#time_options_timepoint_label, #time_options_timerange:checked~header>section>#time_options_timerange_label{
background-color: var(--theme-color-5);
}
#timepoint_options, #timerange_options{
opacity: 0;
z-index: -1;
}
#time_options_timepoint:checked~header>section>#timepoint_options, #time_options_timerange:checked~header>section>#timerange_options{
opacity: 1;
z-index: 1;
}
/*
timepoint
*/
#timepoint_options{
grid-column: 1 / span 2;
grid-row: 5 / span 1;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr;
gap: 5px;
}
#timepoint_format_png:checked~#timepoint_format_png_label, #timepoint_format_jpg:checked~#timepoint_format_jpg_label{
background-color: var(--theme-color-5);
}
#timepoint_datetime{
grid-column: 1 / span 2;
grid-row: 2 / span 1;
}
#timepoint_options>button{
grid-column: 1 / span 2;
grid-row: 3 / span 1;
}
#display_timepoint{
display: none;
}
/*
timerange
*/
#timerange_options{
grid-column: 1 / span 2;
grid-row: 5 / span 1;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr;
gap: 5px;
}
#timerange_format_mp4:checked~#timerange_format_mp4_label{
background-color: var(--theme-color-5);
}
#timepoint_datetime_start{
grid-row: 2 / span 1;
}
#timepoint_datetime_end{
grid-row: 3 / span 1;
}
#timerange_options>button{
grid-row: 4 / span 1;
}
#display_timerange{
display: none;
}
#time_options_timepoint:checked~main>#display_timepoint, #time_options_timerange:checked~main>#display_timerange{
display: block;
margin-left: auto;
margin-right: auto;
max-height: 100%;
max-width: 100%;
}
/*
loader
*/
main{
position: relative;
}
#display_loader{
position: absolute;
display: block;
top: 50%;
left: 50%;
width: 100px;
height: 100px;
transform: translate(-50%, -50%);
z-index: 2;
opacity: 0;
border-top: 10px solid var(--theme-color-5);
border-left: 10px solid var(--text-color-1);
border-bottom: 10px solid var(--text-color-1);
border-right: 10px solid var(--text-color-1);
border-radius: 50%;
animation: spin 1.5s infinite;
}
@keyframes spin {
0% { transform: translate(-50%, -50%) rotate(0deg); }
100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/*
save
*/
header>form{
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
gap: 5px;
margin: 0;
}
/*
popup
*/
#data_downloaded{
display: none;
}
#popup{
display: none;
z-index: 3;
}
#popup_background_mask{
display: none;
}
#data_downloaded:not(:checked)~#popup{
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background-color: var(--theme-color-1);
border-radius: 5px;
padding: 5px;
border: 2px solid var(--theme-color-5);
display: grid;
gap: 5px;
}
#data_downloaded:not(:checked)~#popup_background_mask{
display: block;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #000000AA;
z-index: 2;
} | 0.530966 | 0.179351 |
html {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}
body {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}
@font-face{
font-family: 'Avenir Next';
src: url('Avenir Next.ttc');
}
@font-face{
font-family: 'Avenir';
src: url('Avenir.ttc');
}
.header {
width: 100%;
height: 435px;
background-color: #f1f1f2;
text-align: center;
padding-top: 5px;
}
.avatar {
padding-top: 25px;
width: 200px;
}
h1 {
font-family: 'Avenir Next';
font-size: 30pt;
font-weight: bolder;
margin-bottom: 0;
line-height: 40px;
}
h2 {
font-family: 'Avenir Next';
font-size: 20pt;
margin-top: 0;
}
h2 > a {
color: black;
text-decoration: none;
transition: ease .777s;
}
h3 {
color: black;
font-size: 15pt;
letter-spacing: 5px;
text-align: center;
font-family: 'Avenir Next';
font-weight: 400;
}
a {
color: #cc0000;
}
a:hover {
color: gray;
}
iframe {
margin-top: 15px;
margin-bottom: 15px;
max-width: 90%;
}
.about {
width:100%;
height: 77px;
background-color: #e6e7e8;
padding-top: 15px;
box-shadow: 0px -2px 8px rgba(0,0,0,.15);
}
.aboutcontent {
width: 100%;
height:auto;
background-color: white;
margin: 0 0 0 0;
display: none;
}
.social {
width: 550px;
margin-right: auto;
margin-left: auto;
margin-bottom: 30px;
vertical-align: center;
}
.social .icons {
width: 45px;
background-color: white;
transition: background-color .5s;
margin-right: 10px;
}
.social .icons:hover{
background: #cc0000;
transition: background-color .5s;
}
.cite .social {
padding-top: 23px;
margin-bottom: 0;
}
.cite .social .icons {
width: 45px;
background-color: black;
transition: background-color .5s;
margin-right: 10px;
}
.cite .social .icons:hover{
background: #cc0000;
transition: background-color .5s;
}
.info {
width: 600px;
font-family: 'Avenir';
font-weight: 400;
text-align: justify;
font-size: 14pt;
line-height: 30px;
}
.branding {
width:100%;
height: 77px;
background-color: #d1d2d4;
padding-top: 15px;
box-shadow: 0px -2px 8px rgba(0,0,0,.15);
}
.brandingcontent {
width: 100%;
height:auto;
background-color: white;
margin: 0 0 0 0;
overflow: auto;
display: none;
}
.brandimg1 {
width: 180px;
height: 180px;
float:left;
margin-bottom: 20px;
background-image: url(images/brandimg-01.png);
background-size: contain;
}
.brandimg2 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/brandimg-02.png);
background-size: contain;
}
.brandimg3 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/brandimg-03.png);
background-size: contain;
}
.brandimg4 {
width: 180px;
height: 180px;
float:left;
margin-bottom: 20px;
background-image: url(images/brandimg-04.png);
background-size: contain;
}
.brandimg5 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/brandimg-05.png);
background-size: contain;
}
.brandimg6 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/brandimg-06.png);
background-size: contain;
}
.illustration {
width:100%;
height: 77px;
background-color: #bbbdc0;
padding-top: 15px;
box-shadow: 0px -2px 8px rgba(0,0,0,.15);
}
.illustrationcontent {
width: 100%;
height:auto;
background-color: white;
margin: 0 0 0 0;
overflow: auto;
display: none;
}
.illimg1 {
width: 180px;
height: 180px;
float:left;
margin-bottom: 20px;
background-image: url(images/illimg-01.png);
background-size: contain;
}
.illimg2 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/illimg-02.png);
background-size: contain;
}
.illimg3 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/illimg-03.png);
background-size: contain;
}
.illimg4 {
width: 180px;
height: 180px;
float:left;
margin-bottom: 20px;
background-image: url(images/illimg-04.png);
background-size: contain;
}
.illimg5 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/illimg-05.png);
background-size: contain;
}
.illimg6 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/illimg-06.png);
background-size: contain;
}
.photography {
width:100%;
height: 77px;
background-color: #a7a9ab;
padding-top: 15px;
box-shadow: 0px -2px 8px rgba(0,0,0,.15);
}
.photographycontent {
width: 100%;
height:auto;
background-color: white;
margin: 0 0 0 0;
overflow: auto;
display: none;
}
.photoimg1 {
width: 180px;
height: 180px;
float:left;
margin-bottom: 20px;
background-image: url(images/photoimg-01.png);
background-size: contain;
}
.photoimg2 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/photoimg-02.png);
background-size: contain;
}
.photoimg3 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/photoimg-03.png);
background-size: contain;
}
.photoimg4 {
width: 180px;
height: 180px;
float:left;
margin-bottom: 20px;
background-image: url(images/photoimg-04.png);
background-size: contain;
}
.photoimg5 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/photoimg-05.png);
background-size: contain;
}
.photoimg6 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/photoimg-06.png);
background-size: contain;
}
.writing {
width:100%;
height: 77px;
background-color: #939597;
padding-top: 15px;
box-shadow: 0px -2px 8px rgba(0,0,0,.15);
}
.writingcontent {
width: 100%;
height:auto;
background-color: white;
margin: 0 0 0 0;
display: none;
}
.misc {
width:100%;
height: 77px;
background-color: #828282;
padding-top: 15px;
box-shadow: 0px -2px 8px rgba(0,0,0,.15);
}
.misccontent {
width: 100%;
height:auto;
background-color: white;
margin: 0 0 0 0;
display: none;
}
.shop {
width:100%;
height: 77px;
background-color: #6d6d6d;
padding-top: 15px;
box-shadow: 0px -2px 8px rgba(0,0,0,.15);
}
.shopcontent {
width: 100%;
height:auto;
background-color: white;
margin: 0 0 0 0;
display: none;
}
.cite {
width:auto;
height: 100px;
background-color: black;
text-align: center;
}
@media screen and (max-width: 650px) {
.info {
width: 500px;
}
.brandimg1, .brandimg2, .brandimg3, .brandimg4, .brandimg5, .brandimg6,
.illimg1, .illimg2, .illimg3, .illimg4, .illimg5, .illimg6,
.photoimg1, .photoimg2, .photoimg3, .photoimg4, .photoimg5, .photoimg6 {
width: 150px;
height: 150px;
}
.social {
width: 400px;
}
}
@media screen and (max-width: 550px) {
.info {
width: 400px;
}
.brandimg1, .brandimg2, .brandimg3, .brandimg4, .brandimg5, .brandimg6,
.illimg1, .illimg2, .illimg3, .illimg4, .illimg5, .illimg6,
.photoimg1, .photoimg2, .photoimg3, .photoimg4, .photoimg5, .photoimg6 {
width: 120px;
height: 120px;
}
}
@media screen and (max-width: 450px) {
.info {
width: 350px;
}
.brandimg1, .brandimg2, .brandimg3, .brandimg4, .brandimg5, .brandimg6,
.illimg1, .illimg2, .illimg3, .illimg4, .illimg5, .illimg6,
.photoimg1, .photoimg2, .photoimg3, .photoimg4, .photoimg5, .photoimg6 {
width: 105px;
height: 105px;
margin-left: 10px;
}
.social {
width: 200px;
}
.cite .social .icons {
margin-top: 10px;
}
.cite {
height: 155;
}
}
@media screen and (max-width: 375px) {
.info {
width: 300px;
font-size: 13pt;
text-align: left;
line-height: normal;
}
.brandimg1, .brandimg2, .brandimg3, .brandimg4, .brandimg5, .brandimg6,
.illimg1, .illimg2, .illimg3, .illimg4, .illimg5, .illimg6,
.photoimg1, .photoimg2, .photoimg3, .photoimg4, .photoimg5, .photoimg6 {
width: 133px;
height: 133px;
display: flex;
justify-content: space-between;
margin-top: 5px;
}
}
@media screen and (max-width: 325px) {
.info {
width: 250px;
font-size: 1em;
}
.brandimg1, .brandimg2, .brandimg3, .brandimg4, .brandimg5, .brandimg6,
.illimg1, .illimg2, .illimg3, .illimg4, .illimg5, .illimg6,
.photoimg1, .photoimg2, .photoimg3, .photoimg4, .photoimg5, .photoimg6 {
width: 115px;
height: 115px;
}
}
@media screen and (max-height: 1100px) {
html {
transform: scale(2.5);
transform-origin: 0 0;
}
} | index.css | html {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}
body {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}
@font-face{
font-family: 'Avenir Next';
src: url('Avenir Next.ttc');
}
@font-face{
font-family: 'Avenir';
src: url('Avenir.ttc');
}
.header {
width: 100%;
height: 435px;
background-color: #f1f1f2;
text-align: center;
padding-top: 5px;
}
.avatar {
padding-top: 25px;
width: 200px;
}
h1 {
font-family: 'Avenir Next';
font-size: 30pt;
font-weight: bolder;
margin-bottom: 0;
line-height: 40px;
}
h2 {
font-family: 'Avenir Next';
font-size: 20pt;
margin-top: 0;
}
h2 > a {
color: black;
text-decoration: none;
transition: ease .777s;
}
h3 {
color: black;
font-size: 15pt;
letter-spacing: 5px;
text-align: center;
font-family: 'Avenir Next';
font-weight: 400;
}
a {
color: #cc0000;
}
a:hover {
color: gray;
}
iframe {
margin-top: 15px;
margin-bottom: 15px;
max-width: 90%;
}
.about {
width:100%;
height: 77px;
background-color: #e6e7e8;
padding-top: 15px;
box-shadow: 0px -2px 8px rgba(0,0,0,.15);
}
.aboutcontent {
width: 100%;
height:auto;
background-color: white;
margin: 0 0 0 0;
display: none;
}
.social {
width: 550px;
margin-right: auto;
margin-left: auto;
margin-bottom: 30px;
vertical-align: center;
}
.social .icons {
width: 45px;
background-color: white;
transition: background-color .5s;
margin-right: 10px;
}
.social .icons:hover{
background: #cc0000;
transition: background-color .5s;
}
.cite .social {
padding-top: 23px;
margin-bottom: 0;
}
.cite .social .icons {
width: 45px;
background-color: black;
transition: background-color .5s;
margin-right: 10px;
}
.cite .social .icons:hover{
background: #cc0000;
transition: background-color .5s;
}
.info {
width: 600px;
font-family: 'Avenir';
font-weight: 400;
text-align: justify;
font-size: 14pt;
line-height: 30px;
}
.branding {
width:100%;
height: 77px;
background-color: #d1d2d4;
padding-top: 15px;
box-shadow: 0px -2px 8px rgba(0,0,0,.15);
}
.brandingcontent {
width: 100%;
height:auto;
background-color: white;
margin: 0 0 0 0;
overflow: auto;
display: none;
}
.brandimg1 {
width: 180px;
height: 180px;
float:left;
margin-bottom: 20px;
background-image: url(images/brandimg-01.png);
background-size: contain;
}
.brandimg2 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/brandimg-02.png);
background-size: contain;
}
.brandimg3 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/brandimg-03.png);
background-size: contain;
}
.brandimg4 {
width: 180px;
height: 180px;
float:left;
margin-bottom: 20px;
background-image: url(images/brandimg-04.png);
background-size: contain;
}
.brandimg5 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/brandimg-05.png);
background-size: contain;
}
.brandimg6 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/brandimg-06.png);
background-size: contain;
}
.illustration {
width:100%;
height: 77px;
background-color: #bbbdc0;
padding-top: 15px;
box-shadow: 0px -2px 8px rgba(0,0,0,.15);
}
.illustrationcontent {
width: 100%;
height:auto;
background-color: white;
margin: 0 0 0 0;
overflow: auto;
display: none;
}
.illimg1 {
width: 180px;
height: 180px;
float:left;
margin-bottom: 20px;
background-image: url(images/illimg-01.png);
background-size: contain;
}
.illimg2 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/illimg-02.png);
background-size: contain;
}
.illimg3 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/illimg-03.png);
background-size: contain;
}
.illimg4 {
width: 180px;
height: 180px;
float:left;
margin-bottom: 20px;
background-image: url(images/illimg-04.png);
background-size: contain;
}
.illimg5 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/illimg-05.png);
background-size: contain;
}
.illimg6 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/illimg-06.png);
background-size: contain;
}
.photography {
width:100%;
height: 77px;
background-color: #a7a9ab;
padding-top: 15px;
box-shadow: 0px -2px 8px rgba(0,0,0,.15);
}
.photographycontent {
width: 100%;
height:auto;
background-color: white;
margin: 0 0 0 0;
overflow: auto;
display: none;
}
.photoimg1 {
width: 180px;
height: 180px;
float:left;
margin-bottom: 20px;
background-image: url(images/photoimg-01.png);
background-size: contain;
}
.photoimg2 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/photoimg-02.png);
background-size: contain;
}
.photoimg3 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/photoimg-03.png);
background-size: contain;
}
.photoimg4 {
width: 180px;
height: 180px;
float:left;
margin-bottom: 20px;
background-image: url(images/photoimg-04.png);
background-size: contain;
}
.photoimg5 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/photoimg-05.png);
background-size: contain;
}
.photoimg6 {
width: 180px;
height: 180px;
float: left;
margin-left: 20px;
margin-bottom: 20px;
background-image: url(images/photoimg-06.png);
background-size: contain;
}
.writing {
width:100%;
height: 77px;
background-color: #939597;
padding-top: 15px;
box-shadow: 0px -2px 8px rgba(0,0,0,.15);
}
.writingcontent {
width: 100%;
height:auto;
background-color: white;
margin: 0 0 0 0;
display: none;
}
.misc {
width:100%;
height: 77px;
background-color: #828282;
padding-top: 15px;
box-shadow: 0px -2px 8px rgba(0,0,0,.15);
}
.misccontent {
width: 100%;
height:auto;
background-color: white;
margin: 0 0 0 0;
display: none;
}
.shop {
width:100%;
height: 77px;
background-color: #6d6d6d;
padding-top: 15px;
box-shadow: 0px -2px 8px rgba(0,0,0,.15);
}
.shopcontent {
width: 100%;
height:auto;
background-color: white;
margin: 0 0 0 0;
display: none;
}
.cite {
width:auto;
height: 100px;
background-color: black;
text-align: center;
}
@media screen and (max-width: 650px) {
.info {
width: 500px;
}
.brandimg1, .brandimg2, .brandimg3, .brandimg4, .brandimg5, .brandimg6,
.illimg1, .illimg2, .illimg3, .illimg4, .illimg5, .illimg6,
.photoimg1, .photoimg2, .photoimg3, .photoimg4, .photoimg5, .photoimg6 {
width: 150px;
height: 150px;
}
.social {
width: 400px;
}
}
@media screen and (max-width: 550px) {
.info {
width: 400px;
}
.brandimg1, .brandimg2, .brandimg3, .brandimg4, .brandimg5, .brandimg6,
.illimg1, .illimg2, .illimg3, .illimg4, .illimg5, .illimg6,
.photoimg1, .photoimg2, .photoimg3, .photoimg4, .photoimg5, .photoimg6 {
width: 120px;
height: 120px;
}
}
@media screen and (max-width: 450px) {
.info {
width: 350px;
}
.brandimg1, .brandimg2, .brandimg3, .brandimg4, .brandimg5, .brandimg6,
.illimg1, .illimg2, .illimg3, .illimg4, .illimg5, .illimg6,
.photoimg1, .photoimg2, .photoimg3, .photoimg4, .photoimg5, .photoimg6 {
width: 105px;
height: 105px;
margin-left: 10px;
}
.social {
width: 200px;
}
.cite .social .icons {
margin-top: 10px;
}
.cite {
height: 155;
}
}
@media screen and (max-width: 375px) {
.info {
width: 300px;
font-size: 13pt;
text-align: left;
line-height: normal;
}
.brandimg1, .brandimg2, .brandimg3, .brandimg4, .brandimg5, .brandimg6,
.illimg1, .illimg2, .illimg3, .illimg4, .illimg5, .illimg6,
.photoimg1, .photoimg2, .photoimg3, .photoimg4, .photoimg5, .photoimg6 {
width: 133px;
height: 133px;
display: flex;
justify-content: space-between;
margin-top: 5px;
}
}
@media screen and (max-width: 325px) {
.info {
width: 250px;
font-size: 1em;
}
.brandimg1, .brandimg2, .brandimg3, .brandimg4, .brandimg5, .brandimg6,
.illimg1, .illimg2, .illimg3, .illimg4, .illimg5, .illimg6,
.photoimg1, .photoimg2, .photoimg3, .photoimg4, .photoimg5, .photoimg6 {
width: 115px;
height: 115px;
}
}
@media screen and (max-height: 1100px) {
html {
transform: scale(2.5);
transform-origin: 0 0;
}
} | 0.352313 | 0.071041 |
body {
font-family: "Microsoft JhengHei";
min-width: 320px;
width: auto !important;
}
.calenderRed {
background: url(images/calender_1.png) no-repeat center;
background-size: cover;
text-align: center;
width: 100%;
height: 256px;
margin: 0 auto;
}
.calenderGreen {
background: url(images/calender_2.png) no-repeat center;
background-size: cover;
text-align: center;
width: 100%;
height: 256px;
margin: 0 auto;
}
.calenderList {
display: block;
}
.calenderContent {
padding-top: 55px;
}
.calenderTitle {
font-size: 28px;
font-weight: bold;
color: #fff;
}
.calenderDate {
padding: 5px;
padding-top: 30px;
font-size: 40px;
font-weight: bold;
}
.Red {
color:red;
}
.calenderSubtitle {
padding: 5px;
font-weight: bold;
font-size: 20px;
}
.red {
color: red;
}
/* header */
.headerlogo::after {
content: "";
background: url(images/solab.jpg) no-repeat center center/cover;
opacity: 0.2;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}
.headerlogo {
position: relative;
width: 65vw;
margin: 0 auto;
}
.hbanner
{
font-weight: bold;font-size:5.5vw;color:black;
}
.htitle{
text-align: left;
padding: 2.8vw 2.5vw 2.2vw 4.5vw;
font-size:2.4vw;
}
.hcontent{
line-height: 2;
text-align:left;
font-size: 2.6vw;
font-weight: bold;
padding: 0.2vw 2.5vw 4.2vw 4.5vw;
}
.hfooter
{
text-align: right;
font-size: 2vw;
}
/* Small devices (tablets, 991px and down) */
@media (max-width: 991px) {
.calenderRed {
width: 280px;
}
.calenderGreen {
width: 280px;
}
.calenderDate {
font-size: 44px;
}
.headerlogo {
position: relative;
width: 100%;
margin: 0 auto;
}
.hbanner
{
font-weight: bold;font-size:30px;color:black;
}
.htitle{
text-align: left;
padding: 2.8vw 2.5vw 2.2vw 4.5vw;
font-size:20px;
}
.hcontent{
line-height: 2;
text-align:left;
font-size: 18px;
font-weight: bold;
padding: 0.2vw 2.5vw 4.2vw 4.5vw;
}
.hfooter
{
text-align: right;
font-size: 16px;
}
}
/* Small devices (tablets, 991px and down) */
@media (max-width: 576px) {
.headerlogo {
position: relative;
width: 100%;
margin: 0 auto;
}
.hbanner
{
font-weight: bold;font-size:30px;color:black;
}
.htitle{
text-align: left;
padding: 2.8vw 2.5vw 2.2vw 4.5vw;
font-size:20px;
}
.hcontent{
line-height: 2;
text-align:left;
font-size: 18px;
font-weight: bold;
padding: 0.2vw 2.5vw 4.2vw 4.5vw;
}
.hfooter
{
text-align: right;
font-size: 16px;
}
} | stylesheets/style.css | body {
font-family: "Microsoft JhengHei";
min-width: 320px;
width: auto !important;
}
.calenderRed {
background: url(images/calender_1.png) no-repeat center;
background-size: cover;
text-align: center;
width: 100%;
height: 256px;
margin: 0 auto;
}
.calenderGreen {
background: url(images/calender_2.png) no-repeat center;
background-size: cover;
text-align: center;
width: 100%;
height: 256px;
margin: 0 auto;
}
.calenderList {
display: block;
}
.calenderContent {
padding-top: 55px;
}
.calenderTitle {
font-size: 28px;
font-weight: bold;
color: #fff;
}
.calenderDate {
padding: 5px;
padding-top: 30px;
font-size: 40px;
font-weight: bold;
}
.Red {
color:red;
}
.calenderSubtitle {
padding: 5px;
font-weight: bold;
font-size: 20px;
}
.red {
color: red;
}
/* header */
.headerlogo::after {
content: "";
background: url(images/solab.jpg) no-repeat center center/cover;
opacity: 0.2;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}
.headerlogo {
position: relative;
width: 65vw;
margin: 0 auto;
}
.hbanner
{
font-weight: bold;font-size:5.5vw;color:black;
}
.htitle{
text-align: left;
padding: 2.8vw 2.5vw 2.2vw 4.5vw;
font-size:2.4vw;
}
.hcontent{
line-height: 2;
text-align:left;
font-size: 2.6vw;
font-weight: bold;
padding: 0.2vw 2.5vw 4.2vw 4.5vw;
}
.hfooter
{
text-align: right;
font-size: 2vw;
}
/* Small devices (tablets, 991px and down) */
@media (max-width: 991px) {
.calenderRed {
width: 280px;
}
.calenderGreen {
width: 280px;
}
.calenderDate {
font-size: 44px;
}
.headerlogo {
position: relative;
width: 100%;
margin: 0 auto;
}
.hbanner
{
font-weight: bold;font-size:30px;color:black;
}
.htitle{
text-align: left;
padding: 2.8vw 2.5vw 2.2vw 4.5vw;
font-size:20px;
}
.hcontent{
line-height: 2;
text-align:left;
font-size: 18px;
font-weight: bold;
padding: 0.2vw 2.5vw 4.2vw 4.5vw;
}
.hfooter
{
text-align: right;
font-size: 16px;
}
}
/* Small devices (tablets, 991px and down) */
@media (max-width: 576px) {
.headerlogo {
position: relative;
width: 100%;
margin: 0 auto;
}
.hbanner
{
font-weight: bold;font-size:30px;color:black;
}
.htitle{
text-align: left;
padding: 2.8vw 2.5vw 2.2vw 4.5vw;
font-size:20px;
}
.hcontent{
line-height: 2;
text-align:left;
font-size: 18px;
font-weight: bold;
padding: 0.2vw 2.5vw 4.2vw 4.5vw;
}
.hfooter
{
text-align: right;
font-size: 16px;
}
} | 0.418222 | 0.206174 |
:root {
--height-header-top: 46px;
--height-header-bottom: 80px;
--primary-color: #3fd0d4;
--white-color: #fff;
--text-color: #212121;
--footer-color: #212121;
--color-text-footer: #a9a9a9;
}
/* reset css */
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
/* link font satisfy*/
html {
font-size: 62.5%;
line-height: 2.5rem;
font-family: "Poppins", sans-serif;
scroll-behavior: smooth;
}
::selection {
background-color: var(--primary-color);
}
:root {
--height-header-top: 46px;
--height-header-bottom: 80px;
--height-slider: 455px;
--heigth-tour-hightlight: 300px;
--primary-color: #3fd0d4;
--white-color: #fff;
--text-color: #212121;
--footer-color: #212121;
--color-text-footer: #a9a9a9;
--height-img-video: 480px;
--color-heading-big: #59d2efaa;
}
/* load page */
.load-wrap {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.9);
display: flex;
justify-content: center;
align-items: center;
z-index: 10000;
}
#load {
position: absolute;
width: 600px;
height: 36px;
left: 50%;
top: 40%;
margin-left: -300px;
overflow: visible;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
}
#load div {
font-size: 40px;
position: absolute;
width: 20px;
height: 36px;
opacity: 0;
font-family: Helvetica, Arial, sans-serif;
animation: move 2s linear infinite;
-o-animation: move 2s linear infinite;
-moz-animation: move 2s linear infinite;
-webkit-animation: move 2s linear infinite;
transform: rotate(180deg);
-o-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
color: #35c4f0;
}
#load div:nth-child(2) {
animation-delay: 0.2s;
-o-animation-delay: 0.2s;
-moz-animation-delay: 0.2s;
-webkit-animation-delay: 0.2s;
}
#load div:nth-child(3) {
animation-delay: 0.4s;
-o-animation-delay: 0.4s;
-webkit-animation-delay: 0.4s;
-webkit-animation-delay: 0.4s;
}
#load div:nth-child(4) {
animation-delay: 0.6s;
-o-animation-delay: 0.6s;
-moz-animation-delay: 0.6s;
-webkit-animation-delay: 0.6s;
}
#load div:nth-child(5) {
animation-delay: 0.8s;
-o-animation-delay: 0.8s;
-moz-animation-delay: 0.8s;
-webkit-animation-delay: 0.8s;
}
#load div:nth-child(6) {
animation-delay: 1s;
-o-animation-delay: 1s;
-moz-animation-delay: 1s;
-webkit-animation-delay: 1s;
}
#load div:nth-child(7) {
animation-delay: 1.2s;
-o-animation-delay: 1.2s;
-moz-animation-delay: 1.2s;
-webkit-animation-delay: 1.2s;
}
@keyframes move {
0% {
left: 0;
opacity: 0;
}
35% {
left: 41%;
-moz-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
65% {
left: 59%;
-moz-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
100% {
left: 100%;
-moz-transform: rotate(-180deg);
-webkit-transform: rotate(-180deg);
-o-transform: rotate(-180deg);
transform: rotate(-180deg);
opacity: 0;
}
}
@-moz-keyframes move {
0% {
left: 0;
opacity: 0;
}
35% {
left: 41%;
-moz-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
65% {
left: 59%;
-moz-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
100% {
left: 100%;
-moz-transform: rotate(-180deg);
transform: rotate(-180deg);
opacity: 0;
}
}
@-webkit-keyframes move {
0% {
left: 0;
opacity: 0;
}
35% {
left: 41%;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
65% {
left: 59%;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
100% {
left: 100%;
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
opacity: 0;
}
}
@-o-keyframes move {
0% {
left: 0;
opacity: 0;
}
35% {
left: 41%;
-o-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
65% {
left: 59%;
-o-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
100% {
left: 100%;
-o-transform: rotate(-180deg);
transform: rotate(-180deg);
opacity: 0;
}
}
#breadcumps .breadcrumb {
width: 100%;
border-radius: 2px;
height: auto;
margin-top: 10px;
}
#breadcumps .breadcrumb span {
font-size: 1.2rem;
font-weight: 400;
color: var(--text-color);
opacity: .8;
}
.modal-video,
.modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(12, 5, 5, 0.6);
justify-content: center;
align-items: center;
z-index: 100;
display: none;
}
.modal-video.open,
.modal.open {
display: flex;
}
.modal-container {
background-color: #3fd0d4;
width: 400px;
max-width: calc(100% - 32px);
min-height: 200px;
animation: modalFadeIn ease 0.4s;
transition: 0.3s;
}
/* video */
.form-header {
position: relative;
display: inline-block;
vertical-align: middle;
width: 100%;
margin: 0;
padding: 0;
display: flex;
}
.form-header .form-header__action {
display: inline-block;
padding: 10px;
padding: 15px 20px;
font-size: 13px;
font-weight: 700;
color: var(--white-color);
background-color: #39bdc1;
text-decoration: none;
width: 50%;
text-align: center;
text-transform: uppercase;
}
.form-header .form-header__action.active {
background-color: #3fd0d4;
}
.form-body {
color: var(--white-color);
padding: 20px 40px;
}
.form-body .form-title {
padding: 7px 0 8px;
margin: 0;
font-size: 20px;
font-weight: 600;
color: var(--white-color);
}
.form-body .form-descriotion {
display: block;
margin: 0 0 23px;
color: inherit;
font-size: 13px;
}
.form-body-login,
.form-body-register {
display: none;
}
.form-body-login.active,
.form-body-register.active {
display: block;
}
.form-body form {
display: flex;
flex-direction: column;
}
.form-body form input[type="password"],
.form-body form input[type="text"],
.form-body form input[type="email"] {
position: relative;
width: 100%;
margin: 0 0 6px;
padding: 12px 30px;
font-size: 14px;
font-weight: 400;
line-height: calc(50px - 12px * 2);
color: var(--white-color);
background-color: #f8f8f8;
background-color: rgba(255, 255, 255, 0.25);
border: 0;
border-radius: 0;
outline: 0;
cursor: auto;
-webkit-appearance: none;
box-sizing: border-box;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.form-body form input+label {
position: relative;
}
.form-body form input[type="email"]+label::before,
.form-body form input[type="text"]+label::before {
content: "\f2bd";
position: absolute;
font-size: 14px;
top: -30px;
left: 10px;
transform: translateY(-50%);
font-family: "Font Awesome 5 Free";
font-weight: 600;
color: var(--white-color);
}
.form-body form input.email+label::before {
content: "\f0e0";
}
.form-body form input[type="password"]+label::before {
content: "\f084";
position: absolute;
font-size: 12px;
top: -30px;
left: 10px;
transform: translateY(-50%);
font-family: "Font Awesome 5 Free";
font-weight: 600;
color: var(--white-color);
}
.form-body form input:focus {
box-shadow: 0 0 10px rgba(197, 206, 76, 0.1);
}
.remember-me {
font-size: 13px;
font-weight: 500;
margin-top: 20px;
display: flex;
align-items: center;
}
.remember-me input {
font-size: 13px;
margin-right: 10px;
margin-top: 4px;
order: 1;
}
.remember-me input[type="radio"] {
font-size: 15px;
}
.remember-me label {
order: 2;
}
.form-btn .forgot-password {
position: relative;
display: block;
font-size: 14px;
margin: 3px 0 0;
color: #26878a;
-webkit-transition: color 0.2s ease-out;
-moz-transition: color 0.2s ease-out;
transition: color 0.2s ease-out;
user-select: none;
}
.form-btn .forgot-password:hover {
color: #333;
}
.form-btn button {
position: relative;
display: inline-block;
vertical-align: middle;
width: auto;
margin: 0;
font-size: 13px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
outline: 0;
box-sizing: border-box;
transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
padding: 14px 42px;
cursor: pointer;
border: 0;
appearance: none;
margin-top: 20px;
width: 100%;
background-color: var(--white-color);
}
.form-btn button:hover {
color: #fff;
background-color: #26878a;
}
.form-login-social .form-descriotion {
margin-top: 20px;
font-size: 16px;
text-align: center;
}
.google-facebook {
width: 100%;
position: relative;
display: flex;
text-align: center;
}
.google-facebook a,
.google-facebook button {
appearance: none;
border: none;
width: 50%;
padding: 15px;
font-size: 13px;
text-transform: uppercase;
font-weight: 600;
color: var(--white-color);
cursor: pointer;
text-decoration: none;
}
.google-facebook a:hover,
.google-facebook button:hover {
opacity: 0.8;
}
.google-facebook a i,
.google-facebook button i {
padding-right: 10px;
}
.google-facebook .facebook {
background-color: #0c8bf0;
margin-right: 10px;
}
.google-facebook .google {
background-color: #dd4b39;
}
@keyframes modalFadeIn {
from {
transform: translateY(-250px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
/* //// */
.title .text-dark-color {
color: #505050;
}
.header-no-cart {
position: absolute;
right: 0;
top: 52px;
height: 0;
width: 250px;
display: flex;
background-color: var(--white-color);
box-shadow: -4px 2px 6px rgba(0, 0, 0, 0.1);
transition: height ease-in 0.3s;
will-change: height;
}
.header-cart__content {
margin: auto;
display: none;
opacity: 0;
}
.header-no-cart::before {
content: "";
height: 32px;
width: 30px;
position: absolute;
right: 0;
top: -30px;
z-index: 10;
}
.cart-wrap:hover .header-no-cart {
height: 80px;
}
.cart-wrap:hover .header-cart__content {
display: block;
opacity: 1;
}
.modal_overlay {
width: 100%;
height: 100vh;
position: fixed;
background-color: #42b5b9;
opacity: 0.6;
display: none;
left: 0;
top: 0;
bottom: 100px;
transition: all 0.3s;
z-index: 1000;
}
#search-check-input-btn:checked~.modal_overlay {
display: block;
}
#search-check-input-btn:checked~.form-search {
display: block;
}
/* footer */
#footer {
width: 100%;
height: auto;
background-color: var(--footer-color);
}
.text-description {
font-size: 1.7rem;
line-height: 2.6rem;
font-weight: 400;
color: var(--color-text-footer);
margin-bottom: 17px;
}
.footer__title {
font-size: 1.8rem;
font-weight: 26px;
color: var(--white-color);
margin: 0 0 23px;
}
.text-p-medium {
font-size: 1.4rem;
line-height: 26px;
color: var(--color-text-footer);
transition: color ease 0.3s;
}
.text-p-medium:hover {
color: var(--primary-color);
}
/* footer form */
.footer-form__input[type="text"] {
font-size: 1.4rem;
line-height: 2.6rem;
padding: 10px 20px 10px 40px;
width: 100%;
outline: none;
border: none;
background-color: #595959;
appearance: none;
text-align: none;
color: var(--white-color);
margin-bottom: 10px;
position: relative;
}
::placeholder {
color: var(--white-color);
font-weight: 400;
}
.btn {
outline: none;
border: none;
appearance: none;
text-decoration: none;
}
.footer-form__input {
padding: 14px 42px;
background-color: var(--primary-color);
width: 100%;
}
.footer-form__input[type="submit"]:hover {
background-color: var(--white-color);
color: var(--primary-color);
cursor: pointer;
}
.footer-form__input[type="submit"] {
font-size: 1.2rem;
line-height: 26px;
color: var(--white-color);
text-transform: uppercase;
font-weight: 600;
letter-spacing: 2px;
}
/*slider*/
.banner-content {
text-align: center;
user-select: none;
-webkit-user-select: none;
color: var(--white-color);
display: flex;
flex-direction: column;
align-items: center;
}
.banner-content .banner-heading__medium {
font-weight: 400;
transform-origin: 50% 50%;
white-space: nowrap;
font-family: "Satisfy", cursive;
font-size: 3.3rem;
text-shadow: 1px 2px #3a303099;
}
.banner-content .banner-heading__big {
font-size: 6.5rem;
font-weight: 600;
text-decoration: none;
white-space: nowrap;
letter-spacing: -5px;
line-height: 80px;
margin: 10px 0;
color: --color-heading-big;
text-shadow: 2px 3px #205f61;
}
.banner-content .banner-text-small {
display: block;
font-size: 1.7rem;
line-height: 28px;
margin-top: 20px;
max-width: 660px;
text-align: center;
margin-top: 0;
}
/* title */
.title {
width: 100%;
height: auto;
}
.banner-heading--color {
color: var(--primary-color);
}
/*stamp */
.stamp-photo--horizontal .stamp-photo__link img {
height: 132px;
width: 179px;
}
.stamp-photo--horizontal .stamp-photo-info {
top: 90px;
left: -60px;
}
@keyframes cloudeffect {
0% {
background-position: 0px;
}
100% {
background-position: -5440px;
}
}
@keyframes cloudeffectplans {
0% {
background-position: 0px;
}
100% {
background-position: 5440px;
}
}
@-webkit-keyframes zoom {
from {
-webkit-transform: scale(0);
}
to {
-webkit-transform: scale(1);
}
}
@keyframes zoom {
from {
transform: scale(0);
}
to {
transform: scale(1);
}
}
@keyframes animate {
0% {
background-position: 0 0;
}
100% {
background-position: 50px 50px;
transform: scaleX(1);
}
}
@keyframes showText {
100% {
opacity: 1;
}
/* vc */
}
@keyframes showText2 {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
/* vc */
} | public/frontend/css/base.css | :root {
--height-header-top: 46px;
--height-header-bottom: 80px;
--primary-color: #3fd0d4;
--white-color: #fff;
--text-color: #212121;
--footer-color: #212121;
--color-text-footer: #a9a9a9;
}
/* reset css */
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
/* link font satisfy*/
html {
font-size: 62.5%;
line-height: 2.5rem;
font-family: "Poppins", sans-serif;
scroll-behavior: smooth;
}
::selection {
background-color: var(--primary-color);
}
:root {
--height-header-top: 46px;
--height-header-bottom: 80px;
--height-slider: 455px;
--heigth-tour-hightlight: 300px;
--primary-color: #3fd0d4;
--white-color: #fff;
--text-color: #212121;
--footer-color: #212121;
--color-text-footer: #a9a9a9;
--height-img-video: 480px;
--color-heading-big: #59d2efaa;
}
/* load page */
.load-wrap {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.9);
display: flex;
justify-content: center;
align-items: center;
z-index: 10000;
}
#load {
position: absolute;
width: 600px;
height: 36px;
left: 50%;
top: 40%;
margin-left: -300px;
overflow: visible;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
}
#load div {
font-size: 40px;
position: absolute;
width: 20px;
height: 36px;
opacity: 0;
font-family: Helvetica, Arial, sans-serif;
animation: move 2s linear infinite;
-o-animation: move 2s linear infinite;
-moz-animation: move 2s linear infinite;
-webkit-animation: move 2s linear infinite;
transform: rotate(180deg);
-o-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
color: #35c4f0;
}
#load div:nth-child(2) {
animation-delay: 0.2s;
-o-animation-delay: 0.2s;
-moz-animation-delay: 0.2s;
-webkit-animation-delay: 0.2s;
}
#load div:nth-child(3) {
animation-delay: 0.4s;
-o-animation-delay: 0.4s;
-webkit-animation-delay: 0.4s;
-webkit-animation-delay: 0.4s;
}
#load div:nth-child(4) {
animation-delay: 0.6s;
-o-animation-delay: 0.6s;
-moz-animation-delay: 0.6s;
-webkit-animation-delay: 0.6s;
}
#load div:nth-child(5) {
animation-delay: 0.8s;
-o-animation-delay: 0.8s;
-moz-animation-delay: 0.8s;
-webkit-animation-delay: 0.8s;
}
#load div:nth-child(6) {
animation-delay: 1s;
-o-animation-delay: 1s;
-moz-animation-delay: 1s;
-webkit-animation-delay: 1s;
}
#load div:nth-child(7) {
animation-delay: 1.2s;
-o-animation-delay: 1.2s;
-moz-animation-delay: 1.2s;
-webkit-animation-delay: 1.2s;
}
@keyframes move {
0% {
left: 0;
opacity: 0;
}
35% {
left: 41%;
-moz-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
65% {
left: 59%;
-moz-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
100% {
left: 100%;
-moz-transform: rotate(-180deg);
-webkit-transform: rotate(-180deg);
-o-transform: rotate(-180deg);
transform: rotate(-180deg);
opacity: 0;
}
}
@-moz-keyframes move {
0% {
left: 0;
opacity: 0;
}
35% {
left: 41%;
-moz-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
65% {
left: 59%;
-moz-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
100% {
left: 100%;
-moz-transform: rotate(-180deg);
transform: rotate(-180deg);
opacity: 0;
}
}
@-webkit-keyframes move {
0% {
left: 0;
opacity: 0;
}
35% {
left: 41%;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
65% {
left: 59%;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
100% {
left: 100%;
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
opacity: 0;
}
}
@-o-keyframes move {
0% {
left: 0;
opacity: 0;
}
35% {
left: 41%;
-o-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
65% {
left: 59%;
-o-transform: rotate(0deg);
transform: rotate(0deg);
opacity: 1;
}
100% {
left: 100%;
-o-transform: rotate(-180deg);
transform: rotate(-180deg);
opacity: 0;
}
}
#breadcumps .breadcrumb {
width: 100%;
border-radius: 2px;
height: auto;
margin-top: 10px;
}
#breadcumps .breadcrumb span {
font-size: 1.2rem;
font-weight: 400;
color: var(--text-color);
opacity: .8;
}
.modal-video,
.modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(12, 5, 5, 0.6);
justify-content: center;
align-items: center;
z-index: 100;
display: none;
}
.modal-video.open,
.modal.open {
display: flex;
}
.modal-container {
background-color: #3fd0d4;
width: 400px;
max-width: calc(100% - 32px);
min-height: 200px;
animation: modalFadeIn ease 0.4s;
transition: 0.3s;
}
/* video */
.form-header {
position: relative;
display: inline-block;
vertical-align: middle;
width: 100%;
margin: 0;
padding: 0;
display: flex;
}
.form-header .form-header__action {
display: inline-block;
padding: 10px;
padding: 15px 20px;
font-size: 13px;
font-weight: 700;
color: var(--white-color);
background-color: #39bdc1;
text-decoration: none;
width: 50%;
text-align: center;
text-transform: uppercase;
}
.form-header .form-header__action.active {
background-color: #3fd0d4;
}
.form-body {
color: var(--white-color);
padding: 20px 40px;
}
.form-body .form-title {
padding: 7px 0 8px;
margin: 0;
font-size: 20px;
font-weight: 600;
color: var(--white-color);
}
.form-body .form-descriotion {
display: block;
margin: 0 0 23px;
color: inherit;
font-size: 13px;
}
.form-body-login,
.form-body-register {
display: none;
}
.form-body-login.active,
.form-body-register.active {
display: block;
}
.form-body form {
display: flex;
flex-direction: column;
}
.form-body form input[type="password"],
.form-body form input[type="text"],
.form-body form input[type="email"] {
position: relative;
width: 100%;
margin: 0 0 6px;
padding: 12px 30px;
font-size: 14px;
font-weight: 400;
line-height: calc(50px - 12px * 2);
color: var(--white-color);
background-color: #f8f8f8;
background-color: rgba(255, 255, 255, 0.25);
border: 0;
border-radius: 0;
outline: 0;
cursor: auto;
-webkit-appearance: none;
box-sizing: border-box;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.form-body form input+label {
position: relative;
}
.form-body form input[type="email"]+label::before,
.form-body form input[type="text"]+label::before {
content: "\f2bd";
position: absolute;
font-size: 14px;
top: -30px;
left: 10px;
transform: translateY(-50%);
font-family: "Font Awesome 5 Free";
font-weight: 600;
color: var(--white-color);
}
.form-body form input.email+label::before {
content: "\f0e0";
}
.form-body form input[type="password"]+label::before {
content: "\f084";
position: absolute;
font-size: 12px;
top: -30px;
left: 10px;
transform: translateY(-50%);
font-family: "Font Awesome 5 Free";
font-weight: 600;
color: var(--white-color);
}
.form-body form input:focus {
box-shadow: 0 0 10px rgba(197, 206, 76, 0.1);
}
.remember-me {
font-size: 13px;
font-weight: 500;
margin-top: 20px;
display: flex;
align-items: center;
}
.remember-me input {
font-size: 13px;
margin-right: 10px;
margin-top: 4px;
order: 1;
}
.remember-me input[type="radio"] {
font-size: 15px;
}
.remember-me label {
order: 2;
}
.form-btn .forgot-password {
position: relative;
display: block;
font-size: 14px;
margin: 3px 0 0;
color: #26878a;
-webkit-transition: color 0.2s ease-out;
-moz-transition: color 0.2s ease-out;
transition: color 0.2s ease-out;
user-select: none;
}
.form-btn .forgot-password:hover {
color: #333;
}
.form-btn button {
position: relative;
display: inline-block;
vertical-align: middle;
width: auto;
margin: 0;
font-size: 13px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
outline: 0;
box-sizing: border-box;
transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
padding: 14px 42px;
cursor: pointer;
border: 0;
appearance: none;
margin-top: 20px;
width: 100%;
background-color: var(--white-color);
}
.form-btn button:hover {
color: #fff;
background-color: #26878a;
}
.form-login-social .form-descriotion {
margin-top: 20px;
font-size: 16px;
text-align: center;
}
.google-facebook {
width: 100%;
position: relative;
display: flex;
text-align: center;
}
.google-facebook a,
.google-facebook button {
appearance: none;
border: none;
width: 50%;
padding: 15px;
font-size: 13px;
text-transform: uppercase;
font-weight: 600;
color: var(--white-color);
cursor: pointer;
text-decoration: none;
}
.google-facebook a:hover,
.google-facebook button:hover {
opacity: 0.8;
}
.google-facebook a i,
.google-facebook button i {
padding-right: 10px;
}
.google-facebook .facebook {
background-color: #0c8bf0;
margin-right: 10px;
}
.google-facebook .google {
background-color: #dd4b39;
}
@keyframes modalFadeIn {
from {
transform: translateY(-250px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
/* //// */
.title .text-dark-color {
color: #505050;
}
.header-no-cart {
position: absolute;
right: 0;
top: 52px;
height: 0;
width: 250px;
display: flex;
background-color: var(--white-color);
box-shadow: -4px 2px 6px rgba(0, 0, 0, 0.1);
transition: height ease-in 0.3s;
will-change: height;
}
.header-cart__content {
margin: auto;
display: none;
opacity: 0;
}
.header-no-cart::before {
content: "";
height: 32px;
width: 30px;
position: absolute;
right: 0;
top: -30px;
z-index: 10;
}
.cart-wrap:hover .header-no-cart {
height: 80px;
}
.cart-wrap:hover .header-cart__content {
display: block;
opacity: 1;
}
.modal_overlay {
width: 100%;
height: 100vh;
position: fixed;
background-color: #42b5b9;
opacity: 0.6;
display: none;
left: 0;
top: 0;
bottom: 100px;
transition: all 0.3s;
z-index: 1000;
}
#search-check-input-btn:checked~.modal_overlay {
display: block;
}
#search-check-input-btn:checked~.form-search {
display: block;
}
/* footer */
#footer {
width: 100%;
height: auto;
background-color: var(--footer-color);
}
.text-description {
font-size: 1.7rem;
line-height: 2.6rem;
font-weight: 400;
color: var(--color-text-footer);
margin-bottom: 17px;
}
.footer__title {
font-size: 1.8rem;
font-weight: 26px;
color: var(--white-color);
margin: 0 0 23px;
}
.text-p-medium {
font-size: 1.4rem;
line-height: 26px;
color: var(--color-text-footer);
transition: color ease 0.3s;
}
.text-p-medium:hover {
color: var(--primary-color);
}
/* footer form */
.footer-form__input[type="text"] {
font-size: 1.4rem;
line-height: 2.6rem;
padding: 10px 20px 10px 40px;
width: 100%;
outline: none;
border: none;
background-color: #595959;
appearance: none;
text-align: none;
color: var(--white-color);
margin-bottom: 10px;
position: relative;
}
::placeholder {
color: var(--white-color);
font-weight: 400;
}
.btn {
outline: none;
border: none;
appearance: none;
text-decoration: none;
}
.footer-form__input {
padding: 14px 42px;
background-color: var(--primary-color);
width: 100%;
}
.footer-form__input[type="submit"]:hover {
background-color: var(--white-color);
color: var(--primary-color);
cursor: pointer;
}
.footer-form__input[type="submit"] {
font-size: 1.2rem;
line-height: 26px;
color: var(--white-color);
text-transform: uppercase;
font-weight: 600;
letter-spacing: 2px;
}
/*slider*/
.banner-content {
text-align: center;
user-select: none;
-webkit-user-select: none;
color: var(--white-color);
display: flex;
flex-direction: column;
align-items: center;
}
.banner-content .banner-heading__medium {
font-weight: 400;
transform-origin: 50% 50%;
white-space: nowrap;
font-family: "Satisfy", cursive;
font-size: 3.3rem;
text-shadow: 1px 2px #3a303099;
}
.banner-content .banner-heading__big {
font-size: 6.5rem;
font-weight: 600;
text-decoration: none;
white-space: nowrap;
letter-spacing: -5px;
line-height: 80px;
margin: 10px 0;
color: --color-heading-big;
text-shadow: 2px 3px #205f61;
}
.banner-content .banner-text-small {
display: block;
font-size: 1.7rem;
line-height: 28px;
margin-top: 20px;
max-width: 660px;
text-align: center;
margin-top: 0;
}
/* title */
.title {
width: 100%;
height: auto;
}
.banner-heading--color {
color: var(--primary-color);
}
/*stamp */
.stamp-photo--horizontal .stamp-photo__link img {
height: 132px;
width: 179px;
}
.stamp-photo--horizontal .stamp-photo-info {
top: 90px;
left: -60px;
}
@keyframes cloudeffect {
0% {
background-position: 0px;
}
100% {
background-position: -5440px;
}
}
@keyframes cloudeffectplans {
0% {
background-position: 0px;
}
100% {
background-position: 5440px;
}
}
@-webkit-keyframes zoom {
from {
-webkit-transform: scale(0);
}
to {
-webkit-transform: scale(1);
}
}
@keyframes zoom {
from {
transform: scale(0);
}
to {
transform: scale(1);
}
}
@keyframes animate {
0% {
background-position: 0 0;
}
100% {
background-position: 50px 50px;
transform: scaleX(1);
}
}
@keyframes showText {
100% {
opacity: 1;
}
/* vc */
}
@keyframes showText2 {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
/* vc */
} | 0.550124 | 0.104477 |
body {
font-family: 'Open Sans', sans-serif;
margin: 0;
}
.conteiner{
width: 100%;
max-width: 1173px;
margin-left: auto;
margin-right: auto;
}
.menu {
margin-top: 18px;
display: flex;
justify-content: space-between;
align-items:center;
}
.name {
display: block;
font-size: 16px;
font-weight: 800;
}
.description {
margin-left: 9px;
}
.menu-logo {
display: flex;
align-items: center;
}
.avatar {
cursor: pointer;
width: 57px;
height: 57px;
background: url('https://pp.userapi.com/c852128/v852128756/5786a/Yjte8MgpflY.jpg?ava=1');
background-size: 100%;
border-radius: 50%;
}
.menu-list {
display: flex;
align-items: center;
}
.menu-list a {
text-decoration: none;
color: #2b2a2c;
text-transform: uppercase;
font-weight: 800;
margin-right: 34px;
}
.menu-button {
cursor: pointer;
text-transform: uppercase;
border: 2px solid #2b2a2c;
font-size: 14px;
font-weight: 800;
border-radius: 50px;
background-color: transparent;
padding: 13px 22px;
transition: 3s;
}
.menu-button:hover {
background-color: #2b2a2c;
color: white;
border: 2px solid #2b2a2c;
transition: 3s;
}
.menu-header {
display: inline-block;
color: #2b2a2c;
line-height: 1;
text-decoration:none;
cursor: pointer;
position:relative;
}
.menu-header:after {
background-color: #2b2a2c;
display: block;
content: "";
height: 2px;
width: 0%;
left:50%;
position:absolute;
-webkit-transition: width .3s ease-in-out;
-moz--transition: width .3s ease-in-out;
transition: width .3s ease-in-out;
-webkit-transform:translateX(-50%);
-moz-transform:translateX(-50%);
transform:translateX(-50%);
transition: 1s;
}
.menu-header:hover:after,
.menu-header:focus:after {
width: 100%;
}
.hero{
padding-top: 112px;
padding-bottom: 112px;
background: url("https://wmpics.pics/di-TXTGB09B.png") no-repeat right bottom;
}
.hero-subtitle {
font-size: 32px;
}
.hero-title {
font-size: 45px;
font-weight: 800;
margin-top: 5px;
margin-bottom: 5px;
}
.hero-description {
font-size: 18px;
color: #6a696b;
}
.hero-social {
margin-top:30px;
}
.social {
display: inline-block;
width: 41px;
height: 41px;
margin-right: 12px;
color: #fff;
text-align: center;
line-height: 41px;
}
.behance-bg {
background-color: #1869ff;
}
.facebook-bg {
background-color: #3a5898;
}
.instagram-bg {
background-color: #13578a;
}
.vk-bg {
background-color: #56acef;
}
.hero-buttons {
margin-top: 40px;
}
.button {
display: inline-block;
font-size: 16px;
font-weight: 800;
text-decoration:none;
border-radius: 50px;
background-color: #2b2a2c;
padding: 20px 34px;
}
.button-primary {
color: #fff;
transition: 3s;
box-shadow: 5px 4px 10px #2b2a2c;
margin-right: 18px;
margin-bottom: 10px;
}
.button-primary:hover {
color: #2b2a2c;
background-color: transparent;
border: 1px solid #6a696b;
transition: 3s;
box-shadow: 5px 4px 10px #ffff;
}
.button-o {
color: #6a696b;
background-color: transparent;
border: 1px solid #6a696b;
transition: 3s;
}
.button-o:hover {
color: white;
background-color: #6a696b;
border: 1px solid #6a696b;
transition: 3s;
}
.project {
padding: 97px 0;
}
.project-cards {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.project-card {
min-height: 370px;
width: 370px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
margin-bottom: 50px;
}
.project-card-image {
height: 300px;
}
.lendig-image {
background: url('http://depsite.ru/site/data/images/medium/xvr4.jpg') center no-repeat;
background-size: cover;
}
.lendig-image1 {
background: url('https://www.imedia.by/upload/iblock/e6d/1.png') center no-repeat;
background-size: cover;
}
.lendig-image2 {
background: url('https://richpro.ru/wp-content/uploads/2016/03/lending-pejdzh.jpg') center no-repeat;
background-size: cover;
}
.lendig-image3 {
background: url('https://www.kom-dir.ru/download/file/254') center no-repeat;
background-size: cover;
}
.lendig-image4 {
background: url('https://i.ytimg.com/vi/W-Uf6nl4W_Y/maxresdefault.jpg') center no-repeat;
background-size: cover;
}
.lendig-image5 {
background: url('https://web112.biz/userfiles/images/news/struktura-landing-page/free-landing-page.png') center no-repeat;
background-size: cover;
}
.lendig-image6 {
background: url('https://digitalnews.ru/sites/default/files/images/3_2.png') center no-repeat;
background-size: cover;
}
.lendig-image7 {
background: url('http://adventum.ru/blog/wp-content/uploads/2015/04/landing-page-ideas-unbounce-one-click-sign-up.png') center no-repeat;
background-size: cover;
}
.lendig-image8 {
background: url('https://1ps.ru/files/blog/2016/landing_21_6.jpg') center no-repeat;
background-size: cover;
}
.project-card_info {
padding: 19px 13px;
}
.proect-category {
display: block;
color: #2b2a2c;
font-size: 12px;
}
.project-title {
display: flex;
justify-content: space-between;
margin-top: 13px;
text-transform: uppercase;
font-weight: 800;
margin-top: 10px;
}
.abount_me {
display: flex;
justify-content: space-around;
padding-bottom: 112px;
}
.abount_me-hero-description {
font-size: 12px;
color: #6a696b;
}
.about_me-text {
max-width: 550px;
}
footer {
height: 62px;
background-color: #2b2a2c;
}
.footer-coteiner {
display: flex;
align-items: center;
}
.fototer-year{
padding: 20px;
align-items: center;
}
.footer-text-year {
font-size: 14px;
color: #8d8d8e;
}
.footer-line {
width: 1px;
height: 21px;
background-color: #413f41;
margin-right: 14px;
}
footer .social {
display: inline-block;
width: 20px;
height: 41px;
margin-right: 10px;
text-align: center;
line-height: 44px;
color: #8d8d8e;
font-size: 20px;
}
footer .social:hover {
color: #fff;
}
.footer {
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-menu {
display: flex;
align-items: center;
}
.menu-footer {
color: #8d8d8e;
text-decoration: none;
font-size: 14px;
margin-right: 27px;
}
.menu-footer:hover {
color: #fff;
}
.button-footer {
cursor: pointer;
border: 1px solid #8d8d8e;
border-radius: 16px;
background-color: #2b2a2c;
color: #8d8d8e;
padding: 11px 23px;
}
.button-footer:hover {
color: #fff;
border: 1px solid #fff;
}
@media (max-width: 1200px) {
.conteiner {
width: 965px;
}
.project-card {
width: 48%;
}
}
@media (max-width: 992px) {
.footer-text-year {
font-size: 10px;
}
.about_me-text {
margin-left: 30px;
}
.conteiner {
width: 760px;
}
.project-card {
width: 48%;
}
}
@media (max-width: 765px) {
.menu-footer {
margin-right: 5px;
}
footer .social {
margin-right: 0px;
}
.about_me-text {
margin-left: 30px;
}
.abount_me {
display: inherit;
}
.menu-list {
/* display: none;*/
font-size: 12px;
margin-right: 5px;
}
.menu-list a {
margin-right: 10px;
}
.hero {
padding-bottom: 550px;
}
.conteiner {
width: 95%;
}
.project-card {
width: 95%;
margim: 30px auto;
}
}
@media (max-width: 689px) {
.button-footer {
display: none;
}
footer .social {
margin-right: 0px;
}
.about_me-text {
margin-left: 30px;
}
.abount_me {
display: inherit;
}
.menu-list {
/*display: none;*/
}
.hero {
padding-bottom: 550px;
}
.conteiner {
width: 95%;
}
.project-card {
width: 95%;
margim: 30px auto;
}
}
@media (max-width: 640px) {
.footer-menu {
display: none;
}
.menu {
margin-top: 18px;
display: inherit;
justify-content: space-between;
align-items: center;
}
@media (max-width: 440px) {
.menu-list {
display: inherit;
align-items: center;
margin-top: 50px;
}
.menu-button {
margin-top: 20px;
margin-left: 50px;
}
.hero-title {
font-size: 35px;
}
.hero-subtitle {
font-size: 22px;
} | css/style.css | body {
font-family: 'Open Sans', sans-serif;
margin: 0;
}
.conteiner{
width: 100%;
max-width: 1173px;
margin-left: auto;
margin-right: auto;
}
.menu {
margin-top: 18px;
display: flex;
justify-content: space-between;
align-items:center;
}
.name {
display: block;
font-size: 16px;
font-weight: 800;
}
.description {
margin-left: 9px;
}
.menu-logo {
display: flex;
align-items: center;
}
.avatar {
cursor: pointer;
width: 57px;
height: 57px;
background: url('https://pp.userapi.com/c852128/v852128756/5786a/Yjte8MgpflY.jpg?ava=1');
background-size: 100%;
border-radius: 50%;
}
.menu-list {
display: flex;
align-items: center;
}
.menu-list a {
text-decoration: none;
color: #2b2a2c;
text-transform: uppercase;
font-weight: 800;
margin-right: 34px;
}
.menu-button {
cursor: pointer;
text-transform: uppercase;
border: 2px solid #2b2a2c;
font-size: 14px;
font-weight: 800;
border-radius: 50px;
background-color: transparent;
padding: 13px 22px;
transition: 3s;
}
.menu-button:hover {
background-color: #2b2a2c;
color: white;
border: 2px solid #2b2a2c;
transition: 3s;
}
.menu-header {
display: inline-block;
color: #2b2a2c;
line-height: 1;
text-decoration:none;
cursor: pointer;
position:relative;
}
.menu-header:after {
background-color: #2b2a2c;
display: block;
content: "";
height: 2px;
width: 0%;
left:50%;
position:absolute;
-webkit-transition: width .3s ease-in-out;
-moz--transition: width .3s ease-in-out;
transition: width .3s ease-in-out;
-webkit-transform:translateX(-50%);
-moz-transform:translateX(-50%);
transform:translateX(-50%);
transition: 1s;
}
.menu-header:hover:after,
.menu-header:focus:after {
width: 100%;
}
.hero{
padding-top: 112px;
padding-bottom: 112px;
background: url("https://wmpics.pics/di-TXTGB09B.png") no-repeat right bottom;
}
.hero-subtitle {
font-size: 32px;
}
.hero-title {
font-size: 45px;
font-weight: 800;
margin-top: 5px;
margin-bottom: 5px;
}
.hero-description {
font-size: 18px;
color: #6a696b;
}
.hero-social {
margin-top:30px;
}
.social {
display: inline-block;
width: 41px;
height: 41px;
margin-right: 12px;
color: #fff;
text-align: center;
line-height: 41px;
}
.behance-bg {
background-color: #1869ff;
}
.facebook-bg {
background-color: #3a5898;
}
.instagram-bg {
background-color: #13578a;
}
.vk-bg {
background-color: #56acef;
}
.hero-buttons {
margin-top: 40px;
}
.button {
display: inline-block;
font-size: 16px;
font-weight: 800;
text-decoration:none;
border-radius: 50px;
background-color: #2b2a2c;
padding: 20px 34px;
}
.button-primary {
color: #fff;
transition: 3s;
box-shadow: 5px 4px 10px #2b2a2c;
margin-right: 18px;
margin-bottom: 10px;
}
.button-primary:hover {
color: #2b2a2c;
background-color: transparent;
border: 1px solid #6a696b;
transition: 3s;
box-shadow: 5px 4px 10px #ffff;
}
.button-o {
color: #6a696b;
background-color: transparent;
border: 1px solid #6a696b;
transition: 3s;
}
.button-o:hover {
color: white;
background-color: #6a696b;
border: 1px solid #6a696b;
transition: 3s;
}
.project {
padding: 97px 0;
}
.project-cards {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.project-card {
min-height: 370px;
width: 370px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
margin-bottom: 50px;
}
.project-card-image {
height: 300px;
}
.lendig-image {
background: url('http://depsite.ru/site/data/images/medium/xvr4.jpg') center no-repeat;
background-size: cover;
}
.lendig-image1 {
background: url('https://www.imedia.by/upload/iblock/e6d/1.png') center no-repeat;
background-size: cover;
}
.lendig-image2 {
background: url('https://richpro.ru/wp-content/uploads/2016/03/lending-pejdzh.jpg') center no-repeat;
background-size: cover;
}
.lendig-image3 {
background: url('https://www.kom-dir.ru/download/file/254') center no-repeat;
background-size: cover;
}
.lendig-image4 {
background: url('https://i.ytimg.com/vi/W-Uf6nl4W_Y/maxresdefault.jpg') center no-repeat;
background-size: cover;
}
.lendig-image5 {
background: url('https://web112.biz/userfiles/images/news/struktura-landing-page/free-landing-page.png') center no-repeat;
background-size: cover;
}
.lendig-image6 {
background: url('https://digitalnews.ru/sites/default/files/images/3_2.png') center no-repeat;
background-size: cover;
}
.lendig-image7 {
background: url('http://adventum.ru/blog/wp-content/uploads/2015/04/landing-page-ideas-unbounce-one-click-sign-up.png') center no-repeat;
background-size: cover;
}
.lendig-image8 {
background: url('https://1ps.ru/files/blog/2016/landing_21_6.jpg') center no-repeat;
background-size: cover;
}
.project-card_info {
padding: 19px 13px;
}
.proect-category {
display: block;
color: #2b2a2c;
font-size: 12px;
}
.project-title {
display: flex;
justify-content: space-between;
margin-top: 13px;
text-transform: uppercase;
font-weight: 800;
margin-top: 10px;
}
.abount_me {
display: flex;
justify-content: space-around;
padding-bottom: 112px;
}
.abount_me-hero-description {
font-size: 12px;
color: #6a696b;
}
.about_me-text {
max-width: 550px;
}
footer {
height: 62px;
background-color: #2b2a2c;
}
.footer-coteiner {
display: flex;
align-items: center;
}
.fototer-year{
padding: 20px;
align-items: center;
}
.footer-text-year {
font-size: 14px;
color: #8d8d8e;
}
.footer-line {
width: 1px;
height: 21px;
background-color: #413f41;
margin-right: 14px;
}
footer .social {
display: inline-block;
width: 20px;
height: 41px;
margin-right: 10px;
text-align: center;
line-height: 44px;
color: #8d8d8e;
font-size: 20px;
}
footer .social:hover {
color: #fff;
}
.footer {
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-menu {
display: flex;
align-items: center;
}
.menu-footer {
color: #8d8d8e;
text-decoration: none;
font-size: 14px;
margin-right: 27px;
}
.menu-footer:hover {
color: #fff;
}
.button-footer {
cursor: pointer;
border: 1px solid #8d8d8e;
border-radius: 16px;
background-color: #2b2a2c;
color: #8d8d8e;
padding: 11px 23px;
}
.button-footer:hover {
color: #fff;
border: 1px solid #fff;
}
@media (max-width: 1200px) {
.conteiner {
width: 965px;
}
.project-card {
width: 48%;
}
}
@media (max-width: 992px) {
.footer-text-year {
font-size: 10px;
}
.about_me-text {
margin-left: 30px;
}
.conteiner {
width: 760px;
}
.project-card {
width: 48%;
}
}
@media (max-width: 765px) {
.menu-footer {
margin-right: 5px;
}
footer .social {
margin-right: 0px;
}
.about_me-text {
margin-left: 30px;
}
.abount_me {
display: inherit;
}
.menu-list {
/* display: none;*/
font-size: 12px;
margin-right: 5px;
}
.menu-list a {
margin-right: 10px;
}
.hero {
padding-bottom: 550px;
}
.conteiner {
width: 95%;
}
.project-card {
width: 95%;
margim: 30px auto;
}
}
@media (max-width: 689px) {
.button-footer {
display: none;
}
footer .social {
margin-right: 0px;
}
.about_me-text {
margin-left: 30px;
}
.abount_me {
display: inherit;
}
.menu-list {
/*display: none;*/
}
.hero {
padding-bottom: 550px;
}
.conteiner {
width: 95%;
}
.project-card {
width: 95%;
margim: 30px auto;
}
}
@media (max-width: 640px) {
.footer-menu {
display: none;
}
.menu {
margin-top: 18px;
display: inherit;
justify-content: space-between;
align-items: center;
}
@media (max-width: 440px) {
.menu-list {
display: inherit;
align-items: center;
margin-top: 50px;
}
.menu-button {
margin-top: 20px;
margin-left: 50px;
}
.hero-title {
font-size: 35px;
}
.hero-subtitle {
font-size: 22px;
} | 0.405684 | 0.088072 |
.white,
.trifag:after,
.trifag:before {
content: '';
height: 4px;
width: 32%;
float: left;
background: #f93;
}
.trifag {
white-space: nowrap;
margin-left: 2px;
}
.trifag:after {
background: #128807;
}
.white {
background: #fff;
}
h1 {
display: inline-block;
text-transform: uppercase;
letter-spacing: 10px;
padding-left: 6px;
font-size: 36px;
transform: scaleY(0.92);
text-shadow: 1px 1px 4px rgba(0,0,0,0.11);
margin: 0;
}
h1 + p {
margin: 10px auto;
font-size: 0.875em;
}
#indexContent {
max-width: 880px;
margin: 32px auto 0;
}
#siteLogo {
float: left;
margin: 0 30px 20px 0;
border-radius: 4px;
box-shadow: 0 2px 10px rgba(0,0,0,0.16);
background: url("/.static/logo.png") no-repeat center;
background-size: contain;
width: 280px;
height: 280px;
}
#indexBlocks {
clear: both;
text-align: center;
}
#indexBlocks > div {
margin: 20px 0;
border-radius: 2px;
}
#indexBlocks header {
line-height: 36px;
border-bottom: 1px solid rgba(0,0,0,0.1);
}
.latestPostCell,
#indexBoards > a,
#divLatestImages a {
font-weight: bold;
background: rgba(255,255,255,0.7);
box-shadow: 0 1px 2px rgba(0,0,0,0.2);
margin: 12px 12px 0px 0;
border-radius: 2px;
max-width: 270px;
padding: 10px 20px;
overflow: hidden;
transition: 0.3s;
vertical-align: middle;
display: inline-block;
}
.latestPostCell:hover,
#indexBoards > a:hover,
#divLatestImages a:hover {
transform: scale(1.01);
background: #fff;
}
#divLatestImages a {
padding: 0;
}
#divLatestImages img {
max-width: 128px;
max-height: 128px;
display: block;
}
.labelPreview {
color: #333;
font-size: 0.875em;
font-weight: normal;
}
.latestPostCell {
padding: 32px 12px 12px;
position: relative;
min-width: 140px;
text-align: left;
}
.latestPostCell > a {
padding: 10px;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
@media (max-width: 800px) {
#siteLogo {
margin: 0 auto;
float: none;
display: block;
}
main {
text-align: center;
}
#indexBoards > a {
float: none;
}
} | static/css/index.css | .white,
.trifag:after,
.trifag:before {
content: '';
height: 4px;
width: 32%;
float: left;
background: #f93;
}
.trifag {
white-space: nowrap;
margin-left: 2px;
}
.trifag:after {
background: #128807;
}
.white {
background: #fff;
}
h1 {
display: inline-block;
text-transform: uppercase;
letter-spacing: 10px;
padding-left: 6px;
font-size: 36px;
transform: scaleY(0.92);
text-shadow: 1px 1px 4px rgba(0,0,0,0.11);
margin: 0;
}
h1 + p {
margin: 10px auto;
font-size: 0.875em;
}
#indexContent {
max-width: 880px;
margin: 32px auto 0;
}
#siteLogo {
float: left;
margin: 0 30px 20px 0;
border-radius: 4px;
box-shadow: 0 2px 10px rgba(0,0,0,0.16);
background: url("/.static/logo.png") no-repeat center;
background-size: contain;
width: 280px;
height: 280px;
}
#indexBlocks {
clear: both;
text-align: center;
}
#indexBlocks > div {
margin: 20px 0;
border-radius: 2px;
}
#indexBlocks header {
line-height: 36px;
border-bottom: 1px solid rgba(0,0,0,0.1);
}
.latestPostCell,
#indexBoards > a,
#divLatestImages a {
font-weight: bold;
background: rgba(255,255,255,0.7);
box-shadow: 0 1px 2px rgba(0,0,0,0.2);
margin: 12px 12px 0px 0;
border-radius: 2px;
max-width: 270px;
padding: 10px 20px;
overflow: hidden;
transition: 0.3s;
vertical-align: middle;
display: inline-block;
}
.latestPostCell:hover,
#indexBoards > a:hover,
#divLatestImages a:hover {
transform: scale(1.01);
background: #fff;
}
#divLatestImages a {
padding: 0;
}
#divLatestImages img {
max-width: 128px;
max-height: 128px;
display: block;
}
.labelPreview {
color: #333;
font-size: 0.875em;
font-weight: normal;
}
.latestPostCell {
padding: 32px 12px 12px;
position: relative;
min-width: 140px;
text-align: left;
}
.latestPostCell > a {
padding: 10px;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
@media (max-width: 800px) {
#siteLogo {
margin: 0 auto;
float: none;
display: block;
}
main {
text-align: center;
}
#indexBoards > a {
float: none;
}
} | 0.360714 | 0.110615 |
@import "elegant-tooltip.css";
@import "icon-style.css";
.sidebar-title:first-child {
display: none
}
.apps-hide,
.sidebar-center-link:hover {
padding: 0
}
.apps-hide-label {
padding: 0 8px;
}
.form-row {
clear: both;
}
form .aligned strong+p.help {
margin-left: 12.85714rem;
padding-top: 4px;
}
#toolbar form #searchbar {
width: 280px;
}
.site-title {
text-align: right;
padding: 0 6px 8px 0;
font-size: 1.2rem;
}
#branding-menu {
background: url("/static/assets/admin/images/goodup_icon.jpg");
background-size: 100%;
width: 50px;
height: 50px;
}
#branding-menu:before {
content: ''
}
.video-container {
position: relative;
}
.video-container .play-btn {
position: absolute;
top: -10px;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
width: 40px;
height: 40px;
background: url("/static/assets/images/img/icons/icon-play-video.svg") no-repeat;
background-size: 40px;
}
.video-container .play-btn:hover {
width: 45px;
height: 45px;
background-size: 45px;
}
.video-container .video-text {
position: absolute;
left: 0;
right: 0;
bottom: -40px;
padding: 3px 6px;
margin-left: auto;
margin-right: auto;
background: #003580;
color: #fff;
text-align: right;
}
.photo-container {
position: relative;
}
.photo-container .photo-text {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 3px 6px;
margin-left: auto;
margin-right: auto;
background: #003580;
color: #fff;
text-align: right;
}
#header ul#navigation-menu li a {
text-transform: none;
}
/* Fluent Contents */
.cp-item-icons .cp-item-down,
.cp-item-icons .cp-item-up,
.cp-item-controls .cp-item-delete a {
background: none;
}
.cp-item-down:hover:before,
.cp-item-up:hover:before {
color: #3C96DC;
}
.cp-item-down:before {
content: "\ea3e";
font-size: 1rem;
color: #281E50;
}
.cp-item-up:before {
content: "\ea3a";
font-size: 1rem;
color: #281E50;
}
.cp-item-controls .cp-item-delete a {
padding: 0 3px;
}
.cp-item-controls .cp-item-delete a:before {
content: "\ea0f";
font-size: 1rem;
color: #281E50;
}
.cp-item-controls .cp-item-delete a:hover:before {
color: #c7254e;
}
.aligned .cp-item-controls label {
display: none;
}
#content .parler-language-tabs {
border-bottom: 2px solid #FFFFFF;
}
#content .parler-language-tabs span {
border: 0;
top: 0;
background-color: #E3E4EA;
color: #281E50;
}
#content .parler-language-tabs span a {
color: #281E50;
font-weight: 700;
}
#content .parler-language-tabs span.current {
border: 0;
background-color: #FFFFFF;
color: #281E50;
}
#content #content-main .cp-controls input.button {
padding-top: 0;
padding-bottom: 0;
}
.select2-container .select2-selection--single {
height: 38px!important;
}
.array-item {
margin: 8px 0;
}
.array-item input {
padding: 6px;
} | bluebottle/bluebottle_dashboard/static/admin/css/dashboard.css | @import "elegant-tooltip.css";
@import "icon-style.css";
.sidebar-title:first-child {
display: none
}
.apps-hide,
.sidebar-center-link:hover {
padding: 0
}
.apps-hide-label {
padding: 0 8px;
}
.form-row {
clear: both;
}
form .aligned strong+p.help {
margin-left: 12.85714rem;
padding-top: 4px;
}
#toolbar form #searchbar {
width: 280px;
}
.site-title {
text-align: right;
padding: 0 6px 8px 0;
font-size: 1.2rem;
}
#branding-menu {
background: url("/static/assets/admin/images/goodup_icon.jpg");
background-size: 100%;
width: 50px;
height: 50px;
}
#branding-menu:before {
content: ''
}
.video-container {
position: relative;
}
.video-container .play-btn {
position: absolute;
top: -10px;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
width: 40px;
height: 40px;
background: url("/static/assets/images/img/icons/icon-play-video.svg") no-repeat;
background-size: 40px;
}
.video-container .play-btn:hover {
width: 45px;
height: 45px;
background-size: 45px;
}
.video-container .video-text {
position: absolute;
left: 0;
right: 0;
bottom: -40px;
padding: 3px 6px;
margin-left: auto;
margin-right: auto;
background: #003580;
color: #fff;
text-align: right;
}
.photo-container {
position: relative;
}
.photo-container .photo-text {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 3px 6px;
margin-left: auto;
margin-right: auto;
background: #003580;
color: #fff;
text-align: right;
}
#header ul#navigation-menu li a {
text-transform: none;
}
/* Fluent Contents */
.cp-item-icons .cp-item-down,
.cp-item-icons .cp-item-up,
.cp-item-controls .cp-item-delete a {
background: none;
}
.cp-item-down:hover:before,
.cp-item-up:hover:before {
color: #3C96DC;
}
.cp-item-down:before {
content: "\ea3e";
font-size: 1rem;
color: #281E50;
}
.cp-item-up:before {
content: "\ea3a";
font-size: 1rem;
color: #281E50;
}
.cp-item-controls .cp-item-delete a {
padding: 0 3px;
}
.cp-item-controls .cp-item-delete a:before {
content: "\ea0f";
font-size: 1rem;
color: #281E50;
}
.cp-item-controls .cp-item-delete a:hover:before {
color: #c7254e;
}
.aligned .cp-item-controls label {
display: none;
}
#content .parler-language-tabs {
border-bottom: 2px solid #FFFFFF;
}
#content .parler-language-tabs span {
border: 0;
top: 0;
background-color: #E3E4EA;
color: #281E50;
}
#content .parler-language-tabs span a {
color: #281E50;
font-weight: 700;
}
#content .parler-language-tabs span.current {
border: 0;
background-color: #FFFFFF;
color: #281E50;
}
#content #content-main .cp-controls input.button {
padding-top: 0;
padding-bottom: 0;
}
.select2-container .select2-selection--single {
height: 38px!important;
}
.array-item {
margin: 8px 0;
}
.array-item input {
padding: 6px;
} | 0.414899 | 0.072538 |
body {
font-family: "Open Sans";
background-color: #ececec;
}
/* Sets header height and color */
/* Stretches past the #content-width */
#header-back {
width: 100%;
height: 200px;
background-color: #7e7e7e;
}
/* Pulls content in to center of page */
#content-width {
width: 1250px;
margin: auto;
padding-bottom: 80px;
}
/**************************************************/
/********************* HEADER *********************/
/**************************************************/
/* Sets the header background */
/* Pushes content away from the page border */
header {
padding: 25px;
}
/* Pushes navbar to right and lines it with logo */
div.navbar {
display: flex;
float: right;
}
/* Navbar styling and hover */
a.navbar-style {
padding: 60px 0px 0px 80px;
font-size: 20px;
text-decoration: none;
color: #ffffff;
}
a.navbar-style:hover {
font-weight: bold;
text-decoration: none;
color: #000131;
}
/***************************************************/
/********************* CONTENT *********************/
/***************************************************/
.flex-it {
display: flex;
}
#portfolio-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
/* Sets up left sidebar container */
.sidebar-left {
display: flex;
align-items: center;
min-width: 220px;
padding: 20px 20px 20px 20px;
margin: 20px 20px 20px 0;
border-right: solid 5px;
}
/* Sidebar font styling */
.sidebar-styling {
font-size: 30px;
font-weight: bold;
color: #000131;
}
/* Regular text styling */
.regular-content {
flex: 80%;
margin: 20px 20px 20px 20px ;
font-size: 20px;
line-height: 200%;
}
/* Moves portfolio area away from edges */
.portfolio {
margin: 20px 20px 20px 20px;
}
#spotlight-content {
flex-basis: 100%;
object-fit: cover;
}
/*Transparent hover over portfolio images */
.box-hover:hover {
opacity: 70%;
}
/* Image border styling */
img.image-styling {
width: 100%;
border-style: solid;
border-width: 12px 12px 50px 12px;
border-color: #7e7e7e;
border-radius: 5px;
box-shadow: 0 0.5em 1em -0.125em rgb(10 10 10 / 10%), 0 0 0 1px rgb(10 10 10 / 4%);
}
/* Image text styling */
.portfolio-text-style {
display: flex;
align-items: center;
position: relative;
bottom: 40px;
padding: 0 0 0 10px;
}
.portfolio-text-style p {
font-size: 25px;
color: #000131;
font-weight: bold;
}
/* Removing underline from link */
.portfolio a:link {
text-decoration: none;
}
.github-links {
text-decoration: none;
color: black;
}
.github-links:visited {
text-decoration: none;
color: black;
}
.github-links:hover {
text-decoration: none;
font-weight: bold;
}
#footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #7e7e7e;
color: white;
text-align: center;
height: 50px;
}
.contact-styling {
display: inline-block;
padding: 15px 5px 5px 5px;
}
#resume {
text-decoration: none;
color: white;
}
#resume:visited {
text-decoration: none;
color: white;
}
#github-icon {
vertical-align: middle;
padding-top: 5px;
}
#linkedin-icon {
vertical-align: middle;
padding-top: 5px;
}
/***************************************************/
/********************* RESPONSIVE ******************/
/***************************************************/
/**************** RESPONSIVE 1300px ****************/
@media screen and (max-width: 1300px) {
/* Giving content more room */
#content-width {
width: 90%;
margin: auto;
}
#portfolio-wrapper {
justify-content: center;
}
a.navbar-style {
padding: 60px 0 0 40px;
font-size: 16px;
}
/* Thinning out sidebar */
.sidebar-left {
min-width: 120px;
padding: 10px 10px 10px 10px;
border-right: solid 2px;
}
.sidebar-styling {
font-size: 18px;
}
/* Sizing doen content */
.regular-content {
flex: 80%;
margin: 20px 20px 20px 20px ;
font-size: 14px;
line-height: 150%;
}
}
/**************** RESPONSIVE 900px ****************/
@media screen and (max-width: 950px) {
#content-width {
width: 95%;
margin: auto;
}
/* Adjusting header height */
#header-back {
height: 225px;
background-color: #6e6e6e;
}
header {
padding: 25px 0 0 0;
height: 200px;
}
/* Centering logo */
#logo {
display: block;
margin-left: auto;
margin-right: auto;
}
/* Styling navbar to sit center under logo */
div.navbar {
width: 100%;
justify-content: center;
}
a.navbar-style {
padding: 30px 30px 0px 30px;
font-size: 16px;
}
.sidebar-styling {
font-size: 16px;
}
.sidebar-left {
min-width: 100px;
}
/* Portfolio area image styling */
img.image-styling {
border-width: 8px 8px 50px 8px;
height: auto;
}
.portfolio-text-style {
bottom: 40px;
padding: 0 0 0 10px;
}
.portfolio-text-style p {
font-size: 18px;
}
}
@media screen and (max-width: 600px) {
#header-back {
height: 270px;
}
header {
height: 245px;
}
#logo {
width: 80%;
}
a.navbar-style {
font-size: 12px;
}
.sidebar-left {
margin: 20px 0 20px 0;
}
}
@media screen and (max-width: 550px) {
#header-back {
height: 240px;
}
header {
height: 215px;
}
}
@media screen and (max-width: 450px) {
#header-back {
height: 220px;
}
header {
height: 195px;
}
} | assets/css/style.css | body {
font-family: "Open Sans";
background-color: #ececec;
}
/* Sets header height and color */
/* Stretches past the #content-width */
#header-back {
width: 100%;
height: 200px;
background-color: #7e7e7e;
}
/* Pulls content in to center of page */
#content-width {
width: 1250px;
margin: auto;
padding-bottom: 80px;
}
/**************************************************/
/********************* HEADER *********************/
/**************************************************/
/* Sets the header background */
/* Pushes content away from the page border */
header {
padding: 25px;
}
/* Pushes navbar to right and lines it with logo */
div.navbar {
display: flex;
float: right;
}
/* Navbar styling and hover */
a.navbar-style {
padding: 60px 0px 0px 80px;
font-size: 20px;
text-decoration: none;
color: #ffffff;
}
a.navbar-style:hover {
font-weight: bold;
text-decoration: none;
color: #000131;
}
/***************************************************/
/********************* CONTENT *********************/
/***************************************************/
.flex-it {
display: flex;
}
#portfolio-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
/* Sets up left sidebar container */
.sidebar-left {
display: flex;
align-items: center;
min-width: 220px;
padding: 20px 20px 20px 20px;
margin: 20px 20px 20px 0;
border-right: solid 5px;
}
/* Sidebar font styling */
.sidebar-styling {
font-size: 30px;
font-weight: bold;
color: #000131;
}
/* Regular text styling */
.regular-content {
flex: 80%;
margin: 20px 20px 20px 20px ;
font-size: 20px;
line-height: 200%;
}
/* Moves portfolio area away from edges */
.portfolio {
margin: 20px 20px 20px 20px;
}
#spotlight-content {
flex-basis: 100%;
object-fit: cover;
}
/*Transparent hover over portfolio images */
.box-hover:hover {
opacity: 70%;
}
/* Image border styling */
img.image-styling {
width: 100%;
border-style: solid;
border-width: 12px 12px 50px 12px;
border-color: #7e7e7e;
border-radius: 5px;
box-shadow: 0 0.5em 1em -0.125em rgb(10 10 10 / 10%), 0 0 0 1px rgb(10 10 10 / 4%);
}
/* Image text styling */
.portfolio-text-style {
display: flex;
align-items: center;
position: relative;
bottom: 40px;
padding: 0 0 0 10px;
}
.portfolio-text-style p {
font-size: 25px;
color: #000131;
font-weight: bold;
}
/* Removing underline from link */
.portfolio a:link {
text-decoration: none;
}
.github-links {
text-decoration: none;
color: black;
}
.github-links:visited {
text-decoration: none;
color: black;
}
.github-links:hover {
text-decoration: none;
font-weight: bold;
}
#footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #7e7e7e;
color: white;
text-align: center;
height: 50px;
}
.contact-styling {
display: inline-block;
padding: 15px 5px 5px 5px;
}
#resume {
text-decoration: none;
color: white;
}
#resume:visited {
text-decoration: none;
color: white;
}
#github-icon {
vertical-align: middle;
padding-top: 5px;
}
#linkedin-icon {
vertical-align: middle;
padding-top: 5px;
}
/***************************************************/
/********************* RESPONSIVE ******************/
/***************************************************/
/**************** RESPONSIVE 1300px ****************/
@media screen and (max-width: 1300px) {
/* Giving content more room */
#content-width {
width: 90%;
margin: auto;
}
#portfolio-wrapper {
justify-content: center;
}
a.navbar-style {
padding: 60px 0 0 40px;
font-size: 16px;
}
/* Thinning out sidebar */
.sidebar-left {
min-width: 120px;
padding: 10px 10px 10px 10px;
border-right: solid 2px;
}
.sidebar-styling {
font-size: 18px;
}
/* Sizing doen content */
.regular-content {
flex: 80%;
margin: 20px 20px 20px 20px ;
font-size: 14px;
line-height: 150%;
}
}
/**************** RESPONSIVE 900px ****************/
@media screen and (max-width: 950px) {
#content-width {
width: 95%;
margin: auto;
}
/* Adjusting header height */
#header-back {
height: 225px;
background-color: #6e6e6e;
}
header {
padding: 25px 0 0 0;
height: 200px;
}
/* Centering logo */
#logo {
display: block;
margin-left: auto;
margin-right: auto;
}
/* Styling navbar to sit center under logo */
div.navbar {
width: 100%;
justify-content: center;
}
a.navbar-style {
padding: 30px 30px 0px 30px;
font-size: 16px;
}
.sidebar-styling {
font-size: 16px;
}
.sidebar-left {
min-width: 100px;
}
/* Portfolio area image styling */
img.image-styling {
border-width: 8px 8px 50px 8px;
height: auto;
}
.portfolio-text-style {
bottom: 40px;
padding: 0 0 0 10px;
}
.portfolio-text-style p {
font-size: 18px;
}
}
@media screen and (max-width: 600px) {
#header-back {
height: 270px;
}
header {
height: 245px;
}
#logo {
width: 80%;
}
a.navbar-style {
font-size: 12px;
}
.sidebar-left {
margin: 20px 0 20px 0;
}
}
@media screen and (max-width: 550px) {
#header-back {
height: 240px;
}
header {
height: 215px;
}
}
@media screen and (max-width: 450px) {
#header-back {
height: 220px;
}
header {
height: 195px;
}
} | 0.326164 | 0.05951 |
.App {
width: 100%;
max-width: 1050px;
height: 100vh;
margin: 0 auto;
background: lightgray;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
position: relative;
overflow-y: hidden;
}
.App > header {
width: 100%;
height: calc(2.6rem + 10px);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: 5px 3%;
background: gray;
}
.App > header h1 a {
font-size: 2.6rem;
color: white;
}
.App > header > ul {
display: flex;
list-style: none;
}
.App > header > ul a,
.App > header .logout {
font-size: 1.4rem;
color: white;
margin-left: 20px;
cursor: pointer;
}
.App > header .username-display {
font-size: 1.4rem;
color: blue;
cursor: pointer;
}
.landing-envelope {
width: 70%;
height: calc(100% - 2.6rem - 10px);
overflow-y: auto;
padding: 20px 3%;
}
.landing em {
font-style: italic;
}
.landing a,
.analysis-envelope section p a {
color: #004400;
}
.landing h2,
.landing h3,
.landing h4,
.landing strong,
.analysis-envelope strong,
.analysis-envelope h1,
.analysis-envelope h2 {
font-weight: bold;
}
.landing h2 {
margin: 12px 0;
font-size: 2.8rem;
}
.landing h3 {
margin: 2px 0 6px;
font-size: 2.0rem;
}
.landing p {
margin: 10px 0;
font-size: 1.4rem;
line-height: 1.2;
}
.landing .toc .lesser-note {
margin: 2px 0;
font-size: 1.0rem;
font-style: italic;
}
.landing .accordion {
width: 100%;
border-radius: 6px;
background-color: #BEA77E;
box-shadow: 0 0 8px #5c4b2e;
}
.landing .accordion .accordion-section .folder {
padding: 6px 2%;
display: flex;
justify-content: space-between;
cursor: pointer;
}
.landing .accordion .accordion-section .folder span:first-child {
font-size: 1.8rem;
}
.landing .accordion .accordion-section .folder span:last-child {
margin-top: 3px;
}
.landing .toc .accordion-section .collapsible,
.landing .setting-info .accordion-section .collapsible {
padding-bottom: 2px;
}
.landing .toc .accordion-section .collapsible section,
.landing .setting-info .accordion-section .collapsible section {
margin: 0 2% 12px;
padding: 8px 2%;
border-radius: 2px;
background-color: lightblue;
}
.landing .toc li {
margin: 0 0 0 20px;
font-size: 1.4rem;
line-height: 1.2;
}
.landing .setting-info .collapsible p {
margin: 2px 0;
}
.analysis-envelope {
width: 70%;
height: calc(100% - 2.6rem - 10px);
overflow-y: auto;
}
.analysis-envelope header {
width: 100%;
height: calc(2.6rem + 10px);
position: sticky;
top: 0;
border-top: 4px double lightgray;
background: gray;
}
.analysis-envelope header nav {
width: 100%;
height: 100%;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.analysis-envelope header nav a {
font-size: 1.4rem;
color: white;
}
.analysis-envelope .for-padding {
width: 100%;
padding: 20px 3%;
}
.analysis-envelope section {
width: 100%;
margin: 20px 0;
padding: 16px 3%;
background-color: #c2b098;
background-image: url("../images/paper-texture.png");
border-radius: 8px;
box-shadow: 2px 2px 14px #5c4b2e;
}
.analysis-envelope h1 {
margin-bottom: 6px;
font-size: 2.8rem;
}
.analysis-envelope section h2 {
margin-bottom: 10px;
font-size: 2.4rem;
}
.analysis-envelope section p {
margin: 10px 0;
font-size: 1.4rem;
line-height: 1.1;
}
.analysis-envelope section p span.with-colon {
margin-right: 4px;
}
.world-map {
width: 100%;
height: calc(100% - 2.6rem - 10px);
padding: 24px 2%;
}
.world-map h1 {
margin-bottom: 20px;
font-size: 2.8rem;
font-weight: bold;
}
.login-form {
width: 100%;
height: calc(100% - 2.6rem - 10px);
padding: 50px 0;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
.login-form h1 {
font-size: 2.4rem;
margin-bottom: 20px;
}
.login-form input {
margin-bottom: 10px;
}
.login-form .buffer {
margin-top: 20px;
}
.login-form .error-message {
color: #dd0000;
}
.login-form a {
color: blue;
} | silaverse/src/css/App.css | .App {
width: 100%;
max-width: 1050px;
height: 100vh;
margin: 0 auto;
background: lightgray;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
position: relative;
overflow-y: hidden;
}
.App > header {
width: 100%;
height: calc(2.6rem + 10px);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: 5px 3%;
background: gray;
}
.App > header h1 a {
font-size: 2.6rem;
color: white;
}
.App > header > ul {
display: flex;
list-style: none;
}
.App > header > ul a,
.App > header .logout {
font-size: 1.4rem;
color: white;
margin-left: 20px;
cursor: pointer;
}
.App > header .username-display {
font-size: 1.4rem;
color: blue;
cursor: pointer;
}
.landing-envelope {
width: 70%;
height: calc(100% - 2.6rem - 10px);
overflow-y: auto;
padding: 20px 3%;
}
.landing em {
font-style: italic;
}
.landing a,
.analysis-envelope section p a {
color: #004400;
}
.landing h2,
.landing h3,
.landing h4,
.landing strong,
.analysis-envelope strong,
.analysis-envelope h1,
.analysis-envelope h2 {
font-weight: bold;
}
.landing h2 {
margin: 12px 0;
font-size: 2.8rem;
}
.landing h3 {
margin: 2px 0 6px;
font-size: 2.0rem;
}
.landing p {
margin: 10px 0;
font-size: 1.4rem;
line-height: 1.2;
}
.landing .toc .lesser-note {
margin: 2px 0;
font-size: 1.0rem;
font-style: italic;
}
.landing .accordion {
width: 100%;
border-radius: 6px;
background-color: #BEA77E;
box-shadow: 0 0 8px #5c4b2e;
}
.landing .accordion .accordion-section .folder {
padding: 6px 2%;
display: flex;
justify-content: space-between;
cursor: pointer;
}
.landing .accordion .accordion-section .folder span:first-child {
font-size: 1.8rem;
}
.landing .accordion .accordion-section .folder span:last-child {
margin-top: 3px;
}
.landing .toc .accordion-section .collapsible,
.landing .setting-info .accordion-section .collapsible {
padding-bottom: 2px;
}
.landing .toc .accordion-section .collapsible section,
.landing .setting-info .accordion-section .collapsible section {
margin: 0 2% 12px;
padding: 8px 2%;
border-radius: 2px;
background-color: lightblue;
}
.landing .toc li {
margin: 0 0 0 20px;
font-size: 1.4rem;
line-height: 1.2;
}
.landing .setting-info .collapsible p {
margin: 2px 0;
}
.analysis-envelope {
width: 70%;
height: calc(100% - 2.6rem - 10px);
overflow-y: auto;
}
.analysis-envelope header {
width: 100%;
height: calc(2.6rem + 10px);
position: sticky;
top: 0;
border-top: 4px double lightgray;
background: gray;
}
.analysis-envelope header nav {
width: 100%;
height: 100%;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.analysis-envelope header nav a {
font-size: 1.4rem;
color: white;
}
.analysis-envelope .for-padding {
width: 100%;
padding: 20px 3%;
}
.analysis-envelope section {
width: 100%;
margin: 20px 0;
padding: 16px 3%;
background-color: #c2b098;
background-image: url("../images/paper-texture.png");
border-radius: 8px;
box-shadow: 2px 2px 14px #5c4b2e;
}
.analysis-envelope h1 {
margin-bottom: 6px;
font-size: 2.8rem;
}
.analysis-envelope section h2 {
margin-bottom: 10px;
font-size: 2.4rem;
}
.analysis-envelope section p {
margin: 10px 0;
font-size: 1.4rem;
line-height: 1.1;
}
.analysis-envelope section p span.with-colon {
margin-right: 4px;
}
.world-map {
width: 100%;
height: calc(100% - 2.6rem - 10px);
padding: 24px 2%;
}
.world-map h1 {
margin-bottom: 20px;
font-size: 2.8rem;
font-weight: bold;
}
.login-form {
width: 100%;
height: calc(100% - 2.6rem - 10px);
padding: 50px 0;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
.login-form h1 {
font-size: 2.4rem;
margin-bottom: 20px;
}
.login-form input {
margin-bottom: 10px;
}
.login-form .buffer {
margin-top: 20px;
}
.login-form .error-message {
color: #dd0000;
}
.login-form a {
color: blue;
} | 0.585101 | 0.135089 |
* {
margin: 0;
padding: 0;
font-family: 'Play', sans-serif;
-webkit-user-select: none;
}
@font-face {
font-family: 'minecraft-rus';
src: url('../fonts/9303.ttf') format('truetype');
}
body {
overflow: hidden;
}
li {
-webkit-app-region: no-drag;
cursor: pointer;
}
.loading {
width: 659px;
height: 675px;
-webkit-app-region: drag;
background-color: #29292c;
}
.container {
width: 659px;
min-height: 675px;
-webkit-app-region: drag;
background-color: #29292c;
}
input,
.range,
.range2,
.getQR .getLink {
-webkit-app-region: no-drag;
cursor: pointer;
}
.valid:focus {
cursor: text;
}
.header {
height: 44px;
display: flex;
align-items: flex-end;
justify-content: space-between;
}
.header p {
display: inline-block;
font-size: 13px;
color: #979797;
margin-left: 20px;
}
.return {
cursor: pointer;
}
.header h1 {
display: inline-block;
color: #f3c647;
font-size: 24px;
}
.hr-ns {
height: 3px;
background-color: #f3c647;
border: none;
}
.upLayer input:focus {
color: #f3c647;
}
.upLayer input:focus,
.upLayer input:hover {
outline: none;
border-bottom: 3px solid #f3c647;
}
.upLayer h1 {
margin-left: 28px;
margin-top: 17px;
font-size: 21px;
color: #858585;
}
.ul-left {
float: left;
display: inline-block;
width: 247px;
list-style: none;
margin-left: 28px;
}
.ul-left li {
margin-top: 24px;
}
.ul-left li:first-child {}
.ul-left input {
background: none;
border: none;
border-bottom: 3px solid #979797;
color: #979797;
font-size: 16px;
width: 247px;
}
.mainButtons {
float: right;
display: inline-flex;
justify-content: space-between;
width: 247px;
height: 40px;
margin-right: 10px;
margin-top: 0px;
list-style: none;
}
.mainButtons li {
margin: 1px;
display: inline-block;
}
.getQR {
cursor: pointer;
width: 120px;
height: 35px;
background-color: #f3c647;
border-radius: 4px;
line-height: 25px;
margin-right: 5px;
margin-bottom: 5px;
margin-top: 0px;
-webkit-app-region: no-drag;
}
.getQR p {
padding-top: 5px;
color: black;
font-size: 20px;
}
.getLink {
cursor: pointer;
width: 120px;
height: 35px;
background-color: #f3c647;
border-radius: 4px;
line-height: 25px;
margin-right: 5px;
margin-bottom: 5px;
margin-top: 0px;
-webkit-app-region: no-drag;
}
.getLink p {
padding-top: 5px;
color: black;
font-size: 20px;
}
.ul-right {
float: right;
display: inline-flex;
justify-content: space-between;
height: 116px;
margin-right: 10px;
margin-top: 23px;
list-style: none;
}
.ul-right li label:first-child {
margin-right: 10px;
}
.ul-right li:last-child {
margin-left: 25px;
}
.ul-right li {
display: inline-block;
}
.bottomLayer {
margin-top: 210px;
margin-left: 28px;
}
.bottomLayer h1 {
color: #858585;
font-size: 16px;
margin-top: 20px;
}
.bottomLayer h1:first-child {
margin-top: 0;
font-size: 21px;
}
.bottomLayer p {
color: #979797;
font-size: 21px;
}
.range {
margin-top: 10px;
}
.left-p {
display: inline-block;
float: left;
}
.right-p {
display: inline-block;
float: right;
margin-right: 95px;
}
.right-p1 {
display: inline-block;
float: right;
margin-right: 120px;
}
input[type="range"] {
margin-left: 10px;
-webkit-appearance: none;
outline: none;
height: 5px;
width: 410px;
cursor: pointer;
background-image: -webkit-gradient( linear,
left top,
right top,
color-stop(0.5, #f3c647),
color-stop(0.5, #979797));
}
input[type='range']::-webkit-slider-thumb {
-webkit-appearance: none !important;
cursor: pointer;
border-radius: 50%;
background-color: #f3c647;
border: 2px solid #979797;
height: 15px;
width: 15px;
}
.range2 {
margin-top: 10px;
}
h2 {
font-size: 18px;
margin-top: 26px;
margin-left: -10px;
width: 286px;
display: inline-block;
color: #979797;
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
margin-left: 65px;
-webkit-app-region: no-drag;
}
.switch input {
display: none;
}
.slider.round {
border-radius: 34px;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #f3c647;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 30px;
bottom: 4px;
background-color: white;
-webkit-transition: .2s;
}
input:checked+.slider {
background-color: #979797;
}
input:focus+.slider {
box-shadow: 0 0 1px #979797;
}
input:checked+.slider:before {
-webkit-transform: translateX(-26px);
-ms-transform: translateX(-26px);
transform: translateX(-26px);
}
.slider.round:before {
border-radius: 50%;
}
.start {
cursor: pointer;
width: 100px;
height: 25px;
background-color: #f3c647;
border-radius: 4px;
line-height: 25px;
margin-top: 31px;
margin-right: 5px;
margin-bottom: 5px;
margin-left: 0;
text-align: center;
-webkit-app-region: no-drag;
}
.start p {
color: black;
font-size: 15px;
margin-left: 0;
}
p.return {
-webkit-app-region: no-drag;
}
.checkbox2 {
margin-left: 7px;
float: left;
}
#goalAuto {
margin-top: 8px;
}
select {
-webkit-app-region: no-drag;
}
.goal_left {
margin-left: 2px;
}
.buttons {
margin: 0 auto;
}
ul li {
margin: 0 auto;
display: inline-block;
text-align: center;
}
ul {
text-align: center;
}
li {
margin-left: 10px;
margin-right: 10px;
}
.update {
cursor: pointer;
width: 100px;
height: 25px;
background-color: #f3c647;
border-radius: 4px;
line-height: 25px;
margin-top: 31px;
margin-right: 5px;
margin-bottom: 5px;
-webkit-app-region: no-drag;
}
.update p {
color: black;
font-size: 15px;
}
.image-upload {
display: inline-block;
}
.image-upload img {
cursor: pointer;
}
.image-upload > input {
display: none;
}
.pop-up {
margin-top: -44px;
position: absolute;
z-index: 20;
width: 659px;
height: 44px;
background-color: #f3c647;
line-height: 44px;
text-align: center;
} | HTMLs/newStream.css | * {
margin: 0;
padding: 0;
font-family: 'Play', sans-serif;
-webkit-user-select: none;
}
@font-face {
font-family: 'minecraft-rus';
src: url('../fonts/9303.ttf') format('truetype');
}
body {
overflow: hidden;
}
li {
-webkit-app-region: no-drag;
cursor: pointer;
}
.loading {
width: 659px;
height: 675px;
-webkit-app-region: drag;
background-color: #29292c;
}
.container {
width: 659px;
min-height: 675px;
-webkit-app-region: drag;
background-color: #29292c;
}
input,
.range,
.range2,
.getQR .getLink {
-webkit-app-region: no-drag;
cursor: pointer;
}
.valid:focus {
cursor: text;
}
.header {
height: 44px;
display: flex;
align-items: flex-end;
justify-content: space-between;
}
.header p {
display: inline-block;
font-size: 13px;
color: #979797;
margin-left: 20px;
}
.return {
cursor: pointer;
}
.header h1 {
display: inline-block;
color: #f3c647;
font-size: 24px;
}
.hr-ns {
height: 3px;
background-color: #f3c647;
border: none;
}
.upLayer input:focus {
color: #f3c647;
}
.upLayer input:focus,
.upLayer input:hover {
outline: none;
border-bottom: 3px solid #f3c647;
}
.upLayer h1 {
margin-left: 28px;
margin-top: 17px;
font-size: 21px;
color: #858585;
}
.ul-left {
float: left;
display: inline-block;
width: 247px;
list-style: none;
margin-left: 28px;
}
.ul-left li {
margin-top: 24px;
}
.ul-left li:first-child {}
.ul-left input {
background: none;
border: none;
border-bottom: 3px solid #979797;
color: #979797;
font-size: 16px;
width: 247px;
}
.mainButtons {
float: right;
display: inline-flex;
justify-content: space-between;
width: 247px;
height: 40px;
margin-right: 10px;
margin-top: 0px;
list-style: none;
}
.mainButtons li {
margin: 1px;
display: inline-block;
}
.getQR {
cursor: pointer;
width: 120px;
height: 35px;
background-color: #f3c647;
border-radius: 4px;
line-height: 25px;
margin-right: 5px;
margin-bottom: 5px;
margin-top: 0px;
-webkit-app-region: no-drag;
}
.getQR p {
padding-top: 5px;
color: black;
font-size: 20px;
}
.getLink {
cursor: pointer;
width: 120px;
height: 35px;
background-color: #f3c647;
border-radius: 4px;
line-height: 25px;
margin-right: 5px;
margin-bottom: 5px;
margin-top: 0px;
-webkit-app-region: no-drag;
}
.getLink p {
padding-top: 5px;
color: black;
font-size: 20px;
}
.ul-right {
float: right;
display: inline-flex;
justify-content: space-between;
height: 116px;
margin-right: 10px;
margin-top: 23px;
list-style: none;
}
.ul-right li label:first-child {
margin-right: 10px;
}
.ul-right li:last-child {
margin-left: 25px;
}
.ul-right li {
display: inline-block;
}
.bottomLayer {
margin-top: 210px;
margin-left: 28px;
}
.bottomLayer h1 {
color: #858585;
font-size: 16px;
margin-top: 20px;
}
.bottomLayer h1:first-child {
margin-top: 0;
font-size: 21px;
}
.bottomLayer p {
color: #979797;
font-size: 21px;
}
.range {
margin-top: 10px;
}
.left-p {
display: inline-block;
float: left;
}
.right-p {
display: inline-block;
float: right;
margin-right: 95px;
}
.right-p1 {
display: inline-block;
float: right;
margin-right: 120px;
}
input[type="range"] {
margin-left: 10px;
-webkit-appearance: none;
outline: none;
height: 5px;
width: 410px;
cursor: pointer;
background-image: -webkit-gradient( linear,
left top,
right top,
color-stop(0.5, #f3c647),
color-stop(0.5, #979797));
}
input[type='range']::-webkit-slider-thumb {
-webkit-appearance: none !important;
cursor: pointer;
border-radius: 50%;
background-color: #f3c647;
border: 2px solid #979797;
height: 15px;
width: 15px;
}
.range2 {
margin-top: 10px;
}
h2 {
font-size: 18px;
margin-top: 26px;
margin-left: -10px;
width: 286px;
display: inline-block;
color: #979797;
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
margin-left: 65px;
-webkit-app-region: no-drag;
}
.switch input {
display: none;
}
.slider.round {
border-radius: 34px;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #f3c647;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 30px;
bottom: 4px;
background-color: white;
-webkit-transition: .2s;
}
input:checked+.slider {
background-color: #979797;
}
input:focus+.slider {
box-shadow: 0 0 1px #979797;
}
input:checked+.slider:before {
-webkit-transform: translateX(-26px);
-ms-transform: translateX(-26px);
transform: translateX(-26px);
}
.slider.round:before {
border-radius: 50%;
}
.start {
cursor: pointer;
width: 100px;
height: 25px;
background-color: #f3c647;
border-radius: 4px;
line-height: 25px;
margin-top: 31px;
margin-right: 5px;
margin-bottom: 5px;
margin-left: 0;
text-align: center;
-webkit-app-region: no-drag;
}
.start p {
color: black;
font-size: 15px;
margin-left: 0;
}
p.return {
-webkit-app-region: no-drag;
}
.checkbox2 {
margin-left: 7px;
float: left;
}
#goalAuto {
margin-top: 8px;
}
select {
-webkit-app-region: no-drag;
}
.goal_left {
margin-left: 2px;
}
.buttons {
margin: 0 auto;
}
ul li {
margin: 0 auto;
display: inline-block;
text-align: center;
}
ul {
text-align: center;
}
li {
margin-left: 10px;
margin-right: 10px;
}
.update {
cursor: pointer;
width: 100px;
height: 25px;
background-color: #f3c647;
border-radius: 4px;
line-height: 25px;
margin-top: 31px;
margin-right: 5px;
margin-bottom: 5px;
-webkit-app-region: no-drag;
}
.update p {
color: black;
font-size: 15px;
}
.image-upload {
display: inline-block;
}
.image-upload img {
cursor: pointer;
}
.image-upload > input {
display: none;
}
.pop-up {
margin-top: -44px;
position: absolute;
z-index: 20;
width: 659px;
height: 44px;
background-color: #f3c647;
line-height: 44px;
text-align: center;
} | 0.422147 | 0.091992 |
body { background: black url(../background.jpg) fixed no-repeat center top; color: #a7a7a7; }
a,
a * { color: #3ac; }
a:hover *,
a:hover { color: white; }
h2 span,
h3 span,
h4 span,
h5 span,
h6 span { color: #a7a7a7; }
h2 { color: #ca3; }
legend,
h3,
h4,
h5,
h3 a,
/*h4 a,*/
label,
dt,
h5 a { color: #ac3; }
abbr { border-bottom-color: #333; }
/***** /TEXT *****/
/***** DOCK *****/
#dock { background: transparent url(../black75.png); border-bottom: 1px solid #333; padding: 0.4116em 0; }
#dock label,
#dock div { color: #f2f2f2; }
/***** /DOCK *****/
/***** HEADER *****/
#header { }
#header li { background: url(../black50.png); }
#header li:hover { background: url(../black75.png); }
#header li a { color: #ccc; }
#header li a:hover { color: white; }
#header li.selected { background: black; border-bottom: 1px solid black; }
#header li.selected a { color: #ca3; }
/***** /HEADER *****/
/***** FOOTER *****/
#footer { background: url(../black50.png); border-top: 1px solid #333; border-bottom: 1px solid #333; }
/***** /FOOTER *****/
/***** END *****/
#end { color: #f2f2f2; }
/***** /END *****/
/***** CENTER *****/
#content .container-12 { background: black; }
#title { background: #111; border-bottom: 1px solid #222; }
#tabs li { background: black; border-right: 1px solid #111; }
#tabs li:hover,
#tabs li.selected { background: #222; }
#tabs li.selected a { color: #ca3; }
/***** /CENTER *****/
/***** FORMS *****/
input,
select,
textarea { background: #111; border: 1px solid #666; color: #f2f2f2; }
input:hover,
select:hover,
textarea:hover { border-color: #999; }
input:focus,
select:focus,
textarea:focus { border-color: #f2f2f2; }
input[type="checkbox"] + label,
input[type="radio"] + label { color: #a7a7a7; }
input[type="submit"] { background: #3ac; border: 0 none; color: black; }
input[type="submit"]:hover { background: white; }
form .error .info { background: red; color: black; }
form .error input { border-color: red; }
form .notice .info { background: green; color: black; }
form .notice input { border-color: green; }
.hint { color: #666; }
/***** /FORMS *****/
/***** ELEMENTS *****/
/*.tab,*/
/*.container,
ul.contentlist li { margin-left: -10px; margin-right: -10px; padding-left: 10px; padding-right: 10px; }*/
.tab .actions a.action,
.container .actions a.action,
ul.contentlist li .actions a.action { background: #222; }
/*.tab:hover,*/
.container:hover,
ul.contentlist li:hover { background: #111; }
.tab:hover .actions a.action,
.container:hover .actions a.action,
ul.contentlist li:hover .actions a.action,
a.action { background: #3ac; color: black; padding: 0 0.5em; -moz-border-radius: 5px; }
ul.contentlist li:hover .actions a[class*="-add"],
a[class*="-add"] { background: #ac3; }
ul.contentlist li:hover .actions a[class*="-delete"],
a[class*="-delete"] { background: #c33; }
ul.contentlist li .actions a.action:hover,
a.action:hover { background: white; text-decoration: none; }
ul.contentlist li + li { border-top: 1px dashed #333; padding-top: 0.75em; }
.tip { color: #999; }
.step,
.date .day { color: #ac3; }
.date span { background: #222; }
.date .weekday { background: #333; -moz-border-radius: 5px 0 0 0; }
.date .month { -moz-border-radius: 0 0 5px 5px; }
.date.today .weekday { background: #ac3; color: black; }
.button { background-image: url(button.png); color: #ca3; }
.my { color: #b0a88a; }
.owner { color: #a9ba6d; }
.pills li label { background: #222; color: #a7a7a7; -moz-border-radius: 5px; }
.pills li label:hover { background: white; color: black; }
.pills li input[type="checkbox"]:checked + label { background: #ac3; color: black; }
/***** /ELEMENTS *****/
/***** JQUERY *****/
/* autocomplete */
.ac_results { border: 1px solid black; background-color: white; }
.ac_loading { background: white; }
.ac_odd { background-color: #eee; }
.ac_over { background-color: #0a246a; color: white; }
.ac_over strong { color: yellow; }
/* /autocomplete */
/***** /JQUERY *****/
/***** events *****/
#events .calendar .events { border-top: 1px solid #333; }
/***** events *****/
/***** profile *****/
#member .comments label.private,
#member .comments .private .comment { color: #a3a; }
#member #comment.private { border-color: #a3a; }
/***** /profile *****/
/***** forum *****/
span.locked { color: #333; font-variant: small-caps; }
blockquote { color: #777; }
/*blockquote { background: url(quote_close.gif) no-repeat right bottom; }
blockquote:first-letter { background: url(quote_open.gif) no-repeat left top; }*/
/***** /forum *****/ | www/ui/dark/skin.css |
body { background: black url(../background.jpg) fixed no-repeat center top; color: #a7a7a7; }
a,
a * { color: #3ac; }
a:hover *,
a:hover { color: white; }
h2 span,
h3 span,
h4 span,
h5 span,
h6 span { color: #a7a7a7; }
h2 { color: #ca3; }
legend,
h3,
h4,
h5,
h3 a,
/*h4 a,*/
label,
dt,
h5 a { color: #ac3; }
abbr { border-bottom-color: #333; }
/***** /TEXT *****/
/***** DOCK *****/
#dock { background: transparent url(../black75.png); border-bottom: 1px solid #333; padding: 0.4116em 0; }
#dock label,
#dock div { color: #f2f2f2; }
/***** /DOCK *****/
/***** HEADER *****/
#header { }
#header li { background: url(../black50.png); }
#header li:hover { background: url(../black75.png); }
#header li a { color: #ccc; }
#header li a:hover { color: white; }
#header li.selected { background: black; border-bottom: 1px solid black; }
#header li.selected a { color: #ca3; }
/***** /HEADER *****/
/***** FOOTER *****/
#footer { background: url(../black50.png); border-top: 1px solid #333; border-bottom: 1px solid #333; }
/***** /FOOTER *****/
/***** END *****/
#end { color: #f2f2f2; }
/***** /END *****/
/***** CENTER *****/
#content .container-12 { background: black; }
#title { background: #111; border-bottom: 1px solid #222; }
#tabs li { background: black; border-right: 1px solid #111; }
#tabs li:hover,
#tabs li.selected { background: #222; }
#tabs li.selected a { color: #ca3; }
/***** /CENTER *****/
/***** FORMS *****/
input,
select,
textarea { background: #111; border: 1px solid #666; color: #f2f2f2; }
input:hover,
select:hover,
textarea:hover { border-color: #999; }
input:focus,
select:focus,
textarea:focus { border-color: #f2f2f2; }
input[type="checkbox"] + label,
input[type="radio"] + label { color: #a7a7a7; }
input[type="submit"] { background: #3ac; border: 0 none; color: black; }
input[type="submit"]:hover { background: white; }
form .error .info { background: red; color: black; }
form .error input { border-color: red; }
form .notice .info { background: green; color: black; }
form .notice input { border-color: green; }
.hint { color: #666; }
/***** /FORMS *****/
/***** ELEMENTS *****/
/*.tab,*/
/*.container,
ul.contentlist li { margin-left: -10px; margin-right: -10px; padding-left: 10px; padding-right: 10px; }*/
.tab .actions a.action,
.container .actions a.action,
ul.contentlist li .actions a.action { background: #222; }
/*.tab:hover,*/
.container:hover,
ul.contentlist li:hover { background: #111; }
.tab:hover .actions a.action,
.container:hover .actions a.action,
ul.contentlist li:hover .actions a.action,
a.action { background: #3ac; color: black; padding: 0 0.5em; -moz-border-radius: 5px; }
ul.contentlist li:hover .actions a[class*="-add"],
a[class*="-add"] { background: #ac3; }
ul.contentlist li:hover .actions a[class*="-delete"],
a[class*="-delete"] { background: #c33; }
ul.contentlist li .actions a.action:hover,
a.action:hover { background: white; text-decoration: none; }
ul.contentlist li + li { border-top: 1px dashed #333; padding-top: 0.75em; }
.tip { color: #999; }
.step,
.date .day { color: #ac3; }
.date span { background: #222; }
.date .weekday { background: #333; -moz-border-radius: 5px 0 0 0; }
.date .month { -moz-border-radius: 0 0 5px 5px; }
.date.today .weekday { background: #ac3; color: black; }
.button { background-image: url(button.png); color: #ca3; }
.my { color: #b0a88a; }
.owner { color: #a9ba6d; }
.pills li label { background: #222; color: #a7a7a7; -moz-border-radius: 5px; }
.pills li label:hover { background: white; color: black; }
.pills li input[type="checkbox"]:checked + label { background: #ac3; color: black; }
/***** /ELEMENTS *****/
/***** JQUERY *****/
/* autocomplete */
.ac_results { border: 1px solid black; background-color: white; }
.ac_loading { background: white; }
.ac_odd { background-color: #eee; }
.ac_over { background-color: #0a246a; color: white; }
.ac_over strong { color: yellow; }
/* /autocomplete */
/***** /JQUERY *****/
/***** events *****/
#events .calendar .events { border-top: 1px solid #333; }
/***** events *****/
/***** profile *****/
#member .comments label.private,
#member .comments .private .comment { color: #a3a; }
#member #comment.private { border-color: #a3a; }
/***** /profile *****/
/***** forum *****/
span.locked { color: #333; font-variant: small-caps; }
blockquote { color: #777; }
/*blockquote { background: url(quote_close.gif) no-repeat right bottom; }
blockquote:first-letter { background: url(quote_open.gif) no-repeat left top; }*/
/***** /forum *****/ | 0.373533 | 0.073463 |
@charset "UTF-8";
a {
color: #cbcbcb;
}
a:hover {
color: #cbcbcb;
}
.seasontwo {
position: absolute;
bottom: 45px;
right: 15%;
width: 65px;
}
.seasontwo img {
width: 100%;
}
.main-logo {
position: relative;
}
.main-logo img {
max-width: 107px;
}
.main-slogan {
padding-top: 15vh;
}
.main-slogan i {
margin-top: 90px;
color: #a47c52;
font-size: 24px;
opacity: 0;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
.main-slogan .show {
opacity: 1;
}
.slogan-img img {
width: 100%;
}
.rules-box {
max-width: 720px;
}
.rules-box p {
text-align: left;
padding: 5px 0px;
}
.rules-box p:nth-child(2) {
margin-top: 45px;
}
.new-about {
margin-top: 350px;
color: #cbcbcb;
opacity: 0;
-webkit-transition: 1s all;
transition: 1s all;
text-align: center;
padding: 20px;
}
@media (max-width: 776px) {
.new-about {
margin-top: 150px;
opacity: 1;
}
}
.new-about p {
font-size: 16px;
line-height: 1.55em;
letter-spacing: 1px;
}
.new-about h1 {
font-size: 18px;
letter-spacing: 2.5px;
line-height: 1.55em;
margin-bottom: 60px;
}
.new-about .pre-order-info {
margin: auto;
max-width: 880px;
}
@media (max-width: 776px) {
.new-about .pre-order-info {
padding: 0 25px;
}
}
.new-about .progress-bar-box {
margin-top: 80px;
padding: 7px;
border: solid 1px #cbcbcb;
}
.new-about .progress-bar-box .bar-box {
position: relative;
height: 35px;
}
.new-about .progress-bar-box .bar-box:after, .new-about .progress-bar-box .bar-box:before {
position: absolute;
bottom: -45px;
width: 120px;
color: #cbcbcb;
font-size: 14px;
}
.new-about .progress-bar-box .bar-box:after {
content: "預售開始";
left: 0%;
margin-left: -68px;
}
@media (max-width: 776px) {
.new-about .progress-bar-box .bar-box:after {
margin-left: -7px;
text-align: left;
}
}
.new-about .progress-bar-box .bar-box:before {
content: '目標 3000張';
right: 0%;
margin-right: -68px;
}
@media (max-width: 776px) {
.new-about .progress-bar-box .bar-box:before {
margin-right: -7px;
text-align: right;
}
}
.new-about .progress-bar-box .bar {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 45%;
background: #a47c52;
}
.new-about .info-box {
margin-top: 120px;
text-align: center;
padding-bottom: 120px;
}
.new-about .info-box h1 {
color: #cbcbcb;
margin-bottom: 25px;
font-size: 18px;
}
.new-about .info-box p {
color: #a47c52;
font-size: 36px;
}
.season-two-about {
background: rgba(250, 250, 250, 0.05);
width: 100%;
padding: 60px 25px;
}
@media (max-width: 776px) {
.season-two-about {
margin: 0 -15px;
width: auto;
}
}
.season-two-about p {
font-size: 14px;
line-height: 1.55em;
letter-spacing: 1px;
padding: 10px 10px;
}
.timeline-box {
padding: 60px 25px;
}
.timeline-box span {
font-size: 14px;
color: #999;
}
.timeline {
max-width: 480px;
margin: auto;
margin-bottom: 45px;
}
.timeline li {
position: relative;
padding-left: 85px;
color: #999999;
text-align: left;
padding-bottom: 25px;
font-size: 14px;
}
.timeline li:nth-child(3) .dot:after, .timeline li:nth-child(4) .dot:after {
height: 70px;
}
.timeline li:last-child .dot:after {
display: none;
}
.timeline li p {
font-size: 14px;
}
.timeline li .date {
position: absolute;
left: 0;
top: 1px;
}
.timeline li .dot {
position: absolute;
top: 4px;
left: 52px;
border: solid 1px #a47c52;
border-radius: 100%;
height: 14px;
width: 14px;
z-index: 10;
}
.timeline li .dot:before {
content: '';
background: #a47c52;
height: 8px;
width: 8px;
border-radius: 100%;
top: 50%;
left: 50%;
margin-top: -4px;
margin-left: -4px;
position: absolute;
z-index: 10;
}
.timeline li .dot:after {
content: '';
width: 1px;
position: absolute;
top: 3px;
left: 50%;
background: #ccc;
height: 50px;
z-index: -1;
}
.timeline .important .dot {
-webkit-transform: scale(1.25);
transform: scale(1.25);
-webkit-transform-origin: center;
transform-origin: center;
top: 2px;
}
.timeline .important .dot:after {
height: 45px;
}
.timeline .important p, .timeline .important .date {
color: #cbcbcb;
}
.mask-box {
position: absolute;
top: 0;
left: 0;
height: 100vh;
width: 100%;
z-index: 1001;
}
@media (max-width: 776px) {
.mask-box {
overflow: auto;
}
}
.mask-box .fa-angle-down {
cursor: pointer;
}
.active .new-about {
opacity: 1;
}
.active .mask-box {
overflow: auto;
padding-bottom: 5px;
}
.season-2-footer {
padding: 60px;
text-align: center;
}
.season-2-footer .footer-box {
position: relative;
}
.season-2-footer .footer-box .contact-box {
position: absolute;
bottom: 0;
text-align: left;
color: #cbcbcb;
}
@media (max-width: 776px) {
.season-2-footer .footer-box .contact-box h4 {
margin-bottom: 25px;
}
}
.season-2-footer .footer-box .contact-box p {
margin-bottom: 0;
}
@media (max-width: 776px) {
.season-2-footer .footer-box .contact-box p {
line-height: 1.75em;
}
}
@media (max-width: 776px) {
.season-2-footer .footer-box .contact-box {
position: relative;
text-align: center;
}
}
.season-2-footer .footer-box .copyright {
position: absolute;
bottom: 0px;
width: 100%;
color: #cbcbcb;
}
@media (max-width: 776px) {
.season-2-footer .footer-box .copyright {
position: relative;
text-align: center;
}
}
.season-2-footer .footer-box .hyper-link {
text-align: right;
}
@media (max-width: 776px) {
.season-2-footer .footer-box .hyper-link {
text-align: center;
margin: 40px auto;
}
}
.season-2-footer .footer-box .hyper-link li {
display: inline-block;
padding-left: 17px;
font-size: 18px;
}
@media (max-width: 776px) {
.season-2-footer .footer-box .hyper-link li {
padding: 15px 15px;
}
}
.season-2-footer .footer-box .hyper-link li i {
font-size: 24px;
}
.presale-logo-box {
width: 300px;
text-align: center;
position: relative;
margin: auto;
margin-bottom: 60px;
}
@media (max-width: 776px) {
.presale-logo-box {
max-width: 210px;
}
}
.presale-logo-box img:first-child {
width: 100%;
}
.presale-logo-box img:nth-child(2) {
position: absolute;
left: 100%;
bottom: 0;
width: 80px;
}
@media (max-width: 776px) {
.presale-logo-box img:nth-child(2) {
max-width: 45px;
}
}
.strong-words {
color: #a47c52;
}
.pre-order-section {
text-align: center;
color: #cbcbcb;
}
@media (max-width: 776px) {
.pre-order-section {
padding-top: 45px;
}
}
.pre-order-section h4 {
margin: 65px auto 45px;
}
.pre-order-section p {
line-height: 1.75em;
letter-spacing: 1px;
}
.pre-order-section .pre-order-box {
max-width: 720px;
margin: 45px auto;
}
@media (max-width: 776px) {
.pre-order-section .pre-order-box {
margin-bottom: 0px;
}
}
.pre-order-section .food-box {
max-width: 1080px;
}
@media (max-width: 776px) {
.pre-order-section .row {
padding: 25px;
}
}
.pre-order-section .row .col-md-4 {
margin: 20px auto;
}
.pre-order-section .row .col-md-6 {
margin: 20px auto;
}
.pre-order-section .row .col-md-6 > a div {
position: relative;
}
.pre-order-section .row .col-md-6 > a div > img {
-webkit-filter: brightness(100%);
filter: brightness(100%);
-webkit-transition: 0.5s all;
transition: 0.5s all;
}
.pre-order-section .row .col-md-6 > a div > img:hover {
-webkit-filter: brightness(85%);
filter: brightness(85%);
}
.pre-order-section .row .col-md-6 .limit {
position: absolute;
top: -15px;
left: -25px;
width: 50px;
}
.pre-order-section .row .col-md-6 p {
padding-top: 5px;
height: 1.75em;
margin-bottom: 25px;
}
.pre-order-section .row img {
width: 100%;
}
@media (max-width: 776px) {
.wrap {
padding-top: 45px;
}
}
.mobile-menu .page-list li {
padding: 20px;
}
.mobile-menu .page-list a:last-child li {
border-bottom: none;
}
.mobile-menu .social-list {
text-align: center;
}
.mobile-menu .social-list li {
font-size: 24px;
display: inline-block;
padding: 15px;
}
.color-white {
color: #fff !important;
}
.supriselab-logo {
max-width: 275px;
margin-bottom: -15px !important;
}
.team-box {
margin-top: 45px;
}
.team-box img {
width: 100%;
margin: 25px auto;
}
.team-box div {
display: inline-block;
text-align: left;
padding: 7px;
}
@media (max-width: 776px) {
.team-box div {
text-align: center;
}
}
.team-box div:nth-of-type(odd) {
width: 30%;
}
@media (max-width: 776px) {
.team-box div:nth-of-type(odd) {
width: 100%;
}
}
.team-box div:nth-of-type(even) {
width: 60%;
color: #a47c52;
}
@media (max-width: 776px) {
.team-box div:nth-of-type(even) {
width: 100%;
}
}
/*# sourceMappingURL=print.css.map */ | public/dark2/style/scss/print.css | @charset "UTF-8";
a {
color: #cbcbcb;
}
a:hover {
color: #cbcbcb;
}
.seasontwo {
position: absolute;
bottom: 45px;
right: 15%;
width: 65px;
}
.seasontwo img {
width: 100%;
}
.main-logo {
position: relative;
}
.main-logo img {
max-width: 107px;
}
.main-slogan {
padding-top: 15vh;
}
.main-slogan i {
margin-top: 90px;
color: #a47c52;
font-size: 24px;
opacity: 0;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
.main-slogan .show {
opacity: 1;
}
.slogan-img img {
width: 100%;
}
.rules-box {
max-width: 720px;
}
.rules-box p {
text-align: left;
padding: 5px 0px;
}
.rules-box p:nth-child(2) {
margin-top: 45px;
}
.new-about {
margin-top: 350px;
color: #cbcbcb;
opacity: 0;
-webkit-transition: 1s all;
transition: 1s all;
text-align: center;
padding: 20px;
}
@media (max-width: 776px) {
.new-about {
margin-top: 150px;
opacity: 1;
}
}
.new-about p {
font-size: 16px;
line-height: 1.55em;
letter-spacing: 1px;
}
.new-about h1 {
font-size: 18px;
letter-spacing: 2.5px;
line-height: 1.55em;
margin-bottom: 60px;
}
.new-about .pre-order-info {
margin: auto;
max-width: 880px;
}
@media (max-width: 776px) {
.new-about .pre-order-info {
padding: 0 25px;
}
}
.new-about .progress-bar-box {
margin-top: 80px;
padding: 7px;
border: solid 1px #cbcbcb;
}
.new-about .progress-bar-box .bar-box {
position: relative;
height: 35px;
}
.new-about .progress-bar-box .bar-box:after, .new-about .progress-bar-box .bar-box:before {
position: absolute;
bottom: -45px;
width: 120px;
color: #cbcbcb;
font-size: 14px;
}
.new-about .progress-bar-box .bar-box:after {
content: "預售開始";
left: 0%;
margin-left: -68px;
}
@media (max-width: 776px) {
.new-about .progress-bar-box .bar-box:after {
margin-left: -7px;
text-align: left;
}
}
.new-about .progress-bar-box .bar-box:before {
content: '目標 3000張';
right: 0%;
margin-right: -68px;
}
@media (max-width: 776px) {
.new-about .progress-bar-box .bar-box:before {
margin-right: -7px;
text-align: right;
}
}
.new-about .progress-bar-box .bar {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 45%;
background: #a47c52;
}
.new-about .info-box {
margin-top: 120px;
text-align: center;
padding-bottom: 120px;
}
.new-about .info-box h1 {
color: #cbcbcb;
margin-bottom: 25px;
font-size: 18px;
}
.new-about .info-box p {
color: #a47c52;
font-size: 36px;
}
.season-two-about {
background: rgba(250, 250, 250, 0.05);
width: 100%;
padding: 60px 25px;
}
@media (max-width: 776px) {
.season-two-about {
margin: 0 -15px;
width: auto;
}
}
.season-two-about p {
font-size: 14px;
line-height: 1.55em;
letter-spacing: 1px;
padding: 10px 10px;
}
.timeline-box {
padding: 60px 25px;
}
.timeline-box span {
font-size: 14px;
color: #999;
}
.timeline {
max-width: 480px;
margin: auto;
margin-bottom: 45px;
}
.timeline li {
position: relative;
padding-left: 85px;
color: #999999;
text-align: left;
padding-bottom: 25px;
font-size: 14px;
}
.timeline li:nth-child(3) .dot:after, .timeline li:nth-child(4) .dot:after {
height: 70px;
}
.timeline li:last-child .dot:after {
display: none;
}
.timeline li p {
font-size: 14px;
}
.timeline li .date {
position: absolute;
left: 0;
top: 1px;
}
.timeline li .dot {
position: absolute;
top: 4px;
left: 52px;
border: solid 1px #a47c52;
border-radius: 100%;
height: 14px;
width: 14px;
z-index: 10;
}
.timeline li .dot:before {
content: '';
background: #a47c52;
height: 8px;
width: 8px;
border-radius: 100%;
top: 50%;
left: 50%;
margin-top: -4px;
margin-left: -4px;
position: absolute;
z-index: 10;
}
.timeline li .dot:after {
content: '';
width: 1px;
position: absolute;
top: 3px;
left: 50%;
background: #ccc;
height: 50px;
z-index: -1;
}
.timeline .important .dot {
-webkit-transform: scale(1.25);
transform: scale(1.25);
-webkit-transform-origin: center;
transform-origin: center;
top: 2px;
}
.timeline .important .dot:after {
height: 45px;
}
.timeline .important p, .timeline .important .date {
color: #cbcbcb;
}
.mask-box {
position: absolute;
top: 0;
left: 0;
height: 100vh;
width: 100%;
z-index: 1001;
}
@media (max-width: 776px) {
.mask-box {
overflow: auto;
}
}
.mask-box .fa-angle-down {
cursor: pointer;
}
.active .new-about {
opacity: 1;
}
.active .mask-box {
overflow: auto;
padding-bottom: 5px;
}
.season-2-footer {
padding: 60px;
text-align: center;
}
.season-2-footer .footer-box {
position: relative;
}
.season-2-footer .footer-box .contact-box {
position: absolute;
bottom: 0;
text-align: left;
color: #cbcbcb;
}
@media (max-width: 776px) {
.season-2-footer .footer-box .contact-box h4 {
margin-bottom: 25px;
}
}
.season-2-footer .footer-box .contact-box p {
margin-bottom: 0;
}
@media (max-width: 776px) {
.season-2-footer .footer-box .contact-box p {
line-height: 1.75em;
}
}
@media (max-width: 776px) {
.season-2-footer .footer-box .contact-box {
position: relative;
text-align: center;
}
}
.season-2-footer .footer-box .copyright {
position: absolute;
bottom: 0px;
width: 100%;
color: #cbcbcb;
}
@media (max-width: 776px) {
.season-2-footer .footer-box .copyright {
position: relative;
text-align: center;
}
}
.season-2-footer .footer-box .hyper-link {
text-align: right;
}
@media (max-width: 776px) {
.season-2-footer .footer-box .hyper-link {
text-align: center;
margin: 40px auto;
}
}
.season-2-footer .footer-box .hyper-link li {
display: inline-block;
padding-left: 17px;
font-size: 18px;
}
@media (max-width: 776px) {
.season-2-footer .footer-box .hyper-link li {
padding: 15px 15px;
}
}
.season-2-footer .footer-box .hyper-link li i {
font-size: 24px;
}
.presale-logo-box {
width: 300px;
text-align: center;
position: relative;
margin: auto;
margin-bottom: 60px;
}
@media (max-width: 776px) {
.presale-logo-box {
max-width: 210px;
}
}
.presale-logo-box img:first-child {
width: 100%;
}
.presale-logo-box img:nth-child(2) {
position: absolute;
left: 100%;
bottom: 0;
width: 80px;
}
@media (max-width: 776px) {
.presale-logo-box img:nth-child(2) {
max-width: 45px;
}
}
.strong-words {
color: #a47c52;
}
.pre-order-section {
text-align: center;
color: #cbcbcb;
}
@media (max-width: 776px) {
.pre-order-section {
padding-top: 45px;
}
}
.pre-order-section h4 {
margin: 65px auto 45px;
}
.pre-order-section p {
line-height: 1.75em;
letter-spacing: 1px;
}
.pre-order-section .pre-order-box {
max-width: 720px;
margin: 45px auto;
}
@media (max-width: 776px) {
.pre-order-section .pre-order-box {
margin-bottom: 0px;
}
}
.pre-order-section .food-box {
max-width: 1080px;
}
@media (max-width: 776px) {
.pre-order-section .row {
padding: 25px;
}
}
.pre-order-section .row .col-md-4 {
margin: 20px auto;
}
.pre-order-section .row .col-md-6 {
margin: 20px auto;
}
.pre-order-section .row .col-md-6 > a div {
position: relative;
}
.pre-order-section .row .col-md-6 > a div > img {
-webkit-filter: brightness(100%);
filter: brightness(100%);
-webkit-transition: 0.5s all;
transition: 0.5s all;
}
.pre-order-section .row .col-md-6 > a div > img:hover {
-webkit-filter: brightness(85%);
filter: brightness(85%);
}
.pre-order-section .row .col-md-6 .limit {
position: absolute;
top: -15px;
left: -25px;
width: 50px;
}
.pre-order-section .row .col-md-6 p {
padding-top: 5px;
height: 1.75em;
margin-bottom: 25px;
}
.pre-order-section .row img {
width: 100%;
}
@media (max-width: 776px) {
.wrap {
padding-top: 45px;
}
}
.mobile-menu .page-list li {
padding: 20px;
}
.mobile-menu .page-list a:last-child li {
border-bottom: none;
}
.mobile-menu .social-list {
text-align: center;
}
.mobile-menu .social-list li {
font-size: 24px;
display: inline-block;
padding: 15px;
}
.color-white {
color: #fff !important;
}
.supriselab-logo {
max-width: 275px;
margin-bottom: -15px !important;
}
.team-box {
margin-top: 45px;
}
.team-box img {
width: 100%;
margin: 25px auto;
}
.team-box div {
display: inline-block;
text-align: left;
padding: 7px;
}
@media (max-width: 776px) {
.team-box div {
text-align: center;
}
}
.team-box div:nth-of-type(odd) {
width: 30%;
}
@media (max-width: 776px) {
.team-box div:nth-of-type(odd) {
width: 100%;
}
}
.team-box div:nth-of-type(even) {
width: 60%;
color: #a47c52;
}
@media (max-width: 776px) {
.team-box div:nth-of-type(even) {
width: 100%;
}
}
/*# sourceMappingURL=print.css.map */ | 0.425605 | 0.058723 |
@import url('https://fonts.googleapis.com/css?family=Francois+One|Hind+Vadodara');
/*font-family: 'Hind Vadodara', sans-serif;*/
/*font-family: 'Francois One', sans-serif;*/
.centrar{
margin: auto;
width: 1000px;
}
body{
margin: auto;
font-family: 'Hind Vadodara', sans-serif;
}
.header{
background-color: white;
width: 100%;
padding: 0px;
margin: auto;
}
.titulo img{
margin: auto;
display:block;
padding-top: 40px;
padding-bottom: 40px;
}
.menu{
background-color: #00B4EE;
padding-top: 10px;
padding-bottom: 10px;
}
.menu_container{
width: 1000px;
margin: auto;
}
.menu ul{
text-align: right;
padding-left: 0px;
margin-bottom: 24px;
font-size: 1.5em;
}
.menu li{
display: inline;
margin-left: 0px;
margin-right: 0px;
}
.menu a{
text-decoration: none;
color: black;
transition: all 0.3s;
margin-right: 20px;
margin-left: 20px;
}
.menu a:hover{
color: white;
}
.apartado1 h2{
padding-top: 40px;
color: black;
text-align: left;
font-size: 3em;
margin-bottom: 0px;
}
.paragrafo1 p{
width: 450px;
font-size: 1.5em;
float: left;
padding-bottom: 80px;
}
.paragrafo1 img{
width: 40%;
float: right;
}
.paragrafo2 ul{
padding-top: 320px;
padding-left: 14px;
text-align: left;
}
.paragrafo2 li{
text-align: left;
}
.paragrafo2 a{
font-size: 1.5em;
}
.paragrafo2 img{
width: 40%;
float: left;
padding-left: 45px;
padding-right: 45px;
}
.paragrafo3 p{
width: 450px;
font-size: 1.5em;
float: left;
padding-bottom: 80px;
}
.paragrafo3 img{
width: 40%;
float: right;
}
.rutina{
margin: auto;
border-collapse: collapse;
}
.rutina th{
padding: 10px 45px;
background-color: black;
color: white;
text-align: center;
border: solid white;
}
.rutina td{
padding: 10px 8px;
background-color: black;
color: white;
text-align: center;
border: solid white;
}
.paragrafo4 p{
width: 450px;
font-size: 1.5em;
float: left;
padding-bottom: 80px;
}
.paragrafo4 img{
width: 40%;
float: right;
}
.paragrafo5 p{
width: 450px;
font-size: 1.5em;
}
.paragrafo5 ol{
padding-left: 14px;
text-align: left;
}
.paragrafo5 li{
text-align: left;
}
.paragrafo5 a{
font-size: 1.5em;
}
.paragrafo6 h3{
width: 450px;
font-size: 1.5em;
}
.paragrafo6 ol{
padding-left: 14px;
text-align: left;
}
.paragrafo6 li{
text-align: left;
}
.paragrafo6 a{
font-size: 1.5em;
}
.paragrafo6 img{
width: 60%;
}
/*Pié de página*/
.footer{
margin-top: 80px;
padding-top: 80px;
background-color: #00B4EE;
height: 420px;
}
.f_1{
width: 450px;
border-right: 1px solid white;
float: left;
}
.f_1 p{
color: white;
font-size: 1.5em;
text-align: left;
display: inline-block;
vertical-align: middle;
}
.f_1 img{
width: 50px;
vertical-align: middle;
}
.f_2 iframe{
width: 50%;
padding-top: 18px;
padding-left: 45px;
}
.footer2{
margin-top: 100px;
background-color: white;
height: 80px;
}
.footer2 p{
color: black;
font-size: 1.5em;
text-align: center;
padding-top: 20px;
}
.clear{
clear: both;
} | Activitat1M17/Activitat1/WEB/gym.css | @import url('https://fonts.googleapis.com/css?family=Francois+One|Hind+Vadodara');
/*font-family: 'Hind Vadodara', sans-serif;*/
/*font-family: 'Francois One', sans-serif;*/
.centrar{
margin: auto;
width: 1000px;
}
body{
margin: auto;
font-family: 'Hind Vadodara', sans-serif;
}
.header{
background-color: white;
width: 100%;
padding: 0px;
margin: auto;
}
.titulo img{
margin: auto;
display:block;
padding-top: 40px;
padding-bottom: 40px;
}
.menu{
background-color: #00B4EE;
padding-top: 10px;
padding-bottom: 10px;
}
.menu_container{
width: 1000px;
margin: auto;
}
.menu ul{
text-align: right;
padding-left: 0px;
margin-bottom: 24px;
font-size: 1.5em;
}
.menu li{
display: inline;
margin-left: 0px;
margin-right: 0px;
}
.menu a{
text-decoration: none;
color: black;
transition: all 0.3s;
margin-right: 20px;
margin-left: 20px;
}
.menu a:hover{
color: white;
}
.apartado1 h2{
padding-top: 40px;
color: black;
text-align: left;
font-size: 3em;
margin-bottom: 0px;
}
.paragrafo1 p{
width: 450px;
font-size: 1.5em;
float: left;
padding-bottom: 80px;
}
.paragrafo1 img{
width: 40%;
float: right;
}
.paragrafo2 ul{
padding-top: 320px;
padding-left: 14px;
text-align: left;
}
.paragrafo2 li{
text-align: left;
}
.paragrafo2 a{
font-size: 1.5em;
}
.paragrafo2 img{
width: 40%;
float: left;
padding-left: 45px;
padding-right: 45px;
}
.paragrafo3 p{
width: 450px;
font-size: 1.5em;
float: left;
padding-bottom: 80px;
}
.paragrafo3 img{
width: 40%;
float: right;
}
.rutina{
margin: auto;
border-collapse: collapse;
}
.rutina th{
padding: 10px 45px;
background-color: black;
color: white;
text-align: center;
border: solid white;
}
.rutina td{
padding: 10px 8px;
background-color: black;
color: white;
text-align: center;
border: solid white;
}
.paragrafo4 p{
width: 450px;
font-size: 1.5em;
float: left;
padding-bottom: 80px;
}
.paragrafo4 img{
width: 40%;
float: right;
}
.paragrafo5 p{
width: 450px;
font-size: 1.5em;
}
.paragrafo5 ol{
padding-left: 14px;
text-align: left;
}
.paragrafo5 li{
text-align: left;
}
.paragrafo5 a{
font-size: 1.5em;
}
.paragrafo6 h3{
width: 450px;
font-size: 1.5em;
}
.paragrafo6 ol{
padding-left: 14px;
text-align: left;
}
.paragrafo6 li{
text-align: left;
}
.paragrafo6 a{
font-size: 1.5em;
}
.paragrafo6 img{
width: 60%;
}
/*Pié de página*/
.footer{
margin-top: 80px;
padding-top: 80px;
background-color: #00B4EE;
height: 420px;
}
.f_1{
width: 450px;
border-right: 1px solid white;
float: left;
}
.f_1 p{
color: white;
font-size: 1.5em;
text-align: left;
display: inline-block;
vertical-align: middle;
}
.f_1 img{
width: 50px;
vertical-align: middle;
}
.f_2 iframe{
width: 50%;
padding-top: 18px;
padding-left: 45px;
}
.footer2{
margin-top: 100px;
background-color: white;
height: 80px;
}
.footer2 p{
color: black;
font-size: 1.5em;
text-align: center;
padding-top: 20px;
}
.clear{
clear: both;
} | 0.269806 | 0.060197 |
:root {
/* Accent Colors
================================================================ */
/* Primary Colors */
--primary-accent: #e27c74;
--primary-accent-font: #ffffff;
/* Secondary Colors */
--secondary-accent: #74524c;
--secondary-accent-font: #fff;
/* Base Colors
================================================================ */
/* Background Colors */
--background-color: #ffffff;
--background-color-faded: #f1f1f1;
/* Font Colors */
--font-color: #443230;
--font-color-faded: #855d56;
/* Font Styles
================================================================ */
/* Font Sizes */
--font-size: .9rem;
--font-size-sm: 80%;
--font-size-lg: 120%;
/* Font Family */
--font-family-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
--font-family-display: "Comfortaa", var(--font-family-body);
--font-family-code: "Monaco", "Consolas", "Lucida Console", monospace;
/* Font Weight */
--font-weight: 400;
--font-weight-light: 300;
--font-weight-heavy: 500;
/* Border Styles
================================================================ */
--border-color: rgba(0, 0, 0, 0.125);
--border-width: 1px;
--border-style: solid;
/* Border Radius */
--border-radius: 1rem;
--border-radius-sm: .75rem;
--border-radius-lg: 1.25rem;
/* Body
================================================================ */
/* Body Background */
--body-background-color: var(--background-color);
/* Body Font */
--body-font-color: var(--font-color);
--body-font-family: var(--font-family-sans-body);
--body-font-size: var(--font-size);
--body-font-weight: var(--font-weight);
/* Header Styles
================================================================ */
/* Header Font Sizes */
--h1-font-size: 2.25em;
--h2-font-size: 2em;
--h3-font-size: 1.75em;
--h4-font-size: 1.5em;
--h5-font-size: 1.25em;
--h6-font-size: 1em;
/* Header Font Styles */
--header-font-weight: var(--font-weight);
--header-font-family: var(--font-family-display);
--header-margin-bottom: var(--spacer-4);
/* Links
================================================================ */
--link-color: var(--primary-accent);
--link-color-hover: var(--secondary-accent);
/* HR
================================================================ */
--hr-border-color: var(--border-color);
--hr-border-size: var(--border-width);
--hr-border-style: var(--border-style);
--hr-border-spacer: var(--spacer-5);
/* Navbar
================================================================ */
/* Navbar Background Styles */
--navbar-background-color: var(--background-color-faded);
--navbar-background-color-hover: var(--background-color);
/* Navbar Font Styles */
--navbar-font-color: var(--font-color-faded);
--navbar-font-color-hover: var(--primary-accent);
--navbar-font-family: var(--font-family-display);
--navbar-font-size: var(--body-font-size);
/* Navbar Logo Styles */
--navbar-logo-font-color: var(--navbar-font-color-hover);
--navbar-logo-font-color-hover: var(--navbar-font-color);
--navbar-logo-font-size: var(--h5-font-size);
/* Navbar Border Styles */
--navbar-border-width: var(--border-width);
--navbar-border-style: var(--border-style);
--navbar-border-color: var(--border-color);
/* Navbar Container Width on Desktop */
--navbar-container-width: var(--container-width);
--navbar-container-padding: var(--grid-gutter);
/* Spacing
================================================================ */
/* Padding & Margin Sizes */
--spacer-1: .25rem;
--spacer-2: .5rem;
--spacer-3: 1rem;
--spacer-4: 1.5rem;
--spacer-5: 3rem;
/* Bottom margin of blockquotes, lists, tables, etc. */
--element-spacer: var(--spacer-4);
/* Grid spacing */
--grid-gutter: var(--spacer-3);
/* Other Utility
================================================================ */
--container-width: calc(750px + (var(--grid-gutter) * 2));
--modal-width: 600px;
/* Transition time of links, buttons, etc. */
--transition-time: .3s;
/* Breakpoints (for reference only)
================================================================ */
--md-break: 768px;
--lg-break: 992px;
--xl-break: 1200px;
}
/* ================================================================ /
Reset Elements
================================================================== */
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: inherit;
vertical-align: baseline;
}
*,
*:before,
*:after {
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
/* <3 Body
================================================================== */
html{
-webkit-box-sizing: border-box;
box-sizing: border-box;
-ms-overflow-style: scrollbar;
font-size : 100%;
line-height: 1.15;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
scroll-behavior: smooth;
}
body {
background-color: var(--body-background-color);
color: var(--body-font-color);
font-family: var(--font-family-body);
font-size: var(--body-font-size);
font-weight: var(--body-font-weight);
letter-spacing: .05em;
line-height: 2;
}
main {
display: block;
}
/* <3 Headers
================================================================== */
h1,h2,h3,
h4,h5,h6,
.h1,.h2,.h3,
.h4,.h5,.h6 {
line-height: 1.2;
font-weight: var(--header-font-weight);
font-family: var(--header-font-family);
margin: 0 0 var(--header-margin-bottom);
}
h1,.h1 {font-size: var(--h1-font-size);}
h2,.h2 {font-size: var(--h2-font-size);}
h3,.h3 {font-size: var(--h3-font-size);}
h4,.h4 {font-size: var(--h4-font-size);}
h5,.h5 {font-size: var(--h5-font-size);}
h6,.h6 {font-size: var(--h6-font-size);}
/* <3 Links
================================================================== */
a,
a:visited {
color: var(--link-color);
text-decoration: none;
background-color: transparent;
transition: color var(--transition-time) ease-in-out;
}
a:hover,
a:focus,
a:active {
color: var(--link-color-hover);
}
/* <3 Typography
================================================================== */
p {margin-bottom: calc(var(--element-spacer) * .5);}
div p:last-child {margin: 0 !important}
strong,time,b {font-weight: var(--font-weight-heavy);}
em,dfn,i {font-style: italic;}
small {font-size: var(--font-size-sm);}
sub,
sup {
font-size: var(--font-size-sm);
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {bottom: -0.25em;}
sup {top: -0.5em;}
/* <3 Blockquote
================================================================== */
blockquote, q {
display: block;
border-left: 3px solid var(--border-color);
padding: var(--spacer-2) var(--spacer-3);
margin-left: var(--spacer-4);
margin-bottom: var(--element-spacer);
}
div blockquote:last-child,
q blockquote:last-child,
blockquote *:last-child,
q *:last-child {
margin-bottom: 0;
}
cite {
letter-spacing: 1px;
text-transform: uppercase;
display: block;
text-align: right;
font-style: italic;
font-size: var(--font-size-sm);
}
/* <3 Code
================================================================== */
kbd,
code,
samp,
pre,
var {
font-family: var(--font-family-code), monospace;
}
code,
pre {
background: var(--background-color-faded);
color: var(--font-color-faded);
letter-spacing: 0;
}
code {
padding: var(--spacer-1) var(--spacer-2);
border-radius: var(--border-radius-sm);
}
pre {
padding: var(--spacer-3) var(--spacer-4);
border-left: var(--border-radius-sm) solid var(--primary-accent);
border-radius: var(--border-radius-sm) var(--border-radius) var(--border-radius) var(--border-radius-sm);
margin-bottom: var(--element-spacer);
overflow: auto;
line-height: 1.5;
}
code pre,
pre code {
padding: 0;
}
/* <3 HR
================================================================== */
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
border: 0;
border-top: var(--hr-border-size) var(--hr-border-style) var(--hr-border-color);
margin: var(--hr-border-spacer) 0;
}
/* <3 Images
================================================================== */
img {
display: block;
height: auto;
max-width: 100%;
border-style: none;
}
figure {
display: inline-block;
width: auto;
padding: var(--spacer-2);
border: var(--border-width) var(--border-style) var(--border-color);
}
figure img {
margin: 0;
}
figure figcaption {
font-size: var(--font-size-sm);
margin-top: var(--spacer-3);
}
.img-thumbnail {
border: var(--border-width) var(--border-style) var(--border-color);
border-radius: var(--border-radius);
padding: var(--spacer-2);
transition: border-color var(--transition-time) ease-in-out;
}
a:hover .img-thumbnail,
a:focus .img-thumbnail {
border-color: var(--primary-accent);
}
.img-thumbnail img{border-radius: calc(var(--border-radius) / 2);}
/* <3 Lists
================================================================== */
ol {list-style: decimal outside}
ul {list-style: disc outside}
ul,
ol {
margin: var(--element-spacer) 0 var(--element-spacer) var(--spacer-4);
padding-left: var(--spacer-3);
}
li ul,
li ol {
margin-top: var(--spacer-1);
margin-bottom: var(--spacer-1);
}
ul li,
ol li {
margin-bottom: var(--spacer-2);
}
dl dd {
padding-left: var(--spacer-4);
}
.list-unstyled{
list-style: none;
margin: 0;
padding: 0;
}
/* <3 Table
================================================================== */
table {
display: block;
border-collapse: collapse;
table-layout: fixed;
width: 100%;
margin-bottom: var(--element-spacer);
}
table thead tr {
border-bottom: calc(var(--border-width) * 2) var(--border-style) var(--border-color);
}
table tr {
border-bottom: var(--border-width) var(--border-style) var(--border-color);
}
table tbody tr:last-child {
border-bottom: 0;
}
table th {
color: var(--font-color-faded);
font-weight: var(--font-weight-heavy);
}
table th,
table td {
padding: var(--spacer-3);
text-align: left;
}
td:first-child,
th:first-child {
padding-left: 0;
}
td:last-child,
th:last-child {
padding-right: 0;
}
@media (min-width: 768px) {
table {
display: table;
overflow-x: auto;
}
}
/* <3 Utility
================================================================== */
.clearfix::after {
content: "";
display: table;
clear: both;
}
@media (min-width: 768px){
.float-right {float: right !important;}
.float-left {float: left !important;}
}
.fixed-top {
position: fixed;
top: 0;
z-index: 1025;
}
.fixed-bottom {
position: fixed;
bottom: 0;
z-index: 1025;
}
.sticky-top {
position: sticky;
top: 0;
z-index: 1025;
}
/* <3 Scrollbar
================================================================== */
/* Removed from mobile view */
@media (min-width: 762px){
*::-webkit-scrollbar-thumb {
background-color: var(--border-color);
border: 4px solid var(--background-color-faded);
border-radius: 10px;
}
*::-webkit-scrollbar-corner {
background-color: var(--background-color-faded);
}
*::-webkit-scrollbar {
width: 14px;
height: 14px;
background-color: var(--background-color-faded);
}
body::-webkit-scrollbar-thumb {
background-color: var(--primary-accent);
border: 0;
border-radius: 0;
}
body::-webkit-scrollbar {
background-color: var(--background-color);
}
}
/* <3 Forms
================================================================== */
/* Global input style */
input[type='color'],
input[type='date'],
input[type='datetime'],
input[type='datetime-local'],
input[type='email'],
input[type='month'],
input[type='number'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='url'],
input[type='week'],
input:not([type]),
textarea,
select {
-webkit-appearance: none;
height: 40px;
width: 100%;
cursor: pointer;
border: 1px solid var(--border-color);
border-left: var(--border-radius-sm) solid var(--border-color);
border-radius: var(--border-radius-sm) var(--border-radius) var(--border-radius) var(--border-radius-sm);
background-color: var(--background-color-faded);
color: var(--font-color-faded);
font-weight: var(--font-weight);
font-family: var(--body-font-family);
letter-spacing: .02em;
padding: var(--spacer-2) var(--spacer-3);
margin-bottom: var(--spacer-3);
transition: border-color var(--transition-time) ease-in-out;
}
input[type='color']:focus,
input[type='date']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='email']:focus,
input[type='month']:focus,
input[type='number']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='text']:focus,
input[type='url']:focus,
input[type='week']:focus,
input:not([type]):focus,
textarea:focus,
select:focus {
border-color: var(--primary-accent);
outline: 0;
}
select {padding-right: var(--spacer-5);}
select[multiple] {
background: none;
height: auto;
}
textarea {
min-height: 100px;
padding: var(--spacer-3);
width: 100% !important;
}
label,
legend {
display: block;
font-size: var(--body-font-size);
margin-bottom: var(--spacer-2);
}
fieldset {
border-width: 0;
padding: 0;
}
[hidden] {
display: none;
}
/* <3 Buttons
================================================================== */
/* Global button style */
.btn,
a.btn,
button,
[type="button"],
[type="submit"],
[type="reset"] {
background-color: var(--primary-accent);
border: 1px solid var(--primary-accent);
border-radius: var(--border-radius);
color: var(--primary-accent-font) !important;
display: inline-block;
text-align: center;
letter-spacing: .1em;
font: inherit;
font-weight: var(--font-weight-heavy);
font-size: var(--font-size);
text-transform: uppercase;
white-space: nowrap;
cursor: pointer;
user-select: none;
padding: var(--spacer-2) var(--spacer-4) !important;
transition:
color var(--transition-time) ease-in-out,
background-color var(--transition-time) ease-in-out,
border-color var(--transition-time) ease-in-out;
}
/* Secondary Solid */
.btn.btn-secondary {
background-color: var(--secondary-accent) !important;
border-color: var(--secondary-accent) !important;
color: var(--secondary-accent-font) !important;
outline: 0;
}
/* Normal Outline */
.btn.btn-outline{
background-color: transparent !important;
color: var(--primary-accent) !important;
}
/* Secondary Outline */
.btn.btn-outline-secondary{
background-color: transparent !important;
color: var(--secondary-accent) !important;
border-color: var(--secondary-accent) !important;
}
/* Normal Link */
.btn.btn-link{
background-color: transparent !important;
border-color: transparent !important;
color: var(--primary-accent) !important;
}
/* Secondary Link */
.btn.btn-link-secondary{
background-color: transparent !important;
border-color: transparent !important;
color: var(--secondary-accent) !important;
}
/* Hovers */
.btn:focus,
.btn:hover,
[type="submit"]:focus,
[type="submit"]:hover,
[type="button"]:focus,
[type="button"]:hover,
[type="reset"]:focus,
[type="reset"]:hover,
button:focus,
button:hover,
.btn.btn-outline-secondary:focus,
.btn.btn-outline-secondary:hover {
background-color: var(--secondary-accent) !important;
border-color: var(--secondary-accent) !important;
color: var(--secondary-accent-font) !important;
outline: 0;
}
.btn.btn-secondary:focus,
.btn.btn-secondary:hover,
.btn.btn-outline:focus,
.btn.btn-outline:hover {
background-color: var(--primary-accent) !important;
border-color: var(--primary-accent) !important;
color: var(--primary-accent-font) !important;
}
.btn.btn-link:focus,
.btn.btn-link:hover {
background-color: transparent !important;
border-color: transparent !important;
color: var(--secondary-accent) !important;
}
.btn.btn-link-secondary:focus,
.btn.btn-link-secondary:hover {
background-color: transparent !important;
border-color: transparent !important;
color: var(--primary-accent) !important;
}
/* Disable Buttons */
.btn.btn[disabled],
.btn.btn-outline[disabled],
.btn.btn-link[disabled] {
cursor: default;
opacity: .5;
pointer-events: none;
}
/* Large and Small Buttons */
.btn.btn-sm{
padding: calc(var(--spacer-2) / 1.5) calc(var(--spacer-4) / 1.5) !important;
font-size: var(--font-size-sm) !important;
border-radius: var(--border-radius-sm) !important;
}
.btn.btn-lg{
padding: calc(var(--spacer-2) * 1.5) calc(var(--spacer-4) * 1.5) !important;
font-size: var(--font-size-lg) !important;
border-radius: var(--border-radius-lg) !important;
}
/* Badge Type */
.btn.btn-badge{
padding: calc(var(--spacer-1) / 2) var(--spacer-1) !important;
font-size: var(--font-size-sm);
}
/* Normalize Buttons */
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
/* <3 Card
================================================================== */
.card{
border: 1px solid var(--border-color);
background-color: var(--background-color);
border-radius: var(--border-radius);
position: relative;
}
.card-header{
background-color: var(--primary-accent);
color: var(--primary-accent-font);
border-radius: var(--border-radius) var(--border-radius) 0 0;
padding: var(--spacer-3) var(--spacer-4);
margin: -1px;
font-size: var(--h3-font-size);
}
.card-content{
padding: var(--spacer-4);
}
.card-content *:last-child{
margin-bottom: 0;
}
.card-footer{
margin: -1px;
border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
padding: var(--spacer-3) var(--spacer-4);
letter-spacing: 1px;
color: var(--font-color-faded);
text-transform: uppercase;
font-size: var(--font-size-sm);
text-align: right;
border-top: var(--border-width) var(--border-style) var(--border-color);
border-bottom: var(--border-radius) solid var(--primary-accent);
}
/* <3 Pagination
================================================================== */
ul.pagination{
display: flex;
justify-content: start;
list-style: none;
margin: var(--element-spacer) 0;
padding: 0;
letter-spacing: 0;
overflow-x: auto;
}
ul.pagination li a{
display: inline-block;
background-color: var(--body-background-color);
border: var(--border-width) var(--border-style) var(--border-color);
border-right: 0;
text-align: center;
text-decoration: none;
margin-right: -1px;
padding: var(--spacer-2) var(--spacer-3);
transition:
color var(--transition-time) ease,
background-color var(--transition-time) ease,
border-color var(--transition-time) ease;
}
ul.pagination li:first-child *{border-radius: 10px 0 0 10px;}
ul.pagination li:last-child *{
margin-right: 0;
border-radius: 0 10px 10px 0;
border-right: var(--border-width) var(--border-style) var(--border-color);
}
ul.pagination li a:hover,
ul.pagination li a.active{
color: var(--primary-accent-font);
background-color: var(--primary-accent);
border-color: var(--primary-accent);
}
@media (min-width:768px){
ul.pagination{
justify-content: center;
}
}
/* <3 Collapse
================================================================== */
.collapse:not(.show) {
display: none;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
transition: height 0.35s ease;
}
/* <3 Modal
================================================================== */
/* Modal containers */
.modal {
padding: var(--spacer-3);
position: fixed;
top: 0;
left: 0;
z-index: 1150;
display: none;
width: 100%;
height: 100%;
overflow: hidden;
outline: 0;
}
.modal-dialog {
position: relative;
width: auto;
margin: var(--spacer-2);
pointer-events: none;
display: flex;
align-items: center;
min-height: 100%;
}
@media (min-width: 576px) {
.modal-dialog {
max-width: var(--modal-width);
margin: 0 auto;
}
}
/* Modal card */
.modal-card {
border: 1px solid var(--border-color);
background-color: var(--background-color);
border-radius: var(--border-radius);
width: 100%;
pointer-events: auto;
}
.modal-header {
border-radius: var(--border-radius) var(--border-radius) 0 0;
padding: var(--spacer-3) var(--spacer-4);
color: var(--primary-accent-font);
background-color: var(--primary-accent);
font-size: var(--h3-font-size);
display: flex;
flex-direction: row;
justify-content: space-between;
margin: -1px;
}
.close{
color: var(--primary-accent-font);
cursor: pointer;
}
.modal-body {
padding: var(--spacer-4)
}
.modal-footer {
margin: -1px;
border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
padding: var(--spacer-3) var(--spacer-4);
font-size: var(--font-size-sm);
letter-spacing: 1px;
text-transform: uppercase;
color: var(--font-color-faded);
text-align: right;
border-top: 1px solid var(--border-color);
border-bottom: var(--border-radius-sm) solid var(--primary-accent);
text-align: right;
}
/* Modal background */
.modal-open {
overflow: hidden !important;
}
.modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
}
.modal-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1100;
width: 100vw;
height: 100vh;
background-color: rgba(0,0,0,.35);
opacity: 0;
}
.modal-backdrop.show {opacity: 0.75;}
/* Modal transition */
.fade-scale {
transform: scale(0);
opacity: 0;
-webkit-transition: all .5s linear;
-o-transition: all .5s linear;
transition: all .5s linear;
}
.fade-scale.show {
opacity: 1;
transform: scale(1);
}
/* <3 Carousel
================================================================== */
.carousel {
position: relative;
}
.carousel.pointer-event {
touch-action: pan-y;
}
.carousel-inner {
position: relative;
width: 100%;
overflow: hidden;
}
.carousel-inner::after {
display: block;
clear: both;
content: "";
}
.carousel-item {
position: relative;
display: none;
float: left;
width: 100%;
margin-right: -100%;
backface-visibility: hidden;
transition: transform .5s ease-in-out;
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
display: block;
}
.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
transform: translateX(100%);
}
.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
transform: translateX(-100%);
}
.carousel-fade .carousel-inner .carousel-item {
transition-property: opacity;
}
.carousel-fade .carousel-inner .carousel-item,
.carousel-fade .carousel-inner .active.carousel-item-left,
.carousel-fade .carousel-inner .active.carousel-item-right {
opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.carousel-item-left,
.carousel-fade .carousel-inner .prev.carousel-item-right {
opacity: 1;
}
.carousel-fade .carousel-inner .carousel-next,
.carousel-fade .carousel-inner .carousel-prev,
.carousel-fade .carousel-inner .active.carousel-item-left,
.carousel-fade .carousel-inner .active.carousel-item-right {
left: 0;
transform: translate3d(0, 0, 0);
}
.carousel-control-prev,
.carousel-control-next {
position: absolute;
top: 0;
bottom: 0;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
width: 15%;
color: #fff;
text-align: center;
opacity: 0.5;
transition: opacity 0.15s ease;
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
color: #fff;
text-decoration: none;
outline: 0;
opacity: 0.9;
}
.carousel-control-prev {
left: 0;
}
.carousel-control-next {
right: 0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
display: inline-block;
width: 20px;
height: 20px;
background: no-repeat 50% / 100% 100%;
}
.carousel-control-prev-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fdedda' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fdedda' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}
.carousel-indicators {
position: absolute;
right: 0;
bottom: 0;
left: 0;
z-index: 15;
display: flex;
justify-content: center;
padding-left: 0;
margin-right: 15%;
margin-left: 15%;
list-style: none;
}
.carousel-indicators li {
box-sizing: content-box;
flex: 0 1 auto;
width: 30px;
height: 3px;
margin-right: 3px;
margin-left: 3px;
text-indent: -999px;
cursor: pointer;
background-color: #fff;
background-clip: padding-box;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
width: 10px;
height: 10px;
border-radius: 100%;
opacity: .5;
transition: opacity 0.5s ease;
}
.carousel-indicators .active {
opacity: 1;
}
.carousel-indicators {
bottom: calc(var(--spacer-2) * -1);
}
.carousel-caption {
position: absolute;
right: 15%;
bottom: var(--spacer-4);
left: 15%;
z-index: 10;
padding-top: var(--spacer-4);
padding-bottom: var(--spacer-4);
color: #fff;
text-align: center;
}
/* <3 Navbar
================================================================== */
/* Navbar containers */
.navbar {
color: var(--navbar-font-color);
font-family: var(--navbar-font-family);
font-size: var(--navbar-font-size);
background-color: var(--navbar-background-color);
border-bottom: var(--navbar-border-width) var(--navbar-border-style) var(--navbar-border-color);
z-index: 100;
}
.navbar-container{
position: relative;
}
/* Navbar logo container */
.navbar .logo {
font-size: var(--navbar-logo-font-size);
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: var(--spacer-1) var(--spacer-3);
}
.navbar .logo a{
color: var(--navbar-logo-font-color);
}
.navbar .logo a:hover,
.navbar .logo a:focus{
color: var(--navbar-logo-font-color-hover);
}
/* Navbar link container */
.navbar .nav-link-menu {
border-top: 1px solid var(--navbar-border-color);
}
/* Navbar links */
.navbar .nav-link {
display: block;
position: relative;
color: var(--navbar-font-color);
padding: var(--spacer-2) var(--spacer-4);
font-family: var(--navbar-font-family);
cursor: pointer;
transition:
color var(--transition-time) ease-in-out,
background-color var(--transition-time) ease-in-out;
}
.navbar .nav-link:hover {
color: var(--navbar-font-color-hover);
background-color: var(--navbar-background-color-hover);
}
.nav-icon{font-style: normal;}
/* Desktop style - mostly resetting mobile style */
@media (min-width: 768px) {
.navbar-container{
margin: 0 auto;
max-width: var(--navbar-container-width);
padding: 0 var(--navbar-container-padding);
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.navbar .logo {padding: 0;}
.navbar .nav-link-menu{
display: block;
border: 0;
}
.navbar .nav-link {
display: inline-block;
padding: var(--spacer-3) var(--spacer-2);
}
.navbar .nav-link:hover{
background: none;
}
.navbar .menu-toggle {display: none;}
}
/* <3 Navbar Dropdown
================================================================== */
/* Navbar dropdown links */
.navbar .dropdown > .dropdown-menu .nav-link {
font-size: 90%;
}
/* Navbar dropdown link icons */
.navbar .dropdown > .nav-link .nav-icon{
order: 1;
font-size: var(--font-size-sm);
margin-left: var(--spacer-1);
}
/* Navbar dropdown menu show/hide */
.navbar .dropdown .dropdown-menu {
display: none;
}
.navbar .dropdown:hover > .dropdown-menu,
.navbar .dropdown > .dropdown-menu:hover {
display: block;
}
/* Desktop style - mostly resetting mobile style */
@media (min-width: 768px) {
.navbar .dropdown > .nav-link{
display: inline-block;
}
.navbar .dropdown {
position: relative;
display: inline;
}
.navbar .dropdown > .dropdown-menu {
position: absolute;
border: var(--navbar-border-width) var(--navbar-border-style) var(--navbar-border-color);
border-bottom: var(--border-radius-sm) solid var(--navbar-font-color-hover);
background: var(--navbar-background-color);
min-width: 175px;
border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
right: 0;
left: auto;
}
.navbar .dropdown > .dropdown-menu .nav-link {
padding: var(--spacer-2) var(--spacer-3);
border-top: var(--navbar-border-width) var(--navbar-border-style) var(--navbar-border-color);
display: block;
text-align: center;
}
.navbar .dropdown > .dropdown-menu > .nav-link:first-child {border: 0}
/* Secondary Nests */
.navbar .dropdown .dropdown .nav-icon {
position: absolute;
left: var(--spacer-2);
top: 0;
bottom: 0;
display: flex;
align-items: center;
}
.navbar .dropdown .dropdown > .dropdown-menu {
top: 0;
text-align: right;
border-radius: var(--border-radius-sm) 0 var(--border-radius-sm) var(--border-radius-sm);
}
}
/* <3 Borders
================================================================== */
/* Adds Borders */
.border {border: var(--border-width) var(--border-style) var(--border-color) !important;}
.border-top {border-top: var(--border-width) var(--border-style) var(--border-color) !important;}
.border-right {border-right: var(--border-width) var(--border-style) var(--border-color) !important;}
.border-bottom {border-bottom: var(--border-width) var(--border-style) var(--border-color) !important;}
.border-left {border-left: var(--border-width) var(--border-style) var(--border-color) !important;}
/* Removes Borders */
.border-0 {border: 0 !important;}
.border-top-0 {border-top: 0 !important;}
.border-right-0 {border-right: 0 !important;}
.border-bottom-0 {border-bottom: 0 !important;}
.border-left-0 {border-left: 0 !important;}
/* Border Radius */
.rounded-0{border-radius: 0 !important;}
.rounded{border-radius: var(--border-radius) !important;}
.rounded-sm{border-radius: var(--border-radius-sm) !important;}
.rounded-lg{border-radius: var(--border-radius-lg) !important;}
/* Alt Border Colors */
.border-primary {border-color: var(--primary-accent) !important;}
.border-secondary {border-color: var(--secondary-accent) !important;}
/* <3 Text
================================================================== */
/* Text Colors */
.text-white {color: #fff !important;}
.text-black {color: #222 !important;}
.text-body {color: var(--font-color) !important;}
.text-muted {color: var(--font-color-faded) !important;}
.text-primary {color: var(--primary-accent) !important;}
.text-secondary {color: var(--secondary-accent) !important;}
/* Text Color links*/
a.text-white:hover, a.text-white:focus,
a.text-black:hover, a.text-black:focus,
a.text-body:hover, a.text-body:focus,
a.text-secondary:hover, a.text-secondary:focus,
a.text-body:hover, a.text-body:focus {
color: var(--primary-accent) !important;
}
a.text-primary:hover, a.text-primary:focus{
color: var(--secondary-accent) !important;
}
/* Text Positions */
.text-left {text-align: left !important;}
.text-right {text-align: right !important;}
.text-center {text-align: center !important;}
@media (min-width: 768px) {
.text-md-left {text-align: left !important;}
.text-md-right {text-align: right !important;}
.text-md-center {text-align: center !important;}
}
@media (min-width: 992px) {
.text-lg-left {text-align: left !important;}
.text-lg-right {text-align: right !important;}
.text-lg-center {text-align: center !important;}
}
@media (min-width: 1200px) {
.text-xl-left {text-align: left !important;}
.text-xl-right {text-align: right !important;}
.text-xl-center {text-align: center !important;}
}
/* Text Transform */
.text-lowercase {text-transform: lowercase !important;}
.text-uppercase {text-transform: uppercase !important;}
.text-capitalize {text-transform: capitalize !important;}
/* Font Sizes */
.font-size-reset {font-size: var(--font-size) !important;}
.font-size-lg {font-size: var(--font-size-lg) !important;}
.font-size-sm {font-size: var(--font-size-sm) !important;}
/* <3 Backgrounds
================================================================== */
.bg-white {background-color: #fff !important;}
.bg-black {background-color: #222 !important;}
.bg-faded {background-color: var(--background-color-faded) !important;}
.bg-reset {background-color: var(--background-color) !important;}
.bg-primary {background-color: var(--primary-accent) !important;}
.bg-secondary {background-color: var(--secondary-accent) !important;}
/* <3 Containers
================================================================== */
.container,
.container-fluid {
width: 100%;
margin-right: auto;
margin-left: auto
}
.container{
max-width: var(--container-width);
padding: var(--grid-gutter);
}
/* <3 Rows
================================================================== */
.row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: calc(var(--grid-gutter) / -2);
}
.row.no-gutters {
margin-right: 0;
margin-left: 0;
}
/* <3 Columns
================================================================== */
.col,
[class*=" col-"],
[class^="col-"] {
margin: calc(var(--grid-gutter) / 2);
position: relative;
width: 100%;
}
.row.no-gutters > .col,
.row.no-gutters > [class*="col-"] {
margin: 0;
}
.col {
flex-basis: 0;
flex-grow: 1;
max-width: 100%
}
.col-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%
}
.col-1 {
flex: 0 0 calc((100% / (12 / 1)) - var(--grid-gutter));
max-width: calc((100% / (12 / 1)) - var(--grid-gutter))
}
.col-2 {
flex: 0 0 calc((100% / (12 / 2)) - var(--grid-gutter));
max-width: calc((100% / (12 / 2)) - var(--grid-gutter))
}
.col-3 {
flex: 0 0 calc((100% / (12 / 3)) - var(--grid-gutter));
max-width: calc((100% / (12 / 3)) - var(--grid-gutter))
}
.col-4 {
flex: 0 0 calc((100% / (12 / 4)) - var(--grid-gutter));
max-width: calc((100% / (12 / 4)) - var(--grid-gutter))
}
.col-5 {
flex: 0 0 calc((100% / (12 / 5)) - var(--grid-gutter));
max-width: calc((100% / (12 / 5)) - var(--grid-gutter))
}
.col-6 {
flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter));
max-width: calc((100% / (12 / 6)) - var(--grid-gutter))
}
.col-7 {
flex: 0 0 calc((100% / (12 / 7)) - var(--grid-gutter));
max-width: calc((100% / (12 / 7)) - var(--grid-gutter))
}
.col-8 {
flex: 0 0 calc((100% / (12 / 8)) - var(--grid-gutter));
max-width: calc((100% / (12 / 8)) - var(--grid-gutter))
}
.col-9 {
flex: 0 0 calc((100% / (12 / 9)) - var(--grid-gutter));
max-width: calc((100% / (12 / 9)) - var(--grid-gutter))
}
.col-10 {
flex: 0 0 calc((100% / (12 / 10)) - var(--grid-gutter));
max-width: calc((100% / (12 / 10)) - var(--grid-gutter))
}
.col-11 {
flex: 0 0 calc((100% / (12 / 11)) - var(--grid-gutter));
max-width: calc((100% / (12 / 11)) - var(--grid-gutter))
}
.col-12 {
flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter));
max-width: calc((100% / (12 / 12)) - var(--grid-gutter))
}
.order-first {order: -1}
.order-last {order: 13}
.order-0 {order: 0}
.order-1 {order: 1}
.order-2 {order: 2}
.order-3 {order: 3}
@media (min-width: 768px) {
.col-md {
flex-basis: 0;
flex-grow: 1;
max-width: 100%
}
.col-md-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%
}
.col-md-1 {
flex: 0 0 calc((100% / (12 / 1)) - var(--grid-gutter));
max-width: calc((100% / (12 / 1)) - var(--grid-gutter))
}
.col-md-2 {
flex: 0 0 calc((100% / (12 / 2)) - var(--grid-gutter));
max-width: calc((100% / (12 / 2)) - var(--grid-gutter))
}
.col-md-3 {
flex: 0 0 calc((100% / (12 / 3)) - var(--grid-gutter));
max-width: calc((100% / (12 / 3)) - var(--grid-gutter))
}
.col-md-4 {
flex: 0 0 calc((100% / (12 / 4)) - var(--grid-gutter));
max-width: calc((100% / (12 / 4)) - var(--grid-gutter))
}
.col-md-5 {
flex: 0 0 calc((100% / (12 / 5)) - var(--grid-gutter));
max-width: calc((100% / (12 / 5)) - var(--grid-gutter))
}
.col-md-6 {
flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter));
max-width: calc((100% / (12 / 6)) - var(--grid-gutter))
}
.col-md-7 {
flex: 0 0 calc((100% / (12 / 7)) - var(--grid-gutter));
max-width: calc((100% / (12 / 7)) - var(--grid-gutter))
}
.col-md-8 {
flex: 0 0 calc((100% / (12 / 8)) - var(--grid-gutter));
max-width: calc((100% / (12 / 8)) - var(--grid-gutter))
}
.col-md-9 {
flex: 0 0 calc((100% / (12 / 9)) - var(--grid-gutter));
max-width: calc((100% / (12 / 9)) - var(--grid-gutter))
}
.col-md-10 {
flex: 0 0 calc((100% / (12 / 10)) - var(--grid-gutter));
max-width: calc((100% / (12 / 10)) - var(--grid-gutter))
}
.col-md-11 {
flex: 0 0 calc((100% / (12 / 11)) - var(--grid-gutter));
max-width: calc((100% / (12 / 11)) - var(--grid-gutter))
}
.col-md-12 {
flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter));
max-width: calc((100% / (12 / 12)) - var(--grid-gutter))
}
.order-md-first {order: -1}
.order-md-last {order: 4}
.order-md-0 {order: 0}
.order-md-1 {order: 1}
.order-md-2 {order: 2}
.order-md-3 {order: 3}
}
@media (min-width: 992px) {
.col-lg {
flex-basis: 0;
flex-grow: 1;
max-width: 100%
}
.col-lg-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%
}
.col-lg-1 {
flex: 0 0 calc((100% / (12 / 1)) - var(--grid-gutter));
max-width: calc((100% / (12 / 1)) - var(--grid-gutter))
}
.col-lg-2 {
flex: 0 0 calc((100% / (12 / 2)) - var(--grid-gutter));
max-width: calc((100% / (12 / 2)) - var(--grid-gutter))
}
.col-lg-3 {
flex: 0 0 calc((100% / (12 / 3)) - var(--grid-gutter));
max-width: calc((100% / (12 / 3)) - var(--grid-gutter))
}
.col-lg-4 {
flex: 0 0 calc((100% / (12 / 4)) - var(--grid-gutter));
max-width: calc((100% / (12 / 4)) - var(--grid-gutter))
}
.col-lg-5 {
flex: 0 0 calc((100% / (12 / 5)) - var(--grid-gutter));
max-width: calc((100% / (12 / 5)) - var(--grid-gutter))
}
.col-lg-6 {
flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter));
max-width: calc((100% / (12 / 6)) - var(--grid-gutter))
}
.col-lg-7 {
flex: 0 0 calc((100% / (12 / 7)) - var(--grid-gutter));
max-width: calc((100% / (12 / 7)) - var(--grid-gutter))
}
.col-lg-8 {
flex: 0 0 calc((100% / (12 / 8)) - var(--grid-gutter));
max-width: calc((100% / (12 / 8)) - var(--grid-gutter))
}
.col-lg-9 {
flex: 0 0 calc((100% / (12 / 9)) - var(--grid-gutter));
max-width: calc((100% / (12 / 9)) - var(--grid-gutter))
}
.col-lg-10 {
flex: 0 0 calc((100% / (12 / 10)) - var(--grid-gutter));
max-width: calc((100% / (12 / 10)) - var(--grid-gutter))
}
.col-lg-11 {
flex: 0 0 calc((100% / (12 / 11)) - var(--grid-gutter));
max-width: calc((100% / (12 / 11)) - var(--grid-gutter))
}
.col-lg-12 {
flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter));
max-width: calc((100% / (12 / 12)) - var(--grid-gutter))
}
.order-lg-first {order: -1}
.order-lg-last {order: 4}
.order-lg-0 {order: 0}
.order-lg-1 {order: 1}
.order-lg-2 {order: 2}
.order-lg-3 {order: 3}
}
@media (min-width: 1200px) {
.col-xl {
flex-basis: 0;
flex-grow: 1;
max-width: 100%
}
.col-xl-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%
}
.col-xl-1 {
flex: 0 0 calc((100% / (12 / 1)) - var(--grid-gutter));
max-width: calc((100% / (12 / 1)) - var(--grid-gutter))
}
.col-xl-2 {
flex: 0 0 calc((100% / (12 / 2)) - var(--grid-gutter));
max-width: calc((100% / (12 / 2)) - var(--grid-gutter))
}
.col-xl-3 {
flex: 0 0 calc((100% / (12 / 3)) - var(--grid-gutter));
max-width: calc((100% / (12 / 3)) - var(--grid-gutter))
}
.col-xl-4 {
flex: 0 0 calc((100% / (12 / 4)) - var(--grid-gutter));
max-width: calc((100% / (12 / 4)) - var(--grid-gutter))
}
.col-xl-5 {
flex: 0 0 calc((100% / (12 / 5)) - var(--grid-gutter));
max-width: calc((100% / (12 / 5)) - var(--grid-gutter))
}
.col-xl-6 {
flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter));
max-width: calc((100% / (12 / 6)) - var(--grid-gutter))
}
.col-xl-7 {
flex: 0 0 calc((100% / (12 / 7)) - var(--grid-gutter));
max-width: calc((100% / (12 / 7)) - var(--grid-gutter))
}
.col-xl-8 {
flex: 0 0 calc((100% / (12 / 8)) - var(--grid-gutter));
max-width: calc((100% / (12 / 8)) - var(--grid-gutter))
}
.col-xl-9 {
-webkit-box-flex: 0;
flex: 0 0 calc((100% / (12 / 9)) - var(--grid-gutter));
max-width: calc((100% / (12 / 9)) - var(--grid-gutter))
}
.col-xl-10 {
-webkit-box-flex: 0;
flex: 0 0 calc((100% / (12 / 10)) - var(--grid-gutter));
max-width: calc((100% / (12 / 10)) - var(--grid-gutter))
}
.col-xl-11 {
-webkit-box-flex: 0;
flex: 0 0 calc((100% / (12 / 11)) - var(--grid-gutter));
max-width: calc((100% / (12 / 11)) - var(--grid-gutter))
}
.col-xl-12 {
flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter));
max-width: calc((100% / (12 / 12)) - var(--grid-gutter))
}
.order-xl-first {order: -1}
.order-xl-last {order: 4}
.order-xl-0 {order: 0}
.order-xl-1 {order: 1}
.order-xl-2 {order: 2}
.order-xl-3 {order: 3}
}
/* <3 Display
================================================================== */
.d-none {display: none !important}
.d-inline {display: inline !important}
.d-inline-block {display: inline-block !important}
.d-block {display: block !important}
.d-flex {display: flex !important}
.d-inline-flex {display: inline-flex !important}
@media (min-width: 768px) {
.d-md-none {display: none !important}
.d-md-inline {display: inline !important}
.d-md-inline-block {display: inline-block !important}
.d-md-block {display: block !important}
.d-md-flex {display: flex !important}
.d-md-inline-flex {display: inline-flex !important}
}
@media (min-width: 992px) {
.d-lg-none {display: none !important}
.d-lg-inline {display: inline !important}
.d-lg-inline-block {display: inline-block !important}
.d-lg-block {display: block !important}
.d-lg-flex {display: flex !important}
.d-lg-inline-flex {display: inline-flex !important}
}
@media (min-width: 1200px) {
.d-xl-none {display: none !important}
.d-xl-inline {display: inline !important}
.d-xl-inline-block {display: inline-block !important}
.d-xl-block {display: block !important}
.d-xl-flex {display: flex !important}
.d-xl-inline-flex {display: inline-flex !important}
}
/* <3 Flex & Justify
================================================================== */
.flex-row {flex-direction: row !important}
.flex-column {flex-direction: column !important}
.flex-wrap {flex-wrap: wrap !important}
.flex-nowrap {flex-wrap: nowrap !important}
.flex-fill {flex: 1 1 auto !important}
.justify-content-start {justify-content: flex-start !important}
.justify-content-end {justify-content: flex-end !important}
.justify-content-center {justify-content: center !important}
.justify-content-between {justify-content: space-between !important}
.justify-content-around {justify-content: space-around !important}
.align-items-start {align-items: flex-start !important}
.align-items-end {align-items: flex-end !important}
.align-items-center {align-items: center !important}
.align-items-baseline {align-items: baseline !important}
.align-items-stretch {align-items: stretch !important}
.align-content-start {align-content: flex-start !important}
.align-content-end {align-content: flex-end !important}
.align-content-center {align-content: center !important}
.align-content-between {align-content: space-between !important}
.align-content-around {align-content: space-around !important}
.align-content-stretch {align-content: stretch !important}
.align-self-auto {align-self: auto !important}
.align-self-start {align-self: flex-start !important}
.align-self-end {align-self: flex-end !important}
.align-self-center {align-self: center !important}
.align-self-baseline {align-self: baseline !important}
.align-self-stretch {align-self: stretch !important}
@media (min-width: 768px) {
.flex-md-row {flex-direction: row !important}
.flex-md-column {flex-direction: column !important}
.flex-md-wrap {flex-wrap: wrap !important}
.flex-md-nowrap {flex-wrap: nowrap !important}
.flex-md-fill {flex: 1 1 auto !important}
.justify-content-md-start {justify-content: flex-start !important}
.justify-content-md-end {justify-content: flex-end !important}
.justify-content-md-center {justify-content: center !important}
.justify-content-md-between {justify-content: space-between !important}
.justify-content-md-around {justify-content: space-around !important}
.align-items-md-start {align-items: flex-start !important}
.align-items-md-end {align-items: flex-end !important}
.align-items-md-center {align-items: center !important}
.align-items-md-baseline {align-items: baseline !important}
.align-items-md-stretch {align-items: stretch !important}
.align-content-md-start {align-content: flex-start !important}
.align-content-md-end {align-content: flex-end !important}
.align-content-md-center {align-content: center !important}
.align-content-md-between {align-content: space-between !important}
.align-content-md-around {align-content: space-around !important}
.align-content-md-stretch {align-content: stretch !important}
.align-self-md-auto {align-self: auto !important}
.align-self-md-start {align-self: flex-start !important}
.align-self-md-end {align-self: flex-end !important}
.align-self-md-center {align-self: center !important}
.align-self-md-baseline {align-self: baseline !important}
.align-self-md-stretch {align-self: stretch !important}
}
@media (min-width: 992px) {
.flex-lg-row {flex-direction: row !important}
.flex-lg-column {flex-direction: column !important}
.flex-lg-wrap {flex-wrap: wrap !important}
.flex-lg-nowrap {flex-wrap: nowrap !important}
.flex-lg-fill {flex: 1 1 auto !important}
.justify-content-lg-start {justify-content: flex-start !important}
.justify-content-lg-end {justify-content: flex-end !important}
.justify-content-lg-center {justify-content: center !important}
.justify-content-lg-between {justify-content: space-between !important}
.justify-content-lg-around {justify-content: space-around !important}
.align-items-lg-start {align-items: flex-start !important}
.align-items-lg-end {align-items: flex-end !important}
.align-items-lg-center {align-items: center !important}
.align-items-lg-baseline {align-items: baseline !important}
.align-items-lg-stretch {align-items: stretch !important}
.align-content-lg-start {align-content: flex-start !important}
.align-content-lg-end {align-content: flex-end !important}
.align-content-lg-center {align-content: center !important}
.align-content-lg-between {align-content: space-between !important}
.align-content-lg-around {align-content: space-around !important}
.align-content-lg-stretch {align-content: stretch !important}
.align-self-lg-auto {align-self: auto !important}
.align-self-lg-start {align-self: flex-start !important}
.align-self-lg-end {align-self: flex-end !important}
.align-self-lg-center {align-self: center !important}
.align-self-lg-baseline {align-self: baseline !important}
.align-self-lg-stretch {align-self: stretch !important}
}
@media (min-width: 1200px) {
.flex-xl-row {flex-direction: row !important}
.flex-xl-column {flex-direction: column !important}
.flex-xl-wrap {flex-wrap: wrap !important}
.flex-xl-nowrap {flex-wrap: nowrap !important}
.flex-xl-fill {flex: 1 1 auto !important}
.justify-content-xl-start {justify-content: flex-start !important}
.justify-content-xl-end {justify-content: flex-end !important}
.justify-content-xl-center {justify-content: center !important}
.justify-content-xl-between {justify-content: space-between !important}
.justify-content-xl-around {justify-content: space-around !important}
.align-items-xl-start {align-items: flex-start !important}
.align-items-xl-end {align-items: flex-end !important}
.align-items-xl-center {align-items: center !important}
.align-items-xl-baseline {align-items: baseline !important}
.align-items-xl-stretch {align-items: stretch !important}
.align-content-xl-start {align-content: flex-start !important}
.align-content-xl-end {align-content: flex-end !important}
.align-content-xl-center {align-content: center !important}
.align-content-xl-between {align-content: space-between !important}
.align-content-xl-around {align-content: space-around !important}
.align-content-xl-stretch {align-content: stretch !important}
.align-self-xl-auto {align-self: auto !important}
.align-self-xl-start {align-self: flex-start !important}
.align-self-xl-end {align-self: flex-end !important}
.align-self-xl-center {align-self: center !important}
.align-self-xl-baseline {align-self: baseline !important}
.align-self-xl-stretch {align-self: stretch !important}
}
/* <3 Spacing
================================================================== */
.m-0 {margin: 0 !important}
.mt-0,.my-0 {margin-top: 0 !important}
.mr-0,.mx-0 {margin-right: 0 !important}
.mb-0,.my-0 {margin-bottom: 0 !important}
.ml-0,.mx-0 {margin-left: 0 !important}
.m-1 {margin: var(--spacer-1) !important}
.mt-1,.my-1 {margin-top: var(--spacer-1) !important}
.mr-1,.mx-1 {margin-right: var(--spacer-1) !important}
.mb-1,.my-1 {margin-bottom: var(--spacer-1) !important}
.ml-1,.mx-1 {margin-left: var(--spacer-1) !important}
.m-2 {margin: var(--spacer-2) !important}
.mt-2,.my-2 {margin-top: var(--spacer-2) !important}
.mr-2,.mx-2 {margin-right: var(--spacer-2) !important}
.mb-2,.my-2 {margin-bottom: var(--spacer-2) !important}
.ml-2,.mx-2 {margin-left: var(--spacer-2) !important}
.m-3 {margin: var(--spacer-3) !important}
.mt-3,.my-3 {margin-top: var(--spacer-3) !important}
.mr-3,.mx-3 {margin-right: var(--spacer-3) !important}
.mb-3,.my-3 {margin-bottom: var(--spacer-3) !important}
.ml-3,.mx-3 {margin-left: var(--spacer-3) !important}
.m-4 {margin: var(--spacer-4) !important}
.mt-4,.my-4 {margin-top: var(--spacer-4) !important}
.mr-4,.mx-4 {margin-right: var(--spacer-4) !important}
.mb-4,.my-4 {margin-bottom: var(--spacer-4) !important}
.ml-4,.mx-4 {margin-left: var(--spacer-4) !important}
.m-5 {margin: var(--spacer-5) !important}
.mt-5,.my-5 {margin-top: var(--spacer-5) !important}
.mr-5,.mx-5 {margin-right: var(--spacer-5) !important}
.mb-5,.my-5 {margin-bottom: var(--spacer-5) !important}
.ml-5,.mx-5 {margin-left: var(--spacer-5) !important}
.p-0 {padding: 0 !important}
.pt-0,.py-0 {padding-top: 0 !important}
.pr-0,.px-0 {padding-right: 0 !important}
.pb-0,.py-0 {padding-bottom: 0 !important}
.pl-0,.px-0 {padding-left: 0 !important}
.p-1 {padding: var(--spacer-1) !important}
.pt-1,.py-1 {padding-top: var(--spacer-1) !important}
.pr-1,.px-1 {padding-right: var(--spacer-1) !important}
.pb-1,.py-1 {padding-bottom: var(--spacer-1) !important}
.pl-1,.px-1 {padding-left: var(--spacer-1) !important}
.p-2 {padding: var(--spacer-2) !important}
.pt-2,.py-2 {padding-top: var(--spacer-2) !important}
.pr-2,.px-2 {padding-right: var(--spacer-2) !important}
.pb-2,.py-2 {padding-bottom: var(--spacer-2) !important}
.pl-2,.px-2 {padding-left: var(--spacer-2) !important}
.p-3 {padding: var(--spacer-3) !important}
.pt-3,.py-3 {padding-top: var(--spacer-3) !important}
.pr-3,.px-3 {padding-right: var(--spacer-3) !important}
.pb-3,.py-3 {padding-bottom: var(--spacer-3) !important}
.pl-3,.px-3 {padding-left: var(--spacer-3) !important}
.p-4 {padding: var(--spacer-4) !important}
.pt-4,.py-4 {padding-top: var(--spacer-4) !important}
.pr-4,.px-4 {padding-right: var(--spacer-4) !important}
.pb-4,.py-4 {padding-bottom: var(--spacer-4) !important}
.pl-4,.px-4 {padding-left: var(--spacer-4) !important}
.p-5 {padding: var(--spacer-5) !important}
.pt-5,.py-5 {padding-top: var(--spacer-5) !important}
.pr-5,.px-5 {padding-right: var(--spacer-5) !important}
.pb-5,.py-5 {padding-bottom: var(--spacer-5) !important}
.pl-5,.px-5 {padding-left: var(--spacer-5) !important}
.m-n1 {margin: calc(var(--spacer-1) * -1) !important}
.mt-n1,.my-n1 {margin-top: calc(var(--spacer-1) * -1) !important}
.mr-n1,.mx-n1 {margin-right: calc(var(--spacer-1) * -1) !important}
.mb-n1,.my-n1 {margin-bottom: calc(var(--spacer-1) * -1) !important}
.ml-n1,.mx-n1 {margin-left: calc(var(--spacer-1) * -1) !important}
.m-n2 {margin: calc(var(--spacer-2) * -1) !important}
.mt-n2,.my-n2 {margin-top: calc(var(--spacer-2) * -1) !important}
.mr-n2,.mx-n2 {margin-right: calc(var(--spacer-2) * -1) !important}
.mb-n2,.my-n2 {margin-bottom: calc(var(--spacer-2) * -1) !important}
.ml-n2,.mx-n2 {margin-left: calc(var(--spacer-2) * -1) !important}
.m-n3 {margin: calc(var(--spacer-3) * -1) !important}
.mt-n3,.my-n3 {margin-top: calc(var(--spacer-3) * -1) !important}
.mr-n3,.mx-n3 {margin-right: calc(var(--spacer-3) * -1) !important}
.mb-n3,.my-n3 {margin-bottom: calc(var(--spacer-3) * -1) !important}
.ml-n3,.mx-n3 {margin-left: calc(var(--spacer-3) * -1) !important}
.m-n4 {margin: calc(var(--spacer-4) * -1) !important}
.mt-n4,.my-n4 {margin-top: calc(var(--spacer-4) * -1) !important}
.mr-n4,.mx-n4 {margin-right: calc(var(--spacer-4) * -1) !important}
.mb-n4,.my-n4 {margin-bottom: calc(var(--spacer-4) * -1) !important}
.ml-n4,.mx-n4 {margin-left: calc(var(--spacer-4) * -1) !important}
.m-n5 {margin: calc(var(--spacer-5) * -1) !important}
.mt-n5,.my-n5 {margin-top: calc(var(--spacer-5) * -1) !important}
.mr-n5,.mx-n5 {margin-right: calc(var(--spacer-5) * -1) !important}
.mb-n5,.my-n5 {margin-bottom: calc(var(--spacer-5) * -1) !important}
.ml-n5,.mx-n5 {margin-left: calc(var(--spacer-5) * -1) !important}
.m-auto {margin: auto !important}
.mt-auto,.my-auto {margin-top: auto !important}
.mr-auto,.mx-auto {margin-right: auto !important}
.mb-auto,.my-auto {margin-bottom: auto !important}
.ml-auto,.mx-auto {margin-left: auto !important}
@media (min-width: 768px) {
.m-md-0 {margin: 0 !important}
.mt-md-0,.my-md-0 {margin-top: 0 !important}
.mr-md-0,.mx-md-0 {margin-right: 0 !important}
.mb-md-0,.my-md-0 {margin-bottom: 0 !important}
.ml-md-0,.mx-md-0 {margin-left: 0 !important}
.m-md-1 {margin: var(--spacer-1) !important}
.mt-md-1,.my-md-1 {margin-top: var(--spacer-1) !important}
.mr-md-1,.mx-md-1 {margin-right: var(--spacer-1) !important}
.mb-md-1,.my-md-1 {margin-bottom: var(--spacer-1) !important}
.ml-md-1,.mx-md-1 {margin-left: var(--spacer-1) !important}
.m-md-2 {margin: var(--spacer-2) !important}
.mt-md-2,.my-md-2 {margin-top: var(--spacer-2) !important}
.mr-md-2,.mx-md-2 {margin-right: var(--spacer-2) !important}
.mb-md-2,.my-md-2 {margin-bottom: var(--spacer-2) !important}
.ml-md-2,.mx-md-2 {margin-left: var(--spacer-2) !important}
.m-md-3 {margin: var(--spacer-3) !important}
.mt-md-3,.my-md-3 {margin-top: var(--spacer-3) !important}
.mr-md-3,.mx-md-3 {margin-right: var(--spacer-3) !important}
.mb-md-3,.my-md-3 {margin-bottom: var(--spacer-3) !important}
.ml-md-3,.mx-md-3 {margin-left: var(--spacer-3) !important}
.m-md-4 {margin: var(--spacer-4) !important}
.mt-md-4,.my-md-4 {margin-top: var(--spacer-4) !important}
.mr-md-4,.mx-md-4 {margin-right: var(--spacer-4) !important}
.mb-md-4,.my-md-4 {margin-bottom: var(--spacer-4) !important}
.ml-md-4,.mx-md-4 {margin-left: var(--spacer-4) !important}
.m-md-5 {margin: var(--spacer-5) !important}
.mt-md-5,.my-md-5 {margin-top: var(--spacer-5) !important}
.mr-md-5,.mx-md-5 {margin-right: var(--spacer-5) !important}
.mb-md-5,.my-md-5 {margin-bottom: var(--spacer-5) !important}
.ml-md-5,.mx-md-5 {margin-left: var(--spacer-5) !important}
.p-md-0 {padding: 0 !important}
.pt-md-0,.py-md-0 {padding-top: 0 !important}
.pr-md-0,.px-md-0 {padding-right: 0 !important}
.pb-md-0,.py-md-0 {padding-bottom: 0 !important}
.pl-md-0,.px-md-0 {padding-left: 0 !important}
.p-md-1 {padding: var(--spacer-1) !important}
.pt-md-1,.py-md-1 {padding-top: var(--spacer-1) !important}
.pr-md-1,.px-md-1 {padding-right: var(--spacer-1) !important}
.pb-md-1,.py-md-1 {padding-bottom: var(--spacer-1) !important}
.pl-md-1,.px-md-1 {padding-left: var(--spacer-1) !important}
.p-md-2 {padding: var(--spacer-2) !important}
.pt-md-2,.py-md-2 {padding-top: var(--spacer-2) !important}
.pr-md-2,.px-md-2 {padding-right: var(--spacer-2) !important}
.pb-md-2,.py-md-2 {padding-bottom: var(--spacer-2) !important}
.pl-md-2,.px-md-2 {padding-left: var(--spacer-2) !important}
.p-md-3 {padding: var(--spacer-3) !important}
.pt-md-3,.py-md-3 {padding-top: var(--spacer-3) !important}
.pr-md-3,.px-md-3 {padding-right: var(--spacer-3) !important}
.pb-md-3,.py-md-3 {padding-bottom: var(--spacer-3) !important}
.pl-md-3,.px-md-3 {padding-left: var(--spacer-3) !important}
.p-md-4 {padding: var(--spacer-4) !important}
.pt-md-4,.py-md-4 {padding-top: var(--spacer-4) !important}
.pr-md-4,.px-md-4 {padding-right: var(--spacer-4) !important}
.pb-md-4,.py-md-4 {padding-bottom: var(--spacer-4) !important}
.pl-md-4,.px-md-4 {padding-left: var(--spacer-4) !important}
.p-md-5 {padding: var(--spacer-5) !important}
.pt-md-5,.py-md-5 {padding-top: var(--spacer-5) !important}
.pr-md-5,.px-md-5 {padding-right: var(--spacer-5) !important}
.pb-md-5,.py-md-5 {padding-bottom: var(--spacer-5) !important}
.pl-md-5,.px-md-5 {padding-left: var(--spacer-5) !important}
.m-md-n1 {margin: calc(var(--spacer-1) * -1) !important}
.mt-md-n1,.my-md-n1 {margin-top: calc(var(--spacer-1) * -1) !important}
.mr-md-n1,.mx-md-n1 {margin-right: calc(var(--spacer-1) * -1) !important}
.mb-md-n1,.my-md-n1 {margin-bottom: calc(var(--spacer-1) * -1) !important}
.ml-md-n1,.mx-md-n1 {margin-left: calc(var(--spacer-1) * -1) !important}
.m-md-n2 {margin: calc(var(--spacer-2) * -1) !important}
.mt-md-n2,.my-md-n2 {margin-top: calc(var(--spacer-2) * -1) !important}
.mr-md-n2,.mx-md-n2 {margin-right: calc(var(--spacer-2) * -1) !important}
.mb-md-n2,.my-md-n2 {margin-bottom: calc(var(--spacer-2) * -1) !important}
.ml-md-n2,.mx-md-n2 {margin-left: calc(var(--spacer-2) * -1) !important}
.m-md-n3 {margin: calc(var(--spacer-3) * -1) !important}
.mt-md-n3,.my-md-n3 {margin-top: calc(var(--spacer-3) * -1) !important}
.mr-md-n3,.mx-md-n3 {margin-right: calc(var(--spacer-3) * -1) !important}
.mb-md-n3,.my-md-n3 {margin-bottom: calc(var(--spacer-3) * -1) !important}
.ml-md-n3,.mx-md-n3 {margin-left: calc(var(--spacer-3) * -1) !important}
.m-md-n4 {margin: calc(var(--spacer-4) * -1) !important}
.mt-md-n4,.my-md-n4 {margin-top: calc(var(--spacer-4) * -1) !important}
.mr-md-n4,.mx-md-n4 {margin-right: calc(var(--spacer-4) * -1) !important}
.mb-md-n4,.my-md-n4 {margin-bottom: calc(var(--spacer-4) * -1) !important}
.ml-md-n4,.mx-md-n4 {margin-left: calc(var(--spacer-4) * -1) !important}
.m-md-n5 {margin: calc(var(--spacer-5) * -1) !important}
.mt-md-n5,.my-md-n5 {margin-top: calc(var(--spacer-5) * -1) !important}
.mr-md-n5,.mx-md-n5 {margin-right: calc(var(--spacer-5) * -1) !important}
.mb-md-n5,.my-md-n5 {margin-bottom: calc(var(--spacer-5) * -1) !important}
.ml-md-n5,.mx-md-n5 {margin-left: calc(var(--spacer-5) * -1) !important}
.m-md-auto {margin: auto !important}
.mt-md-auto,.my-md-auto {margin-top: auto !important}
.mr-md-auto,.mx-md-auto {margin-right: auto !important}
.mb-md-auto,.my-md-auto {margin-bottom: auto !important}
.ml-md-auto,.mx-md-auto {margin-left: auto !important}
}
@media (min-width: 992px) {
.m-lg-0 {margin: 0 !important}
.mt-lg-0,.my-lg-0 {margin-top: 0 !important}
.mr-lg-0,.mx-lg-0 {margin-right: 0 !important}
.mb-lg-0,.my-lg-0 {margin-bottom: 0 !important}
.ml-lg-0,.mx-lg-0 {margin-left: 0 !important}
.m-lg-1 {margin: var(--spacer-1) !important}
.mt-lg-1,.my-lg-1 {margin-top: var(--spacer-1) !important}
.mr-lg-1,.mx-lg-1 {margin-right: var(--spacer-1) !important}
.mb-lg-1,.my-lg-1 {margin-bottom: var(--spacer-1) !important}
.ml-lg-1,.mx-lg-1 {margin-left: var(--spacer-1) !important}
.m-lg-2 {margin: var(--spacer-2) !important}
.mt-lg-2,.my-lg-2 {margin-top: var(--spacer-2) !important}
.mr-lg-2,.mx-lg-2 {margin-right: var(--spacer-2) !important}
.mb-lg-2,.my-lg-2 {margin-bottom: var(--spacer-2) !important}
.ml-lg-2,.mx-lg-2 {margin-left: var(--spacer-2) !important}
.m-lg-3 {margin: var(--spacer-3) !important}
.mt-lg-3,.my-lg-3 {margin-top: var(--spacer-3) !important}
.mr-lg-3,.mx-lg-3 {margin-right: var(--spacer-3) !important}
.mb-lg-3,.my-lg-3 {margin-bottom: var(--spacer-3) !important}
.ml-lg-3,.mx-lg-3 {margin-left: var(--spacer-3) !important}
.m-lg-4 {margin: var(--spacer-4) !important}
.mt-lg-4,.my-lg-4 {margin-top: var(--spacer-4) !important}
.mr-lg-4,.mx-lg-4 {margin-right: var(--spacer-4) !important}
.mb-lg-4,.my-lg-4 {margin-bottom: var(--spacer-4) !important}
.ml-lg-4,.mx-lg-4 {margin-left: var(--spacer-4) !important}
.m-lg-5 {margin: var(--spacer-5) !important}
.mt-lg-5,.my-lg-5 {margin-top: var(--spacer-5) !important}
.mr-lg-5,.mx-lg-5 {margin-right: var(--spacer-5) !important}
.mb-lg-5,.my-lg-5 {margin-bottom: var(--spacer-5) !important}
.ml-lg-5,.mx-lg-5 {margin-left: var(--spacer-5) !important}
.p-lg-0 {padding: 0 !important}
.pt-lg-0,.py-lg-0 {padding-top: 0 !important}
.pr-lg-0,.px-lg-0 {padding-right: 0 !important}
.pb-lg-0,.py-lg-0 {padding-bottom: 0 !important}
.pl-lg-0,.px-lg-0 {padding-left: 0 !important}
.p-lg-1 {padding: var(--spacer-1) !important}
.pt-lg-1,.py-lg-1 {padding-top: var(--spacer-1) !important}
.pr-lg-1,.px-lg-1 {padding-right: var(--spacer-1) !important}
.pb-lg-1,.py-lg-1 {padding-bottom: var(--spacer-1) !important}
.pl-lg-1,.px-lg-1 {padding-left: var(--spacer-1) !important}
.p-lg-2 {padding: var(--spacer-2) !important}
.pt-lg-2,.py-lg-2 {padding-top: var(--spacer-2) !important}
.pr-lg-2,.px-lg-2 {padding-right: var(--spacer-2) !important}
.pb-lg-2,.py-lg-2 {padding-bottom: var(--spacer-2) !important}
.pl-lg-2,.px-lg-2 {padding-left: var(--spacer-2) !important}
.p-lg-3 {padding: var(--spacer-3) !important}
.pt-lg-3,.py-lg-3 {padding-top: var(--spacer-3) !important}
.pr-lg-3,.px-lg-3 {padding-right: var(--spacer-3) !important}
.pb-lg-3,.py-lg-3 {padding-bottom: var(--spacer-3) !important}
.pl-lg-3,.px-lg-3 {padding-left: var(--spacer-3) !important}
.p-lg-4 {padding: var(--spacer-4) !important}
.pt-lg-4,.py-lg-4 {padding-top: var(--spacer-4) !important}
.pr-lg-4,.px-lg-4 {padding-right: var(--spacer-4) !important}
.pb-lg-4,.py-lg-4 {padding-bottom: var(--spacer-4) !important}
.pl-lg-4,.px-lg-4 {padding-left: var(--spacer-4) !important}
.p-lg-5 {padding: var(--spacer-5) !important}
.pt-lg-5,.py-lg-5 {padding-top: var(--spacer-5) !important}
.pr-lg-5,.px-lg-5 {padding-right: var(--spacer-5) !important}
.pb-lg-5,.py-lg-5 {padding-bottom: var(--spacer-5) !important}
.pl-lg-5,.px-lg-5 {padding-left: var(--spacer-5) !important}
.m-lg-n1 {margin: calc(var(--spacer-1) * -1) !important}
.mt-lg-n1,.my-lg-n1 {margin-top: calc(var(--spacer-1) * -1) !important}
.mr-lg-n1,.mx-lg-n1 {margin-right: calc(var(--spacer-1) * -1) !important}
.mb-lg-n1,.my-lg-n1 {margin-bottom: calc(var(--spacer-1) * -1) !important}
.ml-lg-n1,.mx-lg-n1 {margin-left: calc(var(--spacer-1) * -1) !important}
.m-lg-n2 {margin: calc(var(--spacer-2) * -1) !important}
.mt-lg-n2,.my-lg-n2 {margin-top: calc(var(--spacer-2) * -1) !important}
.mr-lg-n2,.mx-lg-n2 {margin-right: calc(var(--spacer-2) * -1) !important}
.mb-lg-n2,.my-lg-n2 {margin-bottom: calc(var(--spacer-2) * -1) !important}
.ml-lg-n2,.mx-lg-n2 {margin-left: calc(var(--spacer-2) * -1) !important}
.m-lg-n3 {margin: calc(var(--spacer-3) * -1) !important}
.mt-lg-n3,.my-lg-n3 {margin-top: calc(var(--spacer-3) * -1) !important}
.mr-lg-n3,.mx-lg-n3 {margin-right: calc(var(--spacer-3) * -1) !important}
.mb-lg-n3,.my-lg-n3 {margin-bottom: calc(var(--spacer-3) * -1) !important}
.ml-lg-n3,.mx-lg-n3 {margin-left: calc(var(--spacer-3) * -1) !important}
.m-lg-n4 {margin: calc(var(--spacer-4) * -1) !important}
.mt-lg-n4,.my-lg-n4 {margin-top: calc(var(--spacer-4) * -1) !important}
.mr-lg-n4,.mx-lg-n4 {margin-right: calc(var(--spacer-4) * -1) !important}
.mb-lg-n4,.my-lg-n4 {margin-bottom: calc(var(--spacer-4) * -1) !important}
.ml-lg-n4,.mx-lg-n4 {margin-left: calc(var(--spacer-4) * -1) !important}
.m-lg-n5 {margin: calc(var(--spacer-5) * -1) !important}
.mt-lg-n5,.my-lg-n5 {margin-top: calc(var(--spacer-5) * -1) !important}
.mr-lg-n5,.mx-lg-n5 {margin-right: calc(var(--spacer-5) * -1) !important}
.mb-lg-n5,.my-lg-n5 {margin-bottom: calc(var(--spacer-5) * -1) !important}
.ml-lg-n5,.mx-lg-n5 {margin-left: calc(var(--spacer-5) * -1) !important}
.m-lg-auto {margin: auto !important}
.mt-lg-auto,.my-lg-auto {margin-top: auto !important}
.mr-lg-auto,.mx-lg-auto {margin-right: auto !important}
.mb-lg-auto,.my-lg-auto {margin-bottom: auto !important}
.ml-lg-auto,.mx-lg-auto {margin-left: auto !important}
}
@media (min-width: 1200px) {
.m-xl-0 {margin: 0 !important}
.mt-xl-0,.my-xl-0 {margin-top: 0 !important}
.mr-xl-0,.mx-xl-0 {margin-right: 0 !important}
.mb-xl-0,.my-xl-0 {margin-bottom: 0 !important}
.ml-xl-0,.mx-xl-0 {margin-left: 0 !important}
.m-xl-1 {margin: var(--spacer-1) !important}
.mt-xl-1,.my-xl-1 {margin-top: var(--spacer-1) !important}
.mr-xl-1,.mx-xl-1 {margin-right: var(--spacer-1) !important}
.mb-xl-1,.my-xl-1 {margin-bottom: var(--spacer-1) !important}
.ml-xl-1,.mx-xl-1 {margin-left: var(--spacer-1) !important}
.m-xl-2 {margin: var(--spacer-2) !important}
.mt-xl-2,.my-xl-2 {margin-top: var(--spacer-2) !important}
.mr-xl-2,.mx-xl-2 {margin-right: var(--spacer-2) !important}
.mb-xl-2,.my-xl-2 {margin-bottom: var(--spacer-2) !important}
.ml-xl-2,.mx-xl-2 {margin-left: var(--spacer-2) !important}
.m-xl-3 {margin: var(--spacer-3) !important}
.mt-xl-3,.my-xl-3 {margin-top: var(--spacer-3) !important}
.mr-xl-3,.mx-xl-3 {margin-right: var(--spacer-3) !important}
.mb-xl-3,.my-xl-3 {margin-bottom: var(--spacer-3) !important}
.ml-xl-3,.mx-xl-3 {margin-left: var(--spacer-3) !important}
.m-xl-4 {margin: var(--spacer-4) !important}
.mt-xl-4,.my-xl-4 {margin-top: var(--spacer-4) !important}
.mr-xl-4,.mx-xl-4 {margin-right: var(--spacer-4) !important}
.mb-xl-4,.my-xl-4 {margin-bottom: var(--spacer-4) !important}
.ml-xl-4,.mx-xl-4 {margin-left: var(--spacer-4) !important}
.m-xl-5 {margin: var(--spacer-5) !important}
.mt-xl-5,.my-xl-5 {margin-top: var(--spacer-5) !important}
.mr-xl-5,.mx-xl-5 {margin-right: var(--spacer-5) !important}
.mb-xl-5,.my-xl-5 {margin-bottom: var(--spacer-5) !important}
.ml-xl-5,.mx-xl-5 {margin-left: var(--spacer-5) !important}
.p-xl-0 {padding: 0 !important}
.pt-xl-0,.py-xl-0 {padding-top: 0 !important}
.pr-xl-0,.px-xl-0 {padding-right: 0 !important}
.pb-xl-0,.py-xl-0 {padding-bottom: 0 !important}
.pl-xl-0,.px-xl-0 {padding-left: 0 !important}
.p-xl-1 {padding: var(--spacer-1) !important}
.pt-xl-1,.py-xl-1 {padding-top: var(--spacer-1) !important}
.pr-xl-1,.px-xl-1 {padding-right: var(--spacer-1) !important}
.pb-xl-1,.py-xl-1 {padding-bottom: var(--spacer-1) !important}
.pl-xl-1,.px-xl-1 {padding-left: var(--spacer-1) !important}
.p-xl-2 {padding: var(--spacer-2) !important}
.pt-xl-2,.py-xl-2 {padding-top: var(--spacer-2) !important}
.pr-xl-2,.px-xl-2 {padding-right: var(--spacer-2) !important}
.pb-xl-2,.py-xl-2 {padding-bottom: var(--spacer-2) !important}
.pl-xl-2,.px-xl-2 {padding-left: var(--spacer-2) !important}
.p-xl-3 {padding: var(--spacer-3) !important}
.pt-xl-3,.py-xl-3 {padding-top: var(--spacer-3) !important}
.pr-xl-3,.px-xl-3 {padding-right: var(--spacer-3) !important}
.pb-xl-3,.py-xl-3 {padding-bottom: var(--spacer-3) !important}
.pl-xl-3,.px-xl-3 {padding-left: var(--spacer-3) !important}
.p-xl-4 {padding: var(--spacer-4) !important}
.pt-xl-4,.py-xl-4 {padding-top: var(--spacer-4) !important}
.pr-xl-4,.px-xl-4 {padding-right: var(--spacer-4) !important}
.pb-xl-4,.py-xl-4 {padding-bottom: var(--spacer-4) !important}
.pl-xl-4,.px-xl-4 {padding-left: var(--spacer-4) !important}
.p-xl-5 {padding: var(--spacer-5) !important}
.pt-xl-5,.py-xl-5 {padding-top: var(--spacer-5) !important}
.pr-xl-5,.px-xl-5 {padding-right: var(--spacer-5) !important}
.pb-xl-5,.py-xl-5 {padding-bottom: var(--spacer-5) !important}
.pl-xl-5,.px-xl-5 {padding-left: var(--spacer-5) !important}
.m-xl-n1 {margin: calc(var(--spacer-1) * -1) !important}
.mt-xl-n1,.my-xl-n1 {margin-top: calc(var(--spacer-1) * -1) !important}
.mr-xl-n1,.mx-xl-n1 {margin-right: calc(var(--spacer-1) * -1) !important}
.mb-xl-n1,.my-xl-n1 {margin-bottom: calc(var(--spacer-1) * -1) !important}
.ml-xl-n1,.mx-xl-n1 {margin-left: calc(var(--spacer-1) * -1) !important}
.m-xl-n2 {margin: calc(var(--spacer-2) * -1) !important}
.mt-xl-n2,.my-xl-n2 {margin-top: calc(var(--spacer-2) * -1) !important}
.mr-xl-n2,.mx-xl-n2 {margin-right: calc(var(--spacer-2) * -1) !important}
.mb-xl-n2,.my-xl-n2 {margin-bottom: calc(var(--spacer-2) * -1) !important}
.ml-xl-n2,.mx-xl-n2 {margin-left: calc(var(--spacer-2) * -1) !important}
.m-xl-n3 {margin: calc(var(--spacer-3) * -1) !important}
.mt-xl-n3,.my-xl-n3 {margin-top: calc(var(--spacer-3) * -1) !important}
.mr-xl-n3,.mx-xl-n3 {margin-right: calc(var(--spacer-3) * -1) !important}
.mb-xl-n3,.my-xl-n3 {margin-bottom: calc(var(--spacer-3) * -1) !important}
.ml-xl-n3,.mx-xl-n3 {margin-left: calc(var(--spacer-3) * -1) !important}
.m-xl-n4 {margin: calc(var(--spacer-4) * -1) !important}
.mt-xl-n4,.my-xl-n4 {margin-top: calc(var(--spacer-4) * -1) !important}
.mr-xl-n4,.mx-xl-n4 {margin-right: calc(var(--spacer-4) * -1) !important}
.mb-xl-n4,.my-xl-n4 {margin-bottom: calc(var(--spacer-4) * -1) !important}
.ml-xl-n4,.mx-xl-n4 {margin-left: calc(var(--spacer-4) * -1) !important}
.m-xl-n5 {margin: calc(var(--spacer-5) * -1) !important}
.mt-xl-n5,.my-xl-n5 {margin-top: calc(var(--spacer-5) * -1) !important}
.mr-xl-n5,.mx-xl-n5 {margin-right: calc(var(--spacer-5) * -1) !important}
.mb-xl-n5,.my-xl-n5 {margin-bottom: calc(var(--spacer-5) * -1) !important}
.ml-xl-n5,.mx-xl-n5 {margin-left: calc(var(--spacer-5) * -1) !important}
.m-xl-auto {margin: auto !important}
.mt-xl-auto,.my-xl-auto {margin-top: auto !important}
.mr-xl-auto,.mx-xl-auto {margin-right: auto !important}
.mb-xl-auto,.my-xl-auto {margin-bottom: auto !important}
.ml-xl-auto,.mx-xl-auto {margin-left: auto !important}
}
/* <3 Height & Width
================================================================== */
.w-25 {width: calc((100% / (12 / 3)) - var(--grid-gutter)) !important}
.w-50 {width: calc((100% / (12 / 6)) - var(--grid-gutter)) !important}
.w-75 {width: calc((100% / (12 / 9)) - var(--grid-gutter)) !important}
.w-100 {width: 100% !important}
.w-auto {width: auto !important}
.h-25 {height: calc((100% / (12 / 3)) - var(--grid-gutter)) !important}
.h-50 {height: calc((100% / (12 / 6)) - var(--grid-gutter)) !important}
.h-75 {height: calc((100% / (12 / 9)) - var(--grid-gutter)) !important}
.h-100 {height: 100% !important}
.h-auto {height: auto !important}
.mw-100 {max-width: 100% !important}
.mh-100 {max-height: 100% !important}
.min-vw-100 {min-width: 100vw !important}
.min-vh-100 {min-height: 100vh !important}
.vw-100 {width: 100vw !important}
.vh-100 {height: 100vh !important} | styles/softserve.css | :root {
/* Accent Colors
================================================================ */
/* Primary Colors */
--primary-accent: #e27c74;
--primary-accent-font: #ffffff;
/* Secondary Colors */
--secondary-accent: #74524c;
--secondary-accent-font: #fff;
/* Base Colors
================================================================ */
/* Background Colors */
--background-color: #ffffff;
--background-color-faded: #f1f1f1;
/* Font Colors */
--font-color: #443230;
--font-color-faded: #855d56;
/* Font Styles
================================================================ */
/* Font Sizes */
--font-size: .9rem;
--font-size-sm: 80%;
--font-size-lg: 120%;
/* Font Family */
--font-family-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
--font-family-display: "Comfortaa", var(--font-family-body);
--font-family-code: "Monaco", "Consolas", "Lucida Console", monospace;
/* Font Weight */
--font-weight: 400;
--font-weight-light: 300;
--font-weight-heavy: 500;
/* Border Styles
================================================================ */
--border-color: rgba(0, 0, 0, 0.125);
--border-width: 1px;
--border-style: solid;
/* Border Radius */
--border-radius: 1rem;
--border-radius-sm: .75rem;
--border-radius-lg: 1.25rem;
/* Body
================================================================ */
/* Body Background */
--body-background-color: var(--background-color);
/* Body Font */
--body-font-color: var(--font-color);
--body-font-family: var(--font-family-sans-body);
--body-font-size: var(--font-size);
--body-font-weight: var(--font-weight);
/* Header Styles
================================================================ */
/* Header Font Sizes */
--h1-font-size: 2.25em;
--h2-font-size: 2em;
--h3-font-size: 1.75em;
--h4-font-size: 1.5em;
--h5-font-size: 1.25em;
--h6-font-size: 1em;
/* Header Font Styles */
--header-font-weight: var(--font-weight);
--header-font-family: var(--font-family-display);
--header-margin-bottom: var(--spacer-4);
/* Links
================================================================ */
--link-color: var(--primary-accent);
--link-color-hover: var(--secondary-accent);
/* HR
================================================================ */
--hr-border-color: var(--border-color);
--hr-border-size: var(--border-width);
--hr-border-style: var(--border-style);
--hr-border-spacer: var(--spacer-5);
/* Navbar
================================================================ */
/* Navbar Background Styles */
--navbar-background-color: var(--background-color-faded);
--navbar-background-color-hover: var(--background-color);
/* Navbar Font Styles */
--navbar-font-color: var(--font-color-faded);
--navbar-font-color-hover: var(--primary-accent);
--navbar-font-family: var(--font-family-display);
--navbar-font-size: var(--body-font-size);
/* Navbar Logo Styles */
--navbar-logo-font-color: var(--navbar-font-color-hover);
--navbar-logo-font-color-hover: var(--navbar-font-color);
--navbar-logo-font-size: var(--h5-font-size);
/* Navbar Border Styles */
--navbar-border-width: var(--border-width);
--navbar-border-style: var(--border-style);
--navbar-border-color: var(--border-color);
/* Navbar Container Width on Desktop */
--navbar-container-width: var(--container-width);
--navbar-container-padding: var(--grid-gutter);
/* Spacing
================================================================ */
/* Padding & Margin Sizes */
--spacer-1: .25rem;
--spacer-2: .5rem;
--spacer-3: 1rem;
--spacer-4: 1.5rem;
--spacer-5: 3rem;
/* Bottom margin of blockquotes, lists, tables, etc. */
--element-spacer: var(--spacer-4);
/* Grid spacing */
--grid-gutter: var(--spacer-3);
/* Other Utility
================================================================ */
--container-width: calc(750px + (var(--grid-gutter) * 2));
--modal-width: 600px;
/* Transition time of links, buttons, etc. */
--transition-time: .3s;
/* Breakpoints (for reference only)
================================================================ */
--md-break: 768px;
--lg-break: 992px;
--xl-break: 1200px;
}
/* ================================================================ /
Reset Elements
================================================================== */
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: inherit;
vertical-align: baseline;
}
*,
*:before,
*:after {
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
/* <3 Body
================================================================== */
html{
-webkit-box-sizing: border-box;
box-sizing: border-box;
-ms-overflow-style: scrollbar;
font-size : 100%;
line-height: 1.15;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
scroll-behavior: smooth;
}
body {
background-color: var(--body-background-color);
color: var(--body-font-color);
font-family: var(--font-family-body);
font-size: var(--body-font-size);
font-weight: var(--body-font-weight);
letter-spacing: .05em;
line-height: 2;
}
main {
display: block;
}
/* <3 Headers
================================================================== */
h1,h2,h3,
h4,h5,h6,
.h1,.h2,.h3,
.h4,.h5,.h6 {
line-height: 1.2;
font-weight: var(--header-font-weight);
font-family: var(--header-font-family);
margin: 0 0 var(--header-margin-bottom);
}
h1,.h1 {font-size: var(--h1-font-size);}
h2,.h2 {font-size: var(--h2-font-size);}
h3,.h3 {font-size: var(--h3-font-size);}
h4,.h4 {font-size: var(--h4-font-size);}
h5,.h5 {font-size: var(--h5-font-size);}
h6,.h6 {font-size: var(--h6-font-size);}
/* <3 Links
================================================================== */
a,
a:visited {
color: var(--link-color);
text-decoration: none;
background-color: transparent;
transition: color var(--transition-time) ease-in-out;
}
a:hover,
a:focus,
a:active {
color: var(--link-color-hover);
}
/* <3 Typography
================================================================== */
p {margin-bottom: calc(var(--element-spacer) * .5);}
div p:last-child {margin: 0 !important}
strong,time,b {font-weight: var(--font-weight-heavy);}
em,dfn,i {font-style: italic;}
small {font-size: var(--font-size-sm);}
sub,
sup {
font-size: var(--font-size-sm);
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {bottom: -0.25em;}
sup {top: -0.5em;}
/* <3 Blockquote
================================================================== */
blockquote, q {
display: block;
border-left: 3px solid var(--border-color);
padding: var(--spacer-2) var(--spacer-3);
margin-left: var(--spacer-4);
margin-bottom: var(--element-spacer);
}
div blockquote:last-child,
q blockquote:last-child,
blockquote *:last-child,
q *:last-child {
margin-bottom: 0;
}
cite {
letter-spacing: 1px;
text-transform: uppercase;
display: block;
text-align: right;
font-style: italic;
font-size: var(--font-size-sm);
}
/* <3 Code
================================================================== */
kbd,
code,
samp,
pre,
var {
font-family: var(--font-family-code), monospace;
}
code,
pre {
background: var(--background-color-faded);
color: var(--font-color-faded);
letter-spacing: 0;
}
code {
padding: var(--spacer-1) var(--spacer-2);
border-radius: var(--border-radius-sm);
}
pre {
padding: var(--spacer-3) var(--spacer-4);
border-left: var(--border-radius-sm) solid var(--primary-accent);
border-radius: var(--border-radius-sm) var(--border-radius) var(--border-radius) var(--border-radius-sm);
margin-bottom: var(--element-spacer);
overflow: auto;
line-height: 1.5;
}
code pre,
pre code {
padding: 0;
}
/* <3 HR
================================================================== */
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
border: 0;
border-top: var(--hr-border-size) var(--hr-border-style) var(--hr-border-color);
margin: var(--hr-border-spacer) 0;
}
/* <3 Images
================================================================== */
img {
display: block;
height: auto;
max-width: 100%;
border-style: none;
}
figure {
display: inline-block;
width: auto;
padding: var(--spacer-2);
border: var(--border-width) var(--border-style) var(--border-color);
}
figure img {
margin: 0;
}
figure figcaption {
font-size: var(--font-size-sm);
margin-top: var(--spacer-3);
}
.img-thumbnail {
border: var(--border-width) var(--border-style) var(--border-color);
border-radius: var(--border-radius);
padding: var(--spacer-2);
transition: border-color var(--transition-time) ease-in-out;
}
a:hover .img-thumbnail,
a:focus .img-thumbnail {
border-color: var(--primary-accent);
}
.img-thumbnail img{border-radius: calc(var(--border-radius) / 2);}
/* <3 Lists
================================================================== */
ol {list-style: decimal outside}
ul {list-style: disc outside}
ul,
ol {
margin: var(--element-spacer) 0 var(--element-spacer) var(--spacer-4);
padding-left: var(--spacer-3);
}
li ul,
li ol {
margin-top: var(--spacer-1);
margin-bottom: var(--spacer-1);
}
ul li,
ol li {
margin-bottom: var(--spacer-2);
}
dl dd {
padding-left: var(--spacer-4);
}
.list-unstyled{
list-style: none;
margin: 0;
padding: 0;
}
/* <3 Table
================================================================== */
table {
display: block;
border-collapse: collapse;
table-layout: fixed;
width: 100%;
margin-bottom: var(--element-spacer);
}
table thead tr {
border-bottom: calc(var(--border-width) * 2) var(--border-style) var(--border-color);
}
table tr {
border-bottom: var(--border-width) var(--border-style) var(--border-color);
}
table tbody tr:last-child {
border-bottom: 0;
}
table th {
color: var(--font-color-faded);
font-weight: var(--font-weight-heavy);
}
table th,
table td {
padding: var(--spacer-3);
text-align: left;
}
td:first-child,
th:first-child {
padding-left: 0;
}
td:last-child,
th:last-child {
padding-right: 0;
}
@media (min-width: 768px) {
table {
display: table;
overflow-x: auto;
}
}
/* <3 Utility
================================================================== */
.clearfix::after {
content: "";
display: table;
clear: both;
}
@media (min-width: 768px){
.float-right {float: right !important;}
.float-left {float: left !important;}
}
.fixed-top {
position: fixed;
top: 0;
z-index: 1025;
}
.fixed-bottom {
position: fixed;
bottom: 0;
z-index: 1025;
}
.sticky-top {
position: sticky;
top: 0;
z-index: 1025;
}
/* <3 Scrollbar
================================================================== */
/* Removed from mobile view */
@media (min-width: 762px){
*::-webkit-scrollbar-thumb {
background-color: var(--border-color);
border: 4px solid var(--background-color-faded);
border-radius: 10px;
}
*::-webkit-scrollbar-corner {
background-color: var(--background-color-faded);
}
*::-webkit-scrollbar {
width: 14px;
height: 14px;
background-color: var(--background-color-faded);
}
body::-webkit-scrollbar-thumb {
background-color: var(--primary-accent);
border: 0;
border-radius: 0;
}
body::-webkit-scrollbar {
background-color: var(--background-color);
}
}
/* <3 Forms
================================================================== */
/* Global input style */
input[type='color'],
input[type='date'],
input[type='datetime'],
input[type='datetime-local'],
input[type='email'],
input[type='month'],
input[type='number'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='url'],
input[type='week'],
input:not([type]),
textarea,
select {
-webkit-appearance: none;
height: 40px;
width: 100%;
cursor: pointer;
border: 1px solid var(--border-color);
border-left: var(--border-radius-sm) solid var(--border-color);
border-radius: var(--border-radius-sm) var(--border-radius) var(--border-radius) var(--border-radius-sm);
background-color: var(--background-color-faded);
color: var(--font-color-faded);
font-weight: var(--font-weight);
font-family: var(--body-font-family);
letter-spacing: .02em;
padding: var(--spacer-2) var(--spacer-3);
margin-bottom: var(--spacer-3);
transition: border-color var(--transition-time) ease-in-out;
}
input[type='color']:focus,
input[type='date']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='email']:focus,
input[type='month']:focus,
input[type='number']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='text']:focus,
input[type='url']:focus,
input[type='week']:focus,
input:not([type]):focus,
textarea:focus,
select:focus {
border-color: var(--primary-accent);
outline: 0;
}
select {padding-right: var(--spacer-5);}
select[multiple] {
background: none;
height: auto;
}
textarea {
min-height: 100px;
padding: var(--spacer-3);
width: 100% !important;
}
label,
legend {
display: block;
font-size: var(--body-font-size);
margin-bottom: var(--spacer-2);
}
fieldset {
border-width: 0;
padding: 0;
}
[hidden] {
display: none;
}
/* <3 Buttons
================================================================== */
/* Global button style */
.btn,
a.btn,
button,
[type="button"],
[type="submit"],
[type="reset"] {
background-color: var(--primary-accent);
border: 1px solid var(--primary-accent);
border-radius: var(--border-radius);
color: var(--primary-accent-font) !important;
display: inline-block;
text-align: center;
letter-spacing: .1em;
font: inherit;
font-weight: var(--font-weight-heavy);
font-size: var(--font-size);
text-transform: uppercase;
white-space: nowrap;
cursor: pointer;
user-select: none;
padding: var(--spacer-2) var(--spacer-4) !important;
transition:
color var(--transition-time) ease-in-out,
background-color var(--transition-time) ease-in-out,
border-color var(--transition-time) ease-in-out;
}
/* Secondary Solid */
.btn.btn-secondary {
background-color: var(--secondary-accent) !important;
border-color: var(--secondary-accent) !important;
color: var(--secondary-accent-font) !important;
outline: 0;
}
/* Normal Outline */
.btn.btn-outline{
background-color: transparent !important;
color: var(--primary-accent) !important;
}
/* Secondary Outline */
.btn.btn-outline-secondary{
background-color: transparent !important;
color: var(--secondary-accent) !important;
border-color: var(--secondary-accent) !important;
}
/* Normal Link */
.btn.btn-link{
background-color: transparent !important;
border-color: transparent !important;
color: var(--primary-accent) !important;
}
/* Secondary Link */
.btn.btn-link-secondary{
background-color: transparent !important;
border-color: transparent !important;
color: var(--secondary-accent) !important;
}
/* Hovers */
.btn:focus,
.btn:hover,
[type="submit"]:focus,
[type="submit"]:hover,
[type="button"]:focus,
[type="button"]:hover,
[type="reset"]:focus,
[type="reset"]:hover,
button:focus,
button:hover,
.btn.btn-outline-secondary:focus,
.btn.btn-outline-secondary:hover {
background-color: var(--secondary-accent) !important;
border-color: var(--secondary-accent) !important;
color: var(--secondary-accent-font) !important;
outline: 0;
}
.btn.btn-secondary:focus,
.btn.btn-secondary:hover,
.btn.btn-outline:focus,
.btn.btn-outline:hover {
background-color: var(--primary-accent) !important;
border-color: var(--primary-accent) !important;
color: var(--primary-accent-font) !important;
}
.btn.btn-link:focus,
.btn.btn-link:hover {
background-color: transparent !important;
border-color: transparent !important;
color: var(--secondary-accent) !important;
}
.btn.btn-link-secondary:focus,
.btn.btn-link-secondary:hover {
background-color: transparent !important;
border-color: transparent !important;
color: var(--primary-accent) !important;
}
/* Disable Buttons */
.btn.btn[disabled],
.btn.btn-outline[disabled],
.btn.btn-link[disabled] {
cursor: default;
opacity: .5;
pointer-events: none;
}
/* Large and Small Buttons */
.btn.btn-sm{
padding: calc(var(--spacer-2) / 1.5) calc(var(--spacer-4) / 1.5) !important;
font-size: var(--font-size-sm) !important;
border-radius: var(--border-radius-sm) !important;
}
.btn.btn-lg{
padding: calc(var(--spacer-2) * 1.5) calc(var(--spacer-4) * 1.5) !important;
font-size: var(--font-size-lg) !important;
border-radius: var(--border-radius-lg) !important;
}
/* Badge Type */
.btn.btn-badge{
padding: calc(var(--spacer-1) / 2) var(--spacer-1) !important;
font-size: var(--font-size-sm);
}
/* Normalize Buttons */
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
/* <3 Card
================================================================== */
.card{
border: 1px solid var(--border-color);
background-color: var(--background-color);
border-radius: var(--border-radius);
position: relative;
}
.card-header{
background-color: var(--primary-accent);
color: var(--primary-accent-font);
border-radius: var(--border-radius) var(--border-radius) 0 0;
padding: var(--spacer-3) var(--spacer-4);
margin: -1px;
font-size: var(--h3-font-size);
}
.card-content{
padding: var(--spacer-4);
}
.card-content *:last-child{
margin-bottom: 0;
}
.card-footer{
margin: -1px;
border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
padding: var(--spacer-3) var(--spacer-4);
letter-spacing: 1px;
color: var(--font-color-faded);
text-transform: uppercase;
font-size: var(--font-size-sm);
text-align: right;
border-top: var(--border-width) var(--border-style) var(--border-color);
border-bottom: var(--border-radius) solid var(--primary-accent);
}
/* <3 Pagination
================================================================== */
ul.pagination{
display: flex;
justify-content: start;
list-style: none;
margin: var(--element-spacer) 0;
padding: 0;
letter-spacing: 0;
overflow-x: auto;
}
ul.pagination li a{
display: inline-block;
background-color: var(--body-background-color);
border: var(--border-width) var(--border-style) var(--border-color);
border-right: 0;
text-align: center;
text-decoration: none;
margin-right: -1px;
padding: var(--spacer-2) var(--spacer-3);
transition:
color var(--transition-time) ease,
background-color var(--transition-time) ease,
border-color var(--transition-time) ease;
}
ul.pagination li:first-child *{border-radius: 10px 0 0 10px;}
ul.pagination li:last-child *{
margin-right: 0;
border-radius: 0 10px 10px 0;
border-right: var(--border-width) var(--border-style) var(--border-color);
}
ul.pagination li a:hover,
ul.pagination li a.active{
color: var(--primary-accent-font);
background-color: var(--primary-accent);
border-color: var(--primary-accent);
}
@media (min-width:768px){
ul.pagination{
justify-content: center;
}
}
/* <3 Collapse
================================================================== */
.collapse:not(.show) {
display: none;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
transition: height 0.35s ease;
}
/* <3 Modal
================================================================== */
/* Modal containers */
.modal {
padding: var(--spacer-3);
position: fixed;
top: 0;
left: 0;
z-index: 1150;
display: none;
width: 100%;
height: 100%;
overflow: hidden;
outline: 0;
}
.modal-dialog {
position: relative;
width: auto;
margin: var(--spacer-2);
pointer-events: none;
display: flex;
align-items: center;
min-height: 100%;
}
@media (min-width: 576px) {
.modal-dialog {
max-width: var(--modal-width);
margin: 0 auto;
}
}
/* Modal card */
.modal-card {
border: 1px solid var(--border-color);
background-color: var(--background-color);
border-radius: var(--border-radius);
width: 100%;
pointer-events: auto;
}
.modal-header {
border-radius: var(--border-radius) var(--border-radius) 0 0;
padding: var(--spacer-3) var(--spacer-4);
color: var(--primary-accent-font);
background-color: var(--primary-accent);
font-size: var(--h3-font-size);
display: flex;
flex-direction: row;
justify-content: space-between;
margin: -1px;
}
.close{
color: var(--primary-accent-font);
cursor: pointer;
}
.modal-body {
padding: var(--spacer-4)
}
.modal-footer {
margin: -1px;
border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
padding: var(--spacer-3) var(--spacer-4);
font-size: var(--font-size-sm);
letter-spacing: 1px;
text-transform: uppercase;
color: var(--font-color-faded);
text-align: right;
border-top: 1px solid var(--border-color);
border-bottom: var(--border-radius-sm) solid var(--primary-accent);
text-align: right;
}
/* Modal background */
.modal-open {
overflow: hidden !important;
}
.modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
}
.modal-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1100;
width: 100vw;
height: 100vh;
background-color: rgba(0,0,0,.35);
opacity: 0;
}
.modal-backdrop.show {opacity: 0.75;}
/* Modal transition */
.fade-scale {
transform: scale(0);
opacity: 0;
-webkit-transition: all .5s linear;
-o-transition: all .5s linear;
transition: all .5s linear;
}
.fade-scale.show {
opacity: 1;
transform: scale(1);
}
/* <3 Carousel
================================================================== */
.carousel {
position: relative;
}
.carousel.pointer-event {
touch-action: pan-y;
}
.carousel-inner {
position: relative;
width: 100%;
overflow: hidden;
}
.carousel-inner::after {
display: block;
clear: both;
content: "";
}
.carousel-item {
position: relative;
display: none;
float: left;
width: 100%;
margin-right: -100%;
backface-visibility: hidden;
transition: transform .5s ease-in-out;
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
display: block;
}
.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
transform: translateX(100%);
}
.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
transform: translateX(-100%);
}
.carousel-fade .carousel-inner .carousel-item {
transition-property: opacity;
}
.carousel-fade .carousel-inner .carousel-item,
.carousel-fade .carousel-inner .active.carousel-item-left,
.carousel-fade .carousel-inner .active.carousel-item-right {
opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.carousel-item-left,
.carousel-fade .carousel-inner .prev.carousel-item-right {
opacity: 1;
}
.carousel-fade .carousel-inner .carousel-next,
.carousel-fade .carousel-inner .carousel-prev,
.carousel-fade .carousel-inner .active.carousel-item-left,
.carousel-fade .carousel-inner .active.carousel-item-right {
left: 0;
transform: translate3d(0, 0, 0);
}
.carousel-control-prev,
.carousel-control-next {
position: absolute;
top: 0;
bottom: 0;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
width: 15%;
color: #fff;
text-align: center;
opacity: 0.5;
transition: opacity 0.15s ease;
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
color: #fff;
text-decoration: none;
outline: 0;
opacity: 0.9;
}
.carousel-control-prev {
left: 0;
}
.carousel-control-next {
right: 0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
display: inline-block;
width: 20px;
height: 20px;
background: no-repeat 50% / 100% 100%;
}
.carousel-control-prev-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fdedda' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fdedda' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}
.carousel-indicators {
position: absolute;
right: 0;
bottom: 0;
left: 0;
z-index: 15;
display: flex;
justify-content: center;
padding-left: 0;
margin-right: 15%;
margin-left: 15%;
list-style: none;
}
.carousel-indicators li {
box-sizing: content-box;
flex: 0 1 auto;
width: 30px;
height: 3px;
margin-right: 3px;
margin-left: 3px;
text-indent: -999px;
cursor: pointer;
background-color: #fff;
background-clip: padding-box;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
width: 10px;
height: 10px;
border-radius: 100%;
opacity: .5;
transition: opacity 0.5s ease;
}
.carousel-indicators .active {
opacity: 1;
}
.carousel-indicators {
bottom: calc(var(--spacer-2) * -1);
}
.carousel-caption {
position: absolute;
right: 15%;
bottom: var(--spacer-4);
left: 15%;
z-index: 10;
padding-top: var(--spacer-4);
padding-bottom: var(--spacer-4);
color: #fff;
text-align: center;
}
/* <3 Navbar
================================================================== */
/* Navbar containers */
.navbar {
color: var(--navbar-font-color);
font-family: var(--navbar-font-family);
font-size: var(--navbar-font-size);
background-color: var(--navbar-background-color);
border-bottom: var(--navbar-border-width) var(--navbar-border-style) var(--navbar-border-color);
z-index: 100;
}
.navbar-container{
position: relative;
}
/* Navbar logo container */
.navbar .logo {
font-size: var(--navbar-logo-font-size);
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: var(--spacer-1) var(--spacer-3);
}
.navbar .logo a{
color: var(--navbar-logo-font-color);
}
.navbar .logo a:hover,
.navbar .logo a:focus{
color: var(--navbar-logo-font-color-hover);
}
/* Navbar link container */
.navbar .nav-link-menu {
border-top: 1px solid var(--navbar-border-color);
}
/* Navbar links */
.navbar .nav-link {
display: block;
position: relative;
color: var(--navbar-font-color);
padding: var(--spacer-2) var(--spacer-4);
font-family: var(--navbar-font-family);
cursor: pointer;
transition:
color var(--transition-time) ease-in-out,
background-color var(--transition-time) ease-in-out;
}
.navbar .nav-link:hover {
color: var(--navbar-font-color-hover);
background-color: var(--navbar-background-color-hover);
}
.nav-icon{font-style: normal;}
/* Desktop style - mostly resetting mobile style */
@media (min-width: 768px) {
.navbar-container{
margin: 0 auto;
max-width: var(--navbar-container-width);
padding: 0 var(--navbar-container-padding);
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.navbar .logo {padding: 0;}
.navbar .nav-link-menu{
display: block;
border: 0;
}
.navbar .nav-link {
display: inline-block;
padding: var(--spacer-3) var(--spacer-2);
}
.navbar .nav-link:hover{
background: none;
}
.navbar .menu-toggle {display: none;}
}
/* <3 Navbar Dropdown
================================================================== */
/* Navbar dropdown links */
.navbar .dropdown > .dropdown-menu .nav-link {
font-size: 90%;
}
/* Navbar dropdown link icons */
.navbar .dropdown > .nav-link .nav-icon{
order: 1;
font-size: var(--font-size-sm);
margin-left: var(--spacer-1);
}
/* Navbar dropdown menu show/hide */
.navbar .dropdown .dropdown-menu {
display: none;
}
.navbar .dropdown:hover > .dropdown-menu,
.navbar .dropdown > .dropdown-menu:hover {
display: block;
}
/* Desktop style - mostly resetting mobile style */
@media (min-width: 768px) {
.navbar .dropdown > .nav-link{
display: inline-block;
}
.navbar .dropdown {
position: relative;
display: inline;
}
.navbar .dropdown > .dropdown-menu {
position: absolute;
border: var(--navbar-border-width) var(--navbar-border-style) var(--navbar-border-color);
border-bottom: var(--border-radius-sm) solid var(--navbar-font-color-hover);
background: var(--navbar-background-color);
min-width: 175px;
border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
right: 0;
left: auto;
}
.navbar .dropdown > .dropdown-menu .nav-link {
padding: var(--spacer-2) var(--spacer-3);
border-top: var(--navbar-border-width) var(--navbar-border-style) var(--navbar-border-color);
display: block;
text-align: center;
}
.navbar .dropdown > .dropdown-menu > .nav-link:first-child {border: 0}
/* Secondary Nests */
.navbar .dropdown .dropdown .nav-icon {
position: absolute;
left: var(--spacer-2);
top: 0;
bottom: 0;
display: flex;
align-items: center;
}
.navbar .dropdown .dropdown > .dropdown-menu {
top: 0;
text-align: right;
border-radius: var(--border-radius-sm) 0 var(--border-radius-sm) var(--border-radius-sm);
}
}
/* <3 Borders
================================================================== */
/* Adds Borders */
.border {border: var(--border-width) var(--border-style) var(--border-color) !important;}
.border-top {border-top: var(--border-width) var(--border-style) var(--border-color) !important;}
.border-right {border-right: var(--border-width) var(--border-style) var(--border-color) !important;}
.border-bottom {border-bottom: var(--border-width) var(--border-style) var(--border-color) !important;}
.border-left {border-left: var(--border-width) var(--border-style) var(--border-color) !important;}
/* Removes Borders */
.border-0 {border: 0 !important;}
.border-top-0 {border-top: 0 !important;}
.border-right-0 {border-right: 0 !important;}
.border-bottom-0 {border-bottom: 0 !important;}
.border-left-0 {border-left: 0 !important;}
/* Border Radius */
.rounded-0{border-radius: 0 !important;}
.rounded{border-radius: var(--border-radius) !important;}
.rounded-sm{border-radius: var(--border-radius-sm) !important;}
.rounded-lg{border-radius: var(--border-radius-lg) !important;}
/* Alt Border Colors */
.border-primary {border-color: var(--primary-accent) !important;}
.border-secondary {border-color: var(--secondary-accent) !important;}
/* <3 Text
================================================================== */
/* Text Colors */
.text-white {color: #fff !important;}
.text-black {color: #222 !important;}
.text-body {color: var(--font-color) !important;}
.text-muted {color: var(--font-color-faded) !important;}
.text-primary {color: var(--primary-accent) !important;}
.text-secondary {color: var(--secondary-accent) !important;}
/* Text Color links*/
a.text-white:hover, a.text-white:focus,
a.text-black:hover, a.text-black:focus,
a.text-body:hover, a.text-body:focus,
a.text-secondary:hover, a.text-secondary:focus,
a.text-body:hover, a.text-body:focus {
color: var(--primary-accent) !important;
}
a.text-primary:hover, a.text-primary:focus{
color: var(--secondary-accent) !important;
}
/* Text Positions */
.text-left {text-align: left !important;}
.text-right {text-align: right !important;}
.text-center {text-align: center !important;}
@media (min-width: 768px) {
.text-md-left {text-align: left !important;}
.text-md-right {text-align: right !important;}
.text-md-center {text-align: center !important;}
}
@media (min-width: 992px) {
.text-lg-left {text-align: left !important;}
.text-lg-right {text-align: right !important;}
.text-lg-center {text-align: center !important;}
}
@media (min-width: 1200px) {
.text-xl-left {text-align: left !important;}
.text-xl-right {text-align: right !important;}
.text-xl-center {text-align: center !important;}
}
/* Text Transform */
.text-lowercase {text-transform: lowercase !important;}
.text-uppercase {text-transform: uppercase !important;}
.text-capitalize {text-transform: capitalize !important;}
/* Font Sizes */
.font-size-reset {font-size: var(--font-size) !important;}
.font-size-lg {font-size: var(--font-size-lg) !important;}
.font-size-sm {font-size: var(--font-size-sm) !important;}
/* <3 Backgrounds
================================================================== */
.bg-white {background-color: #fff !important;}
.bg-black {background-color: #222 !important;}
.bg-faded {background-color: var(--background-color-faded) !important;}
.bg-reset {background-color: var(--background-color) !important;}
.bg-primary {background-color: var(--primary-accent) !important;}
.bg-secondary {background-color: var(--secondary-accent) !important;}
/* <3 Containers
================================================================== */
.container,
.container-fluid {
width: 100%;
margin-right: auto;
margin-left: auto
}
.container{
max-width: var(--container-width);
padding: var(--grid-gutter);
}
/* <3 Rows
================================================================== */
.row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: calc(var(--grid-gutter) / -2);
}
.row.no-gutters {
margin-right: 0;
margin-left: 0;
}
/* <3 Columns
================================================================== */
.col,
[class*=" col-"],
[class^="col-"] {
margin: calc(var(--grid-gutter) / 2);
position: relative;
width: 100%;
}
.row.no-gutters > .col,
.row.no-gutters > [class*="col-"] {
margin: 0;
}
.col {
flex-basis: 0;
flex-grow: 1;
max-width: 100%
}
.col-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%
}
.col-1 {
flex: 0 0 calc((100% / (12 / 1)) - var(--grid-gutter));
max-width: calc((100% / (12 / 1)) - var(--grid-gutter))
}
.col-2 {
flex: 0 0 calc((100% / (12 / 2)) - var(--grid-gutter));
max-width: calc((100% / (12 / 2)) - var(--grid-gutter))
}
.col-3 {
flex: 0 0 calc((100% / (12 / 3)) - var(--grid-gutter));
max-width: calc((100% / (12 / 3)) - var(--grid-gutter))
}
.col-4 {
flex: 0 0 calc((100% / (12 / 4)) - var(--grid-gutter));
max-width: calc((100% / (12 / 4)) - var(--grid-gutter))
}
.col-5 {
flex: 0 0 calc((100% / (12 / 5)) - var(--grid-gutter));
max-width: calc((100% / (12 / 5)) - var(--grid-gutter))
}
.col-6 {
flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter));
max-width: calc((100% / (12 / 6)) - var(--grid-gutter))
}
.col-7 {
flex: 0 0 calc((100% / (12 / 7)) - var(--grid-gutter));
max-width: calc((100% / (12 / 7)) - var(--grid-gutter))
}
.col-8 {
flex: 0 0 calc((100% / (12 / 8)) - var(--grid-gutter));
max-width: calc((100% / (12 / 8)) - var(--grid-gutter))
}
.col-9 {
flex: 0 0 calc((100% / (12 / 9)) - var(--grid-gutter));
max-width: calc((100% / (12 / 9)) - var(--grid-gutter))
}
.col-10 {
flex: 0 0 calc((100% / (12 / 10)) - var(--grid-gutter));
max-width: calc((100% / (12 / 10)) - var(--grid-gutter))
}
.col-11 {
flex: 0 0 calc((100% / (12 / 11)) - var(--grid-gutter));
max-width: calc((100% / (12 / 11)) - var(--grid-gutter))
}
.col-12 {
flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter));
max-width: calc((100% / (12 / 12)) - var(--grid-gutter))
}
.order-first {order: -1}
.order-last {order: 13}
.order-0 {order: 0}
.order-1 {order: 1}
.order-2 {order: 2}
.order-3 {order: 3}
@media (min-width: 768px) {
.col-md {
flex-basis: 0;
flex-grow: 1;
max-width: 100%
}
.col-md-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%
}
.col-md-1 {
flex: 0 0 calc((100% / (12 / 1)) - var(--grid-gutter));
max-width: calc((100% / (12 / 1)) - var(--grid-gutter))
}
.col-md-2 {
flex: 0 0 calc((100% / (12 / 2)) - var(--grid-gutter));
max-width: calc((100% / (12 / 2)) - var(--grid-gutter))
}
.col-md-3 {
flex: 0 0 calc((100% / (12 / 3)) - var(--grid-gutter));
max-width: calc((100% / (12 / 3)) - var(--grid-gutter))
}
.col-md-4 {
flex: 0 0 calc((100% / (12 / 4)) - var(--grid-gutter));
max-width: calc((100% / (12 / 4)) - var(--grid-gutter))
}
.col-md-5 {
flex: 0 0 calc((100% / (12 / 5)) - var(--grid-gutter));
max-width: calc((100% / (12 / 5)) - var(--grid-gutter))
}
.col-md-6 {
flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter));
max-width: calc((100% / (12 / 6)) - var(--grid-gutter))
}
.col-md-7 {
flex: 0 0 calc((100% / (12 / 7)) - var(--grid-gutter));
max-width: calc((100% / (12 / 7)) - var(--grid-gutter))
}
.col-md-8 {
flex: 0 0 calc((100% / (12 / 8)) - var(--grid-gutter));
max-width: calc((100% / (12 / 8)) - var(--grid-gutter))
}
.col-md-9 {
flex: 0 0 calc((100% / (12 / 9)) - var(--grid-gutter));
max-width: calc((100% / (12 / 9)) - var(--grid-gutter))
}
.col-md-10 {
flex: 0 0 calc((100% / (12 / 10)) - var(--grid-gutter));
max-width: calc((100% / (12 / 10)) - var(--grid-gutter))
}
.col-md-11 {
flex: 0 0 calc((100% / (12 / 11)) - var(--grid-gutter));
max-width: calc((100% / (12 / 11)) - var(--grid-gutter))
}
.col-md-12 {
flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter));
max-width: calc((100% / (12 / 12)) - var(--grid-gutter))
}
.order-md-first {order: -1}
.order-md-last {order: 4}
.order-md-0 {order: 0}
.order-md-1 {order: 1}
.order-md-2 {order: 2}
.order-md-3 {order: 3}
}
@media (min-width: 992px) {
.col-lg {
flex-basis: 0;
flex-grow: 1;
max-width: 100%
}
.col-lg-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%
}
.col-lg-1 {
flex: 0 0 calc((100% / (12 / 1)) - var(--grid-gutter));
max-width: calc((100% / (12 / 1)) - var(--grid-gutter))
}
.col-lg-2 {
flex: 0 0 calc((100% / (12 / 2)) - var(--grid-gutter));
max-width: calc((100% / (12 / 2)) - var(--grid-gutter))
}
.col-lg-3 {
flex: 0 0 calc((100% / (12 / 3)) - var(--grid-gutter));
max-width: calc((100% / (12 / 3)) - var(--grid-gutter))
}
.col-lg-4 {
flex: 0 0 calc((100% / (12 / 4)) - var(--grid-gutter));
max-width: calc((100% / (12 / 4)) - var(--grid-gutter))
}
.col-lg-5 {
flex: 0 0 calc((100% / (12 / 5)) - var(--grid-gutter));
max-width: calc((100% / (12 / 5)) - var(--grid-gutter))
}
.col-lg-6 {
flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter));
max-width: calc((100% / (12 / 6)) - var(--grid-gutter))
}
.col-lg-7 {
flex: 0 0 calc((100% / (12 / 7)) - var(--grid-gutter));
max-width: calc((100% / (12 / 7)) - var(--grid-gutter))
}
.col-lg-8 {
flex: 0 0 calc((100% / (12 / 8)) - var(--grid-gutter));
max-width: calc((100% / (12 / 8)) - var(--grid-gutter))
}
.col-lg-9 {
flex: 0 0 calc((100% / (12 / 9)) - var(--grid-gutter));
max-width: calc((100% / (12 / 9)) - var(--grid-gutter))
}
.col-lg-10 {
flex: 0 0 calc((100% / (12 / 10)) - var(--grid-gutter));
max-width: calc((100% / (12 / 10)) - var(--grid-gutter))
}
.col-lg-11 {
flex: 0 0 calc((100% / (12 / 11)) - var(--grid-gutter));
max-width: calc((100% / (12 / 11)) - var(--grid-gutter))
}
.col-lg-12 {
flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter));
max-width: calc((100% / (12 / 12)) - var(--grid-gutter))
}
.order-lg-first {order: -1}
.order-lg-last {order: 4}
.order-lg-0 {order: 0}
.order-lg-1 {order: 1}
.order-lg-2 {order: 2}
.order-lg-3 {order: 3}
}
@media (min-width: 1200px) {
.col-xl {
flex-basis: 0;
flex-grow: 1;
max-width: 100%
}
.col-xl-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%
}
.col-xl-1 {
flex: 0 0 calc((100% / (12 / 1)) - var(--grid-gutter));
max-width: calc((100% / (12 / 1)) - var(--grid-gutter))
}
.col-xl-2 {
flex: 0 0 calc((100% / (12 / 2)) - var(--grid-gutter));
max-width: calc((100% / (12 / 2)) - var(--grid-gutter))
}
.col-xl-3 {
flex: 0 0 calc((100% / (12 / 3)) - var(--grid-gutter));
max-width: calc((100% / (12 / 3)) - var(--grid-gutter))
}
.col-xl-4 {
flex: 0 0 calc((100% / (12 / 4)) - var(--grid-gutter));
max-width: calc((100% / (12 / 4)) - var(--grid-gutter))
}
.col-xl-5 {
flex: 0 0 calc((100% / (12 / 5)) - var(--grid-gutter));
max-width: calc((100% / (12 / 5)) - var(--grid-gutter))
}
.col-xl-6 {
flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter));
max-width: calc((100% / (12 / 6)) - var(--grid-gutter))
}
.col-xl-7 {
flex: 0 0 calc((100% / (12 / 7)) - var(--grid-gutter));
max-width: calc((100% / (12 / 7)) - var(--grid-gutter))
}
.col-xl-8 {
flex: 0 0 calc((100% / (12 / 8)) - var(--grid-gutter));
max-width: calc((100% / (12 / 8)) - var(--grid-gutter))
}
.col-xl-9 {
-webkit-box-flex: 0;
flex: 0 0 calc((100% / (12 / 9)) - var(--grid-gutter));
max-width: calc((100% / (12 / 9)) - var(--grid-gutter))
}
.col-xl-10 {
-webkit-box-flex: 0;
flex: 0 0 calc((100% / (12 / 10)) - var(--grid-gutter));
max-width: calc((100% / (12 / 10)) - var(--grid-gutter))
}
.col-xl-11 {
-webkit-box-flex: 0;
flex: 0 0 calc((100% / (12 / 11)) - var(--grid-gutter));
max-width: calc((100% / (12 / 11)) - var(--grid-gutter))
}
.col-xl-12 {
flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter));
max-width: calc((100% / (12 / 12)) - var(--grid-gutter))
}
.order-xl-first {order: -1}
.order-xl-last {order: 4}
.order-xl-0 {order: 0}
.order-xl-1 {order: 1}
.order-xl-2 {order: 2}
.order-xl-3 {order: 3}
}
/* <3 Display
================================================================== */
.d-none {display: none !important}
.d-inline {display: inline !important}
.d-inline-block {display: inline-block !important}
.d-block {display: block !important}
.d-flex {display: flex !important}
.d-inline-flex {display: inline-flex !important}
@media (min-width: 768px) {
.d-md-none {display: none !important}
.d-md-inline {display: inline !important}
.d-md-inline-block {display: inline-block !important}
.d-md-block {display: block !important}
.d-md-flex {display: flex !important}
.d-md-inline-flex {display: inline-flex !important}
}
@media (min-width: 992px) {
.d-lg-none {display: none !important}
.d-lg-inline {display: inline !important}
.d-lg-inline-block {display: inline-block !important}
.d-lg-block {display: block !important}
.d-lg-flex {display: flex !important}
.d-lg-inline-flex {display: inline-flex !important}
}
@media (min-width: 1200px) {
.d-xl-none {display: none !important}
.d-xl-inline {display: inline !important}
.d-xl-inline-block {display: inline-block !important}
.d-xl-block {display: block !important}
.d-xl-flex {display: flex !important}
.d-xl-inline-flex {display: inline-flex !important}
}
/* <3 Flex & Justify
================================================================== */
.flex-row {flex-direction: row !important}
.flex-column {flex-direction: column !important}
.flex-wrap {flex-wrap: wrap !important}
.flex-nowrap {flex-wrap: nowrap !important}
.flex-fill {flex: 1 1 auto !important}
.justify-content-start {justify-content: flex-start !important}
.justify-content-end {justify-content: flex-end !important}
.justify-content-center {justify-content: center !important}
.justify-content-between {justify-content: space-between !important}
.justify-content-around {justify-content: space-around !important}
.align-items-start {align-items: flex-start !important}
.align-items-end {align-items: flex-end !important}
.align-items-center {align-items: center !important}
.align-items-baseline {align-items: baseline !important}
.align-items-stretch {align-items: stretch !important}
.align-content-start {align-content: flex-start !important}
.align-content-end {align-content: flex-end !important}
.align-content-center {align-content: center !important}
.align-content-between {align-content: space-between !important}
.align-content-around {align-content: space-around !important}
.align-content-stretch {align-content: stretch !important}
.align-self-auto {align-self: auto !important}
.align-self-start {align-self: flex-start !important}
.align-self-end {align-self: flex-end !important}
.align-self-center {align-self: center !important}
.align-self-baseline {align-self: baseline !important}
.align-self-stretch {align-self: stretch !important}
@media (min-width: 768px) {
.flex-md-row {flex-direction: row !important}
.flex-md-column {flex-direction: column !important}
.flex-md-wrap {flex-wrap: wrap !important}
.flex-md-nowrap {flex-wrap: nowrap !important}
.flex-md-fill {flex: 1 1 auto !important}
.justify-content-md-start {justify-content: flex-start !important}
.justify-content-md-end {justify-content: flex-end !important}
.justify-content-md-center {justify-content: center !important}
.justify-content-md-between {justify-content: space-between !important}
.justify-content-md-around {justify-content: space-around !important}
.align-items-md-start {align-items: flex-start !important}
.align-items-md-end {align-items: flex-end !important}
.align-items-md-center {align-items: center !important}
.align-items-md-baseline {align-items: baseline !important}
.align-items-md-stretch {align-items: stretch !important}
.align-content-md-start {align-content: flex-start !important}
.align-content-md-end {align-content: flex-end !important}
.align-content-md-center {align-content: center !important}
.align-content-md-between {align-content: space-between !important}
.align-content-md-around {align-content: space-around !important}
.align-content-md-stretch {align-content: stretch !important}
.align-self-md-auto {align-self: auto !important}
.align-self-md-start {align-self: flex-start !important}
.align-self-md-end {align-self: flex-end !important}
.align-self-md-center {align-self: center !important}
.align-self-md-baseline {align-self: baseline !important}
.align-self-md-stretch {align-self: stretch !important}
}
@media (min-width: 992px) {
.flex-lg-row {flex-direction: row !important}
.flex-lg-column {flex-direction: column !important}
.flex-lg-wrap {flex-wrap: wrap !important}
.flex-lg-nowrap {flex-wrap: nowrap !important}
.flex-lg-fill {flex: 1 1 auto !important}
.justify-content-lg-start {justify-content: flex-start !important}
.justify-content-lg-end {justify-content: flex-end !important}
.justify-content-lg-center {justify-content: center !important}
.justify-content-lg-between {justify-content: space-between !important}
.justify-content-lg-around {justify-content: space-around !important}
.align-items-lg-start {align-items: flex-start !important}
.align-items-lg-end {align-items: flex-end !important}
.align-items-lg-center {align-items: center !important}
.align-items-lg-baseline {align-items: baseline !important}
.align-items-lg-stretch {align-items: stretch !important}
.align-content-lg-start {align-content: flex-start !important}
.align-content-lg-end {align-content: flex-end !important}
.align-content-lg-center {align-content: center !important}
.align-content-lg-between {align-content: space-between !important}
.align-content-lg-around {align-content: space-around !important}
.align-content-lg-stretch {align-content: stretch !important}
.align-self-lg-auto {align-self: auto !important}
.align-self-lg-start {align-self: flex-start !important}
.align-self-lg-end {align-self: flex-end !important}
.align-self-lg-center {align-self: center !important}
.align-self-lg-baseline {align-self: baseline !important}
.align-self-lg-stretch {align-self: stretch !important}
}
@media (min-width: 1200px) {
.flex-xl-row {flex-direction: row !important}
.flex-xl-column {flex-direction: column !important}
.flex-xl-wrap {flex-wrap: wrap !important}
.flex-xl-nowrap {flex-wrap: nowrap !important}
.flex-xl-fill {flex: 1 1 auto !important}
.justify-content-xl-start {justify-content: flex-start !important}
.justify-content-xl-end {justify-content: flex-end !important}
.justify-content-xl-center {justify-content: center !important}
.justify-content-xl-between {justify-content: space-between !important}
.justify-content-xl-around {justify-content: space-around !important}
.align-items-xl-start {align-items: flex-start !important}
.align-items-xl-end {align-items: flex-end !important}
.align-items-xl-center {align-items: center !important}
.align-items-xl-baseline {align-items: baseline !important}
.align-items-xl-stretch {align-items: stretch !important}
.align-content-xl-start {align-content: flex-start !important}
.align-content-xl-end {align-content: flex-end !important}
.align-content-xl-center {align-content: center !important}
.align-content-xl-between {align-content: space-between !important}
.align-content-xl-around {align-content: space-around !important}
.align-content-xl-stretch {align-content: stretch !important}
.align-self-xl-auto {align-self: auto !important}
.align-self-xl-start {align-self: flex-start !important}
.align-self-xl-end {align-self: flex-end !important}
.align-self-xl-center {align-self: center !important}
.align-self-xl-baseline {align-self: baseline !important}
.align-self-xl-stretch {align-self: stretch !important}
}
/* <3 Spacing
================================================================== */
.m-0 {margin: 0 !important}
.mt-0,.my-0 {margin-top: 0 !important}
.mr-0,.mx-0 {margin-right: 0 !important}
.mb-0,.my-0 {margin-bottom: 0 !important}
.ml-0,.mx-0 {margin-left: 0 !important}
.m-1 {margin: var(--spacer-1) !important}
.mt-1,.my-1 {margin-top: var(--spacer-1) !important}
.mr-1,.mx-1 {margin-right: var(--spacer-1) !important}
.mb-1,.my-1 {margin-bottom: var(--spacer-1) !important}
.ml-1,.mx-1 {margin-left: var(--spacer-1) !important}
.m-2 {margin: var(--spacer-2) !important}
.mt-2,.my-2 {margin-top: var(--spacer-2) !important}
.mr-2,.mx-2 {margin-right: var(--spacer-2) !important}
.mb-2,.my-2 {margin-bottom: var(--spacer-2) !important}
.ml-2,.mx-2 {margin-left: var(--spacer-2) !important}
.m-3 {margin: var(--spacer-3) !important}
.mt-3,.my-3 {margin-top: var(--spacer-3) !important}
.mr-3,.mx-3 {margin-right: var(--spacer-3) !important}
.mb-3,.my-3 {margin-bottom: var(--spacer-3) !important}
.ml-3,.mx-3 {margin-left: var(--spacer-3) !important}
.m-4 {margin: var(--spacer-4) !important}
.mt-4,.my-4 {margin-top: var(--spacer-4) !important}
.mr-4,.mx-4 {margin-right: var(--spacer-4) !important}
.mb-4,.my-4 {margin-bottom: var(--spacer-4) !important}
.ml-4,.mx-4 {margin-left: var(--spacer-4) !important}
.m-5 {margin: var(--spacer-5) !important}
.mt-5,.my-5 {margin-top: var(--spacer-5) !important}
.mr-5,.mx-5 {margin-right: var(--spacer-5) !important}
.mb-5,.my-5 {margin-bottom: var(--spacer-5) !important}
.ml-5,.mx-5 {margin-left: var(--spacer-5) !important}
.p-0 {padding: 0 !important}
.pt-0,.py-0 {padding-top: 0 !important}
.pr-0,.px-0 {padding-right: 0 !important}
.pb-0,.py-0 {padding-bottom: 0 !important}
.pl-0,.px-0 {padding-left: 0 !important}
.p-1 {padding: var(--spacer-1) !important}
.pt-1,.py-1 {padding-top: var(--spacer-1) !important}
.pr-1,.px-1 {padding-right: var(--spacer-1) !important}
.pb-1,.py-1 {padding-bottom: var(--spacer-1) !important}
.pl-1,.px-1 {padding-left: var(--spacer-1) !important}
.p-2 {padding: var(--spacer-2) !important}
.pt-2,.py-2 {padding-top: var(--spacer-2) !important}
.pr-2,.px-2 {padding-right: var(--spacer-2) !important}
.pb-2,.py-2 {padding-bottom: var(--spacer-2) !important}
.pl-2,.px-2 {padding-left: var(--spacer-2) !important}
.p-3 {padding: var(--spacer-3) !important}
.pt-3,.py-3 {padding-top: var(--spacer-3) !important}
.pr-3,.px-3 {padding-right: var(--spacer-3) !important}
.pb-3,.py-3 {padding-bottom: var(--spacer-3) !important}
.pl-3,.px-3 {padding-left: var(--spacer-3) !important}
.p-4 {padding: var(--spacer-4) !important}
.pt-4,.py-4 {padding-top: var(--spacer-4) !important}
.pr-4,.px-4 {padding-right: var(--spacer-4) !important}
.pb-4,.py-4 {padding-bottom: var(--spacer-4) !important}
.pl-4,.px-4 {padding-left: var(--spacer-4) !important}
.p-5 {padding: var(--spacer-5) !important}
.pt-5,.py-5 {padding-top: var(--spacer-5) !important}
.pr-5,.px-5 {padding-right: var(--spacer-5) !important}
.pb-5,.py-5 {padding-bottom: var(--spacer-5) !important}
.pl-5,.px-5 {padding-left: var(--spacer-5) !important}
.m-n1 {margin: calc(var(--spacer-1) * -1) !important}
.mt-n1,.my-n1 {margin-top: calc(var(--spacer-1) * -1) !important}
.mr-n1,.mx-n1 {margin-right: calc(var(--spacer-1) * -1) !important}
.mb-n1,.my-n1 {margin-bottom: calc(var(--spacer-1) * -1) !important}
.ml-n1,.mx-n1 {margin-left: calc(var(--spacer-1) * -1) !important}
.m-n2 {margin: calc(var(--spacer-2) * -1) !important}
.mt-n2,.my-n2 {margin-top: calc(var(--spacer-2) * -1) !important}
.mr-n2,.mx-n2 {margin-right: calc(var(--spacer-2) * -1) !important}
.mb-n2,.my-n2 {margin-bottom: calc(var(--spacer-2) * -1) !important}
.ml-n2,.mx-n2 {margin-left: calc(var(--spacer-2) * -1) !important}
.m-n3 {margin: calc(var(--spacer-3) * -1) !important}
.mt-n3,.my-n3 {margin-top: calc(var(--spacer-3) * -1) !important}
.mr-n3,.mx-n3 {margin-right: calc(var(--spacer-3) * -1) !important}
.mb-n3,.my-n3 {margin-bottom: calc(var(--spacer-3) * -1) !important}
.ml-n3,.mx-n3 {margin-left: calc(var(--spacer-3) * -1) !important}
.m-n4 {margin: calc(var(--spacer-4) * -1) !important}
.mt-n4,.my-n4 {margin-top: calc(var(--spacer-4) * -1) !important}
.mr-n4,.mx-n4 {margin-right: calc(var(--spacer-4) * -1) !important}
.mb-n4,.my-n4 {margin-bottom: calc(var(--spacer-4) * -1) !important}
.ml-n4,.mx-n4 {margin-left: calc(var(--spacer-4) * -1) !important}
.m-n5 {margin: calc(var(--spacer-5) * -1) !important}
.mt-n5,.my-n5 {margin-top: calc(var(--spacer-5) * -1) !important}
.mr-n5,.mx-n5 {margin-right: calc(var(--spacer-5) * -1) !important}
.mb-n5,.my-n5 {margin-bottom: calc(var(--spacer-5) * -1) !important}
.ml-n5,.mx-n5 {margin-left: calc(var(--spacer-5) * -1) !important}
.m-auto {margin: auto !important}
.mt-auto,.my-auto {margin-top: auto !important}
.mr-auto,.mx-auto {margin-right: auto !important}
.mb-auto,.my-auto {margin-bottom: auto !important}
.ml-auto,.mx-auto {margin-left: auto !important}
@media (min-width: 768px) {
.m-md-0 {margin: 0 !important}
.mt-md-0,.my-md-0 {margin-top: 0 !important}
.mr-md-0,.mx-md-0 {margin-right: 0 !important}
.mb-md-0,.my-md-0 {margin-bottom: 0 !important}
.ml-md-0,.mx-md-0 {margin-left: 0 !important}
.m-md-1 {margin: var(--spacer-1) !important}
.mt-md-1,.my-md-1 {margin-top: var(--spacer-1) !important}
.mr-md-1,.mx-md-1 {margin-right: var(--spacer-1) !important}
.mb-md-1,.my-md-1 {margin-bottom: var(--spacer-1) !important}
.ml-md-1,.mx-md-1 {margin-left: var(--spacer-1) !important}
.m-md-2 {margin: var(--spacer-2) !important}
.mt-md-2,.my-md-2 {margin-top: var(--spacer-2) !important}
.mr-md-2,.mx-md-2 {margin-right: var(--spacer-2) !important}
.mb-md-2,.my-md-2 {margin-bottom: var(--spacer-2) !important}
.ml-md-2,.mx-md-2 {margin-left: var(--spacer-2) !important}
.m-md-3 {margin: var(--spacer-3) !important}
.mt-md-3,.my-md-3 {margin-top: var(--spacer-3) !important}
.mr-md-3,.mx-md-3 {margin-right: var(--spacer-3) !important}
.mb-md-3,.my-md-3 {margin-bottom: var(--spacer-3) !important}
.ml-md-3,.mx-md-3 {margin-left: var(--spacer-3) !important}
.m-md-4 {margin: var(--spacer-4) !important}
.mt-md-4,.my-md-4 {margin-top: var(--spacer-4) !important}
.mr-md-4,.mx-md-4 {margin-right: var(--spacer-4) !important}
.mb-md-4,.my-md-4 {margin-bottom: var(--spacer-4) !important}
.ml-md-4,.mx-md-4 {margin-left: var(--spacer-4) !important}
.m-md-5 {margin: var(--spacer-5) !important}
.mt-md-5,.my-md-5 {margin-top: var(--spacer-5) !important}
.mr-md-5,.mx-md-5 {margin-right: var(--spacer-5) !important}
.mb-md-5,.my-md-5 {margin-bottom: var(--spacer-5) !important}
.ml-md-5,.mx-md-5 {margin-left: var(--spacer-5) !important}
.p-md-0 {padding: 0 !important}
.pt-md-0,.py-md-0 {padding-top: 0 !important}
.pr-md-0,.px-md-0 {padding-right: 0 !important}
.pb-md-0,.py-md-0 {padding-bottom: 0 !important}
.pl-md-0,.px-md-0 {padding-left: 0 !important}
.p-md-1 {padding: var(--spacer-1) !important}
.pt-md-1,.py-md-1 {padding-top: var(--spacer-1) !important}
.pr-md-1,.px-md-1 {padding-right: var(--spacer-1) !important}
.pb-md-1,.py-md-1 {padding-bottom: var(--spacer-1) !important}
.pl-md-1,.px-md-1 {padding-left: var(--spacer-1) !important}
.p-md-2 {padding: var(--spacer-2) !important}
.pt-md-2,.py-md-2 {padding-top: var(--spacer-2) !important}
.pr-md-2,.px-md-2 {padding-right: var(--spacer-2) !important}
.pb-md-2,.py-md-2 {padding-bottom: var(--spacer-2) !important}
.pl-md-2,.px-md-2 {padding-left: var(--spacer-2) !important}
.p-md-3 {padding: var(--spacer-3) !important}
.pt-md-3,.py-md-3 {padding-top: var(--spacer-3) !important}
.pr-md-3,.px-md-3 {padding-right: var(--spacer-3) !important}
.pb-md-3,.py-md-3 {padding-bottom: var(--spacer-3) !important}
.pl-md-3,.px-md-3 {padding-left: var(--spacer-3) !important}
.p-md-4 {padding: var(--spacer-4) !important}
.pt-md-4,.py-md-4 {padding-top: var(--spacer-4) !important}
.pr-md-4,.px-md-4 {padding-right: var(--spacer-4) !important}
.pb-md-4,.py-md-4 {padding-bottom: var(--spacer-4) !important}
.pl-md-4,.px-md-4 {padding-left: var(--spacer-4) !important}
.p-md-5 {padding: var(--spacer-5) !important}
.pt-md-5,.py-md-5 {padding-top: var(--spacer-5) !important}
.pr-md-5,.px-md-5 {padding-right: var(--spacer-5) !important}
.pb-md-5,.py-md-5 {padding-bottom: var(--spacer-5) !important}
.pl-md-5,.px-md-5 {padding-left: var(--spacer-5) !important}
.m-md-n1 {margin: calc(var(--spacer-1) * -1) !important}
.mt-md-n1,.my-md-n1 {margin-top: calc(var(--spacer-1) * -1) !important}
.mr-md-n1,.mx-md-n1 {margin-right: calc(var(--spacer-1) * -1) !important}
.mb-md-n1,.my-md-n1 {margin-bottom: calc(var(--spacer-1) * -1) !important}
.ml-md-n1,.mx-md-n1 {margin-left: calc(var(--spacer-1) * -1) !important}
.m-md-n2 {margin: calc(var(--spacer-2) * -1) !important}
.mt-md-n2,.my-md-n2 {margin-top: calc(var(--spacer-2) * -1) !important}
.mr-md-n2,.mx-md-n2 {margin-right: calc(var(--spacer-2) * -1) !important}
.mb-md-n2,.my-md-n2 {margin-bottom: calc(var(--spacer-2) * -1) !important}
.ml-md-n2,.mx-md-n2 {margin-left: calc(var(--spacer-2) * -1) !important}
.m-md-n3 {margin: calc(var(--spacer-3) * -1) !important}
.mt-md-n3,.my-md-n3 {margin-top: calc(var(--spacer-3) * -1) !important}
.mr-md-n3,.mx-md-n3 {margin-right: calc(var(--spacer-3) * -1) !important}
.mb-md-n3,.my-md-n3 {margin-bottom: calc(var(--spacer-3) * -1) !important}
.ml-md-n3,.mx-md-n3 {margin-left: calc(var(--spacer-3) * -1) !important}
.m-md-n4 {margin: calc(var(--spacer-4) * -1) !important}
.mt-md-n4,.my-md-n4 {margin-top: calc(var(--spacer-4) * -1) !important}
.mr-md-n4,.mx-md-n4 {margin-right: calc(var(--spacer-4) * -1) !important}
.mb-md-n4,.my-md-n4 {margin-bottom: calc(var(--spacer-4) * -1) !important}
.ml-md-n4,.mx-md-n4 {margin-left: calc(var(--spacer-4) * -1) !important}
.m-md-n5 {margin: calc(var(--spacer-5) * -1) !important}
.mt-md-n5,.my-md-n5 {margin-top: calc(var(--spacer-5) * -1) !important}
.mr-md-n5,.mx-md-n5 {margin-right: calc(var(--spacer-5) * -1) !important}
.mb-md-n5,.my-md-n5 {margin-bottom: calc(var(--spacer-5) * -1) !important}
.ml-md-n5,.mx-md-n5 {margin-left: calc(var(--spacer-5) * -1) !important}
.m-md-auto {margin: auto !important}
.mt-md-auto,.my-md-auto {margin-top: auto !important}
.mr-md-auto,.mx-md-auto {margin-right: auto !important}
.mb-md-auto,.my-md-auto {margin-bottom: auto !important}
.ml-md-auto,.mx-md-auto {margin-left: auto !important}
}
@media (min-width: 992px) {
.m-lg-0 {margin: 0 !important}
.mt-lg-0,.my-lg-0 {margin-top: 0 !important}
.mr-lg-0,.mx-lg-0 {margin-right: 0 !important}
.mb-lg-0,.my-lg-0 {margin-bottom: 0 !important}
.ml-lg-0,.mx-lg-0 {margin-left: 0 !important}
.m-lg-1 {margin: var(--spacer-1) !important}
.mt-lg-1,.my-lg-1 {margin-top: var(--spacer-1) !important}
.mr-lg-1,.mx-lg-1 {margin-right: var(--spacer-1) !important}
.mb-lg-1,.my-lg-1 {margin-bottom: var(--spacer-1) !important}
.ml-lg-1,.mx-lg-1 {margin-left: var(--spacer-1) !important}
.m-lg-2 {margin: var(--spacer-2) !important}
.mt-lg-2,.my-lg-2 {margin-top: var(--spacer-2) !important}
.mr-lg-2,.mx-lg-2 {margin-right: var(--spacer-2) !important}
.mb-lg-2,.my-lg-2 {margin-bottom: var(--spacer-2) !important}
.ml-lg-2,.mx-lg-2 {margin-left: var(--spacer-2) !important}
.m-lg-3 {margin: var(--spacer-3) !important}
.mt-lg-3,.my-lg-3 {margin-top: var(--spacer-3) !important}
.mr-lg-3,.mx-lg-3 {margin-right: var(--spacer-3) !important}
.mb-lg-3,.my-lg-3 {margin-bottom: var(--spacer-3) !important}
.ml-lg-3,.mx-lg-3 {margin-left: var(--spacer-3) !important}
.m-lg-4 {margin: var(--spacer-4) !important}
.mt-lg-4,.my-lg-4 {margin-top: var(--spacer-4) !important}
.mr-lg-4,.mx-lg-4 {margin-right: var(--spacer-4) !important}
.mb-lg-4,.my-lg-4 {margin-bottom: var(--spacer-4) !important}
.ml-lg-4,.mx-lg-4 {margin-left: var(--spacer-4) !important}
.m-lg-5 {margin: var(--spacer-5) !important}
.mt-lg-5,.my-lg-5 {margin-top: var(--spacer-5) !important}
.mr-lg-5,.mx-lg-5 {margin-right: var(--spacer-5) !important}
.mb-lg-5,.my-lg-5 {margin-bottom: var(--spacer-5) !important}
.ml-lg-5,.mx-lg-5 {margin-left: var(--spacer-5) !important}
.p-lg-0 {padding: 0 !important}
.pt-lg-0,.py-lg-0 {padding-top: 0 !important}
.pr-lg-0,.px-lg-0 {padding-right: 0 !important}
.pb-lg-0,.py-lg-0 {padding-bottom: 0 !important}
.pl-lg-0,.px-lg-0 {padding-left: 0 !important}
.p-lg-1 {padding: var(--spacer-1) !important}
.pt-lg-1,.py-lg-1 {padding-top: var(--spacer-1) !important}
.pr-lg-1,.px-lg-1 {padding-right: var(--spacer-1) !important}
.pb-lg-1,.py-lg-1 {padding-bottom: var(--spacer-1) !important}
.pl-lg-1,.px-lg-1 {padding-left: var(--spacer-1) !important}
.p-lg-2 {padding: var(--spacer-2) !important}
.pt-lg-2,.py-lg-2 {padding-top: var(--spacer-2) !important}
.pr-lg-2,.px-lg-2 {padding-right: var(--spacer-2) !important}
.pb-lg-2,.py-lg-2 {padding-bottom: var(--spacer-2) !important}
.pl-lg-2,.px-lg-2 {padding-left: var(--spacer-2) !important}
.p-lg-3 {padding: var(--spacer-3) !important}
.pt-lg-3,.py-lg-3 {padding-top: var(--spacer-3) !important}
.pr-lg-3,.px-lg-3 {padding-right: var(--spacer-3) !important}
.pb-lg-3,.py-lg-3 {padding-bottom: var(--spacer-3) !important}
.pl-lg-3,.px-lg-3 {padding-left: var(--spacer-3) !important}
.p-lg-4 {padding: var(--spacer-4) !important}
.pt-lg-4,.py-lg-4 {padding-top: var(--spacer-4) !important}
.pr-lg-4,.px-lg-4 {padding-right: var(--spacer-4) !important}
.pb-lg-4,.py-lg-4 {padding-bottom: var(--spacer-4) !important}
.pl-lg-4,.px-lg-4 {padding-left: var(--spacer-4) !important}
.p-lg-5 {padding: var(--spacer-5) !important}
.pt-lg-5,.py-lg-5 {padding-top: var(--spacer-5) !important}
.pr-lg-5,.px-lg-5 {padding-right: var(--spacer-5) !important}
.pb-lg-5,.py-lg-5 {padding-bottom: var(--spacer-5) !important}
.pl-lg-5,.px-lg-5 {padding-left: var(--spacer-5) !important}
.m-lg-n1 {margin: calc(var(--spacer-1) * -1) !important}
.mt-lg-n1,.my-lg-n1 {margin-top: calc(var(--spacer-1) * -1) !important}
.mr-lg-n1,.mx-lg-n1 {margin-right: calc(var(--spacer-1) * -1) !important}
.mb-lg-n1,.my-lg-n1 {margin-bottom: calc(var(--spacer-1) * -1) !important}
.ml-lg-n1,.mx-lg-n1 {margin-left: calc(var(--spacer-1) * -1) !important}
.m-lg-n2 {margin: calc(var(--spacer-2) * -1) !important}
.mt-lg-n2,.my-lg-n2 {margin-top: calc(var(--spacer-2) * -1) !important}
.mr-lg-n2,.mx-lg-n2 {margin-right: calc(var(--spacer-2) * -1) !important}
.mb-lg-n2,.my-lg-n2 {margin-bottom: calc(var(--spacer-2) * -1) !important}
.ml-lg-n2,.mx-lg-n2 {margin-left: calc(var(--spacer-2) * -1) !important}
.m-lg-n3 {margin: calc(var(--spacer-3) * -1) !important}
.mt-lg-n3,.my-lg-n3 {margin-top: calc(var(--spacer-3) * -1) !important}
.mr-lg-n3,.mx-lg-n3 {margin-right: calc(var(--spacer-3) * -1) !important}
.mb-lg-n3,.my-lg-n3 {margin-bottom: calc(var(--spacer-3) * -1) !important}
.ml-lg-n3,.mx-lg-n3 {margin-left: calc(var(--spacer-3) * -1) !important}
.m-lg-n4 {margin: calc(var(--spacer-4) * -1) !important}
.mt-lg-n4,.my-lg-n4 {margin-top: calc(var(--spacer-4) * -1) !important}
.mr-lg-n4,.mx-lg-n4 {margin-right: calc(var(--spacer-4) * -1) !important}
.mb-lg-n4,.my-lg-n4 {margin-bottom: calc(var(--spacer-4) * -1) !important}
.ml-lg-n4,.mx-lg-n4 {margin-left: calc(var(--spacer-4) * -1) !important}
.m-lg-n5 {margin: calc(var(--spacer-5) * -1) !important}
.mt-lg-n5,.my-lg-n5 {margin-top: calc(var(--spacer-5) * -1) !important}
.mr-lg-n5,.mx-lg-n5 {margin-right: calc(var(--spacer-5) * -1) !important}
.mb-lg-n5,.my-lg-n5 {margin-bottom: calc(var(--spacer-5) * -1) !important}
.ml-lg-n5,.mx-lg-n5 {margin-left: calc(var(--spacer-5) * -1) !important}
.m-lg-auto {margin: auto !important}
.mt-lg-auto,.my-lg-auto {margin-top: auto !important}
.mr-lg-auto,.mx-lg-auto {margin-right: auto !important}
.mb-lg-auto,.my-lg-auto {margin-bottom: auto !important}
.ml-lg-auto,.mx-lg-auto {margin-left: auto !important}
}
@media (min-width: 1200px) {
.m-xl-0 {margin: 0 !important}
.mt-xl-0,.my-xl-0 {margin-top: 0 !important}
.mr-xl-0,.mx-xl-0 {margin-right: 0 !important}
.mb-xl-0,.my-xl-0 {margin-bottom: 0 !important}
.ml-xl-0,.mx-xl-0 {margin-left: 0 !important}
.m-xl-1 {margin: var(--spacer-1) !important}
.mt-xl-1,.my-xl-1 {margin-top: var(--spacer-1) !important}
.mr-xl-1,.mx-xl-1 {margin-right: var(--spacer-1) !important}
.mb-xl-1,.my-xl-1 {margin-bottom: var(--spacer-1) !important}
.ml-xl-1,.mx-xl-1 {margin-left: var(--spacer-1) !important}
.m-xl-2 {margin: var(--spacer-2) !important}
.mt-xl-2,.my-xl-2 {margin-top: var(--spacer-2) !important}
.mr-xl-2,.mx-xl-2 {margin-right: var(--spacer-2) !important}
.mb-xl-2,.my-xl-2 {margin-bottom: var(--spacer-2) !important}
.ml-xl-2,.mx-xl-2 {margin-left: var(--spacer-2) !important}
.m-xl-3 {margin: var(--spacer-3) !important}
.mt-xl-3,.my-xl-3 {margin-top: var(--spacer-3) !important}
.mr-xl-3,.mx-xl-3 {margin-right: var(--spacer-3) !important}
.mb-xl-3,.my-xl-3 {margin-bottom: var(--spacer-3) !important}
.ml-xl-3,.mx-xl-3 {margin-left: var(--spacer-3) !important}
.m-xl-4 {margin: var(--spacer-4) !important}
.mt-xl-4,.my-xl-4 {margin-top: var(--spacer-4) !important}
.mr-xl-4,.mx-xl-4 {margin-right: var(--spacer-4) !important}
.mb-xl-4,.my-xl-4 {margin-bottom: var(--spacer-4) !important}
.ml-xl-4,.mx-xl-4 {margin-left: var(--spacer-4) !important}
.m-xl-5 {margin: var(--spacer-5) !important}
.mt-xl-5,.my-xl-5 {margin-top: var(--spacer-5) !important}
.mr-xl-5,.mx-xl-5 {margin-right: var(--spacer-5) !important}
.mb-xl-5,.my-xl-5 {margin-bottom: var(--spacer-5) !important}
.ml-xl-5,.mx-xl-5 {margin-left: var(--spacer-5) !important}
.p-xl-0 {padding: 0 !important}
.pt-xl-0,.py-xl-0 {padding-top: 0 !important}
.pr-xl-0,.px-xl-0 {padding-right: 0 !important}
.pb-xl-0,.py-xl-0 {padding-bottom: 0 !important}
.pl-xl-0,.px-xl-0 {padding-left: 0 !important}
.p-xl-1 {padding: var(--spacer-1) !important}
.pt-xl-1,.py-xl-1 {padding-top: var(--spacer-1) !important}
.pr-xl-1,.px-xl-1 {padding-right: var(--spacer-1) !important}
.pb-xl-1,.py-xl-1 {padding-bottom: var(--spacer-1) !important}
.pl-xl-1,.px-xl-1 {padding-left: var(--spacer-1) !important}
.p-xl-2 {padding: var(--spacer-2) !important}
.pt-xl-2,.py-xl-2 {padding-top: var(--spacer-2) !important}
.pr-xl-2,.px-xl-2 {padding-right: var(--spacer-2) !important}
.pb-xl-2,.py-xl-2 {padding-bottom: var(--spacer-2) !important}
.pl-xl-2,.px-xl-2 {padding-left: var(--spacer-2) !important}
.p-xl-3 {padding: var(--spacer-3) !important}
.pt-xl-3,.py-xl-3 {padding-top: var(--spacer-3) !important}
.pr-xl-3,.px-xl-3 {padding-right: var(--spacer-3) !important}
.pb-xl-3,.py-xl-3 {padding-bottom: var(--spacer-3) !important}
.pl-xl-3,.px-xl-3 {padding-left: var(--spacer-3) !important}
.p-xl-4 {padding: var(--spacer-4) !important}
.pt-xl-4,.py-xl-4 {padding-top: var(--spacer-4) !important}
.pr-xl-4,.px-xl-4 {padding-right: var(--spacer-4) !important}
.pb-xl-4,.py-xl-4 {padding-bottom: var(--spacer-4) !important}
.pl-xl-4,.px-xl-4 {padding-left: var(--spacer-4) !important}
.p-xl-5 {padding: var(--spacer-5) !important}
.pt-xl-5,.py-xl-5 {padding-top: var(--spacer-5) !important}
.pr-xl-5,.px-xl-5 {padding-right: var(--spacer-5) !important}
.pb-xl-5,.py-xl-5 {padding-bottom: var(--spacer-5) !important}
.pl-xl-5,.px-xl-5 {padding-left: var(--spacer-5) !important}
.m-xl-n1 {margin: calc(var(--spacer-1) * -1) !important}
.mt-xl-n1,.my-xl-n1 {margin-top: calc(var(--spacer-1) * -1) !important}
.mr-xl-n1,.mx-xl-n1 {margin-right: calc(var(--spacer-1) * -1) !important}
.mb-xl-n1,.my-xl-n1 {margin-bottom: calc(var(--spacer-1) * -1) !important}
.ml-xl-n1,.mx-xl-n1 {margin-left: calc(var(--spacer-1) * -1) !important}
.m-xl-n2 {margin: calc(var(--spacer-2) * -1) !important}
.mt-xl-n2,.my-xl-n2 {margin-top: calc(var(--spacer-2) * -1) !important}
.mr-xl-n2,.mx-xl-n2 {margin-right: calc(var(--spacer-2) * -1) !important}
.mb-xl-n2,.my-xl-n2 {margin-bottom: calc(var(--spacer-2) * -1) !important}
.ml-xl-n2,.mx-xl-n2 {margin-left: calc(var(--spacer-2) * -1) !important}
.m-xl-n3 {margin: calc(var(--spacer-3) * -1) !important}
.mt-xl-n3,.my-xl-n3 {margin-top: calc(var(--spacer-3) * -1) !important}
.mr-xl-n3,.mx-xl-n3 {margin-right: calc(var(--spacer-3) * -1) !important}
.mb-xl-n3,.my-xl-n3 {margin-bottom: calc(var(--spacer-3) * -1) !important}
.ml-xl-n3,.mx-xl-n3 {margin-left: calc(var(--spacer-3) * -1) !important}
.m-xl-n4 {margin: calc(var(--spacer-4) * -1) !important}
.mt-xl-n4,.my-xl-n4 {margin-top: calc(var(--spacer-4) * -1) !important}
.mr-xl-n4,.mx-xl-n4 {margin-right: calc(var(--spacer-4) * -1) !important}
.mb-xl-n4,.my-xl-n4 {margin-bottom: calc(var(--spacer-4) * -1) !important}
.ml-xl-n4,.mx-xl-n4 {margin-left: calc(var(--spacer-4) * -1) !important}
.m-xl-n5 {margin: calc(var(--spacer-5) * -1) !important}
.mt-xl-n5,.my-xl-n5 {margin-top: calc(var(--spacer-5) * -1) !important}
.mr-xl-n5,.mx-xl-n5 {margin-right: calc(var(--spacer-5) * -1) !important}
.mb-xl-n5,.my-xl-n5 {margin-bottom: calc(var(--spacer-5) * -1) !important}
.ml-xl-n5,.mx-xl-n5 {margin-left: calc(var(--spacer-5) * -1) !important}
.m-xl-auto {margin: auto !important}
.mt-xl-auto,.my-xl-auto {margin-top: auto !important}
.mr-xl-auto,.mx-xl-auto {margin-right: auto !important}
.mb-xl-auto,.my-xl-auto {margin-bottom: auto !important}
.ml-xl-auto,.mx-xl-auto {margin-left: auto !important}
}
/* <3 Height & Width
================================================================== */
.w-25 {width: calc((100% / (12 / 3)) - var(--grid-gutter)) !important}
.w-50 {width: calc((100% / (12 / 6)) - var(--grid-gutter)) !important}
.w-75 {width: calc((100% / (12 / 9)) - var(--grid-gutter)) !important}
.w-100 {width: 100% !important}
.w-auto {width: auto !important}
.h-25 {height: calc((100% / (12 / 3)) - var(--grid-gutter)) !important}
.h-50 {height: calc((100% / (12 / 6)) - var(--grid-gutter)) !important}
.h-75 {height: calc((100% / (12 / 9)) - var(--grid-gutter)) !important}
.h-100 {height: 100% !important}
.h-auto {height: auto !important}
.mw-100 {max-width: 100% !important}
.mh-100 {max-height: 100% !important}
.min-vw-100 {min-width: 100vw !important}
.min-vh-100 {min-height: 100vh !important}
.vw-100 {width: 100vw !important}
.vh-100 {height: 100vh !important} | 0.218169 | 0.097605 |
.footer__container{
border: 1px solid white;
display: flex;
color: white;
flex-direction: column;
justify-content: center;
align-items: center;
background: var(--color-footer);
}
.footer__header{
width: 100%;
text-align: center;
margin-bottom: 3rem;
}
.footer__header > h1{
font-size: 42px;
line-height: 72px;
font-family: var(--font-family);
letter-spacing: 0.2em;
font-weight: 800;
}
.footer__btn{
display: flex;
justify-content: center;
align-items: center;
border: 1px solid white;
padding: 1rem;
margin-bottom: 8rem;
cursor: pointer;
}
.footer__btn > p{
/* border: 1px solid white; */
box-sizing: border-box;
line-height: 21px;
font-size: 18px;
font-family: var(--font-family);
word-spacing: 2px;
}
.footer__content{
width: 100%;
text-align: center;
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}
.footer__logo{
width: 250px;
margin: 1rem;
display: flex;
flex-direction: column;
}
.footer__logo > img{
width: 118px;
height: 30px;
margin-bottom: 1rem;
}
.footer__logo > p{
font-size: 12px;
line-height: 14px;
font-family: var(--font-family);
}
.footer__other{
display: flex;
justify-content: flex-start;
flex-direction: column;
}
.footer__other > h4{
font-size: 14px;
line-height: 16px;
font-family: var(--font-family);
margin-bottom: 1rem;
}
.footer__other > p{
font-family: var(--font-family);
font-size: 12px;
line-height: 14px;
margin: 0.5rem 0;
text-transform: capitalize;
cursor: pointer;
}
.footer__last__child{
margin-top: 2rem;
text-align: center;
width: 100%;
}
.footer__last__child > p{
font-size: 12px;
line-height: 14px;
font-family: var(--font-family);
}
@media screen and (max-width: 850px){
.footer__header > h1{
font-size: 32px;
line-height: 42px;
letter-spacing: 0.1em;
}
.footer__logo{
margin: 1rem 0;
}
.footer__btn > p{
/* border: 1px solid white; */
line-height: 18px;
font-size: 12px;
}
.footer__btn{
margin-bottom: 6rem;
}
}
@media screen and (max-width: 550px){
.footer__content{
flex-direction: column;
align-items: center;
}
.footer__logo{
align-items: center;
}
.footer__btn{
margin-bottom: 4rem;
}
} | src/comps/container/footer/footer.css | .footer__container{
border: 1px solid white;
display: flex;
color: white;
flex-direction: column;
justify-content: center;
align-items: center;
background: var(--color-footer);
}
.footer__header{
width: 100%;
text-align: center;
margin-bottom: 3rem;
}
.footer__header > h1{
font-size: 42px;
line-height: 72px;
font-family: var(--font-family);
letter-spacing: 0.2em;
font-weight: 800;
}
.footer__btn{
display: flex;
justify-content: center;
align-items: center;
border: 1px solid white;
padding: 1rem;
margin-bottom: 8rem;
cursor: pointer;
}
.footer__btn > p{
/* border: 1px solid white; */
box-sizing: border-box;
line-height: 21px;
font-size: 18px;
font-family: var(--font-family);
word-spacing: 2px;
}
.footer__content{
width: 100%;
text-align: center;
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}
.footer__logo{
width: 250px;
margin: 1rem;
display: flex;
flex-direction: column;
}
.footer__logo > img{
width: 118px;
height: 30px;
margin-bottom: 1rem;
}
.footer__logo > p{
font-size: 12px;
line-height: 14px;
font-family: var(--font-family);
}
.footer__other{
display: flex;
justify-content: flex-start;
flex-direction: column;
}
.footer__other > h4{
font-size: 14px;
line-height: 16px;
font-family: var(--font-family);
margin-bottom: 1rem;
}
.footer__other > p{
font-family: var(--font-family);
font-size: 12px;
line-height: 14px;
margin: 0.5rem 0;
text-transform: capitalize;
cursor: pointer;
}
.footer__last__child{
margin-top: 2rem;
text-align: center;
width: 100%;
}
.footer__last__child > p{
font-size: 12px;
line-height: 14px;
font-family: var(--font-family);
}
@media screen and (max-width: 850px){
.footer__header > h1{
font-size: 32px;
line-height: 42px;
letter-spacing: 0.1em;
}
.footer__logo{
margin: 1rem 0;
}
.footer__btn > p{
/* border: 1px solid white; */
line-height: 18px;
font-size: 12px;
}
.footer__btn{
margin-bottom: 6rem;
}
}
@media screen and (max-width: 550px){
.footer__content{
flex-direction: column;
align-items: center;
}
.footer__logo{
align-items: center;
}
.footer__btn{
margin-bottom: 4rem;
}
} | 0.339061 | 0.072966 |
.claro .dijitMenuBar {
border: 1px solid #b5bcc7;
margin: 0px;
padding: 0px;
background-color: #e6e6e7;
background-image: url("images/commonHighlight.png");
background-position: 0px 0px;
background-repeat: repeat-x;
}
.dj_ie6 .claro .dijitMenuBar {
background-image: none;
}
.claro .dijitMenu {
background-repeat: repeat-y;
background-color: #fff;
border: 1px solid #769dc0;
margin: -1px 0;
}
.claro .dijitMenuBar .dijitMenuItem {
padding: 6px 10px 7px;
background-position: 0px 100px;
color: #4a4a4a;
margin: -1px;
}
.claro .dijitMenuItem {
background-image: url("images/menuHighlight.png");
background-position: 0px -40px;
background-repeat: repeat-x;
}
.claro .dijitMenuTable {
border-collapse: separate;
border-spacing: 0 0;
padding: 0px;
}
.claro .dijitMenuItem td {
padding: 1px;
}
.claro .dijitMenuPassive .dijitMenuItemHover,.claro .dijitMenuPassive .dijitMenuItemSelected
{
background-color: #abd6ff;
border: solid 1px #769dc0;
background-position: 0px 0px;
color: #000;
padding: 5px 9px 6px;
}
.claro .dijitMenuPassive .dijitMenuItemActive {
background-position: 0px -177px;
}
.dj_ie6 .claro .dijitMenuItem,.dj_ie6 .claro .dijitMenuPassive .dijitMenuItem
{
background-image: none;
}
.claro .dijitMenuActive .dijitMenuItemHover,.claro .dijitMenuActive .dijitMenuItemSelected
{
border: solid 1px #769dc0;
padding: 5px 9px 6px;
background-color: #9dcfff;
background-position: 0px 0px;
color: #000;
}
.dj_ie .claro .dijitMenuActive .dijitMenuItemHover,.dj_ie .claro .dijitMenuActive .dijitMenuItemSelected,.dj_ie .claro .dijitMenuPassive .dijitMenuItemHover,.dj_ie .claro .dijitMenuPassive .dijitMenuItemSelected
{
padding-top: 6px;
padding-bottom: 5px;
margin-top: -3px;
}
.claro .dijitMenuActive .dijitMenuItemActive {
background-color: #7dbefa;
background-position: 0px -177px;
}
.claro .dijitMenuItemActive {
background-position: 0px -177px;
}
.claro td.dijitMenuItemIconCell {
padding: 2px;
margin: 0px 0px 0px 4px;
}
.claro td.dijitMenuItemLabel {
padding-top: 5px;
padding-bottom: 5px;
}
.claro .dijitMenuExpand {
width: 7px;
height: 7px;
background-image: url('images/spriteArrows.png');
background-position: -14px 0px;
margin-right: 3px;
}
.claro .dijitMenuItemDisabled .dijitMenuItemIconCell {
opacity: 1;
}
.claro .dijitMenuSeparatorTop {
height: auto;
margin-top: 1px;
border-bottom: 1px solid #b5bcc7
}
.claro .dijitMenuSeparatorBottom {
height: auto;
margin-bottom: 1px;
}
.claro .dijitCheckedMenuItemIconChar {
display: none;
}
.claro .dijitCheckedMenuItemIcon {
background-image: url('form/images/checkboxRadioButtonStates.png');
background-repeat: no-repeat;
background-position: -15px 50%;
width: 15px;
height: 16px;
}
.dj_ie6 .claro .dijitCheckedMenuItemIcon {
background-image: url('form/images/checkboxAndRadioButtons_IE6.png');
}
.claro .dijitCheckedMenuItemChecked .dijitCheckedMenuItemIcon {
background-position: 0 50%;
}
.claro .dijitComboBoxMenu {
margin-left: 0px;
background-image: none;
}
.claro .dijitComboBoxMenu .dijitMenuItem {
padding: 2px 0px;
text-indent: 6px;
border-width: 1px 0px 1px 0px;
border-style: solid;
border-color: #fff;
}
.claro .dijitComboBoxMenu .dijitMenuItemSelected {
color: #000;
border-color: #768dc0;
background-color: #abd6ff;
}
.claro .dijitComboBoxMenuActive .dijitMenuItemSelected {
background-position: 0px -177px;
background-color: #7dbefa;
}
.claro .dijitMenuPreviousButton,.claro .dijitMenuNextButton {
font-style: italic;
} | public/js/dojo-1.5.0/dijit/themes/claro/Menu.css | .claro .dijitMenuBar {
border: 1px solid #b5bcc7;
margin: 0px;
padding: 0px;
background-color: #e6e6e7;
background-image: url("images/commonHighlight.png");
background-position: 0px 0px;
background-repeat: repeat-x;
}
.dj_ie6 .claro .dijitMenuBar {
background-image: none;
}
.claro .dijitMenu {
background-repeat: repeat-y;
background-color: #fff;
border: 1px solid #769dc0;
margin: -1px 0;
}
.claro .dijitMenuBar .dijitMenuItem {
padding: 6px 10px 7px;
background-position: 0px 100px;
color: #4a4a4a;
margin: -1px;
}
.claro .dijitMenuItem {
background-image: url("images/menuHighlight.png");
background-position: 0px -40px;
background-repeat: repeat-x;
}
.claro .dijitMenuTable {
border-collapse: separate;
border-spacing: 0 0;
padding: 0px;
}
.claro .dijitMenuItem td {
padding: 1px;
}
.claro .dijitMenuPassive .dijitMenuItemHover,.claro .dijitMenuPassive .dijitMenuItemSelected
{
background-color: #abd6ff;
border: solid 1px #769dc0;
background-position: 0px 0px;
color: #000;
padding: 5px 9px 6px;
}
.claro .dijitMenuPassive .dijitMenuItemActive {
background-position: 0px -177px;
}
.dj_ie6 .claro .dijitMenuItem,.dj_ie6 .claro .dijitMenuPassive .dijitMenuItem
{
background-image: none;
}
.claro .dijitMenuActive .dijitMenuItemHover,.claro .dijitMenuActive .dijitMenuItemSelected
{
border: solid 1px #769dc0;
padding: 5px 9px 6px;
background-color: #9dcfff;
background-position: 0px 0px;
color: #000;
}
.dj_ie .claro .dijitMenuActive .dijitMenuItemHover,.dj_ie .claro .dijitMenuActive .dijitMenuItemSelected,.dj_ie .claro .dijitMenuPassive .dijitMenuItemHover,.dj_ie .claro .dijitMenuPassive .dijitMenuItemSelected
{
padding-top: 6px;
padding-bottom: 5px;
margin-top: -3px;
}
.claro .dijitMenuActive .dijitMenuItemActive {
background-color: #7dbefa;
background-position: 0px -177px;
}
.claro .dijitMenuItemActive {
background-position: 0px -177px;
}
.claro td.dijitMenuItemIconCell {
padding: 2px;
margin: 0px 0px 0px 4px;
}
.claro td.dijitMenuItemLabel {
padding-top: 5px;
padding-bottom: 5px;
}
.claro .dijitMenuExpand {
width: 7px;
height: 7px;
background-image: url('images/spriteArrows.png');
background-position: -14px 0px;
margin-right: 3px;
}
.claro .dijitMenuItemDisabled .dijitMenuItemIconCell {
opacity: 1;
}
.claro .dijitMenuSeparatorTop {
height: auto;
margin-top: 1px;
border-bottom: 1px solid #b5bcc7
}
.claro .dijitMenuSeparatorBottom {
height: auto;
margin-bottom: 1px;
}
.claro .dijitCheckedMenuItemIconChar {
display: none;
}
.claro .dijitCheckedMenuItemIcon {
background-image: url('form/images/checkboxRadioButtonStates.png');
background-repeat: no-repeat;
background-position: -15px 50%;
width: 15px;
height: 16px;
}
.dj_ie6 .claro .dijitCheckedMenuItemIcon {
background-image: url('form/images/checkboxAndRadioButtons_IE6.png');
}
.claro .dijitCheckedMenuItemChecked .dijitCheckedMenuItemIcon {
background-position: 0 50%;
}
.claro .dijitComboBoxMenu {
margin-left: 0px;
background-image: none;
}
.claro .dijitComboBoxMenu .dijitMenuItem {
padding: 2px 0px;
text-indent: 6px;
border-width: 1px 0px 1px 0px;
border-style: solid;
border-color: #fff;
}
.claro .dijitComboBoxMenu .dijitMenuItemSelected {
color: #000;
border-color: #768dc0;
background-color: #abd6ff;
}
.claro .dijitComboBoxMenuActive .dijitMenuItemSelected {
background-position: 0px -177px;
background-color: #7dbefa;
}
.claro .dijitMenuPreviousButton,.claro .dijitMenuNextButton {
font-style: italic;
} | 0.208904 | 0.0697 |
body {
background: #F2F2F2;
}
#wrapper {
width: 100%;
padding-bottom: 0.78rem;
}
/*返回按钮,开通会员按钮*/
.back, .vip-btn {
position: fixed;
width: 100%;
max-width: 7.5rem;
margin: 0 auto;
z-index: 99;
}
.back {
top: 0;
}
.vip-btn {
bottom: 0;
}
.back a.icon-back {
display: block;
height: 0.86rem;
width: 0.86rem;
padding-left: 0.2rem;
line-height: 0.86rem;
text-align: left;
font-size: 0.32rem;
color: #fff;
}
.vip-btn a {
display: block;
width: 100%;
height: 0.8rem;
background: url(../img/botton.png) no-repeat left top / 0% auto;
background-size: cover;
line-height: 0.8rem;
text-align: center;
font-size: 0.32rem;
font-weight: bold;
color: #333;
}
.vip-btn a span {
position: relative;
left: -17%;
top: 2%;
font-weight: bold;
font-size: 0.34rem;
line-height: 0.34rem;
}
/*轮播*/
.banner {
position:relative;
width: 100%;
max-width: 7.5rem;
margin: 0 auto;
overflow: hidden;
}
.banner .bd {
position: relative;
z-index:0;
}
.banner .bd ul li {
position: relative;
}
.banner .bd li img{
background: url(../img/loading.gif) center center no-repeat;
vertical-align: top;
width: 100%;
}
.banner .hd {
position:absolute;
bottom: 10px;
width: 100%;
height: 8px;
z-index: 1;
}
.banner .hd ul {
width: 100%;
height: 8px;
text-align: center;
}
.banner .hd ul li {
display: inline-block;
width: 8px;
height: 8px;
margin: 0 5px;
background: rgba(255, 255, 255, 0.6) !important;
filter:Alpha(opacity=60);
background: #fff;
border-radius: 4px;
text-indent: -20rem;
}
.banner .hd ul li.on {
background: rgba(86, 209, 203, 0.8) !important;
filter:Alpha(opacity=80);
background: #56D1CB;
}
/*title*/
.title {
width: 100%;
padding: 0.1rem 0.2rem;
overflow: hidden;
}
.title img {
display: block;
float: left;
width: 0.6rem;
height: 0.6rem;
}
.title span {
display: block;
float: left;
padding-left: 0.2rem;
height: 0.6rem;
line-height: 0.6rem;
font-size: 0.32rem;
color: #D9A330;
}
.tips {
width: 100%;
padding: 0.2rem 0.2rem 0;
line-height: 1;
font-size: 0.24rem;
color: #999;
}
/*黄金会员特权*/
.privilege {
width: 100%;
padding-bottom: 0.4rem;
margin-top: 0.2rem;
background: #fff;
}
.privilege ul {
width: 100%;
padding: 0.2rem 0 0.4rem;
overflow: hidden;
}
.privilege ul li {
float: left;
width: 25%;
padding: 0.2rem;
}
.privilege ul li img {
display: block;
width: 0.8rem;
height: 0.8rem;
margin: 0 auto;
}
.privilege ul li span {
display: block;
padding: 0.12rem 0 0.06rem;
line-height: 1;
text-align: center;
font-size: 0.26rem;
color: #333;
font-weight: bold;
}
.privilege ul li p {
line-height: 1;
text-align: center;
font-size: 0.2rem;
color: #666;
}
.privilege-btn {
display: block;
width: 7rem;
height: 0.8rem;
margin: 0 auto;
/* background: linear-gradient(#FFF09A, #D9A330); */
background: url(../img/botton.png) no-repeat left top / 0% auto;
background-size: cover;
line-height: 0.75rem;
text-align: center;
font-size: 0.32rem;
font-weight: bold;
color: #333;
/* border-radius: 0.2rem; */
}
.privilege-btn span {
position: relative;
left: -14%;
top: 4%;
font-weight: bold;
font-size: 0.34rem;
line-height: 0.5rem;
}
/*超级会员专享大礼包*/
.gift {
width: 100%;
margin-top: 0.2rem;
background: #fff;
}
.gift ul {
width: 100%;
padding: 0.1rem;
overflow: hidden;
}
.gift ul li {
float: left;
width: 50%;
padding: 0.1rem;
}
.gift ul li a {
display: block;
width: 100%;
}
.gift ul li a .gift-img {
width: 3.45rem;
height: 2rem;
}
.gift ul li a .gift-img img {
display: block;
width: 3.45rem;
height: 2rem;
object-fit: cover;
}
.gift ul li .gift-prie {
width: 100%;
margin-top: 0.2rem;
overflow: hidden;
}
.gift ul li .gift-prie span {
display: block;
float: left;
width: 0.86rem;
height: 0.36rem;
background: #D9A330;
line-height: 0.38rem;
text-align: center;
font-size: 0.22rem;
color: #fff;
border-radius: 0.18rem;
}
.gift ul li .gift-prie b {
display: block;
float: left;
height: 0.36rem;
padding-left: 0.1rem;
line-height: 0.38rem;
font-size: 0.32rem;
font-weight: bold;
color: #333;
}
.gift ul li .gift-original {
padding: 0.15rem 0;
line-height: 1;
font-size: 0.24rem;
color: #999;
}
.gift ul li h4 {
width: 100%;
line-height: 1;
font-size: 0.26rem;
color: #333;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
/*超值会员价*/
.list-travel {
width: 100%;
margin-top: 0.2rem;
background: #fff;
}
.list-travel ul {
width: 7.5rem;
padding: 0.1rem;
overflow: hidden;
}
.list-travel ul li {
float: left;
width: 50%;
padding: 0.1rem;
}
.list-travel ul li a {
display: block;
position: relative;
width: 100%;
background: #fff;
box-shadow: #eee 0 4px 4px 0, #eee 4px 0 4px 0;
overflow: hidden;
}
.list-travel ul li a img {
display: block;
width: 3.45rem;
height: 2.1rem;
margin: 0 auto;
object-fit: cover;
}
.list-travel ul li a .travel-item {
width: 100%;
height: 2.3rem;
padding: 0.15rem;
}
.list-travel ul li a h4 {
width: 100%;
line-height: 1;
font-size: 0.26rem;
color: #333;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.list-travel ul li a p {
margin-top: 0.1rem;
line-height: 0.3rem;
font-size: 0.2rem;
color: #999;
overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2;
}
.list-travel ul li a b {
display: block;
position: absolute;
left: 0.2rem;
bottom: 0.68rem;
line-height: 1;
font-size: 0.34rem;
font-weight: bold;
color: #F76808;
}
.list-travel ul li a del {
display: block;
position: absolute;
left: 1.5rem;
bottom: 0.68rem;
line-height: 0.34rem;
font-size: 0.24rem;
color: #999;
}
.list-travel ul li a .buy-btn {
position: absolute;
left: 0.2rem;
bottom: 0.2rem;
width: 1rem;
height: 0.36rem;
background: #56D1CB;
line-height: 0.36rem;
text-align: center;
font-size: 0.24rem;
color: #fff;
border-radius: 0.18rem;
}
.list-travel ul li a em {
display: block;
position: absolute;
right: 0.2rem;
bottom: 0.2rem;
line-height: 0.36rem;
font-size: 0.2rem;
color: #999;
}
/*旅行不等于花钱*/
.profit {
width: 100%;
margin-top: 0.2rem;
background: #fff;
}
.profit-box {
width: 100%;
padding: 0.2rem;
}
.profit-box img {
display: block;
width: 100%;
}
/*更多专享服务*/
.exclusive {
width: 100%;
margin: 0.2rem 0;
background: #fff;
}
.exclusive ul {
width: 100%;
padding: 0.1rem;
overflow: hidden;
}
.exclusive ul li {
float: left;
width: 33.333%;
padding: 0.1rem;
}
.exclusive ul li img {
display: block;
width: 100%;
object-fit: cover;
}
/*弹出选择礼包*/
.popup {
display: none;
position: fixed;
bottom: 0;
width: 100%;
max-width: 7.5rem;
height: 5.2rem;
background: #fff;
z-index: 999;
}
.popup-bg {
display: none;
position: fixed;
top: 0;
width: 100%;
max-width: 7.5rem;
height: 100%;
background: rgba(0, 0, 0, 0.6) !important;
filter:Alpha(opacity=60);
background: #000;
z-index: 222;
}
.popup-content {
position: relative;
width: 100%;
max-width: 7.5rem;
height: 5.2rem;
overflow: hidden;
}
.popup-title {
width: 100%;
height: 0.78rem;
overflow: hidden;
}
.popup-title h3 {
float: left;
padding-left: 0.2rem;
line-height: 0.78rem;
font-size: 0.28rem;
font-weight: bold;
color: #666;
}
.popup-title span {
display: block;
float: right;
width: 0.78rem;
line-height: 0.76rem;
text-align: center;
font-size: 0.36rem;
color: #999;
}
.popup-list {
width: 100%;
height: 3.5rem;
background: #fff;
overflow-x: hidden;
overflow-y: auto;
}
.popup-list ul li {
position: relative;
width: 100%;
}
.popup-list ul li:before {
position: absolute;
left: 0px;
right: 0px;
bottom: 0;
content: '';
width: 200%;
height: 1px;
border-bottom: #eee solid 1px;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transform: scaleY(0.5);
transform: scaleY(0.5);
}
.popup-list ul li:last-child:before {
content: none;
}
.popup-list ul li label {
display: block;
width: 100%;
padding: 0 0.2rem;
overflow: hidden;
}
.popup-list ul li span {
display: block;
float: left;
padding-left: 0.1rem;
line-height: 0.8rem;
font-size: 0.28rem;
color: #333;
}
.popup-list ul li.active span {
color: #D9A330;
}
.popup-list ul li .popup-checkbox {
display: block;
float: right;
width: 0.4rem;
height: 0.8rem;
border: none;
background: none;
-webkit-appearance: none;
line-height: 0.8rem;
vertical-align: middle;
text-align: right;
font-size: 0.36rem;
}
.popup-list ul li .popup-checkbox:before {
content: "\e686";
color: #ccc;
}
.popup-list ul li.active .popup-checkbox:before {
content: "\e687";
color: #D9A330;
}
.popup-bnt {
display: block;
position: absolute;
bottom: 0;
width: 100%;
height: 0.82rem;
background: #D9A330;
line-height: 0.82rem;
text-align: center;
font-size: 0.32rem;
font-weight: bold;
color: #fff;
}
.ban {
display: none;
position: absolute;
bottom: 0;
width: 100%;
height: 0.82rem;
background: #F2F2F2;
line-height: 0.82rem;
text-align: center;
font-size: 0.32rem;
font-weight: bold;
color: #666;
} | statics/default/css/benefitsMember.css | body {
background: #F2F2F2;
}
#wrapper {
width: 100%;
padding-bottom: 0.78rem;
}
/*返回按钮,开通会员按钮*/
.back, .vip-btn {
position: fixed;
width: 100%;
max-width: 7.5rem;
margin: 0 auto;
z-index: 99;
}
.back {
top: 0;
}
.vip-btn {
bottom: 0;
}
.back a.icon-back {
display: block;
height: 0.86rem;
width: 0.86rem;
padding-left: 0.2rem;
line-height: 0.86rem;
text-align: left;
font-size: 0.32rem;
color: #fff;
}
.vip-btn a {
display: block;
width: 100%;
height: 0.8rem;
background: url(../img/botton.png) no-repeat left top / 0% auto;
background-size: cover;
line-height: 0.8rem;
text-align: center;
font-size: 0.32rem;
font-weight: bold;
color: #333;
}
.vip-btn a span {
position: relative;
left: -17%;
top: 2%;
font-weight: bold;
font-size: 0.34rem;
line-height: 0.34rem;
}
/*轮播*/
.banner {
position:relative;
width: 100%;
max-width: 7.5rem;
margin: 0 auto;
overflow: hidden;
}
.banner .bd {
position: relative;
z-index:0;
}
.banner .bd ul li {
position: relative;
}
.banner .bd li img{
background: url(../img/loading.gif) center center no-repeat;
vertical-align: top;
width: 100%;
}
.banner .hd {
position:absolute;
bottom: 10px;
width: 100%;
height: 8px;
z-index: 1;
}
.banner .hd ul {
width: 100%;
height: 8px;
text-align: center;
}
.banner .hd ul li {
display: inline-block;
width: 8px;
height: 8px;
margin: 0 5px;
background: rgba(255, 255, 255, 0.6) !important;
filter:Alpha(opacity=60);
background: #fff;
border-radius: 4px;
text-indent: -20rem;
}
.banner .hd ul li.on {
background: rgba(86, 209, 203, 0.8) !important;
filter:Alpha(opacity=80);
background: #56D1CB;
}
/*title*/
.title {
width: 100%;
padding: 0.1rem 0.2rem;
overflow: hidden;
}
.title img {
display: block;
float: left;
width: 0.6rem;
height: 0.6rem;
}
.title span {
display: block;
float: left;
padding-left: 0.2rem;
height: 0.6rem;
line-height: 0.6rem;
font-size: 0.32rem;
color: #D9A330;
}
.tips {
width: 100%;
padding: 0.2rem 0.2rem 0;
line-height: 1;
font-size: 0.24rem;
color: #999;
}
/*黄金会员特权*/
.privilege {
width: 100%;
padding-bottom: 0.4rem;
margin-top: 0.2rem;
background: #fff;
}
.privilege ul {
width: 100%;
padding: 0.2rem 0 0.4rem;
overflow: hidden;
}
.privilege ul li {
float: left;
width: 25%;
padding: 0.2rem;
}
.privilege ul li img {
display: block;
width: 0.8rem;
height: 0.8rem;
margin: 0 auto;
}
.privilege ul li span {
display: block;
padding: 0.12rem 0 0.06rem;
line-height: 1;
text-align: center;
font-size: 0.26rem;
color: #333;
font-weight: bold;
}
.privilege ul li p {
line-height: 1;
text-align: center;
font-size: 0.2rem;
color: #666;
}
.privilege-btn {
display: block;
width: 7rem;
height: 0.8rem;
margin: 0 auto;
/* background: linear-gradient(#FFF09A, #D9A330); */
background: url(../img/botton.png) no-repeat left top / 0% auto;
background-size: cover;
line-height: 0.75rem;
text-align: center;
font-size: 0.32rem;
font-weight: bold;
color: #333;
/* border-radius: 0.2rem; */
}
.privilege-btn span {
position: relative;
left: -14%;
top: 4%;
font-weight: bold;
font-size: 0.34rem;
line-height: 0.5rem;
}
/*超级会员专享大礼包*/
.gift {
width: 100%;
margin-top: 0.2rem;
background: #fff;
}
.gift ul {
width: 100%;
padding: 0.1rem;
overflow: hidden;
}
.gift ul li {
float: left;
width: 50%;
padding: 0.1rem;
}
.gift ul li a {
display: block;
width: 100%;
}
.gift ul li a .gift-img {
width: 3.45rem;
height: 2rem;
}
.gift ul li a .gift-img img {
display: block;
width: 3.45rem;
height: 2rem;
object-fit: cover;
}
.gift ul li .gift-prie {
width: 100%;
margin-top: 0.2rem;
overflow: hidden;
}
.gift ul li .gift-prie span {
display: block;
float: left;
width: 0.86rem;
height: 0.36rem;
background: #D9A330;
line-height: 0.38rem;
text-align: center;
font-size: 0.22rem;
color: #fff;
border-radius: 0.18rem;
}
.gift ul li .gift-prie b {
display: block;
float: left;
height: 0.36rem;
padding-left: 0.1rem;
line-height: 0.38rem;
font-size: 0.32rem;
font-weight: bold;
color: #333;
}
.gift ul li .gift-original {
padding: 0.15rem 0;
line-height: 1;
font-size: 0.24rem;
color: #999;
}
.gift ul li h4 {
width: 100%;
line-height: 1;
font-size: 0.26rem;
color: #333;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
/*超值会员价*/
.list-travel {
width: 100%;
margin-top: 0.2rem;
background: #fff;
}
.list-travel ul {
width: 7.5rem;
padding: 0.1rem;
overflow: hidden;
}
.list-travel ul li {
float: left;
width: 50%;
padding: 0.1rem;
}
.list-travel ul li a {
display: block;
position: relative;
width: 100%;
background: #fff;
box-shadow: #eee 0 4px 4px 0, #eee 4px 0 4px 0;
overflow: hidden;
}
.list-travel ul li a img {
display: block;
width: 3.45rem;
height: 2.1rem;
margin: 0 auto;
object-fit: cover;
}
.list-travel ul li a .travel-item {
width: 100%;
height: 2.3rem;
padding: 0.15rem;
}
.list-travel ul li a h4 {
width: 100%;
line-height: 1;
font-size: 0.26rem;
color: #333;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.list-travel ul li a p {
margin-top: 0.1rem;
line-height: 0.3rem;
font-size: 0.2rem;
color: #999;
overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2;
}
.list-travel ul li a b {
display: block;
position: absolute;
left: 0.2rem;
bottom: 0.68rem;
line-height: 1;
font-size: 0.34rem;
font-weight: bold;
color: #F76808;
}
.list-travel ul li a del {
display: block;
position: absolute;
left: 1.5rem;
bottom: 0.68rem;
line-height: 0.34rem;
font-size: 0.24rem;
color: #999;
}
.list-travel ul li a .buy-btn {
position: absolute;
left: 0.2rem;
bottom: 0.2rem;
width: 1rem;
height: 0.36rem;
background: #56D1CB;
line-height: 0.36rem;
text-align: center;
font-size: 0.24rem;
color: #fff;
border-radius: 0.18rem;
}
.list-travel ul li a em {
display: block;
position: absolute;
right: 0.2rem;
bottom: 0.2rem;
line-height: 0.36rem;
font-size: 0.2rem;
color: #999;
}
/*旅行不等于花钱*/
.profit {
width: 100%;
margin-top: 0.2rem;
background: #fff;
}
.profit-box {
width: 100%;
padding: 0.2rem;
}
.profit-box img {
display: block;
width: 100%;
}
/*更多专享服务*/
.exclusive {
width: 100%;
margin: 0.2rem 0;
background: #fff;
}
.exclusive ul {
width: 100%;
padding: 0.1rem;
overflow: hidden;
}
.exclusive ul li {
float: left;
width: 33.333%;
padding: 0.1rem;
}
.exclusive ul li img {
display: block;
width: 100%;
object-fit: cover;
}
/*弹出选择礼包*/
.popup {
display: none;
position: fixed;
bottom: 0;
width: 100%;
max-width: 7.5rem;
height: 5.2rem;
background: #fff;
z-index: 999;
}
.popup-bg {
display: none;
position: fixed;
top: 0;
width: 100%;
max-width: 7.5rem;
height: 100%;
background: rgba(0, 0, 0, 0.6) !important;
filter:Alpha(opacity=60);
background: #000;
z-index: 222;
}
.popup-content {
position: relative;
width: 100%;
max-width: 7.5rem;
height: 5.2rem;
overflow: hidden;
}
.popup-title {
width: 100%;
height: 0.78rem;
overflow: hidden;
}
.popup-title h3 {
float: left;
padding-left: 0.2rem;
line-height: 0.78rem;
font-size: 0.28rem;
font-weight: bold;
color: #666;
}
.popup-title span {
display: block;
float: right;
width: 0.78rem;
line-height: 0.76rem;
text-align: center;
font-size: 0.36rem;
color: #999;
}
.popup-list {
width: 100%;
height: 3.5rem;
background: #fff;
overflow-x: hidden;
overflow-y: auto;
}
.popup-list ul li {
position: relative;
width: 100%;
}
.popup-list ul li:before {
position: absolute;
left: 0px;
right: 0px;
bottom: 0;
content: '';
width: 200%;
height: 1px;
border-bottom: #eee solid 1px;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transform: scaleY(0.5);
transform: scaleY(0.5);
}
.popup-list ul li:last-child:before {
content: none;
}
.popup-list ul li label {
display: block;
width: 100%;
padding: 0 0.2rem;
overflow: hidden;
}
.popup-list ul li span {
display: block;
float: left;
padding-left: 0.1rem;
line-height: 0.8rem;
font-size: 0.28rem;
color: #333;
}
.popup-list ul li.active span {
color: #D9A330;
}
.popup-list ul li .popup-checkbox {
display: block;
float: right;
width: 0.4rem;
height: 0.8rem;
border: none;
background: none;
-webkit-appearance: none;
line-height: 0.8rem;
vertical-align: middle;
text-align: right;
font-size: 0.36rem;
}
.popup-list ul li .popup-checkbox:before {
content: "\e686";
color: #ccc;
}
.popup-list ul li.active .popup-checkbox:before {
content: "\e687";
color: #D9A330;
}
.popup-bnt {
display: block;
position: absolute;
bottom: 0;
width: 100%;
height: 0.82rem;
background: #D9A330;
line-height: 0.82rem;
text-align: center;
font-size: 0.32rem;
font-weight: bold;
color: #fff;
}
.ban {
display: none;
position: absolute;
bottom: 0;
width: 100%;
height: 0.82rem;
background: #F2F2F2;
line-height: 0.82rem;
text-align: center;
font-size: 0.32rem;
font-weight: bold;
color: #666;
} | 0.385259 | 0.059183 |
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #2e2e2e;
}
.container{
position: relative;
width: 500px;
}
.container h2{
color: #fff;
}
.container .skills{
position: relative;
display: flex;
margin: 20px 0;
padding: 24px 10px 18px;
background: linear-gradient(#616161 0%, #333 10%, #222);
border-radius: 8px;
overflow: hidden;
border: 2px solid #000;
transition: 0.5s;
}
.container:hover .skills{
opacity: 0.05;
}
.container .skills:hover{
opacity: 1;
transform: scale(1.1);
}
.container .skills:before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 50%;
background: rgba(255, 255, 255, .1);
z-index: 10;
}
.skills .Name{
position: relative;
width: 110px;
text-align: right;
color: #fff;
margin-top: -2px;
text-transform: uppercase;
}
.skills .Value{
position: relative;
width: 40px;
text-align: left;
color: #fff;
margin-top: -2px;
text-transform: uppercase;
}
.skills .percent{
position: relative;
width: calc(100% - 150px);
height: 20px;
margin: 0 10px;
border-radius: 10px;
background: #151515;
box-shadow: inset 0 0 10px #000;
overflow: hidden;
}
.skills .percent .progress{
position: absolute;
top: 0;
left: 0;
width: 70%;
height: 100%;
border-radius: 10px;
background: #fff;
box-shadow: inset 0 0 2px #000;
animation: animate1 4s ease-in-out forwards;
}
@keyframes animate1{
from{
width: 0;
}
}
.container .skills:nth-child(2) .percent .progress{
background: linear-gradient(45deg, #1fe6ff, #673AB7);
}
.container .skills:nth-child(3) .percent .progress{
background: linear-gradient(45deg, #3bc0ff, #33ff00);
}
.container .skills:nth-child(4) .percent .progress{
background: linear-gradient(45deg, #ffee54, #ff00ca);
}
.container .skills:nth-child(5) .percent .progress{
background: linear-gradient(45deg, #22ffde, #2196f3);
} | CSS3 Animated SkillsBarUIDesignwithCoolHoverEffects/style.css | *{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #2e2e2e;
}
.container{
position: relative;
width: 500px;
}
.container h2{
color: #fff;
}
.container .skills{
position: relative;
display: flex;
margin: 20px 0;
padding: 24px 10px 18px;
background: linear-gradient(#616161 0%, #333 10%, #222);
border-radius: 8px;
overflow: hidden;
border: 2px solid #000;
transition: 0.5s;
}
.container:hover .skills{
opacity: 0.05;
}
.container .skills:hover{
opacity: 1;
transform: scale(1.1);
}
.container .skills:before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 50%;
background: rgba(255, 255, 255, .1);
z-index: 10;
}
.skills .Name{
position: relative;
width: 110px;
text-align: right;
color: #fff;
margin-top: -2px;
text-transform: uppercase;
}
.skills .Value{
position: relative;
width: 40px;
text-align: left;
color: #fff;
margin-top: -2px;
text-transform: uppercase;
}
.skills .percent{
position: relative;
width: calc(100% - 150px);
height: 20px;
margin: 0 10px;
border-radius: 10px;
background: #151515;
box-shadow: inset 0 0 10px #000;
overflow: hidden;
}
.skills .percent .progress{
position: absolute;
top: 0;
left: 0;
width: 70%;
height: 100%;
border-radius: 10px;
background: #fff;
box-shadow: inset 0 0 2px #000;
animation: animate1 4s ease-in-out forwards;
}
@keyframes animate1{
from{
width: 0;
}
}
.container .skills:nth-child(2) .percent .progress{
background: linear-gradient(45deg, #1fe6ff, #673AB7);
}
.container .skills:nth-child(3) .percent .progress{
background: linear-gradient(45deg, #3bc0ff, #33ff00);
}
.container .skills:nth-child(4) .percent .progress{
background: linear-gradient(45deg, #ffee54, #ff00ca);
}
.container .skills:nth-child(5) .percent .progress{
background: linear-gradient(45deg, #22ffde, #2196f3);
} | 0.538255 | 0.0809 |
a,
p a,
p a:hover,
a:hover,
a:focus,
a:active,
.th-stars span:after,
.th-emails li i,
.th-emails li a:hover,
.th-socialicons li a:hover i,
.th-dropdownmenu li a:hover,
.th-btndropdown i.fa-commenting-o,
.th-addressicon i,
.th-btnappointment i,
.th-sectiontitle h2 span,
.th-featureicon i,
.th-featuretitle h3:hover a,
.th-feature .th-description p a,
.th-serciceicon i,
.th-navfilterbale li a.th-active:before,
.th-navfilterbale li a:hover,
.th-faddressinfo li a:hover,
.th-usefullinks li a:hover,
.th-usefullinks li a:hover:before,
.th-recentpost li:hover .th-shortcontent time,
.th-clientinfo span,
.th-featurestabcontent h2 span,
.th-featuresnav li a i,
.th-select:after,
.th-counterstwo .th-count h3,
.th-counterstwo .th-count h3:before,
.th-homesliderthree .th-slidercontent h1 span,
.th-featurestwo .th-featureicon,
.th-count span,
.th-pagination ul li a:hover,
.th-widget ul li a:hover,
.th-widget ul li a:hover span,
.th-leficon ul li a:before,
.th-widgetcontcatus h3 span,
.th-faqlist li a:hover,
.th-detailpage .th-listheart li:before,
.th-docterdetail ul li a:hover,
.th-docterdetail h2,
.th-backhome span,
.th-commingsoon h1 span,
.th-testimonialsthree .th-btnroundprev:hover i,
.th-testimonialsthree .th-btnroundnext:hover i,
.th-404content h3 span,
.th-commingsoon .th-content h3,
.th-title h2,
.th-dateinputicon i,
.th-navigation > ul > li:hover > a,
.th-navigation > ul > li.th-active > a,
.th-menudropdown > li:hover > a,
.th-menudropdown > li.th-active > a,
.th-menudropdown li a:hover,
.th-authorhead ul li a:hover{color: #00adef;}
/*=============================================
Primary Theme Background Color
=============================================*/
.th-widgetsearch:before,
.th-btncurvenext:hover:before,
.th-btncurveprev:hover:before,
.th-openingtime h3,
.th-parallaximg:before,
.th-bgdark,
.th-navfilterbale li a:before,
.th-docmember figure,
.th-departmenticlon,
.th-department:hover figure,
.th-footertopbar,
.th-footerbottombar,
.th-borderheading:before,
.th-socialiconsround li a:hover,
.th-featuresnav li.active a,
.th-featuresnav li a:hover,
.th-btnform,
.th-servicestwo .th-service i,
.th-poststwo .th-postmate,
.th-btnsubscribe,
.th-headerthree .th-navigation > ul > li > a:before,
.th-panel h4:before,
.th-postdate,
.th-fourcols,
.th-iconhaxegon,
.th-bordertitel:before,
.th-formhead,
.th-homesliderthree .th-btns .th-btn:hover,
.th-btnbooknow,
.th-pagetitle:after,
.th-widgettitle,
.th-backhome span:after,
.th-backhome span:before,
.th-contentarea .th-infobox .th-iconbox,
.th-searchkey fieldset button,
.th-btnroundprev:hover,
.th-btnroundnext:hover,
.th-404content .th-btn:hover,
.th-formsearch fieldset .th-btn:hover,
.th-commingsoon .th-infobox .th-iconbox,
.th-srearch .th-btn,
.th-searchdropdownmenu .th-btn{background:#00adef;}
.th-slidercontent:before,
.th-servicehover,
.th-docterdetail .th-formgetintouch .th-btnform i,
.th-headerthree .th-menudropdown li a:hover,
.th-dropdownmenu li a:hover{background: rgba(0, 173, 239, 0.80);}
.th-project figure figcaption{background: rgba(0, 173, 239, 0.70);}
/*=============================================
Primary Theme Border Color
=============================================*/
.th-socialiconsround li a:hover,
.th-testimonial blockquote:before,
.th-servicestwo .th-service,
.th-panelcontent,
.th-iconhaxegon:before,
.th-iconhaxegon:after,
.th-homesliderthree .th-btns .th-btn:hover,
.th-pagetitle h1,
.th-pagination ul li a:hover,
.th-contentarea .th-infobox,
.th-btnroundprev:hover,
.th-btnroundnext:hover,
.th-404content .th-btn:hover,
.th-commingsoon .th-infobox{border-color: #00adef;}
/*=============================================
Secondary Theme Color
=============================================*/
{color: #2d3e50;}
/*=============================================
Secondary Theme Background Color
=============================================*/
.th-parallaximg.th-colortwo:before,
.th-dropdowarrow{background:#2d3e50;}
/*=============================================
Secondary Theme Border Color
=============================================*/
.th-btnform i,
.th-formappointment fieldset .form-control,
.th-formappointment fieldset th-select select{border-color: #2d3e50;} | themes/hospital/assets/css/color.css | a,
p a,
p a:hover,
a:hover,
a:focus,
a:active,
.th-stars span:after,
.th-emails li i,
.th-emails li a:hover,
.th-socialicons li a:hover i,
.th-dropdownmenu li a:hover,
.th-btndropdown i.fa-commenting-o,
.th-addressicon i,
.th-btnappointment i,
.th-sectiontitle h2 span,
.th-featureicon i,
.th-featuretitle h3:hover a,
.th-feature .th-description p a,
.th-serciceicon i,
.th-navfilterbale li a.th-active:before,
.th-navfilterbale li a:hover,
.th-faddressinfo li a:hover,
.th-usefullinks li a:hover,
.th-usefullinks li a:hover:before,
.th-recentpost li:hover .th-shortcontent time,
.th-clientinfo span,
.th-featurestabcontent h2 span,
.th-featuresnav li a i,
.th-select:after,
.th-counterstwo .th-count h3,
.th-counterstwo .th-count h3:before,
.th-homesliderthree .th-slidercontent h1 span,
.th-featurestwo .th-featureicon,
.th-count span,
.th-pagination ul li a:hover,
.th-widget ul li a:hover,
.th-widget ul li a:hover span,
.th-leficon ul li a:before,
.th-widgetcontcatus h3 span,
.th-faqlist li a:hover,
.th-detailpage .th-listheart li:before,
.th-docterdetail ul li a:hover,
.th-docterdetail h2,
.th-backhome span,
.th-commingsoon h1 span,
.th-testimonialsthree .th-btnroundprev:hover i,
.th-testimonialsthree .th-btnroundnext:hover i,
.th-404content h3 span,
.th-commingsoon .th-content h3,
.th-title h2,
.th-dateinputicon i,
.th-navigation > ul > li:hover > a,
.th-navigation > ul > li.th-active > a,
.th-menudropdown > li:hover > a,
.th-menudropdown > li.th-active > a,
.th-menudropdown li a:hover,
.th-authorhead ul li a:hover{color: #00adef;}
/*=============================================
Primary Theme Background Color
=============================================*/
.th-widgetsearch:before,
.th-btncurvenext:hover:before,
.th-btncurveprev:hover:before,
.th-openingtime h3,
.th-parallaximg:before,
.th-bgdark,
.th-navfilterbale li a:before,
.th-docmember figure,
.th-departmenticlon,
.th-department:hover figure,
.th-footertopbar,
.th-footerbottombar,
.th-borderheading:before,
.th-socialiconsround li a:hover,
.th-featuresnav li.active a,
.th-featuresnav li a:hover,
.th-btnform,
.th-servicestwo .th-service i,
.th-poststwo .th-postmate,
.th-btnsubscribe,
.th-headerthree .th-navigation > ul > li > a:before,
.th-panel h4:before,
.th-postdate,
.th-fourcols,
.th-iconhaxegon,
.th-bordertitel:before,
.th-formhead,
.th-homesliderthree .th-btns .th-btn:hover,
.th-btnbooknow,
.th-pagetitle:after,
.th-widgettitle,
.th-backhome span:after,
.th-backhome span:before,
.th-contentarea .th-infobox .th-iconbox,
.th-searchkey fieldset button,
.th-btnroundprev:hover,
.th-btnroundnext:hover,
.th-404content .th-btn:hover,
.th-formsearch fieldset .th-btn:hover,
.th-commingsoon .th-infobox .th-iconbox,
.th-srearch .th-btn,
.th-searchdropdownmenu .th-btn{background:#00adef;}
.th-slidercontent:before,
.th-servicehover,
.th-docterdetail .th-formgetintouch .th-btnform i,
.th-headerthree .th-menudropdown li a:hover,
.th-dropdownmenu li a:hover{background: rgba(0, 173, 239, 0.80);}
.th-project figure figcaption{background: rgba(0, 173, 239, 0.70);}
/*=============================================
Primary Theme Border Color
=============================================*/
.th-socialiconsround li a:hover,
.th-testimonial blockquote:before,
.th-servicestwo .th-service,
.th-panelcontent,
.th-iconhaxegon:before,
.th-iconhaxegon:after,
.th-homesliderthree .th-btns .th-btn:hover,
.th-pagetitle h1,
.th-pagination ul li a:hover,
.th-contentarea .th-infobox,
.th-btnroundprev:hover,
.th-btnroundnext:hover,
.th-404content .th-btn:hover,
.th-commingsoon .th-infobox{border-color: #00adef;}
/*=============================================
Secondary Theme Color
=============================================*/
{color: #2d3e50;}
/*=============================================
Secondary Theme Background Color
=============================================*/
.th-parallaximg.th-colortwo:before,
.th-dropdowarrow{background:#2d3e50;}
/*=============================================
Secondary Theme Border Color
=============================================*/
.th-btnform i,
.th-formappointment fieldset .form-control,
.th-formappointment fieldset th-select select{border-color: #2d3e50;} | 0.465145 | 0.069038 |
.seeEventMain {
width: 100%;
height: 100%;
background-color: #FBFBFB;
}
.title {
height: 1rem;
line-height: 1rem;
text-align: center;
font-size: .4375rem;
font-weight: 900;
overflow: hidden;
}
.title a {
float: left;
color: rgba(57, 57, 58, 1);
font-size: .4375rem;
margin-right: -20px;
margin-left: 20px;
}
.dateList {
width: 100%;
padding: 0;
margin: 0;
overflow-x: auto;
display: flex;
flex-flow: row nowrap;
background-color: #fff;
box-shadow: 0px 25px 25px 0px #EFEEED;
}
.dateList li {
flex: none;
width: .9375rem;
height: .9375rem;
line-height: .9375rem;
text-align: center;
font-size: .3125rem;
font-weight: 600;
}
.dateItem {
display: inline-block;
width: .625rem;
height: .625rem;
line-height: .625rem;
border-radius: 50%;
}
.dateItem.active {
background-color: #FF8552;
}
.midContent {
height: calc(100% - 3.5rem);
width: 100%;
overflow-y: auto;
box-sizing: border-box;
padding: 10px 20px;
-webkit-overflow-scrolling: touch;
}
.firstRow {
width: 100%;
height: 1.0625rem;
line-height: 1.0625rem;
font-size: .4375rem;
font-weight: 600;
color: #AAAAAA;
}
.eItemUl {
margin: 0;
padding: 0;
}
.eItemUl li {
width: 100%;
height: 2.1875rem;
border-radius: 12px;
box-sizing: border-box;
padding: .25rem .3125rem .25rem .9375rem;
position: relative;
margin-bottom: .375rem;
}
.arc {
display: inline-block;
width: .4375rem;
height: .4375rem;
border-radius: 50%;
position: absolute;
left: 20px;
top: 20px;
}
.yellow {
background-color: #FF8552;
color: #fff;
}
.yellow .arc {
background-color: #fff;
}
.red {
background-color: #ED584A;
color: #fff;
}
.red .arc {
background-color: #fff;
}
.white {
background-color: #fff;
color: rgba(154, 154, 155, 1);
}
.white .arc {
background-color: #FDA7A7;
}
.green {
background-color: #fff;
color: rgba(154, 154, 155, 1);
}
.green .arc {
background-color: #A8D19A;
}
.purple {
background-color: #343D8F;
color: #fff;
}
.purple .arc {
background-color: #fff;
}
.rightCard {
display: inline-block;
margin-left: .3125rem;
}
.rightCard p:first-child {
line-height: .625rem;
font-size: .375rem;
font-weight: 600;
width: 274px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.rightCard p:nth-child(2) {
line-height: 20px;
width: 274px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
font-size: .25rem;
}
.rightCard .rightFoot {
display: inline-block;
line-height: .625rem;
font-size: .25rem;
}
.rightFoot .time1 {
margin-left: .9375rem;
}
.rightFoot .times .timeArounds,
.rightFoot .times .orders {
margin-left: 5px;
}
footer {
width: 100%;
height: 1.5625rem;
line-height: 1.5625rem;
background-color: #fff;
position: fixed;
bottom: -1px;
left: 0;
right: 0;
display: flex;
text-align: center;
box-shadow: 0px -1px 10px 10px rgba(245, 244, 244, 1);
}
footer span {
display: inline-block;
flex: 1;
font-size: .5rem;
color: #BCB8B1;
}
.box {
display: inline-block;
width: 2rem;
height: 2rem;
line-height: 2rem;
background-color: #fff;
border-radius: 50%;
position: relative;
bottom: .625rem;
z-index: 100;
box-shadow: 0px -6px 20px -5px rgba(245, 244, 244, 1);
}
.addEvents {
display: inline-block;
width: 1.625rem;
height: 1.625rem;
line-height: 1.625rem;
background-color: #FF8552;
color: #fff;
border-radius: 50%;
}
.addEvents svg {
font-size: .625rem;
vertical-align: inherit;
}
.footRight.active{
color: lightslategrey;
} | src/assets/css/seeEvent.css | .seeEventMain {
width: 100%;
height: 100%;
background-color: #FBFBFB;
}
.title {
height: 1rem;
line-height: 1rem;
text-align: center;
font-size: .4375rem;
font-weight: 900;
overflow: hidden;
}
.title a {
float: left;
color: rgba(57, 57, 58, 1);
font-size: .4375rem;
margin-right: -20px;
margin-left: 20px;
}
.dateList {
width: 100%;
padding: 0;
margin: 0;
overflow-x: auto;
display: flex;
flex-flow: row nowrap;
background-color: #fff;
box-shadow: 0px 25px 25px 0px #EFEEED;
}
.dateList li {
flex: none;
width: .9375rem;
height: .9375rem;
line-height: .9375rem;
text-align: center;
font-size: .3125rem;
font-weight: 600;
}
.dateItem {
display: inline-block;
width: .625rem;
height: .625rem;
line-height: .625rem;
border-radius: 50%;
}
.dateItem.active {
background-color: #FF8552;
}
.midContent {
height: calc(100% - 3.5rem);
width: 100%;
overflow-y: auto;
box-sizing: border-box;
padding: 10px 20px;
-webkit-overflow-scrolling: touch;
}
.firstRow {
width: 100%;
height: 1.0625rem;
line-height: 1.0625rem;
font-size: .4375rem;
font-weight: 600;
color: #AAAAAA;
}
.eItemUl {
margin: 0;
padding: 0;
}
.eItemUl li {
width: 100%;
height: 2.1875rem;
border-radius: 12px;
box-sizing: border-box;
padding: .25rem .3125rem .25rem .9375rem;
position: relative;
margin-bottom: .375rem;
}
.arc {
display: inline-block;
width: .4375rem;
height: .4375rem;
border-radius: 50%;
position: absolute;
left: 20px;
top: 20px;
}
.yellow {
background-color: #FF8552;
color: #fff;
}
.yellow .arc {
background-color: #fff;
}
.red {
background-color: #ED584A;
color: #fff;
}
.red .arc {
background-color: #fff;
}
.white {
background-color: #fff;
color: rgba(154, 154, 155, 1);
}
.white .arc {
background-color: #FDA7A7;
}
.green {
background-color: #fff;
color: rgba(154, 154, 155, 1);
}
.green .arc {
background-color: #A8D19A;
}
.purple {
background-color: #343D8F;
color: #fff;
}
.purple .arc {
background-color: #fff;
}
.rightCard {
display: inline-block;
margin-left: .3125rem;
}
.rightCard p:first-child {
line-height: .625rem;
font-size: .375rem;
font-weight: 600;
width: 274px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.rightCard p:nth-child(2) {
line-height: 20px;
width: 274px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
font-size: .25rem;
}
.rightCard .rightFoot {
display: inline-block;
line-height: .625rem;
font-size: .25rem;
}
.rightFoot .time1 {
margin-left: .9375rem;
}
.rightFoot .times .timeArounds,
.rightFoot .times .orders {
margin-left: 5px;
}
footer {
width: 100%;
height: 1.5625rem;
line-height: 1.5625rem;
background-color: #fff;
position: fixed;
bottom: -1px;
left: 0;
right: 0;
display: flex;
text-align: center;
box-shadow: 0px -1px 10px 10px rgba(245, 244, 244, 1);
}
footer span {
display: inline-block;
flex: 1;
font-size: .5rem;
color: #BCB8B1;
}
.box {
display: inline-block;
width: 2rem;
height: 2rem;
line-height: 2rem;
background-color: #fff;
border-radius: 50%;
position: relative;
bottom: .625rem;
z-index: 100;
box-shadow: 0px -6px 20px -5px rgba(245, 244, 244, 1);
}
.addEvents {
display: inline-block;
width: 1.625rem;
height: 1.625rem;
line-height: 1.625rem;
background-color: #FF8552;
color: #fff;
border-radius: 50%;
}
.addEvents svg {
font-size: .625rem;
vertical-align: inherit;
}
.footRight.active{
color: lightslategrey;
} | 0.593374 | 0.101902 |
@font-face {
font-family: "flaticon31";
src: url("flaticon.eot");
src: url("flaticon.eot#iefix") format("embedded-opentype"),
url("flaticon.woff") format("woff"),
url("flaticon.ttf") format("truetype"),
url("flaticon.svg") format("svg");
font-weight: normal;
font-style: normal;
}
[class^="flaticon31-"]:before, [class*=" flaticon31-"]:before,
[class^="flaticon31-"]:after, [class*=" flaticon31-"]:after {
font-family: flaticon31;
font-size: 20px;
font-style: normal;
margin-left: 20px;
}.flaticon31-adopt:before {
content: "\e000";
}
.flaticon31-balloon10:before {
content: "\e001";
}
.flaticon31-carry piggy back:before {
content: "\e002";
}
.flaticon31-cart7:before {
content: "\e003";
}
.flaticon31-celebration10:before {
content: "\e004";
}
.flaticon31-celebration11:before {
content: "\e005";
}
.flaticon31-children3:before {
content: "\e006";
}
.flaticon31-donate1:before {
content: "\e007";
}
.flaticon31-donate2:before {
content: "\e008";
}
.flaticon31-elderly2:before {
content: "\e009";
}
.flaticon31-feed2:before {
content: "\e00a";
}
.flaticon31-hamburger9:before {
content: "\e00b";
}
.flaticon31-hand 1:before {
content: "\e00c";
}
.flaticon31-heart309:before {
content: "\e00d";
}
.flaticon31-heart316:before {
content: "\e00e";
}
.flaticon31-heart317:before {
content: "\e00f";
}
.flaticon31-help20:before {
content: "\e010";
}
.flaticon31-help21:before {
content: "\e011";
}
.flaticon31-help22:before {
content: "\e012";
}
.flaticon31-help23:before {
content: "\e013";
}
.flaticon31-holding hands1:before {
content: "\e014";
}
.flaticon31-holding hands2:before {
content: "\e015";
}
.flaticon31-holding hands3:before {
content: "\e016";
}
.flaticon31-holding hands:before {
content: "\e017";
}
.flaticon31-nurse14:before {
content: "\e018";
}
.flaticon31-plant43:before {
content: "\e019";
}
.flaticon31-sweep1:before {
content: "\e01a";
}
.flaticon31-teaching:before {
content: "\e01b";
}
.flaticon31-traffic24:before {
content: "\e01c";
}
.flaticon31-waving1:before {
content: "\e01d";
} | images/icons/humanitarian/flaticon31.css | @font-face {
font-family: "flaticon31";
src: url("flaticon.eot");
src: url("flaticon.eot#iefix") format("embedded-opentype"),
url("flaticon.woff") format("woff"),
url("flaticon.ttf") format("truetype"),
url("flaticon.svg") format("svg");
font-weight: normal;
font-style: normal;
}
[class^="flaticon31-"]:before, [class*=" flaticon31-"]:before,
[class^="flaticon31-"]:after, [class*=" flaticon31-"]:after {
font-family: flaticon31;
font-size: 20px;
font-style: normal;
margin-left: 20px;
}.flaticon31-adopt:before {
content: "\e000";
}
.flaticon31-balloon10:before {
content: "\e001";
}
.flaticon31-carry piggy back:before {
content: "\e002";
}
.flaticon31-cart7:before {
content: "\e003";
}
.flaticon31-celebration10:before {
content: "\e004";
}
.flaticon31-celebration11:before {
content: "\e005";
}
.flaticon31-children3:before {
content: "\e006";
}
.flaticon31-donate1:before {
content: "\e007";
}
.flaticon31-donate2:before {
content: "\e008";
}
.flaticon31-elderly2:before {
content: "\e009";
}
.flaticon31-feed2:before {
content: "\e00a";
}
.flaticon31-hamburger9:before {
content: "\e00b";
}
.flaticon31-hand 1:before {
content: "\e00c";
}
.flaticon31-heart309:before {
content: "\e00d";
}
.flaticon31-heart316:before {
content: "\e00e";
}
.flaticon31-heart317:before {
content: "\e00f";
}
.flaticon31-help20:before {
content: "\e010";
}
.flaticon31-help21:before {
content: "\e011";
}
.flaticon31-help22:before {
content: "\e012";
}
.flaticon31-help23:before {
content: "\e013";
}
.flaticon31-holding hands1:before {
content: "\e014";
}
.flaticon31-holding hands2:before {
content: "\e015";
}
.flaticon31-holding hands3:before {
content: "\e016";
}
.flaticon31-holding hands:before {
content: "\e017";
}
.flaticon31-nurse14:before {
content: "\e018";
}
.flaticon31-plant43:before {
content: "\e019";
}
.flaticon31-sweep1:before {
content: "\e01a";
}
.flaticon31-teaching:before {
content: "\e01b";
}
.flaticon31-traffic24:before {
content: "\e01c";
}
.flaticon31-waving1:before {
content: "\e01d";
} | 0.300643 | 0.287472 |
html,
body {
overflow-x: hidden; /* Prevent scroll on narrow devices */
font-family: 'Raleway', sans-serif;
}
body {
background-color: #F4F4F4;
}
@media(min-width: 769px){
.container-fluid{
margin: 0px 90px;
}
.navbar-container {
padding: 0px;
margin: 0px 100px;
}
}
@media(max-width: 768px){
.container-fluid{
margin: 0px 20px;
}
.navbar-container {
padding: 0px;
margin: 0px 30px;
}
}
.container-fluid{
margin-top: 20px !important;
background-color: white;
box-shadow: 2px -2px 5px rgba(0,0,0,.3);
}
#header{
border-width: 0px;
/*
border-style: hidden hidden double hidden;
border-color: #4CAF50;*/
}
hr{
border-color: #008AF4;
}
#hr-top{
margin: 5px 0px !important;
border-width: 1px;
/*border-style: double hidden hidden hidden !important;*/
}
#pembatas-top{
border-width: 3px;
border-style: double hidden hidden hidden;
border-color: #008AF4;
height: 10px;
}
.navbar{
margin-bottom: 0px !important;
background-color: #212121;
border-radius: 0px;
}
.navbar-brand {
font-size: 96px;
}
@media (max-width: 765px) {
.navbar-header{
padding: 0 15px;
}
}
.navbar-header{
margin-top: -3px !important;
}
.navbar-header .navbar-toggle{
margin-top: 20px;
}
.navbar-header .navbar-toggle .icon-bar {
background-color: white;
}
.navbar.navbar-fixed-top.fixed-theme {
background-color: #ecf0f1;
box-shadow: 0 0 5px rgba(0,0,0,.3);
}
.navbar-brand.fixed-theme {
font-size: 66px;
}
.navbar-container.fixed-theme {
padding: 0 20px;
}
.navbar-brand.fixed-theme,
.navbar-container.fixed-theme,
.navbar.navbar-fixed-top.fixed-theme,
.navbar-brand,
.navbar-container{
transition: 0.8s;
-webkit-transition: 0.8s;
}
.navbar-collapse > .navbar-nav >li > a{
color: white;
font-size: 14px;
font-weight: 600;
}
#navbar > .navbar-nav > li{
margin-top: 9px;
}
#navbar > .navbar-nav > li > a{
}
#navbar > .navbar-nav > li.active > a{
margin-top:-9px;
background-color: rgba(76, 175, 80, 0.2);
border-width: 9px;
border-style: solid hidden solid hidden;
border-color: #4CAF50;
}
#navbar > .navbar-nav > li.active > a:hover{
color: white;
}
#navbar > .navbar-nav > li > a:hover{
margin-top:-9px;
border-width: 9px;
border-style: solid hidden solid hidden;
border-color: #FF9D1E;
background-color: rgba(255, 157, 30, 0.2);
}
.web-title {
color: white;
font-size: 48px;
margin-right: 15px;
font-weight: 100 !important;
}
.logo-text {
text-decoration: none;
}
#text-O {
color: #4CAF50;
text-decoration: underline;
}
#text-V {
color: #FF9D1E;
text-decoration: underline;
}
.container-fluid > .row{
font-weight: 600;
}
.jumbotron {
background-image: url("../img/ml2.jpg");
background-color: #17234E;
height: 20px;
background-repeat: no-repeat;
background-position: center;
-webkit-background-size: cover;
background-size: cover;
padding: 15px 20px !important;
margin-bottom: 0px;
}
.jumbotron h1{
color: white;
margin: 0px;
}
footer{
/*background-color: #ecf0f1;*/
height: 50px;
padding: 0px 0px;
/* display: flex;
align-items: center;*/
margin-bottom: 0px;
}
footer p{
color: #008AF4;
font-size: 14px;
font-weight: 600;
margin: 0px;
}
.ads-container{
padding: 10px 10px;
display: block;
overflow: hidden;
}
#ads{
height: 500px;
width: 200px;
}
/*blog-content*/
.blog-content-container{
padding: 10px 20px;
}
.blog-content{
font-size: 16px;
font-weight:400 !important;
}
.blog-title{
font-size: 32px;
}
#disqus_thread{
padding: 10px 20px;
} | public/css/style-blog.css | html,
body {
overflow-x: hidden; /* Prevent scroll on narrow devices */
font-family: 'Raleway', sans-serif;
}
body {
background-color: #F4F4F4;
}
@media(min-width: 769px){
.container-fluid{
margin: 0px 90px;
}
.navbar-container {
padding: 0px;
margin: 0px 100px;
}
}
@media(max-width: 768px){
.container-fluid{
margin: 0px 20px;
}
.navbar-container {
padding: 0px;
margin: 0px 30px;
}
}
.container-fluid{
margin-top: 20px !important;
background-color: white;
box-shadow: 2px -2px 5px rgba(0,0,0,.3);
}
#header{
border-width: 0px;
/*
border-style: hidden hidden double hidden;
border-color: #4CAF50;*/
}
hr{
border-color: #008AF4;
}
#hr-top{
margin: 5px 0px !important;
border-width: 1px;
/*border-style: double hidden hidden hidden !important;*/
}
#pembatas-top{
border-width: 3px;
border-style: double hidden hidden hidden;
border-color: #008AF4;
height: 10px;
}
.navbar{
margin-bottom: 0px !important;
background-color: #212121;
border-radius: 0px;
}
.navbar-brand {
font-size: 96px;
}
@media (max-width: 765px) {
.navbar-header{
padding: 0 15px;
}
}
.navbar-header{
margin-top: -3px !important;
}
.navbar-header .navbar-toggle{
margin-top: 20px;
}
.navbar-header .navbar-toggle .icon-bar {
background-color: white;
}
.navbar.navbar-fixed-top.fixed-theme {
background-color: #ecf0f1;
box-shadow: 0 0 5px rgba(0,0,0,.3);
}
.navbar-brand.fixed-theme {
font-size: 66px;
}
.navbar-container.fixed-theme {
padding: 0 20px;
}
.navbar-brand.fixed-theme,
.navbar-container.fixed-theme,
.navbar.navbar-fixed-top.fixed-theme,
.navbar-brand,
.navbar-container{
transition: 0.8s;
-webkit-transition: 0.8s;
}
.navbar-collapse > .navbar-nav >li > a{
color: white;
font-size: 14px;
font-weight: 600;
}
#navbar > .navbar-nav > li{
margin-top: 9px;
}
#navbar > .navbar-nav > li > a{
}
#navbar > .navbar-nav > li.active > a{
margin-top:-9px;
background-color: rgba(76, 175, 80, 0.2);
border-width: 9px;
border-style: solid hidden solid hidden;
border-color: #4CAF50;
}
#navbar > .navbar-nav > li.active > a:hover{
color: white;
}
#navbar > .navbar-nav > li > a:hover{
margin-top:-9px;
border-width: 9px;
border-style: solid hidden solid hidden;
border-color: #FF9D1E;
background-color: rgba(255, 157, 30, 0.2);
}
.web-title {
color: white;
font-size: 48px;
margin-right: 15px;
font-weight: 100 !important;
}
.logo-text {
text-decoration: none;
}
#text-O {
color: #4CAF50;
text-decoration: underline;
}
#text-V {
color: #FF9D1E;
text-decoration: underline;
}
.container-fluid > .row{
font-weight: 600;
}
.jumbotron {
background-image: url("../img/ml2.jpg");
background-color: #17234E;
height: 20px;
background-repeat: no-repeat;
background-position: center;
-webkit-background-size: cover;
background-size: cover;
padding: 15px 20px !important;
margin-bottom: 0px;
}
.jumbotron h1{
color: white;
margin: 0px;
}
footer{
/*background-color: #ecf0f1;*/
height: 50px;
padding: 0px 0px;
/* display: flex;
align-items: center;*/
margin-bottom: 0px;
}
footer p{
color: #008AF4;
font-size: 14px;
font-weight: 600;
margin: 0px;
}
.ads-container{
padding: 10px 10px;
display: block;
overflow: hidden;
}
#ads{
height: 500px;
width: 200px;
}
/*blog-content*/
.blog-content-container{
padding: 10px 20px;
}
.blog-content{
font-size: 16px;
font-weight:400 !important;
}
.blog-title{
font-size: 32px;
}
#disqus_thread{
padding: 10px 20px;
} | 0.311636 | 0.068944 |
body{
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}
.header{
width: 100%;
height: auto;
}
.headercontent{
height: 23%;
margin: 0 auto;
background: #A1B62B;
}
.headercontent a img {
width: 8.5%;
margin: 0 auto;
display: block;
padding-top: 1.5%;
padding-bottom: 1.5%;
}
.headerimg1{
width: 100%;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 25px;
}
.btn-fee {
background: #484848;
font-family: Arial;
color: #ffffff;
font-size: 3rem;
padding-top: 35px;
padding-bottom: 35px;
margin-bottom: 5px;
text-decoration: none;
font-weight: bold;
border-radius: 20px;
width: 100%;
}
.btn-fee:hover {
background: #A1B62B;
background-image: linear-gradient(top bottom, #A1B62B, #A1B62B);
text-decoration: none;
color: #fff;
}
.btn-right {
background: #c7b299;
font-family: Arial;
color: #ffffff;
font-size: 3rem;
padding-top: 35px;
padding-bottom: 35px;
margin-bottom: 5px;
text-decoration: none;
font-weight: bold;
border-top-right-radius: 30px;
border-bottom-left-radius: 30px;
width: 100%;
}
.btn-right:hover {
background: #A1B62B;
background-image: linear-gradient(top bottom, #A1B62B, #A1B62B);
text-decoration: none;
color: #fff;
}
.btn-center {
background: #fbb03b;
font-family: Arial;
color: #ffffff;
font-size: 2.8rem;
padding-top: 35px;
padding-bottom: 35px;
margin-bottom: 5px;
text-decoration: none;
font-weight: bold;
border-top-right-radius: 30px;
border-bottom-left-radius: 30px;
width: 100%;
}
.btn-center:hover {
background: #A1B62B;
background-image: linear-gradient(top bottom, #A1B62B, #A1B62B);
text-decoration: none;
color: #fff;
}
.btn-left {
background: #54EAF3;
font-family: Arial;
color: #ffffff;
font-size: 3rem;
padding-top: 35px;
padding-bottom: 35px;
margin-bottom: 5px;
text-decoration: none;
font-weight: bold;
border-top-right-radius: 30px;
border-bottom-left-radius: 30px;
width: 100%;
}
.btn-left:hover {
background: #A1B62B;
background-image: linear-gradient(top bottom, #A1B62B, #A1B62B);
text-decoration: none;
color: #fff;
}
.triumpo{
font-size: 1.5rem;
text-align: left;
font-weight: bolder;
line-height: 1.3;
padding-top: 1em;
color: #000;
}
.navbar .navbar-nav {
display: inline-block;
float: none;
vertical-align: top;
}
.navbar .navbar-collapse {
text-align: center;
}
.navbar{
padding: 0;
min-height: 0px;
border-radius: 0px;
/*margin-bottom: 20px; */
}
.navbar-default{
border-color: #7f7f7f;
}
.navbar .navbar-nav > li > a{
font-size: 16px;
font-weight: bold;
color: #fff;
text-transform: uppercase;
padding-right: 10px;
padding-top: 7px;
padding-bottom: 5px;
}
.navbar, .navbar.navbar-default{
background-color: #7f7f7f;
border-radius: 0px;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #fff;
}
@media (max-width: 767px)
.navbar-default .navbar-nav > li.dropdown-menu>li>a {
color: #fff;
font-size: 1em;
}
@media (min-width: 768px)
.navbar-default .navbar-nav > li.dropdown:hover > a,
.navbar-default .navbar-nav > li.dropdown:hover > a:hover,
{
background-color: rgb(152, 147, 147);
color: rgb(0, 0, 0);
}
@media (min-width: 768px)
li.dropdown:hover > .dropdown-menu {
display: block;
}
@media (min-width: 768px)
.navbar {
border-radius: 0px;
}
.dropdown-menu{
background-color: #7f7f7f;
}
.dropdown-menu > li > a {
display: block;
padding: 3px 8px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #fff;
white-space: nowrap;
font-size: 17px;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
text-decoration: none;
color: #000;
background-color: rgb(152, 147, 147);
}
.mailist{
font-size: 2rem;
}
.rehome{
font-size: 2rem;
}
.logoizi{
width: 30px;
border-radius: 5px;
}
.recuadro1{
background: #3477D4;
border: 1px solid #112233;
}
.coorina{
color: #3766a4;
}
#myFooter {
background-color: #0f1319;
color: white;
border-radius: 3px;
}
#myFooter .row {
margin-bottom: 1px;
}
#myFooter .info{
text-align: justify;
color: #afb0b1;
}
#myFooter ul {
list-style-type: none;
padding-left: 0;
line-height: 1.7;
}
#myFooter h5 {
font-size: 18px;
color: white;
font-weight: bold;
margin-top: 30px;
}
#myFooter .logo{
margin-top: 10px;
}
#myFooter .second-bar .logo a{
color:white;
/*font-size: 28px;
float: left;
font-weight: bold;
line-height: 68px;*/
margin: 0;
padding: 0;
}
#myFooter a {
color: #d2d1d1;
text-decoration: none;
text-transform: none;
font-size: 12px;
padding: 8px;
}
#myFooter a:hover,
#myFooter a:focus {
text-decoration: none;
color: white;
}
#myFooter .second-bar {
text-align: center;
background-color: #040608;
text-align: center;
display: inline;
}
#myFooter .second-bar a {
font-size: 22px;
color: #9fa3a9;
padding: 10px;
transition: 0.2s;
line-height: 68px;
}
#myFooter .reseright {
display: block;
font-size: 10px;
}
#myFooter .reseright a{
font-size: 11px;
color: #ffa;
}
@media screen and (max-width: 767px) {
#myFooter {
text-align: center;
}
#myFooter .info{
text-align: center;
}
}
.title{
font-size: 38px;
}
.wrapper > .header {
min-height: 350px;
}
.section{
padding: 5px 0;
}
.navbar.navbar-inverse {
background-color: #a1b62b;
position: sticky;
}
p.qiicha a{
font-size: 2rem;
color: #000;
}
.disclaim{
text-align: justify;
width: 90%;
}
.colto{
width: 100%;
height: 70%;
}
.row-eq-height {
height: 200px;
}
.fa-file-pdf{
font-size: 30px;
background-color: #ec4d4d;
color: #f9f3f3;
border-radius: 5px;
/* border: 0px solid aliceblue; */
}
.modal-dialog {
width: 85%;
margin: 20px auto;
}
.video-container {
position:relative;
padding-bottom:56.25%;
padding-top:30px;
height:0;
overflow:hidden;
}
.video-container iframe, .video-container object, .video-container embed {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}
.eqhei {
display: flex;
flex-wrap: wrap;
}
.eqhei > [class*='col-'] {
display: flex;
flex-direction: column;
}
.btn.bi1 {
font-size: 1.7rem;
}
.btn-link.bi2{
color: #3a2d2d;
font-weight: bold;
border-radius: 0;
padding-left: 2em;
}
.icon-home{
color: #A1B62B;
font-size: 3em;
margin: auto 1em ;
}
.btn-home-admin{
font-size: 2.5rem;
}
.usern{
color: darkslateblue;
font-size: 2.75rem;
font-weight: bold;
border: 1px solid #4c9cff;
}
.btn-link{
font-size: 2rem;
padding: 0;
color: #000;
}
.resmes{
background-color: #7F7F7F;
color: #000;
font-size: 2.5rem;
margin-bottom: 0.25em;
margin-top: 0.25em
padding: 0.2em;
}
@media (min-width: 768px)
.modal-content {
width: 400px;
}
.conte {
font-weight: bold;
font-size: 2rem;
display: inline-block;
margin-left: 1em;
}
.descpicon {
width: 45px;
margin-left: 1em;
}
.modal-title{
font-size: 3rem;
text-align: center;
}
.icon-reg{
color: #A1B62B;
font-size: 3em;
margin: auto 0.5em ;
} | public/css/styles.css | body{
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}
.header{
width: 100%;
height: auto;
}
.headercontent{
height: 23%;
margin: 0 auto;
background: #A1B62B;
}
.headercontent a img {
width: 8.5%;
margin: 0 auto;
display: block;
padding-top: 1.5%;
padding-bottom: 1.5%;
}
.headerimg1{
width: 100%;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 25px;
}
.btn-fee {
background: #484848;
font-family: Arial;
color: #ffffff;
font-size: 3rem;
padding-top: 35px;
padding-bottom: 35px;
margin-bottom: 5px;
text-decoration: none;
font-weight: bold;
border-radius: 20px;
width: 100%;
}
.btn-fee:hover {
background: #A1B62B;
background-image: linear-gradient(top bottom, #A1B62B, #A1B62B);
text-decoration: none;
color: #fff;
}
.btn-right {
background: #c7b299;
font-family: Arial;
color: #ffffff;
font-size: 3rem;
padding-top: 35px;
padding-bottom: 35px;
margin-bottom: 5px;
text-decoration: none;
font-weight: bold;
border-top-right-radius: 30px;
border-bottom-left-radius: 30px;
width: 100%;
}
.btn-right:hover {
background: #A1B62B;
background-image: linear-gradient(top bottom, #A1B62B, #A1B62B);
text-decoration: none;
color: #fff;
}
.btn-center {
background: #fbb03b;
font-family: Arial;
color: #ffffff;
font-size: 2.8rem;
padding-top: 35px;
padding-bottom: 35px;
margin-bottom: 5px;
text-decoration: none;
font-weight: bold;
border-top-right-radius: 30px;
border-bottom-left-radius: 30px;
width: 100%;
}
.btn-center:hover {
background: #A1B62B;
background-image: linear-gradient(top bottom, #A1B62B, #A1B62B);
text-decoration: none;
color: #fff;
}
.btn-left {
background: #54EAF3;
font-family: Arial;
color: #ffffff;
font-size: 3rem;
padding-top: 35px;
padding-bottom: 35px;
margin-bottom: 5px;
text-decoration: none;
font-weight: bold;
border-top-right-radius: 30px;
border-bottom-left-radius: 30px;
width: 100%;
}
.btn-left:hover {
background: #A1B62B;
background-image: linear-gradient(top bottom, #A1B62B, #A1B62B);
text-decoration: none;
color: #fff;
}
.triumpo{
font-size: 1.5rem;
text-align: left;
font-weight: bolder;
line-height: 1.3;
padding-top: 1em;
color: #000;
}
.navbar .navbar-nav {
display: inline-block;
float: none;
vertical-align: top;
}
.navbar .navbar-collapse {
text-align: center;
}
.navbar{
padding: 0;
min-height: 0px;
border-radius: 0px;
/*margin-bottom: 20px; */
}
.navbar-default{
border-color: #7f7f7f;
}
.navbar .navbar-nav > li > a{
font-size: 16px;
font-weight: bold;
color: #fff;
text-transform: uppercase;
padding-right: 10px;
padding-top: 7px;
padding-bottom: 5px;
}
.navbar, .navbar.navbar-default{
background-color: #7f7f7f;
border-radius: 0px;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #fff;
}
@media (max-width: 767px)
.navbar-default .navbar-nav > li.dropdown-menu>li>a {
color: #fff;
font-size: 1em;
}
@media (min-width: 768px)
.navbar-default .navbar-nav > li.dropdown:hover > a,
.navbar-default .navbar-nav > li.dropdown:hover > a:hover,
{
background-color: rgb(152, 147, 147);
color: rgb(0, 0, 0);
}
@media (min-width: 768px)
li.dropdown:hover > .dropdown-menu {
display: block;
}
@media (min-width: 768px)
.navbar {
border-radius: 0px;
}
.dropdown-menu{
background-color: #7f7f7f;
}
.dropdown-menu > li > a {
display: block;
padding: 3px 8px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #fff;
white-space: nowrap;
font-size: 17px;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
text-decoration: none;
color: #000;
background-color: rgb(152, 147, 147);
}
.mailist{
font-size: 2rem;
}
.rehome{
font-size: 2rem;
}
.logoizi{
width: 30px;
border-radius: 5px;
}
.recuadro1{
background: #3477D4;
border: 1px solid #112233;
}
.coorina{
color: #3766a4;
}
#myFooter {
background-color: #0f1319;
color: white;
border-radius: 3px;
}
#myFooter .row {
margin-bottom: 1px;
}
#myFooter .info{
text-align: justify;
color: #afb0b1;
}
#myFooter ul {
list-style-type: none;
padding-left: 0;
line-height: 1.7;
}
#myFooter h5 {
font-size: 18px;
color: white;
font-weight: bold;
margin-top: 30px;
}
#myFooter .logo{
margin-top: 10px;
}
#myFooter .second-bar .logo a{
color:white;
/*font-size: 28px;
float: left;
font-weight: bold;
line-height: 68px;*/
margin: 0;
padding: 0;
}
#myFooter a {
color: #d2d1d1;
text-decoration: none;
text-transform: none;
font-size: 12px;
padding: 8px;
}
#myFooter a:hover,
#myFooter a:focus {
text-decoration: none;
color: white;
}
#myFooter .second-bar {
text-align: center;
background-color: #040608;
text-align: center;
display: inline;
}
#myFooter .second-bar a {
font-size: 22px;
color: #9fa3a9;
padding: 10px;
transition: 0.2s;
line-height: 68px;
}
#myFooter .reseright {
display: block;
font-size: 10px;
}
#myFooter .reseright a{
font-size: 11px;
color: #ffa;
}
@media screen and (max-width: 767px) {
#myFooter {
text-align: center;
}
#myFooter .info{
text-align: center;
}
}
.title{
font-size: 38px;
}
.wrapper > .header {
min-height: 350px;
}
.section{
padding: 5px 0;
}
.navbar.navbar-inverse {
background-color: #a1b62b;
position: sticky;
}
p.qiicha a{
font-size: 2rem;
color: #000;
}
.disclaim{
text-align: justify;
width: 90%;
}
.colto{
width: 100%;
height: 70%;
}
.row-eq-height {
height: 200px;
}
.fa-file-pdf{
font-size: 30px;
background-color: #ec4d4d;
color: #f9f3f3;
border-radius: 5px;
/* border: 0px solid aliceblue; */
}
.modal-dialog {
width: 85%;
margin: 20px auto;
}
.video-container {
position:relative;
padding-bottom:56.25%;
padding-top:30px;
height:0;
overflow:hidden;
}
.video-container iframe, .video-container object, .video-container embed {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}
.eqhei {
display: flex;
flex-wrap: wrap;
}
.eqhei > [class*='col-'] {
display: flex;
flex-direction: column;
}
.btn.bi1 {
font-size: 1.7rem;
}
.btn-link.bi2{
color: #3a2d2d;
font-weight: bold;
border-radius: 0;
padding-left: 2em;
}
.icon-home{
color: #A1B62B;
font-size: 3em;
margin: auto 1em ;
}
.btn-home-admin{
font-size: 2.5rem;
}
.usern{
color: darkslateblue;
font-size: 2.75rem;
font-weight: bold;
border: 1px solid #4c9cff;
}
.btn-link{
font-size: 2rem;
padding: 0;
color: #000;
}
.resmes{
background-color: #7F7F7F;
color: #000;
font-size: 2.5rem;
margin-bottom: 0.25em;
margin-top: 0.25em
padding: 0.2em;
}
@media (min-width: 768px)
.modal-content {
width: 400px;
}
.conte {
font-weight: bold;
font-size: 2rem;
display: inline-block;
margin-left: 1em;
}
.descpicon {
width: 45px;
margin-left: 1em;
}
.modal-title{
font-size: 3rem;
text-align: center;
}
.icon-reg{
color: #A1B62B;
font-size: 3em;
margin: auto 0.5em ;
} | 0.324556 | 0.075619 |
body {
background:#fff;
color:LightSeaGreen;
padding:0px;
margin:0px;
border: 0px;
overflow:hidden;
font-family:georgia;
font-size: 0.9rem;
text-align:center;
}
a {
color: SlateBlue;
text-decoration: none;
}
a:hover {
color: SeaShell;
}
canvas {
pointer-events:none;
z-index:10;
}
bottomtext {
left: 0;
position: fixed;
text-align: center;
bottom: 0;
width: 100%;
}
.panel {
position: absolute;
width: 415px;
height: 100%;
right: 0px;
top: 0px;
background: LavenderBlush;
opacity: 0.8;
}
.wheelNav {
height: 310px;
width: 310px;
bottom: 0px;
right: 45px;
position: absolute;
}
.checkInInfoOnRedisStyle {
bottom: 380px;
right: 26px;
position: absolute;
color:SlateBlue;
}
.textSchemaStyle {
bottom: 360px;
right: 125px;
position: absolute;
color:LightSeaGreen;
}
.exampleStateHourWeekStyle {
bottom: 288px;
right: 225px;
position: absolute;
color: SlateBlue;
}
.exampleStateHourWeekTextStyle {
bottom: 288px;
right: 115px;
position: absolute;
color: SlateBlue;
}
.weekInfoText {
bottom: 340px;
right: 225px;
position: absolute;
color:SlateBlue;
}
.hourInfoText {
bottom: 340px;
right: 185px;
position: absolute;
color:SlateBlue;
}
.stateInfoText {
bottom: 340px;
right: 130px;
position: absolute;
color:SlateBlue;
}
.showDataOnMapButton {
bottom: 310px;
right: 130px;
position: absolute;
background-color:SlateBlue;
-moz-border-radius:22px;
-webkit-border-radius:22px;
border-radius:22px;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Trebuchet MS;
font-size:15px;
padding:3px 8px;
text-decoration:none;
}
.showDayInWeekCountStyleName {
right: 0%;
top: 1%;
color: LightSeaGreen;
position: relative;
}
.showDayInWeekCountStyleCategory {
right: 2%;
top: 3%;
color: SlateBlue;
position: relative;
}
.showDataOnMapButton:hover {
background-color:SlateBlue;
opacity: 0.5;
}
.showDataOnMapButton:active {
position: absolute;
}
.showWholeMapButton {
top: 50%;
right: 425px;
position: fixed;
-moz-box-shadow: 1px -2px 5px 3px LightSeaGreen;
-webkit-box-shadow: 1px -2px 5px 3px LightSeaGreen;
box-shadow: 1px -2px 5px 3px LightSeaGreen;
background-color:transparent;
-moz-border-radius:11px;
-webkit-border-radius:11px;
border-radius:11px;
display:inline-block;
cursor:pointer;
color:Turquoise;
font-family:Trebuchet MS;
font-size:15px;
padding:5px 7px;
text-decoration:none;
}
.showWholeMapButton:hover {
background-color:transparent;
}
.showWholeMapButton:active {
}
.backToStateButton {
top: 55%;
right: 425px;
position: fixed;
-moz-box-shadow: 1px -2px 5px 3px LightSeaGreen;
-webkit-box-shadow: 1px -2px 5px 3px LightSeaGreen;
box-shadow: 1px -2px 5px 3px LightSeaGreen;
background-color:transparent;
-moz-border-radius:11px;
-webkit-border-radius:11px;
border-radius:11px;
display:inline-block;
cursor:pointer;
color:Turquoise;
font-family:Trebuchet MS;
font-size:15px;
padding:5px 7px;
text-decoration:none;
}
.backToStateButton:hover {
background-color:transparent;
}
.backToStateButton:active {
}
.showXGBoostProbButton {
top: 2%;
right: 425px;
position: fixed;
-moz-box-shadow: 1px -2px 5px 3px LightSeaGreen;
-webkit-box-shadow: 1px -2px 5px 3px LightSeaGreen;
box-shadow: 1px -2px 5px 3px LightSeaGreen;
background-color:transparent;
-moz-border-radius:11px;
-webkit-border-radius:11px;
border-radius:11px;
display:inline-block;
cursor:pointer;
color:SandyBrown;
font-family:Trebuchet MS;
font-size:15px;
padding:5px 7px;
text-decoration:none;
}
.showXGBoostProbButton:hover {
background-color:transparent;
}
.showXGBoostProbButton:active {
}
.showRandomForestProbButton {
top: 7%;
right: 425px;
position: fixed;
-moz-box-shadow: 1px -2px 5px 3px LightSeaGreen;
-webkit-box-shadow: 1px -2px 5px 3px LightSeaGreen;
box-shadow: 1px -2px 5px 3px LightSeaGreen;
background-color:transparent;
-moz-border-radius:11px;
-webkit-border-radius:11px;
border-radius:11px;
display:inline-block;
cursor:pointer;
color:LightCoral;
font-family:Trebuchet MS;
font-size:15px;
padding:5px 7px;
text-decoration:none;
}
.showRandomForestProbButton:hover {
background-color:transparent;
}
.showRandomForestProbButton:active {
}
.showH2ODeepLearningProbButton {
top: 12%;
right: 425px;
position: fixed;
-moz-box-shadow: 1px -2px 5px 3px LightSeaGreen;
-webkit-box-shadow: 1px -2px 5px 3px LightSeaGreen;
box-shadow: 1px -2px 5px 3px LightSeaGreen;
background-color:transparent;
-moz-border-radius:11px;
-webkit-border-radius:11px;
border-radius:11px;
display:inline-block;
cursor:pointer;
color:MediumVioletRed;
font-family:Trebuchet MS;
font-size:15px;
padding:5px 7px;
text-decoration:none;
}
.showH2ODeepLearningProbButton:hover {
background-color:transparent;
}
.showH2ODeepLearningProbButton:active {
}
.withoutMLButton {
top: 17%;
right: 425px;
position: fixed;
-moz-box-shadow: 1px -2px 5px 3px LightSeaGreen;
-webkit-box-shadow: 1px -2px 5px 3px LightSeaGreen;
box-shadow: 1px -2px 5px 3px LightSeaGreen;
background-color:transparent;
-moz-border-radius:11px;
-webkit-border-radius:11px;
border-radius:11px;
display:inline-block;
cursor:pointer;
color:Turquoise;
font-family:Trebuchet MS;
font-size:15px;
padding:5px 7px;
text-decoration:none;
}
.withoutMLButton:hover {
background-color:transparent;
}
.withoutMLButton:active {
} | nodejs-webgl/public/css/style.css | body {
background:#fff;
color:LightSeaGreen;
padding:0px;
margin:0px;
border: 0px;
overflow:hidden;
font-family:georgia;
font-size: 0.9rem;
text-align:center;
}
a {
color: SlateBlue;
text-decoration: none;
}
a:hover {
color: SeaShell;
}
canvas {
pointer-events:none;
z-index:10;
}
bottomtext {
left: 0;
position: fixed;
text-align: center;
bottom: 0;
width: 100%;
}
.panel {
position: absolute;
width: 415px;
height: 100%;
right: 0px;
top: 0px;
background: LavenderBlush;
opacity: 0.8;
}
.wheelNav {
height: 310px;
width: 310px;
bottom: 0px;
right: 45px;
position: absolute;
}
.checkInInfoOnRedisStyle {
bottom: 380px;
right: 26px;
position: absolute;
color:SlateBlue;
}
.textSchemaStyle {
bottom: 360px;
right: 125px;
position: absolute;
color:LightSeaGreen;
}
.exampleStateHourWeekStyle {
bottom: 288px;
right: 225px;
position: absolute;
color: SlateBlue;
}
.exampleStateHourWeekTextStyle {
bottom: 288px;
right: 115px;
position: absolute;
color: SlateBlue;
}
.weekInfoText {
bottom: 340px;
right: 225px;
position: absolute;
color:SlateBlue;
}
.hourInfoText {
bottom: 340px;
right: 185px;
position: absolute;
color:SlateBlue;
}
.stateInfoText {
bottom: 340px;
right: 130px;
position: absolute;
color:SlateBlue;
}
.showDataOnMapButton {
bottom: 310px;
right: 130px;
position: absolute;
background-color:SlateBlue;
-moz-border-radius:22px;
-webkit-border-radius:22px;
border-radius:22px;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Trebuchet MS;
font-size:15px;
padding:3px 8px;
text-decoration:none;
}
.showDayInWeekCountStyleName {
right: 0%;
top: 1%;
color: LightSeaGreen;
position: relative;
}
.showDayInWeekCountStyleCategory {
right: 2%;
top: 3%;
color: SlateBlue;
position: relative;
}
.showDataOnMapButton:hover {
background-color:SlateBlue;
opacity: 0.5;
}
.showDataOnMapButton:active {
position: absolute;
}
.showWholeMapButton {
top: 50%;
right: 425px;
position: fixed;
-moz-box-shadow: 1px -2px 5px 3px LightSeaGreen;
-webkit-box-shadow: 1px -2px 5px 3px LightSeaGreen;
box-shadow: 1px -2px 5px 3px LightSeaGreen;
background-color:transparent;
-moz-border-radius:11px;
-webkit-border-radius:11px;
border-radius:11px;
display:inline-block;
cursor:pointer;
color:Turquoise;
font-family:Trebuchet MS;
font-size:15px;
padding:5px 7px;
text-decoration:none;
}
.showWholeMapButton:hover {
background-color:transparent;
}
.showWholeMapButton:active {
}
.backToStateButton {
top: 55%;
right: 425px;
position: fixed;
-moz-box-shadow: 1px -2px 5px 3px LightSeaGreen;
-webkit-box-shadow: 1px -2px 5px 3px LightSeaGreen;
box-shadow: 1px -2px 5px 3px LightSeaGreen;
background-color:transparent;
-moz-border-radius:11px;
-webkit-border-radius:11px;
border-radius:11px;
display:inline-block;
cursor:pointer;
color:Turquoise;
font-family:Trebuchet MS;
font-size:15px;
padding:5px 7px;
text-decoration:none;
}
.backToStateButton:hover {
background-color:transparent;
}
.backToStateButton:active {
}
.showXGBoostProbButton {
top: 2%;
right: 425px;
position: fixed;
-moz-box-shadow: 1px -2px 5px 3px LightSeaGreen;
-webkit-box-shadow: 1px -2px 5px 3px LightSeaGreen;
box-shadow: 1px -2px 5px 3px LightSeaGreen;
background-color:transparent;
-moz-border-radius:11px;
-webkit-border-radius:11px;
border-radius:11px;
display:inline-block;
cursor:pointer;
color:SandyBrown;
font-family:Trebuchet MS;
font-size:15px;
padding:5px 7px;
text-decoration:none;
}
.showXGBoostProbButton:hover {
background-color:transparent;
}
.showXGBoostProbButton:active {
}
.showRandomForestProbButton {
top: 7%;
right: 425px;
position: fixed;
-moz-box-shadow: 1px -2px 5px 3px LightSeaGreen;
-webkit-box-shadow: 1px -2px 5px 3px LightSeaGreen;
box-shadow: 1px -2px 5px 3px LightSeaGreen;
background-color:transparent;
-moz-border-radius:11px;
-webkit-border-radius:11px;
border-radius:11px;
display:inline-block;
cursor:pointer;
color:LightCoral;
font-family:Trebuchet MS;
font-size:15px;
padding:5px 7px;
text-decoration:none;
}
.showRandomForestProbButton:hover {
background-color:transparent;
}
.showRandomForestProbButton:active {
}
.showH2ODeepLearningProbButton {
top: 12%;
right: 425px;
position: fixed;
-moz-box-shadow: 1px -2px 5px 3px LightSeaGreen;
-webkit-box-shadow: 1px -2px 5px 3px LightSeaGreen;
box-shadow: 1px -2px 5px 3px LightSeaGreen;
background-color:transparent;
-moz-border-radius:11px;
-webkit-border-radius:11px;
border-radius:11px;
display:inline-block;
cursor:pointer;
color:MediumVioletRed;
font-family:Trebuchet MS;
font-size:15px;
padding:5px 7px;
text-decoration:none;
}
.showH2ODeepLearningProbButton:hover {
background-color:transparent;
}
.showH2ODeepLearningProbButton:active {
}
.withoutMLButton {
top: 17%;
right: 425px;
position: fixed;
-moz-box-shadow: 1px -2px 5px 3px LightSeaGreen;
-webkit-box-shadow: 1px -2px 5px 3px LightSeaGreen;
box-shadow: 1px -2px 5px 3px LightSeaGreen;
background-color:transparent;
-moz-border-radius:11px;
-webkit-border-radius:11px;
border-radius:11px;
display:inline-block;
cursor:pointer;
color:Turquoise;
font-family:Trebuchet MS;
font-size:15px;
padding:5px 7px;
text-decoration:none;
}
.withoutMLButton:hover {
background-color:transparent;
}
.withoutMLButton:active {
} | 0.407451 | 0.07971 |
.safe_a {
color:#019846 !important;
}
.unsafe_a {
color:#de0000 !important;
}
.little_safe {
color:#037dc9 !important;
}
.little_unsafe {
color:#ff7e0d !important;
}
.safe_a, .unsafe_a, .little_safe, .little_unsafe{
font-size: 16px;
}
.gj_a {
color:#037dc9 !important;
text-decoration:none !important;
}
.gj_a:hover {
color:#009ee7 !important;
}
.gj_left {
margin-left:30px;
*margin-left: 25px;
color:#037dc9 !important;
text-decoration:none !important;
}
.gj_detail_left {
margin-left:55px;
*margin-left: 50px;
color:#037dc9 !important;
text-decoration:none !important;
}
.gj_tri {
display: block;
width: 15px;
height: 7px;
left:21px;
top: -7px;
position: absolute;
z-index: 10;
}
.gj_body {
padding-left: 15px;
height: 83px;
/*background: url('../images/header_bg.png') no-repeat;*/
background: url('../images/header_bg.png') no-repeat;
}
.gj_statu {
padding-top: 17px;
}
.gj_bottom {
background: url('../images/gj_tips_bg.png') no-repeat;
margin-top: 0px;
padding-left: 15px;
padding-bottom: 10px;
/*border-left: 1px #659dc6 solid;
border-right: 1px #659dc6 solid;
border-bottom: 1px #659dc6 solid;*/
z-index: 2000;
}
.gj_star {
position: relative;
top: 2px;
margin-left: 2px;
margin-right: 1px;
z-index: 1000;
}
.gj_face{
position: relative;
top: 2px;
left: 10px;
}
.gj_icon{
position: relative;
top: 5px;
margin-right: 5px;
}
.safe_statu{
position:absolute;
/*display:none;*/
width:307px;
font-size:12px;
line-height: 21px;
z-index: 999;
background:#FFFFFF;
text-indent: 0;
}
.safe_statu a{
font-weight: 400;
font-style: normal;
}
.safe_statu_wording{
display:block;
float:left;
margin-left:5px;
margin-top:7px;width:180px;
}
.gj_ie6png {
position: relative;
behavior: expression((this.runtimeStyle.behavior="none")&&(this.pngSet?this.pngSet=true:(this.nodeName == "IMG" && this.src.toLowerCase().indexOf('.png')>-1?(this.runtimeStyle.backgroundImage = "none"../images/b5c1141f5c0c4431a311b8e0d2b1f174.gif
this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')",
this.src = "http://s.pc.qq.com/discuz/image/transparent.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''),
this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='crop')",
this.runtimeStyle.backgroundImage = "none")),this.pngSet=true));
}
#gj_operate { padding-top: 3px\9; *padding-top: 0px;}
#gj_show_wording { line-height: 17px;} | public/home/css/style.css | .safe_a {
color:#019846 !important;
}
.unsafe_a {
color:#de0000 !important;
}
.little_safe {
color:#037dc9 !important;
}
.little_unsafe {
color:#ff7e0d !important;
}
.safe_a, .unsafe_a, .little_safe, .little_unsafe{
font-size: 16px;
}
.gj_a {
color:#037dc9 !important;
text-decoration:none !important;
}
.gj_a:hover {
color:#009ee7 !important;
}
.gj_left {
margin-left:30px;
*margin-left: 25px;
color:#037dc9 !important;
text-decoration:none !important;
}
.gj_detail_left {
margin-left:55px;
*margin-left: 50px;
color:#037dc9 !important;
text-decoration:none !important;
}
.gj_tri {
display: block;
width: 15px;
height: 7px;
left:21px;
top: -7px;
position: absolute;
z-index: 10;
}
.gj_body {
padding-left: 15px;
height: 83px;
/*background: url('../images/header_bg.png') no-repeat;*/
background: url('../images/header_bg.png') no-repeat;
}
.gj_statu {
padding-top: 17px;
}
.gj_bottom {
background: url('../images/gj_tips_bg.png') no-repeat;
margin-top: 0px;
padding-left: 15px;
padding-bottom: 10px;
/*border-left: 1px #659dc6 solid;
border-right: 1px #659dc6 solid;
border-bottom: 1px #659dc6 solid;*/
z-index: 2000;
}
.gj_star {
position: relative;
top: 2px;
margin-left: 2px;
margin-right: 1px;
z-index: 1000;
}
.gj_face{
position: relative;
top: 2px;
left: 10px;
}
.gj_icon{
position: relative;
top: 5px;
margin-right: 5px;
}
.safe_statu{
position:absolute;
/*display:none;*/
width:307px;
font-size:12px;
line-height: 21px;
z-index: 999;
background:#FFFFFF;
text-indent: 0;
}
.safe_statu a{
font-weight: 400;
font-style: normal;
}
.safe_statu_wording{
display:block;
float:left;
margin-left:5px;
margin-top:7px;width:180px;
}
.gj_ie6png {
position: relative;
behavior: expression((this.runtimeStyle.behavior="none")&&(this.pngSet?this.pngSet=true:(this.nodeName == "IMG" && this.src.toLowerCase().indexOf('.png')>-1?(this.runtimeStyle.backgroundImage = "none"../images/b5c1141f5c0c4431a311b8e0d2b1f174.gif
this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')",
this.src = "http://s.pc.qq.com/discuz/image/transparent.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''),
this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='crop')",
this.runtimeStyle.backgroundImage = "none")),this.pngSet=true));
}
#gj_operate { padding-top: 3px\9; *padding-top: 0px;}
#gj_show_wording { line-height: 17px;} | 0.29798 | 0.168275 |
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
html {
font-size: 14px; }
html, body {
height: 100%; }
a {
text-decoration: none;
color: inherit;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s; }
a:hover {
text-decoration: none; }
.paymentHide {
display: none; }
.help-block {
background-color: darkred;
color: #ffffff; }
.wrapper {
height: 100%;
display: flex;
flex-direction: column; }
.wrap {
flex-grow: 1; }
.container {
max-width: 1440px; }
.breadcrumb__list {
padding-right: 0.5rem; }
.header {
color: #ffffff;
text-align: center; }
.header__top {
padding-top: 1rem;
padding-bottom: 1rem;
background-color: #000000; }
.header__flex2 {
display: flex;
justify-content: space-between;
align-items: center; }
.header__bottom {
position: relative;
background-color: #feed01; }
.header__item {
position: relative;
display: block;
margin-bottom: 0.5rem; }
.header__cart, .header__account {
padding: 1rem;
display: none;
color: #000000;
position: absolute;
top: 100%;
right: 0;
margin-top: 0.7rem;
width: 100%;
min-width: 280px;
z-index: 1;
background-color: #f3f3f3;
border: 1px solid #333333;
border-radius: 5px; }
.header__cart:after {
content: "";
width: 1rem;
height: 1rem;
background-color: #f3f3f3;
border-top: 1px solid #333333;
border-right: 1px solid #333333;
transform: rotate(-45deg);
position: absolute;
top: -0.5rem;
right: 50%;
margin-right: 4rem; }
.header__account:after {
content: "";
width: 1rem;
height: 1rem;
background-color: #f3f3f3;
border-top: 1px solid #333333;
border-right: 1px solid #333333;
transform: rotate(-45deg);
position: absolute;
top: -0.5rem;
right: 50%;
margin-right: -3rem; }
.header__contact {
margin-bottom: 1rem; }
.header__contact > .btn {
width: 100%;
margin-bottom: 0.5rem; }
.cart__item {
display: flex;
justify-content: space-between;
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid #333333; }
.cart__item img {
width: 100px;
margin-right: 1rem; }
.cart__item:not(:last-of-type) {
margin-bottom: 1rem; }
.product-bio {
display: flex;
align-items: center; }
.btn-reg__span {
font-size: 0; }
.btn-log__span {
font-size: 0; }
.logo__img {
height: 100px; }
.menu {
position: absolute;
top: 100%;
left: 0;
width: 100%;
background-color: #000000;
display: none;
list-style-type: none;
margin: 0; }
.menu__link {
display: block;
padding: 0.5rem 1rem;
font-size: 1.3rem;
font-weight: 700;
text-transform: uppercase;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s; }
.menu__link:hover {
color: #ffffff;
background-color: #000000; }
.search-wrap {
padding-top: 8rem;
padding-bottom: 8rem;
background: url("/web/img/search-bg.gif") center center no-repeat;
background-size: cover; }
.search {
text-align: center; }
.search__select, .search__input {
width: 100%;
padding: 0.5rem 1rem;
margin-bottom: 2rem; }
.products {
text-align: right; }
.products__button {
margin-right: 1rem; }
.product {
width: 100%;
margin-bottom: 2rem;
text-align: center; }
.product__box {
display: flex;
flex-direction: column;
overflow: hidden;
height: 100%;
background-color: #f3f3f3;
border: 1px solid #666666;
-webkit-border-radius: 0.5rem;
-moz-border-radius: 0.5rem;
border-radius: 0.5rem; }
.product__image {
position: relative;
padding-top: 55.5555555556%;
overflow: hidden; }
.product__img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%; }
.product__name, .product__manufacturer, .product__price {
padding: 0.5rem 1rem; }
.product__buttons {
padding-bottom: 1rem; }
.product__name {
flex-grow: 1; }
.product-view__desc {
padding: 1rem;
text-align: left;
background-color: #666666;
color: #ffffff; }
.product-view__left {
margin-bottom: 2rem; }
.product-view__basket {
margin-bottom: 1rem;
padding: 1rem 0;
background-color: #666666;
color: #ffffff; }
.product-view__row {
display: flex;
justify-content: space-between;
align-items: center; }
.product-view__row:nth-child(2n+1) {
background-color: #666666;
color: #ffffff; }
.product-view__col {
padding: 0.5rem 1rem; }
.product-view__input {
width: 50px;
text-align: center; }
.funfacts {
background-size: cover;
background: url("/web/img/funfact-bg.jpg") center center;
color: #fff; }
.funfact {
background-color: rgba(0, 0, 0, 0.6);
padding: 2rem 3rem;
text-align: center; }
.funfact__icon {
color: #ffd000;
font-size: 3rem; }
.funfact__content {
font-size: 3rem;
font-weight: 700; }
.funfact__content h4 {
color: #eaeaea;
font-size: 1rem;
font-weight: 600;
text-transform: uppercase; }
.about-index__image img {
width: 100%; }
.article {
margin-bottom: 2rem; }
.article__thumb img {
width: 100%; }
.article__body {
position: relative;
padding-top: 4rem; }
.article__date {
position: absolute;
top: -1.5rem;
left: 50%;
margin-left: -1.5rem;
width: 3rem;
height: 4rem;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
background-color: #feed01;
font-weight: bold;
-webkit-border-radius: 0.5rem;
-moz-border-radius: 0.5rem;
border-radius: 0.5rem; }
.article-view {
overflow: hidden; }
.article-view__img {
width: 100%;
margin-bottom: 1rem; }
.order {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: 0.2rem;
border: 1px solid #999999; }
.order:nth-child(2n+1) {
background-color: #999999; }
.order__col {
padding: 0.2rem; }
.order__col_header {
font-weight: bold; }
.order__col_1 {
width: 10%; }
.order__col_2 {
width: 30%; }
.order__col_3 {
width: 50%; }
.order__span {
display: none; }
.cart-one {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: 0.2rem;
border: 1px solid #999999; }
.cart-one:nth-child(2n+1) {
background-color: #999999; }
.cart-one__col {
padding: 0.2rem; }
.cart-one__col_header {
font-weight: bold; }
.cart-one__col_1 {
width: 100%; }
.cart-one__col_2 {
width: 100%; }
.cart-one__col_3 {
width: 33.33%; }
.cart-one__col_4 {
width: 33.33%;
text-align: center; }
.cart-one__col_right {
text-align: right; }
.cart-one__img {
width: 100%; }
.cart-one__span {
display: none; }
.details {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 10000;
display: flex;
align-items: center; }
.details__box {
position: relative;
padding: 1rem;
background-color: #ffffff; }
.details__overflow {
max-height: 60vh;
overflow: hidden;
overflow-y: auto; }
.details__close {
position: absolute;
top: 1rem;
right: 1rem; }
.details__contacts {
display: flex;
justify-content: space-between;
flex-wrap: wrap; }
.details__contact {
margin-bottom: 1rem;
width: 49%;
padding: 0.5rem 1rem; }
.details__contact:nth-child(2n+1) {
background-color: #f3f3f3; }
.footer {
min-height: 100px; }
.footer__top {
color: #fff;
background: #1e2228;
padding-top: 2rem;
padding-bottom: 2rem; }
.footer__bottom {
padding-top: 1rem;
padding-bottom: 0.5rem;
text-align: center;
color: #fff;
background: #000; }
.about__img {
width: 100%; }
.contact {
text-align: center; }
.pagination {
width: 100%;
display: flex;
justify-content: center; }
.pagination > li {
margin-right: 0.3rem; }
.pagination > li > a,
.pagination .disabled {
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
cursor: pointer;
border: 1px solid #333333;
-webkit-border-radius: 0.3rem;
-moz-border-radius: 0.3rem;
border-radius: 0.3rem;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s; }
.pagination > li > a:hover,
.pagination .disabled:hover {
background-color: #333333;
color: #FFFFFF; }
.pagination > li.active {
background-color: #333333;
color: #ffffff; }
.pagination > li.next {
margin-right: 0; }
.visible {
display: block; }
.novisible {
display: none; }
.padding {
padding-top: 4rem;
padding-bottom: 4rem; }
.title {
padding: 20px 0;
text-align: center;
text-transform: uppercase; }
.title__line {
position: relative; }
.title__line::after {
background-color: #333;
content: "";
height: 2px;
left: -60px;
position: absolute;
top: 10px;
width: 50px; }
.title__line::before {
background-color: #333;
content: "";
height: 2px;
position: absolute;
right: -60px;
top: 10px;
width: 50px; }
.overlay {
position: relative;
z-index: 1; }
.overlay:after {
background-color: rgba(0, 0, 0, 0.8);
content: "";
left: 0;
position: absolute;
top: 0;
height: 100%;
width: 100%;
z-index: -1; }
@media (min-width: 576px) {
.btn-reg__span {
font-size: 1rem; }
.btn-log__span {
font-size: 1rem; } }
@media (min-width: 768px) {
.details__contact {
width: 24%;
padding: 0.5rem 1rem; }
.search {
text-align: center;
display: flex;
justify-content: center;
align-items: center; }
.search__select, .search__input {
width: 30%;
padding: 0.5rem 1rem;
margin-right: 1rem;
margin-bottom: 0; }
.search__button {
min-width: 100px; }
.products__flex {
display: flex;
justify-content: flex-start;
align-items: stretch;
flex-wrap: wrap; }
.product {
width: 50%;
padding-left: 0.5rem;
padding-right: 0.5rem;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s; }
.product:hover {
-webkit-transform: scale(1.07);
-moz-transform: scale(1.07);
-ms-transform: scale(1.07);
-o-transform: scale(1.07);
transform: scale(1.07); }
.product-view__right {
display: flex;
justify-content: space-between; }
.product-view__basket {
width: 48%;
order: 1; }
.product-view__harac {
width: 48%; }
.funfacts__flex {
display: flex;
justify-content: space-around; }
.funfact:not(:last-of-type) {
margin-right: 1rem; }
.about-index__flex {
display: flex;
justify-content: space-between;
align-items: center; }
.about-index__text {
width: 48%; }
.about-index__image {
width: 48%; }
.article {
display: flex;
justify-content: space-between;
align-items: stretch;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s; }
.article:hover {
-webkit-transform: scale(1.02);
-moz-transform: scale(1.02);
-ms-transform: scale(1.02);
-o-transform: scale(1.02);
transform: scale(1.02); }
.article:hover .article__thumb {
filter: grayscale(100%); }
.article__thumb {
width: 50%;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s; }
.article__body {
width: 50%;
padding-left: 3rem;
padding-right: 3rem;
background-color: #f3f3f3; }
.article__date {
position: absolute;
top: 50%;
left: 0;
margin-top: -1.5rem; }
.article:nth-child(2n) .article__body {
order: -1; }
.article:nth-child(2n) .article__date {
position: absolute;
top: 50%;
left: 100%;
margin-top: -1.5rem; }
.article-view__img {
float: left;
margin: 0 1rem 1rem 0;
width: 40%; }
.contact__flex {
display: flex;
justify-content: space-between; }
.contact__inform {
width: 49%; }
.contact__form {
width: 49%; }
.order {
padding: 0.5rem;
flex-wrap: nowrap; }
.order__col {
padding: 0.5rem; }
.order__col_1 {
width: 10%; }
.order__col_2 {
width: 25%; }
.order__col_3 {
width: 15%; }
.order__col_4 {
width: 25%;
text-align: right; }
.order__span {
display: inline; }
.cart-one {
padding: 0.5rem;
flex-wrap: nowrap; }
.cart-one__col {
padding: 0.5rem; }
.cart-one__col_1 {
width: 20%; }
.cart-one__col_2 {
width: 55%; }
.cart-one__col_3 {
width: 10%;
text-align: center; }
.cart-one__col_4 {
width: 5%;
text-align: right; }
.cart-one__span {
display: inline; }
.cart-ones__h2 {
margin-top: 1rem;
margin-bottom: 0.5rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid #333333; }
.cart-ones__btn {
margin-top: 1rem; }
.footer__flex {
display: flex;
justify-content: space-between; }
.footer__about {
width: 48%; }
.footer__contact {
width: 48%; } }
@media (min-width: 992px) {
.header__flex1, .header__flex2 {
display: flex;
justify-content: space-between;
align-items: center; }
.header__nav {
flex-grow: 1; }
.header__item {
margin-bottom: 0; }
.header__cart {
min-width: 320px; }
.header__cart:after {
right: 11rem;
margin-right: 0; }
.header__account:after {
right: 2rem;
margin-right: 0; }
.btn-menu {
display: none; }
.menu {
display: flex;
justify-content: flex-end;
align-items: center;
position: relative;
width: 100%;
background-color: transparent; }
.menu__list {
padding-left: 2rem; }
.menu__link {
color: #000000; }
.product {
width: 33.3333333333%; }
.product-view {
display: flex;
justify-content: space-between; }
.product-view__left {
width: 40%; }
.product-view__right {
padding-left: 2rem;
width: 60%; }
.funfact {
display: flex;
justify-content: space-between;
align-items: center; }
.funfact__content {
padding-left: 1rem; } }
@media (min-width: 1200px) {
html {
font-size: 18px; }
.product {
width: 25%; } }
/*# sourceMappingURL=style.css.map */ | web/css/style.css | * {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
html {
font-size: 14px; }
html, body {
height: 100%; }
a {
text-decoration: none;
color: inherit;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s; }
a:hover {
text-decoration: none; }
.paymentHide {
display: none; }
.help-block {
background-color: darkred;
color: #ffffff; }
.wrapper {
height: 100%;
display: flex;
flex-direction: column; }
.wrap {
flex-grow: 1; }
.container {
max-width: 1440px; }
.breadcrumb__list {
padding-right: 0.5rem; }
.header {
color: #ffffff;
text-align: center; }
.header__top {
padding-top: 1rem;
padding-bottom: 1rem;
background-color: #000000; }
.header__flex2 {
display: flex;
justify-content: space-between;
align-items: center; }
.header__bottom {
position: relative;
background-color: #feed01; }
.header__item {
position: relative;
display: block;
margin-bottom: 0.5rem; }
.header__cart, .header__account {
padding: 1rem;
display: none;
color: #000000;
position: absolute;
top: 100%;
right: 0;
margin-top: 0.7rem;
width: 100%;
min-width: 280px;
z-index: 1;
background-color: #f3f3f3;
border: 1px solid #333333;
border-radius: 5px; }
.header__cart:after {
content: "";
width: 1rem;
height: 1rem;
background-color: #f3f3f3;
border-top: 1px solid #333333;
border-right: 1px solid #333333;
transform: rotate(-45deg);
position: absolute;
top: -0.5rem;
right: 50%;
margin-right: 4rem; }
.header__account:after {
content: "";
width: 1rem;
height: 1rem;
background-color: #f3f3f3;
border-top: 1px solid #333333;
border-right: 1px solid #333333;
transform: rotate(-45deg);
position: absolute;
top: -0.5rem;
right: 50%;
margin-right: -3rem; }
.header__contact {
margin-bottom: 1rem; }
.header__contact > .btn {
width: 100%;
margin-bottom: 0.5rem; }
.cart__item {
display: flex;
justify-content: space-between;
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid #333333; }
.cart__item img {
width: 100px;
margin-right: 1rem; }
.cart__item:not(:last-of-type) {
margin-bottom: 1rem; }
.product-bio {
display: flex;
align-items: center; }
.btn-reg__span {
font-size: 0; }
.btn-log__span {
font-size: 0; }
.logo__img {
height: 100px; }
.menu {
position: absolute;
top: 100%;
left: 0;
width: 100%;
background-color: #000000;
display: none;
list-style-type: none;
margin: 0; }
.menu__link {
display: block;
padding: 0.5rem 1rem;
font-size: 1.3rem;
font-weight: 700;
text-transform: uppercase;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s; }
.menu__link:hover {
color: #ffffff;
background-color: #000000; }
.search-wrap {
padding-top: 8rem;
padding-bottom: 8rem;
background: url("/web/img/search-bg.gif") center center no-repeat;
background-size: cover; }
.search {
text-align: center; }
.search__select, .search__input {
width: 100%;
padding: 0.5rem 1rem;
margin-bottom: 2rem; }
.products {
text-align: right; }
.products__button {
margin-right: 1rem; }
.product {
width: 100%;
margin-bottom: 2rem;
text-align: center; }
.product__box {
display: flex;
flex-direction: column;
overflow: hidden;
height: 100%;
background-color: #f3f3f3;
border: 1px solid #666666;
-webkit-border-radius: 0.5rem;
-moz-border-radius: 0.5rem;
border-radius: 0.5rem; }
.product__image {
position: relative;
padding-top: 55.5555555556%;
overflow: hidden; }
.product__img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%; }
.product__name, .product__manufacturer, .product__price {
padding: 0.5rem 1rem; }
.product__buttons {
padding-bottom: 1rem; }
.product__name {
flex-grow: 1; }
.product-view__desc {
padding: 1rem;
text-align: left;
background-color: #666666;
color: #ffffff; }
.product-view__left {
margin-bottom: 2rem; }
.product-view__basket {
margin-bottom: 1rem;
padding: 1rem 0;
background-color: #666666;
color: #ffffff; }
.product-view__row {
display: flex;
justify-content: space-between;
align-items: center; }
.product-view__row:nth-child(2n+1) {
background-color: #666666;
color: #ffffff; }
.product-view__col {
padding: 0.5rem 1rem; }
.product-view__input {
width: 50px;
text-align: center; }
.funfacts {
background-size: cover;
background: url("/web/img/funfact-bg.jpg") center center;
color: #fff; }
.funfact {
background-color: rgba(0, 0, 0, 0.6);
padding: 2rem 3rem;
text-align: center; }
.funfact__icon {
color: #ffd000;
font-size: 3rem; }
.funfact__content {
font-size: 3rem;
font-weight: 700; }
.funfact__content h4 {
color: #eaeaea;
font-size: 1rem;
font-weight: 600;
text-transform: uppercase; }
.about-index__image img {
width: 100%; }
.article {
margin-bottom: 2rem; }
.article__thumb img {
width: 100%; }
.article__body {
position: relative;
padding-top: 4rem; }
.article__date {
position: absolute;
top: -1.5rem;
left: 50%;
margin-left: -1.5rem;
width: 3rem;
height: 4rem;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
background-color: #feed01;
font-weight: bold;
-webkit-border-radius: 0.5rem;
-moz-border-radius: 0.5rem;
border-radius: 0.5rem; }
.article-view {
overflow: hidden; }
.article-view__img {
width: 100%;
margin-bottom: 1rem; }
.order {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: 0.2rem;
border: 1px solid #999999; }
.order:nth-child(2n+1) {
background-color: #999999; }
.order__col {
padding: 0.2rem; }
.order__col_header {
font-weight: bold; }
.order__col_1 {
width: 10%; }
.order__col_2 {
width: 30%; }
.order__col_3 {
width: 50%; }
.order__span {
display: none; }
.cart-one {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: 0.2rem;
border: 1px solid #999999; }
.cart-one:nth-child(2n+1) {
background-color: #999999; }
.cart-one__col {
padding: 0.2rem; }
.cart-one__col_header {
font-weight: bold; }
.cart-one__col_1 {
width: 100%; }
.cart-one__col_2 {
width: 100%; }
.cart-one__col_3 {
width: 33.33%; }
.cart-one__col_4 {
width: 33.33%;
text-align: center; }
.cart-one__col_right {
text-align: right; }
.cart-one__img {
width: 100%; }
.cart-one__span {
display: none; }
.details {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 10000;
display: flex;
align-items: center; }
.details__box {
position: relative;
padding: 1rem;
background-color: #ffffff; }
.details__overflow {
max-height: 60vh;
overflow: hidden;
overflow-y: auto; }
.details__close {
position: absolute;
top: 1rem;
right: 1rem; }
.details__contacts {
display: flex;
justify-content: space-between;
flex-wrap: wrap; }
.details__contact {
margin-bottom: 1rem;
width: 49%;
padding: 0.5rem 1rem; }
.details__contact:nth-child(2n+1) {
background-color: #f3f3f3; }
.footer {
min-height: 100px; }
.footer__top {
color: #fff;
background: #1e2228;
padding-top: 2rem;
padding-bottom: 2rem; }
.footer__bottom {
padding-top: 1rem;
padding-bottom: 0.5rem;
text-align: center;
color: #fff;
background: #000; }
.about__img {
width: 100%; }
.contact {
text-align: center; }
.pagination {
width: 100%;
display: flex;
justify-content: center; }
.pagination > li {
margin-right: 0.3rem; }
.pagination > li > a,
.pagination .disabled {
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
cursor: pointer;
border: 1px solid #333333;
-webkit-border-radius: 0.3rem;
-moz-border-radius: 0.3rem;
border-radius: 0.3rem;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s; }
.pagination > li > a:hover,
.pagination .disabled:hover {
background-color: #333333;
color: #FFFFFF; }
.pagination > li.active {
background-color: #333333;
color: #ffffff; }
.pagination > li.next {
margin-right: 0; }
.visible {
display: block; }
.novisible {
display: none; }
.padding {
padding-top: 4rem;
padding-bottom: 4rem; }
.title {
padding: 20px 0;
text-align: center;
text-transform: uppercase; }
.title__line {
position: relative; }
.title__line::after {
background-color: #333;
content: "";
height: 2px;
left: -60px;
position: absolute;
top: 10px;
width: 50px; }
.title__line::before {
background-color: #333;
content: "";
height: 2px;
position: absolute;
right: -60px;
top: 10px;
width: 50px; }
.overlay {
position: relative;
z-index: 1; }
.overlay:after {
background-color: rgba(0, 0, 0, 0.8);
content: "";
left: 0;
position: absolute;
top: 0;
height: 100%;
width: 100%;
z-index: -1; }
@media (min-width: 576px) {
.btn-reg__span {
font-size: 1rem; }
.btn-log__span {
font-size: 1rem; } }
@media (min-width: 768px) {
.details__contact {
width: 24%;
padding: 0.5rem 1rem; }
.search {
text-align: center;
display: flex;
justify-content: center;
align-items: center; }
.search__select, .search__input {
width: 30%;
padding: 0.5rem 1rem;
margin-right: 1rem;
margin-bottom: 0; }
.search__button {
min-width: 100px; }
.products__flex {
display: flex;
justify-content: flex-start;
align-items: stretch;
flex-wrap: wrap; }
.product {
width: 50%;
padding-left: 0.5rem;
padding-right: 0.5rem;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s; }
.product:hover {
-webkit-transform: scale(1.07);
-moz-transform: scale(1.07);
-ms-transform: scale(1.07);
-o-transform: scale(1.07);
transform: scale(1.07); }
.product-view__right {
display: flex;
justify-content: space-between; }
.product-view__basket {
width: 48%;
order: 1; }
.product-view__harac {
width: 48%; }
.funfacts__flex {
display: flex;
justify-content: space-around; }
.funfact:not(:last-of-type) {
margin-right: 1rem; }
.about-index__flex {
display: flex;
justify-content: space-between;
align-items: center; }
.about-index__text {
width: 48%; }
.about-index__image {
width: 48%; }
.article {
display: flex;
justify-content: space-between;
align-items: stretch;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s; }
.article:hover {
-webkit-transform: scale(1.02);
-moz-transform: scale(1.02);
-ms-transform: scale(1.02);
-o-transform: scale(1.02);
transform: scale(1.02); }
.article:hover .article__thumb {
filter: grayscale(100%); }
.article__thumb {
width: 50%;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s; }
.article__body {
width: 50%;
padding-left: 3rem;
padding-right: 3rem;
background-color: #f3f3f3; }
.article__date {
position: absolute;
top: 50%;
left: 0;
margin-top: -1.5rem; }
.article:nth-child(2n) .article__body {
order: -1; }
.article:nth-child(2n) .article__date {
position: absolute;
top: 50%;
left: 100%;
margin-top: -1.5rem; }
.article-view__img {
float: left;
margin: 0 1rem 1rem 0;
width: 40%; }
.contact__flex {
display: flex;
justify-content: space-between; }
.contact__inform {
width: 49%; }
.contact__form {
width: 49%; }
.order {
padding: 0.5rem;
flex-wrap: nowrap; }
.order__col {
padding: 0.5rem; }
.order__col_1 {
width: 10%; }
.order__col_2 {
width: 25%; }
.order__col_3 {
width: 15%; }
.order__col_4 {
width: 25%;
text-align: right; }
.order__span {
display: inline; }
.cart-one {
padding: 0.5rem;
flex-wrap: nowrap; }
.cart-one__col {
padding: 0.5rem; }
.cart-one__col_1 {
width: 20%; }
.cart-one__col_2 {
width: 55%; }
.cart-one__col_3 {
width: 10%;
text-align: center; }
.cart-one__col_4 {
width: 5%;
text-align: right; }
.cart-one__span {
display: inline; }
.cart-ones__h2 {
margin-top: 1rem;
margin-bottom: 0.5rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid #333333; }
.cart-ones__btn {
margin-top: 1rem; }
.footer__flex {
display: flex;
justify-content: space-between; }
.footer__about {
width: 48%; }
.footer__contact {
width: 48%; } }
@media (min-width: 992px) {
.header__flex1, .header__flex2 {
display: flex;
justify-content: space-between;
align-items: center; }
.header__nav {
flex-grow: 1; }
.header__item {
margin-bottom: 0; }
.header__cart {
min-width: 320px; }
.header__cart:after {
right: 11rem;
margin-right: 0; }
.header__account:after {
right: 2rem;
margin-right: 0; }
.btn-menu {
display: none; }
.menu {
display: flex;
justify-content: flex-end;
align-items: center;
position: relative;
width: 100%;
background-color: transparent; }
.menu__list {
padding-left: 2rem; }
.menu__link {
color: #000000; }
.product {
width: 33.3333333333%; }
.product-view {
display: flex;
justify-content: space-between; }
.product-view__left {
width: 40%; }
.product-view__right {
padding-left: 2rem;
width: 60%; }
.funfact {
display: flex;
justify-content: space-between;
align-items: center; }
.funfact__content {
padding-left: 1rem; } }
@media (min-width: 1200px) {
html {
font-size: 18px; }
.product {
width: 25%; } }
/*# sourceMappingURL=style.css.map */ | 0.420957 | 0.064477 |
.container {
max-width: 780px;
width: 100%;
margin: auto;
}
/* HEADER AND FOOTER STYLE */
body {
background: #f7f7f7;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Arial, sans-serif;
}
p {
font-family: 'Georgia,Cambria,"Times New Roman",Times,serif';
}
.row {
display: flex;
}
.row > * {
}
header, footer {
padding-left: 2rem;
padding-top: 1rem;
padding-bottom: 1rem;
background-color: #E96B5F;
color: #f3f3f3;
}
header {
display: flex;
box-orient: horizontal;
flex-direction: row;
box-align: center;
align-items: center;
justify-content: space-between;
overflow: hidden;
box-flex: 1;
flex-grow: 1;
flex-shrink: 1;
}
header a {
color: #f3f3f3;
padding-right: 1rem;
}
header .title {
font-size: 1.2rem;
font-weight: bold;
padding-right: 1em;
font-family: "Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Arial,sans-serif;
width: 280px;
display: flex;
}
header .sub-title {
display: inline-block;
font-style: italic;
}
/*GENERAL LAYOUT STYLE */
.app-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin: 0;
padding: 1rem;
width: 100%;
}
.characters {
padding-right: 2%;
width: 75%;
}
.classes {
text-transform: capitalize;
}
/* character LIST STYLE */
.character-list {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: flex-start;
}
.character-list > * {
width: 232px;
padding: 1rem;
flex-direction: column;
}
.character {
padding: 1rem;
-webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
-webkit-border-radius: 2px;
border-radius: 2px;
display: block;
position: relative;
overflow: hidden;
text-align: start;
background-color: #fff;
margin-bottom: 1em;
}
.character .name {
font-weight: bold;
font-size: 1.2rem;
}
.character .type {
text-align: center;
color: #f3f3f3;
}
.character .stats {
display: flex;
flex-wrap: wrap;
}
.character .stats .stat-block {
background-color: #f3f3f3;
width: 50%;
box-sizing: border-box;
}
.character-attributes{
justify-self: flex-start;
}
.icon {
display: inline-block;
width: 1em;
height: 1em;
stroke-width: 0;
stroke: currentColor;
fill: currentColor;
}
.icon-bin path{
fill: #ff171d;
}
.btn-delete {
background-color: transparent;
border-style: hidden;
}
.btn-save{
background-color: transparent;
border-style: solid;
border-width: thin;
}
.character .classes {
font-size: 14px;
text-transform: capitalize;
}
.logout {
align-self: flex-end;
}
/* LOADER STYLE */
.loader {
margin: 3rem auto;
border: 8px solid #f3f3f3; /* Light grey */
border-top: 16px solid #E96B5F; /* Blue */
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
.hidden{
display: none;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
} | dist/styles/main.css | .container {
max-width: 780px;
width: 100%;
margin: auto;
}
/* HEADER AND FOOTER STYLE */
body {
background: #f7f7f7;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Arial, sans-serif;
}
p {
font-family: 'Georgia,Cambria,"Times New Roman",Times,serif';
}
.row {
display: flex;
}
.row > * {
}
header, footer {
padding-left: 2rem;
padding-top: 1rem;
padding-bottom: 1rem;
background-color: #E96B5F;
color: #f3f3f3;
}
header {
display: flex;
box-orient: horizontal;
flex-direction: row;
box-align: center;
align-items: center;
justify-content: space-between;
overflow: hidden;
box-flex: 1;
flex-grow: 1;
flex-shrink: 1;
}
header a {
color: #f3f3f3;
padding-right: 1rem;
}
header .title {
font-size: 1.2rem;
font-weight: bold;
padding-right: 1em;
font-family: "Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Arial,sans-serif;
width: 280px;
display: flex;
}
header .sub-title {
display: inline-block;
font-style: italic;
}
/*GENERAL LAYOUT STYLE */
.app-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin: 0;
padding: 1rem;
width: 100%;
}
.characters {
padding-right: 2%;
width: 75%;
}
.classes {
text-transform: capitalize;
}
/* character LIST STYLE */
.character-list {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: flex-start;
}
.character-list > * {
width: 232px;
padding: 1rem;
flex-direction: column;
}
.character {
padding: 1rem;
-webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
-webkit-border-radius: 2px;
border-radius: 2px;
display: block;
position: relative;
overflow: hidden;
text-align: start;
background-color: #fff;
margin-bottom: 1em;
}
.character .name {
font-weight: bold;
font-size: 1.2rem;
}
.character .type {
text-align: center;
color: #f3f3f3;
}
.character .stats {
display: flex;
flex-wrap: wrap;
}
.character .stats .stat-block {
background-color: #f3f3f3;
width: 50%;
box-sizing: border-box;
}
.character-attributes{
justify-self: flex-start;
}
.icon {
display: inline-block;
width: 1em;
height: 1em;
stroke-width: 0;
stroke: currentColor;
fill: currentColor;
}
.icon-bin path{
fill: #ff171d;
}
.btn-delete {
background-color: transparent;
border-style: hidden;
}
.btn-save{
background-color: transparent;
border-style: solid;
border-width: thin;
}
.character .classes {
font-size: 14px;
text-transform: capitalize;
}
.logout {
align-self: flex-end;
}
/* LOADER STYLE */
.loader {
margin: 3rem auto;
border: 8px solid #f3f3f3; /* Light grey */
border-top: 16px solid #E96B5F; /* Blue */
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
.hidden{
display: none;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
} | 0.485112 | 0.072145 |
body{
background-color: #ebf0f4;
}
.flight, .flight_hotels, .hotels, .booking{
padding: 0px 20px;
}
#flight .searchbar-wrapper[data-v-64f9c831] {
padding: 80px 0px;
}
#searchbar[data-v-2de54354] {
position: relative;
background: linear-gradient(60deg,#09c6f9,#09c6f9);
-webkit-box-shadow: 0 20px 100px 10px rgb(24 33 77 / 5%);
box-shadow: 0 20px 100px 10px rgb(24 33 77 / 5%);
border-radius: 20px;
padding: 0px 0px 20px;
}
#searchbar .search-type[data-v-2de54354] {
background: linear-gradient(
60deg,#c81f70,#b91372);
-webkit-box-shadow: 0 4px 10px rgb(0 117 255 / 9%);
box-shadow: 0 4px 10px rgb(0 117 255 / 9%);
border-top-left-radius: 20px;
border-top-right-radius: 20px;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
width: auto;
-webkit-transform: translate(0%,calc(-32% - 0px));
transform: translate(0%,calc(-32% - 0px));
}
#searchbar .search-type[data-v-2de54354], #searchbar .search-type span.search-type-tab[data-v-2de54354] {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#searchbar .search-type span.search-type-tab[data-v-2de54354] {
padding: 20px;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
cursor: pointer;
border-bottom: 2px solid transparent;
font-size: 14px;
line-height: 26px;
font-weight: 600;
color: #fff;
flex: 1;
background: linear-gradient( 60deg,#c81f70,#b91372);
}
#searchbar .search-type span.search-type-tab[data-v-2de54354]:first-child{
border-top-left-radius: 20px;
}
#searchbar .search-type span.search-type-tab[data-v-2de54354]:last-child{
border-top-right-radius: 20px;
}
#searchbar .search-type span.search-type-tab.active[data-v-2de54354] {
color: #fff;
background: linear-gradient(60deg,#009ffd,#2a2a72);
}
#searchbar .search-type span.search-type-tab.active[data-v-2de54354]:first-child{
border-top-left-radius: 20px;
}
#searchbar .search-type span.search-type-tab.active[data-v-2de54354]:last-child{
border-top-right-radius: 20px;
}
#searchbar .search-type span.search-type-tab img[data-v-2de54354] {
-webkit-filter: grayscale(1);
filter: grayscale(1);
max-width: 24px;
max-height: 18px;
vertical-align: middle;
margin-right: 8px;
}
#searchbar .search-type span.search-type-tab.active img[data-v-2de54354] {
-webkit-filter: none;
filter: none;
}
label {
position: absolute;
font-size: 12px;
padding: 0 5px;
color: #fff;
transition: all 200ms;
text-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.reference_eticket label[for="rerefer_ticket_no"] {
margin: -18px 0px;
}
.reference_eticket label[for="last_name"] {
margin: -18px 0px;
}
.client-info:focus {
outline: none !important;
box-shadow: 0 0 10px #719ECE;
}
.location{
display: flex;
}
.location > div{
width: 100%;
}
input[type="text"]{
width: 96%;
height: 45px;
background: #fff;
}
.location select{
width: 100%;
height: 45px;
background: #fff;
}
.location select option{
background-color: #ffffff!important;
box-shadow: 0 2px 5px 0 rgba(23,35,44,0.24),0 -1px 5px 0 rgba(23,35,44,0.2)!important;
border-radius: 8px !important;
border: 0;
}
.button--textual{
color: #fff;
padding: 0;
text-transform: none;
background: transparent;
border: 0;
}
.button--textual:hover {
background-color: transparent;
color: #537790;
}
.client-info, .client_select {
display: block;
margin-top: 20px;
margin-bottom: 12px;
width: 60%;
height: 50px;
border: solid #999 1px;
border-radius: 5px;
text-indent: 15px;
transition: all 200ms;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.client-promo{
display: block;
margin-top: 2px;
margin-bottom: 8px;
width: 100% !important;
height: 40px !important;
border: solid #999 1px;
border-radius: 5px;
text-indent: 15px;
transition: all 200ms;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.dates{
display: flex;
}
.dates > div{
width: 100%;
}
#searchbar .flight .flight-type-wrapper label.radio[data-v-2de54354] {
cursor: pointer;
}
.flight-type-wrapper label {
display: inline-block;
margin: 0;
margin-bottom: 0.5rem;
}
.number-type-wrapper label {
display: inline-block;
margin: 0;
cursor: pointer;
}
.number-type-wrapper {
text-align: center;
}
#searchbar .flight .flight-type-wrapper label.radio span.flight-type-text[data-v-2de54354] {
margin-right: 15px;
font-size: 16px;
font-weight: 600;
color: #fff;
line-height: 10px;
}
.number-type-wrapper label.radio span.flight-type-text[data-v-2de54354] {
margin-right: 15px;
font-size: 14px;
font-weight: 600;
color: #fff;
line-height: 10px;
}
.booking_right_flex label.radio span.flight-type-text[data-v-2de54354] {
margin-right: 15px;
font-size: 14px;
font-weight: 600;
color: #fff;
line-height: 10px;
}
#searchbar .flight .flight-type-wrapper label.radio input[type=radio]+span.radio-btn[data-v-2de54354] {
display: inline-block;
width: 20px;
height: 20px;
margin-right: 5px;
vertical-align: top;
}
.number-type-wrapper label.radio input[type=radio]+span.radio-btn[data-v-2de54354] {
display: inline-block;
width: 12px;
height: 12px;
margin-right: 5px;
vertical-align: top;
}
.booking_right_flex label.radio input[type=radio]+span.radio-btn[data-v-2de54354] {
display: inline-block;
width: 12px;
height: 12px;
margin-right: 5px;
vertical-align: top;
}
.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
margin: 0;
}
#searchbar .dates div.box[data-v-2de54354] {
padding: 8px 15px;
border-radius: 10px;
border: 1px solid #dadcdf;
cursor: pointer;
position: relative;
}
/* #searchbar .flight .dates div.date[data-v-2de54354] {
-ms-flex-preferred-size: 16%;
flex-basis: 16%;
} */
#searchbar .booking .dates div.buttons[data-v-2de54354]{
-ms-flex-preferred-size: 40%;
flex-basis: 40%;
text-align: right;
}
/* #searchbar .booking .dates div.date[data-v-2de54354] {
-ms-flex-preferred-size: 30%;
flex-basis: 30%;
} */
#searchbar .flight .dates div.date.depart[data-v-2de54354]{
border-radius: 10px 0 0 10px;
}
#searchbar .booking .dates div.date.depart[data-v-2de54354]{
border-radius: 10px 0 0 10px;
}
#searchbar .flight .dates div.date.return[data-v-2de54354]{
border-radius: 0 10px 10px 0;
border-left: 0;
}
#searchbar .booking .dates div.date.return[data-v-2de54354]{
border-radius: 0 10px 10px 0;
border-left: 0;
}
#searchbar .box span.labels[data-v-2de54354] {
text-transform: uppercase;
color: #465d80;
margin-bottom: 4px;
text-align: left;
}
#searchbar .dates div.box .labels[data-v-2de54354] {
font-size: 12px;
line-height: 14px;
font-weight: 400;
display: block;
text-transform: uppercase;
color: #fff;
margin-bottom: 4px;
}
#searchbar .dates div.box .value[data-v-2de54354] {
font-size: 18px;
line-height: 24px;
font-weight: 700;
color: #fff;
}
#searchbar .dates div.box .value span[data-v-2de54354] {
font-size: 14px;
line-height: 20px;
font-weight: 400;
}
.journey_div{
display: flex;
flex: .6;
}
.journey_div > div{
width: 90%;
}
.promo_div{
display: flex;
flex: .4;
}
.promo_div > div{
width: 100%;
}
#searchbar .dates div.box .value+.sub-value[data-v-2de54354] {
margin-top: 0;
font-size: 12px;
}
#searchbar .dates div.box .sub-value[data-v-2de54354] {
font-size: 11px;
line-height: 14px;
font-weight: 400;
display: block;
margin-top: 10px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#searchbar .box span.sub-value[data-v-2de54354] {
/* color: #546378; */
color: #fff;
}
#searchbar .dates div.traveler[data-v-2de54354] {
/* -ms-flex-preferred-size: 32%;
flex-basis: 32%; */
margin-left: 15px;
}
#searchbar .dates div.box.active[data-v-2de54354] {
background-color: rgba(153,194,255,.3215686274509804);
}
#searchbar .dates div.promo[data-v-2de54354] {
/* -ms-flex-preferred-size: 33%;
flex-basis: 33%; */
margin-left: 15px;
}
#guestPicker[data-v-ecc5f086] {
position: absolute;
right: 0;
top: calc(100% + 10px);
width: calc(100%);
background-color: #fff;
border-radius: 3px;
-webkit-box-shadow: 0 8px 12px rgb(51 65 80 / 6%), 0 14px 44px rgb(51 65 80 / 11%);
box-shadow: 0 8px 12px rgb(51 65 80 / 6%), 0 14px 44px rgb(51 65 80 / 11%);
z-index: 100;
}
#guestPicker .mb-header[data-v-ecc5f086] {
display: none;
}
#guestPicker .passengers[data-v-ecc5f086] {
border-bottom: 1px solid #ecf3fe;
}
#guestPicker .passengers .adults[data-v-ecc5f086], #guestPicker .passengers .children-age[data-v-ecc5f086], #guestPicker .passengers .children[data-v-ecc5f086], #guestPicker .passengers .infants[data-v-ecc5f086] {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
margin-bottom: 10px;
}
#guestPicker .passengers .adults[data-v-ecc5f086], #guestPicker .passengers .children-age-wrapper[data-v-ecc5f086] {
border-bottom: 1px solid #ecf3fe;
}
#guestPicker .passengers .adults[data-v-ecc5f086] {
padding: 20px 15px 10px;
margin-bottom: 0;
}
#guestPicker .passengers .adults .labels[data-v-ecc5f086], #guestPicker .passengers .children-age .labels[data-v-ecc5f086], #guestPicker .passengers .children .labels[data-v-ecc5f086], #guestPicker .passengers .infants .labels[data-v-ecc5f086] {
color: #1c3c6b;
}
#guestPicker .passengers .adults .input-container[data-v-ecc5f086], #guestPicker .passengers .children-age .input-container[data-v-ecc5f086], #guestPicker .passengers .children .input-container[data-v-ecc5f086], #guestPicker .passengers .infants .input-container[data-v-ecc5f086] {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#guestPicker .passengers .adults .input-container button[data-v-ecc5f086], #guestPicker .passengers .children-age .input-container button[data-v-ecc5f086], #guestPicker .passengers .children .input-container button[data-v-ecc5f086], #guestPicker .passengers .infants .input-container button[data-v-ecc5f086] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: transparent;
border: 0;
width: auto;
height: auto;
padding: 0;
}
#guestPicker .passengers .adults .input-container button img[data-v-ecc5f086], #guestPicker .passengers .children-age .input-container button img[data-v-ecc5f086], #guestPicker .passengers .children .input-container button img[data-v-ecc5f086], #guestPicker .passengers .infants .input-container button img[data-v-ecc5f086] {
width: 22px;
}
#guestPicker .passengers .adults .labels span[data-v-ecc5f086], #guestPicker .passengers .children-age .labels span[data-v-ecc5f086], #guestPicker .passengers .children .labels span[data-v-ecc5f086], #guestPicker .passengers .infants .labels span[data-v-ecc5f086] {
display: block;
font-size: 12px;
line-height: 14px;
font-weight: 400;
color: #728db6;
}
#guestPicker .passengers .adults .input-container .adult-count[data-v-ecc5f086], #guestPicker .passengers .adults .input-container .children-count[data-v-ecc5f086],
#guestPicker .passengers .children .input-container .children-count[data-v-ecc5f086],#guestPicker .passengers .infants .input-container .infant-count[data-v-ecc5f086] {
color: #1c3c6b;
min-width: 40px;
text-align: center;
}
#guestPicker .passengers .children-age-wrapper[data-v-ecc5f086], #guestPicker .passengers .infants[data-v-ecc5f086] {
padding: 10px 15px;
margin-bottom: 0;
}
#guestPicker .passengers .children[data-v-ecc5f086] {
margin-bottom: 0;
}
#guestPicker .class .button-wrapper[data-v-ecc5f086] {
text-align: right;
}
.brand-btn {
background-color: #056998;
color: #fff;
text-align: center;
font-size: 14px;
line-height: 22px;
font-weight: 600;
padding: 6px 20px;
border: 1px solid #056998;
position: relative;
border-radius: 5px;
}
#guestPicker .class .button-wrapper .picker-mb-btn[data-v-ecc5f086] {
color: #1c3c6b;
background-color: #fccd03;
border: 0;
}
#guestPicker .class[data-v-ecc5f086] {
padding: 15px;
}
.seconde_div{
display:flex;
}
.seconde_div > div{
width: 100%;
}
.show{
display: block;
}
.search-btn-container{
text-align: center;
}
#searchbar .search-btn-container button.search-btn[data-v-2de54354] {
border: 0;
background: linear-gradient(60deg,#c81f70,#b91372);
color: #fff;
border-radius: 10px;
padding: 15px 30px;
font-size: 14px;
font-weight: 700;
outline: none;
margin-top: 20px;
}
#searchbar .search-btn-container button.search-btn[data-v-2de54354]:hover{
background: linear-gradient(10deg,#c81f70,#b91372);
}
.fh_parent_div{
display: flex;
}
.fh_parent_div > div{
width: 100%;
}
.left_boarding{
-ms-flex-preferred-size: 45%;
flex-basis: 45%;
margin-left: 15px;
}
.right_boarding{
-ms-flex-preferred-size: 65%;
flex-basis: 65%;
}
.fh_parent_div p{
width: 90%;
padding-top: 17px;
font-size: 16px;
line-height: 24px;
padding-left: 10px;
color: #fff;
}
.hotels_parent_div{
display: flex;
}
.hotels_parent_div > div{
width: 100%;
}
.unit--3-20 {
width: 7%;
}
.unit--7-10 {
width: 70%;
}
.center {
text-align: center;
}
.vg-40--top {
margin-top: 40px;
}
.line {
overflow: hidden;
}
.unit--3-5 {
width: 60%;
}
.fs-2-0 {
font-size: 2em;
}
.unit--2-5 {
width: 40%;
}
.fs-3-0 {
font-size: 3em;
}
.uppercase {
text-transform: uppercase;
color: #fff;
}
.unit--2-5 {
width: 35%;
}
.vg-10--top {
margin-top: 10px;
}
.unit--9-20 {
width: 45%;
}
.unit--11-20 {
width: 55%;
}
[class*="unit--"] {
float: left;
}
.hotels_terms label{
margin: 0;
color: #fff;
text-shadow: none;
font-size: 13px;
line-height: 20px;
}
#btn-check-in{
background: linear-gradient(60deg,#c81f70,#b91372);
color: #fff;
border: 0;
padding: 10px 20px;
border-radius: 5px;
}
.fg-5 {
margin: 5px;
}
.flag__body a{
color: #fff;
text-decoration: underline;
}
.fg-20{
color: #fff;
}
.booking_parent_div {
display: flex;
}
.booking_left_flex{
-ms-flex-preferred-size: 45%;
flex-basis: 45%;
margin-left: 15px;
margin-top: 20px;
}
.booking_right_flex{
-ms-flex-preferred-size: 65%;
flex-basis: 65%;
}
.booking_left_flex label{
margin: 0;
position: relative;
font-size: 14px;
color: #fff;
}
.booking_left_flex p{
width: 80%;
font-size: 16px;
margin-bottom: 10px;
color: #fff;
}
.flag__body{
color: #fff;
}
@media (max-width: 994px){
#searchbar .search-type span.search-type-tab[data-v-2de54354] {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding: 14px 0px 8px;
min-width: 100px;
font-size: 12px;
}
#searchbar .search-type span.search-type-tab img[data-v-2de54354] {
margin-right: 0;
}
.location{
display: block;
}
input[type="text"] {
width: 100%;
height: 40px;
}
.location select {
width: 100%;
height: 40px;
}
label {
position: absolute;
margin: -15px 0px;
}
#searchbar .booking .dates div.buttons[data-v-2de54354] {
padding-right: 0px !important;
padding-left: 10px;
}
}
@media screen and (max-width: 768px){
#searchbar[data-v-2de54354] {
position: relative;
}
#searchbar .search-type[data-v-2de54354] {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end;
background: linear-gradient(
60deg,#c81f70,#b91372);
}
#searchbar .search-type span.search-type-tab[data-v-2de54354] {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding: 10px 0px 5px;
min-width: 50px;
font-size: 10px;
}
#searchbar .search-type span.search-type-tab img[data-v-2de54354] {
margin-right: 0;
}
.booking_left_flex p {
font-size: 14px;
}
.booking_parent_div {
display: block;
}
.fs-2-0 {
font-size: 1em;
}
.fs-3-0 {
font-size: 1em;
}
.fg-20{
font-size: .8em;
color: #fff;
}
.hotels_parent_div {
display: block;
}
.unit--2-5 {
width: 44%;
padding-top: 25px;
}
.left_boarding .center{
width: 100% !important;
text-align: center;
}
.left_boarding {
margin-left: 0px;
text-align: center;
}
.hotels_terms label {
font-size: 12px;
}
}
@media (min-width: 576px){
.container, .container-lg, .container-md, .container-sm {
max-width: 540px;
}
}
@media (min-width: 768px){
.container, .container-lg, .container-md, .container-sm {
max-width: 720px;
}
}
@media (min-width: 992px){
.container, .container-lg, .container-md, .container-sm {
max-width: 960px;
}
}
@media (min-width: 1200px){
.container, .container-lg, .container-md, .container-sm, .container-xl {
max-width: 1140px;
}
}
@media (max-width: 375px){
.nav > li {
width: 30%;
}
#btn-check-in {
margin-top: 20px;
}
.booking_left_flex {
margin-top: 0;
}
}
.ui-datepicker-inline{
position: absolute;
z-index: 1000;
margin-top: 9px;
margin-left: -14px;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
.ui-datepicker {
width: calc(100%);
}
.ui-datepicker-title span {
font-size: 1.2em;
color: #000;
}
.ui-datepicker table {
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
.ui-datepicker .ui-datepicker-header {
position: relative;
padding: 0.56em 0;
text-transform: capitalize;
background: #fff;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.ui-datepicker-calendar thead th {
text-align: center;
font-size: 0.75rem;
font-weight: 400;
color: #78909C;
}
.ui-datepicker-calendar tbody td {
width: 2.5rem;
text-align: center;
padding: 0;
}
.ui-datepicker-calendar tbody td a {
display: block;
border-radius: 0.25rem;
line-height: 2rem;
transition: 0.3s all;
color: #546E7A;
font-size: 0.875rem;
text-decoration: none;
}
.ui-datepicker-calendar tbody td a:hover {
background-color: #E0F2F1;
}
.ui-datepicker-calendar tbody td a.ui-state-active {
background-color: #009688;
color: white;
}
.ui-datepicker-header a.ui-corner-all {
cursor: pointer;
position: absolute;
top: 0;
width: 2rem;
height: 2rem;
margin: 0.3rem;
border-radius: 0.25rem;
transition: 0.3s all;
}
.ui-datepicker-header a.ui-corner-all:hover {
background-color: #ECEFF1;
}
.ui-datepicker-header a.ui-datepicker-prev {
left: 0;
background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
background-repeat: no-repeat;
background-size: 0.5rem;
background-position: 50%;
transform: rotate(180deg);
}
.ui-datepicker-header a.ui-datepicker-next {
right: 0;
background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==');
background-repeat: no-repeat;
background-size: 10px;
background-position: 50%;
}
.ui-datepicker-header a>span {
display: none;
}
.ui-datepicker-title {
text-align: center;
line-height: 2rem;
margin-bottom: 0.25rem;
font-size: 0.875rem;
font-weight: 500;
padding-bottom: 0.25rem;
}
.ui-datepicker-week-col {
color: #78909C;
font-weight: 400;
font-size: 0.75rem;
}
.datepicker[data-v-b865c99e] {
position: absolute;
top: calc(100% + 10px);
left: 0;
background-color: #fff;
-webkit-box-shadow: 0 8px 12px rgb(51 65 80 / 6%), 0 14px 44px rgb(51 65 80 / 11%);
box-shadow: 0 8px 12px rgb(51 65 80 / 6%), 0 14px 44px rgb(51 65 80 / 11%);
border-radius: 4px;
padding: 15px;
z-index: 10;
}
.datepicker .title[data-v-b865c99e] {
text-align: center;
}
.datepicker .title h4[data-v-b865c99e] {
font-size: 16px;
line-height: 22px;
font-weight: 600;
}
.datepicker .calendar-wrapper[data-v-b865c99e] {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.datepicker .calendar-wrapper .calendar[data-v-b865c99e] {
width: 260px;
position: relative;
}
.datepicker .calendar-wrapper .calendar .header[data-v-b865c99e] {
text-align: center;
font-size: 16px;
margin: 5px 0 10px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.datepicker .calendar-wrapper .calendar .header .navigate-month[data-v-b865c99e] {
position: absolute;
width: 30px;
height: 30px;
border-radius: 50%;
top: 0;
background-size: 6px;
background-position: 50%;
background-repeat: no-repeat;
opacity: .8;
}
.datepicker .calendar-wrapper .calendar .header .navigate-month.prev[data-v-b865c99e] {
left: 0;
background-image: url(../images/icons/angel-left.svg);
}
.datepicker .calendar-wrapper .calendar .header .navigate-month.disabled[data-v-b865c99e] {
opacity: .3;
pointer-events: none;
}
.datepicker .calendar-wrapper .calendar .header .navigate-month.next[data-v-b865c99e] {
right: 0;
background-image: url(../images/icons/angel-right.svg);
}
.datepicker .calendar-wrapper.single .calendar.left .header .navigate-month.next[data-v-b865c99e] {
display: inline-block;
}
.datepicker .calendar-wrapper .calendar .weekdays[data-v-b865c99e] {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
border-bottom: 1px dashed #ecebed;
}
@media (max-width:994px) {
.ui-datepicker {
width: calc(200%);
}
}
@media (max-width: 576px){
.ui-datepicker {
width: calc(210%);
}
#guestPicker[data-v-ecc5f086] {
top: calc(100% + 0px);
width: calc(200%);
}
#datepicker2 .ui-datepicker {
width: calc(254%);
}
#datepicker3 .ui-datepicker {
width: calc(200%);
}
#datepicker4 .ui-datepicker {
width: calc(188%);
}
} | public/css/tab.css | body{
background-color: #ebf0f4;
}
.flight, .flight_hotels, .hotels, .booking{
padding: 0px 20px;
}
#flight .searchbar-wrapper[data-v-64f9c831] {
padding: 80px 0px;
}
#searchbar[data-v-2de54354] {
position: relative;
background: linear-gradient(60deg,#09c6f9,#09c6f9);
-webkit-box-shadow: 0 20px 100px 10px rgb(24 33 77 / 5%);
box-shadow: 0 20px 100px 10px rgb(24 33 77 / 5%);
border-radius: 20px;
padding: 0px 0px 20px;
}
#searchbar .search-type[data-v-2de54354] {
background: linear-gradient(
60deg,#c81f70,#b91372);
-webkit-box-shadow: 0 4px 10px rgb(0 117 255 / 9%);
box-shadow: 0 4px 10px rgb(0 117 255 / 9%);
border-top-left-radius: 20px;
border-top-right-radius: 20px;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
width: auto;
-webkit-transform: translate(0%,calc(-32% - 0px));
transform: translate(0%,calc(-32% - 0px));
}
#searchbar .search-type[data-v-2de54354], #searchbar .search-type span.search-type-tab[data-v-2de54354] {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#searchbar .search-type span.search-type-tab[data-v-2de54354] {
padding: 20px;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
cursor: pointer;
border-bottom: 2px solid transparent;
font-size: 14px;
line-height: 26px;
font-weight: 600;
color: #fff;
flex: 1;
background: linear-gradient( 60deg,#c81f70,#b91372);
}
#searchbar .search-type span.search-type-tab[data-v-2de54354]:first-child{
border-top-left-radius: 20px;
}
#searchbar .search-type span.search-type-tab[data-v-2de54354]:last-child{
border-top-right-radius: 20px;
}
#searchbar .search-type span.search-type-tab.active[data-v-2de54354] {
color: #fff;
background: linear-gradient(60deg,#009ffd,#2a2a72);
}
#searchbar .search-type span.search-type-tab.active[data-v-2de54354]:first-child{
border-top-left-radius: 20px;
}
#searchbar .search-type span.search-type-tab.active[data-v-2de54354]:last-child{
border-top-right-radius: 20px;
}
#searchbar .search-type span.search-type-tab img[data-v-2de54354] {
-webkit-filter: grayscale(1);
filter: grayscale(1);
max-width: 24px;
max-height: 18px;
vertical-align: middle;
margin-right: 8px;
}
#searchbar .search-type span.search-type-tab.active img[data-v-2de54354] {
-webkit-filter: none;
filter: none;
}
label {
position: absolute;
font-size: 12px;
padding: 0 5px;
color: #fff;
transition: all 200ms;
text-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.reference_eticket label[for="rerefer_ticket_no"] {
margin: -18px 0px;
}
.reference_eticket label[for="last_name"] {
margin: -18px 0px;
}
.client-info:focus {
outline: none !important;
box-shadow: 0 0 10px #719ECE;
}
.location{
display: flex;
}
.location > div{
width: 100%;
}
input[type="text"]{
width: 96%;
height: 45px;
background: #fff;
}
.location select{
width: 100%;
height: 45px;
background: #fff;
}
.location select option{
background-color: #ffffff!important;
box-shadow: 0 2px 5px 0 rgba(23,35,44,0.24),0 -1px 5px 0 rgba(23,35,44,0.2)!important;
border-radius: 8px !important;
border: 0;
}
.button--textual{
color: #fff;
padding: 0;
text-transform: none;
background: transparent;
border: 0;
}
.button--textual:hover {
background-color: transparent;
color: #537790;
}
.client-info, .client_select {
display: block;
margin-top: 20px;
margin-bottom: 12px;
width: 60%;
height: 50px;
border: solid #999 1px;
border-radius: 5px;
text-indent: 15px;
transition: all 200ms;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.client-promo{
display: block;
margin-top: 2px;
margin-bottom: 8px;
width: 100% !important;
height: 40px !important;
border: solid #999 1px;
border-radius: 5px;
text-indent: 15px;
transition: all 200ms;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.dates{
display: flex;
}
.dates > div{
width: 100%;
}
#searchbar .flight .flight-type-wrapper label.radio[data-v-2de54354] {
cursor: pointer;
}
.flight-type-wrapper label {
display: inline-block;
margin: 0;
margin-bottom: 0.5rem;
}
.number-type-wrapper label {
display: inline-block;
margin: 0;
cursor: pointer;
}
.number-type-wrapper {
text-align: center;
}
#searchbar .flight .flight-type-wrapper label.radio span.flight-type-text[data-v-2de54354] {
margin-right: 15px;
font-size: 16px;
font-weight: 600;
color: #fff;
line-height: 10px;
}
.number-type-wrapper label.radio span.flight-type-text[data-v-2de54354] {
margin-right: 15px;
font-size: 14px;
font-weight: 600;
color: #fff;
line-height: 10px;
}
.booking_right_flex label.radio span.flight-type-text[data-v-2de54354] {
margin-right: 15px;
font-size: 14px;
font-weight: 600;
color: #fff;
line-height: 10px;
}
#searchbar .flight .flight-type-wrapper label.radio input[type=radio]+span.radio-btn[data-v-2de54354] {
display: inline-block;
width: 20px;
height: 20px;
margin-right: 5px;
vertical-align: top;
}
.number-type-wrapper label.radio input[type=radio]+span.radio-btn[data-v-2de54354] {
display: inline-block;
width: 12px;
height: 12px;
margin-right: 5px;
vertical-align: top;
}
.booking_right_flex label.radio input[type=radio]+span.radio-btn[data-v-2de54354] {
display: inline-block;
width: 12px;
height: 12px;
margin-right: 5px;
vertical-align: top;
}
.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
margin: 0;
}
#searchbar .dates div.box[data-v-2de54354] {
padding: 8px 15px;
border-radius: 10px;
border: 1px solid #dadcdf;
cursor: pointer;
position: relative;
}
/* #searchbar .flight .dates div.date[data-v-2de54354] {
-ms-flex-preferred-size: 16%;
flex-basis: 16%;
} */
#searchbar .booking .dates div.buttons[data-v-2de54354]{
-ms-flex-preferred-size: 40%;
flex-basis: 40%;
text-align: right;
}
/* #searchbar .booking .dates div.date[data-v-2de54354] {
-ms-flex-preferred-size: 30%;
flex-basis: 30%;
} */
#searchbar .flight .dates div.date.depart[data-v-2de54354]{
border-radius: 10px 0 0 10px;
}
#searchbar .booking .dates div.date.depart[data-v-2de54354]{
border-radius: 10px 0 0 10px;
}
#searchbar .flight .dates div.date.return[data-v-2de54354]{
border-radius: 0 10px 10px 0;
border-left: 0;
}
#searchbar .booking .dates div.date.return[data-v-2de54354]{
border-radius: 0 10px 10px 0;
border-left: 0;
}
#searchbar .box span.labels[data-v-2de54354] {
text-transform: uppercase;
color: #465d80;
margin-bottom: 4px;
text-align: left;
}
#searchbar .dates div.box .labels[data-v-2de54354] {
font-size: 12px;
line-height: 14px;
font-weight: 400;
display: block;
text-transform: uppercase;
color: #fff;
margin-bottom: 4px;
}
#searchbar .dates div.box .value[data-v-2de54354] {
font-size: 18px;
line-height: 24px;
font-weight: 700;
color: #fff;
}
#searchbar .dates div.box .value span[data-v-2de54354] {
font-size: 14px;
line-height: 20px;
font-weight: 400;
}
.journey_div{
display: flex;
flex: .6;
}
.journey_div > div{
width: 90%;
}
.promo_div{
display: flex;
flex: .4;
}
.promo_div > div{
width: 100%;
}
#searchbar .dates div.box .value+.sub-value[data-v-2de54354] {
margin-top: 0;
font-size: 12px;
}
#searchbar .dates div.box .sub-value[data-v-2de54354] {
font-size: 11px;
line-height: 14px;
font-weight: 400;
display: block;
margin-top: 10px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#searchbar .box span.sub-value[data-v-2de54354] {
/* color: #546378; */
color: #fff;
}
#searchbar .dates div.traveler[data-v-2de54354] {
/* -ms-flex-preferred-size: 32%;
flex-basis: 32%; */
margin-left: 15px;
}
#searchbar .dates div.box.active[data-v-2de54354] {
background-color: rgba(153,194,255,.3215686274509804);
}
#searchbar .dates div.promo[data-v-2de54354] {
/* -ms-flex-preferred-size: 33%;
flex-basis: 33%; */
margin-left: 15px;
}
#guestPicker[data-v-ecc5f086] {
position: absolute;
right: 0;
top: calc(100% + 10px);
width: calc(100%);
background-color: #fff;
border-radius: 3px;
-webkit-box-shadow: 0 8px 12px rgb(51 65 80 / 6%), 0 14px 44px rgb(51 65 80 / 11%);
box-shadow: 0 8px 12px rgb(51 65 80 / 6%), 0 14px 44px rgb(51 65 80 / 11%);
z-index: 100;
}
#guestPicker .mb-header[data-v-ecc5f086] {
display: none;
}
#guestPicker .passengers[data-v-ecc5f086] {
border-bottom: 1px solid #ecf3fe;
}
#guestPicker .passengers .adults[data-v-ecc5f086], #guestPicker .passengers .children-age[data-v-ecc5f086], #guestPicker .passengers .children[data-v-ecc5f086], #guestPicker .passengers .infants[data-v-ecc5f086] {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
margin-bottom: 10px;
}
#guestPicker .passengers .adults[data-v-ecc5f086], #guestPicker .passengers .children-age-wrapper[data-v-ecc5f086] {
border-bottom: 1px solid #ecf3fe;
}
#guestPicker .passengers .adults[data-v-ecc5f086] {
padding: 20px 15px 10px;
margin-bottom: 0;
}
#guestPicker .passengers .adults .labels[data-v-ecc5f086], #guestPicker .passengers .children-age .labels[data-v-ecc5f086], #guestPicker .passengers .children .labels[data-v-ecc5f086], #guestPicker .passengers .infants .labels[data-v-ecc5f086] {
color: #1c3c6b;
}
#guestPicker .passengers .adults .input-container[data-v-ecc5f086], #guestPicker .passengers .children-age .input-container[data-v-ecc5f086], #guestPicker .passengers .children .input-container[data-v-ecc5f086], #guestPicker .passengers .infants .input-container[data-v-ecc5f086] {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#guestPicker .passengers .adults .input-container button[data-v-ecc5f086], #guestPicker .passengers .children-age .input-container button[data-v-ecc5f086], #guestPicker .passengers .children .input-container button[data-v-ecc5f086], #guestPicker .passengers .infants .input-container button[data-v-ecc5f086] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: transparent;
border: 0;
width: auto;
height: auto;
padding: 0;
}
#guestPicker .passengers .adults .input-container button img[data-v-ecc5f086], #guestPicker .passengers .children-age .input-container button img[data-v-ecc5f086], #guestPicker .passengers .children .input-container button img[data-v-ecc5f086], #guestPicker .passengers .infants .input-container button img[data-v-ecc5f086] {
width: 22px;
}
#guestPicker .passengers .adults .labels span[data-v-ecc5f086], #guestPicker .passengers .children-age .labels span[data-v-ecc5f086], #guestPicker .passengers .children .labels span[data-v-ecc5f086], #guestPicker .passengers .infants .labels span[data-v-ecc5f086] {
display: block;
font-size: 12px;
line-height: 14px;
font-weight: 400;
color: #728db6;
}
#guestPicker .passengers .adults .input-container .adult-count[data-v-ecc5f086], #guestPicker .passengers .adults .input-container .children-count[data-v-ecc5f086],
#guestPicker .passengers .children .input-container .children-count[data-v-ecc5f086],#guestPicker .passengers .infants .input-container .infant-count[data-v-ecc5f086] {
color: #1c3c6b;
min-width: 40px;
text-align: center;
}
#guestPicker .passengers .children-age-wrapper[data-v-ecc5f086], #guestPicker .passengers .infants[data-v-ecc5f086] {
padding: 10px 15px;
margin-bottom: 0;
}
#guestPicker .passengers .children[data-v-ecc5f086] {
margin-bottom: 0;
}
#guestPicker .class .button-wrapper[data-v-ecc5f086] {
text-align: right;
}
.brand-btn {
background-color: #056998;
color: #fff;
text-align: center;
font-size: 14px;
line-height: 22px;
font-weight: 600;
padding: 6px 20px;
border: 1px solid #056998;
position: relative;
border-radius: 5px;
}
#guestPicker .class .button-wrapper .picker-mb-btn[data-v-ecc5f086] {
color: #1c3c6b;
background-color: #fccd03;
border: 0;
}
#guestPicker .class[data-v-ecc5f086] {
padding: 15px;
}
.seconde_div{
display:flex;
}
.seconde_div > div{
width: 100%;
}
.show{
display: block;
}
.search-btn-container{
text-align: center;
}
#searchbar .search-btn-container button.search-btn[data-v-2de54354] {
border: 0;
background: linear-gradient(60deg,#c81f70,#b91372);
color: #fff;
border-radius: 10px;
padding: 15px 30px;
font-size: 14px;
font-weight: 700;
outline: none;
margin-top: 20px;
}
#searchbar .search-btn-container button.search-btn[data-v-2de54354]:hover{
background: linear-gradient(10deg,#c81f70,#b91372);
}
.fh_parent_div{
display: flex;
}
.fh_parent_div > div{
width: 100%;
}
.left_boarding{
-ms-flex-preferred-size: 45%;
flex-basis: 45%;
margin-left: 15px;
}
.right_boarding{
-ms-flex-preferred-size: 65%;
flex-basis: 65%;
}
.fh_parent_div p{
width: 90%;
padding-top: 17px;
font-size: 16px;
line-height: 24px;
padding-left: 10px;
color: #fff;
}
.hotels_parent_div{
display: flex;
}
.hotels_parent_div > div{
width: 100%;
}
.unit--3-20 {
width: 7%;
}
.unit--7-10 {
width: 70%;
}
.center {
text-align: center;
}
.vg-40--top {
margin-top: 40px;
}
.line {
overflow: hidden;
}
.unit--3-5 {
width: 60%;
}
.fs-2-0 {
font-size: 2em;
}
.unit--2-5 {
width: 40%;
}
.fs-3-0 {
font-size: 3em;
}
.uppercase {
text-transform: uppercase;
color: #fff;
}
.unit--2-5 {
width: 35%;
}
.vg-10--top {
margin-top: 10px;
}
.unit--9-20 {
width: 45%;
}
.unit--11-20 {
width: 55%;
}
[class*="unit--"] {
float: left;
}
.hotels_terms label{
margin: 0;
color: #fff;
text-shadow: none;
font-size: 13px;
line-height: 20px;
}
#btn-check-in{
background: linear-gradient(60deg,#c81f70,#b91372);
color: #fff;
border: 0;
padding: 10px 20px;
border-radius: 5px;
}
.fg-5 {
margin: 5px;
}
.flag__body a{
color: #fff;
text-decoration: underline;
}
.fg-20{
color: #fff;
}
.booking_parent_div {
display: flex;
}
.booking_left_flex{
-ms-flex-preferred-size: 45%;
flex-basis: 45%;
margin-left: 15px;
margin-top: 20px;
}
.booking_right_flex{
-ms-flex-preferred-size: 65%;
flex-basis: 65%;
}
.booking_left_flex label{
margin: 0;
position: relative;
font-size: 14px;
color: #fff;
}
.booking_left_flex p{
width: 80%;
font-size: 16px;
margin-bottom: 10px;
color: #fff;
}
.flag__body{
color: #fff;
}
@media (max-width: 994px){
#searchbar .search-type span.search-type-tab[data-v-2de54354] {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding: 14px 0px 8px;
min-width: 100px;
font-size: 12px;
}
#searchbar .search-type span.search-type-tab img[data-v-2de54354] {
margin-right: 0;
}
.location{
display: block;
}
input[type="text"] {
width: 100%;
height: 40px;
}
.location select {
width: 100%;
height: 40px;
}
label {
position: absolute;
margin: -15px 0px;
}
#searchbar .booking .dates div.buttons[data-v-2de54354] {
padding-right: 0px !important;
padding-left: 10px;
}
}
@media screen and (max-width: 768px){
#searchbar[data-v-2de54354] {
position: relative;
}
#searchbar .search-type[data-v-2de54354] {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end;
background: linear-gradient(
60deg,#c81f70,#b91372);
}
#searchbar .search-type span.search-type-tab[data-v-2de54354] {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding: 10px 0px 5px;
min-width: 50px;
font-size: 10px;
}
#searchbar .search-type span.search-type-tab img[data-v-2de54354] {
margin-right: 0;
}
.booking_left_flex p {
font-size: 14px;
}
.booking_parent_div {
display: block;
}
.fs-2-0 {
font-size: 1em;
}
.fs-3-0 {
font-size: 1em;
}
.fg-20{
font-size: .8em;
color: #fff;
}
.hotels_parent_div {
display: block;
}
.unit--2-5 {
width: 44%;
padding-top: 25px;
}
.left_boarding .center{
width: 100% !important;
text-align: center;
}
.left_boarding {
margin-left: 0px;
text-align: center;
}
.hotels_terms label {
font-size: 12px;
}
}
@media (min-width: 576px){
.container, .container-lg, .container-md, .container-sm {
max-width: 540px;
}
}
@media (min-width: 768px){
.container, .container-lg, .container-md, .container-sm {
max-width: 720px;
}
}
@media (min-width: 992px){
.container, .container-lg, .container-md, .container-sm {
max-width: 960px;
}
}
@media (min-width: 1200px){
.container, .container-lg, .container-md, .container-sm, .container-xl {
max-width: 1140px;
}
}
@media (max-width: 375px){
.nav > li {
width: 30%;
}
#btn-check-in {
margin-top: 20px;
}
.booking_left_flex {
margin-top: 0;
}
}
.ui-datepicker-inline{
position: absolute;
z-index: 1000;
margin-top: 9px;
margin-left: -14px;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
.ui-datepicker {
width: calc(100%);
}
.ui-datepicker-title span {
font-size: 1.2em;
color: #000;
}
.ui-datepicker table {
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
.ui-datepicker .ui-datepicker-header {
position: relative;
padding: 0.56em 0;
text-transform: capitalize;
background: #fff;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.ui-datepicker-calendar thead th {
text-align: center;
font-size: 0.75rem;
font-weight: 400;
color: #78909C;
}
.ui-datepicker-calendar tbody td {
width: 2.5rem;
text-align: center;
padding: 0;
}
.ui-datepicker-calendar tbody td a {
display: block;
border-radius: 0.25rem;
line-height: 2rem;
transition: 0.3s all;
color: #546E7A;
font-size: 0.875rem;
text-decoration: none;
}
.ui-datepicker-calendar tbody td a:hover {
background-color: #E0F2F1;
}
.ui-datepicker-calendar tbody td a.ui-state-active {
background-color: #009688;
color: white;
}
.ui-datepicker-header a.ui-corner-all {
cursor: pointer;
position: absolute;
top: 0;
width: 2rem;
height: 2rem;
margin: 0.3rem;
border-radius: 0.25rem;
transition: 0.3s all;
}
.ui-datepicker-header a.ui-corner-all:hover {
background-color: #ECEFF1;
}
.ui-datepicker-header a.ui-datepicker-prev {
left: 0;
background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
background-repeat: no-repeat;
background-size: 0.5rem;
background-position: 50%;
transform: rotate(180deg);
}
.ui-datepicker-header a.ui-datepicker-next {
right: 0;
background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==');
background-repeat: no-repeat;
background-size: 10px;
background-position: 50%;
}
.ui-datepicker-header a>span {
display: none;
}
.ui-datepicker-title {
text-align: center;
line-height: 2rem;
margin-bottom: 0.25rem;
font-size: 0.875rem;
font-weight: 500;
padding-bottom: 0.25rem;
}
.ui-datepicker-week-col {
color: #78909C;
font-weight: 400;
font-size: 0.75rem;
}
.datepicker[data-v-b865c99e] {
position: absolute;
top: calc(100% + 10px);
left: 0;
background-color: #fff;
-webkit-box-shadow: 0 8px 12px rgb(51 65 80 / 6%), 0 14px 44px rgb(51 65 80 / 11%);
box-shadow: 0 8px 12px rgb(51 65 80 / 6%), 0 14px 44px rgb(51 65 80 / 11%);
border-radius: 4px;
padding: 15px;
z-index: 10;
}
.datepicker .title[data-v-b865c99e] {
text-align: center;
}
.datepicker .title h4[data-v-b865c99e] {
font-size: 16px;
line-height: 22px;
font-weight: 600;
}
.datepicker .calendar-wrapper[data-v-b865c99e] {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.datepicker .calendar-wrapper .calendar[data-v-b865c99e] {
width: 260px;
position: relative;
}
.datepicker .calendar-wrapper .calendar .header[data-v-b865c99e] {
text-align: center;
font-size: 16px;
margin: 5px 0 10px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.datepicker .calendar-wrapper .calendar .header .navigate-month[data-v-b865c99e] {
position: absolute;
width: 30px;
height: 30px;
border-radius: 50%;
top: 0;
background-size: 6px;
background-position: 50%;
background-repeat: no-repeat;
opacity: .8;
}
.datepicker .calendar-wrapper .calendar .header .navigate-month.prev[data-v-b865c99e] {
left: 0;
background-image: url(../images/icons/angel-left.svg);
}
.datepicker .calendar-wrapper .calendar .header .navigate-month.disabled[data-v-b865c99e] {
opacity: .3;
pointer-events: none;
}
.datepicker .calendar-wrapper .calendar .header .navigate-month.next[data-v-b865c99e] {
right: 0;
background-image: url(../images/icons/angel-right.svg);
}
.datepicker .calendar-wrapper.single .calendar.left .header .navigate-month.next[data-v-b865c99e] {
display: inline-block;
}
.datepicker .calendar-wrapper .calendar .weekdays[data-v-b865c99e] {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
border-bottom: 1px dashed #ecebed;
}
@media (max-width:994px) {
.ui-datepicker {
width: calc(200%);
}
}
@media (max-width: 576px){
.ui-datepicker {
width: calc(210%);
}
#guestPicker[data-v-ecc5f086] {
top: calc(100% + 0px);
width: calc(200%);
}
#datepicker2 .ui-datepicker {
width: calc(254%);
}
#datepicker3 .ui-datepicker {
width: calc(200%);
}
#datepicker4 .ui-datepicker {
width: calc(188%);
}
} | 0.395134 | 0.078254 |
body {
background-color: #F5FFFA;
}
#quote-text p{
margin:0;
}
/*.op-ch{
animation: opacity-change 2s;
}
@keyframes opacity-change {
0% { opacity: 0;}
50% { opacity: 0.5;}
100% { opacity: 1;}
from { opacity: 0;}
to {opacity: 1;}
}*/
.quote-box {
display:block;
overflow:auto;
width: 100%;
border-radius: 10px;
animation-name: pulsate;
animation-duration: 100s;
animation-timing-function: linear;
animation-delay: initial;
animation-iteration-count: infinite;
animation-direction: initial;
animation-fill-mode: initial;
animation-play-state: initial;
}
@keyframes pulsate
{
0% {
color: #333;
background: #fff;
}
7% {
color: #0c85ff;
background: #001F3F;
}
14% {
color: #40a9ff;
background: #0074D9;
}
21% {
color: #00a8e5;
background: #7FDBFF;
}
28% {
color: #165656;
background: #39CCCC;
}
35% {
color: #112c20;
background: #3D9970;
}
42% {
color: #124f18;
background: #2ECC40;
}
49% {
color: #00672d;
background: #01FF70;
}
56% {
color: #665700;
background: #FFDC00;
}
63% {
color: #ffd6b4;
background: #FF851B;
}
70% {
color: #ffd1cf;
background: #FF4136;
}
77% {
color: #e44e99;
background: #85144B;
}
84% {
color: #f9a2e6;
background: #F012BE;
}
91% {
color: #e679f6;
background: #B10DC9;
}
95% {
color: #5e5e5e;
background: #111;
}
96% {
color: #919191;
background: #ddd;
}
98% {
color: #5d5d5d;
background: #aaa;
}
100% {
color: #b3b3b3;
background: #fff;
}
}
.btn {
width: 50px;
height: 40px;
border-radius: 10px;
border-style: none;
} | css/style.css | body {
background-color: #F5FFFA;
}
#quote-text p{
margin:0;
}
/*.op-ch{
animation: opacity-change 2s;
}
@keyframes opacity-change {
0% { opacity: 0;}
50% { opacity: 0.5;}
100% { opacity: 1;}
from { opacity: 0;}
to {opacity: 1;}
}*/
.quote-box {
display:block;
overflow:auto;
width: 100%;
border-radius: 10px;
animation-name: pulsate;
animation-duration: 100s;
animation-timing-function: linear;
animation-delay: initial;
animation-iteration-count: infinite;
animation-direction: initial;
animation-fill-mode: initial;
animation-play-state: initial;
}
@keyframes pulsate
{
0% {
color: #333;
background: #fff;
}
7% {
color: #0c85ff;
background: #001F3F;
}
14% {
color: #40a9ff;
background: #0074D9;
}
21% {
color: #00a8e5;
background: #7FDBFF;
}
28% {
color: #165656;
background: #39CCCC;
}
35% {
color: #112c20;
background: #3D9970;
}
42% {
color: #124f18;
background: #2ECC40;
}
49% {
color: #00672d;
background: #01FF70;
}
56% {
color: #665700;
background: #FFDC00;
}
63% {
color: #ffd6b4;
background: #FF851B;
}
70% {
color: #ffd1cf;
background: #FF4136;
}
77% {
color: #e44e99;
background: #85144B;
}
84% {
color: #f9a2e6;
background: #F012BE;
}
91% {
color: #e679f6;
background: #B10DC9;
}
95% {
color: #5e5e5e;
background: #111;
}
96% {
color: #919191;
background: #ddd;
}
98% {
color: #5d5d5d;
background: #aaa;
}
100% {
color: #b3b3b3;
background: #fff;
}
}
.btn {
width: 50px;
height: 40px;
border-radius: 10px;
border-style: none;
} | 0.482185 | 0.122628 |
{
padding-bottom: 150px;
}
#playerArtist, #playerTitle, #playerAlbum
{
font: bold 24px Helvetica, sans-serif;
}
#playerArtist, #playerAlbum
{
color: lightgray;
}
#playerTitle
{
color: white;
}
#playerExit
{
border: 2px solid #121212;
border-radius: 7px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
background: #727272; /* Old browsers */
background: -moz-linear-gradient(top, #727272 1%, #222222 99%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#727272), color-stop(99%,#222222)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #727272 1%,#222222 99%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #727272 1%,#222222 99%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #727272 1%,#222222 99%); /* IE10+ */
background: linear-gradient(to bottom, #727272 1%,#222222 99%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#727272', endColorstr='#222222',GradientType=0 ); /* IE6-9 */
text-align: center;
font: bold 64px FontAwesome, Helvetica, sans-serif;
color: lightgray;
padding: 5px 15px;
}
#playerExit:active
{
background: #222222; /* Old browsers */
background: -moz-linear-gradient(top, #222222 0%, #727272 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#222222), color-stop(100%,#727272)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #222222 0%,#727272 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #222222 0%,#727272 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #222222 0%,#727272 100%); /* IE10+ */
background: linear-gradient(to bottom, #222222 0%,#727272 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222', endColorstr='#727272',GradientType=0 ); /* IE6-9 */
}
#playerSeekBarContainer
{
background: #727272; /* Old browsers */
background: -moz-linear-gradient(top, #727272 1%, #575757 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#727272), color-stop(100%,#575757)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #727272 1%,#575757 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #727272 1%,#575757 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #727272 1%,#575757 100%); /* IE10+ */
background: linear-gradient(to bottom, #727272 1%,#575757 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#727272', endColorstr='#575757',GradientType=0 ); /* IE6-9 */
padding: 15px;
}
#playerCurrentTime, #playerTimeLeft
{
font: bold 26px Helvetica, sans-serif;
color: lightgray;
text-shadow: -1px -1px rgba(0, 0, 0, 0.8);
}
#playerSeekBarOuter
{
border: 1px solid #121212;
border-radius: 50px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
background: #626262; /* Old browsers */
background: -moz-linear-gradient(top, #626262 1%, #272727 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#626262), color-stop(100%,#272727)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #626262 1%,#272727 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #626262 1%,#272727 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #626262 1%,#272727 100%); /* IE10+ */
background: linear-gradient(to bottom, #626262 1%,#272727 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#626262', endColorstr='#272727',GradientType=0 ); /* IE6-9 */
height: 35px;
}
#playerSeekBarInner
{
border-radius: 50px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
background: #f7f7f7; /* Old browsers */
background: -moz-linear-gradient(top, #f7f7f7 0%, #e0e0e0 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(100%,#e0e0e0)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #f7f7f7 0%,#e0e0e0 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #f7f7f7 0%,#e0e0e0 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #f7f7f7 0%,#e0e0e0 100%); /* IE10+ */
background: linear-gradient(to bottom, #f7f7f7 0%,#e0e0e0 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#e0e0e0',GradientType=0 ); /* IE6-9 */
height: 100%;
}
#playerControls
{
position: fixed;
bottom: 150px;
background: #424242;
font: bold 48px FontAwesome, Helvetica, sans-serif;
color: lightgray;
width: 100%;
padding: 25px;
}
#playerControls div
{
cursor: pointer;
} | mobile/css/player.css | {
padding-bottom: 150px;
}
#playerArtist, #playerTitle, #playerAlbum
{
font: bold 24px Helvetica, sans-serif;
}
#playerArtist, #playerAlbum
{
color: lightgray;
}
#playerTitle
{
color: white;
}
#playerExit
{
border: 2px solid #121212;
border-radius: 7px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
background: #727272; /* Old browsers */
background: -moz-linear-gradient(top, #727272 1%, #222222 99%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#727272), color-stop(99%,#222222)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #727272 1%,#222222 99%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #727272 1%,#222222 99%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #727272 1%,#222222 99%); /* IE10+ */
background: linear-gradient(to bottom, #727272 1%,#222222 99%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#727272', endColorstr='#222222',GradientType=0 ); /* IE6-9 */
text-align: center;
font: bold 64px FontAwesome, Helvetica, sans-serif;
color: lightgray;
padding: 5px 15px;
}
#playerExit:active
{
background: #222222; /* Old browsers */
background: -moz-linear-gradient(top, #222222 0%, #727272 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#222222), color-stop(100%,#727272)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #222222 0%,#727272 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #222222 0%,#727272 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #222222 0%,#727272 100%); /* IE10+ */
background: linear-gradient(to bottom, #222222 0%,#727272 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222', endColorstr='#727272',GradientType=0 ); /* IE6-9 */
}
#playerSeekBarContainer
{
background: #727272; /* Old browsers */
background: -moz-linear-gradient(top, #727272 1%, #575757 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#727272), color-stop(100%,#575757)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #727272 1%,#575757 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #727272 1%,#575757 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #727272 1%,#575757 100%); /* IE10+ */
background: linear-gradient(to bottom, #727272 1%,#575757 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#727272', endColorstr='#575757',GradientType=0 ); /* IE6-9 */
padding: 15px;
}
#playerCurrentTime, #playerTimeLeft
{
font: bold 26px Helvetica, sans-serif;
color: lightgray;
text-shadow: -1px -1px rgba(0, 0, 0, 0.8);
}
#playerSeekBarOuter
{
border: 1px solid #121212;
border-radius: 50px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
background: #626262; /* Old browsers */
background: -moz-linear-gradient(top, #626262 1%, #272727 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#626262), color-stop(100%,#272727)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #626262 1%,#272727 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #626262 1%,#272727 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #626262 1%,#272727 100%); /* IE10+ */
background: linear-gradient(to bottom, #626262 1%,#272727 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#626262', endColorstr='#272727',GradientType=0 ); /* IE6-9 */
height: 35px;
}
#playerSeekBarInner
{
border-radius: 50px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
background: #f7f7f7; /* Old browsers */
background: -moz-linear-gradient(top, #f7f7f7 0%, #e0e0e0 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(100%,#e0e0e0)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #f7f7f7 0%,#e0e0e0 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #f7f7f7 0%,#e0e0e0 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #f7f7f7 0%,#e0e0e0 100%); /* IE10+ */
background: linear-gradient(to bottom, #f7f7f7 0%,#e0e0e0 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#e0e0e0',GradientType=0 ); /* IE6-9 */
height: 100%;
}
#playerControls
{
position: fixed;
bottom: 150px;
background: #424242;
font: bold 48px FontAwesome, Helvetica, sans-serif;
color: lightgray;
width: 100%;
padding: 25px;
}
#playerControls div
{
cursor: pointer;
} | 0.225161 | 0.066812 |
.border-test {
border: 1px solid red;
}
.my-text-white {
color: #d6d6d6;
}
.my-text-green {
color: #55b56e;
}
.my-text-red {
color: #d05549;
}
.index-button {
background-color: rgb(61, 117, 169);
padding: 5%;
}
.hidden {
display: none;
}
.fill-remaining-height {
display: inline-flex;
height: 100%;
}
.height-70 {
height: 70vh;
}
.mt-30 {
margin-top: 30vh;
}
.fluid-padding {
margin-left: 5%;
margin-right: 5%;
margin-top: 5%;
}
a {
color: #1a59b1;
}
.content-block {
background-color: #F9F9F9;
box-shadow: -10px 10px 15px #070707, 10px 10px 15px #070707 ;
padding: 2.5% 7% 5% 7%;
margin-bottom: 5%;
}
body {
background-color: #1c1c1f;
}
.vertical-align {
margin-top: 25vmin;
}
.container-login {
width: 40%;
}
.btn-login {
background-color: #3b71a0;
color: #F9F9F9;
}
.btn-login:hover {
background-color: #4c91cd;
}
.btn-outline-login {
color: #F9F9F9;
background-color: #d05549;
}
.btn-outline-login:hover {
background-color: #e68379;
color: #F9F9F9;
}
.container {
background-color: #F9F9F9;
}
.date-style {
font-style: italic;
color: #96A996;
}
.loader-background {
width: 100%;
height: 100%;
background: rgba(50, 50, 50, 0.85);
position: fixed;
top: 0;
left: 0;
z-index: 1;
}
.cssload-loader {
position: fixed;
top: 50%;
left: 50%;
margin-top: -25px;
margin-left: -25px;
width: 50px;
height: 50px;
z-index: 1;
border: 4px solid rgb(0,0,0);
animation: cssload-loader 2.3s infinite ease;
-o-animation: cssload-loader 2.3s infinite ease;
-ms-animation: cssload-loader 2.3s infinite ease;
-webkit-animation: cssload-loader 2.3s infinite ease;
-moz-animation: cssload-loader 2.3s infinite ease;
}
.cssload-loader-inner {
vertical-align: top;
display: inline-block;
width: 100%;
background-color: rgb(61, 117, 169);
animation: cssload-loader-inner 2.3s infinite ease-in;
-o-animation: cssload-loader-inner 2.3s infinite ease-in;
-ms-animation: cssload-loader-inner 2.3s infinite ease-in;
-webkit-animation: cssload-loader-inner 2.3s infinite ease-in;
-moz-animation: cssload-loader-inner 2.3s infinite ease-in;
}
@keyframes cssload-loader {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(180deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(360deg);
}
100% {
transform: rotate(360deg);
}
}
@-o-keyframes cssload-loader {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(180deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(360deg);
}
100% {
transform: rotate(360deg);
}
}
@-ms-keyframes cssload-loader {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(180deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(360deg);
}
100% {
transform: rotate(360deg);
}
}
@-webkit-keyframes cssload-loader {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(180deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(360deg);
}
100% {
transform: rotate(360deg);
}
}
@-moz-keyframes cssload-loader {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(180deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(360deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes cssload-loader-inner {
0% {
height: 0%;
}
25% {
height: 0%;
}
50% {
height: 100%;
}
75% {
height: 100%;
}
100% {
height: 0%;
}
}
@-o-keyframes cssload-loader-inner {
0% {
height: 0%;
}
25% {
height: 0%;
}
50% {
height: 100%;
}
75% {
height: 100%;
}
100% {
height: 0%;
}
}
@-ms-keyframes cssload-loader-inner {
0% {
height: 0%;
}
25% {
height: 0%;
}
50% {
height: 100%;
}
75% {
height: 100%;
}
100% {
height: 0%;
}
}
@-webkit-keyframes cssload-loader-inner {
0% {
height: 0%;
}
25% {
height: 0%;
}
50% {
height: 100%;
}
75% {
height: 100%;
}
100% {
height: 0%;
}
}
@-moz-keyframes cssload-loader-inner {
0% {
height: 0%;
}
25% {
height: 0%;
}
50% {
height: 100%;
}
75% {
height: 100%;
}
100% {
height: 0%;
}
} | web/css/main.css | .border-test {
border: 1px solid red;
}
.my-text-white {
color: #d6d6d6;
}
.my-text-green {
color: #55b56e;
}
.my-text-red {
color: #d05549;
}
.index-button {
background-color: rgb(61, 117, 169);
padding: 5%;
}
.hidden {
display: none;
}
.fill-remaining-height {
display: inline-flex;
height: 100%;
}
.height-70 {
height: 70vh;
}
.mt-30 {
margin-top: 30vh;
}
.fluid-padding {
margin-left: 5%;
margin-right: 5%;
margin-top: 5%;
}
a {
color: #1a59b1;
}
.content-block {
background-color: #F9F9F9;
box-shadow: -10px 10px 15px #070707, 10px 10px 15px #070707 ;
padding: 2.5% 7% 5% 7%;
margin-bottom: 5%;
}
body {
background-color: #1c1c1f;
}
.vertical-align {
margin-top: 25vmin;
}
.container-login {
width: 40%;
}
.btn-login {
background-color: #3b71a0;
color: #F9F9F9;
}
.btn-login:hover {
background-color: #4c91cd;
}
.btn-outline-login {
color: #F9F9F9;
background-color: #d05549;
}
.btn-outline-login:hover {
background-color: #e68379;
color: #F9F9F9;
}
.container {
background-color: #F9F9F9;
}
.date-style {
font-style: italic;
color: #96A996;
}
.loader-background {
width: 100%;
height: 100%;
background: rgba(50, 50, 50, 0.85);
position: fixed;
top: 0;
left: 0;
z-index: 1;
}
.cssload-loader {
position: fixed;
top: 50%;
left: 50%;
margin-top: -25px;
margin-left: -25px;
width: 50px;
height: 50px;
z-index: 1;
border: 4px solid rgb(0,0,0);
animation: cssload-loader 2.3s infinite ease;
-o-animation: cssload-loader 2.3s infinite ease;
-ms-animation: cssload-loader 2.3s infinite ease;
-webkit-animation: cssload-loader 2.3s infinite ease;
-moz-animation: cssload-loader 2.3s infinite ease;
}
.cssload-loader-inner {
vertical-align: top;
display: inline-block;
width: 100%;
background-color: rgb(61, 117, 169);
animation: cssload-loader-inner 2.3s infinite ease-in;
-o-animation: cssload-loader-inner 2.3s infinite ease-in;
-ms-animation: cssload-loader-inner 2.3s infinite ease-in;
-webkit-animation: cssload-loader-inner 2.3s infinite ease-in;
-moz-animation: cssload-loader-inner 2.3s infinite ease-in;
}
@keyframes cssload-loader {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(180deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(360deg);
}
100% {
transform: rotate(360deg);
}
}
@-o-keyframes cssload-loader {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(180deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(360deg);
}
100% {
transform: rotate(360deg);
}
}
@-ms-keyframes cssload-loader {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(180deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(360deg);
}
100% {
transform: rotate(360deg);
}
}
@-webkit-keyframes cssload-loader {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(180deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(360deg);
}
100% {
transform: rotate(360deg);
}
}
@-moz-keyframes cssload-loader {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(180deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(360deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes cssload-loader-inner {
0% {
height: 0%;
}
25% {
height: 0%;
}
50% {
height: 100%;
}
75% {
height: 100%;
}
100% {
height: 0%;
}
}
@-o-keyframes cssload-loader-inner {
0% {
height: 0%;
}
25% {
height: 0%;
}
50% {
height: 100%;
}
75% {
height: 100%;
}
100% {
height: 0%;
}
}
@-ms-keyframes cssload-loader-inner {
0% {
height: 0%;
}
25% {
height: 0%;
}
50% {
height: 100%;
}
75% {
height: 100%;
}
100% {
height: 0%;
}
}
@-webkit-keyframes cssload-loader-inner {
0% {
height: 0%;
}
25% {
height: 0%;
}
50% {
height: 100%;
}
75% {
height: 100%;
}
100% {
height: 0%;
}
}
@-moz-keyframes cssload-loader-inner {
0% {
height: 0%;
}
25% {
height: 0%;
}
50% {
height: 100%;
}
75% {
height: 100%;
}
100% {
height: 0%;
}
} | 0.484868 | 0.193776 |
.cell-spreadsheet .table-row-cell {
-fx-background-color: transparent;
}
/* NORMAL CELL */
.spreadsheet-cell:filled:selected,
.spreadsheet-cell:filled:focused:selected,
.spreadsheet-cell:filled:focused:selected:hover {
-fx-background-color: #FFDA8C;
-fx-border-color: #a9a9a9;
-fx-border-width : 0.5px;
-fx-text-fill: -fx-selection-bar-text;
}
.spreadsheet-cell:hover,
.spreadsheet-cell:filled:focused {
-fx-background-color: #988490;
-fx-text-fill: -fx-text-inner-color;
-fx-background-insets: 0, 0 0 1 0;
}
.spreadsheet-cell{
-fx-padding: 0 0 0 0.2em;
-fx-border-color: black;
-fx-border-width : 0.3px;
-fx-background-color: -fx-table-cell-border-color,white;
}
.tooltip {
-fx-background-radius: 0px;
-fx-background-color:
linear-gradient(#cec340, #a59c31),
linear-gradient(#fefefc, #e6dd71),
linear-gradient(#fef592, #e5d848);
-fx-background-insets: 0,1,2;
-fx-padding: 0.333333em 0.666667em 0.333333em 0.666667em; /* 4 8 4 8 */
-fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 8, 0.0 , 0 , 0 );
-fx-text-fill:black;
}
/* FIXED HEADERS */
VerticalHeader > Label.fixed{
-fx-background-color: -fx-box-border, -fx-inner-border, linear-gradient(to left, derive(-fx-color,-20%) ,derive(-fx-color,-10%));
-fx-font-style : italic;
}
HorizontalHeaderColumn > TableColumnHeader.column-header.table-column.fixed{
-fx-background-color: -fx-box-border, -fx-inner-border, linear-gradient(to top, derive(-fx-color,-20%) ,derive(-fx-color,-10%));
-fx-font-style : italic;
}
/* HORIZONTAL AND VERTICAL HEADER SELECTION */
VerticalHeader > Label {
-fx-background-color: -fx-box-border, -fx-inner-border, linear-gradient(to left, derive(-fx-color,-5%) ,derive(-fx-color,5%));
-fx-background-insets: 0, 0 1 1 0, 1 2 2 1;
-fx-font-weight: bold;
-fx-size: 2em;
-fx-text-fill: -fx-selection-bar-text;
/*-fx-padding: 0.166667em;*/
/*-fx-label-padding:0 0 0 20;*/
-fx-alignment: center;
-fx-font-style : normal;
}
VerticalHeader > Label.selected{
-fx-background-color: -fx-box-border, -fx-inner-border, linear-gradient(to right, derive(#FFDB6D,-10%) ,derive(#FFDB6D,10%));
-fx-background-insets: 0, 0 1 1 0, 1 2 2 1;
-fx-font-weight: bold;
-fx-size: 2em;
-fx-text-fill: -fx-selection-bar-text;
-fx-alignment: center;
-fx-border-color : #FFDB6D;
}
HorizontalHeaderColumn > TableColumnHeader.column-header.table-column.selected{
-fx-background-color: -fx-box-border, -fx-inner-border, linear-gradient(to bottom, derive(#FFDB6D,-10%) ,derive(#FFDB6D,10%));
-fx-background-insets: 0, 0 1 1 0, 1 2 2 1;
-fx-font-weight: bold;
-fx-size: 2em;
-fx-text-fill: -fx-selection-bar-text;
-fx-alignment: center;
-fx-border-color : #FFDB6D;
}
.text-field.error{
-fx-background-color: red;
}
/* HORIZONTAL HEADER VISIBILITY */
.column-header-background.invisible { visibility: hidden; -fx-padding: -1em; }
.comment{
-fx-background-color: red;
-fx-shape : "M 0 0 L -1 0 L 0 1 z";
}
/* TextField must squeeze tight, so no padding
on top and bottom */
.spreadsheet-cell TextField{
-fx-padding : 0 7 0 7 ;
}
.indicationLabel{
-fx-font-style : italic;
}
/* PICKERS */
.picker-label{
-fx-graphic: url("picker.png");
-fx-background-color: transparent;
-fx-padding: 0 0 0 0;
-fx-alignment: center;
}
.picker-label:hover{
-fx-effect:dropshadow(gaussian, black, 10, 0.1, 0, 0);
-fx-cursor:hand;
} | lib/controlsfx-8.0.6_20/org/controlsfx/control/spreadsheet/spreadsheet.css | .cell-spreadsheet .table-row-cell {
-fx-background-color: transparent;
}
/* NORMAL CELL */
.spreadsheet-cell:filled:selected,
.spreadsheet-cell:filled:focused:selected,
.spreadsheet-cell:filled:focused:selected:hover {
-fx-background-color: #FFDA8C;
-fx-border-color: #a9a9a9;
-fx-border-width : 0.5px;
-fx-text-fill: -fx-selection-bar-text;
}
.spreadsheet-cell:hover,
.spreadsheet-cell:filled:focused {
-fx-background-color: #988490;
-fx-text-fill: -fx-text-inner-color;
-fx-background-insets: 0, 0 0 1 0;
}
.spreadsheet-cell{
-fx-padding: 0 0 0 0.2em;
-fx-border-color: black;
-fx-border-width : 0.3px;
-fx-background-color: -fx-table-cell-border-color,white;
}
.tooltip {
-fx-background-radius: 0px;
-fx-background-color:
linear-gradient(#cec340, #a59c31),
linear-gradient(#fefefc, #e6dd71),
linear-gradient(#fef592, #e5d848);
-fx-background-insets: 0,1,2;
-fx-padding: 0.333333em 0.666667em 0.333333em 0.666667em; /* 4 8 4 8 */
-fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 8, 0.0 , 0 , 0 );
-fx-text-fill:black;
}
/* FIXED HEADERS */
VerticalHeader > Label.fixed{
-fx-background-color: -fx-box-border, -fx-inner-border, linear-gradient(to left, derive(-fx-color,-20%) ,derive(-fx-color,-10%));
-fx-font-style : italic;
}
HorizontalHeaderColumn > TableColumnHeader.column-header.table-column.fixed{
-fx-background-color: -fx-box-border, -fx-inner-border, linear-gradient(to top, derive(-fx-color,-20%) ,derive(-fx-color,-10%));
-fx-font-style : italic;
}
/* HORIZONTAL AND VERTICAL HEADER SELECTION */
VerticalHeader > Label {
-fx-background-color: -fx-box-border, -fx-inner-border, linear-gradient(to left, derive(-fx-color,-5%) ,derive(-fx-color,5%));
-fx-background-insets: 0, 0 1 1 0, 1 2 2 1;
-fx-font-weight: bold;
-fx-size: 2em;
-fx-text-fill: -fx-selection-bar-text;
/*-fx-padding: 0.166667em;*/
/*-fx-label-padding:0 0 0 20;*/
-fx-alignment: center;
-fx-font-style : normal;
}
VerticalHeader > Label.selected{
-fx-background-color: -fx-box-border, -fx-inner-border, linear-gradient(to right, derive(#FFDB6D,-10%) ,derive(#FFDB6D,10%));
-fx-background-insets: 0, 0 1 1 0, 1 2 2 1;
-fx-font-weight: bold;
-fx-size: 2em;
-fx-text-fill: -fx-selection-bar-text;
-fx-alignment: center;
-fx-border-color : #FFDB6D;
}
HorizontalHeaderColumn > TableColumnHeader.column-header.table-column.selected{
-fx-background-color: -fx-box-border, -fx-inner-border, linear-gradient(to bottom, derive(#FFDB6D,-10%) ,derive(#FFDB6D,10%));
-fx-background-insets: 0, 0 1 1 0, 1 2 2 1;
-fx-font-weight: bold;
-fx-size: 2em;
-fx-text-fill: -fx-selection-bar-text;
-fx-alignment: center;
-fx-border-color : #FFDB6D;
}
.text-field.error{
-fx-background-color: red;
}
/* HORIZONTAL HEADER VISIBILITY */
.column-header-background.invisible { visibility: hidden; -fx-padding: -1em; }
.comment{
-fx-background-color: red;
-fx-shape : "M 0 0 L -1 0 L 0 1 z";
}
/* TextField must squeeze tight, so no padding
on top and bottom */
.spreadsheet-cell TextField{
-fx-padding : 0 7 0 7 ;
}
.indicationLabel{
-fx-font-style : italic;
}
/* PICKERS */
.picker-label{
-fx-graphic: url("picker.png");
-fx-background-color: transparent;
-fx-padding: 0 0 0 0;
-fx-alignment: center;
}
.picker-label:hover{
-fx-effect:dropshadow(gaussian, black, 10, 0.1, 0, 0);
-fx-cursor:hand;
} | 0.349422 | 0.123603 |
@import url("./nord.css");
@import url("./root.css");
@import url("./classes/card.css");
@import url("./classes/logo.css");
@import url("./classes/buttons.css");
@import url("./classes/footer.css");
html {
scroll-behavior: smooth;
scrollbar-color: var(--nord2) var(--nord0);
}
body {
background-color: var(--nord0);
background-image: url("https://acutewoof.github.io/wall.jpg");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
color: var(--nord4);
font-family: sans-serif;
text-align: justify;
margin: 0;
}
* {
font-family: sans-serif;
}
main {
padding: 1vh 9vw;
min-height: calc(100vh - 3rem - 2rem);
}
nav {
background: var(--nord2);
height: 1rem;
padding: 1rem;
position: relative;
}
nav * * {
margin: 0.5rem;
}
nav .nav-right {
text-align: right;
position: absolute;
right: 1rem;
}
nav .nav-left {
text-align: left;
position: absolute;
left: 1rem;
}
nav a {
color: var(--nord6);
text-decoration: none;
}
nav a:hover {
color: var(--nord7);
text-decoration: none;
background-color: unset;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: sans-serif;
font-weight: 700;
line-height: 1.1;
}
h1 {
font-size: 2.25rem;
text-align: center;
}
h2 {
font-size: 1.575rem;
}
h3 {
font-size: 1.5rem;
}
h4 {
font-size: 1.125rem;
}
h1,
h2,
h3,
h4 {
margin-top: 1.25rem;
}
p {
line-height: 1.5;
margin: 1.875rem 0;
}
code {
font-family: monospace;
font-size: 1rem;
padding: 0.1rem;
background-color: var(--nord1);
border-radius: 2px;
}
a {
color: var(--nord8);
}
a:hover {
text-decoration: none;
color: var(--nord0);
background-color: var(--nord8);
}
blockquote {
color: var(--nord5);
font-style: italic;
}
blockquote p:first-child {
margin-top: 0;
}
hr.small {
max-width: 6.25rem;
margin: 1rem auto;
border-width: 0.25rem;
border-color: inherit;
border-radius: 0.1875rem;
}
input {
background-color: var(--nord1);
border-color: var(--nord2);
color: var(--nord4);
border-style: solid;
}
textarea {
background-color: var(--nord1);
border-color: var(--nord2);
color: var(--nord4);
border-style: solid;
}
pre {
background-color: var(--nord1);
} | styles/main.css | @import url("./nord.css");
@import url("./root.css");
@import url("./classes/card.css");
@import url("./classes/logo.css");
@import url("./classes/buttons.css");
@import url("./classes/footer.css");
html {
scroll-behavior: smooth;
scrollbar-color: var(--nord2) var(--nord0);
}
body {
background-color: var(--nord0);
background-image: url("https://acutewoof.github.io/wall.jpg");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
color: var(--nord4);
font-family: sans-serif;
text-align: justify;
margin: 0;
}
* {
font-family: sans-serif;
}
main {
padding: 1vh 9vw;
min-height: calc(100vh - 3rem - 2rem);
}
nav {
background: var(--nord2);
height: 1rem;
padding: 1rem;
position: relative;
}
nav * * {
margin: 0.5rem;
}
nav .nav-right {
text-align: right;
position: absolute;
right: 1rem;
}
nav .nav-left {
text-align: left;
position: absolute;
left: 1rem;
}
nav a {
color: var(--nord6);
text-decoration: none;
}
nav a:hover {
color: var(--nord7);
text-decoration: none;
background-color: unset;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: sans-serif;
font-weight: 700;
line-height: 1.1;
}
h1 {
font-size: 2.25rem;
text-align: center;
}
h2 {
font-size: 1.575rem;
}
h3 {
font-size: 1.5rem;
}
h4 {
font-size: 1.125rem;
}
h1,
h2,
h3,
h4 {
margin-top: 1.25rem;
}
p {
line-height: 1.5;
margin: 1.875rem 0;
}
code {
font-family: monospace;
font-size: 1rem;
padding: 0.1rem;
background-color: var(--nord1);
border-radius: 2px;
}
a {
color: var(--nord8);
}
a:hover {
text-decoration: none;
color: var(--nord0);
background-color: var(--nord8);
}
blockquote {
color: var(--nord5);
font-style: italic;
}
blockquote p:first-child {
margin-top: 0;
}
hr.small {
max-width: 6.25rem;
margin: 1rem auto;
border-width: 0.25rem;
border-color: inherit;
border-radius: 0.1875rem;
}
input {
background-color: var(--nord1);
border-color: var(--nord2);
color: var(--nord4);
border-style: solid;
}
textarea {
background-color: var(--nord1);
border-color: var(--nord2);
color: var(--nord4);
border-style: solid;
}
pre {
background-color: var(--nord1);
} | 0.393851 | 0.062303 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix('http://www.tumblr.com/'), url-prefix('https://www.tumblr.com/') {
body {
background: url('http://i61.tinypic.com/2yowvtg.jpg') center right #D1E2EB repeat fixed !important;
}
#logo {height: 0 !important;
width: 0 !important;
padding-left: 230px !important;
padding-top: 64px !important;
background: url(http://i1229.photobucket.com/albums/ee476/Foxiez/RenTumblrLogo_zpsa5549f79.png~original) no-repeat !important;}
.dashboard_nav_item{border:1px solid #C7C7C7!important; background:#c7c7c7!important; margin-bottom:5px;margin-top:5px;}
.dashboard_nav_item a{color:#fff !important;background-image: none!important;border:0px!important;}
.dashboard_nav_item a:hover{color:#c7c7c7 !important;}
.nav_item{color:#c7c7c7 !important;background-image: none!important;border:0px!important;}
.dashboard_nav_title{color:#c7c7c7!important;
font-size:20px!important;
font-family:georgia!important;
font-style:italic;}
#dashboard_switch_blog_arrow_current{background-image: none!important;
color:#fff!important;}
#right_column a#dashboard_switch_blog_menu_current{
border-left:0px!important;
border-right:0px!important;
border-top:0px!important;
box-shadow:inset 0 0 0px!important ;
-moz-box-shadow:inset 0 0 0px!important;
background:url('http://i61.tinypic.com/elb7kh.jpg')!important;
display: inline-block;
padding: 5px 10px 6px;
color: #fff;
text-decoration: none;
font-family: Arial, Helvetica, Helvetica Neue, Verdana, sans-serif;
font-size:20px!important;
font-weight: bold!important;
line-height: 1;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-moz-box-shadow: 0 1px 3px #999;
-webkit-box-shadow: 0 1px 3px #999;
text-shadow: 0 -1px 1px #d12b95;
border-bottom: 1px solid #d12b95;
position: relative;
cursor: pointer;
}
#dashboard_nav_following{
border-left:0px!important;
border-right:0px!important;
border-top:0px!important;
box-shadow:inset 0 0 0px!important ;
-moz-box-shadow:inset 0 0 0px!important;
background:url('http://i61.tinypic.com/elb7kh.jpg')!important;
display: inline-block;
padding: 5px 10px 6px;
color: #fff;
text-decoration: none;
font-family: Arial, Helvetica, Helvetica Neue, Verdana, sans-serif;
font-size:12px!important;
font-weight: bold!important;
line-height: 1;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-moz-box-shadow: 0 1px 3px #999;
-webkit-box-shadow: 0 1px 3px #999;
text-shadow: 0 -1px 1px #d12b95;
border-bottom: 1px solid #d12b95;
position: relative;
cursor: pointer;
}
.post_info{border-bottom: 3px solid #c7c7c7!important;}
#dashboard_nav_following span .icon{display:none;}
#dashboard_nav_following .icon dude span{display:none!important;}
.dashboard_switch_blog_menu_item{color:#c7c7c7!important; background:#c7c7c7 !important;}
ul .dashboard_subpages{color:#c7c7c7 !important;}
ol#posts li blockquote,
body.mceContentBody blockquote {
margin-left: 0 !important;
margin-right: 0 !important;
padding-left: 10px !important;
border-width: 4px !important;
border-color: #fff1fa !important;
}
ol#posts li blockquote blockquote,
body.mceContentBody blockquote blockquote {
border-color: #fff1fa !important;
}
ol#posts li blockquote blockquote blockquote,
body.mceContentBody blockquote blockquote blockquote {
border-color: #c7c7c7 !important;
}
ol#posts li blockquote blockquote blockquote blockquote,
body.mceContentBody blockquote blockquote blockquote blockquote {
border-color: #D8E3EB !important;
}
ol#posts li blockquote blockquote blockquote blockquote blockquote,
body.mceContentBody blockquote blockquote blockquote blockquote blockquote {
border-color: #c7c7c7!important;
}
#dashboard_index #left_column, #right_column {background-color: transparent !important;}
div.l-content.l-content.l-content {
background: #D8E3EB !important;
}
#left_column, #right_column {background-color: transparent !important;}
div.l-content.l-content.l-content {
background: #D8E3EB !important;
border:2px dashed #c7c7c7;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
margin: auto;
padding: 20px 20px;
}
h1 {
color: #fff;
}
.no_posts_found, h1.dashboard_header {
color: #fff;
}
img#content_top, img#content_bottom {
display: none;
}
.notification a {
color:#fff;
border: 0px!important;
}
#auto_pagination_loader img { display: none; }
#auto_pagination_loader {
text-shadow: #ff7ecf 2px 1px 0px;
background: transparent!important;
border: 0px!important;
font-weight: bold;
font-family: Georgia, serif;
font-style: italic;
color: #D1E2EB;
}
#right_column a#dashboard_switch_blog_menu_current {
color:#fff !important;
}
#right_column .dashboard_nav_item {
background-attachment: initial;
background-position-x: 50%;
background-position-y: 100%;
background-origin: initial;
background-clip: initial;
background-color: initial;
}
#right_column .dashboard_nav_item #hide_radar {
background-image: none;
background-repeat-x: no-repeat;
background-repeat-y: repeat;
background-attachment: initial;
background-position-x: 0%;
background-position-y: 0%;
background-origin: initial;
background-clip: initial;
background-color: transparent;
}
#right_column .dashboard_nav_item .dashboard_controls_radar_media.photo, #right_column .dashboard_nav_item .dashboard_controls_radar_media.photoset, #right_column .dashboard_nav_item .dashboard_controls_radar_media.video {
background: #fff;
}
#nav .nav_item.active {
background: #fff!important;
color:#ff93d7!important;
}
.nav_item_nipple a{color:#ff93d7!important;}
#nav .nav_item .nav_item_nipple {
background: #ff79cd !important;
}
ol#posts li.notification.alt {
background-color: #ff86d2 !important;
}
ol#posts li.notification.first_notification {
background-color: #ff79cd!important;
}
ol#posts li.notification {
background-color: #ff86d2 !important;
border-bottom: 1px solid #ff62c5 !important;
}
ol#posts li.notification.last_notification {
color:#fff;
text-decoration:none;
border-bottom: 1px solid #ff62c5;
}
ol#posts li.post .permalink {
background: #ffa6de;
}
#right_column .dashboard_nav_item #dashboard_controls_suggested_blogs {
background: #fff;
border: solid #fff;
}
ol#posts li.post .post_avatar{
border: 2px solid #cccccc;
}
#right_column .dashboard_nav_item #dashboard_controls_suggested_blogs .dashboard_controls_suggested_blog {
border-top: 1px solid #cccccc;
border-bottom: 1px solid #cccccc;
}
#right_column a#dashboard_switch_blog_menu_current:hover {
background:#cccccc !important;
}
#right_column a#dashboard_switch_blog_menu_current:hover #dashboard_switch_blog_arrow_current {
background: none;
}
form.dashboard_options_form {
background-color: #ff94e2;
border-bottom: 1px solid #fff;
border-bottom-left-radius: 10px 10px;
border-bottom-left-radius: 10px 10px;
border-bottom-right-radius: 10px 10px;
border-bottom-right-radius: 10px 10px;
border-top-left-radius: 10px 10px;
border-top-left-radius: 10px 10px;
border-top-right-radius: 10px 10px;
border-top-right-radius: 10px 10px;
color: #fff;
display: block;
font-size: 13px;
margin-bottom: 25px;
padding: 15px 22px;
}
form.dashboard_options_form .option_container {
border-top: 1px solid #fff;
}
.no_posts_found, h1.dashboard_header {
color: #fff;
}
}
@-moz-document url-prefix('http://www.tumblr.com/'), url-prefix('https://www.tumblr.com/') {
.new_post_label{
font-size:0px !important;
}
.new_post_label_icon{background-image:none !important}
#new_post{
background: url('http://img88.imageshack.us/img88/5471/unled4tz.png') center no-repeat;
background-color:#fff !important;
}
img[src*="http://assets.tumblr.com/images/new_post_icons_no_labels.png"]{
width:0;
height:70px;
padding-right:250px;
opacity: 0;
}} | data/usercss/98624.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix('http://www.tumblr.com/'), url-prefix('https://www.tumblr.com/') {
body {
background: url('http://i61.tinypic.com/2yowvtg.jpg') center right #D1E2EB repeat fixed !important;
}
#logo {height: 0 !important;
width: 0 !important;
padding-left: 230px !important;
padding-top: 64px !important;
background: url(http://i1229.photobucket.com/albums/ee476/Foxiez/RenTumblrLogo_zpsa5549f79.png~original) no-repeat !important;}
.dashboard_nav_item{border:1px solid #C7C7C7!important; background:#c7c7c7!important; margin-bottom:5px;margin-top:5px;}
.dashboard_nav_item a{color:#fff !important;background-image: none!important;border:0px!important;}
.dashboard_nav_item a:hover{color:#c7c7c7 !important;}
.nav_item{color:#c7c7c7 !important;background-image: none!important;border:0px!important;}
.dashboard_nav_title{color:#c7c7c7!important;
font-size:20px!important;
font-family:georgia!important;
font-style:italic;}
#dashboard_switch_blog_arrow_current{background-image: none!important;
color:#fff!important;}
#right_column a#dashboard_switch_blog_menu_current{
border-left:0px!important;
border-right:0px!important;
border-top:0px!important;
box-shadow:inset 0 0 0px!important ;
-moz-box-shadow:inset 0 0 0px!important;
background:url('http://i61.tinypic.com/elb7kh.jpg')!important;
display: inline-block;
padding: 5px 10px 6px;
color: #fff;
text-decoration: none;
font-family: Arial, Helvetica, Helvetica Neue, Verdana, sans-serif;
font-size:20px!important;
font-weight: bold!important;
line-height: 1;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-moz-box-shadow: 0 1px 3px #999;
-webkit-box-shadow: 0 1px 3px #999;
text-shadow: 0 -1px 1px #d12b95;
border-bottom: 1px solid #d12b95;
position: relative;
cursor: pointer;
}
#dashboard_nav_following{
border-left:0px!important;
border-right:0px!important;
border-top:0px!important;
box-shadow:inset 0 0 0px!important ;
-moz-box-shadow:inset 0 0 0px!important;
background:url('http://i61.tinypic.com/elb7kh.jpg')!important;
display: inline-block;
padding: 5px 10px 6px;
color: #fff;
text-decoration: none;
font-family: Arial, Helvetica, Helvetica Neue, Verdana, sans-serif;
font-size:12px!important;
font-weight: bold!important;
line-height: 1;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-moz-box-shadow: 0 1px 3px #999;
-webkit-box-shadow: 0 1px 3px #999;
text-shadow: 0 -1px 1px #d12b95;
border-bottom: 1px solid #d12b95;
position: relative;
cursor: pointer;
}
.post_info{border-bottom: 3px solid #c7c7c7!important;}
#dashboard_nav_following span .icon{display:none;}
#dashboard_nav_following .icon dude span{display:none!important;}
.dashboard_switch_blog_menu_item{color:#c7c7c7!important; background:#c7c7c7 !important;}
ul .dashboard_subpages{color:#c7c7c7 !important;}
ol#posts li blockquote,
body.mceContentBody blockquote {
margin-left: 0 !important;
margin-right: 0 !important;
padding-left: 10px !important;
border-width: 4px !important;
border-color: #fff1fa !important;
}
ol#posts li blockquote blockquote,
body.mceContentBody blockquote blockquote {
border-color: #fff1fa !important;
}
ol#posts li blockquote blockquote blockquote,
body.mceContentBody blockquote blockquote blockquote {
border-color: #c7c7c7 !important;
}
ol#posts li blockquote blockquote blockquote blockquote,
body.mceContentBody blockquote blockquote blockquote blockquote {
border-color: #D8E3EB !important;
}
ol#posts li blockquote blockquote blockquote blockquote blockquote,
body.mceContentBody blockquote blockquote blockquote blockquote blockquote {
border-color: #c7c7c7!important;
}
#dashboard_index #left_column, #right_column {background-color: transparent !important;}
div.l-content.l-content.l-content {
background: #D8E3EB !important;
}
#left_column, #right_column {background-color: transparent !important;}
div.l-content.l-content.l-content {
background: #D8E3EB !important;
border:2px dashed #c7c7c7;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
margin: auto;
padding: 20px 20px;
}
h1 {
color: #fff;
}
.no_posts_found, h1.dashboard_header {
color: #fff;
}
img#content_top, img#content_bottom {
display: none;
}
.notification a {
color:#fff;
border: 0px!important;
}
#auto_pagination_loader img { display: none; }
#auto_pagination_loader {
text-shadow: #ff7ecf 2px 1px 0px;
background: transparent!important;
border: 0px!important;
font-weight: bold;
font-family: Georgia, serif;
font-style: italic;
color: #D1E2EB;
}
#right_column a#dashboard_switch_blog_menu_current {
color:#fff !important;
}
#right_column .dashboard_nav_item {
background-attachment: initial;
background-position-x: 50%;
background-position-y: 100%;
background-origin: initial;
background-clip: initial;
background-color: initial;
}
#right_column .dashboard_nav_item #hide_radar {
background-image: none;
background-repeat-x: no-repeat;
background-repeat-y: repeat;
background-attachment: initial;
background-position-x: 0%;
background-position-y: 0%;
background-origin: initial;
background-clip: initial;
background-color: transparent;
}
#right_column .dashboard_nav_item .dashboard_controls_radar_media.photo, #right_column .dashboard_nav_item .dashboard_controls_radar_media.photoset, #right_column .dashboard_nav_item .dashboard_controls_radar_media.video {
background: #fff;
}
#nav .nav_item.active {
background: #fff!important;
color:#ff93d7!important;
}
.nav_item_nipple a{color:#ff93d7!important;}
#nav .nav_item .nav_item_nipple {
background: #ff79cd !important;
}
ol#posts li.notification.alt {
background-color: #ff86d2 !important;
}
ol#posts li.notification.first_notification {
background-color: #ff79cd!important;
}
ol#posts li.notification {
background-color: #ff86d2 !important;
border-bottom: 1px solid #ff62c5 !important;
}
ol#posts li.notification.last_notification {
color:#fff;
text-decoration:none;
border-bottom: 1px solid #ff62c5;
}
ol#posts li.post .permalink {
background: #ffa6de;
}
#right_column .dashboard_nav_item #dashboard_controls_suggested_blogs {
background: #fff;
border: solid #fff;
}
ol#posts li.post .post_avatar{
border: 2px solid #cccccc;
}
#right_column .dashboard_nav_item #dashboard_controls_suggested_blogs .dashboard_controls_suggested_blog {
border-top: 1px solid #cccccc;
border-bottom: 1px solid #cccccc;
}
#right_column a#dashboard_switch_blog_menu_current:hover {
background:#cccccc !important;
}
#right_column a#dashboard_switch_blog_menu_current:hover #dashboard_switch_blog_arrow_current {
background: none;
}
form.dashboard_options_form {
background-color: #ff94e2;
border-bottom: 1px solid #fff;
border-bottom-left-radius: 10px 10px;
border-bottom-left-radius: 10px 10px;
border-bottom-right-radius: 10px 10px;
border-bottom-right-radius: 10px 10px;
border-top-left-radius: 10px 10px;
border-top-left-radius: 10px 10px;
border-top-right-radius: 10px 10px;
border-top-right-radius: 10px 10px;
color: #fff;
display: block;
font-size: 13px;
margin-bottom: 25px;
padding: 15px 22px;
}
form.dashboard_options_form .option_container {
border-top: 1px solid #fff;
}
.no_posts_found, h1.dashboard_header {
color: #fff;
}
}
@-moz-document url-prefix('http://www.tumblr.com/'), url-prefix('https://www.tumblr.com/') {
.new_post_label{
font-size:0px !important;
}
.new_post_label_icon{background-image:none !important}
#new_post{
background: url('http://img88.imageshack.us/img88/5471/unled4tz.png') center no-repeat;
background-color:#fff !important;
}
img[src*="http://assets.tumblr.com/images/new_post_icons_no_labels.png"]{
width:0;
height:70px;
padding-right:250px;
opacity: 0;
}} | 0.255622 | 0.079675 |
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans|Roboto:400,700&display=swap");
body {
background-color: #e7e7e7;
}
/* Start app styling */
.app h1 {
font-family: "Montserrat", "Roboto", sans-serif;
text-transform: capitalize;
text-align: center;
font-weight: 700;
}
.app .icon {
color: #55b7d3;
}
/* End app styling */
/* Start global style */
.container {
width: 95%;
margin: 0 auto;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Montserrat", "Roboto", sans-serif;
font-weight: 700;
color: #272727;
}
/* End products container */
/* Start navbar */
nav {
display: block;
width: 100%;
margin-bottom: 10px;
}
nav a {
font-family: "Montserrat", "Roboto", sans-serif;
font-weight: 700;
text-decoration: none;
padding: 10px;
text-align: center;
color: #272727;
display: block;
transition: all .5s ease-in-out;
border-bottom: 2px solid #272727;
}
nav a.active,
nav a:hover,
nav a:focus {
border-bottom-color: #686868;
color: #686868;
}
/* End navbar */
/* Start product card */
.product-card {
padding: 0;
width: 100%;
margin: 10px auto;
max-width: 300px;
border-radius: 10px;
background-color: white;
box-shadow: 5px 5px 7px #686868;
}
.product-card .product-img {
width: 100%;
}
.product-card .product-info {
padding: 15px;
padding-top: 0;
}
.product-card .product-info .product-title {
font-family: "Montserrat", "Roboto", sans-serif;
text-transform: capitalize;
font-weight: 400;
font-size: 1.5em;
margin-bottom: 10px;
}
.product-card .product-info .product-price {
font-family: "Montserrat", "Roboto", sans-serif;
display: flex;
flex-wrap: wrap;
text-align: center;
font-weight: 700;
}
.product-card .product-info .product-price > span {
width: calc(50% - (5px * 2));
padding: 5px;
display: block;
}
.product-card .product-info .product-price .product-price-new {
font-size: 1em;
}
.product-card .product-info .product-price .product-price-old {
font-size: .75em;
text-decoration: line-through;
color: #a7a7a7;
}
.product-card .product-info .product-rate {
margin: 10px 0;
}
.product-card .product-info .product-rate .icon {
margin: 3px;
color: #a7a7a7;
}
.product-card .product-info .product-rate .icon.active {
color: #686868;
}
.product-card .product-info .product-description {
font-family: "Open Sans", sans-serif;
line-height: 1.5;
margin: 10px 0 20px 0;
color: #686868;
}
.product-card .product-info .product-btn {
font-family: "Montserrat", "Roboto", sans-serif;
font-weight: 700;
}
.product-card .product-info .product-btn button {
display: block;
width: 100%;
background-color: #28a745;
color: white;
padding: 10px;
font-size: 1em;
font-weight: 700;
border-radius: 5px;
text-transform: uppercase;
transition: background-color .5s ease-in-out;
cursor: pointer;
border: 0;
}
.product-card .product-info .product-btn button:hover {
background-color: #1e7e34;
}
.product-card .product-info .product-btn button .icon {
margin: 0 10px;
}
/* End product card */ | src/App.css | @import url("https://fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans|Roboto:400,700&display=swap");
body {
background-color: #e7e7e7;
}
/* Start app styling */
.app h1 {
font-family: "Montserrat", "Roboto", sans-serif;
text-transform: capitalize;
text-align: center;
font-weight: 700;
}
.app .icon {
color: #55b7d3;
}
/* End app styling */
/* Start global style */
.container {
width: 95%;
margin: 0 auto;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Montserrat", "Roboto", sans-serif;
font-weight: 700;
color: #272727;
}
/* End products container */
/* Start navbar */
nav {
display: block;
width: 100%;
margin-bottom: 10px;
}
nav a {
font-family: "Montserrat", "Roboto", sans-serif;
font-weight: 700;
text-decoration: none;
padding: 10px;
text-align: center;
color: #272727;
display: block;
transition: all .5s ease-in-out;
border-bottom: 2px solid #272727;
}
nav a.active,
nav a:hover,
nav a:focus {
border-bottom-color: #686868;
color: #686868;
}
/* End navbar */
/* Start product card */
.product-card {
padding: 0;
width: 100%;
margin: 10px auto;
max-width: 300px;
border-radius: 10px;
background-color: white;
box-shadow: 5px 5px 7px #686868;
}
.product-card .product-img {
width: 100%;
}
.product-card .product-info {
padding: 15px;
padding-top: 0;
}
.product-card .product-info .product-title {
font-family: "Montserrat", "Roboto", sans-serif;
text-transform: capitalize;
font-weight: 400;
font-size: 1.5em;
margin-bottom: 10px;
}
.product-card .product-info .product-price {
font-family: "Montserrat", "Roboto", sans-serif;
display: flex;
flex-wrap: wrap;
text-align: center;
font-weight: 700;
}
.product-card .product-info .product-price > span {
width: calc(50% - (5px * 2));
padding: 5px;
display: block;
}
.product-card .product-info .product-price .product-price-new {
font-size: 1em;
}
.product-card .product-info .product-price .product-price-old {
font-size: .75em;
text-decoration: line-through;
color: #a7a7a7;
}
.product-card .product-info .product-rate {
margin: 10px 0;
}
.product-card .product-info .product-rate .icon {
margin: 3px;
color: #a7a7a7;
}
.product-card .product-info .product-rate .icon.active {
color: #686868;
}
.product-card .product-info .product-description {
font-family: "Open Sans", sans-serif;
line-height: 1.5;
margin: 10px 0 20px 0;
color: #686868;
}
.product-card .product-info .product-btn {
font-family: "Montserrat", "Roboto", sans-serif;
font-weight: 700;
}
.product-card .product-info .product-btn button {
display: block;
width: 100%;
background-color: #28a745;
color: white;
padding: 10px;
font-size: 1em;
font-weight: 700;
border-radius: 5px;
text-transform: uppercase;
transition: background-color .5s ease-in-out;
cursor: pointer;
border: 0;
}
.product-card .product-info .product-btn button:hover {
background-color: #1e7e34;
}
.product-card .product-info .product-btn button .icon {
margin: 0 10px;
}
/* End product card */ | 0.278355 | 0.060947 |
body{
margin:0px;
padding:0px;
background:url(images/bodybg.png) repeat-x;
background-color:#4f4f4f;
}
.wrap{
width:923px;
margin:0 auto;
}
p{
margin:0px;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#FFFFFF;
line-height:20px;
}
.topheader{
width:923px;
height:134px;
border-bottom:#4f4f4f solid 1px;
}
.logo{
float:left;
background:url(images/logo.png) no-repeat;
height:134px;
width:273px;
}
.righttext{
float:left;
width:650px;
height:134px;
text-align:right;
}
.righttext h1{
margin:0px;
color:#737374;
font-family:Arial, Helvetica, sans-serif;
font-size:24px;
margin-top:92px;
font-weight:normal;
}
.topmenu{
float:left;
width:923px;
padding:10px 0px;
}
.topmenu ul{
margin:0px;
padding:0px;
list-style-type:none;
}
.topmenu ul li{
display:block;
float:left;
margin:0px 47px;
}
.topmenu ul li a{
display:block;
color:#FFFFFF;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
text-decoration:none;
padding-top:50px;
text-align:center;
}
.topmenu ul li.overview a{
background:url(images/overview.png) no-repeat top center;
}
.topmenu ul li.unisetting a{
background:url(images/unisetting.png) no-repeat top center;
}
.topmenu ul li.modules a{
background:url(images/modules.png) no-repeat top center;
}
.topmenu ul li.user a{
background:url(images/user.png) no-repeat top center;
}
.topmenu ul li.livechat a{
background:url(images/livechat.png) no-repeat top center;
}
.topmenu ul li.Logout a{
background:url(images/logout.png) no-repeat top center;
}
.topmenu ul li.overview:hover a{
background:url(images/overview-hover.png) no-repeat top center;
}
.topmenu ul li.unisetting:hover a{
background:url(images/unisetting-hover.png) no-repeat top center;
}
.topmenu ul li.modules:hover a{
background:url(images/modules-hover.png) no-repeat top center;
}
.topmenu ul li.user:hover a{
background:url(images/user-hover.png) no-repeat top center;
}
.topmenu ul li.livechat:hover a{
background:url(images/livechat-hover.png) no-repeat top center;
}
.topmenu ul li.Logout:hover a{
background:url(images/logout-hover.png) no-repeat top center;
}
.topmenu ul li a:hover{
color:#bfd730;
}
/*****current state for top menu*****/
.topmenu ul li#current a{
color:#bfd730;
}
.topmenu ul li.overview#current a{
background:url(images/overview-hover.png) no-repeat top center;
}
.topmenu ul li.modules#current a{
background:url(images/modules-hover.png) no-repeat top center;
}
.topmenu ul li.unisetting#current a{
background:url(images/unisetting-hover.png) no-repeat top center;
}
.topmenu ul li.user#current a{
background:url(images/user-hover.png) no-repeat top center;
}
.topmenu ul li.livechat#current a{
background:url(images/livechat-hover.png) no-repeat top center;
}
.container-top{
float:left;
background:url(images/con-top.png) no-repeat;
width:923px;
height:28px;
}
/*.container{
float:left;
width:883px;
background-color:#737374;
padding:0px 20px;
}*/
.container{
float:left;
width:883px;
background:url(images/containerbg.png) repeat-y;
padding:0px 20px;
}
.container h2{
margin:0px;
float:left;
font-family:Arial, Helvetica, sans-serif;
font-size:22px;
font-weight:bold;
color:#FFFFFF;
}
.rightbtn{
float:right;
}
.content{
float:left;
width:883px;
background-color:#dadada;
margin:15px 0px;
}
/**html .content{
width:800px;
}*/
.content-bar{
background:url(images/container-headerbg.png) repeat-x;
width:883px;
height:35px;
}
.content .addpage{
margin:10px 20px;
}
.content label{
color:#000000;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
line-height:25px;
}
.content input[type="text"]{
width:200px;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content input[type="password"]:focus{
background-color:#FFFFCC;
}
.content input[type="password"]{
width:200px;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content input[type="text"]:focus{
background-color:#FFFFCC;
}
.content select{
width:208px;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content textarea:focus{
background-color:#FFFFCC;
}
.content textarea{
width:300px;
height:auto;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content checkbox{
margin:4px;
}
#fields_area li{
width:800px;
}
.content .tiny input[type="text"]{
width:100px;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content .tiny input[type="text"].smallfield{
width:25px;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content .tiny input[type="password"]:focus{
background-color:#FFFFCC;
}
.content .tiny input[type="password"]{
width:100px;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content .tiny input[type="text"]:focus{
background-color:#FFFFCC;
}
.content .tiny select{
width:120px;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content .tiny textarea:focus{
background-color:#FFFFCC;
}
.content .tiny textarea{
width:200px;
height:auto;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content .tiny checkbox{
margin:2px;
}
.addbtn-right{
float:left;
width:883px;
text-align:right;
}
.container-bottom{
float:left;
background:url(images/cont-bottom.png) no-repeat;
width:923px;
height:28px;
}
.footer{
float:left;
width:923px;
margin-top:5px;
}
.copyrights{
float:left;
}
.copyrights a{
color:#FFFFFF;
text-decoration:none;
}
.copyrights a:hover{
color:#bfd730;
}
.contact-details{
margin:0px;
float:right;
text-align:right;
}
.tbl{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}
.tbl img{
vertical-align:middle;
}
.tbl a{
text-decoration:none;
color:#000000;
border:none;
}
.tbl .headerbar{
background:url(images/container-headerbg.png) repeat-x;
width:883px;
height:35px;
}
.tbl .alttr{
background-color:#b4b4b4;
}
.tbl th label{
color:#FFFFFF;
border-right:#737374 solid 1px;
}
.tbl th{
color:#FFFFFF;
border-right:#737374 solid 1px;
}
.tbl td{
text-align:center;
border-bottom:#737374 solid 1px;
border-right:#737374 solid 1px;
}
.tbl tr.selected{
background-color:#a9c5e6;
}
.tbl tr.childrow{
background-color:#a8b6c6;
}
.tbl td.childpage{
text-align:left;
padding-left:40px;
}
.tbl td.alignleft{
text-align:left;
padding-left:10px;
}
.tbl th.alignleft{
text-align:left;
padding-left:10px;
}
.tbl td.subpage{
text-align:left;
padding-left:20px;
}
.modulelist{
float:left;
width:883px;
margin:15px 0px;
}
.modulelist ul{
margin:0px;
padding:0px;
list-style-type:none;
}
.modulelist ul li{
display:block;
padding:15px 50px;
}
.modulelist ul li.news{
background:url(images/news.png) no-repeat center left;
}
.modulelist ul li.gallery{
background:url(images/gallery.png) no-repeat center left;
}
.modulelist ul li.slideshow{
background:url(images/imgslidshow.png) no-repeat center left;
}
.modulelist ul li.forms{
background:url(images/forms.png) no-repeat center left;
}
.modulelist ul li.expcontent{
background:url(images/exp-content.png) no-repeat center left;
}
.modulelist ul li.stylesheet{
background:url(images/st4.png) no-repeat center left;
}
.modulelist ul li.cusmodule{
background:url(images/custom-module.png) no-repeat center left;
}
.modulelist ul li a{
text-decoration:none;
color:#FFFFFF;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}
.modulelist ul li a:hover{
color:#bfd730;
}
.tblpagecont{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}
.tblpagecont .headerbar{
background:url(images/container-headerbg.png) repeat-x;
width:883px;
height:35px;
}
.tblpagecont th{
color:#FFFFFF;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
text-align:left;
padding-left:5px;
}
.tblpagecont tr.separator{
background-color:#737374;
}
.reinstate{
float:right;
margin-top:20px;
}
.reinstate table{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
text-align:right;
}
.reinstate table td{
padding:5px 2px;
}
.loginbg-container{
width:923px;
margin:140px auto;
}
.mainlogin{
width:697px;
margin:0 auto;
}
.sidelogo{
float:left;
background:url(images/sidelogo.png) no-repeat;
width:273px;
height:134px;
margin-top:50px;
margin-right:5px;
}
.topbar{
float:right;
background:url(images/liginbar.png) repeat-x;
border:#de5051 solid 1px;
width:405px;
height:23px;
padding:5px 5px 0px 5px;
}
.loginbox{
float:right;
width:417px;
background-color:#FFFFFF;
margin-top:3px;
}
.loginbox table{
margin:20px auto;
}
.loginbox table input[type="text"]{
width:180px;
margin:4px;
}
.loginbox table input[type="password"]{
width:180px;
margin:4px;
}
.loginbox table label{
color:#000000;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
line-height:25px;
}
.loginbtns{
background:url(images/btn-bg.png) no-repeat;
width:65px;
height:26px;
border:none;
outline:none;
padding:0px;
color:#8d8b8b;
cursor:pointer;
}
.validbar{
float:left;
width:878px;
height:23px;
-moz-border-radius:3px 3px 3px 3px;
background:url(images/greenbar2.png) repeat-x;
margin-top:5px;
border:#b1cc11 solid 1px;
padding-left:5px;
}
.invalidbar{
float:left;
width:878px;
height:23px;
-moz-border-radius:3px 3px 3px 3px;
background:url(images/liginbar.png) repeat-x;
margin-top:5px;
border:#de5051 solid 1px;
padding-left:5px;
}
.addbtn{
background:url(images/btnbg2.png) no-repeat;
width:78px;
height:27px;
border:none;
padding:0px;
color:#FFFFFF;
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
}
.addpagebtn{
background:url(images/addapage.png) no-repeat;
width:103px;
height:28px;
border:none;
padding:0px;
color:#FFFFFF;
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
cursor:pointer;
}
/* Pagnation style starts */
div.pagination {
padding:5px;
clear:both;
font-size:11px;
margin-bottom:10px;
}
div.pagination a {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #AAAADD;
text-decoration: none;
color: #000000;
}
div.pagination a:hover, div.pagination a:active {
border: 1px solid #76766c;
background:#b4b4b4;
color: #FFF;
}
div.pagination span.current {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #76766c;
font-weight: bold;
background:#b4b4b4;
color: #FFF;
}
div.pagination span.disabled {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 0px solid #EEE;
color: #DDD;
}
/* Pagnation style ends EEE*/ | admin/style.css | body{
margin:0px;
padding:0px;
background:url(images/bodybg.png) repeat-x;
background-color:#4f4f4f;
}
.wrap{
width:923px;
margin:0 auto;
}
p{
margin:0px;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#FFFFFF;
line-height:20px;
}
.topheader{
width:923px;
height:134px;
border-bottom:#4f4f4f solid 1px;
}
.logo{
float:left;
background:url(images/logo.png) no-repeat;
height:134px;
width:273px;
}
.righttext{
float:left;
width:650px;
height:134px;
text-align:right;
}
.righttext h1{
margin:0px;
color:#737374;
font-family:Arial, Helvetica, sans-serif;
font-size:24px;
margin-top:92px;
font-weight:normal;
}
.topmenu{
float:left;
width:923px;
padding:10px 0px;
}
.topmenu ul{
margin:0px;
padding:0px;
list-style-type:none;
}
.topmenu ul li{
display:block;
float:left;
margin:0px 47px;
}
.topmenu ul li a{
display:block;
color:#FFFFFF;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
text-decoration:none;
padding-top:50px;
text-align:center;
}
.topmenu ul li.overview a{
background:url(images/overview.png) no-repeat top center;
}
.topmenu ul li.unisetting a{
background:url(images/unisetting.png) no-repeat top center;
}
.topmenu ul li.modules a{
background:url(images/modules.png) no-repeat top center;
}
.topmenu ul li.user a{
background:url(images/user.png) no-repeat top center;
}
.topmenu ul li.livechat a{
background:url(images/livechat.png) no-repeat top center;
}
.topmenu ul li.Logout a{
background:url(images/logout.png) no-repeat top center;
}
.topmenu ul li.overview:hover a{
background:url(images/overview-hover.png) no-repeat top center;
}
.topmenu ul li.unisetting:hover a{
background:url(images/unisetting-hover.png) no-repeat top center;
}
.topmenu ul li.modules:hover a{
background:url(images/modules-hover.png) no-repeat top center;
}
.topmenu ul li.user:hover a{
background:url(images/user-hover.png) no-repeat top center;
}
.topmenu ul li.livechat:hover a{
background:url(images/livechat-hover.png) no-repeat top center;
}
.topmenu ul li.Logout:hover a{
background:url(images/logout-hover.png) no-repeat top center;
}
.topmenu ul li a:hover{
color:#bfd730;
}
/*****current state for top menu*****/
.topmenu ul li#current a{
color:#bfd730;
}
.topmenu ul li.overview#current a{
background:url(images/overview-hover.png) no-repeat top center;
}
.topmenu ul li.modules#current a{
background:url(images/modules-hover.png) no-repeat top center;
}
.topmenu ul li.unisetting#current a{
background:url(images/unisetting-hover.png) no-repeat top center;
}
.topmenu ul li.user#current a{
background:url(images/user-hover.png) no-repeat top center;
}
.topmenu ul li.livechat#current a{
background:url(images/livechat-hover.png) no-repeat top center;
}
.container-top{
float:left;
background:url(images/con-top.png) no-repeat;
width:923px;
height:28px;
}
/*.container{
float:left;
width:883px;
background-color:#737374;
padding:0px 20px;
}*/
.container{
float:left;
width:883px;
background:url(images/containerbg.png) repeat-y;
padding:0px 20px;
}
.container h2{
margin:0px;
float:left;
font-family:Arial, Helvetica, sans-serif;
font-size:22px;
font-weight:bold;
color:#FFFFFF;
}
.rightbtn{
float:right;
}
.content{
float:left;
width:883px;
background-color:#dadada;
margin:15px 0px;
}
/**html .content{
width:800px;
}*/
.content-bar{
background:url(images/container-headerbg.png) repeat-x;
width:883px;
height:35px;
}
.content .addpage{
margin:10px 20px;
}
.content label{
color:#000000;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
line-height:25px;
}
.content input[type="text"]{
width:200px;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content input[type="password"]:focus{
background-color:#FFFFCC;
}
.content input[type="password"]{
width:200px;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content input[type="text"]:focus{
background-color:#FFFFCC;
}
.content select{
width:208px;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content textarea:focus{
background-color:#FFFFCC;
}
.content textarea{
width:300px;
height:auto;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content checkbox{
margin:4px;
}
#fields_area li{
width:800px;
}
.content .tiny input[type="text"]{
width:100px;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content .tiny input[type="text"].smallfield{
width:25px;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content .tiny input[type="password"]:focus{
background-color:#FFFFCC;
}
.content .tiny input[type="password"]{
width:100px;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content .tiny input[type="text"]:focus{
background-color:#FFFFCC;
}
.content .tiny select{
width:120px;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content .tiny textarea:focus{
background-color:#FFFFCC;
}
.content .tiny textarea{
width:200px;
height:auto;
-moz-border-radius:3px;
border-color:#A8A8A8 #D8D8D8 #D8D8D8 #A8A8A8;
border-left:1px solid #A8A8A8;
border-style:solid;
border-width:1px;
margin:3px;
padding:3px;
}
.content .tiny checkbox{
margin:2px;
}
.addbtn-right{
float:left;
width:883px;
text-align:right;
}
.container-bottom{
float:left;
background:url(images/cont-bottom.png) no-repeat;
width:923px;
height:28px;
}
.footer{
float:left;
width:923px;
margin-top:5px;
}
.copyrights{
float:left;
}
.copyrights a{
color:#FFFFFF;
text-decoration:none;
}
.copyrights a:hover{
color:#bfd730;
}
.contact-details{
margin:0px;
float:right;
text-align:right;
}
.tbl{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}
.tbl img{
vertical-align:middle;
}
.tbl a{
text-decoration:none;
color:#000000;
border:none;
}
.tbl .headerbar{
background:url(images/container-headerbg.png) repeat-x;
width:883px;
height:35px;
}
.tbl .alttr{
background-color:#b4b4b4;
}
.tbl th label{
color:#FFFFFF;
border-right:#737374 solid 1px;
}
.tbl th{
color:#FFFFFF;
border-right:#737374 solid 1px;
}
.tbl td{
text-align:center;
border-bottom:#737374 solid 1px;
border-right:#737374 solid 1px;
}
.tbl tr.selected{
background-color:#a9c5e6;
}
.tbl tr.childrow{
background-color:#a8b6c6;
}
.tbl td.childpage{
text-align:left;
padding-left:40px;
}
.tbl td.alignleft{
text-align:left;
padding-left:10px;
}
.tbl th.alignleft{
text-align:left;
padding-left:10px;
}
.tbl td.subpage{
text-align:left;
padding-left:20px;
}
.modulelist{
float:left;
width:883px;
margin:15px 0px;
}
.modulelist ul{
margin:0px;
padding:0px;
list-style-type:none;
}
.modulelist ul li{
display:block;
padding:15px 50px;
}
.modulelist ul li.news{
background:url(images/news.png) no-repeat center left;
}
.modulelist ul li.gallery{
background:url(images/gallery.png) no-repeat center left;
}
.modulelist ul li.slideshow{
background:url(images/imgslidshow.png) no-repeat center left;
}
.modulelist ul li.forms{
background:url(images/forms.png) no-repeat center left;
}
.modulelist ul li.expcontent{
background:url(images/exp-content.png) no-repeat center left;
}
.modulelist ul li.stylesheet{
background:url(images/st4.png) no-repeat center left;
}
.modulelist ul li.cusmodule{
background:url(images/custom-module.png) no-repeat center left;
}
.modulelist ul li a{
text-decoration:none;
color:#FFFFFF;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}
.modulelist ul li a:hover{
color:#bfd730;
}
.tblpagecont{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}
.tblpagecont .headerbar{
background:url(images/container-headerbg.png) repeat-x;
width:883px;
height:35px;
}
.tblpagecont th{
color:#FFFFFF;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
text-align:left;
padding-left:5px;
}
.tblpagecont tr.separator{
background-color:#737374;
}
.reinstate{
float:right;
margin-top:20px;
}
.reinstate table{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
text-align:right;
}
.reinstate table td{
padding:5px 2px;
}
.loginbg-container{
width:923px;
margin:140px auto;
}
.mainlogin{
width:697px;
margin:0 auto;
}
.sidelogo{
float:left;
background:url(images/sidelogo.png) no-repeat;
width:273px;
height:134px;
margin-top:50px;
margin-right:5px;
}
.topbar{
float:right;
background:url(images/liginbar.png) repeat-x;
border:#de5051 solid 1px;
width:405px;
height:23px;
padding:5px 5px 0px 5px;
}
.loginbox{
float:right;
width:417px;
background-color:#FFFFFF;
margin-top:3px;
}
.loginbox table{
margin:20px auto;
}
.loginbox table input[type="text"]{
width:180px;
margin:4px;
}
.loginbox table input[type="password"]{
width:180px;
margin:4px;
}
.loginbox table label{
color:#000000;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
line-height:25px;
}
.loginbtns{
background:url(images/btn-bg.png) no-repeat;
width:65px;
height:26px;
border:none;
outline:none;
padding:0px;
color:#8d8b8b;
cursor:pointer;
}
.validbar{
float:left;
width:878px;
height:23px;
-moz-border-radius:3px 3px 3px 3px;
background:url(images/greenbar2.png) repeat-x;
margin-top:5px;
border:#b1cc11 solid 1px;
padding-left:5px;
}
.invalidbar{
float:left;
width:878px;
height:23px;
-moz-border-radius:3px 3px 3px 3px;
background:url(images/liginbar.png) repeat-x;
margin-top:5px;
border:#de5051 solid 1px;
padding-left:5px;
}
.addbtn{
background:url(images/btnbg2.png) no-repeat;
width:78px;
height:27px;
border:none;
padding:0px;
color:#FFFFFF;
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
}
.addpagebtn{
background:url(images/addapage.png) no-repeat;
width:103px;
height:28px;
border:none;
padding:0px;
color:#FFFFFF;
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
cursor:pointer;
}
/* Pagnation style starts */
div.pagination {
padding:5px;
clear:both;
font-size:11px;
margin-bottom:10px;
}
div.pagination a {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #AAAADD;
text-decoration: none;
color: #000000;
}
div.pagination a:hover, div.pagination a:active {
border: 1px solid #76766c;
background:#b4b4b4;
color: #FFF;
}
div.pagination span.current {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #76766c;
font-weight: bold;
background:#b4b4b4;
color: #FFF;
}
div.pagination span.disabled {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 0px solid #EEE;
color: #DDD;
}
/* Pagnation style ends EEE*/ | 0.353094 | 0.066055 |
.card-search{
padding: 15px ;
position: fixed;
right: 5vw;
width: 25vw ;
height: 74vh;
top: 13vh;
z-index: 100;
background: rgba(255, 255, 255, 0.4) ;
border-radius: 5px;
overflow-y: scroll;
}
.card-play{
padding: 15px ;
position: fixed;
left: 5vw;
width: 25vw ;
height: 74vh;
top: 13vh;
z-index: 100;
background: rgba(255, 255, 255, 0.4) ;
border-radius: 5px;
overflow-y: scroll;
}
.card-search::-webkit-scrollbar , .card-play::-webkit-scrollbar {
width: 0.6em;
}
.card-search::-webkit-scrollbar-track , .card-play::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.card-search::-webkit-scrollbar-thumb , .card-play::-webkit-scrollbar-thumb {
background-color: #302236;
outline: 1px solid slategrey;
}
.ligne {
display: flex;
}
.ligne .name , .ligne .art , .add p , .delete p {
margin-top: auto;
margin-bottom: auto;
}
.ligne .name {
color: #302236;
font-size: 20px ;
margin-right: 10px;
font-weight: 600;
}
.ligne .art {
color: rgba(48, 34, 54,0.6);
font-size: 19px ;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-weight: 500;
}
.ligne img {
border-radius: 50%;
width: 40px ;
height: 40px;
margin-right: 15px;
}
.card-search .title , .card-play .title {
color: white;
text-align: center;
margin-bottom: 20px ;
}
.card-search .title p , .card-play .title p {
font-weight: 500;
font-size: 19.2px;
font-family: "Open Sans", sans-serif;
}
.parent {
padding: 5px ;
margin-bottom: 3px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.add p , .delete p {
color: white;
font-family: Georgia, 'Times New Roman', Times, serif;
font-weight: 550;
font-size: 20px ;
margin-top: 3px;
cursor: pointer;
}
.add p:hover {
color: #302236;
}
.delete p:hover {
color: #771010;
}
.d-none{
display: none;
}
/* rooms */
#modale{
width: 200px;
height: 200px;
background: red;
top: 20vh;
left: 20vh;
position: fixed;
z-index: 100;
}
.goOwn{
color: white;
margin-top: 10px;
cursor: pointer;
}
.red-alert {
color: #C43C35;
}
.green-alert {
color: blue;
} | public/css/redha_css.css | .card-search{
padding: 15px ;
position: fixed;
right: 5vw;
width: 25vw ;
height: 74vh;
top: 13vh;
z-index: 100;
background: rgba(255, 255, 255, 0.4) ;
border-radius: 5px;
overflow-y: scroll;
}
.card-play{
padding: 15px ;
position: fixed;
left: 5vw;
width: 25vw ;
height: 74vh;
top: 13vh;
z-index: 100;
background: rgba(255, 255, 255, 0.4) ;
border-radius: 5px;
overflow-y: scroll;
}
.card-search::-webkit-scrollbar , .card-play::-webkit-scrollbar {
width: 0.6em;
}
.card-search::-webkit-scrollbar-track , .card-play::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.card-search::-webkit-scrollbar-thumb , .card-play::-webkit-scrollbar-thumb {
background-color: #302236;
outline: 1px solid slategrey;
}
.ligne {
display: flex;
}
.ligne .name , .ligne .art , .add p , .delete p {
margin-top: auto;
margin-bottom: auto;
}
.ligne .name {
color: #302236;
font-size: 20px ;
margin-right: 10px;
font-weight: 600;
}
.ligne .art {
color: rgba(48, 34, 54,0.6);
font-size: 19px ;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-weight: 500;
}
.ligne img {
border-radius: 50%;
width: 40px ;
height: 40px;
margin-right: 15px;
}
.card-search .title , .card-play .title {
color: white;
text-align: center;
margin-bottom: 20px ;
}
.card-search .title p , .card-play .title p {
font-weight: 500;
font-size: 19.2px;
font-family: "Open Sans", sans-serif;
}
.parent {
padding: 5px ;
margin-bottom: 3px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.add p , .delete p {
color: white;
font-family: Georgia, 'Times New Roman', Times, serif;
font-weight: 550;
font-size: 20px ;
margin-top: 3px;
cursor: pointer;
}
.add p:hover {
color: #302236;
}
.delete p:hover {
color: #771010;
}
.d-none{
display: none;
}
/* rooms */
#modale{
width: 200px;
height: 200px;
background: red;
top: 20vh;
left: 20vh;
position: fixed;
z-index: 100;
}
.goOwn{
color: white;
margin-top: 10px;
cursor: pointer;
}
.red-alert {
color: #C43C35;
}
.green-alert {
color: blue;
} | 0.358802 | 0.052014 |
html{
box-sizing: border-box;
margin: 0;
padding: 0;
}
*, *:before, *:after {
box-sizing: inherit;
}
body{
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
font-size: 14px;
line-height: 24px;
color: white;
margin: 0;
padding: 0;
animation-fill-mode: forwards;
}
.main-section{
height: 95vh;
padding-top: 100px;
position: relative;
z-index: 1;
overflow: hidden;
}
@media (min-height: 768px) {
.main-section{
padding-top: 250px;
}
}
.logo{
font-size: 56px;
font-weight: 400;
margin-bottom: 50px;
}
.title-thin{
font-weight: 100;
font-size: 30px;
margin-bottom: 50px;
}
@media (min-height: 768px){
.title-thin{
font-size: 40px;
}
}
.screenshot{
display: none;
max-width: 80%;
}
@media (min-width: 768px) {
.screenshot{
display: block;
margin: 0 auto;
}
}
.bg-green-gradient {
/* Thanks uigradients! */
background: #1D976C; /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #1D976C , #93F9B9); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #1D976C , #93F9B9); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.fadein {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.footer{
width: 100%;
background: #363636;
padding: 15px;
color: #f3f3f3;
font-weight: 200;
text-align: right;
z-index: 10;
}
.footer a{
color: #49EAB2;
} | css/main.css | html{
box-sizing: border-box;
margin: 0;
padding: 0;
}
*, *:before, *:after {
box-sizing: inherit;
}
body{
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
font-size: 14px;
line-height: 24px;
color: white;
margin: 0;
padding: 0;
animation-fill-mode: forwards;
}
.main-section{
height: 95vh;
padding-top: 100px;
position: relative;
z-index: 1;
overflow: hidden;
}
@media (min-height: 768px) {
.main-section{
padding-top: 250px;
}
}
.logo{
font-size: 56px;
font-weight: 400;
margin-bottom: 50px;
}
.title-thin{
font-weight: 100;
font-size: 30px;
margin-bottom: 50px;
}
@media (min-height: 768px){
.title-thin{
font-size: 40px;
}
}
.screenshot{
display: none;
max-width: 80%;
}
@media (min-width: 768px) {
.screenshot{
display: block;
margin: 0 auto;
}
}
.bg-green-gradient {
/* Thanks uigradients! */
background: #1D976C; /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #1D976C , #93F9B9); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #1D976C , #93F9B9); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.fadein {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.footer{
width: 100%;
background: #363636;
padding: 15px;
color: #f3f3f3;
font-weight: 200;
text-align: right;
z-index: 10;
}
.footer a{
color: #49EAB2;
} | 0.369656 | 0.068444 |
html {
margin: 0;
padding: 0;
border: 0; }
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline; }
article, aside, dialog, figure, footer, header, hgroup, nav, section {
display: block; }
body {
line-height: 1.5;
background: white; }
table {
border-collapse: separate;
border-spacing: 0; }
caption, th, td {
text-align: left;
font-weight: normal;
float: none !important; }
table, th, td {
vertical-align: middle; }
blockquote before, blockquote after, q before, q after {
content: ''; }
blockquote, q {
quotes: "" ""; }
a img {
border: none; }
b, i {
display: none; }
@font-face {
font-family: lydianmtstd;
src: url("../fonts/lydian/lydianmtstd.eot");
src: url("../fonts/lydian/lydianmtstd.eot?#iefix") format("embedded-opentype"), url("../fonts/lydian/lydianmtstd.woff") format("woff"), url("../fonts/lydian/lydianmtstd.ttf") format("truetype"), url("../fonts/lydian/lydianmtstd.svg#lydianmtstd") format("svg"); }
#system-messages div, #start .contents h1, #pause .contents h1, #start .contents h2, #pause .contents h2, #start .contents h3, #pause .contents h3 {
font-family: lydianmtstd;
font-weight: normal; }
#system-messages {
position: fixed;
z-index: 11;
width: 100%;
text-align: center;
top: 50%;
color: white; }
#system-messages div {
color: white;
font-size: 30px;
letter-spacing: 4px;
text-transform: uppercase; }
canvas {
position: fixed;
z-index: 10; }
canvas#display {
z-index: 8; }
.vertical-center {
position: relative;
top: 50%;
transform: translateY(-50%); }
#display {
-webkit-transition: opacity 3000ms ease-in-out 3000ms;
-moz-transition: opacity 3000ms ease-in-out 3000ms;
-ms-transition: opacity 3000ms ease-in-out 3000ms;
-o-transition: opacity 3000ms ease-in-out 3000ms;
transition: opacity 3000ms ease-in-out 3000ms;
opacity: 0; }
#display.game-started {
opacity: 1; }
#display.game-over {
-webkit-transition: opacity 3000ms ease-in-out 9000ms;
-moz-transition: opacity 3000ms ease-in-out 9000ms;
-ms-transition: opacity 3000ms ease-in-out 9000ms;
-o-transition: opacity 3000ms ease-in-out 9000ms;
transition: opacity 3000ms ease-in-out 9000ms;
opacity: 0; }
#start, #pause {
position: fixed;
z-index: 9;
width: 100%;
height: 100%;
background-color: whitesmoke; }
#start .contents, #pause .contents {
text-align: center; }
#start .contents h1, #pause .contents h1 {
text-transform: uppercase;
letter-spacing: 4px;
font-size: 80px;
color: gainsboro; }
#start .contents h2, #pause .contents h2 {
-webkit-transition: opacity 400ms ease-in-out;
-moz-transition: opacity 400ms ease-in-out;
-ms-transition: opacity 400ms ease-in-out;
-o-transition: opacity 400ms ease-in-out;
transition: opacity 400ms ease-in-out;
letter-spacing: 4px;
font-size: 40px;
margin-bottom: 50px;
color: black;
opacity: 0; }
#start .contents h3, #pause .contents h3 {
letter-spacing: 4px;
font-size: 20px;
margin-bottom: 50px;
color: black; }
#start .contents .glyph, #pause .contents .glyph {
width: 150px;
margin-top: 200px;
margin-bottom: 50px; }
#start {
-webkit-transition: opacity 3000ms ease-in-out;
-moz-transition: opacity 3000ms ease-in-out;
-ms-transition: opacity 3000ms ease-in-out;
-o-transition: opacity 3000ms ease-in-out;
transition: opacity 3000ms ease-in-out;
opacity: 1; }
#start.calibrating .contents h2 {
opacity: 1; }
#start.game-started {
opacity: 0; }
#pause {
-webkit-transition: opacity 400ms ease-in-out;
-moz-transition: opacity 400ms ease-in-out;
-ms-transition: opacity 400ms ease-in-out;
-o-transition: opacity 400ms ease-in-out;
transition: opacity 400ms ease-in-out;
opacity: 0; }
#pause.resetting .contents h2 {
opacity: 1; }
#pause.game-paused {
opacity: 1; } | app/styles/styles.css | html {
margin: 0;
padding: 0;
border: 0; }
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline; }
article, aside, dialog, figure, footer, header, hgroup, nav, section {
display: block; }
body {
line-height: 1.5;
background: white; }
table {
border-collapse: separate;
border-spacing: 0; }
caption, th, td {
text-align: left;
font-weight: normal;
float: none !important; }
table, th, td {
vertical-align: middle; }
blockquote before, blockquote after, q before, q after {
content: ''; }
blockquote, q {
quotes: "" ""; }
a img {
border: none; }
b, i {
display: none; }
@font-face {
font-family: lydianmtstd;
src: url("../fonts/lydian/lydianmtstd.eot");
src: url("../fonts/lydian/lydianmtstd.eot?#iefix") format("embedded-opentype"), url("../fonts/lydian/lydianmtstd.woff") format("woff"), url("../fonts/lydian/lydianmtstd.ttf") format("truetype"), url("../fonts/lydian/lydianmtstd.svg#lydianmtstd") format("svg"); }
#system-messages div, #start .contents h1, #pause .contents h1, #start .contents h2, #pause .contents h2, #start .contents h3, #pause .contents h3 {
font-family: lydianmtstd;
font-weight: normal; }
#system-messages {
position: fixed;
z-index: 11;
width: 100%;
text-align: center;
top: 50%;
color: white; }
#system-messages div {
color: white;
font-size: 30px;
letter-spacing: 4px;
text-transform: uppercase; }
canvas {
position: fixed;
z-index: 10; }
canvas#display {
z-index: 8; }
.vertical-center {
position: relative;
top: 50%;
transform: translateY(-50%); }
#display {
-webkit-transition: opacity 3000ms ease-in-out 3000ms;
-moz-transition: opacity 3000ms ease-in-out 3000ms;
-ms-transition: opacity 3000ms ease-in-out 3000ms;
-o-transition: opacity 3000ms ease-in-out 3000ms;
transition: opacity 3000ms ease-in-out 3000ms;
opacity: 0; }
#display.game-started {
opacity: 1; }
#display.game-over {
-webkit-transition: opacity 3000ms ease-in-out 9000ms;
-moz-transition: opacity 3000ms ease-in-out 9000ms;
-ms-transition: opacity 3000ms ease-in-out 9000ms;
-o-transition: opacity 3000ms ease-in-out 9000ms;
transition: opacity 3000ms ease-in-out 9000ms;
opacity: 0; }
#start, #pause {
position: fixed;
z-index: 9;
width: 100%;
height: 100%;
background-color: whitesmoke; }
#start .contents, #pause .contents {
text-align: center; }
#start .contents h1, #pause .contents h1 {
text-transform: uppercase;
letter-spacing: 4px;
font-size: 80px;
color: gainsboro; }
#start .contents h2, #pause .contents h2 {
-webkit-transition: opacity 400ms ease-in-out;
-moz-transition: opacity 400ms ease-in-out;
-ms-transition: opacity 400ms ease-in-out;
-o-transition: opacity 400ms ease-in-out;
transition: opacity 400ms ease-in-out;
letter-spacing: 4px;
font-size: 40px;
margin-bottom: 50px;
color: black;
opacity: 0; }
#start .contents h3, #pause .contents h3 {
letter-spacing: 4px;
font-size: 20px;
margin-bottom: 50px;
color: black; }
#start .contents .glyph, #pause .contents .glyph {
width: 150px;
margin-top: 200px;
margin-bottom: 50px; }
#start {
-webkit-transition: opacity 3000ms ease-in-out;
-moz-transition: opacity 3000ms ease-in-out;
-ms-transition: opacity 3000ms ease-in-out;
-o-transition: opacity 3000ms ease-in-out;
transition: opacity 3000ms ease-in-out;
opacity: 1; }
#start.calibrating .contents h2 {
opacity: 1; }
#start.game-started {
opacity: 0; }
#pause {
-webkit-transition: opacity 400ms ease-in-out;
-moz-transition: opacity 400ms ease-in-out;
-ms-transition: opacity 400ms ease-in-out;
-o-transition: opacity 400ms ease-in-out;
transition: opacity 400ms ease-in-out;
opacity: 0; }
#pause.resetting .contents h2 {
opacity: 1; }
#pause.game-paused {
opacity: 1; } | 0.378689 | 0.059102 |
@import url('https://fonts.googleapis.com/css2?family=Stardos+Stencil:wght@700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
position: relative;
min-height: 100%;
}
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 0 2rem;
background: rgba(204, 204, 204, 0.295);
z-index: 2;
font-family: copperplate;
height: 18%;
}
.nav-header {
display: flex;
justify-content: space-between;
}
.nav-btn {
background: transparent;
border: none;
cursor: pointer;
outline: none;
}
.nav-links {
height: 0;
overflow: hidden;
transition: var(--mainTransition);
list-style-type: none;
}
.nav-links a {
margin: 15px;
display: block;
text-decoration: none;
padding: 1rem 0;
color: black;
transition: var(--mainTransition);
text-align: center;
font-size: 1.20rem;
font-weight: 600;
font-family: var(--copperplate);
letter-spacing: var(--mainSpacing);
}
.nav-links a:hover {
color: rgb(165, 121, 121);
text-decoration: underline;
}
.show-nav {
height: 510px;
}
@media screen and (min-width: 768px) {
.nav-btn {
display: none;
}
.nav-center {
max-width: 1170px;
margin: 0 auto;
display: flex;
}
.nav-links {
height: auto;
display: flex;
margin-left: 24em;
padding: 2.3rem 7rem;
}
.nav-links a {
margin: 0 1rem;
padding: 0.5rem 0;
}
}
/*end of navbar */
/* HERO */
.overlay {
background: url('./images/herbal.png') center/cover;
/* height: 15rem; */
/* font-family: copperplate;
font-size: x-large;
*/
}
/*Hero */
section {
width: 100%;
display: table;
margin-top: -30px;
max-width: none;
height: 100vh;
}
/*Hero */
.intro {
height: 125vh;
padding-top: 30px;
}
/*Hero */
.content {
display: table-cell;
vertical-align: middle;
z-index: 100;
font-size: 1.5rem;
text-align: center;
padding-left: 10rem;
padding-right: 10rem;
color:var(--mainwhite);
background: rgba(226, 99, 26, 0.035);
}
/*Hero */
.content h1 {
background-color: var(--main-yellow);
padding-top: 8px;
font-family:copperplate;
font-size: 60px;
line-height: 95px;
text-align: center;
/* margin-bottom: 120px; */
color: black;
}
/*Hero */
.content h4 {
padding-bottom: 30px;
text-align: center;
/* background-color: var(--main-yellow); */
font-family: copperplate;
margin-bottom: 120px;
font-size: 50px;
}
/* About */
.about-info {
background-color: rgba(149, 186, 194, 0.885);
height: 90%;
width: 97%;
margin-left: 10px;
margin-right: 60px;
font-family: copperplate;
text-align: center;
margin-top: 20px;
}
.about-content h1 {
font-size: 45px;
margin-bottom: 10px;
}
.about-content h4 {
font-size: 19px;
padding: 15px 30px;
letter-spacing: .5px;
margin-top: 3px;
}
/* End of About */
/* products */
.products {
text-align: center;
padding: 20px;
}
.productrow {
padding: 20px;
margin: 0 auto;
}
/* Contact */
.container {
height: 90%;
}
.container h1 {
color: rgb(108, 108, 135);
text-align: center;
}
.row {
color: rgb(108, 108, 135);
}
/* Fotter */
.footer-seperator {
flex-grow: 1;
border: none;
height: 1px;
margin-top: 10rem;
margin-bottom: 1rem;
}
/* @media (max-width: 880px) {
footer {
margin-bottom: -585px;
}
.footer-distributed {
height: 49em;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
display: block;
width: 100%;
text-align: center;
}
.footer-distributed .footer-center i{
margin-left: 0;
} */
/* .main {
line-height: normal;
font-size: auto;
}
.footer-bottom {
margin-top: 25px;
}
} */ | nermis-app/src/App.css | @import url('https://fonts.googleapis.com/css2?family=Stardos+Stencil:wght@700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
position: relative;
min-height: 100%;
}
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 0 2rem;
background: rgba(204, 204, 204, 0.295);
z-index: 2;
font-family: copperplate;
height: 18%;
}
.nav-header {
display: flex;
justify-content: space-between;
}
.nav-btn {
background: transparent;
border: none;
cursor: pointer;
outline: none;
}
.nav-links {
height: 0;
overflow: hidden;
transition: var(--mainTransition);
list-style-type: none;
}
.nav-links a {
margin: 15px;
display: block;
text-decoration: none;
padding: 1rem 0;
color: black;
transition: var(--mainTransition);
text-align: center;
font-size: 1.20rem;
font-weight: 600;
font-family: var(--copperplate);
letter-spacing: var(--mainSpacing);
}
.nav-links a:hover {
color: rgb(165, 121, 121);
text-decoration: underline;
}
.show-nav {
height: 510px;
}
@media screen and (min-width: 768px) {
.nav-btn {
display: none;
}
.nav-center {
max-width: 1170px;
margin: 0 auto;
display: flex;
}
.nav-links {
height: auto;
display: flex;
margin-left: 24em;
padding: 2.3rem 7rem;
}
.nav-links a {
margin: 0 1rem;
padding: 0.5rem 0;
}
}
/*end of navbar */
/* HERO */
.overlay {
background: url('./images/herbal.png') center/cover;
/* height: 15rem; */
/* font-family: copperplate;
font-size: x-large;
*/
}
/*Hero */
section {
width: 100%;
display: table;
margin-top: -30px;
max-width: none;
height: 100vh;
}
/*Hero */
.intro {
height: 125vh;
padding-top: 30px;
}
/*Hero */
.content {
display: table-cell;
vertical-align: middle;
z-index: 100;
font-size: 1.5rem;
text-align: center;
padding-left: 10rem;
padding-right: 10rem;
color:var(--mainwhite);
background: rgba(226, 99, 26, 0.035);
}
/*Hero */
.content h1 {
background-color: var(--main-yellow);
padding-top: 8px;
font-family:copperplate;
font-size: 60px;
line-height: 95px;
text-align: center;
/* margin-bottom: 120px; */
color: black;
}
/*Hero */
.content h4 {
padding-bottom: 30px;
text-align: center;
/* background-color: var(--main-yellow); */
font-family: copperplate;
margin-bottom: 120px;
font-size: 50px;
}
/* About */
.about-info {
background-color: rgba(149, 186, 194, 0.885);
height: 90%;
width: 97%;
margin-left: 10px;
margin-right: 60px;
font-family: copperplate;
text-align: center;
margin-top: 20px;
}
.about-content h1 {
font-size: 45px;
margin-bottom: 10px;
}
.about-content h4 {
font-size: 19px;
padding: 15px 30px;
letter-spacing: .5px;
margin-top: 3px;
}
/* End of About */
/* products */
.products {
text-align: center;
padding: 20px;
}
.productrow {
padding: 20px;
margin: 0 auto;
}
/* Contact */
.container {
height: 90%;
}
.container h1 {
color: rgb(108, 108, 135);
text-align: center;
}
.row {
color: rgb(108, 108, 135);
}
/* Fotter */
.footer-seperator {
flex-grow: 1;
border: none;
height: 1px;
margin-top: 10rem;
margin-bottom: 1rem;
}
/* @media (max-width: 880px) {
footer {
margin-bottom: -585px;
}
.footer-distributed {
height: 49em;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
display: block;
width: 100%;
text-align: center;
}
.footer-distributed .footer-center i{
margin-left: 0;
} */
/* .main {
line-height: normal;
font-size: auto;
}
.footer-bottom {
margin-top: 25px;
}
} */ | 0.35209 | 0.057203 |
.mde-preview {
color: rgba(213, 216, 218, 0.9);
background-color: #1c1e26;
line-height: 1.5;
}
.mde-preview:before {
display: table;
content: "";
}
.mde-preview:after {
display: table;
clear: both;
content: "";
}
.mde-preview h1,
.mde-preview h2,
.mde-preview h3,
.mde-preview h4,
.mde-preview h5,
.mde-preview h6 {
color: rgba(213, 216, 218, 0.875);
}
.mde-preview h1 {
font-size: 2.25em;
padding-bottom: 0.3em;
line-height: 1.2;
border-bottom: 1px solid rgba(213, 216, 218, 0.4);
}
.mde-preview h2 {
font-size: 1.75em;
padding-bottom: 0.3em;
line-height: 1.225;
}
.mde-preview h3 {
font-size: 1.5em;
line-height: 1.43;
}
.mde-preview h4 {
font-size: 1.25em;
}
.mde-preview h5 {
font-size: 1em;
}
.mde-preview h6 {
font-size: 0.9em;
color: rgba(213, 216, 218, 0.625);
}
.mde-preview hr {
background-color: rgba(213, 216, 218, 0.3);
}
.mde-preview a {
background-color: transparent;
color: #e95678;
}
.mde-preview strong,
.mde-preview em {
color: #d5d8da;
}
.mde-preview blockquote {
padding: 0 15px;
color: rgba(213, 216, 218, 0.4);
border-left: 4px solid rgba(213, 216, 218, 0.1);
}
.mde-preview input {
color: inherit;
}
.mde-preview img {
border: 0;
background-color: transparent;
}
.mde-preview table {
border-collapse: collapse;
border-spacing: 0;
}
.mde-preview table th,
.mde-preview table td {
padding: 6px 13px;
border: 1px solid rgba(213, 216, 218, 0.3);
}
.mde-preview table tr {
background-color: transparent;
border-top: 1px solid rgba(213, 216, 218, 0.25);
}
.mde-preview table tr:nth-child(2n) {
background-color: rgba(213, 216, 218, 0.04);
}
.mde-preview code {
padding: 0;
padding-top: 0.2em;
padding-bottom: 0.2em;
margin: 0;
font-size: 85%;
background-color: rgba(22, 22, 28, 0.7);
border-radius: 6px;
}
.mde-preview code:before,
.mde-preview code:after {
letter-spacing: -0.2em;
content: "\00a0";
}
.mde-preview pre > code {
padding: 0;
margin: 0;
font-size: 100%;
word-break: normal;
white-space: pre;
background: transparent;
border: 0;
}
.mde-preview pre {
padding: 16px;
overflow: auto;
word-wrap: normal;
font-size: 85%;
line-height: 1.45;
background-color: rgba(22, 22, 28, 0.7);
border-radius: 6px;
}
.mde-preview pre code {
display: inline;
max-width: initial;
padding: 0;
margin: 0;
overflow: initial;
line-height: inherit;
word-wrap: normal;
background-color: transparent;
border: 0;
}
.mde-preview pre code:before,
.mde-preview pre code:after {
content: normal;
}
.mde-preview .cm-header {
color: #e95678;
}
.mde-preview .cm-quote {
color: #fab795;
font-style: italic;
}
.mde-preview .cm-negative {
color: #f43e5c;
}
.mde-preview .cm-positive {
color: #09f7a0;
}
.mde-preview .cm-header,
.mde-preview .cm-strong {
font-weight: bold;
}
.mde-preview .cm-em {
font-style: italic;
}
.mde-preview .cm-link {
text-decoration: underline;
}
.mde-preview .cm-strikethrough {
text-decoration: line-through;
}
.mde-preview .cm-keyword {
color: #b877db;
font-weight: normal;
}
.mde-preview .cm-atom {
color: #f09383;
}
.mde-preview .cm-number {
color: #f09383;
}
.mde-preview .cm-def {
color: #25b2bc;
}
.mde-preview .cm-property {
color: #d5d8da;
}
.mde-preview .cm-operator {
color: #bbbbbb;
}
.mde-preview .cm-variable,
.mde-preview .cm-punctuation {
color: #d5d8da;
}
.mde-preview .cm-variable-2 {
color: #e95678;
}
.mde-preview .cm-variable-3,
.mde-preview .cm-type {
color: rgba(255, 255, 255, 0.8);
}
.mde-preview .cm-comment {
color: rgba(187, 187, 187, 0.3);
font-style: italic;
}
.mde-preview .cm-string {
color: #fac29a;
}
.mde-preview .cm-string-2 {
color: #fac29a;
}
.mde-preview .cm-meta {
color: #25b2bc;
}
.mde-preview .cm-qualifier {
color: #fab795;
}
.mde-preview .cm-builtin {
color: #d5d8da;
}
.mde-preview .cm-bracket {
color: #f99157;
}
.mde-preview .cm-tag {
color: #e95678;
}
.mde-preview .cm-attribute {
color: #f09383;
}
.mde-preview .cm-hr {
color: #999999;
}
.mde-preview .cm-link {
color: #f09383;
}
.mde-preview .cm-error {
color: #f43e5c;
} | styles/horizon-dark.css | .mde-preview {
color: rgba(213, 216, 218, 0.9);
background-color: #1c1e26;
line-height: 1.5;
}
.mde-preview:before {
display: table;
content: "";
}
.mde-preview:after {
display: table;
clear: both;
content: "";
}
.mde-preview h1,
.mde-preview h2,
.mde-preview h3,
.mde-preview h4,
.mde-preview h5,
.mde-preview h6 {
color: rgba(213, 216, 218, 0.875);
}
.mde-preview h1 {
font-size: 2.25em;
padding-bottom: 0.3em;
line-height: 1.2;
border-bottom: 1px solid rgba(213, 216, 218, 0.4);
}
.mde-preview h2 {
font-size: 1.75em;
padding-bottom: 0.3em;
line-height: 1.225;
}
.mde-preview h3 {
font-size: 1.5em;
line-height: 1.43;
}
.mde-preview h4 {
font-size: 1.25em;
}
.mde-preview h5 {
font-size: 1em;
}
.mde-preview h6 {
font-size: 0.9em;
color: rgba(213, 216, 218, 0.625);
}
.mde-preview hr {
background-color: rgba(213, 216, 218, 0.3);
}
.mde-preview a {
background-color: transparent;
color: #e95678;
}
.mde-preview strong,
.mde-preview em {
color: #d5d8da;
}
.mde-preview blockquote {
padding: 0 15px;
color: rgba(213, 216, 218, 0.4);
border-left: 4px solid rgba(213, 216, 218, 0.1);
}
.mde-preview input {
color: inherit;
}
.mde-preview img {
border: 0;
background-color: transparent;
}
.mde-preview table {
border-collapse: collapse;
border-spacing: 0;
}
.mde-preview table th,
.mde-preview table td {
padding: 6px 13px;
border: 1px solid rgba(213, 216, 218, 0.3);
}
.mde-preview table tr {
background-color: transparent;
border-top: 1px solid rgba(213, 216, 218, 0.25);
}
.mde-preview table tr:nth-child(2n) {
background-color: rgba(213, 216, 218, 0.04);
}
.mde-preview code {
padding: 0;
padding-top: 0.2em;
padding-bottom: 0.2em;
margin: 0;
font-size: 85%;
background-color: rgba(22, 22, 28, 0.7);
border-radius: 6px;
}
.mde-preview code:before,
.mde-preview code:after {
letter-spacing: -0.2em;
content: "\00a0";
}
.mde-preview pre > code {
padding: 0;
margin: 0;
font-size: 100%;
word-break: normal;
white-space: pre;
background: transparent;
border: 0;
}
.mde-preview pre {
padding: 16px;
overflow: auto;
word-wrap: normal;
font-size: 85%;
line-height: 1.45;
background-color: rgba(22, 22, 28, 0.7);
border-radius: 6px;
}
.mde-preview pre code {
display: inline;
max-width: initial;
padding: 0;
margin: 0;
overflow: initial;
line-height: inherit;
word-wrap: normal;
background-color: transparent;
border: 0;
}
.mde-preview pre code:before,
.mde-preview pre code:after {
content: normal;
}
.mde-preview .cm-header {
color: #e95678;
}
.mde-preview .cm-quote {
color: #fab795;
font-style: italic;
}
.mde-preview .cm-negative {
color: #f43e5c;
}
.mde-preview .cm-positive {
color: #09f7a0;
}
.mde-preview .cm-header,
.mde-preview .cm-strong {
font-weight: bold;
}
.mde-preview .cm-em {
font-style: italic;
}
.mde-preview .cm-link {
text-decoration: underline;
}
.mde-preview .cm-strikethrough {
text-decoration: line-through;
}
.mde-preview .cm-keyword {
color: #b877db;
font-weight: normal;
}
.mde-preview .cm-atom {
color: #f09383;
}
.mde-preview .cm-number {
color: #f09383;
}
.mde-preview .cm-def {
color: #25b2bc;
}
.mde-preview .cm-property {
color: #d5d8da;
}
.mde-preview .cm-operator {
color: #bbbbbb;
}
.mde-preview .cm-variable,
.mde-preview .cm-punctuation {
color: #d5d8da;
}
.mde-preview .cm-variable-2 {
color: #e95678;
}
.mde-preview .cm-variable-3,
.mde-preview .cm-type {
color: rgba(255, 255, 255, 0.8);
}
.mde-preview .cm-comment {
color: rgba(187, 187, 187, 0.3);
font-style: italic;
}
.mde-preview .cm-string {
color: #fac29a;
}
.mde-preview .cm-string-2 {
color: #fac29a;
}
.mde-preview .cm-meta {
color: #25b2bc;
}
.mde-preview .cm-qualifier {
color: #fab795;
}
.mde-preview .cm-builtin {
color: #d5d8da;
}
.mde-preview .cm-bracket {
color: #f99157;
}
.mde-preview .cm-tag {
color: #e95678;
}
.mde-preview .cm-attribute {
color: #f09383;
}
.mde-preview .cm-hr {
color: #999999;
}
.mde-preview .cm-link {
color: #f09383;
}
.mde-preview .cm-error {
color: #f43e5c;
} | 0.4436 | 0.103477 |
body,html {
height: 100vh;
margin: 0;
}
.section1{
height: 100vh;
width: 100vw;
}
.background-video {
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
background-position: center;
background-size: cover;
object-fit: cover;
}
.header-logo{
width: 13%;
height: 13%;
display: flex;
flex-wrap: wrap;
}
a{
text-decoration: none;
color: white;
font-size: 14px;
font-family: 'Open Sans Condensed', sans-serif;
}
.nav-bar{
position: relative;
bottom:95%;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.nav-items {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.nav-link {
color: white;
display: flex;
align-items: flex-end;
margin: 10px;
flex-wrap: wrap;
}
.text {
width: 70%;
margin-left: 20%;
color: white;
font-size: 75px;
position: relative;
bottom: 70%;
font-family: 'Open Sans Condensed', sans-serif;
}
/* ------------------------------------------------mid------------------------------------------ */
.section-container {
width: 100vw;
height: 140vh;
display: flex;
flex-direction: row;
padding: 15% 15% 0 15%;
background-image: url(../assets/images/home_images/background_imagev2.jpg);
background-repeat: no-repeat;
object-fit: cover;
background-position: center;
/* border: 4px solid rebeccapurple; */
justify-content: space-between;
}
.section-item1, .section-item2 {
/* border: 4px solid red; */
height: 100%;
width: 45%;
}
.section-item1 {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.section-item1-img {
width: 100%;
height: 100%;
}
.section-item-img {
width: 100%;
height: 80%;
position: relative;
top: 5%;
}
.section-item1-text {
padding: 10%;
/* border: 3px solid blue; */
height: 100%;
}
.section-item1-heading {
font-size: 2em;
line-height: 1.2;
}
.section-item1-desc {
color: #777777;
}
/* -----------------animation part----------------------------- */
.section2-animation-container {
margin-bottom: 10%;
}
.section2-container-heading {
font-size: 2.5em;
margin: 5% 0 5% 15%;
}
.slider {
height: 75vh;
margin: auto;
width: 100%;
overflow: hidden;
}
/* Setting up the slide track */
.slide-img {
display: flex;
height: 100%;
width: calc(450px * 50);
animation: scroll 100s linear infinite;
}
.slide {
height: 100%;
width: 100%;
height: 100%;
display: flex;
position: relative;
align-items: center;
margin: 0 7px;
}
.animation-img {
width: 100%;
height: 100%;
}
.animation-info {
position: absolute;
display: flex;
flex-direction: column;
color: white;
align-self: flex-end;
margin: 8%;
justify-content: space-between;
height: 15%;
}
.animation-heading {
font-size: 1.5em;
}
.animation-para {
font-size: 1.3em;
}
@keyframes scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(calc(-450px * 25));
}
}
/*********************************************************************************************************************/
/* Css for black box */
.outer-section-of-blackBox {
height: 150vh;
width: 100vw;
padding: 10% 0;
padding-bottom: 0%;
background-color: #f3f3f3;
display: flex;
flex-direction: column;
justify-content: space-between;
/* border: 3px solid red; */
}
.outer-section-of-blackBox-info {
/* border: 4px solid green; */
display: flex;
padding-left: 10%;
flex-direction: column;
justify-content: space-around;
height: 30%;
}
.section-of-blackBox {
/* border: 5px solid brown; */
background-image: url('../assets/images/home_images/home_blackBox/globe-usa.jpg');
padding-bottom: 10%;
background-repeat: no-repeat;
background-size: cover;
}
.outer-section-of-blackBox-heading {
font-size: 2em;
}
.outer-section-of-blackBox-para {
color: #777777;
}
.blackbox-links {
display: flex;
}
.blackbox-link {
padding-right: 4%;
font-size: 1.2em;
font-weight: 400;
}
.blackbox-container {
width: 50%;
height: 80vh;
display: flex;
position: relative;
left: 50%;
background-color: #161f1e;
/* border: 5px solid red; */
color: white;
}
.carousel-info {
display: flex;
flex-direction: column;
justify-content: space-around;
width: 60%;
height: 100%;
/* border: 4px solid blue; */
padding: 7%;
padding-right: 20%;
font-size: 3em;
}
.carousel-img {
width: 40%;
height: 100%;
/* border: 4px solid green; */
position: relative;
bottom: 15%;
right: 7%;
}
#carouselExampleControls, .carousel-inner, .carousel-item, #single-img{
height: 100%;
}
.carousel-buttons {
display: flex;
flex-direction: row;
opacity: 0.8;
}
.carousel-weather, .carousel-place, .carousel-location {
/* border: 4px solid red; */
font-size: 0.4em;
/* display: flex; */
color: #f3f3f3;
}
.carousel-weather {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.carousel-place {
display: flex;
flex-direction: column;
}
.carousel-place .text2 {
font-size: 2em;
}
/*****************************************************************************************************************************/
/* Css for images above the footer */
.img-section-container {
display: flex;
height: 100vh;
width: 100vw;
color: white;
/* border: 2px solid red; */
}
.img-item {
/* border: 1px solid blue; */
width: 33.33%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#img-experience {
background-image: url(../assets/images/home_images/Expereinces_slider_190716_095517_e36797c82dbcb9dea0800f713424f022.jpg);
background-size: cover;
/* width: 33.33%; */
}
#img-lifestyle {
background-image: url(../assets/images/home_images/lifestyle_slider_190716_095537_fc98236fcd7afd38ca0fd181cf61bcb6.jpg);
background-size: cover;
}
#img-wellness {
background-image: url(../assets/images/home_images/wellness_slider_190716_095551_90f8ce634cc6ad7a15d605007f03ee5c.jpg);
background-size: cover;
}
.img-txt {
font-size: 3em;
}
.img-btn-container {
height: 55px;
width: 55px;
border: 3px solid white;
border-radius: 50%;
cursor: pointer;
display: flex;
justify-content: center;
}
.img-btn, .img-btn:hover {
text-decoration: none;
color: white;
font-size: 2rem;
}
/* -----------------------footer part------------------------- */
.footer-container {
background-color: #161F1E;
display: flex;
flex-direction: column;
color: white;
width: 100vw;
height: 70vh;
justify-content: space-around;
}
.footer-item-logo {
display: flex;
justify-content: space-around;
padding-top: 8%;
/* border: 1px red solid; */
}
.footer-items {
display: flex;
flex-wrap: wrap;
}
#footer-logo {
height: 10%;
width: 10%;
}
#footer-links {
display: flex;
justify-content: space-around;
/* border: 2px solid white; */
width: 60%;
flex-wrap: wrap;
}
.links {
margin-bottom: 50px;
}
.contact-info, .link, .page {
margin-bottom: 10px;
}
.copyright {
opacity: 0.5;
width: 50%;
position: relative;
left: 9%;
bottom: 10%;
} | CSS/index.css | body,html {
height: 100vh;
margin: 0;
}
.section1{
height: 100vh;
width: 100vw;
}
.background-video {
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
background-position: center;
background-size: cover;
object-fit: cover;
}
.header-logo{
width: 13%;
height: 13%;
display: flex;
flex-wrap: wrap;
}
a{
text-decoration: none;
color: white;
font-size: 14px;
font-family: 'Open Sans Condensed', sans-serif;
}
.nav-bar{
position: relative;
bottom:95%;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.nav-items {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.nav-link {
color: white;
display: flex;
align-items: flex-end;
margin: 10px;
flex-wrap: wrap;
}
.text {
width: 70%;
margin-left: 20%;
color: white;
font-size: 75px;
position: relative;
bottom: 70%;
font-family: 'Open Sans Condensed', sans-serif;
}
/* ------------------------------------------------mid------------------------------------------ */
.section-container {
width: 100vw;
height: 140vh;
display: flex;
flex-direction: row;
padding: 15% 15% 0 15%;
background-image: url(../assets/images/home_images/background_imagev2.jpg);
background-repeat: no-repeat;
object-fit: cover;
background-position: center;
/* border: 4px solid rebeccapurple; */
justify-content: space-between;
}
.section-item1, .section-item2 {
/* border: 4px solid red; */
height: 100%;
width: 45%;
}
.section-item1 {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.section-item1-img {
width: 100%;
height: 100%;
}
.section-item-img {
width: 100%;
height: 80%;
position: relative;
top: 5%;
}
.section-item1-text {
padding: 10%;
/* border: 3px solid blue; */
height: 100%;
}
.section-item1-heading {
font-size: 2em;
line-height: 1.2;
}
.section-item1-desc {
color: #777777;
}
/* -----------------animation part----------------------------- */
.section2-animation-container {
margin-bottom: 10%;
}
.section2-container-heading {
font-size: 2.5em;
margin: 5% 0 5% 15%;
}
.slider {
height: 75vh;
margin: auto;
width: 100%;
overflow: hidden;
}
/* Setting up the slide track */
.slide-img {
display: flex;
height: 100%;
width: calc(450px * 50);
animation: scroll 100s linear infinite;
}
.slide {
height: 100%;
width: 100%;
height: 100%;
display: flex;
position: relative;
align-items: center;
margin: 0 7px;
}
.animation-img {
width: 100%;
height: 100%;
}
.animation-info {
position: absolute;
display: flex;
flex-direction: column;
color: white;
align-self: flex-end;
margin: 8%;
justify-content: space-between;
height: 15%;
}
.animation-heading {
font-size: 1.5em;
}
.animation-para {
font-size: 1.3em;
}
@keyframes scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(calc(-450px * 25));
}
}
/*********************************************************************************************************************/
/* Css for black box */
.outer-section-of-blackBox {
height: 150vh;
width: 100vw;
padding: 10% 0;
padding-bottom: 0%;
background-color: #f3f3f3;
display: flex;
flex-direction: column;
justify-content: space-between;
/* border: 3px solid red; */
}
.outer-section-of-blackBox-info {
/* border: 4px solid green; */
display: flex;
padding-left: 10%;
flex-direction: column;
justify-content: space-around;
height: 30%;
}
.section-of-blackBox {
/* border: 5px solid brown; */
background-image: url('../assets/images/home_images/home_blackBox/globe-usa.jpg');
padding-bottom: 10%;
background-repeat: no-repeat;
background-size: cover;
}
.outer-section-of-blackBox-heading {
font-size: 2em;
}
.outer-section-of-blackBox-para {
color: #777777;
}
.blackbox-links {
display: flex;
}
.blackbox-link {
padding-right: 4%;
font-size: 1.2em;
font-weight: 400;
}
.blackbox-container {
width: 50%;
height: 80vh;
display: flex;
position: relative;
left: 50%;
background-color: #161f1e;
/* border: 5px solid red; */
color: white;
}
.carousel-info {
display: flex;
flex-direction: column;
justify-content: space-around;
width: 60%;
height: 100%;
/* border: 4px solid blue; */
padding: 7%;
padding-right: 20%;
font-size: 3em;
}
.carousel-img {
width: 40%;
height: 100%;
/* border: 4px solid green; */
position: relative;
bottom: 15%;
right: 7%;
}
#carouselExampleControls, .carousel-inner, .carousel-item, #single-img{
height: 100%;
}
.carousel-buttons {
display: flex;
flex-direction: row;
opacity: 0.8;
}
.carousel-weather, .carousel-place, .carousel-location {
/* border: 4px solid red; */
font-size: 0.4em;
/* display: flex; */
color: #f3f3f3;
}
.carousel-weather {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.carousel-place {
display: flex;
flex-direction: column;
}
.carousel-place .text2 {
font-size: 2em;
}
/*****************************************************************************************************************************/
/* Css for images above the footer */
.img-section-container {
display: flex;
height: 100vh;
width: 100vw;
color: white;
/* border: 2px solid red; */
}
.img-item {
/* border: 1px solid blue; */
width: 33.33%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#img-experience {
background-image: url(../assets/images/home_images/Expereinces_slider_190716_095517_e36797c82dbcb9dea0800f713424f022.jpg);
background-size: cover;
/* width: 33.33%; */
}
#img-lifestyle {
background-image: url(../assets/images/home_images/lifestyle_slider_190716_095537_fc98236fcd7afd38ca0fd181cf61bcb6.jpg);
background-size: cover;
}
#img-wellness {
background-image: url(../assets/images/home_images/wellness_slider_190716_095551_90f8ce634cc6ad7a15d605007f03ee5c.jpg);
background-size: cover;
}
.img-txt {
font-size: 3em;
}
.img-btn-container {
height: 55px;
width: 55px;
border: 3px solid white;
border-radius: 50%;
cursor: pointer;
display: flex;
justify-content: center;
}
.img-btn, .img-btn:hover {
text-decoration: none;
color: white;
font-size: 2rem;
}
/* -----------------------footer part------------------------- */
.footer-container {
background-color: #161F1E;
display: flex;
flex-direction: column;
color: white;
width: 100vw;
height: 70vh;
justify-content: space-around;
}
.footer-item-logo {
display: flex;
justify-content: space-around;
padding-top: 8%;
/* border: 1px red solid; */
}
.footer-items {
display: flex;
flex-wrap: wrap;
}
#footer-logo {
height: 10%;
width: 10%;
}
#footer-links {
display: flex;
justify-content: space-around;
/* border: 2px solid white; */
width: 60%;
flex-wrap: wrap;
}
.links {
margin-bottom: 50px;
}
.contact-info, .link, .page {
margin-bottom: 10px;
}
.copyright {
opacity: 0.5;
width: 50%;
position: relative;
left: 9%;
bottom: 10%;
} | 0.633297 | 0.074231 |
body {
-webkit-tap-highlight-color: inherit;
font-family: 'Lato';
color: black;
}
#modal-video {
height: 400px;
width: 600px;
}
.modal-logo {
max-height: 70px;
margin-left: auto;
margin-right: auto;
margin-top: -25px;
}
#foundations-logo {
max-height: 40px;
margin-right: 10px;
}
@media screen and (max-width: 575px) {
#foundations-logo {
max-height: 20px;
margin-right: 0px;
}
.navbar-brand {
font-size: 12pt;
}
#modal-video {
max-width: 100%;
height: 60%;
}
}
footer {
background-color: #222;
}
#mainNav .navbar-shrink {
background-color: rgba(34, 34, 34, 0.95);
}
#mainNav .navbar-nav .nav-item .nav-link {
font-size: 1.25em;
font-family: BebasNeue;
}
.dropdown-menu {
background-color: rgba(34, 34, 34, 0.95);
border: none;
}
.dropdown-item {
color: white;
font-family: BebasNeue;
font-size: 1.25em;
text-transform: uppercase;
}
.dropdown-item:hover {
background-color: #fed136;
}
@font-face {
font-family: BebasNeue Light;
src: url("../../img/Fonts/BebasNeueLight.ttf") format("truetype");
src: url("../../img/Fonts/BebasNeueLight.woff") format("woff");
}
@font-face {
font-family: BebasNeue;
src: url("../../img/Fonts/BebasNeue.ttf") format("truetype");
src: url("../../img/Fonts/BebasNeue.woff") format("woff");
}
#mainNav .navbar-brand {
font-family: BebasNeue;
}
#mainNav .navbar-brand span {
font-family: BebasNeue Light;
}
#mainNav .navbar-brand {
font-size: 1.5em;
}
@media screen and (max-width: 375px) {
#mainNav .navbar-brand {
font-size: 1.25em;
}
}
/*
End CSS
Location: Multiple Pages
*/
/*
Start CSS
Location: Multiple Pages
*/
iframe {
max-width: 100%;
}
#foundationsLogo {
width: 15%;
margin-bottom: 30px;
}
/*
End CSS
Location: Multiple Pages
*/
/*
Start CSS
Location: Gear View
*/
body {
background-color: white;
}
h1 {
font-size: 2.75vw;
}
h2 {
font-size: 2vw;
}
h3 {
font-size: 1.75vw;
}
p {
font-size: 1.5vw;
}
#gearView {
padding-top: 0px;
background-color: rgba(255, 255, 255);
font-weight: bold;
width: 75%;
margin-left: auto;
margin-right: auto;
}
.mainPhotoDiv {
margin-left: auto;
margin-right: auto;
}
.longTitle {
font-size: 1.5vw;
}
.gearTitle {
margin: 10%;
}
.pic-option button:hover {
box-shadow: 5px 5px 2px grey;
cursor: pointer;
}
.item-container {
display: inline-flex;
width: 100%;
}
.pic-option {
display: flex;
width: 23%;
margin-left: auto;
margin-right: auto;
}
.hiddenDetails {
opacity: 0;
}
.gearCost {
margin-bottom: 0px;
}
.productPicSlider {
overflow: hidden;
display: inline-block;
}
.productPic {
width: 100%;
margin-left: auto;
margin-right: auto;
display: none;
}
.activeR {
display: inline-flex;
-webkit-animation-name: rightSlideIn;
-webkit-animation-duration: 0.5s;
animation-name: rightSlideIn;
animation-duration: 0.5s;
}
.activeL {
display: inline-flex;
-webkit-animation-name: leftSlideIn;
-webkit-animation-duration: 0.5s;
animation-name: leftSlideIn;
animation-duration: 0.5s;
}
.previousR {
display: inline-flex;
-webkit-animation-name: rightSlideOut;
-webkit-animation-duration: 0.5s;
animation-name: rightSlideOut;
animation-duration: 0.5s;
}
.previousL {
display: inline-flex;
-webkit-animation-name: leftSlideOut;
-webkit-animation-duration: 0.5s;
animation-name: leftSlideOut;
animation-duration: 0.5s;
}
@-webkit-keyframes rightSlideIn {
from {
transform: translateX(1000px);
}
to {
transform: translateX(0px);
}
}
@keyframes rightSlideIn {
from {
transform: translateX(1000px);
}
to {
transform: translateX(0px);
}
}
@-webkit-keyframes rightSlideOut {
from {
transform: translateX(0px);
}
to {
transform: translateX(1000px);
}
}
@keyframes rightSlideOut {
from {
transform: translateX(0px);
}
to {
transform: translateX(1000px);
}
}
@-webkit-keyframes leftSlideOut {
from {
display: flex;
transform: translateX(0px);
}
to {
display: flex;
transform: translateX(-1000px);
}
}
@keyframes leftSlideOut {
from {
display: flex;
transform: translateX(0px);
}
to {
display: flex;
transform: translateX(-1000px);
}
}
@-webkit-keyframes leftSlideIn {
from {
display: flex;
transform: translateX(-1000px);
}
to {
display: flex;
transform: translateX(0px);
}
}
@keyframes leftSlideIn {
from {
display: flex;
transform: translateX(-1000px);
}
to {
display: flex;
transform: translateX(0px);
}
}
.orderFormDiv {
position: fixed;
top: 0px;
right: 0px;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
padding: 1%;
width: 18%;
}
.orderFormBtn {
cursor: pointer;
background-color: black;
color: white;
box-shadow: 0px white;
border: 0px white;
}
.photoCenterer {
margin: auto;
}
.altPhotos {
height: 50px;
width: 50px;
margin: auto;
}
.altPhotos:hover {
border: 1px solid black;
cursor: pointer;
}
.portfolio-modal {
width: 50%;
margin-left: auto;
margin-right: auto;
height: auto;
}
.modal .productPicSlider {
width: 60%;
margin: 0px;
float: left;
}
.modal .productPic {
width: 100%;
z-index: -1;
}
.productDescription {
width: 35%;
padding: 2%;
z-index: 1;
margin: auto;
float: right;
text-align: left;
border: 1px solid black;
}
.productSlideshow {
display: block;
position: absolute;
vertical-align: middle;
top: 50%;
width: 4%;
padding: 1%;
background: black;
color: white;
z-index: 2;
font-size: 18pt;
font-family: monospace;
font-weight: bolder;
}
.productSlideshow:hover {
transition: 0.25s ease;
color: black;
cursor: pointer;
background: white;
}
.arrowR {
left: 55.7%;
}
.modalAltList {
display: inline-flex;
margin: auto;
}
@media screen and (max-width: 1024px) {
.gearTitle {
margin-top: 30%;
}
}
@media screen and (max-width: 575px) {
#gearView {
width: 100%;
}
h1 {
font-size: 3.5vw;
}
h2 {
font-size: 4vw;
}
h3 {
font-size: 4vw;
}
p {
font-size: 2.75vw;
}
.longTitle {
font-size: 4vw;
}
.gearTitle {
font-size: 5vw;
}
.gearCost {
font-size: 3vw;
}
.hiddenDetails {
display: block;
opacity: 1.0;
}
.pic-option {
width: 80%;
margin-bottom: 100px;
margin-left: auto;
margin-right: auto;
}
.modal .productPic {
width: 100%;
margin-left: 0px;
}
.productSlideshow {
display: none;
}
.productDescription p,
.productDescription li {
font-size: 6vw;
}
.orderFormBtn {
width: 100%;
font-size: 2.5vw;
}
.orderFormDiv {
margin-top: 18%;
width: 30%;
right: 0%;
}
.orderFormDiv h4 {
display: none;
}
.portfolio-modal {
width: 100%;
}
.modal .productPicSlider {
width: 100%;
}
.modal .productPic {
width: 100%;
}
.productDescription {
width: 100%;
}
.modal .modalAltList {
width: 100%;
padding: 1%;
align-items: center;
}
.modal .altPhotos {
width: 75px;
height: 75px;
}
}
/*
End CSS
Location: Multiple Pages
*/
/*
Start CSS
Location: footer
*/
.contactInfo {
color: white;
}
/*
End CSS
Location: footer
*/ | gear/css/non-template-gear.css | body {
-webkit-tap-highlight-color: inherit;
font-family: 'Lato';
color: black;
}
#modal-video {
height: 400px;
width: 600px;
}
.modal-logo {
max-height: 70px;
margin-left: auto;
margin-right: auto;
margin-top: -25px;
}
#foundations-logo {
max-height: 40px;
margin-right: 10px;
}
@media screen and (max-width: 575px) {
#foundations-logo {
max-height: 20px;
margin-right: 0px;
}
.navbar-brand {
font-size: 12pt;
}
#modal-video {
max-width: 100%;
height: 60%;
}
}
footer {
background-color: #222;
}
#mainNav .navbar-shrink {
background-color: rgba(34, 34, 34, 0.95);
}
#mainNav .navbar-nav .nav-item .nav-link {
font-size: 1.25em;
font-family: BebasNeue;
}
.dropdown-menu {
background-color: rgba(34, 34, 34, 0.95);
border: none;
}
.dropdown-item {
color: white;
font-family: BebasNeue;
font-size: 1.25em;
text-transform: uppercase;
}
.dropdown-item:hover {
background-color: #fed136;
}
@font-face {
font-family: BebasNeue Light;
src: url("../../img/Fonts/BebasNeueLight.ttf") format("truetype");
src: url("../../img/Fonts/BebasNeueLight.woff") format("woff");
}
@font-face {
font-family: BebasNeue;
src: url("../../img/Fonts/BebasNeue.ttf") format("truetype");
src: url("../../img/Fonts/BebasNeue.woff") format("woff");
}
#mainNav .navbar-brand {
font-family: BebasNeue;
}
#mainNav .navbar-brand span {
font-family: BebasNeue Light;
}
#mainNav .navbar-brand {
font-size: 1.5em;
}
@media screen and (max-width: 375px) {
#mainNav .navbar-brand {
font-size: 1.25em;
}
}
/*
End CSS
Location: Multiple Pages
*/
/*
Start CSS
Location: Multiple Pages
*/
iframe {
max-width: 100%;
}
#foundationsLogo {
width: 15%;
margin-bottom: 30px;
}
/*
End CSS
Location: Multiple Pages
*/
/*
Start CSS
Location: Gear View
*/
body {
background-color: white;
}
h1 {
font-size: 2.75vw;
}
h2 {
font-size: 2vw;
}
h3 {
font-size: 1.75vw;
}
p {
font-size: 1.5vw;
}
#gearView {
padding-top: 0px;
background-color: rgba(255, 255, 255);
font-weight: bold;
width: 75%;
margin-left: auto;
margin-right: auto;
}
.mainPhotoDiv {
margin-left: auto;
margin-right: auto;
}
.longTitle {
font-size: 1.5vw;
}
.gearTitle {
margin: 10%;
}
.pic-option button:hover {
box-shadow: 5px 5px 2px grey;
cursor: pointer;
}
.item-container {
display: inline-flex;
width: 100%;
}
.pic-option {
display: flex;
width: 23%;
margin-left: auto;
margin-right: auto;
}
.hiddenDetails {
opacity: 0;
}
.gearCost {
margin-bottom: 0px;
}
.productPicSlider {
overflow: hidden;
display: inline-block;
}
.productPic {
width: 100%;
margin-left: auto;
margin-right: auto;
display: none;
}
.activeR {
display: inline-flex;
-webkit-animation-name: rightSlideIn;
-webkit-animation-duration: 0.5s;
animation-name: rightSlideIn;
animation-duration: 0.5s;
}
.activeL {
display: inline-flex;
-webkit-animation-name: leftSlideIn;
-webkit-animation-duration: 0.5s;
animation-name: leftSlideIn;
animation-duration: 0.5s;
}
.previousR {
display: inline-flex;
-webkit-animation-name: rightSlideOut;
-webkit-animation-duration: 0.5s;
animation-name: rightSlideOut;
animation-duration: 0.5s;
}
.previousL {
display: inline-flex;
-webkit-animation-name: leftSlideOut;
-webkit-animation-duration: 0.5s;
animation-name: leftSlideOut;
animation-duration: 0.5s;
}
@-webkit-keyframes rightSlideIn {
from {
transform: translateX(1000px);
}
to {
transform: translateX(0px);
}
}
@keyframes rightSlideIn {
from {
transform: translateX(1000px);
}
to {
transform: translateX(0px);
}
}
@-webkit-keyframes rightSlideOut {
from {
transform: translateX(0px);
}
to {
transform: translateX(1000px);
}
}
@keyframes rightSlideOut {
from {
transform: translateX(0px);
}
to {
transform: translateX(1000px);
}
}
@-webkit-keyframes leftSlideOut {
from {
display: flex;
transform: translateX(0px);
}
to {
display: flex;
transform: translateX(-1000px);
}
}
@keyframes leftSlideOut {
from {
display: flex;
transform: translateX(0px);
}
to {
display: flex;
transform: translateX(-1000px);
}
}
@-webkit-keyframes leftSlideIn {
from {
display: flex;
transform: translateX(-1000px);
}
to {
display: flex;
transform: translateX(0px);
}
}
@keyframes leftSlideIn {
from {
display: flex;
transform: translateX(-1000px);
}
to {
display: flex;
transform: translateX(0px);
}
}
.orderFormDiv {
position: fixed;
top: 0px;
right: 0px;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
padding: 1%;
width: 18%;
}
.orderFormBtn {
cursor: pointer;
background-color: black;
color: white;
box-shadow: 0px white;
border: 0px white;
}
.photoCenterer {
margin: auto;
}
.altPhotos {
height: 50px;
width: 50px;
margin: auto;
}
.altPhotos:hover {
border: 1px solid black;
cursor: pointer;
}
.portfolio-modal {
width: 50%;
margin-left: auto;
margin-right: auto;
height: auto;
}
.modal .productPicSlider {
width: 60%;
margin: 0px;
float: left;
}
.modal .productPic {
width: 100%;
z-index: -1;
}
.productDescription {
width: 35%;
padding: 2%;
z-index: 1;
margin: auto;
float: right;
text-align: left;
border: 1px solid black;
}
.productSlideshow {
display: block;
position: absolute;
vertical-align: middle;
top: 50%;
width: 4%;
padding: 1%;
background: black;
color: white;
z-index: 2;
font-size: 18pt;
font-family: monospace;
font-weight: bolder;
}
.productSlideshow:hover {
transition: 0.25s ease;
color: black;
cursor: pointer;
background: white;
}
.arrowR {
left: 55.7%;
}
.modalAltList {
display: inline-flex;
margin: auto;
}
@media screen and (max-width: 1024px) {
.gearTitle {
margin-top: 30%;
}
}
@media screen and (max-width: 575px) {
#gearView {
width: 100%;
}
h1 {
font-size: 3.5vw;
}
h2 {
font-size: 4vw;
}
h3 {
font-size: 4vw;
}
p {
font-size: 2.75vw;
}
.longTitle {
font-size: 4vw;
}
.gearTitle {
font-size: 5vw;
}
.gearCost {
font-size: 3vw;
}
.hiddenDetails {
display: block;
opacity: 1.0;
}
.pic-option {
width: 80%;
margin-bottom: 100px;
margin-left: auto;
margin-right: auto;
}
.modal .productPic {
width: 100%;
margin-left: 0px;
}
.productSlideshow {
display: none;
}
.productDescription p,
.productDescription li {
font-size: 6vw;
}
.orderFormBtn {
width: 100%;
font-size: 2.5vw;
}
.orderFormDiv {
margin-top: 18%;
width: 30%;
right: 0%;
}
.orderFormDiv h4 {
display: none;
}
.portfolio-modal {
width: 100%;
}
.modal .productPicSlider {
width: 100%;
}
.modal .productPic {
width: 100%;
}
.productDescription {
width: 100%;
}
.modal .modalAltList {
width: 100%;
padding: 1%;
align-items: center;
}
.modal .altPhotos {
width: 75px;
height: 75px;
}
}
/*
End CSS
Location: Multiple Pages
*/
/*
Start CSS
Location: footer
*/
.contactInfo {
color: white;
}
/*
End CSS
Location: footer
*/ | 0.363421 | 0.076649 |
html,
body {
height: 100%;
}
body {
background-size: cover;
background: center;
display: flex;
justify-content: center;
align-items: center;
font-family: sans-serif;
padding: 0;
margin: 0;
}
main {
display: block;
width: 960px;
height: 540px;
border-radius: 5px;
background: rgba(255, 255, 255, 0.3);
-webkit-backdrop-filter: blur(16px);
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
box-sizing: border-box;
padding: 20px;
text-align: center;
}
main.large {
width: calc(100% - 40px);
height: calc(100% - 40px);
}
main.centering {
display: flex;
justify-content: center;
align-items: center;
}
button {
text-decoration: none;
color: #fff;
background-color: #26a69a;
text-align: center;
border: none;
border-radius: 4px;
display: inline-block;
height: 72px;
line-height: 72px;
padding: 0 32px;
text-transform: uppercase;
font-size: 2rem;
cursor: pointer;
transition: background-color 0.2s;
}
button:hover {
background-color: #27bfb3;
}
button:active {
background-color: #1d8e82;
}
button.blue {
background-color: #2673a6;
}
button.blue:hover {
background-color: #2688bc;
}
button.blue:active {
background-color: #265c8f;
}
button.orange {
background-color: #e26e1e;
}
button.orange:hover {
background-color: #ed6c1d;
}
button.orange:active {
background-color: #b0591e;
}
#log {
border: 1px solid white;
background: rgba(0, 0, 0, 0.3);
border-radius: 2px;
font-size: 2rem;
margin: 20px;
padding: 10px;
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3) inset;
font-family: monospace;
text-align: left;
color: white;
height: 370px;
overflow: auto;
}
#log2 {
border: 1px solid white;
background: rgba(0, 0, 0, 0.3);
border-radius: 2px;
font-size: 2rem;
padding: 10px;
box-sizing: border-box;
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3) inset;
font-family: monospace;
text-align: left;
color: white;
overflow: auto;
}
.character {
background-image: url(../images/character.png);
background-size: 200px 200px;
width: 200px;
height: 200px;
} | JS/CodeRecipe278/chapter2/base_photo.css | html,
body {
height: 100%;
}
body {
background-size: cover;
background: center;
display: flex;
justify-content: center;
align-items: center;
font-family: sans-serif;
padding: 0;
margin: 0;
}
main {
display: block;
width: 960px;
height: 540px;
border-radius: 5px;
background: rgba(255, 255, 255, 0.3);
-webkit-backdrop-filter: blur(16px);
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
box-sizing: border-box;
padding: 20px;
text-align: center;
}
main.large {
width: calc(100% - 40px);
height: calc(100% - 40px);
}
main.centering {
display: flex;
justify-content: center;
align-items: center;
}
button {
text-decoration: none;
color: #fff;
background-color: #26a69a;
text-align: center;
border: none;
border-radius: 4px;
display: inline-block;
height: 72px;
line-height: 72px;
padding: 0 32px;
text-transform: uppercase;
font-size: 2rem;
cursor: pointer;
transition: background-color 0.2s;
}
button:hover {
background-color: #27bfb3;
}
button:active {
background-color: #1d8e82;
}
button.blue {
background-color: #2673a6;
}
button.blue:hover {
background-color: #2688bc;
}
button.blue:active {
background-color: #265c8f;
}
button.orange {
background-color: #e26e1e;
}
button.orange:hover {
background-color: #ed6c1d;
}
button.orange:active {
background-color: #b0591e;
}
#log {
border: 1px solid white;
background: rgba(0, 0, 0, 0.3);
border-radius: 2px;
font-size: 2rem;
margin: 20px;
padding: 10px;
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3) inset;
font-family: monospace;
text-align: left;
color: white;
height: 370px;
overflow: auto;
}
#log2 {
border: 1px solid white;
background: rgba(0, 0, 0, 0.3);
border-radius: 2px;
font-size: 2rem;
padding: 10px;
box-sizing: border-box;
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3) inset;
font-family: monospace;
text-align: left;
color: white;
overflow: auto;
}
.character {
background-image: url(../images/character.png);
background-size: 200px 200px;
width: 200px;
height: 200px;
} | 0.398758 | 0.086825 |
pre[class*='language-'] {
direction: ltr;
text-align: left;
white-space: pre;
word-spacing: 0;
word-break: normal;
line-height: 1.5;
color: rgba(230, 230, 220, 1);
background-color: rgba(0, 38, 53, 1);
}
/* Code blocks */
pre[class*='language-'] {
padding: 1rem;
overflow: auto;
border-radius: 0.4rem;
}
/* Inline code blocks */
:not(pre) > code {
overflow: auto;
padding: 0.1rem 0.3rem 0.2rem;
border-radius: 0.4rem;
color: rgba(230, 230, 220, 1);
background-color: rgba(0, 38, 53, 1);
}
.token.comment {
color: rgba(119, 146, 158, 1);
}
.token.prolog {
color: #999;
}
.token.doctype {
color: #999;
}
.token.tag {
color: #e2777a;
}
.token.entity {
color: #67cdcc;
}
.token.atrule {
color: #cc99cd;
}
.token.url {
color: #67cdcc;
}
.token.selector {
color: #cc99cd;
}
.token.string {
color: rgba(156, 240, 135, 1);
}
.token.property {
color: rgba(126, 178, 221, 1);
}
.token.important {
color: #cc99cd;
font-weight: bold;
}
.token.punctuation {
color: #ccc;
}
.token.number {
color: rgba(255, 90, 103, 1);
}
.token.function {
color: rgba(126, 178, 221, 1);
}
.token.class-name {
color: #f8c555;
}
.token.keyword {
color: rgba(28, 141, 178, 1);
}
.token.boolean {
color: rgba(255, 90, 103, 1);
}
.token.operator {
color: rgba(240, 142, 72, 1);
}
.token.char {
color: #7ec699;
}
.token.regex {
color: rgba(127, 192, 110, 1);
}
.token.variable {
color: rgba(128, 77, 192, 1);
}
.token.constant {
color: rgba(192, 110, 110, 1);
}
.token.symbol {
color: #f8c555;
}
.token.builtin {
color: #f08e48;
}
.token.attr-value {
color: #7ec699;
}
.token.deleted {
color: #e2777a;
}
.token.namespace {
color: #e2777a;
}
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.preprocessor {
color: rgba(240, 142, 72, 1);
}
.token.label {
color: rgba(28, 141, 178, 1);
}
pre.line-numbers {
position: relative;
padding-left: 3.8em;
counter-reset: linenumber;
}
pre.line-numbers > code {
position: relative;
white-space: inherit;
}
.line-numbers .line-numbers-rows {
position: absolute;
pointer-events: none;
top: 0;
font-size: 100%;
left: -3.8em;
width: 3em; /* works for line-numbers below 1000 lines */
letter-spacing: -1px;
border-right: 1px solid #999;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.line-numbers-rows > span {
pointer-events: none;
display: block;
counter-increment: linenumber;
}
.line-numbers-rows > span:before {
content: counter(linenumber);
color: #999;
display: block;
padding-right: 0.8em;
text-align: right;
}
div.code-toolbar {
position: relative;
} | src/css/rigel-prism.css | pre[class*='language-'] {
direction: ltr;
text-align: left;
white-space: pre;
word-spacing: 0;
word-break: normal;
line-height: 1.5;
color: rgba(230, 230, 220, 1);
background-color: rgba(0, 38, 53, 1);
}
/* Code blocks */
pre[class*='language-'] {
padding: 1rem;
overflow: auto;
border-radius: 0.4rem;
}
/* Inline code blocks */
:not(pre) > code {
overflow: auto;
padding: 0.1rem 0.3rem 0.2rem;
border-radius: 0.4rem;
color: rgba(230, 230, 220, 1);
background-color: rgba(0, 38, 53, 1);
}
.token.comment {
color: rgba(119, 146, 158, 1);
}
.token.prolog {
color: #999;
}
.token.doctype {
color: #999;
}
.token.tag {
color: #e2777a;
}
.token.entity {
color: #67cdcc;
}
.token.atrule {
color: #cc99cd;
}
.token.url {
color: #67cdcc;
}
.token.selector {
color: #cc99cd;
}
.token.string {
color: rgba(156, 240, 135, 1);
}
.token.property {
color: rgba(126, 178, 221, 1);
}
.token.important {
color: #cc99cd;
font-weight: bold;
}
.token.punctuation {
color: #ccc;
}
.token.number {
color: rgba(255, 90, 103, 1);
}
.token.function {
color: rgba(126, 178, 221, 1);
}
.token.class-name {
color: #f8c555;
}
.token.keyword {
color: rgba(28, 141, 178, 1);
}
.token.boolean {
color: rgba(255, 90, 103, 1);
}
.token.operator {
color: rgba(240, 142, 72, 1);
}
.token.char {
color: #7ec699;
}
.token.regex {
color: rgba(127, 192, 110, 1);
}
.token.variable {
color: rgba(128, 77, 192, 1);
}
.token.constant {
color: rgba(192, 110, 110, 1);
}
.token.symbol {
color: #f8c555;
}
.token.builtin {
color: #f08e48;
}
.token.attr-value {
color: #7ec699;
}
.token.deleted {
color: #e2777a;
}
.token.namespace {
color: #e2777a;
}
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.preprocessor {
color: rgba(240, 142, 72, 1);
}
.token.label {
color: rgba(28, 141, 178, 1);
}
pre.line-numbers {
position: relative;
padding-left: 3.8em;
counter-reset: linenumber;
}
pre.line-numbers > code {
position: relative;
white-space: inherit;
}
.line-numbers .line-numbers-rows {
position: absolute;
pointer-events: none;
top: 0;
font-size: 100%;
left: -3.8em;
width: 3em; /* works for line-numbers below 1000 lines */
letter-spacing: -1px;
border-right: 1px solid #999;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.line-numbers-rows > span {
pointer-events: none;
display: block;
counter-increment: linenumber;
}
.line-numbers-rows > span:before {
content: counter(linenumber);
color: #999;
display: block;
padding-right: 0.8em;
text-align: right;
}
div.code-toolbar {
position: relative;
} | 0.522689 | 0.129623 |
body {
background:antiquewhite ;
color: #000;
font: 14px Arial;
margin: 0 auto;
padding: 0;
position: relative;
}
h1{ font-size:28px;}
h2{ font-size:26px;}
h3{ font-size:18px;}
h4{ font-size:16px;}
h5{ font-size:14px;}
h6{ font-size:12px;}
h1,h2,h3,h4,h5,h6{ color:#563D64;}
small{ font-size:10px;}
b, strong{ font-weight:bold;}
a{ text-decoration: none; }
a:hover{ text-decoration: underline; }
.left { float:left; }
.right { float:right; }
.alignleft { float: left; margin-right: 15px; }
.alignright { float: right; margin-left: 15px; }
.clearfix:after,
form:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.container { margin: 25px auto; position: relative; width: 900px; }
#content {
background: #f9f9f9;
-webkit-box-shadow: 0 1px 0 #fff inset;
-moz-box-shadow: 0 1px 0 #fff inset;
-ms-box-shadow: 0 1px 0 #fff inset;
-o-box-shadow: 0 1px 0 #fff inset;
box-shadow: 0 1px 0 #fff inset;
border: 2px solid #c4c6ca;
margin: 0 auto;
padding: 25px 0 0;
position: relative;
text-align: center;
text-shadow: 0 1px 0 #fff;
width: 400px;
}
#content h1 {
color: black;
font: bold 32px Helvetica, Arial, sans-serif;
letter-spacing: -0.05em;
line-height: 20px;
margin: 10px 0 30px;
}
#content h1:before,
#content h1:after {
content: "";
height: 1px;
position: absolute;
top: 10px;
width: 27%;
}
#content h1:after {
background: rgb(126,126,126);
right: 0;
}
#content h1:before {
background: rgb(126,126,126);
left: 0;
}
#content:after,
#content:before {
background: #f9f9f9;
border: 1px solid #c4c6ca;
content: "";
display: block;
height: 100%;
left: -1px;
position: absolute;
width: 100%;
}
#content:after {
-webkit-transform: rotate(2deg);
-moz-transform: rotate(2deg);
-ms-transform: rotate(2deg);
-o-transform: rotate(2deg);
transform: rotate(2deg);
top: 0;
z-index: -1;
}
#content:before {
-webkit-transform: rotate(-3deg);
-moz-transform: rotate(-3deg);
-ms-transform: rotate(-3deg);
-o-transform: rotate(-3deg);
transform: rotate(-3deg);
top: 0;
z-index: -2;
}
#content form { margin: 0 20px; position: relative }
#content form input[type="text"],
#content form input[type="password"] {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
background: #eae7e7 ;
border: 1px solid #c8c8c8;
color: #777;
font: 13px Helvetica, Arial, sans-serif;
margin: 0 0 10px;
padding: 15px 10px 15px 40px;
width: 80%;
flex-wrap: wrap;
}
#content form input[type="text"]:focus,
#content form input[type="password"]:focus {
-webkit-box-shadow: 0 0 2px #ed1c24 inset;
-moz-box-shadow: 0 0 2px #ed1c24 inset;
-ms-box-shadow: 0 0 2px #ed1c24 inset;
-o-box-shadow: 0 0 2px #ed1c24 inset;
box-shadow: 0 0 2px #ed1c24 inset;
background-color: #fff;
border: 1px solid #ed1c24;
outline: none;
}
#username { background-position: 10px 10px !important }
#password { background-position: 10px -53px !important }
#content form input[type="submit"] {
background:peachpuff;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
-ms-border-radius: 30px;
-o-border-radius: 30px;
border-radius: 30px;
border: 2px solid black;
color: #85592e;
cursor: pointer;
float: left;
font: bold 15px Helvetica, Arial, sans-serif;
height: 35px;
margin: 20px 0 35px 15px;
position: relative;
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
width: 120px;
display: flex;
}
#content form input[type="submit"]:hover {
background: lightskyblue;
}
#content form div a {
display: flex;
flex-direction: column;
align-items: center;
color: #004a80;
float: right;
font-size: 12px;
margin: 30px 15px 0 0;
text-decoration: underline;
}
.button {
background: peachpuff;
-webkit-border-radius: 0 0 5px 5px;
-moz-border-radius: 0 0 5px 5px;
-o-border-radius: 0 0 5px 5px;
-ms-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
border-top: 1px solid #CFD5D9;
padding: 15px 0;
}
.button a {
color: #7E7E7E;
font-size: 17px;
padding: 2px 0 2px 40px;
text-decoration: none;
}
.button a:hover {
background-position: 0 -135px;
color: #00aeef;
} | style.css | body {
background:antiquewhite ;
color: #000;
font: 14px Arial;
margin: 0 auto;
padding: 0;
position: relative;
}
h1{ font-size:28px;}
h2{ font-size:26px;}
h3{ font-size:18px;}
h4{ font-size:16px;}
h5{ font-size:14px;}
h6{ font-size:12px;}
h1,h2,h3,h4,h5,h6{ color:#563D64;}
small{ font-size:10px;}
b, strong{ font-weight:bold;}
a{ text-decoration: none; }
a:hover{ text-decoration: underline; }
.left { float:left; }
.right { float:right; }
.alignleft { float: left; margin-right: 15px; }
.alignright { float: right; margin-left: 15px; }
.clearfix:after,
form:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.container { margin: 25px auto; position: relative; width: 900px; }
#content {
background: #f9f9f9;
-webkit-box-shadow: 0 1px 0 #fff inset;
-moz-box-shadow: 0 1px 0 #fff inset;
-ms-box-shadow: 0 1px 0 #fff inset;
-o-box-shadow: 0 1px 0 #fff inset;
box-shadow: 0 1px 0 #fff inset;
border: 2px solid #c4c6ca;
margin: 0 auto;
padding: 25px 0 0;
position: relative;
text-align: center;
text-shadow: 0 1px 0 #fff;
width: 400px;
}
#content h1 {
color: black;
font: bold 32px Helvetica, Arial, sans-serif;
letter-spacing: -0.05em;
line-height: 20px;
margin: 10px 0 30px;
}
#content h1:before,
#content h1:after {
content: "";
height: 1px;
position: absolute;
top: 10px;
width: 27%;
}
#content h1:after {
background: rgb(126,126,126);
right: 0;
}
#content h1:before {
background: rgb(126,126,126);
left: 0;
}
#content:after,
#content:before {
background: #f9f9f9;
border: 1px solid #c4c6ca;
content: "";
display: block;
height: 100%;
left: -1px;
position: absolute;
width: 100%;
}
#content:after {
-webkit-transform: rotate(2deg);
-moz-transform: rotate(2deg);
-ms-transform: rotate(2deg);
-o-transform: rotate(2deg);
transform: rotate(2deg);
top: 0;
z-index: -1;
}
#content:before {
-webkit-transform: rotate(-3deg);
-moz-transform: rotate(-3deg);
-ms-transform: rotate(-3deg);
-o-transform: rotate(-3deg);
transform: rotate(-3deg);
top: 0;
z-index: -2;
}
#content form { margin: 0 20px; position: relative }
#content form input[type="text"],
#content form input[type="password"] {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
background: #eae7e7 ;
border: 1px solid #c8c8c8;
color: #777;
font: 13px Helvetica, Arial, sans-serif;
margin: 0 0 10px;
padding: 15px 10px 15px 40px;
width: 80%;
flex-wrap: wrap;
}
#content form input[type="text"]:focus,
#content form input[type="password"]:focus {
-webkit-box-shadow: 0 0 2px #ed1c24 inset;
-moz-box-shadow: 0 0 2px #ed1c24 inset;
-ms-box-shadow: 0 0 2px #ed1c24 inset;
-o-box-shadow: 0 0 2px #ed1c24 inset;
box-shadow: 0 0 2px #ed1c24 inset;
background-color: #fff;
border: 1px solid #ed1c24;
outline: none;
}
#username { background-position: 10px 10px !important }
#password { background-position: 10px -53px !important }
#content form input[type="submit"] {
background:peachpuff;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
-ms-border-radius: 30px;
-o-border-radius: 30px;
border-radius: 30px;
border: 2px solid black;
color: #85592e;
cursor: pointer;
float: left;
font: bold 15px Helvetica, Arial, sans-serif;
height: 35px;
margin: 20px 0 35px 15px;
position: relative;
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
width: 120px;
display: flex;
}
#content form input[type="submit"]:hover {
background: lightskyblue;
}
#content form div a {
display: flex;
flex-direction: column;
align-items: center;
color: #004a80;
float: right;
font-size: 12px;
margin: 30px 15px 0 0;
text-decoration: underline;
}
.button {
background: peachpuff;
-webkit-border-radius: 0 0 5px 5px;
-moz-border-radius: 0 0 5px 5px;
-o-border-radius: 0 0 5px 5px;
-ms-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
border-top: 1px solid #CFD5D9;
padding: 15px 0;
}
.button a {
color: #7E7E7E;
font-size: 17px;
padding: 2px 0 2px 40px;
text-decoration: none;
}
.button a:hover {
background-position: 0 -135px;
color: #00aeef;
} | 0.282394 | 0.102799 |
#nav {
position:relative;
width:680px;
margin:0 auto;
margin-top:50px;
padding:10px;
}
ul#navigation {
margin:0px auto;
position:relative;
float:left;
border-left:1px solid #c4dbe7;
border-right:1px solid #c4dbe7;
}
ul#navigation li {
display:inline;
font-size:12px;
font-weight:bold;
margin:0;
padding:0;
float:left;
position:relative;
border-top:1px solid #c4dbe7;
border-bottom:2px solid #c4dbe7;
}
ul#navigation li a {
padding:10px 25px;
color:#616161;
text-shadow:1px 1px 0px #fff;
text-decoration:none;
display:inline-block;
border-right:1px solid #fff;
border-left:1px solid #C2C2C2;
border-top:1px solid #fff;
background: #f5f5f5;
-webkit-transition:color 0.2s linear, background 0.2s linear;
-moz-transition:color 0.2s linear, background 0.2s linear;
-o-transition:color 0.2s linear, background 0.2s linear;
transition:color 0.2s linear, background 0.2s linear;
}
ul#navigation li a:hover {
background:#f8f8f8;
color:#282828;
}
ul#navigation li a.first {
border-left: 0 none;
}
ul#navigation li a.last {
border-right: 0 none;
}
ul#navigation li:hover > a {
background:#fff;
}
/* Drop-Down Navigation */
ul#navigation li:hover > ul
{
/*these 2 styles are very important,
being the ones which make the drop-down to appear on hover */
visibility:visible;
opacity:1;
}
ul#navigation ul, ul#navigation ul li ul {
list-style: none;
margin: 0;
padding: 0;
/*the next 2 styles are very important,
being the ones which make the drop-down to stay hidden */
visibility:hidden;
opacity:0;
position: absolute;
z-index: 99999;
width:180px;
background:#f8f8f8;
box-shadow:1px 1px 3px #ccc;
/* css3 transitions for smooth hover effect */
-webkit-transition:opacity 0.2s linear, visibility 0.2s linear;
-moz-transition:opacity 0.2s linear, visibility 0.2s linear;
-o-transition:opacity 0.2s linear, visibility 0.2s linear;
transition:opacity 0.2s linear, visibility 0.2s linear;
}
ul#navigation ul {
top: 43px;
left: 1px;
}
ul#navigation ul li ul {
top: 0;
left: 181px; /* strong related to width:180px; from above */
}
ul#navigation ul li {
clear:both;
width:100%;
border:0 none;
border-bottom:1px solid #c9c9c9;
}
ul#navigation ul li a {
background:none;
padding:7px 15px;
color:#616161;
text-shadow:1px 1px 0px #fff;
text-decoration:none;
display:inline-block;
border:0 none;
float:left;
clear:both;
width:150px;
} | style.css | #nav {
position:relative;
width:680px;
margin:0 auto;
margin-top:50px;
padding:10px;
}
ul#navigation {
margin:0px auto;
position:relative;
float:left;
border-left:1px solid #c4dbe7;
border-right:1px solid #c4dbe7;
}
ul#navigation li {
display:inline;
font-size:12px;
font-weight:bold;
margin:0;
padding:0;
float:left;
position:relative;
border-top:1px solid #c4dbe7;
border-bottom:2px solid #c4dbe7;
}
ul#navigation li a {
padding:10px 25px;
color:#616161;
text-shadow:1px 1px 0px #fff;
text-decoration:none;
display:inline-block;
border-right:1px solid #fff;
border-left:1px solid #C2C2C2;
border-top:1px solid #fff;
background: #f5f5f5;
-webkit-transition:color 0.2s linear, background 0.2s linear;
-moz-transition:color 0.2s linear, background 0.2s linear;
-o-transition:color 0.2s linear, background 0.2s linear;
transition:color 0.2s linear, background 0.2s linear;
}
ul#navigation li a:hover {
background:#f8f8f8;
color:#282828;
}
ul#navigation li a.first {
border-left: 0 none;
}
ul#navigation li a.last {
border-right: 0 none;
}
ul#navigation li:hover > a {
background:#fff;
}
/* Drop-Down Navigation */
ul#navigation li:hover > ul
{
/*these 2 styles are very important,
being the ones which make the drop-down to appear on hover */
visibility:visible;
opacity:1;
}
ul#navigation ul, ul#navigation ul li ul {
list-style: none;
margin: 0;
padding: 0;
/*the next 2 styles are very important,
being the ones which make the drop-down to stay hidden */
visibility:hidden;
opacity:0;
position: absolute;
z-index: 99999;
width:180px;
background:#f8f8f8;
box-shadow:1px 1px 3px #ccc;
/* css3 transitions for smooth hover effect */
-webkit-transition:opacity 0.2s linear, visibility 0.2s linear;
-moz-transition:opacity 0.2s linear, visibility 0.2s linear;
-o-transition:opacity 0.2s linear, visibility 0.2s linear;
transition:opacity 0.2s linear, visibility 0.2s linear;
}
ul#navigation ul {
top: 43px;
left: 1px;
}
ul#navigation ul li ul {
top: 0;
left: 181px; /* strong related to width:180px; from above */
}
ul#navigation ul li {
clear:both;
width:100%;
border:0 none;
border-bottom:1px solid #c9c9c9;
}
ul#navigation ul li a {
background:none;
padding:7px 15px;
color:#616161;
text-shadow:1px 1px 0px #fff;
text-decoration:none;
display:inline-block;
border:0 none;
float:left;
clear:both;
width:150px;
} | 0.287368 | 0.058939 |
.form-group label, label {
font-size: 14px;
color: #666666;
letter-spacing: 0px;
}
input.form-control {
font-size: 14px;
padding: .75rem 1rem;
}
/* Clipboard */
.input-group-append a {
display: flex;
align-items: center;
font-size: 20px;
padding: 0.4375rem 1rem;
}
/* SELECT 2 */
select {
outline: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
padding: 0.6rem 0.8rem;
}
.select2-container--default .select2-results__option[aria-selected=true] {
background-color: rgb(193 193 193 / 24%);
color: #444;
font-weight: 500;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
background-color: rgb(193 193 193 / 24%);
color: #444;
font-weight: 500;
}
.select2-results__option[aria-selected] {
color: #444;
font-weight: 500;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
border: 1px solid #dedede;
}
span.select2.select2-container.select2-container--default.select2-container--open .select2-selection--single, .select2-container--default.select2-container--open .select2-selection--multiple {
border: 1px solid #95b3ff;
box-shadow: none;
border-radius: 5px;
}
.select2-container--default .select2-selection--single {
border: 1px solid transparent;
}
.select2-container--default .select2-results__group {
color: #333333;
background-color: transparent;
}
.select2-container--default .select2-selection--multiple {
background:transparent;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
font-weight: 500;
font-size: 13px;
margin: 0px 5px 5px 0px;
background-color: #f3f3f3;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
letter-spacing: 0px;
}
span.select2.select2-container.mb-4.select2-container--default.select2-container--disabled {
opacity: 0.4;
}
.select2-container--default .select2-search--inline .select2-search__field {
width: 50px !important;
margin-top: 0px;
}
.no-margin .mb-4 {
margin-bottom: 5px !important;
}
/* BOOTSTRAP SELECT */
.bootstrap-select.btn-group .dropdown-menu a.dropdown-item span.dropdown-item-inner:not([class*="bg-"]):hover {
background-color: rgb(193 193 193 / 24%);
color: #444;
font-weight: 500;
}
.bootstrap-select.btn-group .dropdown-menu a.dropdown-item.selected {
background-color: rgb(193 193 193 / 24%);
color: #444;
font-weight: 500;
}
.bootstrap-select.btn-group .dropdown-menu a.dropdown-item span.dropdown-item-inner {
display: block;
padding: 9px 19px;
font-weight: 500;
font-size: 14px;
color: #444444;
}
button.actions-btn.bs-select-all.btn.btn-default.btn-light {
margin-right: 5px;
background: #e8f1ff;
color: #0767A3;
}
button.actions-btn.bs-deselect-all.btn.btn-default.btn-light {
background: #ffffff;
border: 1px solid #c0d9ff;
margin-left: 5px;
color: #0767A3;
}
a.dropdown-item.disabled {
opacity: 0.5;
}
/* MAXLENGTH */
.bootstrap-maxlength.text-muted.small.form-text, .bootstrap-maxlength.text-danger.small.form-text {
display: none !important;
}
/* TYPEAHEAD */
span.twitter-typeahead{
width: 100%;
}
span.twitter-typeahead .tt-menu{
right: 0;
background: #ffffff;
border: 1px solid #bfc9d4;
margin-top: -4px;
}
.tt-suggestion.tt-selectable {
color: #3b3f5c;
padding: 15px 18px;
}
.tt-suggestion.tt-selectable:hover {
background-color: #ecf4ff;
cursor: pointer;
}
.tt-suggestion.tt-selectable strong{
color: #0767A3;
}
input.typeahead {
background-color: #ffffff !important;
width: 100%;
}
/* CAPTCHA */
.captcha {
text-align: center;
background-color: #ffffff;
border: 1px dashed #0767A3;
padding: 10px 0px;
width: 100%;
border-radius: 4px;
}
.captcha h2 {
font-size: 15px;
margin: 0px;
}
@-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;
-webkit-animation-duration: 0.6s;
animation-name: fadeInUp;
animation-duration: 0.6s;
}
.captcha-check {
display: none;
}
.captcha-input input.error {
border: 1px solid #ff8080 !important;
}
.captcha-input {
position: relative;
width: 100%;
}
.captcha-input i {
position: absolute;
font-size: 19px;
color: #c5c3c3;
top: 9px;
left: 5px;
}
.captcha-input input[type="text"] {
border: 1px solid #e2e1e1;
padding: 8px 33px;
width: 100%;
border-radius: .17rem;
transition: all ease 0.2s;
}
.captcha-input input[type="text"]:focus {
border: 1px solid #0057ff;
transition: all ease 0.2s;
}
.captcha-input input[type="text"]:focus + .las{
color: #0057ff !important;
transition: all ease 0.2s;
}
.captcha-input input[type="text"]::placeholder{
color: #e2e1e1;
}
/* VALIDATION */
/* Checkbox */
.cbx {
margin: auto;
-webkit-user-select: none;
user-select: none;
cursor: pointer;
}
.cbx span {
display: inline-block;
vertical-align: middle;
transform: translate3d(0, 0, 0);
}
.cbx span:first-child {
position: relative;
width: 18px;
height: 18px;
border-radius: 3px;
transform: scale(1);
vertical-align: middle;
border: 1px solid #9098A9;
transition: all 0.2s ease;
}
.cbx span:first-child svg {
position: absolute;
top: 3px;
left: 2px;
fill: none;
stroke: #FFFFFF;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
stroke-dasharray: 16px;
stroke-dashoffset: 16px;
transition: all 0.3s ease;
transition-delay: 0.1s;
transform: translate3d(0, 0, 0);
}
.cbx span:first-child:before {
content: "";
width: 100%;
height: 100%;
background: #0767A3;
display: block;
transform: scale(0);
opacity: 1;
border-radius: 50%;
}
.cbx span:last-child {
padding-left: 8px;
}
.cbx:hover span:first-child {
border-color: #0767A3;
}
.inp-cbx:checked + .cbx span:first-child {
background: #0767A3;
border-color: #0767A3;
animation: wave 0.4s ease;
}
.inp-cbx:checked + .cbx span:first-child svg {
stroke-dashoffset: 0;
}
.inp-cbx:checked + .cbx span:first-child:before {
transform: scale(3.5);
opacity: 0;
transition: all 0.6s ease;
}
@keyframes wave {
50% {
transform: scale(0.9);
}
}
/* LAYOUTS */
.makeitSticky {
z-index: 9999;
}
/* Media Query */
@media(max-width: 575px) {
.validation-container .form-group .text-right.col-xl-3.col-lg-3.col-md-3.col-sm-12, .col-form-label.text-right {
text-align: left !important;
}
.col-lg-6.col-md-9.col-sm-12 .text-right{
text-align: left !important;
}
}
/* Tablet Media Query */
@media (min-width: 600px) and (max-width: 1068px) {
.col-form-label.text-right {
text-align: left !important;
}
} | public/admin/assets/css/forms/form-widgets.css | .form-group label, label {
font-size: 14px;
color: #666666;
letter-spacing: 0px;
}
input.form-control {
font-size: 14px;
padding: .75rem 1rem;
}
/* Clipboard */
.input-group-append a {
display: flex;
align-items: center;
font-size: 20px;
padding: 0.4375rem 1rem;
}
/* SELECT 2 */
select {
outline: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
padding: 0.6rem 0.8rem;
}
.select2-container--default .select2-results__option[aria-selected=true] {
background-color: rgb(193 193 193 / 24%);
color: #444;
font-weight: 500;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
background-color: rgb(193 193 193 / 24%);
color: #444;
font-weight: 500;
}
.select2-results__option[aria-selected] {
color: #444;
font-weight: 500;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
border: 1px solid #dedede;
}
span.select2.select2-container.select2-container--default.select2-container--open .select2-selection--single, .select2-container--default.select2-container--open .select2-selection--multiple {
border: 1px solid #95b3ff;
box-shadow: none;
border-radius: 5px;
}
.select2-container--default .select2-selection--single {
border: 1px solid transparent;
}
.select2-container--default .select2-results__group {
color: #333333;
background-color: transparent;
}
.select2-container--default .select2-selection--multiple {
background:transparent;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
font-weight: 500;
font-size: 13px;
margin: 0px 5px 5px 0px;
background-color: #f3f3f3;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
letter-spacing: 0px;
}
span.select2.select2-container.mb-4.select2-container--default.select2-container--disabled {
opacity: 0.4;
}
.select2-container--default .select2-search--inline .select2-search__field {
width: 50px !important;
margin-top: 0px;
}
.no-margin .mb-4 {
margin-bottom: 5px !important;
}
/* BOOTSTRAP SELECT */
.bootstrap-select.btn-group .dropdown-menu a.dropdown-item span.dropdown-item-inner:not([class*="bg-"]):hover {
background-color: rgb(193 193 193 / 24%);
color: #444;
font-weight: 500;
}
.bootstrap-select.btn-group .dropdown-menu a.dropdown-item.selected {
background-color: rgb(193 193 193 / 24%);
color: #444;
font-weight: 500;
}
.bootstrap-select.btn-group .dropdown-menu a.dropdown-item span.dropdown-item-inner {
display: block;
padding: 9px 19px;
font-weight: 500;
font-size: 14px;
color: #444444;
}
button.actions-btn.bs-select-all.btn.btn-default.btn-light {
margin-right: 5px;
background: #e8f1ff;
color: #0767A3;
}
button.actions-btn.bs-deselect-all.btn.btn-default.btn-light {
background: #ffffff;
border: 1px solid #c0d9ff;
margin-left: 5px;
color: #0767A3;
}
a.dropdown-item.disabled {
opacity: 0.5;
}
/* MAXLENGTH */
.bootstrap-maxlength.text-muted.small.form-text, .bootstrap-maxlength.text-danger.small.form-text {
display: none !important;
}
/* TYPEAHEAD */
span.twitter-typeahead{
width: 100%;
}
span.twitter-typeahead .tt-menu{
right: 0;
background: #ffffff;
border: 1px solid #bfc9d4;
margin-top: -4px;
}
.tt-suggestion.tt-selectable {
color: #3b3f5c;
padding: 15px 18px;
}
.tt-suggestion.tt-selectable:hover {
background-color: #ecf4ff;
cursor: pointer;
}
.tt-suggestion.tt-selectable strong{
color: #0767A3;
}
input.typeahead {
background-color: #ffffff !important;
width: 100%;
}
/* CAPTCHA */
.captcha {
text-align: center;
background-color: #ffffff;
border: 1px dashed #0767A3;
padding: 10px 0px;
width: 100%;
border-radius: 4px;
}
.captcha h2 {
font-size: 15px;
margin: 0px;
}
@-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;
-webkit-animation-duration: 0.6s;
animation-name: fadeInUp;
animation-duration: 0.6s;
}
.captcha-check {
display: none;
}
.captcha-input input.error {
border: 1px solid #ff8080 !important;
}
.captcha-input {
position: relative;
width: 100%;
}
.captcha-input i {
position: absolute;
font-size: 19px;
color: #c5c3c3;
top: 9px;
left: 5px;
}
.captcha-input input[type="text"] {
border: 1px solid #e2e1e1;
padding: 8px 33px;
width: 100%;
border-radius: .17rem;
transition: all ease 0.2s;
}
.captcha-input input[type="text"]:focus {
border: 1px solid #0057ff;
transition: all ease 0.2s;
}
.captcha-input input[type="text"]:focus + .las{
color: #0057ff !important;
transition: all ease 0.2s;
}
.captcha-input input[type="text"]::placeholder{
color: #e2e1e1;
}
/* VALIDATION */
/* Checkbox */
.cbx {
margin: auto;
-webkit-user-select: none;
user-select: none;
cursor: pointer;
}
.cbx span {
display: inline-block;
vertical-align: middle;
transform: translate3d(0, 0, 0);
}
.cbx span:first-child {
position: relative;
width: 18px;
height: 18px;
border-radius: 3px;
transform: scale(1);
vertical-align: middle;
border: 1px solid #9098A9;
transition: all 0.2s ease;
}
.cbx span:first-child svg {
position: absolute;
top: 3px;
left: 2px;
fill: none;
stroke: #FFFFFF;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
stroke-dasharray: 16px;
stroke-dashoffset: 16px;
transition: all 0.3s ease;
transition-delay: 0.1s;
transform: translate3d(0, 0, 0);
}
.cbx span:first-child:before {
content: "";
width: 100%;
height: 100%;
background: #0767A3;
display: block;
transform: scale(0);
opacity: 1;
border-radius: 50%;
}
.cbx span:last-child {
padding-left: 8px;
}
.cbx:hover span:first-child {
border-color: #0767A3;
}
.inp-cbx:checked + .cbx span:first-child {
background: #0767A3;
border-color: #0767A3;
animation: wave 0.4s ease;
}
.inp-cbx:checked + .cbx span:first-child svg {
stroke-dashoffset: 0;
}
.inp-cbx:checked + .cbx span:first-child:before {
transform: scale(3.5);
opacity: 0;
transition: all 0.6s ease;
}
@keyframes wave {
50% {
transform: scale(0.9);
}
}
/* LAYOUTS */
.makeitSticky {
z-index: 9999;
}
/* Media Query */
@media(max-width: 575px) {
.validation-container .form-group .text-right.col-xl-3.col-lg-3.col-md-3.col-sm-12, .col-form-label.text-right {
text-align: left !important;
}
.col-lg-6.col-md-9.col-sm-12 .text-right{
text-align: left !important;
}
}
/* Tablet Media Query */
@media (min-width: 600px) and (max-width: 1068px) {
.col-form-label.text-right {
text-align: left !important;
}
} | 0.31279 | 0.091666 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("wikipedia.org") {
* { color: white ; background-color: black; font-family: Georgia, "Times New Roman", Times, Serif; line-height: 2.0em; font-size: 1.0em; -moz-appearance: none !important;
}
html, body, div, table, th, td, p, ul, ol, li, form, iframe, tbody, dl, dt, dd, span, fieldset, label, span[style="font-style: normal;"],
font, style, table:not([class="reference"]) > tbody > tr > td:not([class="selected"]), .e1, .dayTime, .sb1, .sb2
{
-moz-appearance: none !important;
color: white !important;
background-color: black !important;
}
* { border-color : grey !important}
::-moz-selection { color: black ! important; background-color: #a6ab00 ! important; }
cite, cite *, code , pre, pre *, box *, .bxbg *, .comhead *{ color: white !important; background-color: #023 !important;}
cite:hover *{ background-color: #023 !important; color: #aaa !important;}
blockquote *, blockquote{ color: #bbb !important; background-color: #023 !important; border-color: #8dc896 !important;}
a:link, a:link *, * a{ -moz-appearance: none !important; background-color: black !important; font-weight:bold; color: #C0C0C0 !important }
a:active, a:active * { -moz-appearance: none !important; background-color: transparent !important; color: red !important }
a:visited, a:visited * { -moz-appearance: none !important; background-color: transparent !important; color: #338060 !important }
a:hover, a:hover * { -moz-appearance: none !important; background-color: black !important; text-decoration: underline !important; color: #FEDDAA !important }
strong, b, small, big, b>*, h1, h1 > a, h2, h3, h4, h5, h6, h7, tt, em, span[style="font-weight: bold;"], span[class="item-title"], span[style="font-style: italic;"], i, span[class="title"], span[class="fly-title"], .dvbxImgCapt,
*[font-size="xx-large"], *[font-size="x-large"], stname, ssname, #goog-imageless-button-content,
.goog-imageless-button-content, .tr_sort-bar > thead > tr > td, #tr_file-view > thead > tr > td,
#innerheadlines, .mod_grafico_foto2 *, .heading1 *
{ background-color: black !important; color: #C0C0C0 !important; }
img, a.image * {-moz-appearance: none !important; background-color: #999481 !important;}
a > img {-moz-appearance: none !important; background-color: transparent !important;}
img:hover {-moz-appearance: none !important; background-color: gainsboro !important;}
img:active {background-color: gold !important;}
div[id*="lightbox"], div[id*="lightbox"] *, div[id*="lightbox"] a {background-color: transparent !important;}
span[class="toctext"], span[class="tocnumber"]
{ background-color: black !important; color: #98AFC7 !important; font-family: Georgia, "Times New Roman", Times, Serif;}
div[class=thumbcaption] { background-color: black !important; color: #348 !important; font-family: Georgia, "Times New Roman", Times, Serif;}
div[class=thumbcaption] > a { color: #579 !important; font-family: Georgia, "Times New Roman", Times, Serif; }
div[class=navpopup] { border-color: #333 !important; font-family: Georgia, "Times New Roman", Times, Serif;}
#dropmenu_container *, #nonfooter *, #channel_iframe *, #post_form_id *, .invite *, .invite_friends *,
#doc4 *, .viewport, .pageImageDisplay *, .footer *, .userimg *, .userimg * img, .userimg:hover *, .phototag *, #headerbot *, #view_container *, #topnav_container *, #scribd-doc *, #scribd-doc:hover *, #phpbb * div *, #ss_prev, #ss_next, #ss_prev:hover *, #ss_next:hover *, #ICc0 *, #sn_ccCommentCtrlCommentControl *, .c_main * div *, .clearfix ul *, #photos *, #Photo *, div .PhotoStream *, #wrapper * img, #dc * img, #marketUpdate *, .bodybottom * img,
#it_container *, img.icon * img, .icon, #vduwrap *, .xpand * img,
div.tab_content *, .tab_content:hover *, div.profile_top_wash * , div.profile_top_wash:hover *, .album_container *,
div.UIOneOff_Container * , .album_container:hover *,.UIOneOff_Container:hover *, #lbImage *, #slide *, .wrapper *, #tree * img, div.scontentarea *, .boxwhite *, .boxwhite *:hover, #vi-container * div, .ipics-cell * img, .lview * img
{background-color: transparent !important}
#pg_height *, #phpbb * table{border-width : 1px }
.forumline * th,.forumline * .row1, .forumline * .row2 {border : 1px solid #222 !important}
m, span[class="highlight"] , h3 > a > em, .v1, .s>em, span.__mozilla-findbar-search
{background-color: orange !important; color: black !important;}
input[type=button], input[type=submit], input[type=reset], input[type=hidden], button
{
-moz-appearance: none !important;
background-color: /*ButtonFace*/ #012 !important;
color: /*ButtonText*/ burlywood !important;
border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight !important;
}
select, input[type=select]
{
-moz-appearance: none !important;
background-color: #5d6871 !important;
color: lightgrey !important;
}
textarea, input[type=textbox], input[type=text], input, samp, kbd, var, dfn
{
-moz-appearance: none !important;
background-color: #023 !important;
border-color: #648 !important;
color: #888 !important;
font-family: sans-serif !important;
border: 1px solid !important;
}
textarea:hover, input[type=textbox]:hover, input[type=text]:hover, input:not([type]):hover
{
background-color: #111 !important;
border-color: blue !important;
color: #888 !important;
border: 1px solid !important;
}
input[type=file] { background-color : lightgrey !important; color:black !important}
input[type=password]
{
-moz-appearance: none !important;
background-color: #77a7aa !important;
color: #0000FF !important;
border-color: blue !important;
border: 1px solid !important;
}
textarea:focus, input[type=textbox]:focus, input[type=text]:focus
{
background-color: #000 !important;
border-color: lightblue !important;
color: #999 !important;
border: 1px solid !important;
}
} | data/usercss/21275.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("wikipedia.org") {
* { color: white ; background-color: black; font-family: Georgia, "Times New Roman", Times, Serif; line-height: 2.0em; font-size: 1.0em; -moz-appearance: none !important;
}
html, body, div, table, th, td, p, ul, ol, li, form, iframe, tbody, dl, dt, dd, span, fieldset, label, span[style="font-style: normal;"],
font, style, table:not([class="reference"]) > tbody > tr > td:not([class="selected"]), .e1, .dayTime, .sb1, .sb2
{
-moz-appearance: none !important;
color: white !important;
background-color: black !important;
}
* { border-color : grey !important}
::-moz-selection { color: black ! important; background-color: #a6ab00 ! important; }
cite, cite *, code , pre, pre *, box *, .bxbg *, .comhead *{ color: white !important; background-color: #023 !important;}
cite:hover *{ background-color: #023 !important; color: #aaa !important;}
blockquote *, blockquote{ color: #bbb !important; background-color: #023 !important; border-color: #8dc896 !important;}
a:link, a:link *, * a{ -moz-appearance: none !important; background-color: black !important; font-weight:bold; color: #C0C0C0 !important }
a:active, a:active * { -moz-appearance: none !important; background-color: transparent !important; color: red !important }
a:visited, a:visited * { -moz-appearance: none !important; background-color: transparent !important; color: #338060 !important }
a:hover, a:hover * { -moz-appearance: none !important; background-color: black !important; text-decoration: underline !important; color: #FEDDAA !important }
strong, b, small, big, b>*, h1, h1 > a, h2, h3, h4, h5, h6, h7, tt, em, span[style="font-weight: bold;"], span[class="item-title"], span[style="font-style: italic;"], i, span[class="title"], span[class="fly-title"], .dvbxImgCapt,
*[font-size="xx-large"], *[font-size="x-large"], stname, ssname, #goog-imageless-button-content,
.goog-imageless-button-content, .tr_sort-bar > thead > tr > td, #tr_file-view > thead > tr > td,
#innerheadlines, .mod_grafico_foto2 *, .heading1 *
{ background-color: black !important; color: #C0C0C0 !important; }
img, a.image * {-moz-appearance: none !important; background-color: #999481 !important;}
a > img {-moz-appearance: none !important; background-color: transparent !important;}
img:hover {-moz-appearance: none !important; background-color: gainsboro !important;}
img:active {background-color: gold !important;}
div[id*="lightbox"], div[id*="lightbox"] *, div[id*="lightbox"] a {background-color: transparent !important;}
span[class="toctext"], span[class="tocnumber"]
{ background-color: black !important; color: #98AFC7 !important; font-family: Georgia, "Times New Roman", Times, Serif;}
div[class=thumbcaption] { background-color: black !important; color: #348 !important; font-family: Georgia, "Times New Roman", Times, Serif;}
div[class=thumbcaption] > a { color: #579 !important; font-family: Georgia, "Times New Roman", Times, Serif; }
div[class=navpopup] { border-color: #333 !important; font-family: Georgia, "Times New Roman", Times, Serif;}
#dropmenu_container *, #nonfooter *, #channel_iframe *, #post_form_id *, .invite *, .invite_friends *,
#doc4 *, .viewport, .pageImageDisplay *, .footer *, .userimg *, .userimg * img, .userimg:hover *, .phototag *, #headerbot *, #view_container *, #topnav_container *, #scribd-doc *, #scribd-doc:hover *, #phpbb * div *, #ss_prev, #ss_next, #ss_prev:hover *, #ss_next:hover *, #ICc0 *, #sn_ccCommentCtrlCommentControl *, .c_main * div *, .clearfix ul *, #photos *, #Photo *, div .PhotoStream *, #wrapper * img, #dc * img, #marketUpdate *, .bodybottom * img,
#it_container *, img.icon * img, .icon, #vduwrap *, .xpand * img,
div.tab_content *, .tab_content:hover *, div.profile_top_wash * , div.profile_top_wash:hover *, .album_container *,
div.UIOneOff_Container * , .album_container:hover *,.UIOneOff_Container:hover *, #lbImage *, #slide *, .wrapper *, #tree * img, div.scontentarea *, .boxwhite *, .boxwhite *:hover, #vi-container * div, .ipics-cell * img, .lview * img
{background-color: transparent !important}
#pg_height *, #phpbb * table{border-width : 1px }
.forumline * th,.forumline * .row1, .forumline * .row2 {border : 1px solid #222 !important}
m, span[class="highlight"] , h3 > a > em, .v1, .s>em, span.__mozilla-findbar-search
{background-color: orange !important; color: black !important;}
input[type=button], input[type=submit], input[type=reset], input[type=hidden], button
{
-moz-appearance: none !important;
background-color: /*ButtonFace*/ #012 !important;
color: /*ButtonText*/ burlywood !important;
border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight !important;
}
select, input[type=select]
{
-moz-appearance: none !important;
background-color: #5d6871 !important;
color: lightgrey !important;
}
textarea, input[type=textbox], input[type=text], input, samp, kbd, var, dfn
{
-moz-appearance: none !important;
background-color: #023 !important;
border-color: #648 !important;
color: #888 !important;
font-family: sans-serif !important;
border: 1px solid !important;
}
textarea:hover, input[type=textbox]:hover, input[type=text]:hover, input:not([type]):hover
{
background-color: #111 !important;
border-color: blue !important;
color: #888 !important;
border: 1px solid !important;
}
input[type=file] { background-color : lightgrey !important; color:black !important}
input[type=password]
{
-moz-appearance: none !important;
background-color: #77a7aa !important;
color: #0000FF !important;
border-color: blue !important;
border: 1px solid !important;
}
textarea:focus, input[type=textbox]:focus, input[type=text]:focus
{
background-color: #000 !important;
border-color: lightblue !important;
color: #999 !important;
border: 1px solid !important;
}
} | 0.211091 | 0.110088 |
.choices{
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
margin-top: 80px;
margin-bottom: 80px;
width: 100%;
}
.choices span{
margin-top: 23px;
display: inline-block;
font-size: 25px;
font-weight: bolder;
color: #091188;
}
.choices ol{
padding: 10px 0px 0px 20px;
margin: 0px;
}
.choices li{
font-size: 18px;
font-weight: 500;
color: #AEAEAE;
}
#learnmore{
margin-top: 15px;
display: inline-block;
font-size: 16px;
font-weight: 600;
color: #6D6D6D;
}
.choices div{
width: 380px;
}
.choice1 {
display: inline-block;
padding-left: 80px;
}
.choice2{
display: inline-block;
padding-left: 80px;
}
.choice3{
display: inline-block;
padding-left: 80px;
}
.choice4{
display: inline-block;
padding-left: 80px;
margin-top: 70px;
}
.choice5{
display: inline-block;
padding-left: 80px;
margin-top: 70px;
}
.choice6 {
display: inline-block;
padding-left: 80px;
margin-top: 70px;
}
@media (max-width: 769px) {
.choices{
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
margin-top: 50px;
margin-bottom: 10px;
}
.choice1, .choice2,.choice6,.choice5,.choice3,
.choice4{
margin-top: 10px;
padding: 0px;
margin-bottom: 40px;
padding-left: 30%;
width: 80%;
height: 320px;
}
.choices div{
width: 80%;
}
}
@media (max-width: 769px){
.choice1, .choice2,.choice6,.choice5,.choice3,
.choice4{
padding-left: 0%;
padding-right: 5%;
height: 100%;
}
.choices{
margin-bottom: 40px;
text-align: center;
padding-right: 5%;
}
.choices ol{
list-style: none;
}
}
@media (max-width:510px){
.choices{text-align: left;
justify-content: left;
align-items:baseline !important;
}
.choices div{
margin-left: 20px;
}
.choices ol{
padding-left: 0px;
}
.choice4{
margin-top: 0px;
}
} | src/components/Talent/Talent.css | .choices{
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
margin-top: 80px;
margin-bottom: 80px;
width: 100%;
}
.choices span{
margin-top: 23px;
display: inline-block;
font-size: 25px;
font-weight: bolder;
color: #091188;
}
.choices ol{
padding: 10px 0px 0px 20px;
margin: 0px;
}
.choices li{
font-size: 18px;
font-weight: 500;
color: #AEAEAE;
}
#learnmore{
margin-top: 15px;
display: inline-block;
font-size: 16px;
font-weight: 600;
color: #6D6D6D;
}
.choices div{
width: 380px;
}
.choice1 {
display: inline-block;
padding-left: 80px;
}
.choice2{
display: inline-block;
padding-left: 80px;
}
.choice3{
display: inline-block;
padding-left: 80px;
}
.choice4{
display: inline-block;
padding-left: 80px;
margin-top: 70px;
}
.choice5{
display: inline-block;
padding-left: 80px;
margin-top: 70px;
}
.choice6 {
display: inline-block;
padding-left: 80px;
margin-top: 70px;
}
@media (max-width: 769px) {
.choices{
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
margin-top: 50px;
margin-bottom: 10px;
}
.choice1, .choice2,.choice6,.choice5,.choice3,
.choice4{
margin-top: 10px;
padding: 0px;
margin-bottom: 40px;
padding-left: 30%;
width: 80%;
height: 320px;
}
.choices div{
width: 80%;
}
}
@media (max-width: 769px){
.choice1, .choice2,.choice6,.choice5,.choice3,
.choice4{
padding-left: 0%;
padding-right: 5%;
height: 100%;
}
.choices{
margin-bottom: 40px;
text-align: center;
padding-right: 5%;
}
.choices ol{
list-style: none;
}
}
@media (max-width:510px){
.choices{text-align: left;
justify-content: left;
align-items:baseline !important;
}
.choices div{
margin-left: 20px;
}
.choices ol{
padding-left: 0px;
}
.choice4{
margin-top: 0px;
}
} | 0.320821 | 0.085061 |
.int-wrap .colored-boxes {
padding: 0px 0px 60px;
}
.int-wrap .colored-boxes::after {
clear: both; display: block; content: " ";
}
@media screen and (max-width:599px)
{
.int-wrap .colored-boxes .color-box {
margin: 0px 0px 25px;
}
.int-wrap .colored-boxes .color-box img {
width: 100%;
}
}
@media screen and (max-width:899px) and (min-width:600px)
{
.int-wrap .colored-boxes .color-box {
margin: 0px 4.1% 25px 0px; width: 47.95%; float: left;
}
.int-wrap .colored-boxes .color-box img {
width: 100%;
}
.int-wrap .colored-boxes .color-box .color-bar {
width: 100%;
}
.int-wrap .colored-boxes :nth-child(2n+2).color-box {
margin-right: 0px;
}
.int-wrap .colored-boxes :nth-child(2n+1).color-box {
clear: both;
}
}
@media screen and (min-width:900px)
{
.int-wrap .colored-boxes .color-box {
margin: 0px 4.1% 0px 0px; width: 21.92%; float: left;
}
.int-wrap .colored-boxes .color-box img {
width: 100%;
}
.int-wrap .colored-boxes .color-box img {
width: 100%;
}
.int-wrap .colored-boxes :nth-child(4n+1).color-box {
clear: both;
}
.int-wrap .colored-boxes :nth-child(4n+4).color-box {
margin-right: 0px;
}
}
.int-wrap .colored-boxes .col-last {
margin: 0px 0px 25px; float: left;
}
.int-wrap .colored-boxes .color-bar {
background: rgb(186, 20, 26); width: 100%;
}
@media screen and (max-width:767px)
{
.int-wrap .colored-boxes .color-bar {
width: 91%;
}
}
@media screen and (max-width:900px) and (min-width:768px)
{
.int-wrap .colored-boxes .color-bar {
width: 51%;
}
}
.int-wrap .colored-boxes .color-bar a {
margin: 0px; padding: 20px 0px 20px 30px; color: rgb(255, 255, 255); font-size: 1.31em; display: block;
}
.int-wrap .colored-boxes .color-bar > span {
margin: 0px; padding: 20px 0px 20px 30px; color: rgb(255, 255, 255); font-size: 1.31em; display: block;
}
.int-wrap .colored-boxes .color-bar a em {
padding: 0px 20px 0px 0px; float: right; display: block;
}
.int-wrap .colored-boxes .color-bar > span em {
padding: 0px 20px 0px 0px; float: right; display: block;
}
@media screen and (max-width:1050px)
{
.int-wrap .colored-boxes .color-bar a {
padding: 20px 0px 20px 15px; font-size: 1.12em;
}
.int-wrap .colored-boxes .color-bar > span {
padding: 20px 0px 20px 15px; font-size: 1.12em;
}
}
.int-wrap .colored-boxes .gray-box {
background: rgb(220, 220, 220); padding: 20px;
}
.int-wrap .colored-boxes .gray-box > strong {
display: block;
}
.int-wrap .colored-boxes .gray-box p {
padding: 0px;
}
.int-wrap .colored-boxes .gray-box span {
padding: 0px;
}
.int-wrap .colored-boxes .gray-box a:link {
margin: 0px; color: rgb(0, 0, 0); line-height: 1.2em; font-size: 2.18em; font-weight: 200;
}
.int-wrap .colored-boxes .gray-box a:active {
margin: 0px; color: rgb(0, 0, 0); line-height: 1.2em; font-size: 2.18em; font-weight: 200;
}
.int-wrap .colored-boxes .gray-box a:visited {
margin: 0px; color: rgb(0, 0, 0); line-height: 1.2em; font-size: 2.18em; font-weight: 200;
}
.int-wrap .colored-boxes .gray-box p {
margin: 0px; color: rgb(0, 0, 0); line-height: 1.2em; font-size: 2.18em; font-weight: 200;
}
.int-wrap .colored-boxes .gray-box strong {
margin: 0px; color: rgb(0, 0, 0); line-height: 1.2em; font-size: 2.18em; font-weight: 200;
}
.int-wrap .colored-boxes .gray-box a:link span {
background: url("images/arrow-black.png") no-repeat right; margin: 15px 0px 0px; width: 37px; height: 24px; text-indent: -9999px; float: right; display: block;
}
.int-wrap .colored-boxes .gray-box a:active span {
background: url("images/arrow-black.png") no-repeat right; margin: 15px 0px 0px; width: 37px; height: 24px; text-indent: -9999px; float: right; display: block;
}
.int-wrap .colored-boxes .gray-box a:visited span {
background: url("images/arrow-black.png") no-repeat right; margin: 15px 0px 0px; width: 37px; height: 24px; text-indent: -9999px; float: right; display: block;
}
.int-wrap .colored-boxes .gray-box p span {
background: url("images/arrow-black.png") no-repeat right; margin: 15px 0px 0px; width: 37px; height: 24px; text-indent: -9999px; float: right; display: block;
}
.int-wrap .colored-boxes .gray-box strong span {
background: url("images/arrow-black.png") no-repeat right; margin: 15px 0px 0px; width: 37px; height: 24px; text-indent: -9999px; float: right; display: block;
}
.int-wrap .colored-boxes .gray-box:hover {
background: rgb(190, 190, 190);
}
.int-wrap .colored-boxes .no-hov.gray-box:hover {
background: rgb(220, 220, 220);
}
.int-wrap .color-out {
background: rgb(80, 80, 80); padding-top: 25px;
}
.int-wrap .color-out section {
background: rgb(80, 80, 80);
}
.int-wrap .color-out section .content-bottom h3 {
text-align: center; color: rgb(255, 255, 255);
}
.int-wrap .color-out section .content-bottom .color-bar-new {
background: rgb(0, 0, 0);
}
.int-wrap .color-out section .content-bottom .color-bar-new a {
margin: 0px; padding: 12px 0px 12px 30px; color: rgb(255, 255, 255); font-size: 1.31em; font-weight: 400; display: block;
}
.int-wrap .color-out section .content-bottom .color-bar-new strong {
margin: 0px; padding: 12px 0px 12px 30px; color: rgb(255, 255, 255); font-size: 1.31em; font-weight: 400; display: block;
}
@media screen and (max-width:1050px)
{
.int-wrap .color-out section .content-bottom .color-bar-new a {
padding: 12px 0px 12px 15px; font-size: 1.12em;
}
.int-wrap .color-out section .content-bottom .color-bar-new strong {
padding: 12px 0px 12px 15px; font-size: 1.12em;
}
}
.int-wrap .color-out section .content-bottom .color-bar-new a em {
padding: 0px 20px 0px 0px; margin-top: -40px; float: right; display: block;
}
.int-wrap .color-out section .content-bottom .color-bar-new strong em {
padding: 0px 20px 0px 0px; margin-top: -40px; float: right; display: block;
}
.int-wrap .color-out section .content-bottom .color-bar-new a span {
font-size: 0.68em; display: block;
}
.int-wrap .color-out section .content-bottom .color-bar-new strong span {
font-size: 0.68em; display: block;
}
.int-wrap .color-out section .content-bottom .color-bar-dark.color-bar-new {
background: rgb(40, 40, 40);
}
.int-wrap .color-out section .content-bottom .color-bar-dark.color-bar-new a {
padding: 23px 0px 23px 30px;
}
.int-wrap .color-out section .content-bottom .color-bar-dark.color-bar-new a em {
margin: 0px;
} | css/metro.css | .int-wrap .colored-boxes {
padding: 0px 0px 60px;
}
.int-wrap .colored-boxes::after {
clear: both; display: block; content: " ";
}
@media screen and (max-width:599px)
{
.int-wrap .colored-boxes .color-box {
margin: 0px 0px 25px;
}
.int-wrap .colored-boxes .color-box img {
width: 100%;
}
}
@media screen and (max-width:899px) and (min-width:600px)
{
.int-wrap .colored-boxes .color-box {
margin: 0px 4.1% 25px 0px; width: 47.95%; float: left;
}
.int-wrap .colored-boxes .color-box img {
width: 100%;
}
.int-wrap .colored-boxes .color-box .color-bar {
width: 100%;
}
.int-wrap .colored-boxes :nth-child(2n+2).color-box {
margin-right: 0px;
}
.int-wrap .colored-boxes :nth-child(2n+1).color-box {
clear: both;
}
}
@media screen and (min-width:900px)
{
.int-wrap .colored-boxes .color-box {
margin: 0px 4.1% 0px 0px; width: 21.92%; float: left;
}
.int-wrap .colored-boxes .color-box img {
width: 100%;
}
.int-wrap .colored-boxes .color-box img {
width: 100%;
}
.int-wrap .colored-boxes :nth-child(4n+1).color-box {
clear: both;
}
.int-wrap .colored-boxes :nth-child(4n+4).color-box {
margin-right: 0px;
}
}
.int-wrap .colored-boxes .col-last {
margin: 0px 0px 25px; float: left;
}
.int-wrap .colored-boxes .color-bar {
background: rgb(186, 20, 26); width: 100%;
}
@media screen and (max-width:767px)
{
.int-wrap .colored-boxes .color-bar {
width: 91%;
}
}
@media screen and (max-width:900px) and (min-width:768px)
{
.int-wrap .colored-boxes .color-bar {
width: 51%;
}
}
.int-wrap .colored-boxes .color-bar a {
margin: 0px; padding: 20px 0px 20px 30px; color: rgb(255, 255, 255); font-size: 1.31em; display: block;
}
.int-wrap .colored-boxes .color-bar > span {
margin: 0px; padding: 20px 0px 20px 30px; color: rgb(255, 255, 255); font-size: 1.31em; display: block;
}
.int-wrap .colored-boxes .color-bar a em {
padding: 0px 20px 0px 0px; float: right; display: block;
}
.int-wrap .colored-boxes .color-bar > span em {
padding: 0px 20px 0px 0px; float: right; display: block;
}
@media screen and (max-width:1050px)
{
.int-wrap .colored-boxes .color-bar a {
padding: 20px 0px 20px 15px; font-size: 1.12em;
}
.int-wrap .colored-boxes .color-bar > span {
padding: 20px 0px 20px 15px; font-size: 1.12em;
}
}
.int-wrap .colored-boxes .gray-box {
background: rgb(220, 220, 220); padding: 20px;
}
.int-wrap .colored-boxes .gray-box > strong {
display: block;
}
.int-wrap .colored-boxes .gray-box p {
padding: 0px;
}
.int-wrap .colored-boxes .gray-box span {
padding: 0px;
}
.int-wrap .colored-boxes .gray-box a:link {
margin: 0px; color: rgb(0, 0, 0); line-height: 1.2em; font-size: 2.18em; font-weight: 200;
}
.int-wrap .colored-boxes .gray-box a:active {
margin: 0px; color: rgb(0, 0, 0); line-height: 1.2em; font-size: 2.18em; font-weight: 200;
}
.int-wrap .colored-boxes .gray-box a:visited {
margin: 0px; color: rgb(0, 0, 0); line-height: 1.2em; font-size: 2.18em; font-weight: 200;
}
.int-wrap .colored-boxes .gray-box p {
margin: 0px; color: rgb(0, 0, 0); line-height: 1.2em; font-size: 2.18em; font-weight: 200;
}
.int-wrap .colored-boxes .gray-box strong {
margin: 0px; color: rgb(0, 0, 0); line-height: 1.2em; font-size: 2.18em; font-weight: 200;
}
.int-wrap .colored-boxes .gray-box a:link span {
background: url("images/arrow-black.png") no-repeat right; margin: 15px 0px 0px; width: 37px; height: 24px; text-indent: -9999px; float: right; display: block;
}
.int-wrap .colored-boxes .gray-box a:active span {
background: url("images/arrow-black.png") no-repeat right; margin: 15px 0px 0px; width: 37px; height: 24px; text-indent: -9999px; float: right; display: block;
}
.int-wrap .colored-boxes .gray-box a:visited span {
background: url("images/arrow-black.png") no-repeat right; margin: 15px 0px 0px; width: 37px; height: 24px; text-indent: -9999px; float: right; display: block;
}
.int-wrap .colored-boxes .gray-box p span {
background: url("images/arrow-black.png") no-repeat right; margin: 15px 0px 0px; width: 37px; height: 24px; text-indent: -9999px; float: right; display: block;
}
.int-wrap .colored-boxes .gray-box strong span {
background: url("images/arrow-black.png") no-repeat right; margin: 15px 0px 0px; width: 37px; height: 24px; text-indent: -9999px; float: right; display: block;
}
.int-wrap .colored-boxes .gray-box:hover {
background: rgb(190, 190, 190);
}
.int-wrap .colored-boxes .no-hov.gray-box:hover {
background: rgb(220, 220, 220);
}
.int-wrap .color-out {
background: rgb(80, 80, 80); padding-top: 25px;
}
.int-wrap .color-out section {
background: rgb(80, 80, 80);
}
.int-wrap .color-out section .content-bottom h3 {
text-align: center; color: rgb(255, 255, 255);
}
.int-wrap .color-out section .content-bottom .color-bar-new {
background: rgb(0, 0, 0);
}
.int-wrap .color-out section .content-bottom .color-bar-new a {
margin: 0px; padding: 12px 0px 12px 30px; color: rgb(255, 255, 255); font-size: 1.31em; font-weight: 400; display: block;
}
.int-wrap .color-out section .content-bottom .color-bar-new strong {
margin: 0px; padding: 12px 0px 12px 30px; color: rgb(255, 255, 255); font-size: 1.31em; font-weight: 400; display: block;
}
@media screen and (max-width:1050px)
{
.int-wrap .color-out section .content-bottom .color-bar-new a {
padding: 12px 0px 12px 15px; font-size: 1.12em;
}
.int-wrap .color-out section .content-bottom .color-bar-new strong {
padding: 12px 0px 12px 15px; font-size: 1.12em;
}
}
.int-wrap .color-out section .content-bottom .color-bar-new a em {
padding: 0px 20px 0px 0px; margin-top: -40px; float: right; display: block;
}
.int-wrap .color-out section .content-bottom .color-bar-new strong em {
padding: 0px 20px 0px 0px; margin-top: -40px; float: right; display: block;
}
.int-wrap .color-out section .content-bottom .color-bar-new a span {
font-size: 0.68em; display: block;
}
.int-wrap .color-out section .content-bottom .color-bar-new strong span {
font-size: 0.68em; display: block;
}
.int-wrap .color-out section .content-bottom .color-bar-dark.color-bar-new {
background: rgb(40, 40, 40);
}
.int-wrap .color-out section .content-bottom .color-bar-dark.color-bar-new a {
padding: 23px 0px 23px 30px;
}
.int-wrap .color-out section .content-bottom .color-bar-dark.color-bar-new a em {
margin: 0px;
} | 0.572723 | 0.138666 |
.bx_item_detail h1{
padding-bottom:14px;
border-bottom:1px solid #e5e5e5;
font-size:24px;
height: 100px;
overflow: hidden;
padding-left: 15px;
}
.bx_item_detail h1 span{
color:#000;
font-size: 28px;
font-weight: normal;
}
.bx_item_detail .bx_item_container{margin-top: 17px;}
.bx_item_detail .bx_item_container .bx_lt{
float:left;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
width:388px;
}
.bx_item_detail .bx_item_container .bx_rt{
float:right;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
margin-left:2%;
width:470px;
background: #F5F5F5 url(/static/img/leftMenu_bg.png) top;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.bx_item_detail .bx_item_container .bx_md{clear:both}
.bx_item_detail .bx_item_container .bx_lb{
float:left;
margin-right:2%;
width:48%;
}
.bx_item_detail .bx_item_container .bx_rb{
float:right;
margin-left:2%;
width:48%;
}
.bx_item_detail .bx_optionblock{
float:right;
margin-left:10px;
width:120px;
}
/* Item info */
.bx_item_detail .item_price{
position: absolute;
bottom: 0px;
/* background: #fff; */
}
.bx_item_detail .item_name{
margin:0;
padding:0;
}
.bx_item_detail .item_name a{
color:#000;
text-decoration:none;
font-size:23px;
}
.bx_item_detail .item_old_price{
padding:0 10px;
color:red;
text-decoration:line-through;
font-weight:bold;
font-size:15px;
}
.bx_item_detail .item_current_price{
display:inline-block;
margin-top:2px;
padding:0 10px;
/* background:#fbfbfb; */
color:#000;
font-weight:bold;
font-size:36px;
font-family: Arial;
padding-bottom: 20px;
padding-top: 10px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-bottomleft: 5px;
border-bottom-left-radius: 5px;
z-index: 9999;
position: relative;
}
.bx_item_detail .item_economy_price{
display:inline-block;
padding:0 0 0 10px;
color:#b8b8b8;
font-weight:bold;
font-size:14px;
line-height:33px;
}
.bx_item_detail .item_info_section{
margin: 0 0 0px 0;
padding: 0 0 0 15px;
font-size: 13px;
line-height: 19px;
float: left;
width: 100%;
}
.bx_item_detail .item_section_name_gray{
color: #fff;
font-size: 11px;
width: 100%;
display: block;
text-align: center;
margin-top: 7px;
margin-bottom: 2px;
}
.bx_item_detail .item_info_section dl{
margin-bottom: 20px;
overflow: hidden;
padding:0;
}
.bx_item_detail .item_info_section dl dt{
clear: both;
float: left;
clear: left;
text-align: right;
}
.bx_item_detail .item_info_section dl dd{
float: left;
margin: 0 5px;
}
.bx_item_detail .item_buttons_counter_block{
display: inline-block;
margin-right: 10px;
width: 85px;
height: 62px;
float: left;
background:url(/static/img/quan2.png) no-repeat;
text-align: center;
}
/* Item SET */
.bx_item_detail .transparent_input{
border: none;
background: none;
color: #000;
font-weight: bold;
font-size: 12px;
display: inline-block;
width: 30px;
background: #fff;
text-align: center;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
/*tab-section-container*/
.bx_item_detail .tab-section-container{position:relative;}
.bx_item_detail .tab-list{
padding:0;
border-bottom:1px solid #d9e1e3;
vertical-align:bottom;
text-align:left;
}
.bx_item_detail .tab-list li{
display:inline-block;
border:1px solid #d9e1e3;
border-bottom:none;
border-radius:3px 3px 0 0;
background:#f7f7f7;
box-shadow:inset 0 -10px 5px -10px rgba(0,0,0,.12);
vertical-align:bottom;
}
.bx_item_detail .tab-list li a{
display:block;
padding:0 10px;
height:30px;
box-shadow:none;
color:#999;
text-decoration:none;
font-size:13px;
line-height:30px;
}
.bx_item_detail .tab-list li:hover,
.bx_item_detail .tab-list li.active{
background:#fff;
}
/*.tab-list li:hover a,*/
.bx_item_detail .tab-list li.active a{
position:relative;
bottom:-2px;
height:35px;
background:#fff;
color:#3f3f3f;
line-height:35px;
}
.bx_item_detail .tab-boby-container .container>div.tab-off{display:none;}
.bx_item_detail .tab-boby-container .container>div{
}
.bx_item_detail .item_comments{
display:block;
padding-left:10px;
}
.bx_item_detail .item_comments li{
display:block;
padding-bottom:10px;
}
.bx_item_detail .item_comments_username{
display:inline-block;
color:#5d90bd;
font-size:14px;
}
.bx_item_detail .item_comments_date{
display:inline-block;
margin-left:10px;
color:#b8b8b8;
font-size:14px;
}
.bx_item_detail .item_comments_container p{
margin-top:5px;
color:#3f3f3f;
font-size:14px;
}
.bx_item_detail .bx_bt_blue,
.bx_item_detail .bx_bt_white{
display:inline-block;
border-radius:3px;
text-align:center;
text-decoration:none;
font-size:14px;
cursor:pointer;
}
.bx_item_detail .bx_shadow.bx_bt_blue,
.bx_item_detail .bx_shadow.bx_bt_white{box-shadow:0 1px 1px 0 rgba(0,0,0,.2)}
.bx_item_detail .bx_shadow.bx_bt_blue:active,
.bx_item_detail .bx_shadow.bx_bt_white:active{box-shadow:none}
.bx_item_detail .bx_bt_blue {
background: url(/static/img/buy_bg2.png) no-repeat;
color: #fff;
width: 237px;
height: 62px;
line-height: 60px;
font-size: 14px;
padding-left: 15px;
}
.bx_item_detail .bx_bt_blue:active {
}
.bx_item_detail .bx_bt_white {
}
.bx_item_detail .bx_bt_white:hover {
//background:#fff;
}
.bx_item_detail .bx_bt_white:active {
}
.bx_item_detail .bx_small.bx_bt_blue,
.bx_item_detail .bx_small.bx_bt_white{
display:inline-block;
min-width:10px;
}
.bx_item_detail .bx_small.bx_bt_blue {}
.bx_item_detail .bx_small.bx_bt_blue:hover {}
.bx_item_detail .bx_small.bx_bt_blue:active {}
.bx_item_detail .bx_small.bx_bt_white {}
.bx_item_detail .bx_small.bx_bt_white:hover {}
.bx_item_detail .bx_small.bx_bt_white:active{}
.bx_item_detail .bx_medium.bx_bt_blue,
.bx_item_detail .bx_medium.bx_bt_white {
padding:0 13px;
height:25px;
font-weight:bold;
line-height:25px;
}
.bx_item_detail .bx_medium.bx_bt_blue {
height:27px;
line-height:27px;
}
.bx_item_detail .bx_medium.bx_bt_blue:hover {}
.bx_item_detail .bx_medium.bx_bt_blue:active {}
.bx_item_detail .bx_medium.bx_bt_white {font-weight:bold}
.bx_item_detail .bx_medium.bx_bt_white:hover {}
.bx_item_detail .bx_medium.bx_bt_white:active{}
.bx_item_detail .bx_big.bx_bt_blue,
.bx_item_detail .bx_big.bx_bt_white {
//padding:0 13px;
//height:34px;
//font-weight:bold;
//line-height:34px;
}
.bx_item_detail .bx_big.bx_bt_blue {
//height:36px;
//line-height:36px;
}
.bx_item_detail .bx_big.bx_bt_blue:hover {}
.bx_item_detail .bx_big.bx_bt_blue:active {}
.bx_item_detail .bx_big.bx_bt_white {}
.bx_item_detail .bx_big.bx_bt_white:hover {}
.bx_item_detail .bx_big.bx_bt_white:active{}
.bx_item_detail .bx_big.bx_bt_blue.bx_cart span{
position:relative;
bottom:-7px;
display:inline-block;
margin:0 10px 0 0;
width:26px;
height:23px;
background:url(/static/img/bt_cart.png) no-repeat center;
}
.bx_item_detail .bx_fwb{font-weight:bold}
@media (min-width:981px){}
@media (max-width:740px){
.bx_item_detail .bx_optionblock{display:none}
.bx_item_detail .item_buttons_counter_block{/*display:block;*/margin-bottom:10px}
.bx_item_detail .bx_item_container .bx_lb,
.bx_item_detail .bx_item_container .bx_rb{width:48%}
}
@media (min-width:640px) and (max-width:980px){}
@media (min-width:480px) and (max-width:639px){}
@media (max-width:480px) {
.bx-touch .bx_item_detail .bx_item_container .bx_lt,
.bx-touch .bx_item_detail .bx_item_container .bx_rt,
.bx-touch .bx_item_detail .bx_item_container .bx_md,
.bx-touch .bx_item_detail .bx_item_container .bx_lb,
.bx-touch .bx_item_detail .bx_item_container .bx_rb{
float:none;
margin:0;
padding:0;
width:100%;
}
.bx-touch .bx_item_detail .item_info_section{padding-left:0}
}
@media (max-width:319px){}
/* item_detail_slider */
.bx_item_slider{
position: relative;
margin-bottom: 10px;
width: 680px;
}
.bx_item_slider .bx_bigimages {
position: relative;
margin: 0 auto;
padding: 0;
/* max-width: 440px; */
border: 1px solid #cfcfcf;
border-radius: 2px;
background: #fff;
text-align: center;
height: 0;
width: 100%;
padding-top: 80%;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.bx_item_slider .bx_bigimages .bx_bigimages_imgcontainer{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.bx_bigimages_aligner {
display: inline-block;
height: 100%;
vertical-align: middle;
margin-left: -1px;
width: 1px;
}
.bx_item_slider .bx_bigimages img {
display: inline-block;
max-width: 100%;
max-height: 100%;
vertical-align: middle;
}
/*----*/
.bx_item_slider .bx_slider_conteiner{
position: relative;
padding-top: 20px;
margin-bottom: 10px;
max-width: 100%;
width: 100%;
}
.bx-no-touch .bx_item_slider .bx_slider_conteiner.full {
position: relative;
margin-left: -5%;
padding: 20px 5% 0
}
/*----*/
.bx_item_slider .bx_slider_scroller_container{position: relative}
.bx_item_slider .bx_slide{
position: relative;
overflow: hidden;
margin: 0;
width: 100%;
}
.bx-touch .bx_item_slider .bx_slide{overflow-x: auto}
.bx_item_slider .bx_slide ul{
position: relative;
display: block;
margin: 0;
padding: 0;
width: 100%;
white-space: nowrap
}
.bx-touch .bx_item_slider .bx_slide ul{margin-left: 0 !important}
.bx_item_slider .bx_slide ul li{
position: relative;
display: block;
float: left;
height: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.bx_item_slider .bx_slide ul li a{
position: absolute;
top: 0;
right: 2px;
bottom: 4px;
left:2px;
display: block;
overflow: hidden;
border: 1px solid #cfcfcf;
background: #fff;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.bx-touch .bx_item_slider .bx_slide ul li a{
border: none;
border-style: solid;
border-width: 1px;
-webkit-border-image: url(/static/img/x2border.png) 2 stretch;
-moz-border-image: url(/static/img/x2border.png) 2 stretch;
-o-border-image: url(/static/img/x2border.png) 2 stretch;
border-image: url(/static/img/x2border.png) 2 fill stretch;
}
.bx_item_slider .bx_slide ul li:hover a{border: 1px solid #6F0400}
.bx_item_slider .bx_slide ul li:active a,
.bx_item_slider .bx_slide ul li.bx_active a{
padding: 3px;
border: 2px solid #6F0400;
}
.bx-touch .bx_item_slider .bx_slide ul li.bx_active a{
border: none;
border-style: solid;
border-width: 1px;
-webkit-border-image: url(/static/img/x2border_active.png) 2 stretch;
-moz-border-image: url(/static/img/x2border_active.png) 2 stretch;
-o-border-image: url(/static/img/x2border_active.png) 2 stretch;
border-image: url(/static/img/x2border_active.png) 2 fill stretch;
}
.bx_item_slider .bx_slide ul li a span{
position: absolute;
top: 6%;
right: 6%;
bottom:6%;
left: 6%;
//background-size: 100% auto;
background-size: cover;
background-repeat: no-repeat;
}
.bx_item_slider .bx_slide ul li a span img{
width: auto;
height: 25px;
}
/*----*/
.bx-no-touch .bx_item_slider .bx_slide_left,
.bx-no-touch .bx_item_slider .bx_slide_right {opacity:0.8}
.bx-no-touch .bx_item_slider .bx_slide_left:hover,
.bx-no-touch .bx_item_slider .bx_slide_right:hover{opacity:1.0}
.bx_item_slider .bx_slider_conteiner.full .bx_slide_left,
.bx_item_slider .bx_slider_conteiner.full .bx_slide_right{
position: absolute;
top: 0;
bottom:4px;
width :5%;
max-width:11px;
cursor: pointer;
}
.bx-no-touch .bx_item_slider .bx_slide_left {left: -5%;background:url(/static/img/arr_left.png) no-repeat left center;background-size: 100% auto}
.bx-no-touch .bx_item_slider .bx_slide_right{right:-5%;background:url(/static/img/arr_right.png) no-repeat right center;background-size: 100% auto}
.bx-touch .bx_item_slider .bx_slide_left {left: 0;background:url(/static/img/fade_left.png) repeat-y left center;background-size: 100% auto}
.bx-touch .bx_item_slider .bx_slide_right{right: 0;background:url(/static/img/fade_right.png) repeat-y right center;background-size: 100% auto}
/*----*/
.bx_item_slider .bx_stick{
position: absolute;
top: 20px;
left: -2px;
width: 123px;
height: 35px;
background: url(/static/img/stick.png) left center no-repeat;
color: #fff;
text-align: center;
text-shadow:0 1px 0 #ba3434;
font-weight: bold;
font-size: 18px;
line-height: 35px;
}
.bx_item_slider .bx_stick_disc{
position: absolute;
right: 5px;
bottom: 5px;
width: 72px;
height: 74px;
background: url(/static/img/stick_disc.png) no-repeat center;
color: #fff;
text-align: center;
text-shadow:0 1px 0 #ba3434;
font-weight: bold;
font-size: 26px;
line-height: 74px;
}
/* item_detail_scu */
.bx_item_detail_scu{
position: relative;
margin-bottom: 10px;
padding: 0;
max-width: 100%;
width: 100%;
}
.bx-no-touch .bx_item_detail_scu.full {
position: relative;
margin-left: -5%;
padding: 0 5%
}
/*----*/
.bx_item_detail_scu .bx_item_section_name_gray{
color: #9e9e9e;
vertical-align: middle;
font-size: 11px;
line-height: 11px;
}
/*----*/
.bx_item_detail_scu .bx_scu_scroller_container{position: relative}
.bx_item_detail_scu .bx_scu{
position: relative;
overflow: hidden;
margin: 0;
width: 100%;
}
.bx-touch .bx_item_detail_scu .bx_scu{overflow-x: auto}
.bx_item_detail_scu .bx_scu ul{
position: relative;
display: block;
margin: 0;
padding: 0;
width: 100%;
white-space: nowrap
}
.bx-touch .bx_item_detail_scu .bx_scu ul{margin-left: 0 !important}
.bx_item_detail_scu .bx_scu ul li{
position: relative;
display: block;
float: left;
height: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.bx_item_detail_scu .bx_scu ul li a{
position: absolute;
top: 0;
right: 2px;
bottom: 4px;
left:2px;
display: block;
overflow: hidden;
border: 1px solid #c0cfda;
background: #fff;
z-index:10;
}
.bx-touch .bx_item_detail_scu .bx_scu ul li a{
border: none;
border-style: solid;
border-width: 1px;
-webkit-border-image: url(/static/img/x2border.png) 2 stretch;
-moz-border-image: url(/static/img/x2border.png) 2 stretch;
-o-border-image: url(/static/img/x2border.png) 2 stretch;
border-image: url(/static/img/x2border.png) 2 fill stretch;
}
.bx_item_detail_scu .bx_scu ul li:hover a{border: 1px solid #006cc0}
.bx_item_detail_scu .bx_scu ul li:active a,
.bx_item_detail_scu .bx_scu ul li.bx_active a{
padding: 3px;
border: 2px solid #006cc0;
}
.bx_item_detail_scu .bx_scu ul li.bx_missing a{border: 1px solid #c0cfda !important}
.bx_item_detail_scu .bx_scu ul li.bx_missing>span{
cursor: not-allowed;
position: absolute;
display: block;
top: 0;
right: 2px;
bottom: 4px;
left: 2px;
z-index:11;
background: rgba(255,255,255,.79) url(/static/img/missing.png) no-repeat center;
}
.bx-touch .bx_item_detail_scu .bx_scu ul li.bx_active a{
border: none;
border-style: solid;
border-width: 1px;
-webkit-border-image: url(/static/img/x2border_active.png) 2 stretch;
-moz-border-image: url(/static/img/x2border_active.png) 2 stretch;
-o-border-image: url(/static/img/x2border_active.png) 2 stretch;
border-image: url(/static/img/x2border_active.png) 2 fill stretch;
}
.bx_item_detail_scu .bx_scu ul li a span{
position: absolute;
top: 6%;
right: 6%;
bottom:6%;
left: 6%;
background-size:contain;
background-repeat: no-repeat;
}
.bx_item_detail_scu .bx_scu ul li a span img{
width: auto;
height: 25px;
}
/*----*/
.bx-no-touch .bx_item_detail_scu .bx_slide_left,
.bx-no-touch .bx_item_detail_scu .bx_slide_right {opacity:0.8}
.bx-no-touch .bx_item_detail_scu .bx_slide_left:hover,
.bx-no-touch .bx_item_detail_scu .bx_slide_right:hover{opacity:1.0}
.bx_item_detail_scu.full .bx_slide_left,
.bx_item_detail_scu.full .bx_slide_right{
position: absolute;
top: 0;
bottom:4px;
width :5%;
max-width:11px;
cursor: pointer;
}
.bx-no-touch .bx_item_detail_scu .bx_slide_left {left: -5%;background:url(/static/img/arr_left.png) no-repeat left center;background-size: 100% auto}
.bx-no-touch .bx_item_detail_scu .bx_slide_right{right:-5%;background:url(/static/img/arr_right.png) no-repeat right center;background-size: 100% auto}
.bx-touch .bx_item_detail_scu .bx_slide_left {left: 0;background:url(/static/img/fade_left.png) repeat-y left center;background-size: 100% auto}
.bx-touch .bx_item_detail_scu .bx_slide_right{right: 0;background:url(/static/img/fade_right.png) repeat-y right center;background-size: 100% auto}
/* item_detail_size */
.bx_item_detail_size{
position: relative;
margin-bottom: 10px;
padding: 0;
max-width: 100%;
width: 100%;
}
.bx-no-touch .bx_item_detail_size.full {
position: relative;
margin-left: -5%;
padding: 0 5%;
}
/*----*/
.bx_item_detail_size .bx_item_section_name_gray{
color: #9e9e9e;
vertical-align: middle;
font-size: 11px;
line-height: 11px;
}
/*----*/
.bx_item_detail_size .bx_size_scroller_container{position: relative}
.bx_item_detail_size .bx_size{
position: relative;
overflow: hidden;
margin: 0;
width: 100%;
}
.bx_item_detail_size ul{
position: relative;
display: block;
margin: 0;
padding: 0;
width: 100%;
white-space: nowrap;
}
.bx-touch .bx_item_detail_size .bx_size{overflow-x: auto;}
.bx_item_detail_size ul{
position: relative;
display: block;
margin: 0;
padding: 0;
width: 100%;
white-space: nowrap;
}
.bx-touch .bx_item_detail_size .bx_size ul{margin-left: 0 !important;}
.bx_item_detail_size ul li{
position: relative;
display: block;
float: left;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
height: 25px;
}
.bx_item_detail_size ul li a{
position: absolute;
top: 0;
right: 2px;
bottom: 2px;
left:2px;
display: block;
overflow: hidden;
border: 1px solid #c0cfda;
background: #fff;
color: #3f3f3f;
text-align: center;
text-decoration: none;
font-weight: normal;
font-size: 10px;
line-height: 22px;
}
.bx-touch .bx_item_detail_size ul li a{
border: none;
border-style: solid;
border-width: 1px;
-webkit-border-image: url(/static/img/x2border.png) 2 stretch;
-moz-border-image: url(/static/img/x2border.png) 2 stretch;
-o-border-image: url(/static/img/x2border.png) 2 stretch;
border-image: url(/static/img/x2border.png) 2 fill stretch;
}
.bx_item_detail_size ul li:hover a{border: 1px solid #006cc0}
.bx_item_detail_size ul li:active a,
.bx_item_detail_size ul li.bx_active a{
/*padding: 3px;*/
border: 2px solid #006cc0;
}
.bx-touch .bx_item_detail_size ul li.bx_active a{
border: none;
border-style: solid;
border-width: 1px;
-webkit-border-image: url(/static/img/x2border_active.png) 2 stretch;
-moz-border-image: url(/static/img/x2border_active.png) 2 stretch;
-o-border-image: url(/static/img/x2border_active.png) 2 stretch;
border-image: url(/static/img/x2border_active.png) 2 fill stretch;
}
.bx_item_detail_size .bx_size ul li.bx_missing a{border: 1px solid #c0cfda !important}
.bx_item_detail_size .bx_size ul li.bx_missing>span{
cursor: not-allowed;
position: absolute;
display: block;
top: 0;
right: 2px;
bottom: 2px;
left:2px;
z-index:11;
background: rgba(255,255,255,.79) url(/static/img/missing.png) no-repeat center;
}
/*----*/
.bx-no-touch .bx_item_detail_size .bx_slide_left,
.bx-no-touch .bx_item_detail_size .bx_slide_right {opacity:0.8}
.bx-no-touch .bx_item_detail_size .bx_slide_left:hover,
.bx-no-touch .bx_item_detail_size .bx_slide_right:hover {opacity:1.0}
.bx_item_detail_size.full .bx_slide_left,
.bx_item_detail_size.full .bx_slide_right{
position: absolute;
top: 0;
bottom:4px;
width :5%;
max-width:11px;
cursor: pointer;
}
.bx-no-touch .bx_item_detail_size .bx_slide_left {left: -5%;background:url(/static/img/arr_left.png) no-repeat left center;background-size: 100% auto}
.bx-no-touch .bx_item_detail_size .bx_slide_right{right:-5%;background:url(/static/img/arr_right.png) no-repeat right center;background-size: 100% auto}
.bx-touch .bx_item_detail_size .bx_slide_left {left: 0;background:url(/static/img/fade_left.png) repeat-y left center;background-size: 100% auto}
.bx-touch .bx_item_detail_size .bx_slide_right{right: 0;background:url(/static/img/fade_right.png) repeat-y right center;background-size: 100% auto}
/* detail specification */
.bx_item_description p{font-size: 12px;}
.bx_item_description .bx_item_section_name_gray{
color: #9e9e9e;
font-size: 13px;
}
.bx_item_description .bx_specifications_table{
margin-top: 10px;
width: 100%;
border-collapse: collapse;
}
.bx_item_description .bx_specifications_table tr:nth-child(odd){background: #f2f2f2;}
.bx_item_description .bx_specifications_table tr:nth-child(even){ }
.bx_item_description .bx_specifications_table tr td{
padding: 3px 10px;
font-size: 12px;
}
.bx_item_description .bx_specifications_table tr td:first-child{font-weight: bold;}
/* zoom */
.bx_slide_zoom_cont { position: relative; overflow: hidden; width: 500px; height: 500px; display: none; }
.bx_slide_zoom_pict { position: absolute; }
#ocb{
display: block;
margin-top: 10px;
float: left;
margin-bottom: 25px;
}
.bx_item_description{
margin-bottom: 20px;
padding-left: 15px;
padding-right: 15px;
}
.item_info_section.props{
float: left;
}
.bx_rt h1 img{
padding-top: 15px;
margin-right: 15px;
float:left;
}
.artnumber{
float: left;
width: 100%;
padding-left: 15px;
margin-bottom: 17px;
}
.ya-share2{
text-align: center;
margin:10px;
}
#YMapsID{
width: 100% !important;
} | salda_engine/static/css/style_detail.css | .bx_item_detail h1{
padding-bottom:14px;
border-bottom:1px solid #e5e5e5;
font-size:24px;
height: 100px;
overflow: hidden;
padding-left: 15px;
}
.bx_item_detail h1 span{
color:#000;
font-size: 28px;
font-weight: normal;
}
.bx_item_detail .bx_item_container{margin-top: 17px;}
.bx_item_detail .bx_item_container .bx_lt{
float:left;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
width:388px;
}
.bx_item_detail .bx_item_container .bx_rt{
float:right;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
margin-left:2%;
width:470px;
background: #F5F5F5 url(/static/img/leftMenu_bg.png) top;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.bx_item_detail .bx_item_container .bx_md{clear:both}
.bx_item_detail .bx_item_container .bx_lb{
float:left;
margin-right:2%;
width:48%;
}
.bx_item_detail .bx_item_container .bx_rb{
float:right;
margin-left:2%;
width:48%;
}
.bx_item_detail .bx_optionblock{
float:right;
margin-left:10px;
width:120px;
}
/* Item info */
.bx_item_detail .item_price{
position: absolute;
bottom: 0px;
/* background: #fff; */
}
.bx_item_detail .item_name{
margin:0;
padding:0;
}
.bx_item_detail .item_name a{
color:#000;
text-decoration:none;
font-size:23px;
}
.bx_item_detail .item_old_price{
padding:0 10px;
color:red;
text-decoration:line-through;
font-weight:bold;
font-size:15px;
}
.bx_item_detail .item_current_price{
display:inline-block;
margin-top:2px;
padding:0 10px;
/* background:#fbfbfb; */
color:#000;
font-weight:bold;
font-size:36px;
font-family: Arial;
padding-bottom: 20px;
padding-top: 10px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-bottomleft: 5px;
border-bottom-left-radius: 5px;
z-index: 9999;
position: relative;
}
.bx_item_detail .item_economy_price{
display:inline-block;
padding:0 0 0 10px;
color:#b8b8b8;
font-weight:bold;
font-size:14px;
line-height:33px;
}
.bx_item_detail .item_info_section{
margin: 0 0 0px 0;
padding: 0 0 0 15px;
font-size: 13px;
line-height: 19px;
float: left;
width: 100%;
}
.bx_item_detail .item_section_name_gray{
color: #fff;
font-size: 11px;
width: 100%;
display: block;
text-align: center;
margin-top: 7px;
margin-bottom: 2px;
}
.bx_item_detail .item_info_section dl{
margin-bottom: 20px;
overflow: hidden;
padding:0;
}
.bx_item_detail .item_info_section dl dt{
clear: both;
float: left;
clear: left;
text-align: right;
}
.bx_item_detail .item_info_section dl dd{
float: left;
margin: 0 5px;
}
.bx_item_detail .item_buttons_counter_block{
display: inline-block;
margin-right: 10px;
width: 85px;
height: 62px;
float: left;
background:url(/static/img/quan2.png) no-repeat;
text-align: center;
}
/* Item SET */
.bx_item_detail .transparent_input{
border: none;
background: none;
color: #000;
font-weight: bold;
font-size: 12px;
display: inline-block;
width: 30px;
background: #fff;
text-align: center;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
/*tab-section-container*/
.bx_item_detail .tab-section-container{position:relative;}
.bx_item_detail .tab-list{
padding:0;
border-bottom:1px solid #d9e1e3;
vertical-align:bottom;
text-align:left;
}
.bx_item_detail .tab-list li{
display:inline-block;
border:1px solid #d9e1e3;
border-bottom:none;
border-radius:3px 3px 0 0;
background:#f7f7f7;
box-shadow:inset 0 -10px 5px -10px rgba(0,0,0,.12);
vertical-align:bottom;
}
.bx_item_detail .tab-list li a{
display:block;
padding:0 10px;
height:30px;
box-shadow:none;
color:#999;
text-decoration:none;
font-size:13px;
line-height:30px;
}
.bx_item_detail .tab-list li:hover,
.bx_item_detail .tab-list li.active{
background:#fff;
}
/*.tab-list li:hover a,*/
.bx_item_detail .tab-list li.active a{
position:relative;
bottom:-2px;
height:35px;
background:#fff;
color:#3f3f3f;
line-height:35px;
}
.bx_item_detail .tab-boby-container .container>div.tab-off{display:none;}
.bx_item_detail .tab-boby-container .container>div{
}
.bx_item_detail .item_comments{
display:block;
padding-left:10px;
}
.bx_item_detail .item_comments li{
display:block;
padding-bottom:10px;
}
.bx_item_detail .item_comments_username{
display:inline-block;
color:#5d90bd;
font-size:14px;
}
.bx_item_detail .item_comments_date{
display:inline-block;
margin-left:10px;
color:#b8b8b8;
font-size:14px;
}
.bx_item_detail .item_comments_container p{
margin-top:5px;
color:#3f3f3f;
font-size:14px;
}
.bx_item_detail .bx_bt_blue,
.bx_item_detail .bx_bt_white{
display:inline-block;
border-radius:3px;
text-align:center;
text-decoration:none;
font-size:14px;
cursor:pointer;
}
.bx_item_detail .bx_shadow.bx_bt_blue,
.bx_item_detail .bx_shadow.bx_bt_white{box-shadow:0 1px 1px 0 rgba(0,0,0,.2)}
.bx_item_detail .bx_shadow.bx_bt_blue:active,
.bx_item_detail .bx_shadow.bx_bt_white:active{box-shadow:none}
.bx_item_detail .bx_bt_blue {
background: url(/static/img/buy_bg2.png) no-repeat;
color: #fff;
width: 237px;
height: 62px;
line-height: 60px;
font-size: 14px;
padding-left: 15px;
}
.bx_item_detail .bx_bt_blue:active {
}
.bx_item_detail .bx_bt_white {
}
.bx_item_detail .bx_bt_white:hover {
//background:#fff;
}
.bx_item_detail .bx_bt_white:active {
}
.bx_item_detail .bx_small.bx_bt_blue,
.bx_item_detail .bx_small.bx_bt_white{
display:inline-block;
min-width:10px;
}
.bx_item_detail .bx_small.bx_bt_blue {}
.bx_item_detail .bx_small.bx_bt_blue:hover {}
.bx_item_detail .bx_small.bx_bt_blue:active {}
.bx_item_detail .bx_small.bx_bt_white {}
.bx_item_detail .bx_small.bx_bt_white:hover {}
.bx_item_detail .bx_small.bx_bt_white:active{}
.bx_item_detail .bx_medium.bx_bt_blue,
.bx_item_detail .bx_medium.bx_bt_white {
padding:0 13px;
height:25px;
font-weight:bold;
line-height:25px;
}
.bx_item_detail .bx_medium.bx_bt_blue {
height:27px;
line-height:27px;
}
.bx_item_detail .bx_medium.bx_bt_blue:hover {}
.bx_item_detail .bx_medium.bx_bt_blue:active {}
.bx_item_detail .bx_medium.bx_bt_white {font-weight:bold}
.bx_item_detail .bx_medium.bx_bt_white:hover {}
.bx_item_detail .bx_medium.bx_bt_white:active{}
.bx_item_detail .bx_big.bx_bt_blue,
.bx_item_detail .bx_big.bx_bt_white {
//padding:0 13px;
//height:34px;
//font-weight:bold;
//line-height:34px;
}
.bx_item_detail .bx_big.bx_bt_blue {
//height:36px;
//line-height:36px;
}
.bx_item_detail .bx_big.bx_bt_blue:hover {}
.bx_item_detail .bx_big.bx_bt_blue:active {}
.bx_item_detail .bx_big.bx_bt_white {}
.bx_item_detail .bx_big.bx_bt_white:hover {}
.bx_item_detail .bx_big.bx_bt_white:active{}
.bx_item_detail .bx_big.bx_bt_blue.bx_cart span{
position:relative;
bottom:-7px;
display:inline-block;
margin:0 10px 0 0;
width:26px;
height:23px;
background:url(/static/img/bt_cart.png) no-repeat center;
}
.bx_item_detail .bx_fwb{font-weight:bold}
@media (min-width:981px){}
@media (max-width:740px){
.bx_item_detail .bx_optionblock{display:none}
.bx_item_detail .item_buttons_counter_block{/*display:block;*/margin-bottom:10px}
.bx_item_detail .bx_item_container .bx_lb,
.bx_item_detail .bx_item_container .bx_rb{width:48%}
}
@media (min-width:640px) and (max-width:980px){}
@media (min-width:480px) and (max-width:639px){}
@media (max-width:480px) {
.bx-touch .bx_item_detail .bx_item_container .bx_lt,
.bx-touch .bx_item_detail .bx_item_container .bx_rt,
.bx-touch .bx_item_detail .bx_item_container .bx_md,
.bx-touch .bx_item_detail .bx_item_container .bx_lb,
.bx-touch .bx_item_detail .bx_item_container .bx_rb{
float:none;
margin:0;
padding:0;
width:100%;
}
.bx-touch .bx_item_detail .item_info_section{padding-left:0}
}
@media (max-width:319px){}
/* item_detail_slider */
.bx_item_slider{
position: relative;
margin-bottom: 10px;
width: 680px;
}
.bx_item_slider .bx_bigimages {
position: relative;
margin: 0 auto;
padding: 0;
/* max-width: 440px; */
border: 1px solid #cfcfcf;
border-radius: 2px;
background: #fff;
text-align: center;
height: 0;
width: 100%;
padding-top: 80%;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.bx_item_slider .bx_bigimages .bx_bigimages_imgcontainer{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.bx_bigimages_aligner {
display: inline-block;
height: 100%;
vertical-align: middle;
margin-left: -1px;
width: 1px;
}
.bx_item_slider .bx_bigimages img {
display: inline-block;
max-width: 100%;
max-height: 100%;
vertical-align: middle;
}
/*----*/
.bx_item_slider .bx_slider_conteiner{
position: relative;
padding-top: 20px;
margin-bottom: 10px;
max-width: 100%;
width: 100%;
}
.bx-no-touch .bx_item_slider .bx_slider_conteiner.full {
position: relative;
margin-left: -5%;
padding: 20px 5% 0
}
/*----*/
.bx_item_slider .bx_slider_scroller_container{position: relative}
.bx_item_slider .bx_slide{
position: relative;
overflow: hidden;
margin: 0;
width: 100%;
}
.bx-touch .bx_item_slider .bx_slide{overflow-x: auto}
.bx_item_slider .bx_slide ul{
position: relative;
display: block;
margin: 0;
padding: 0;
width: 100%;
white-space: nowrap
}
.bx-touch .bx_item_slider .bx_slide ul{margin-left: 0 !important}
.bx_item_slider .bx_slide ul li{
position: relative;
display: block;
float: left;
height: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.bx_item_slider .bx_slide ul li a{
position: absolute;
top: 0;
right: 2px;
bottom: 4px;
left:2px;
display: block;
overflow: hidden;
border: 1px solid #cfcfcf;
background: #fff;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.bx-touch .bx_item_slider .bx_slide ul li a{
border: none;
border-style: solid;
border-width: 1px;
-webkit-border-image: url(/static/img/x2border.png) 2 stretch;
-moz-border-image: url(/static/img/x2border.png) 2 stretch;
-o-border-image: url(/static/img/x2border.png) 2 stretch;
border-image: url(/static/img/x2border.png) 2 fill stretch;
}
.bx_item_slider .bx_slide ul li:hover a{border: 1px solid #6F0400}
.bx_item_slider .bx_slide ul li:active a,
.bx_item_slider .bx_slide ul li.bx_active a{
padding: 3px;
border: 2px solid #6F0400;
}
.bx-touch .bx_item_slider .bx_slide ul li.bx_active a{
border: none;
border-style: solid;
border-width: 1px;
-webkit-border-image: url(/static/img/x2border_active.png) 2 stretch;
-moz-border-image: url(/static/img/x2border_active.png) 2 stretch;
-o-border-image: url(/static/img/x2border_active.png) 2 stretch;
border-image: url(/static/img/x2border_active.png) 2 fill stretch;
}
.bx_item_slider .bx_slide ul li a span{
position: absolute;
top: 6%;
right: 6%;
bottom:6%;
left: 6%;
//background-size: 100% auto;
background-size: cover;
background-repeat: no-repeat;
}
.bx_item_slider .bx_slide ul li a span img{
width: auto;
height: 25px;
}
/*----*/
.bx-no-touch .bx_item_slider .bx_slide_left,
.bx-no-touch .bx_item_slider .bx_slide_right {opacity:0.8}
.bx-no-touch .bx_item_slider .bx_slide_left:hover,
.bx-no-touch .bx_item_slider .bx_slide_right:hover{opacity:1.0}
.bx_item_slider .bx_slider_conteiner.full .bx_slide_left,
.bx_item_slider .bx_slider_conteiner.full .bx_slide_right{
position: absolute;
top: 0;
bottom:4px;
width :5%;
max-width:11px;
cursor: pointer;
}
.bx-no-touch .bx_item_slider .bx_slide_left {left: -5%;background:url(/static/img/arr_left.png) no-repeat left center;background-size: 100% auto}
.bx-no-touch .bx_item_slider .bx_slide_right{right:-5%;background:url(/static/img/arr_right.png) no-repeat right center;background-size: 100% auto}
.bx-touch .bx_item_slider .bx_slide_left {left: 0;background:url(/static/img/fade_left.png) repeat-y left center;background-size: 100% auto}
.bx-touch .bx_item_slider .bx_slide_right{right: 0;background:url(/static/img/fade_right.png) repeat-y right center;background-size: 100% auto}
/*----*/
.bx_item_slider .bx_stick{
position: absolute;
top: 20px;
left: -2px;
width: 123px;
height: 35px;
background: url(/static/img/stick.png) left center no-repeat;
color: #fff;
text-align: center;
text-shadow:0 1px 0 #ba3434;
font-weight: bold;
font-size: 18px;
line-height: 35px;
}
.bx_item_slider .bx_stick_disc{
position: absolute;
right: 5px;
bottom: 5px;
width: 72px;
height: 74px;
background: url(/static/img/stick_disc.png) no-repeat center;
color: #fff;
text-align: center;
text-shadow:0 1px 0 #ba3434;
font-weight: bold;
font-size: 26px;
line-height: 74px;
}
/* item_detail_scu */
.bx_item_detail_scu{
position: relative;
margin-bottom: 10px;
padding: 0;
max-width: 100%;
width: 100%;
}
.bx-no-touch .bx_item_detail_scu.full {
position: relative;
margin-left: -5%;
padding: 0 5%
}
/*----*/
.bx_item_detail_scu .bx_item_section_name_gray{
color: #9e9e9e;
vertical-align: middle;
font-size: 11px;
line-height: 11px;
}
/*----*/
.bx_item_detail_scu .bx_scu_scroller_container{position: relative}
.bx_item_detail_scu .bx_scu{
position: relative;
overflow: hidden;
margin: 0;
width: 100%;
}
.bx-touch .bx_item_detail_scu .bx_scu{overflow-x: auto}
.bx_item_detail_scu .bx_scu ul{
position: relative;
display: block;
margin: 0;
padding: 0;
width: 100%;
white-space: nowrap
}
.bx-touch .bx_item_detail_scu .bx_scu ul{margin-left: 0 !important}
.bx_item_detail_scu .bx_scu ul li{
position: relative;
display: block;
float: left;
height: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.bx_item_detail_scu .bx_scu ul li a{
position: absolute;
top: 0;
right: 2px;
bottom: 4px;
left:2px;
display: block;
overflow: hidden;
border: 1px solid #c0cfda;
background: #fff;
z-index:10;
}
.bx-touch .bx_item_detail_scu .bx_scu ul li a{
border: none;
border-style: solid;
border-width: 1px;
-webkit-border-image: url(/static/img/x2border.png) 2 stretch;
-moz-border-image: url(/static/img/x2border.png) 2 stretch;
-o-border-image: url(/static/img/x2border.png) 2 stretch;
border-image: url(/static/img/x2border.png) 2 fill stretch;
}
.bx_item_detail_scu .bx_scu ul li:hover a{border: 1px solid #006cc0}
.bx_item_detail_scu .bx_scu ul li:active a,
.bx_item_detail_scu .bx_scu ul li.bx_active a{
padding: 3px;
border: 2px solid #006cc0;
}
.bx_item_detail_scu .bx_scu ul li.bx_missing a{border: 1px solid #c0cfda !important}
.bx_item_detail_scu .bx_scu ul li.bx_missing>span{
cursor: not-allowed;
position: absolute;
display: block;
top: 0;
right: 2px;
bottom: 4px;
left: 2px;
z-index:11;
background: rgba(255,255,255,.79) url(/static/img/missing.png) no-repeat center;
}
.bx-touch .bx_item_detail_scu .bx_scu ul li.bx_active a{
border: none;
border-style: solid;
border-width: 1px;
-webkit-border-image: url(/static/img/x2border_active.png) 2 stretch;
-moz-border-image: url(/static/img/x2border_active.png) 2 stretch;
-o-border-image: url(/static/img/x2border_active.png) 2 stretch;
border-image: url(/static/img/x2border_active.png) 2 fill stretch;
}
.bx_item_detail_scu .bx_scu ul li a span{
position: absolute;
top: 6%;
right: 6%;
bottom:6%;
left: 6%;
background-size:contain;
background-repeat: no-repeat;
}
.bx_item_detail_scu .bx_scu ul li a span img{
width: auto;
height: 25px;
}
/*----*/
.bx-no-touch .bx_item_detail_scu .bx_slide_left,
.bx-no-touch .bx_item_detail_scu .bx_slide_right {opacity:0.8}
.bx-no-touch .bx_item_detail_scu .bx_slide_left:hover,
.bx-no-touch .bx_item_detail_scu .bx_slide_right:hover{opacity:1.0}
.bx_item_detail_scu.full .bx_slide_left,
.bx_item_detail_scu.full .bx_slide_right{
position: absolute;
top: 0;
bottom:4px;
width :5%;
max-width:11px;
cursor: pointer;
}
.bx-no-touch .bx_item_detail_scu .bx_slide_left {left: -5%;background:url(/static/img/arr_left.png) no-repeat left center;background-size: 100% auto}
.bx-no-touch .bx_item_detail_scu .bx_slide_right{right:-5%;background:url(/static/img/arr_right.png) no-repeat right center;background-size: 100% auto}
.bx-touch .bx_item_detail_scu .bx_slide_left {left: 0;background:url(/static/img/fade_left.png) repeat-y left center;background-size: 100% auto}
.bx-touch .bx_item_detail_scu .bx_slide_right{right: 0;background:url(/static/img/fade_right.png) repeat-y right center;background-size: 100% auto}
/* item_detail_size */
.bx_item_detail_size{
position: relative;
margin-bottom: 10px;
padding: 0;
max-width: 100%;
width: 100%;
}
.bx-no-touch .bx_item_detail_size.full {
position: relative;
margin-left: -5%;
padding: 0 5%;
}
/*----*/
.bx_item_detail_size .bx_item_section_name_gray{
color: #9e9e9e;
vertical-align: middle;
font-size: 11px;
line-height: 11px;
}
/*----*/
.bx_item_detail_size .bx_size_scroller_container{position: relative}
.bx_item_detail_size .bx_size{
position: relative;
overflow: hidden;
margin: 0;
width: 100%;
}
.bx_item_detail_size ul{
position: relative;
display: block;
margin: 0;
padding: 0;
width: 100%;
white-space: nowrap;
}
.bx-touch .bx_item_detail_size .bx_size{overflow-x: auto;}
.bx_item_detail_size ul{
position: relative;
display: block;
margin: 0;
padding: 0;
width: 100%;
white-space: nowrap;
}
.bx-touch .bx_item_detail_size .bx_size ul{margin-left: 0 !important;}
.bx_item_detail_size ul li{
position: relative;
display: block;
float: left;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
height: 25px;
}
.bx_item_detail_size ul li a{
position: absolute;
top: 0;
right: 2px;
bottom: 2px;
left:2px;
display: block;
overflow: hidden;
border: 1px solid #c0cfda;
background: #fff;
color: #3f3f3f;
text-align: center;
text-decoration: none;
font-weight: normal;
font-size: 10px;
line-height: 22px;
}
.bx-touch .bx_item_detail_size ul li a{
border: none;
border-style: solid;
border-width: 1px;
-webkit-border-image: url(/static/img/x2border.png) 2 stretch;
-moz-border-image: url(/static/img/x2border.png) 2 stretch;
-o-border-image: url(/static/img/x2border.png) 2 stretch;
border-image: url(/static/img/x2border.png) 2 fill stretch;
}
.bx_item_detail_size ul li:hover a{border: 1px solid #006cc0}
.bx_item_detail_size ul li:active a,
.bx_item_detail_size ul li.bx_active a{
/*padding: 3px;*/
border: 2px solid #006cc0;
}
.bx-touch .bx_item_detail_size ul li.bx_active a{
border: none;
border-style: solid;
border-width: 1px;
-webkit-border-image: url(/static/img/x2border_active.png) 2 stretch;
-moz-border-image: url(/static/img/x2border_active.png) 2 stretch;
-o-border-image: url(/static/img/x2border_active.png) 2 stretch;
border-image: url(/static/img/x2border_active.png) 2 fill stretch;
}
.bx_item_detail_size .bx_size ul li.bx_missing a{border: 1px solid #c0cfda !important}
.bx_item_detail_size .bx_size ul li.bx_missing>span{
cursor: not-allowed;
position: absolute;
display: block;
top: 0;
right: 2px;
bottom: 2px;
left:2px;
z-index:11;
background: rgba(255,255,255,.79) url(/static/img/missing.png) no-repeat center;
}
/*----*/
.bx-no-touch .bx_item_detail_size .bx_slide_left,
.bx-no-touch .bx_item_detail_size .bx_slide_right {opacity:0.8}
.bx-no-touch .bx_item_detail_size .bx_slide_left:hover,
.bx-no-touch .bx_item_detail_size .bx_slide_right:hover {opacity:1.0}
.bx_item_detail_size.full .bx_slide_left,
.bx_item_detail_size.full .bx_slide_right{
position: absolute;
top: 0;
bottom:4px;
width :5%;
max-width:11px;
cursor: pointer;
}
.bx-no-touch .bx_item_detail_size .bx_slide_left {left: -5%;background:url(/static/img/arr_left.png) no-repeat left center;background-size: 100% auto}
.bx-no-touch .bx_item_detail_size .bx_slide_right{right:-5%;background:url(/static/img/arr_right.png) no-repeat right center;background-size: 100% auto}
.bx-touch .bx_item_detail_size .bx_slide_left {left: 0;background:url(/static/img/fade_left.png) repeat-y left center;background-size: 100% auto}
.bx-touch .bx_item_detail_size .bx_slide_right{right: 0;background:url(/static/img/fade_right.png) repeat-y right center;background-size: 100% auto}
/* detail specification */
.bx_item_description p{font-size: 12px;}
.bx_item_description .bx_item_section_name_gray{
color: #9e9e9e;
font-size: 13px;
}
.bx_item_description .bx_specifications_table{
margin-top: 10px;
width: 100%;
border-collapse: collapse;
}
.bx_item_description .bx_specifications_table tr:nth-child(odd){background: #f2f2f2;}
.bx_item_description .bx_specifications_table tr:nth-child(even){ }
.bx_item_description .bx_specifications_table tr td{
padding: 3px 10px;
font-size: 12px;
}
.bx_item_description .bx_specifications_table tr td:first-child{font-weight: bold;}
/* zoom */
.bx_slide_zoom_cont { position: relative; overflow: hidden; width: 500px; height: 500px; display: none; }
.bx_slide_zoom_pict { position: absolute; }
#ocb{
display: block;
margin-top: 10px;
float: left;
margin-bottom: 25px;
}
.bx_item_description{
margin-bottom: 20px;
padding-left: 15px;
padding-right: 15px;
}
.item_info_section.props{
float: left;
}
.bx_rt h1 img{
padding-top: 15px;
margin-right: 15px;
float:left;
}
.artnumber{
float: left;
width: 100%;
padding-left: 15px;
margin-bottom: 17px;
}
.ya-share2{
text-align: center;
margin:10px;
}
#YMapsID{
width: 100% !important;
} | 0.136206 | 0.057388 |
@import url(http://fonts.googleapis.com/css?family=Roboto:300,100);
.reveal section.work svg {
width: 100%;
position: absolute;
bottom: -100%;
right: -10%; }
.reveal section.work .isl-arrow__arrow {
stroke-dasharray: 1600px;
stroke-dashoffset: 1600px;
transition: all 2.4s; }
.reveal section.work .isl-arrow__arrow.draw-arrow {
stroke-dashoffset: 0;
transition: all 2.4s; }
.particle {
background: whitesmoke;
height: 100%;
font-family: 'Roboto';
padding: 0;
margin: 0; }
.particle h1 {
font-family: 'Roboto';
margin: 0;
padding: 0;
line-height: 1;
font-size: 2em;
color: #777;
text-shadow: none;
text-transform: uppercase;
font-weight: 100;
position: absolute;
top: 20%;
width: 100%;
text-align: center;
/* background-color: whitesmoke; */
z-index: 5;
left: 50%;
-webkit-transform: translateX(-50%); }
.particle canvas {
position: absolute;
left: 50%;
bottom: -10%;
-webkit-transform: translateX(-50%) translateZ(0); }
.particle .gradient-overlay {
position: absolute;
top: 0;
left: -50%;
width: 200%;
height: 100%;
background: -moz-linear-gradient(top, whitesmoke 50%, rgba(245, 245, 245, 0) 75%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, whitesmoke), color-stop(75%, rgba(245, 245, 245, 0)));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, whitesmoke 50%, rgba(245, 245, 245, 0) 75%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, whitesmoke 50%, rgba(245, 245, 245, 0) 75%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, whitesmoke 50%, rgba(245, 245, 245, 0) 75%);
/* IE10+ */
background: linear-gradient(to bottom, whitesmoke 50%, rgba(245, 245, 245, 0) 75%);
/* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00f5f5f5',GradientType=0 );
/* IE6-9 */ }
.properties .left, .properties .translate {
height: 20px;
width: 20px;
border-radius: 100%;
display: block; }
.properties .left {
-webkit-animation-name: left;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
position: relative;
display: inline-block;
background: fuchsia; }
.properties .translate {
-webkit-animation-name: trans;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
display: inline-block;
background: blue; }
.properties .translate-container, .properties .left-container {
display: block;
position: absolute;
top: 100%; }
@-webkit-keyframes left {
0% {
left: -100px; }
50% {
left: 100px; }
100% {
left: -100px; } }
@-webkit-keyframes trans {
0% {
-webkit-transform: translate3d(-100px, 0, 0); }
50% {
-webkit-transform: translate3d(100px, 0, 0); }
100% {
-webkit-transform: translate3d(-100px, 0, 0); } }
.left:nth-child(1) {
-webkit-animation-delay: 0.01s; }
.translate:nth-child(1) {
-webkit-animation-delay: 0.01s; }
.left:nth-child(2) {
-webkit-animation-delay: 0.02s; }
.translate:nth-child(2) {
-webkit-animation-delay: 0.02s; }
.left:nth-child(3) {
-webkit-animation-delay: 0.03s; }
.translate:nth-child(3) {
-webkit-animation-delay: 0.03s; }
.left:nth-child(4) {
-webkit-animation-delay: 0.04s; }
.translate:nth-child(4) {
-webkit-animation-delay: 0.04s; }
.left:nth-child(5) {
-webkit-animation-delay: 0.05s; }
.translate:nth-child(5) {
-webkit-animation-delay: 0.05s; }
.left:nth-child(6) {
-webkit-animation-delay: 0.06s; }
.translate:nth-child(6) {
-webkit-animation-delay: 0.06s; }
.left:nth-child(7) {
-webkit-animation-delay: 0.07s; }
.translate:nth-child(7) {
-webkit-animation-delay: 0.07s; }
.left:nth-child(8) {
-webkit-animation-delay: 0.08s; }
.translate:nth-child(8) {
-webkit-animation-delay: 0.08s; }
.left:nth-child(9) {
-webkit-animation-delay: 0.09s; }
.translate:nth-child(9) {
-webkit-animation-delay: 0.09s; }
.left:nth-child(10) {
-webkit-animation-delay: 0.1s; }
.translate:nth-child(10) {
-webkit-animation-delay: 0.1s; }
.left:nth-child(11) {
-webkit-animation-delay: 0.11s; }
.translate:nth-child(11) {
-webkit-animation-delay: 0.11s; }
.left:nth-child(12) {
-webkit-animation-delay: 0.12s; }
.translate:nth-child(12) {
-webkit-animation-delay: 0.12s; }
.left:nth-child(13) {
-webkit-animation-delay: 0.13s; }
.translate:nth-child(13) {
-webkit-animation-delay: 0.13s; }
.left:nth-child(14) {
-webkit-animation-delay: 0.14s; }
.translate:nth-child(14) {
-webkit-animation-delay: 0.14s; }
.left:nth-child(15) {
-webkit-animation-delay: 0.15s; }
.translate:nth-child(15) {
-webkit-animation-delay: 0.15s; }
.left:nth-child(16) {
-webkit-animation-delay: 0.16s; }
.translate:nth-child(16) {
-webkit-animation-delay: 0.16s; }
.left:nth-child(17) {
-webkit-animation-delay: 0.17s; }
.translate:nth-child(17) {
-webkit-animation-delay: 0.17s; }
.left:nth-child(18) {
-webkit-animation-delay: 0.18s; }
.translate:nth-child(18) {
-webkit-animation-delay: 0.18s; }
.left:nth-child(19) {
-webkit-animation-delay: 0.19s; }
.translate:nth-child(19) {
-webkit-animation-delay: 0.19s; }
.left:nth-child(20) {
-webkit-animation-delay: 0.2s; }
.translate:nth-child(20) {
-webkit-animation-delay: 0.2s; }
.left:nth-child(21) {
-webkit-animation-delay: 0.21s; }
.translate:nth-child(21) {
-webkit-animation-delay: 0.21s; }
.left:nth-child(22) {
-webkit-animation-delay: 0.22s; }
.translate:nth-child(22) {
-webkit-animation-delay: 0.22s; }
.left:nth-child(23) {
-webkit-animation-delay: 0.23s; }
.translate:nth-child(23) {
-webkit-animation-delay: 0.23s; }
.left:nth-child(24) {
-webkit-animation-delay: 0.24s; }
.translate:nth-child(24) {
-webkit-animation-delay: 0.24s; }
.left:nth-child(25) {
-webkit-animation-delay: 0.25s; }
.translate:nth-child(25) {
-webkit-animation-delay: 0.25s; }
.left:nth-child(26) {
-webkit-animation-delay: 0.26s; }
.translate:nth-child(26) {
-webkit-animation-delay: 0.26s; }
.left:nth-child(27) {
-webkit-animation-delay: 0.27s; }
.translate:nth-child(27) {
-webkit-animation-delay: 0.27s; }
.left:nth-child(28) {
-webkit-animation-delay: 0.28s; }
.translate:nth-child(28) {
-webkit-animation-delay: 0.28s; }
.left:nth-child(29) {
-webkit-animation-delay: 0.29s; }
.translate:nth-child(29) {
-webkit-animation-delay: 0.29s; }
.left:nth-child(30) {
-webkit-animation-delay: 0.3s; }
.translate:nth-child(30) {
-webkit-animation-delay: 0.3s; }
.left:nth-child(31) {
-webkit-animation-delay: 0.31s; }
.translate:nth-child(31) {
-webkit-animation-delay: 0.31s; }
.left:nth-child(32) {
-webkit-animation-delay: 0.32s; }
.translate:nth-child(32) {
-webkit-animation-delay: 0.32s; }
.left:nth-child(33) {
-webkit-animation-delay: 0.33s; }
.translate:nth-child(33) {
-webkit-animation-delay: 0.33s; }
.left:nth-child(34) {
-webkit-animation-delay: 0.34s; }
.translate:nth-child(34) {
-webkit-animation-delay: 0.34s; }
.left:nth-child(35) {
-webkit-animation-delay: 0.35s; }
.translate:nth-child(35) {
-webkit-animation-delay: 0.35s; }
.left:nth-child(36) {
-webkit-animation-delay: 0.36s; }
.translate:nth-child(36) {
-webkit-animation-delay: 0.36s; }
.left:nth-child(37) {
-webkit-animation-delay: 0.37s; }
.translate:nth-child(37) {
-webkit-animation-delay: 0.37s; }
.left:nth-child(38) {
-webkit-animation-delay: 0.38s; }
.translate:nth-child(38) {
-webkit-animation-delay: 0.38s; }
.left:nth-child(39) {
-webkit-animation-delay: 0.39s; }
.translate:nth-child(39) {
-webkit-animation-delay: 0.39s; }
.left:nth-child(40) {
-webkit-animation-delay: 0.4s; }
.translate:nth-child(40) {
-webkit-animation-delay: 0.4s; }
.left:nth-child(41) {
-webkit-animation-delay: 0.41s; }
.translate:nth-child(41) {
-webkit-animation-delay: 0.41s; }
.left:nth-child(42) {
-webkit-animation-delay: 0.42s; }
.translate:nth-child(42) {
-webkit-animation-delay: 0.42s; }
.left:nth-child(43) {
-webkit-animation-delay: 0.43s; }
.translate:nth-child(43) {
-webkit-animation-delay: 0.43s; }
.left:nth-child(44) {
-webkit-animation-delay: 0.44s; }
.translate:nth-child(44) {
-webkit-animation-delay: 0.44s; }
.left:nth-child(45) {
-webkit-animation-delay: 0.45s; }
.translate:nth-child(45) {
-webkit-animation-delay: 0.45s; }
.left:nth-child(46) {
-webkit-animation-delay: 0.46s; }
.translate:nth-child(46) {
-webkit-animation-delay: 0.46s; }
.left:nth-child(47) {
-webkit-animation-delay: 0.47s; }
.translate:nth-child(47) {
-webkit-animation-delay: 0.47s; }
.left:nth-child(48) {
-webkit-animation-delay: 0.48s; }
.translate:nth-child(48) {
-webkit-animation-delay: 0.48s; }
.left:nth-child(49) {
-webkit-animation-delay: 0.49s; }
.translate:nth-child(49) {
-webkit-animation-delay: 0.49s; }
.left:nth-child(50) {
-webkit-animation-delay: 0.5s; }
.translate:nth-child(50) {
-webkit-animation-delay: 0.5s; }
.left:nth-child(51) {
-webkit-animation-delay: 0.51s; }
.translate:nth-child(51) {
-webkit-animation-delay: 0.51s; }
.left:nth-child(52) {
-webkit-animation-delay: 0.52s; }
.translate:nth-child(52) {
-webkit-animation-delay: 0.52s; }
.left:nth-child(53) {
-webkit-animation-delay: 0.53s; }
.translate:nth-child(53) {
-webkit-animation-delay: 0.53s; }
.left:nth-child(54) {
-webkit-animation-delay: 0.54s; }
.translate:nth-child(54) {
-webkit-animation-delay: 0.54s; }
.left:nth-child(55) {
-webkit-animation-delay: 0.55s; }
.translate:nth-child(55) {
-webkit-animation-delay: 0.55s; }
.left:nth-child(56) {
-webkit-animation-delay: 0.56s; }
.translate:nth-child(56) {
-webkit-animation-delay: 0.56s; }
.left:nth-child(57) {
-webkit-animation-delay: 0.57s; }
.translate:nth-child(57) {
-webkit-animation-delay: 0.57s; }
.left:nth-child(58) {
-webkit-animation-delay: 0.58s; }
.translate:nth-child(58) {
-webkit-animation-delay: 0.58s; }
.left:nth-child(59) {
-webkit-animation-delay: 0.59s; }
.translate:nth-child(59) {
-webkit-animation-delay: 0.59s; }
.left:nth-child(60) {
-webkit-animation-delay: 0.6s; }
.translate:nth-child(60) {
-webkit-animation-delay: 0.6s; }
.left:nth-child(61) {
-webkit-animation-delay: 0.61s; }
.translate:nth-child(61) {
-webkit-animation-delay: 0.61s; }
.left:nth-child(62) {
-webkit-animation-delay: 0.62s; }
.translate:nth-child(62) {
-webkit-animation-delay: 0.62s; }
.left:nth-child(63) {
-webkit-animation-delay: 0.63s; }
.translate:nth-child(63) {
-webkit-animation-delay: 0.63s; }
.left:nth-child(64) {
-webkit-animation-delay: 0.64s; }
.translate:nth-child(64) {
-webkit-animation-delay: 0.64s; }
.left:nth-child(65) {
-webkit-animation-delay: 0.65s; }
.translate:nth-child(65) {
-webkit-animation-delay: 0.65s; }
.left:nth-child(66) {
-webkit-animation-delay: 0.66s; }
.translate:nth-child(66) {
-webkit-animation-delay: 0.66s; }
.left:nth-child(67) {
-webkit-animation-delay: 0.67s; }
.translate:nth-child(67) {
-webkit-animation-delay: 0.67s; }
.left:nth-child(68) {
-webkit-animation-delay: 0.68s; }
.translate:nth-child(68) {
-webkit-animation-delay: 0.68s; }
.left:nth-child(69) {
-webkit-animation-delay: 0.69s; }
.translate:nth-child(69) {
-webkit-animation-delay: 0.69s; }
.left:nth-child(70) {
-webkit-animation-delay: 0.7s; }
.translate:nth-child(70) {
-webkit-animation-delay: 0.7s; }
.left:nth-child(71) {
-webkit-animation-delay: 0.71s; }
.translate:nth-child(71) {
-webkit-animation-delay: 0.71s; }
.left:nth-child(72) {
-webkit-animation-delay: 0.72s; }
.translate:nth-child(72) {
-webkit-animation-delay: 0.72s; }
.left:nth-child(73) {
-webkit-animation-delay: 0.73s; }
.translate:nth-child(73) {
-webkit-animation-delay: 0.73s; }
.left:nth-child(74) {
-webkit-animation-delay: 0.74s; }
.translate:nth-child(74) {
-webkit-animation-delay: 0.74s; }
.left:nth-child(75) {
-webkit-animation-delay: 0.75s; }
.translate:nth-child(75) {
-webkit-animation-delay: 0.75s; }
.left:nth-child(76) {
-webkit-animation-delay: 0.76s; }
.translate:nth-child(76) {
-webkit-animation-delay: 0.76s; }
.left:nth-child(77) {
-webkit-animation-delay: 0.77s; }
.translate:nth-child(77) {
-webkit-animation-delay: 0.77s; }
.left:nth-child(78) {
-webkit-animation-delay: 0.78s; }
.translate:nth-child(78) {
-webkit-animation-delay: 0.78s; }
.left:nth-child(79) {
-webkit-animation-delay: 0.79s; }
.translate:nth-child(79) {
-webkit-animation-delay: 0.79s; }
.left:nth-child(80) {
-webkit-animation-delay: 0.8s; }
.translate:nth-child(80) {
-webkit-animation-delay: 0.8s; }
.left:nth-child(81) {
-webkit-animation-delay: 0.81s; }
.translate:nth-child(81) {
-webkit-animation-delay: 0.81s; }
.left:nth-child(82) {
-webkit-animation-delay: 0.82s; }
.translate:nth-child(82) {
-webkit-animation-delay: 0.82s; }
.left:nth-child(83) {
-webkit-animation-delay: 0.83s; }
.translate:nth-child(83) {
-webkit-animation-delay: 0.83s; }
.left:nth-child(84) {
-webkit-animation-delay: 0.84s; }
.translate:nth-child(84) {
-webkit-animation-delay: 0.84s; }
.left:nth-child(85) {
-webkit-animation-delay: 0.85s; }
.translate:nth-child(85) {
-webkit-animation-delay: 0.85s; }
.left:nth-child(86) {
-webkit-animation-delay: 0.86s; }
.translate:nth-child(86) {
-webkit-animation-delay: 0.86s; }
.left:nth-child(87) {
-webkit-animation-delay: 0.87s; }
.translate:nth-child(87) {
-webkit-animation-delay: 0.87s; }
.left:nth-child(88) {
-webkit-animation-delay: 0.88s; }
.translate:nth-child(88) {
-webkit-animation-delay: 0.88s; }
.left:nth-child(89) {
-webkit-animation-delay: 0.89s; }
.translate:nth-child(89) {
-webkit-animation-delay: 0.89s; }
.left:nth-child(90) {
-webkit-animation-delay: 0.9s; }
.translate:nth-child(90) {
-webkit-animation-delay: 0.9s; }
.left:nth-child(91) {
-webkit-animation-delay: 0.91s; }
.translate:nth-child(91) {
-webkit-animation-delay: 0.91s; }
.left:nth-child(92) {
-webkit-animation-delay: 0.92s; }
.translate:nth-child(92) {
-webkit-animation-delay: 0.92s; }
.left:nth-child(93) {
-webkit-animation-delay: 0.93s; }
.translate:nth-child(93) {
-webkit-animation-delay: 0.93s; }
.left:nth-child(94) {
-webkit-animation-delay: 0.94s; }
.translate:nth-child(94) {
-webkit-animation-delay: 0.94s; }
.left:nth-child(95) {
-webkit-animation-delay: 0.95s; }
.translate:nth-child(95) {
-webkit-animation-delay: 0.95s; }
.left:nth-child(96) {
-webkit-animation-delay: 0.96s; }
.translate:nth-child(96) {
-webkit-animation-delay: 0.96s; }
.left:nth-child(97) {
-webkit-animation-delay: 0.97s; }
.translate:nth-child(97) {
-webkit-animation-delay: 0.97s; }
.left:nth-child(98) {
-webkit-animation-delay: 0.98s; }
.translate:nth-child(98) {
-webkit-animation-delay: 0.98s; }
.left:nth-child(99) {
-webkit-animation-delay: 0.99s; }
.translate:nth-child(99) {
-webkit-animation-delay: 0.99s; }
.left:nth-child(100) {
-webkit-animation-delay: 1s; }
.translate:nth-child(100) {
-webkit-animation-delay: 1s; }
.left:nth-child(101) {
-webkit-animation-delay: 1.01s; }
.translate:nth-child(101) {
-webkit-animation-delay: 1.01s; }
.left:nth-child(102) {
-webkit-animation-delay: 1.02s; }
.translate:nth-child(102) {
-webkit-animation-delay: 1.02s; }
.left:nth-child(103) {
-webkit-animation-delay: 1.03s; }
.translate:nth-child(103) {
-webkit-animation-delay: 1.03s; }
.left:nth-child(104) {
-webkit-animation-delay: 1.04s; }
.translate:nth-child(104) {
-webkit-animation-delay: 1.04s; }
.left:nth-child(105) {
-webkit-animation-delay: 1.05s; }
.translate:nth-child(105) {
-webkit-animation-delay: 1.05s; }
.left:nth-child(106) {
-webkit-animation-delay: 1.06s; }
.translate:nth-child(106) {
-webkit-animation-delay: 1.06s; }
.left:nth-child(107) {
-webkit-animation-delay: 1.07s; }
.translate:nth-child(107) {
-webkit-animation-delay: 1.07s; }
.left:nth-child(108) {
-webkit-animation-delay: 1.08s; }
.translate:nth-child(108) {
-webkit-animation-delay: 1.08s; }
.left:nth-child(109) {
-webkit-animation-delay: 1.09s; }
.translate:nth-child(109) {
-webkit-animation-delay: 1.09s; }
.left:nth-child(110) {
-webkit-animation-delay: 1.1s; }
.translate:nth-child(110) {
-webkit-animation-delay: 1.1s; }
.left:nth-child(111) {
-webkit-animation-delay: 1.11s; }
.translate:nth-child(111) {
-webkit-animation-delay: 1.11s; }
.left:nth-child(112) {
-webkit-animation-delay: 1.12s; }
.translate:nth-child(112) {
-webkit-animation-delay: 1.12s; }
.left:nth-child(113) {
-webkit-animation-delay: 1.13s; }
.translate:nth-child(113) {
-webkit-animation-delay: 1.13s; }
.left:nth-child(114) {
-webkit-animation-delay: 1.14s; }
.translate:nth-child(114) {
-webkit-animation-delay: 1.14s; }
.left:nth-child(115) {
-webkit-animation-delay: 1.15s; }
.translate:nth-child(115) {
-webkit-animation-delay: 1.15s; }
.left:nth-child(116) {
-webkit-animation-delay: 1.16s; }
.translate:nth-child(116) {
-webkit-animation-delay: 1.16s; }
.left:nth-child(117) {
-webkit-animation-delay: 1.17s; }
.translate:nth-child(117) {
-webkit-animation-delay: 1.17s; }
.left:nth-child(118) {
-webkit-animation-delay: 1.18s; }
.translate:nth-child(118) {
-webkit-animation-delay: 1.18s; }
.left:nth-child(119) {
-webkit-animation-delay: 1.19s; }
.translate:nth-child(119) {
-webkit-animation-delay: 1.19s; }
.left:nth-child(120) {
-webkit-animation-delay: 1.2s; }
.translate:nth-child(120) {
-webkit-animation-delay: 1.2s; }
.left:nth-child(121) {
-webkit-animation-delay: 1.21s; }
.translate:nth-child(121) {
-webkit-animation-delay: 1.21s; }
.left:nth-child(122) {
-webkit-animation-delay: 1.22s; }
.translate:nth-child(122) {
-webkit-animation-delay: 1.22s; }
.left:nth-child(123) {
-webkit-animation-delay: 1.23s; }
.translate:nth-child(123) {
-webkit-animation-delay: 1.23s; }
.left:nth-child(124) {
-webkit-animation-delay: 1.24s; }
.translate:nth-child(124) {
-webkit-animation-delay: 1.24s; }
.left:nth-child(125) {
-webkit-animation-delay: 1.25s; }
.translate:nth-child(125) {
-webkit-animation-delay: 1.25s; }
.left:nth-child(126) {
-webkit-animation-delay: 1.26s; }
.translate:nth-child(126) {
-webkit-animation-delay: 1.26s; }
.left:nth-child(127) {
-webkit-animation-delay: 1.27s; }
.translate:nth-child(127) {
-webkit-animation-delay: 1.27s; }
.left:nth-child(128) {
-webkit-animation-delay: 1.28s; }
.translate:nth-child(128) {
-webkit-animation-delay: 1.28s; }
.left:nth-child(129) {
-webkit-animation-delay: 1.29s; }
.translate:nth-child(129) {
-webkit-animation-delay: 1.29s; }
.left:nth-child(130) {
-webkit-animation-delay: 1.3s; }
.translate:nth-child(130) {
-webkit-animation-delay: 1.3s; }
.left:nth-child(131) {
-webkit-animation-delay: 1.31s; }
.translate:nth-child(131) {
-webkit-animation-delay: 1.31s; }
.left:nth-child(132) {
-webkit-animation-delay: 1.32s; }
.translate:nth-child(132) {
-webkit-animation-delay: 1.32s; }
.left:nth-child(133) {
-webkit-animation-delay: 1.33s; }
.translate:nth-child(133) {
-webkit-animation-delay: 1.33s; }
.left:nth-child(134) {
-webkit-animation-delay: 1.34s; }
.translate:nth-child(134) {
-webkit-animation-delay: 1.34s; }
.left:nth-child(135) {
-webkit-animation-delay: 1.35s; }
.translate:nth-child(135) {
-webkit-animation-delay: 1.35s; }
.left:nth-child(136) {
-webkit-animation-delay: 1.36s; }
.translate:nth-child(136) {
-webkit-animation-delay: 1.36s; }
.left:nth-child(137) {
-webkit-animation-delay: 1.37s; }
.translate:nth-child(137) {
-webkit-animation-delay: 1.37s; }
.left:nth-child(138) {
-webkit-animation-delay: 1.38s; }
.translate:nth-child(138) {
-webkit-animation-delay: 1.38s; }
.left:nth-child(139) {
-webkit-animation-delay: 1.39s; }
.translate:nth-child(139) {
-webkit-animation-delay: 1.39s; }
.left:nth-child(140) {
-webkit-animation-delay: 1.4s; }
.translate:nth-child(140) {
-webkit-animation-delay: 1.4s; }
.left:nth-child(141) {
-webkit-animation-delay: 1.41s; }
.translate:nth-child(141) {
-webkit-animation-delay: 1.41s; }
.left:nth-child(142) {
-webkit-animation-delay: 1.42s; }
.translate:nth-child(142) {
-webkit-animation-delay: 1.42s; }
.left:nth-child(143) {
-webkit-animation-delay: 1.43s; }
.translate:nth-child(143) {
-webkit-animation-delay: 1.43s; }
.left:nth-child(144) {
-webkit-animation-delay: 1.44s; }
.translate:nth-child(144) {
-webkit-animation-delay: 1.44s; }
.left:nth-child(145) {
-webkit-animation-delay: 1.45s; }
.translate:nth-child(145) {
-webkit-animation-delay: 1.45s; }
.left:nth-child(146) {
-webkit-animation-delay: 1.46s; }
.translate:nth-child(146) {
-webkit-animation-delay: 1.46s; }
.left:nth-child(147) {
-webkit-animation-delay: 1.47s; }
.translate:nth-child(147) {
-webkit-animation-delay: 1.47s; }
.left:nth-child(148) {
-webkit-animation-delay: 1.48s; }
.translate:nth-child(148) {
-webkit-animation-delay: 1.48s; }
.left:nth-child(149) {
-webkit-animation-delay: 1.49s; }
.translate:nth-child(149) {
-webkit-animation-delay: 1.49s; }
.left:nth-child(150) {
-webkit-animation-delay: 1.5s; }
.translate:nth-child(150) {
-webkit-animation-delay: 1.5s; }
.left:nth-child(151) {
-webkit-animation-delay: 1.51s; }
.translate:nth-child(151) {
-webkit-animation-delay: 1.51s; }
.left:nth-child(152) {
-webkit-animation-delay: 1.52s; }
.translate:nth-child(152) {
-webkit-animation-delay: 1.52s; }
.left:nth-child(153) {
-webkit-animation-delay: 1.53s; }
.translate:nth-child(153) {
-webkit-animation-delay: 1.53s; }
.left:nth-child(154) {
-webkit-animation-delay: 1.54s; }
.translate:nth-child(154) {
-webkit-animation-delay: 1.54s; }
.left:nth-child(155) {
-webkit-animation-delay: 1.55s; }
.translate:nth-child(155) {
-webkit-animation-delay: 1.55s; }
.left:nth-child(156) {
-webkit-animation-delay: 1.56s; }
.translate:nth-child(156) {
-webkit-animation-delay: 1.56s; }
.left:nth-child(157) {
-webkit-animation-delay: 1.57s; }
.translate:nth-child(157) {
-webkit-animation-delay: 1.57s; }
.left:nth-child(158) {
-webkit-animation-delay: 1.58s; }
.translate:nth-child(158) {
-webkit-animation-delay: 1.58s; }
.left:nth-child(159) {
-webkit-animation-delay: 1.59s; }
.translate:nth-child(159) {
-webkit-animation-delay: 1.59s; }
.left:nth-child(160) {
-webkit-animation-delay: 1.6s; }
.translate:nth-child(160) {
-webkit-animation-delay: 1.6s; }
.left:nth-child(161) {
-webkit-animation-delay: 1.61s; }
.translate:nth-child(161) {
-webkit-animation-delay: 1.61s; }
.left:nth-child(162) {
-webkit-animation-delay: 1.62s; }
.translate:nth-child(162) {
-webkit-animation-delay: 1.62s; }
.left:nth-child(163) {
-webkit-animation-delay: 1.63s; }
.translate:nth-child(163) {
-webkit-animation-delay: 1.63s; }
.left:nth-child(164) {
-webkit-animation-delay: 1.64s; }
.translate:nth-child(164) {
-webkit-animation-delay: 1.64s; }
.left:nth-child(165) {
-webkit-animation-delay: 1.65s; }
.translate:nth-child(165) {
-webkit-animation-delay: 1.65s; }
.left:nth-child(166) {
-webkit-animation-delay: 1.66s; }
.translate:nth-child(166) {
-webkit-animation-delay: 1.66s; }
.left:nth-child(167) {
-webkit-animation-delay: 1.67s; }
.translate:nth-child(167) {
-webkit-animation-delay: 1.67s; }
.left:nth-child(168) {
-webkit-animation-delay: 1.68s; }
.translate:nth-child(168) {
-webkit-animation-delay: 1.68s; }
.left:nth-child(169) {
-webkit-animation-delay: 1.69s; }
.translate:nth-child(169) {
-webkit-animation-delay: 1.69s; }
.left:nth-child(170) {
-webkit-animation-delay: 1.7s; }
.translate:nth-child(170) {
-webkit-animation-delay: 1.7s; }
.left:nth-child(171) {
-webkit-animation-delay: 1.71s; }
.translate:nth-child(171) {
-webkit-animation-delay: 1.71s; }
.left:nth-child(172) {
-webkit-animation-delay: 1.72s; }
.translate:nth-child(172) {
-webkit-animation-delay: 1.72s; }
.left:nth-child(173) {
-webkit-animation-delay: 1.73s; }
.translate:nth-child(173) {
-webkit-animation-delay: 1.73s; }
.left:nth-child(174) {
-webkit-animation-delay: 1.74s; }
.translate:nth-child(174) {
-webkit-animation-delay: 1.74s; }
.left:nth-child(175) {
-webkit-animation-delay: 1.75s; }
.translate:nth-child(175) {
-webkit-animation-delay: 1.75s; }
.left:nth-child(176) {
-webkit-animation-delay: 1.76s; }
.translate:nth-child(176) {
-webkit-animation-delay: 1.76s; }
.left:nth-child(177) {
-webkit-animation-delay: 1.77s; }
.translate:nth-child(177) {
-webkit-animation-delay: 1.77s; }
.left:nth-child(178) {
-webkit-animation-delay: 1.78s; }
.translate:nth-child(178) {
-webkit-animation-delay: 1.78s; }
.left:nth-child(179) {
-webkit-animation-delay: 1.79s; }
.translate:nth-child(179) {
-webkit-animation-delay: 1.79s; }
.left:nth-child(180) {
-webkit-animation-delay: 1.8s; }
.translate:nth-child(180) {
-webkit-animation-delay: 1.8s; }
.left:nth-child(181) {
-webkit-animation-delay: 1.81s; }
.translate:nth-child(181) {
-webkit-animation-delay: 1.81s; }
.left:nth-child(182) {
-webkit-animation-delay: 1.82s; }
.translate:nth-child(182) {
-webkit-animation-delay: 1.82s; }
.left:nth-child(183) {
-webkit-animation-delay: 1.83s; }
.translate:nth-child(183) {
-webkit-animation-delay: 1.83s; }
.left:nth-child(184) {
-webkit-animation-delay: 1.84s; }
.translate:nth-child(184) {
-webkit-animation-delay: 1.84s; }
.left:nth-child(185) {
-webkit-animation-delay: 1.85s; }
.translate:nth-child(185) {
-webkit-animation-delay: 1.85s; }
.left:nth-child(186) {
-webkit-animation-delay: 1.86s; }
.translate:nth-child(186) {
-webkit-animation-delay: 1.86s; }
.left:nth-child(187) {
-webkit-animation-delay: 1.87s; }
.translate:nth-child(187) {
-webkit-animation-delay: 1.87s; }
.left:nth-child(188) {
-webkit-animation-delay: 1.88s; }
.translate:nth-child(188) {
-webkit-animation-delay: 1.88s; }
.left:nth-child(189) {
-webkit-animation-delay: 1.89s; }
.translate:nth-child(189) {
-webkit-animation-delay: 1.89s; }
.left:nth-child(190) {
-webkit-animation-delay: 1.9s; }
.translate:nth-child(190) {
-webkit-animation-delay: 1.9s; }
.left:nth-child(191) {
-webkit-animation-delay: 1.91s; }
.translate:nth-child(191) {
-webkit-animation-delay: 1.91s; }
.left:nth-child(192) {
-webkit-animation-delay: 1.92s; }
.translate:nth-child(192) {
-webkit-animation-delay: 1.92s; }
.left:nth-child(193) {
-webkit-animation-delay: 1.93s; }
.translate:nth-child(193) {
-webkit-animation-delay: 1.93s; }
.left:nth-child(194) {
-webkit-animation-delay: 1.94s; }
.translate:nth-child(194) {
-webkit-animation-delay: 1.94s; }
.left:nth-child(195) {
-webkit-animation-delay: 1.95s; }
.translate:nth-child(195) {
-webkit-animation-delay: 1.95s; }
.left:nth-child(196) {
-webkit-animation-delay: 1.96s; }
.translate:nth-child(196) {
-webkit-animation-delay: 1.96s; }
.left:nth-child(197) {
-webkit-animation-delay: 1.97s; }
.translate:nth-child(197) {
-webkit-animation-delay: 1.97s; }
.left:nth-child(198) {
-webkit-animation-delay: 1.98s; }
.translate:nth-child(198) {
-webkit-animation-delay: 1.98s; }
.left:nth-child(199) {
-webkit-animation-delay: 1.99s; }
.translate:nth-child(199) {
-webkit-animation-delay: 1.99s; }
.left:nth-child(200) {
-webkit-animation-delay: 2s; }
.translate:nth-child(200) {
-webkit-animation-delay: 2s; }
.left:nth-child(201) {
-webkit-animation-delay: 2.01s; }
.translate:nth-child(201) {
-webkit-animation-delay: 2.01s; }
.left:nth-child(202) {
-webkit-animation-delay: 2.02s; }
.translate:nth-child(202) {
-webkit-animation-delay: 2.02s; }
.left:nth-child(203) {
-webkit-animation-delay: 2.03s; }
.translate:nth-child(203) {
-webkit-animation-delay: 2.03s; }
.left:nth-child(204) {
-webkit-animation-delay: 2.04s; }
.translate:nth-child(204) {
-webkit-animation-delay: 2.04s; }
.left:nth-child(205) {
-webkit-animation-delay: 2.05s; }
.translate:nth-child(205) {
-webkit-animation-delay: 2.05s; }
.left:nth-child(206) {
-webkit-animation-delay: 2.06s; }
.translate:nth-child(206) {
-webkit-animation-delay: 2.06s; }
.left:nth-child(207) {
-webkit-animation-delay: 2.07s; }
.translate:nth-child(207) {
-webkit-animation-delay: 2.07s; }
.left:nth-child(208) {
-webkit-animation-delay: 2.08s; }
.translate:nth-child(208) {
-webkit-animation-delay: 2.08s; }
.left:nth-child(209) {
-webkit-animation-delay: 2.09s; }
.translate:nth-child(209) {
-webkit-animation-delay: 2.09s; }
.left:nth-child(210) {
-webkit-animation-delay: 2.1s; }
.translate:nth-child(210) {
-webkit-animation-delay: 2.1s; }
.left:nth-child(211) {
-webkit-animation-delay: 2.11s; }
.translate:nth-child(211) {
-webkit-animation-delay: 2.11s; }
.left:nth-child(212) {
-webkit-animation-delay: 2.12s; }
.translate:nth-child(212) {
-webkit-animation-delay: 2.12s; }
.left:nth-child(213) {
-webkit-animation-delay: 2.13s; }
.translate:nth-child(213) {
-webkit-animation-delay: 2.13s; }
.left:nth-child(214) {
-webkit-animation-delay: 2.14s; }
.translate:nth-child(214) {
-webkit-animation-delay: 2.14s; }
.left:nth-child(215) {
-webkit-animation-delay: 2.15s; }
.translate:nth-child(215) {
-webkit-animation-delay: 2.15s; }
.left:nth-child(216) {
-webkit-animation-delay: 2.16s; }
.translate:nth-child(216) {
-webkit-animation-delay: 2.16s; }
.left:nth-child(217) {
-webkit-animation-delay: 2.17s; }
.translate:nth-child(217) {
-webkit-animation-delay: 2.17s; }
.left:nth-child(218) {
-webkit-animation-delay: 2.18s; }
.translate:nth-child(218) {
-webkit-animation-delay: 2.18s; }
.left:nth-child(219) {
-webkit-animation-delay: 2.19s; }
.translate:nth-child(219) {
-webkit-animation-delay: 2.19s; }
.left:nth-child(220) {
-webkit-animation-delay: 2.2s; }
.translate:nth-child(220) {
-webkit-animation-delay: 2.2s; }
.left:nth-child(221) {
-webkit-animation-delay: 2.21s; }
.translate:nth-child(221) {
-webkit-animation-delay: 2.21s; }
.left:nth-child(222) {
-webkit-animation-delay: 2.22s; }
.translate:nth-child(222) {
-webkit-animation-delay: 2.22s; }
.left:nth-child(223) {
-webkit-animation-delay: 2.23s; }
.translate:nth-child(223) {
-webkit-animation-delay: 2.23s; }
.left:nth-child(224) {
-webkit-animation-delay: 2.24s; }
.translate:nth-child(224) {
-webkit-animation-delay: 2.24s; }
.left:nth-child(225) {
-webkit-animation-delay: 2.25s; }
.translate:nth-child(225) {
-webkit-animation-delay: 2.25s; }
.left:nth-child(226) {
-webkit-animation-delay: 2.26s; }
.translate:nth-child(226) {
-webkit-animation-delay: 2.26s; }
.left:nth-child(227) {
-webkit-animation-delay: 2.27s; }
.translate:nth-child(227) {
-webkit-animation-delay: 2.27s; }
.left:nth-child(228) {
-webkit-animation-delay: 2.28s; }
.translate:nth-child(228) {
-webkit-animation-delay: 2.28s; }
.left:nth-child(229) {
-webkit-animation-delay: 2.29s; }
.translate:nth-child(229) {
-webkit-animation-delay: 2.29s; }
.left:nth-child(230) {
-webkit-animation-delay: 2.3s; }
.translate:nth-child(230) {
-webkit-animation-delay: 2.3s; }
.left:nth-child(231) {
-webkit-animation-delay: 2.31s; }
.translate:nth-child(231) {
-webkit-animation-delay: 2.31s; }
.left:nth-child(232) {
-webkit-animation-delay: 2.32s; }
.translate:nth-child(232) {
-webkit-animation-delay: 2.32s; }
.left:nth-child(233) {
-webkit-animation-delay: 2.33s; }
.translate:nth-child(233) {
-webkit-animation-delay: 2.33s; }
.left:nth-child(234) {
-webkit-animation-delay: 2.34s; }
.translate:nth-child(234) {
-webkit-animation-delay: 2.34s; }
.left:nth-child(235) {
-webkit-animation-delay: 2.35s; }
.translate:nth-child(235) {
-webkit-animation-delay: 2.35s; }
.left:nth-child(236) {
-webkit-animation-delay: 2.36s; }
.translate:nth-child(236) {
-webkit-animation-delay: 2.36s; }
.left:nth-child(237) {
-webkit-animation-delay: 2.37s; }
.translate:nth-child(237) {
-webkit-animation-delay: 2.37s; }
.left:nth-child(238) {
-webkit-animation-delay: 2.38s; }
.translate:nth-child(238) {
-webkit-animation-delay: 2.38s; }
.left:nth-child(239) {
-webkit-animation-delay: 2.39s; }
.translate:nth-child(239) {
-webkit-animation-delay: 2.39s; }
.left:nth-child(240) {
-webkit-animation-delay: 2.4s; }
.translate:nth-child(240) {
-webkit-animation-delay: 2.4s; }
.left:nth-child(241) {
-webkit-animation-delay: 2.41s; }
.translate:nth-child(241) {
-webkit-animation-delay: 2.41s; }
.left:nth-child(242) {
-webkit-animation-delay: 2.42s; }
.translate:nth-child(242) {
-webkit-animation-delay: 2.42s; }
.left:nth-child(243) {
-webkit-animation-delay: 2.43s; }
.translate:nth-child(243) {
-webkit-animation-delay: 2.43s; }
.left:nth-child(244) {
-webkit-animation-delay: 2.44s; }
.translate:nth-child(244) {
-webkit-animation-delay: 2.44s; }
.left:nth-child(245) {
-webkit-animation-delay: 2.45s; }
.translate:nth-child(245) {
-webkit-animation-delay: 2.45s; }
.left:nth-child(246) {
-webkit-animation-delay: 2.46s; }
.translate:nth-child(246) {
-webkit-animation-delay: 2.46s; }
.left:nth-child(247) {
-webkit-animation-delay: 2.47s; }
.translate:nth-child(247) {
-webkit-animation-delay: 2.47s; }
.left:nth-child(248) {
-webkit-animation-delay: 2.48s; }
.translate:nth-child(248) {
-webkit-animation-delay: 2.48s; }
.left:nth-child(249) {
-webkit-animation-delay: 2.49s; }
.translate:nth-child(249) {
-webkit-animation-delay: 2.49s; }
.left:nth-child(250) {
-webkit-animation-delay: 2.5s; }
.translate:nth-child(250) {
-webkit-animation-delay: 2.5s; }
.left:nth-child(251) {
-webkit-animation-delay: 2.51s; }
.translate:nth-child(251) {
-webkit-animation-delay: 2.51s; }
.left:nth-child(252) {
-webkit-animation-delay: 2.52s; }
.translate:nth-child(252) {
-webkit-animation-delay: 2.52s; }
.left:nth-child(253) {
-webkit-animation-delay: 2.53s; }
.translate:nth-child(253) {
-webkit-animation-delay: 2.53s; }
.left:nth-child(254) {
-webkit-animation-delay: 2.54s; }
.translate:nth-child(254) {
-webkit-animation-delay: 2.54s; }
.left:nth-child(255) {
-webkit-animation-delay: 2.55s; }
.translate:nth-child(255) {
-webkit-animation-delay: 2.55s; }
.left:nth-child(256) {
-webkit-animation-delay: 2.56s; }
.translate:nth-child(256) {
-webkit-animation-delay: 2.56s; }
.left:nth-child(257) {
-webkit-animation-delay: 2.57s; }
.translate:nth-child(257) {
-webkit-animation-delay: 2.57s; }
.left:nth-child(258) {
-webkit-animation-delay: 2.58s; }
.translate:nth-child(258) {
-webkit-animation-delay: 2.58s; }
.left:nth-child(259) {
-webkit-animation-delay: 2.59s; }
.translate:nth-child(259) {
-webkit-animation-delay: 2.59s; }
.left:nth-child(260) {
-webkit-animation-delay: 2.6s; }
.translate:nth-child(260) {
-webkit-animation-delay: 2.6s; }
.left:nth-child(261) {
-webkit-animation-delay: 2.61s; }
.translate:nth-child(261) {
-webkit-animation-delay: 2.61s; }
.left:nth-child(262) {
-webkit-animation-delay: 2.62s; }
.translate:nth-child(262) {
-webkit-animation-delay: 2.62s; }
.left:nth-child(263) {
-webkit-animation-delay: 2.63s; }
.translate:nth-child(263) {
-webkit-animation-delay: 2.63s; }
.left:nth-child(264) {
-webkit-animation-delay: 2.64s; }
.translate:nth-child(264) {
-webkit-animation-delay: 2.64s; }
.left:nth-child(265) {
-webkit-animation-delay: 2.65s; }
.translate:nth-child(265) {
-webkit-animation-delay: 2.65s; }
.left:nth-child(266) {
-webkit-animation-delay: 2.66s; }
.translate:nth-child(266) {
-webkit-animation-delay: 2.66s; }
.left:nth-child(267) {
-webkit-animation-delay: 2.67s; }
.translate:nth-child(267) {
-webkit-animation-delay: 2.67s; }
.left:nth-child(268) {
-webkit-animation-delay: 2.68s; }
.translate:nth-child(268) {
-webkit-animation-delay: 2.68s; }
.left:nth-child(269) {
-webkit-animation-delay: 2.69s; }
.translate:nth-child(269) {
-webkit-animation-delay: 2.69s; }
.left:nth-child(270) {
-webkit-animation-delay: 2.7s; }
.translate:nth-child(270) {
-webkit-animation-delay: 2.7s; }
.left:nth-child(271) {
-webkit-animation-delay: 2.71s; }
.translate:nth-child(271) {
-webkit-animation-delay: 2.71s; }
.left:nth-child(272) {
-webkit-animation-delay: 2.72s; }
.translate:nth-child(272) {
-webkit-animation-delay: 2.72s; }
.left:nth-child(273) {
-webkit-animation-delay: 2.73s; }
.translate:nth-child(273) {
-webkit-animation-delay: 2.73s; }
.left:nth-child(274) {
-webkit-animation-delay: 2.74s; }
.translate:nth-child(274) {
-webkit-animation-delay: 2.74s; }
.left:nth-child(275) {
-webkit-animation-delay: 2.75s; }
.translate:nth-child(275) {
-webkit-animation-delay: 2.75s; }
.left:nth-child(276) {
-webkit-animation-delay: 2.76s; }
.translate:nth-child(276) {
-webkit-animation-delay: 2.76s; }
.left:nth-child(277) {
-webkit-animation-delay: 2.77s; }
.translate:nth-child(277) {
-webkit-animation-delay: 2.77s; }
.left:nth-child(278) {
-webkit-animation-delay: 2.78s; }
.translate:nth-child(278) {
-webkit-animation-delay: 2.78s; }
.left:nth-child(279) {
-webkit-animation-delay: 2.79s; }
.translate:nth-child(279) {
-webkit-animation-delay: 2.79s; }
.left:nth-child(280) {
-webkit-animation-delay: 2.8s; }
.translate:nth-child(280) {
-webkit-animation-delay: 2.8s; }
.left:nth-child(281) {
-webkit-animation-delay: 2.81s; }
.translate:nth-child(281) {
-webkit-animation-delay: 2.81s; }
.left:nth-child(282) {
-webkit-animation-delay: 2.82s; }
.translate:nth-child(282) {
-webkit-animation-delay: 2.82s; }
.left:nth-child(283) {
-webkit-animation-delay: 2.83s; }
.translate:nth-child(283) {
-webkit-animation-delay: 2.83s; }
.left:nth-child(284) {
-webkit-animation-delay: 2.84s; }
.translate:nth-child(284) {
-webkit-animation-delay: 2.84s; }
.left:nth-child(285) {
-webkit-animation-delay: 2.85s; }
.translate:nth-child(285) {
-webkit-animation-delay: 2.85s; }
.left:nth-child(286) {
-webkit-animation-delay: 2.86s; }
.translate:nth-child(286) {
-webkit-animation-delay: 2.86s; }
.left:nth-child(287) {
-webkit-animation-delay: 2.87s; }
.translate:nth-child(287) {
-webkit-animation-delay: 2.87s; }
.left:nth-child(288) {
-webkit-animation-delay: 2.88s; }
.translate:nth-child(288) {
-webkit-animation-delay: 2.88s; }
.left:nth-child(289) {
-webkit-animation-delay: 2.89s; }
.translate:nth-child(289) {
-webkit-animation-delay: 2.89s; }
.left:nth-child(290) {
-webkit-animation-delay: 2.9s; }
.translate:nth-child(290) {
-webkit-animation-delay: 2.9s; }
.left:nth-child(291) {
-webkit-animation-delay: 2.91s; }
.translate:nth-child(291) {
-webkit-animation-delay: 2.91s; }
.left:nth-child(292) {
-webkit-animation-delay: 2.92s; }
.translate:nth-child(292) {
-webkit-animation-delay: 2.92s; }
.left:nth-child(293) {
-webkit-animation-delay: 2.93s; }
.translate:nth-child(293) {
-webkit-animation-delay: 2.93s; }
.left:nth-child(294) {
-webkit-animation-delay: 2.94s; }
.translate:nth-child(294) {
-webkit-animation-delay: 2.94s; }
.left:nth-child(295) {
-webkit-animation-delay: 2.95s; }
.translate:nth-child(295) {
-webkit-animation-delay: 2.95s; }
.left:nth-child(296) {
-webkit-animation-delay: 2.96s; }
.translate:nth-child(296) {
-webkit-animation-delay: 2.96s; }
.left:nth-child(297) {
-webkit-animation-delay: 2.97s; }
.translate:nth-child(297) {
-webkit-animation-delay: 2.97s; }
.left:nth-child(298) {
-webkit-animation-delay: 2.98s; }
.translate:nth-child(298) {
-webkit-animation-delay: 2.98s; }
.left:nth-child(299) {
-webkit-animation-delay: 2.99s; }
.translate:nth-child(299) {
-webkit-animation-delay: 2.99s; }
.left:nth-child(300) {
-webkit-animation-delay: 3s; }
.translate:nth-child(300) {
-webkit-animation-delay: 3s; }
.left:nth-child(301) {
-webkit-animation-delay: 3.01s; }
.translate:nth-child(301) {
-webkit-animation-delay: 3.01s; }
.left:nth-child(302) {
-webkit-animation-delay: 3.02s; }
.translate:nth-child(302) {
-webkit-animation-delay: 3.02s; }
.left:nth-child(303) {
-webkit-animation-delay: 3.03s; }
.translate:nth-child(303) {
-webkit-animation-delay: 3.03s; }
.left:nth-child(304) {
-webkit-animation-delay: 3.04s; }
.translate:nth-child(304) {
-webkit-animation-delay: 3.04s; }
.left:nth-child(305) {
-webkit-animation-delay: 3.05s; }
.translate:nth-child(305) {
-webkit-animation-delay: 3.05s; }
.left:nth-child(306) {
-webkit-animation-delay: 3.06s; }
.translate:nth-child(306) {
-webkit-animation-delay: 3.06s; }
.left:nth-child(307) {
-webkit-animation-delay: 3.07s; }
.translate:nth-child(307) {
-webkit-animation-delay: 3.07s; }
.left:nth-child(308) {
-webkit-animation-delay: 3.08s; }
.translate:nth-child(308) {
-webkit-animation-delay: 3.08s; }
.left:nth-child(309) {
-webkit-animation-delay: 3.09s; }
.translate:nth-child(309) {
-webkit-animation-delay: 3.09s; }
.left:nth-child(310) {
-webkit-animation-delay: 3.1s; }
.translate:nth-child(310) {
-webkit-animation-delay: 3.1s; }
.left:nth-child(311) {
-webkit-animation-delay: 3.11s; }
.translate:nth-child(311) {
-webkit-animation-delay: 3.11s; }
.left:nth-child(312) {
-webkit-animation-delay: 3.12s; }
.translate:nth-child(312) {
-webkit-animation-delay: 3.12s; }
.left:nth-child(313) {
-webkit-animation-delay: 3.13s; }
.translate:nth-child(313) {
-webkit-animation-delay: 3.13s; }
.left:nth-child(314) {
-webkit-animation-delay: 3.14s; }
.translate:nth-child(314) {
-webkit-animation-delay: 3.14s; }
.left:nth-child(315) {
-webkit-animation-delay: 3.15s; }
.translate:nth-child(315) {
-webkit-animation-delay: 3.15s; }
.left:nth-child(316) {
-webkit-animation-delay: 3.16s; }
.translate:nth-child(316) {
-webkit-animation-delay: 3.16s; }
.left:nth-child(317) {
-webkit-animation-delay: 3.17s; }
.translate:nth-child(317) {
-webkit-animation-delay: 3.17s; }
.left:nth-child(318) {
-webkit-animation-delay: 3.18s; }
.translate:nth-child(318) {
-webkit-animation-delay: 3.18s; }
.left:nth-child(319) {
-webkit-animation-delay: 3.19s; }
.translate:nth-child(319) {
-webkit-animation-delay: 3.19s; }
.left:nth-child(320) {
-webkit-animation-delay: 3.2s; }
.translate:nth-child(320) {
-webkit-animation-delay: 3.2s; }
.left:nth-child(321) {
-webkit-animation-delay: 3.21s; }
.translate:nth-child(321) {
-webkit-animation-delay: 3.21s; }
.left:nth-child(322) {
-webkit-animation-delay: 3.22s; }
.translate:nth-child(322) {
-webkit-animation-delay: 3.22s; }
.left:nth-child(323) {
-webkit-animation-delay: 3.23s; }
.translate:nth-child(323) {
-webkit-animation-delay: 3.23s; }
.left:nth-child(324) {
-webkit-animation-delay: 3.24s; }
.translate:nth-child(324) {
-webkit-animation-delay: 3.24s; }
.left:nth-child(325) {
-webkit-animation-delay: 3.25s; }
.translate:nth-child(325) {
-webkit-animation-delay: 3.25s; }
.left:nth-child(326) {
-webkit-animation-delay: 3.26s; }
.translate:nth-child(326) {
-webkit-animation-delay: 3.26s; }
.left:nth-child(327) {
-webkit-animation-delay: 3.27s; }
.translate:nth-child(327) {
-webkit-animation-delay: 3.27s; }
.left:nth-child(328) {
-webkit-animation-delay: 3.28s; }
.translate:nth-child(328) {
-webkit-animation-delay: 3.28s; }
.left:nth-child(329) {
-webkit-animation-delay: 3.29s; }
.translate:nth-child(329) {
-webkit-animation-delay: 3.29s; }
.left:nth-child(330) {
-webkit-animation-delay: 3.3s; }
.translate:nth-child(330) {
-webkit-animation-delay: 3.3s; }
.left:nth-child(331) {
-webkit-animation-delay: 3.31s; }
.translate:nth-child(331) {
-webkit-animation-delay: 3.31s; }
.left:nth-child(332) {
-webkit-animation-delay: 3.32s; }
.translate:nth-child(332) {
-webkit-animation-delay: 3.32s; }
.left:nth-child(333) {
-webkit-animation-delay: 3.33s; }
.translate:nth-child(333) {
-webkit-animation-delay: 3.33s; }
.left:nth-child(334) {
-webkit-animation-delay: 3.34s; }
.translate:nth-child(334) {
-webkit-animation-delay: 3.34s; }
.left:nth-child(335) {
-webkit-animation-delay: 3.35s; }
.translate:nth-child(335) {
-webkit-animation-delay: 3.35s; }
.left:nth-child(336) {
-webkit-animation-delay: 3.36s; }
.translate:nth-child(336) {
-webkit-animation-delay: 3.36s; }
.left:nth-child(337) {
-webkit-animation-delay: 3.37s; }
.translate:nth-child(337) {
-webkit-animation-delay: 3.37s; }
.left:nth-child(338) {
-webkit-animation-delay: 3.38s; }
.translate:nth-child(338) {
-webkit-animation-delay: 3.38s; }
.left:nth-child(339) {
-webkit-animation-delay: 3.39s; }
.translate:nth-child(339) {
-webkit-animation-delay: 3.39s; }
.left:nth-child(340) {
-webkit-animation-delay: 3.4s; }
.translate:nth-child(340) {
-webkit-animation-delay: 3.4s; }
.left:nth-child(341) {
-webkit-animation-delay: 3.41s; }
.translate:nth-child(341) {
-webkit-animation-delay: 3.41s; }
.left:nth-child(342) {
-webkit-animation-delay: 3.42s; }
.translate:nth-child(342) {
-webkit-animation-delay: 3.42s; }
.left:nth-child(343) {
-webkit-animation-delay: 3.43s; }
.translate:nth-child(343) {
-webkit-animation-delay: 3.43s; }
.left:nth-child(344) {
-webkit-animation-delay: 3.44s; }
.translate:nth-child(344) {
-webkit-animation-delay: 3.44s; }
.left:nth-child(345) {
-webkit-animation-delay: 3.45s; }
.translate:nth-child(345) {
-webkit-animation-delay: 3.45s; }
.left:nth-child(346) {
-webkit-animation-delay: 3.46s; }
.translate:nth-child(346) {
-webkit-animation-delay: 3.46s; }
.left:nth-child(347) {
-webkit-animation-delay: 3.47s; }
.translate:nth-child(347) {
-webkit-animation-delay: 3.47s; }
.left:nth-child(348) {
-webkit-animation-delay: 3.48s; }
.translate:nth-child(348) {
-webkit-animation-delay: 3.48s; }
.left:nth-child(349) {
-webkit-animation-delay: 3.49s; }
.translate:nth-child(349) {
-webkit-animation-delay: 3.49s; }
.left:nth-child(350) {
-webkit-animation-delay: 3.5s; }
.translate:nth-child(350) {
-webkit-animation-delay: 3.5s; }
.left:nth-child(351) {
-webkit-animation-delay: 3.51s; }
.translate:nth-child(351) {
-webkit-animation-delay: 3.51s; }
.left:nth-child(352) {
-webkit-animation-delay: 3.52s; }
.translate:nth-child(352) {
-webkit-animation-delay: 3.52s; }
.left:nth-child(353) {
-webkit-animation-delay: 3.53s; }
.translate:nth-child(353) {
-webkit-animation-delay: 3.53s; }
.left:nth-child(354) {
-webkit-animation-delay: 3.54s; }
.translate:nth-child(354) {
-webkit-animation-delay: 3.54s; }
.left:nth-child(355) {
-webkit-animation-delay: 3.55s; }
.translate:nth-child(355) {
-webkit-animation-delay: 3.55s; }
.left:nth-child(356) {
-webkit-animation-delay: 3.56s; }
.translate:nth-child(356) {
-webkit-animation-delay: 3.56s; }
.left:nth-child(357) {
-webkit-animation-delay: 3.57s; }
.translate:nth-child(357) {
-webkit-animation-delay: 3.57s; }
.left:nth-child(358) {
-webkit-animation-delay: 3.58s; }
.translate:nth-child(358) {
-webkit-animation-delay: 3.58s; }
.left:nth-child(359) {
-webkit-animation-delay: 3.59s; }
.translate:nth-child(359) {
-webkit-animation-delay: 3.59s; }
.left:nth-child(360) {
-webkit-animation-delay: 3.6s; }
.translate:nth-child(360) {
-webkit-animation-delay: 3.6s; }
.left:nth-child(361) {
-webkit-animation-delay: 3.61s; }
.translate:nth-child(361) {
-webkit-animation-delay: 3.61s; }
.left:nth-child(362) {
-webkit-animation-delay: 3.62s; }
.translate:nth-child(362) {
-webkit-animation-delay: 3.62s; }
.left:nth-child(363) {
-webkit-animation-delay: 3.63s; }
.translate:nth-child(363) {
-webkit-animation-delay: 3.63s; }
.left:nth-child(364) {
-webkit-animation-delay: 3.64s; }
.translate:nth-child(364) {
-webkit-animation-delay: 3.64s; }
.left:nth-child(365) {
-webkit-animation-delay: 3.65s; }
.translate:nth-child(365) {
-webkit-animation-delay: 3.65s; }
.left:nth-child(366) {
-webkit-animation-delay: 3.66s; }
.translate:nth-child(366) {
-webkit-animation-delay: 3.66s; }
.left:nth-child(367) {
-webkit-animation-delay: 3.67s; }
.translate:nth-child(367) {
-webkit-animation-delay: 3.67s; }
.left:nth-child(368) {
-webkit-animation-delay: 3.68s; }
.translate:nth-child(368) {
-webkit-animation-delay: 3.68s; }
.left:nth-child(369) {
-webkit-animation-delay: 3.69s; }
.translate:nth-child(369) {
-webkit-animation-delay: 3.69s; }
.left:nth-child(370) {
-webkit-animation-delay: 3.7s; }
.translate:nth-child(370) {
-webkit-animation-delay: 3.7s; }
.left:nth-child(371) {
-webkit-animation-delay: 3.71s; }
.translate:nth-child(371) {
-webkit-animation-delay: 3.71s; }
.left:nth-child(372) {
-webkit-animation-delay: 3.72s; }
.translate:nth-child(372) {
-webkit-animation-delay: 3.72s; }
.left:nth-child(373) {
-webkit-animation-delay: 3.73s; }
.translate:nth-child(373) {
-webkit-animation-delay: 3.73s; }
.left:nth-child(374) {
-webkit-animation-delay: 3.74s; }
.translate:nth-child(374) {
-webkit-animation-delay: 3.74s; }
.left:nth-child(375) {
-webkit-animation-delay: 3.75s; }
.translate:nth-child(375) {
-webkit-animation-delay: 3.75s; }
.left:nth-child(376) {
-webkit-animation-delay: 3.76s; }
.translate:nth-child(376) {
-webkit-animation-delay: 3.76s; }
.left:nth-child(377) {
-webkit-animation-delay: 3.77s; }
.translate:nth-child(377) {
-webkit-animation-delay: 3.77s; }
.left:nth-child(378) {
-webkit-animation-delay: 3.78s; }
.translate:nth-child(378) {
-webkit-animation-delay: 3.78s; }
.left:nth-child(379) {
-webkit-animation-delay: 3.79s; }
.translate:nth-child(379) {
-webkit-animation-delay: 3.79s; }
.left:nth-child(380) {
-webkit-animation-delay: 3.8s; }
.translate:nth-child(380) {
-webkit-animation-delay: 3.8s; }
.left:nth-child(381) {
-webkit-animation-delay: 3.81s; }
.translate:nth-child(381) {
-webkit-animation-delay: 3.81s; }
.left:nth-child(382) {
-webkit-animation-delay: 3.82s; }
.translate:nth-child(382) {
-webkit-animation-delay: 3.82s; }
.left:nth-child(383) {
-webkit-animation-delay: 3.83s; }
.translate:nth-child(383) {
-webkit-animation-delay: 3.83s; }
.left:nth-child(384) {
-webkit-animation-delay: 3.84s; }
.translate:nth-child(384) {
-webkit-animation-delay: 3.84s; }
.left:nth-child(385) {
-webkit-animation-delay: 3.85s; }
.translate:nth-child(385) {
-webkit-animation-delay: 3.85s; }
.left:nth-child(386) {
-webkit-animation-delay: 3.86s; }
.translate:nth-child(386) {
-webkit-animation-delay: 3.86s; }
.left:nth-child(387) {
-webkit-animation-delay: 3.87s; }
.translate:nth-child(387) {
-webkit-animation-delay: 3.87s; }
.left:nth-child(388) {
-webkit-animation-delay: 3.88s; }
.translate:nth-child(388) {
-webkit-animation-delay: 3.88s; }
.left:nth-child(389) {
-webkit-animation-delay: 3.89s; }
.translate:nth-child(389) {
-webkit-animation-delay: 3.89s; }
.left:nth-child(390) {
-webkit-animation-delay: 3.9s; }
.translate:nth-child(390) {
-webkit-animation-delay: 3.9s; }
.left:nth-child(391) {
-webkit-animation-delay: 3.91s; }
.translate:nth-child(391) {
-webkit-animation-delay: 3.91s; }
.left:nth-child(392) {
-webkit-animation-delay: 3.92s; }
.translate:nth-child(392) {
-webkit-animation-delay: 3.92s; }
.left:nth-child(393) {
-webkit-animation-delay: 3.93s; }
.translate:nth-child(393) {
-webkit-animation-delay: 3.93s; }
.left:nth-child(394) {
-webkit-animation-delay: 3.94s; }
.translate:nth-child(394) {
-webkit-animation-delay: 3.94s; }
.left:nth-child(395) {
-webkit-animation-delay: 3.95s; }
.translate:nth-child(395) {
-webkit-animation-delay: 3.95s; }
.left:nth-child(396) {
-webkit-animation-delay: 3.96s; }
.translate:nth-child(396) {
-webkit-animation-delay: 3.96s; }
.left:nth-child(397) {
-webkit-animation-delay: 3.97s; }
.translate:nth-child(397) {
-webkit-animation-delay: 3.97s; }
.left:nth-child(398) {
-webkit-animation-delay: 3.98s; }
.translate:nth-child(398) {
-webkit-animation-delay: 3.98s; }
.left:nth-child(399) {
-webkit-animation-delay: 3.99s; }
.translate:nth-child(399) {
-webkit-animation-delay: 3.99s; }
.left:nth-child(400) {
-webkit-animation-delay: 4s; }
.translate:nth-child(400) {
-webkit-animation-delay: 4s; }
.left:nth-child(401) {
-webkit-animation-delay: 4.01s; }
.translate:nth-child(401) {
-webkit-animation-delay: 4.01s; }
.left:nth-child(402) {
-webkit-animation-delay: 4.02s; }
.translate:nth-child(402) {
-webkit-animation-delay: 4.02s; }
.left:nth-child(403) {
-webkit-animation-delay: 4.03s; }
.translate:nth-child(403) {
-webkit-animation-delay: 4.03s; }
.left:nth-child(404) {
-webkit-animation-delay: 4.04s; }
.translate:nth-child(404) {
-webkit-animation-delay: 4.04s; }
.left:nth-child(405) {
-webkit-animation-delay: 4.05s; }
.translate:nth-child(405) {
-webkit-animation-delay: 4.05s; }
.left:nth-child(406) {
-webkit-animation-delay: 4.06s; }
.translate:nth-child(406) {
-webkit-animation-delay: 4.06s; }
.left:nth-child(407) {
-webkit-animation-delay: 4.07s; }
.translate:nth-child(407) {
-webkit-animation-delay: 4.07s; }
.left:nth-child(408) {
-webkit-animation-delay: 4.08s; }
.translate:nth-child(408) {
-webkit-animation-delay: 4.08s; }
.left:nth-child(409) {
-webkit-animation-delay: 4.09s; }
.translate:nth-child(409) {
-webkit-animation-delay: 4.09s; }
.left:nth-child(410) {
-webkit-animation-delay: 4.1s; }
.translate:nth-child(410) {
-webkit-animation-delay: 4.1s; }
.left:nth-child(411) {
-webkit-animation-delay: 4.11s; }
.translate:nth-child(411) {
-webkit-animation-delay: 4.11s; }
.left:nth-child(412) {
-webkit-animation-delay: 4.12s; }
.translate:nth-child(412) {
-webkit-animation-delay: 4.12s; }
.left:nth-child(413) {
-webkit-animation-delay: 4.13s; }
.translate:nth-child(413) {
-webkit-animation-delay: 4.13s; }
.left:nth-child(414) {
-webkit-animation-delay: 4.14s; }
.translate:nth-child(414) {
-webkit-animation-delay: 4.14s; }
.left:nth-child(415) {
-webkit-animation-delay: 4.15s; }
.translate:nth-child(415) {
-webkit-animation-delay: 4.15s; }
.left:nth-child(416) {
-webkit-animation-delay: 4.16s; }
.translate:nth-child(416) {
-webkit-animation-delay: 4.16s; }
.left:nth-child(417) {
-webkit-animation-delay: 4.17s; }
.translate:nth-child(417) {
-webkit-animation-delay: 4.17s; }
.left:nth-child(418) {
-webkit-animation-delay: 4.18s; }
.translate:nth-child(418) {
-webkit-animation-delay: 4.18s; }
.left:nth-child(419) {
-webkit-animation-delay: 4.19s; }
.translate:nth-child(419) {
-webkit-animation-delay: 4.19s; }
.left:nth-child(420) {
-webkit-animation-delay: 4.2s; }
.translate:nth-child(420) {
-webkit-animation-delay: 4.2s; }
.left:nth-child(421) {
-webkit-animation-delay: 4.21s; }
.translate:nth-child(421) {
-webkit-animation-delay: 4.21s; }
.left:nth-child(422) {
-webkit-animation-delay: 4.22s; }
.translate:nth-child(422) {
-webkit-animation-delay: 4.22s; }
.left:nth-child(423) {
-webkit-animation-delay: 4.23s; }
.translate:nth-child(423) {
-webkit-animation-delay: 4.23s; }
.left:nth-child(424) {
-webkit-animation-delay: 4.24s; }
.translate:nth-child(424) {
-webkit-animation-delay: 4.24s; }
.left:nth-child(425) {
-webkit-animation-delay: 4.25s; }
.translate:nth-child(425) {
-webkit-animation-delay: 4.25s; }
.left:nth-child(426) {
-webkit-animation-delay: 4.26s; }
.translate:nth-child(426) {
-webkit-animation-delay: 4.26s; }
.left:nth-child(427) {
-webkit-animation-delay: 4.27s; }
.translate:nth-child(427) {
-webkit-animation-delay: 4.27s; }
.left:nth-child(428) {
-webkit-animation-delay: 4.28s; }
.translate:nth-child(428) {
-webkit-animation-delay: 4.28s; }
.left:nth-child(429) {
-webkit-animation-delay: 4.29s; }
.translate:nth-child(429) {
-webkit-animation-delay: 4.29s; }
.left:nth-child(430) {
-webkit-animation-delay: 4.3s; }
.translate:nth-child(430) {
-webkit-animation-delay: 4.3s; }
.left:nth-child(431) {
-webkit-animation-delay: 4.31s; }
.translate:nth-child(431) {
-webkit-animation-delay: 4.31s; }
.left:nth-child(432) {
-webkit-animation-delay: 4.32s; }
.translate:nth-child(432) {
-webkit-animation-delay: 4.32s; }
.left:nth-child(433) {
-webkit-animation-delay: 4.33s; }
.translate:nth-child(433) {
-webkit-animation-delay: 4.33s; }
.left:nth-child(434) {
-webkit-animation-delay: 4.34s; }
.translate:nth-child(434) {
-webkit-animation-delay: 4.34s; }
.left:nth-child(435) {
-webkit-animation-delay: 4.35s; }
.translate:nth-child(435) {
-webkit-animation-delay: 4.35s; }
.left:nth-child(436) {
-webkit-animation-delay: 4.36s; }
.translate:nth-child(436) {
-webkit-animation-delay: 4.36s; }
.left:nth-child(437) {
-webkit-animation-delay: 4.37s; }
.translate:nth-child(437) {
-webkit-animation-delay: 4.37s; }
.left:nth-child(438) {
-webkit-animation-delay: 4.38s; }
.translate:nth-child(438) {
-webkit-animation-delay: 4.38s; }
.left:nth-child(439) {
-webkit-animation-delay: 4.39s; }
.translate:nth-child(439) {
-webkit-animation-delay: 4.39s; }
.left:nth-child(440) {
-webkit-animation-delay: 4.4s; }
.translate:nth-child(440) {
-webkit-animation-delay: 4.4s; }
.left:nth-child(441) {
-webkit-animation-delay: 4.41s; }
.translate:nth-child(441) {
-webkit-animation-delay: 4.41s; }
.left:nth-child(442) {
-webkit-animation-delay: 4.42s; }
.translate:nth-child(442) {
-webkit-animation-delay: 4.42s; }
.left:nth-child(443) {
-webkit-animation-delay: 4.43s; }
.translate:nth-child(443) {
-webkit-animation-delay: 4.43s; }
.left:nth-child(444) {
-webkit-animation-delay: 4.44s; }
.translate:nth-child(444) {
-webkit-animation-delay: 4.44s; }
.left:nth-child(445) {
-webkit-animation-delay: 4.45s; }
.translate:nth-child(445) {
-webkit-animation-delay: 4.45s; }
.left:nth-child(446) {
-webkit-animation-delay: 4.46s; }
.translate:nth-child(446) {
-webkit-animation-delay: 4.46s; }
.left:nth-child(447) {
-webkit-animation-delay: 4.47s; }
.translate:nth-child(447) {
-webkit-animation-delay: 4.47s; }
.left:nth-child(448) {
-webkit-animation-delay: 4.48s; }
.translate:nth-child(448) {
-webkit-animation-delay: 4.48s; }
.left:nth-child(449) {
-webkit-animation-delay: 4.49s; }
.translate:nth-child(449) {
-webkit-animation-delay: 4.49s; }
.left:nth-child(450) {
-webkit-animation-delay: 4.5s; }
.translate:nth-child(450) {
-webkit-animation-delay: 4.5s; }
.left:nth-child(451) {
-webkit-animation-delay: 4.51s; }
.translate:nth-child(451) {
-webkit-animation-delay: 4.51s; }
.left:nth-child(452) {
-webkit-animation-delay: 4.52s; }
.translate:nth-child(452) {
-webkit-animation-delay: 4.52s; }
.left:nth-child(453) {
-webkit-animation-delay: 4.53s; }
.translate:nth-child(453) {
-webkit-animation-delay: 4.53s; }
.left:nth-child(454) {
-webkit-animation-delay: 4.54s; }
.translate:nth-child(454) {
-webkit-animation-delay: 4.54s; }
.left:nth-child(455) {
-webkit-animation-delay: 4.55s; }
.translate:nth-child(455) {
-webkit-animation-delay: 4.55s; }
.left:nth-child(456) {
-webkit-animation-delay: 4.56s; }
.translate:nth-child(456) {
-webkit-animation-delay: 4.56s; }
.left:nth-child(457) {
-webkit-animation-delay: 4.57s; }
.translate:nth-child(457) {
-webkit-animation-delay: 4.57s; }
.left:nth-child(458) {
-webkit-animation-delay: 4.58s; }
.translate:nth-child(458) {
-webkit-animation-delay: 4.58s; }
.left:nth-child(459) {
-webkit-animation-delay: 4.59s; }
.translate:nth-child(459) {
-webkit-animation-delay: 4.59s; }
.left:nth-child(460) {
-webkit-animation-delay: 4.6s; }
.translate:nth-child(460) {
-webkit-animation-delay: 4.6s; }
.left:nth-child(461) {
-webkit-animation-delay: 4.61s; }
.translate:nth-child(461) {
-webkit-animation-delay: 4.61s; }
.left:nth-child(462) {
-webkit-animation-delay: 4.62s; }
.translate:nth-child(462) {
-webkit-animation-delay: 4.62s; }
.left:nth-child(463) {
-webkit-animation-delay: 4.63s; }
.translate:nth-child(463) {
-webkit-animation-delay: 4.63s; }
.left:nth-child(464) {
-webkit-animation-delay: 4.64s; }
.translate:nth-child(464) {
-webkit-animation-delay: 4.64s; }
.left:nth-child(465) {
-webkit-animation-delay: 4.65s; }
.translate:nth-child(465) {
-webkit-animation-delay: 4.65s; }
.left:nth-child(466) {
-webkit-animation-delay: 4.66s; }
.translate:nth-child(466) {
-webkit-animation-delay: 4.66s; }
.left:nth-child(467) {
-webkit-animation-delay: 4.67s; }
.translate:nth-child(467) {
-webkit-animation-delay: 4.67s; }
.left:nth-child(468) {
-webkit-animation-delay: 4.68s; }
.translate:nth-child(468) {
-webkit-animation-delay: 4.68s; }
.left:nth-child(469) {
-webkit-animation-delay: 4.69s; }
.translate:nth-child(469) {
-webkit-animation-delay: 4.69s; }
.left:nth-child(470) {
-webkit-animation-delay: 4.7s; }
.translate:nth-child(470) {
-webkit-animation-delay: 4.7s; }
.left:nth-child(471) {
-webkit-animation-delay: 4.71s; }
.translate:nth-child(471) {
-webkit-animation-delay: 4.71s; }
.left:nth-child(472) {
-webkit-animation-delay: 4.72s; }
.translate:nth-child(472) {
-webkit-animation-delay: 4.72s; }
.left:nth-child(473) {
-webkit-animation-delay: 4.73s; }
.translate:nth-child(473) {
-webkit-animation-delay: 4.73s; }
.left:nth-child(474) {
-webkit-animation-delay: 4.74s; }
.translate:nth-child(474) {
-webkit-animation-delay: 4.74s; }
.left:nth-child(475) {
-webkit-animation-delay: 4.75s; }
.translate:nth-child(475) {
-webkit-animation-delay: 4.75s; }
.left:nth-child(476) {
-webkit-animation-delay: 4.76s; }
.translate:nth-child(476) {
-webkit-animation-delay: 4.76s; }
.left:nth-child(477) {
-webkit-animation-delay: 4.77s; }
.translate:nth-child(477) {
-webkit-animation-delay: 4.77s; }
.left:nth-child(478) {
-webkit-animation-delay: 4.78s; }
.translate:nth-child(478) {
-webkit-animation-delay: 4.78s; }
.left:nth-child(479) {
-webkit-animation-delay: 4.79s; }
.translate:nth-child(479) {
-webkit-animation-delay: 4.79s; }
.left:nth-child(480) {
-webkit-animation-delay: 4.8s; }
.translate:nth-child(480) {
-webkit-animation-delay: 4.8s; }
.left:nth-child(481) {
-webkit-animation-delay: 4.81s; }
.translate:nth-child(481) {
-webkit-animation-delay: 4.81s; }
.left:nth-child(482) {
-webkit-animation-delay: 4.82s; }
.translate:nth-child(482) {
-webkit-animation-delay: 4.82s; }
.left:nth-child(483) {
-webkit-animation-delay: 4.83s; }
.translate:nth-child(483) {
-webkit-animation-delay: 4.83s; }
.left:nth-child(484) {
-webkit-animation-delay: 4.84s; }
.translate:nth-child(484) {
-webkit-animation-delay: 4.84s; }
.left:nth-child(485) {
-webkit-animation-delay: 4.85s; }
.translate:nth-child(485) {
-webkit-animation-delay: 4.85s; }
.left:nth-child(486) {
-webkit-animation-delay: 4.86s; }
.translate:nth-child(486) {
-webkit-animation-delay: 4.86s; }
.left:nth-child(487) {
-webkit-animation-delay: 4.87s; }
.translate:nth-child(487) {
-webkit-animation-delay: 4.87s; }
.left:nth-child(488) {
-webkit-animation-delay: 4.88s; }
.translate:nth-child(488) {
-webkit-animation-delay: 4.88s; }
.left:nth-child(489) {
-webkit-animation-delay: 4.89s; }
.translate:nth-child(489) {
-webkit-animation-delay: 4.89s; }
.left:nth-child(490) {
-webkit-animation-delay: 4.9s; }
.translate:nth-child(490) {
-webkit-animation-delay: 4.9s; }
.left:nth-child(491) {
-webkit-animation-delay: 4.91s; }
.translate:nth-child(491) {
-webkit-animation-delay: 4.91s; }
.left:nth-child(492) {
-webkit-animation-delay: 4.92s; }
.translate:nth-child(492) {
-webkit-animation-delay: 4.92s; }
.left:nth-child(493) {
-webkit-animation-delay: 4.93s; }
.translate:nth-child(493) {
-webkit-animation-delay: 4.93s; }
.left:nth-child(494) {
-webkit-animation-delay: 4.94s; }
.translate:nth-child(494) {
-webkit-animation-delay: 4.94s; }
.left:nth-child(495) {
-webkit-animation-delay: 4.95s; }
.translate:nth-child(495) {
-webkit-animation-delay: 4.95s; }
.left:nth-child(496) {
-webkit-animation-delay: 4.96s; }
.translate:nth-child(496) {
-webkit-animation-delay: 4.96s; }
.left:nth-child(497) {
-webkit-animation-delay: 4.97s; }
.translate:nth-child(497) {
-webkit-animation-delay: 4.97s; }
.left:nth-child(498) {
-webkit-animation-delay: 4.98s; }
.translate:nth-child(498) {
-webkit-animation-delay: 4.98s; }
.left:nth-child(499) {
-webkit-animation-delay: 4.99s; }
.translate:nth-child(499) {
-webkit-animation-delay: 4.99s; }
.left:nth-child(500) {
-webkit-animation-delay: 5s; }
.translate:nth-child(500) {
-webkit-animation-delay: 5s; }
.reveal .emojicon {
font-family: sans-serif;
text-shadow: none; }
.animated-gradient {
background: linear-gradient(135deg, #2980b9 0%, #9B59B6 100%);
height: 100%;
width: 100%;
top: 0;
left: 0;
position: absolute; }
.reveal pre {
box-shadow: none; }
.reveal .stack {
position: relative;
min-height: 400px; }
.reveal .stack__item {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.js-random-anim span {
display: inline-block; }
.img--expandable {
background: white !important; }
.img--expandable:hover {
transform: scale(1.5) translateY(-25%); }
body {
background: linear-gradient(135deg, #2980b9 0%, #9B59B6 100%); }
.thanks path {
fill: none;
stroke-width: 3;
stroke: white;
stroke-linejoin: round; }
.thanks .draw {
stroke-dashoffset: 0; }
.t__stick {
stroke-dasharray: 140px;
stroke-dashoffset: 140px; }
.t__hat {
stroke-dasharray: 210px;
stroke-dashoffset: 210px; }
.hanks {
stroke-dasharray: 1300px;
stroke-dashoffset: 1300px; }
.expl__dot {
stroke-dasharray: 20px;
stroke-dashoffset: 20px; }
.expl__stroke {
stroke-dasharray: 100px;
stroke-dashoffset: 100px; }
.underline {
stroke-dasharray: 370px;
stroke-dashoffset: 370px; }
/*# sourceMappingURL=pres.css.map */ | css/theme/pres.css | @import url(http://fonts.googleapis.com/css?family=Roboto:300,100);
.reveal section.work svg {
width: 100%;
position: absolute;
bottom: -100%;
right: -10%; }
.reveal section.work .isl-arrow__arrow {
stroke-dasharray: 1600px;
stroke-dashoffset: 1600px;
transition: all 2.4s; }
.reveal section.work .isl-arrow__arrow.draw-arrow {
stroke-dashoffset: 0;
transition: all 2.4s; }
.particle {
background: whitesmoke;
height: 100%;
font-family: 'Roboto';
padding: 0;
margin: 0; }
.particle h1 {
font-family: 'Roboto';
margin: 0;
padding: 0;
line-height: 1;
font-size: 2em;
color: #777;
text-shadow: none;
text-transform: uppercase;
font-weight: 100;
position: absolute;
top: 20%;
width: 100%;
text-align: center;
/* background-color: whitesmoke; */
z-index: 5;
left: 50%;
-webkit-transform: translateX(-50%); }
.particle canvas {
position: absolute;
left: 50%;
bottom: -10%;
-webkit-transform: translateX(-50%) translateZ(0); }
.particle .gradient-overlay {
position: absolute;
top: 0;
left: -50%;
width: 200%;
height: 100%;
background: -moz-linear-gradient(top, whitesmoke 50%, rgba(245, 245, 245, 0) 75%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, whitesmoke), color-stop(75%, rgba(245, 245, 245, 0)));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, whitesmoke 50%, rgba(245, 245, 245, 0) 75%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, whitesmoke 50%, rgba(245, 245, 245, 0) 75%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, whitesmoke 50%, rgba(245, 245, 245, 0) 75%);
/* IE10+ */
background: linear-gradient(to bottom, whitesmoke 50%, rgba(245, 245, 245, 0) 75%);
/* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00f5f5f5',GradientType=0 );
/* IE6-9 */ }
.properties .left, .properties .translate {
height: 20px;
width: 20px;
border-radius: 100%;
display: block; }
.properties .left {
-webkit-animation-name: left;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
position: relative;
display: inline-block;
background: fuchsia; }
.properties .translate {
-webkit-animation-name: trans;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
display: inline-block;
background: blue; }
.properties .translate-container, .properties .left-container {
display: block;
position: absolute;
top: 100%; }
@-webkit-keyframes left {
0% {
left: -100px; }
50% {
left: 100px; }
100% {
left: -100px; } }
@-webkit-keyframes trans {
0% {
-webkit-transform: translate3d(-100px, 0, 0); }
50% {
-webkit-transform: translate3d(100px, 0, 0); }
100% {
-webkit-transform: translate3d(-100px, 0, 0); } }
.left:nth-child(1) {
-webkit-animation-delay: 0.01s; }
.translate:nth-child(1) {
-webkit-animation-delay: 0.01s; }
.left:nth-child(2) {
-webkit-animation-delay: 0.02s; }
.translate:nth-child(2) {
-webkit-animation-delay: 0.02s; }
.left:nth-child(3) {
-webkit-animation-delay: 0.03s; }
.translate:nth-child(3) {
-webkit-animation-delay: 0.03s; }
.left:nth-child(4) {
-webkit-animation-delay: 0.04s; }
.translate:nth-child(4) {
-webkit-animation-delay: 0.04s; }
.left:nth-child(5) {
-webkit-animation-delay: 0.05s; }
.translate:nth-child(5) {
-webkit-animation-delay: 0.05s; }
.left:nth-child(6) {
-webkit-animation-delay: 0.06s; }
.translate:nth-child(6) {
-webkit-animation-delay: 0.06s; }
.left:nth-child(7) {
-webkit-animation-delay: 0.07s; }
.translate:nth-child(7) {
-webkit-animation-delay: 0.07s; }
.left:nth-child(8) {
-webkit-animation-delay: 0.08s; }
.translate:nth-child(8) {
-webkit-animation-delay: 0.08s; }
.left:nth-child(9) {
-webkit-animation-delay: 0.09s; }
.translate:nth-child(9) {
-webkit-animation-delay: 0.09s; }
.left:nth-child(10) {
-webkit-animation-delay: 0.1s; }
.translate:nth-child(10) {
-webkit-animation-delay: 0.1s; }
.left:nth-child(11) {
-webkit-animation-delay: 0.11s; }
.translate:nth-child(11) {
-webkit-animation-delay: 0.11s; }
.left:nth-child(12) {
-webkit-animation-delay: 0.12s; }
.translate:nth-child(12) {
-webkit-animation-delay: 0.12s; }
.left:nth-child(13) {
-webkit-animation-delay: 0.13s; }
.translate:nth-child(13) {
-webkit-animation-delay: 0.13s; }
.left:nth-child(14) {
-webkit-animation-delay: 0.14s; }
.translate:nth-child(14) {
-webkit-animation-delay: 0.14s; }
.left:nth-child(15) {
-webkit-animation-delay: 0.15s; }
.translate:nth-child(15) {
-webkit-animation-delay: 0.15s; }
.left:nth-child(16) {
-webkit-animation-delay: 0.16s; }
.translate:nth-child(16) {
-webkit-animation-delay: 0.16s; }
.left:nth-child(17) {
-webkit-animation-delay: 0.17s; }
.translate:nth-child(17) {
-webkit-animation-delay: 0.17s; }
.left:nth-child(18) {
-webkit-animation-delay: 0.18s; }
.translate:nth-child(18) {
-webkit-animation-delay: 0.18s; }
.left:nth-child(19) {
-webkit-animation-delay: 0.19s; }
.translate:nth-child(19) {
-webkit-animation-delay: 0.19s; }
.left:nth-child(20) {
-webkit-animation-delay: 0.2s; }
.translate:nth-child(20) {
-webkit-animation-delay: 0.2s; }
.left:nth-child(21) {
-webkit-animation-delay: 0.21s; }
.translate:nth-child(21) {
-webkit-animation-delay: 0.21s; }
.left:nth-child(22) {
-webkit-animation-delay: 0.22s; }
.translate:nth-child(22) {
-webkit-animation-delay: 0.22s; }
.left:nth-child(23) {
-webkit-animation-delay: 0.23s; }
.translate:nth-child(23) {
-webkit-animation-delay: 0.23s; }
.left:nth-child(24) {
-webkit-animation-delay: 0.24s; }
.translate:nth-child(24) {
-webkit-animation-delay: 0.24s; }
.left:nth-child(25) {
-webkit-animation-delay: 0.25s; }
.translate:nth-child(25) {
-webkit-animation-delay: 0.25s; }
.left:nth-child(26) {
-webkit-animation-delay: 0.26s; }
.translate:nth-child(26) {
-webkit-animation-delay: 0.26s; }
.left:nth-child(27) {
-webkit-animation-delay: 0.27s; }
.translate:nth-child(27) {
-webkit-animation-delay: 0.27s; }
.left:nth-child(28) {
-webkit-animation-delay: 0.28s; }
.translate:nth-child(28) {
-webkit-animation-delay: 0.28s; }
.left:nth-child(29) {
-webkit-animation-delay: 0.29s; }
.translate:nth-child(29) {
-webkit-animation-delay: 0.29s; }
.left:nth-child(30) {
-webkit-animation-delay: 0.3s; }
.translate:nth-child(30) {
-webkit-animation-delay: 0.3s; }
.left:nth-child(31) {
-webkit-animation-delay: 0.31s; }
.translate:nth-child(31) {
-webkit-animation-delay: 0.31s; }
.left:nth-child(32) {
-webkit-animation-delay: 0.32s; }
.translate:nth-child(32) {
-webkit-animation-delay: 0.32s; }
.left:nth-child(33) {
-webkit-animation-delay: 0.33s; }
.translate:nth-child(33) {
-webkit-animation-delay: 0.33s; }
.left:nth-child(34) {
-webkit-animation-delay: 0.34s; }
.translate:nth-child(34) {
-webkit-animation-delay: 0.34s; }
.left:nth-child(35) {
-webkit-animation-delay: 0.35s; }
.translate:nth-child(35) {
-webkit-animation-delay: 0.35s; }
.left:nth-child(36) {
-webkit-animation-delay: 0.36s; }
.translate:nth-child(36) {
-webkit-animation-delay: 0.36s; }
.left:nth-child(37) {
-webkit-animation-delay: 0.37s; }
.translate:nth-child(37) {
-webkit-animation-delay: 0.37s; }
.left:nth-child(38) {
-webkit-animation-delay: 0.38s; }
.translate:nth-child(38) {
-webkit-animation-delay: 0.38s; }
.left:nth-child(39) {
-webkit-animation-delay: 0.39s; }
.translate:nth-child(39) {
-webkit-animation-delay: 0.39s; }
.left:nth-child(40) {
-webkit-animation-delay: 0.4s; }
.translate:nth-child(40) {
-webkit-animation-delay: 0.4s; }
.left:nth-child(41) {
-webkit-animation-delay: 0.41s; }
.translate:nth-child(41) {
-webkit-animation-delay: 0.41s; }
.left:nth-child(42) {
-webkit-animation-delay: 0.42s; }
.translate:nth-child(42) {
-webkit-animation-delay: 0.42s; }
.left:nth-child(43) {
-webkit-animation-delay: 0.43s; }
.translate:nth-child(43) {
-webkit-animation-delay: 0.43s; }
.left:nth-child(44) {
-webkit-animation-delay: 0.44s; }
.translate:nth-child(44) {
-webkit-animation-delay: 0.44s; }
.left:nth-child(45) {
-webkit-animation-delay: 0.45s; }
.translate:nth-child(45) {
-webkit-animation-delay: 0.45s; }
.left:nth-child(46) {
-webkit-animation-delay: 0.46s; }
.translate:nth-child(46) {
-webkit-animation-delay: 0.46s; }
.left:nth-child(47) {
-webkit-animation-delay: 0.47s; }
.translate:nth-child(47) {
-webkit-animation-delay: 0.47s; }
.left:nth-child(48) {
-webkit-animation-delay: 0.48s; }
.translate:nth-child(48) {
-webkit-animation-delay: 0.48s; }
.left:nth-child(49) {
-webkit-animation-delay: 0.49s; }
.translate:nth-child(49) {
-webkit-animation-delay: 0.49s; }
.left:nth-child(50) {
-webkit-animation-delay: 0.5s; }
.translate:nth-child(50) {
-webkit-animation-delay: 0.5s; }
.left:nth-child(51) {
-webkit-animation-delay: 0.51s; }
.translate:nth-child(51) {
-webkit-animation-delay: 0.51s; }
.left:nth-child(52) {
-webkit-animation-delay: 0.52s; }
.translate:nth-child(52) {
-webkit-animation-delay: 0.52s; }
.left:nth-child(53) {
-webkit-animation-delay: 0.53s; }
.translate:nth-child(53) {
-webkit-animation-delay: 0.53s; }
.left:nth-child(54) {
-webkit-animation-delay: 0.54s; }
.translate:nth-child(54) {
-webkit-animation-delay: 0.54s; }
.left:nth-child(55) {
-webkit-animation-delay: 0.55s; }
.translate:nth-child(55) {
-webkit-animation-delay: 0.55s; }
.left:nth-child(56) {
-webkit-animation-delay: 0.56s; }
.translate:nth-child(56) {
-webkit-animation-delay: 0.56s; }
.left:nth-child(57) {
-webkit-animation-delay: 0.57s; }
.translate:nth-child(57) {
-webkit-animation-delay: 0.57s; }
.left:nth-child(58) {
-webkit-animation-delay: 0.58s; }
.translate:nth-child(58) {
-webkit-animation-delay: 0.58s; }
.left:nth-child(59) {
-webkit-animation-delay: 0.59s; }
.translate:nth-child(59) {
-webkit-animation-delay: 0.59s; }
.left:nth-child(60) {
-webkit-animation-delay: 0.6s; }
.translate:nth-child(60) {
-webkit-animation-delay: 0.6s; }
.left:nth-child(61) {
-webkit-animation-delay: 0.61s; }
.translate:nth-child(61) {
-webkit-animation-delay: 0.61s; }
.left:nth-child(62) {
-webkit-animation-delay: 0.62s; }
.translate:nth-child(62) {
-webkit-animation-delay: 0.62s; }
.left:nth-child(63) {
-webkit-animation-delay: 0.63s; }
.translate:nth-child(63) {
-webkit-animation-delay: 0.63s; }
.left:nth-child(64) {
-webkit-animation-delay: 0.64s; }
.translate:nth-child(64) {
-webkit-animation-delay: 0.64s; }
.left:nth-child(65) {
-webkit-animation-delay: 0.65s; }
.translate:nth-child(65) {
-webkit-animation-delay: 0.65s; }
.left:nth-child(66) {
-webkit-animation-delay: 0.66s; }
.translate:nth-child(66) {
-webkit-animation-delay: 0.66s; }
.left:nth-child(67) {
-webkit-animation-delay: 0.67s; }
.translate:nth-child(67) {
-webkit-animation-delay: 0.67s; }
.left:nth-child(68) {
-webkit-animation-delay: 0.68s; }
.translate:nth-child(68) {
-webkit-animation-delay: 0.68s; }
.left:nth-child(69) {
-webkit-animation-delay: 0.69s; }
.translate:nth-child(69) {
-webkit-animation-delay: 0.69s; }
.left:nth-child(70) {
-webkit-animation-delay: 0.7s; }
.translate:nth-child(70) {
-webkit-animation-delay: 0.7s; }
.left:nth-child(71) {
-webkit-animation-delay: 0.71s; }
.translate:nth-child(71) {
-webkit-animation-delay: 0.71s; }
.left:nth-child(72) {
-webkit-animation-delay: 0.72s; }
.translate:nth-child(72) {
-webkit-animation-delay: 0.72s; }
.left:nth-child(73) {
-webkit-animation-delay: 0.73s; }
.translate:nth-child(73) {
-webkit-animation-delay: 0.73s; }
.left:nth-child(74) {
-webkit-animation-delay: 0.74s; }
.translate:nth-child(74) {
-webkit-animation-delay: 0.74s; }
.left:nth-child(75) {
-webkit-animation-delay: 0.75s; }
.translate:nth-child(75) {
-webkit-animation-delay: 0.75s; }
.left:nth-child(76) {
-webkit-animation-delay: 0.76s; }
.translate:nth-child(76) {
-webkit-animation-delay: 0.76s; }
.left:nth-child(77) {
-webkit-animation-delay: 0.77s; }
.translate:nth-child(77) {
-webkit-animation-delay: 0.77s; }
.left:nth-child(78) {
-webkit-animation-delay: 0.78s; }
.translate:nth-child(78) {
-webkit-animation-delay: 0.78s; }
.left:nth-child(79) {
-webkit-animation-delay: 0.79s; }
.translate:nth-child(79) {
-webkit-animation-delay: 0.79s; }
.left:nth-child(80) {
-webkit-animation-delay: 0.8s; }
.translate:nth-child(80) {
-webkit-animation-delay: 0.8s; }
.left:nth-child(81) {
-webkit-animation-delay: 0.81s; }
.translate:nth-child(81) {
-webkit-animation-delay: 0.81s; }
.left:nth-child(82) {
-webkit-animation-delay: 0.82s; }
.translate:nth-child(82) {
-webkit-animation-delay: 0.82s; }
.left:nth-child(83) {
-webkit-animation-delay: 0.83s; }
.translate:nth-child(83) {
-webkit-animation-delay: 0.83s; }
.left:nth-child(84) {
-webkit-animation-delay: 0.84s; }
.translate:nth-child(84) {
-webkit-animation-delay: 0.84s; }
.left:nth-child(85) {
-webkit-animation-delay: 0.85s; }
.translate:nth-child(85) {
-webkit-animation-delay: 0.85s; }
.left:nth-child(86) {
-webkit-animation-delay: 0.86s; }
.translate:nth-child(86) {
-webkit-animation-delay: 0.86s; }
.left:nth-child(87) {
-webkit-animation-delay: 0.87s; }
.translate:nth-child(87) {
-webkit-animation-delay: 0.87s; }
.left:nth-child(88) {
-webkit-animation-delay: 0.88s; }
.translate:nth-child(88) {
-webkit-animation-delay: 0.88s; }
.left:nth-child(89) {
-webkit-animation-delay: 0.89s; }
.translate:nth-child(89) {
-webkit-animation-delay: 0.89s; }
.left:nth-child(90) {
-webkit-animation-delay: 0.9s; }
.translate:nth-child(90) {
-webkit-animation-delay: 0.9s; }
.left:nth-child(91) {
-webkit-animation-delay: 0.91s; }
.translate:nth-child(91) {
-webkit-animation-delay: 0.91s; }
.left:nth-child(92) {
-webkit-animation-delay: 0.92s; }
.translate:nth-child(92) {
-webkit-animation-delay: 0.92s; }
.left:nth-child(93) {
-webkit-animation-delay: 0.93s; }
.translate:nth-child(93) {
-webkit-animation-delay: 0.93s; }
.left:nth-child(94) {
-webkit-animation-delay: 0.94s; }
.translate:nth-child(94) {
-webkit-animation-delay: 0.94s; }
.left:nth-child(95) {
-webkit-animation-delay: 0.95s; }
.translate:nth-child(95) {
-webkit-animation-delay: 0.95s; }
.left:nth-child(96) {
-webkit-animation-delay: 0.96s; }
.translate:nth-child(96) {
-webkit-animation-delay: 0.96s; }
.left:nth-child(97) {
-webkit-animation-delay: 0.97s; }
.translate:nth-child(97) {
-webkit-animation-delay: 0.97s; }
.left:nth-child(98) {
-webkit-animation-delay: 0.98s; }
.translate:nth-child(98) {
-webkit-animation-delay: 0.98s; }
.left:nth-child(99) {
-webkit-animation-delay: 0.99s; }
.translate:nth-child(99) {
-webkit-animation-delay: 0.99s; }
.left:nth-child(100) {
-webkit-animation-delay: 1s; }
.translate:nth-child(100) {
-webkit-animation-delay: 1s; }
.left:nth-child(101) {
-webkit-animation-delay: 1.01s; }
.translate:nth-child(101) {
-webkit-animation-delay: 1.01s; }
.left:nth-child(102) {
-webkit-animation-delay: 1.02s; }
.translate:nth-child(102) {
-webkit-animation-delay: 1.02s; }
.left:nth-child(103) {
-webkit-animation-delay: 1.03s; }
.translate:nth-child(103) {
-webkit-animation-delay: 1.03s; }
.left:nth-child(104) {
-webkit-animation-delay: 1.04s; }
.translate:nth-child(104) {
-webkit-animation-delay: 1.04s; }
.left:nth-child(105) {
-webkit-animation-delay: 1.05s; }
.translate:nth-child(105) {
-webkit-animation-delay: 1.05s; }
.left:nth-child(106) {
-webkit-animation-delay: 1.06s; }
.translate:nth-child(106) {
-webkit-animation-delay: 1.06s; }
.left:nth-child(107) {
-webkit-animation-delay: 1.07s; }
.translate:nth-child(107) {
-webkit-animation-delay: 1.07s; }
.left:nth-child(108) {
-webkit-animation-delay: 1.08s; }
.translate:nth-child(108) {
-webkit-animation-delay: 1.08s; }
.left:nth-child(109) {
-webkit-animation-delay: 1.09s; }
.translate:nth-child(109) {
-webkit-animation-delay: 1.09s; }
.left:nth-child(110) {
-webkit-animation-delay: 1.1s; }
.translate:nth-child(110) {
-webkit-animation-delay: 1.1s; }
.left:nth-child(111) {
-webkit-animation-delay: 1.11s; }
.translate:nth-child(111) {
-webkit-animation-delay: 1.11s; }
.left:nth-child(112) {
-webkit-animation-delay: 1.12s; }
.translate:nth-child(112) {
-webkit-animation-delay: 1.12s; }
.left:nth-child(113) {
-webkit-animation-delay: 1.13s; }
.translate:nth-child(113) {
-webkit-animation-delay: 1.13s; }
.left:nth-child(114) {
-webkit-animation-delay: 1.14s; }
.translate:nth-child(114) {
-webkit-animation-delay: 1.14s; }
.left:nth-child(115) {
-webkit-animation-delay: 1.15s; }
.translate:nth-child(115) {
-webkit-animation-delay: 1.15s; }
.left:nth-child(116) {
-webkit-animation-delay: 1.16s; }
.translate:nth-child(116) {
-webkit-animation-delay: 1.16s; }
.left:nth-child(117) {
-webkit-animation-delay: 1.17s; }
.translate:nth-child(117) {
-webkit-animation-delay: 1.17s; }
.left:nth-child(118) {
-webkit-animation-delay: 1.18s; }
.translate:nth-child(118) {
-webkit-animation-delay: 1.18s; }
.left:nth-child(119) {
-webkit-animation-delay: 1.19s; }
.translate:nth-child(119) {
-webkit-animation-delay: 1.19s; }
.left:nth-child(120) {
-webkit-animation-delay: 1.2s; }
.translate:nth-child(120) {
-webkit-animation-delay: 1.2s; }
.left:nth-child(121) {
-webkit-animation-delay: 1.21s; }
.translate:nth-child(121) {
-webkit-animation-delay: 1.21s; }
.left:nth-child(122) {
-webkit-animation-delay: 1.22s; }
.translate:nth-child(122) {
-webkit-animation-delay: 1.22s; }
.left:nth-child(123) {
-webkit-animation-delay: 1.23s; }
.translate:nth-child(123) {
-webkit-animation-delay: 1.23s; }
.left:nth-child(124) {
-webkit-animation-delay: 1.24s; }
.translate:nth-child(124) {
-webkit-animation-delay: 1.24s; }
.left:nth-child(125) {
-webkit-animation-delay: 1.25s; }
.translate:nth-child(125) {
-webkit-animation-delay: 1.25s; }
.left:nth-child(126) {
-webkit-animation-delay: 1.26s; }
.translate:nth-child(126) {
-webkit-animation-delay: 1.26s; }
.left:nth-child(127) {
-webkit-animation-delay: 1.27s; }
.translate:nth-child(127) {
-webkit-animation-delay: 1.27s; }
.left:nth-child(128) {
-webkit-animation-delay: 1.28s; }
.translate:nth-child(128) {
-webkit-animation-delay: 1.28s; }
.left:nth-child(129) {
-webkit-animation-delay: 1.29s; }
.translate:nth-child(129) {
-webkit-animation-delay: 1.29s; }
.left:nth-child(130) {
-webkit-animation-delay: 1.3s; }
.translate:nth-child(130) {
-webkit-animation-delay: 1.3s; }
.left:nth-child(131) {
-webkit-animation-delay: 1.31s; }
.translate:nth-child(131) {
-webkit-animation-delay: 1.31s; }
.left:nth-child(132) {
-webkit-animation-delay: 1.32s; }
.translate:nth-child(132) {
-webkit-animation-delay: 1.32s; }
.left:nth-child(133) {
-webkit-animation-delay: 1.33s; }
.translate:nth-child(133) {
-webkit-animation-delay: 1.33s; }
.left:nth-child(134) {
-webkit-animation-delay: 1.34s; }
.translate:nth-child(134) {
-webkit-animation-delay: 1.34s; }
.left:nth-child(135) {
-webkit-animation-delay: 1.35s; }
.translate:nth-child(135) {
-webkit-animation-delay: 1.35s; }
.left:nth-child(136) {
-webkit-animation-delay: 1.36s; }
.translate:nth-child(136) {
-webkit-animation-delay: 1.36s; }
.left:nth-child(137) {
-webkit-animation-delay: 1.37s; }
.translate:nth-child(137) {
-webkit-animation-delay: 1.37s; }
.left:nth-child(138) {
-webkit-animation-delay: 1.38s; }
.translate:nth-child(138) {
-webkit-animation-delay: 1.38s; }
.left:nth-child(139) {
-webkit-animation-delay: 1.39s; }
.translate:nth-child(139) {
-webkit-animation-delay: 1.39s; }
.left:nth-child(140) {
-webkit-animation-delay: 1.4s; }
.translate:nth-child(140) {
-webkit-animation-delay: 1.4s; }
.left:nth-child(141) {
-webkit-animation-delay: 1.41s; }
.translate:nth-child(141) {
-webkit-animation-delay: 1.41s; }
.left:nth-child(142) {
-webkit-animation-delay: 1.42s; }
.translate:nth-child(142) {
-webkit-animation-delay: 1.42s; }
.left:nth-child(143) {
-webkit-animation-delay: 1.43s; }
.translate:nth-child(143) {
-webkit-animation-delay: 1.43s; }
.left:nth-child(144) {
-webkit-animation-delay: 1.44s; }
.translate:nth-child(144) {
-webkit-animation-delay: 1.44s; }
.left:nth-child(145) {
-webkit-animation-delay: 1.45s; }
.translate:nth-child(145) {
-webkit-animation-delay: 1.45s; }
.left:nth-child(146) {
-webkit-animation-delay: 1.46s; }
.translate:nth-child(146) {
-webkit-animation-delay: 1.46s; }
.left:nth-child(147) {
-webkit-animation-delay: 1.47s; }
.translate:nth-child(147) {
-webkit-animation-delay: 1.47s; }
.left:nth-child(148) {
-webkit-animation-delay: 1.48s; }
.translate:nth-child(148) {
-webkit-animation-delay: 1.48s; }
.left:nth-child(149) {
-webkit-animation-delay: 1.49s; }
.translate:nth-child(149) {
-webkit-animation-delay: 1.49s; }
.left:nth-child(150) {
-webkit-animation-delay: 1.5s; }
.translate:nth-child(150) {
-webkit-animation-delay: 1.5s; }
.left:nth-child(151) {
-webkit-animation-delay: 1.51s; }
.translate:nth-child(151) {
-webkit-animation-delay: 1.51s; }
.left:nth-child(152) {
-webkit-animation-delay: 1.52s; }
.translate:nth-child(152) {
-webkit-animation-delay: 1.52s; }
.left:nth-child(153) {
-webkit-animation-delay: 1.53s; }
.translate:nth-child(153) {
-webkit-animation-delay: 1.53s; }
.left:nth-child(154) {
-webkit-animation-delay: 1.54s; }
.translate:nth-child(154) {
-webkit-animation-delay: 1.54s; }
.left:nth-child(155) {
-webkit-animation-delay: 1.55s; }
.translate:nth-child(155) {
-webkit-animation-delay: 1.55s; }
.left:nth-child(156) {
-webkit-animation-delay: 1.56s; }
.translate:nth-child(156) {
-webkit-animation-delay: 1.56s; }
.left:nth-child(157) {
-webkit-animation-delay: 1.57s; }
.translate:nth-child(157) {
-webkit-animation-delay: 1.57s; }
.left:nth-child(158) {
-webkit-animation-delay: 1.58s; }
.translate:nth-child(158) {
-webkit-animation-delay: 1.58s; }
.left:nth-child(159) {
-webkit-animation-delay: 1.59s; }
.translate:nth-child(159) {
-webkit-animation-delay: 1.59s; }
.left:nth-child(160) {
-webkit-animation-delay: 1.6s; }
.translate:nth-child(160) {
-webkit-animation-delay: 1.6s; }
.left:nth-child(161) {
-webkit-animation-delay: 1.61s; }
.translate:nth-child(161) {
-webkit-animation-delay: 1.61s; }
.left:nth-child(162) {
-webkit-animation-delay: 1.62s; }
.translate:nth-child(162) {
-webkit-animation-delay: 1.62s; }
.left:nth-child(163) {
-webkit-animation-delay: 1.63s; }
.translate:nth-child(163) {
-webkit-animation-delay: 1.63s; }
.left:nth-child(164) {
-webkit-animation-delay: 1.64s; }
.translate:nth-child(164) {
-webkit-animation-delay: 1.64s; }
.left:nth-child(165) {
-webkit-animation-delay: 1.65s; }
.translate:nth-child(165) {
-webkit-animation-delay: 1.65s; }
.left:nth-child(166) {
-webkit-animation-delay: 1.66s; }
.translate:nth-child(166) {
-webkit-animation-delay: 1.66s; }
.left:nth-child(167) {
-webkit-animation-delay: 1.67s; }
.translate:nth-child(167) {
-webkit-animation-delay: 1.67s; }
.left:nth-child(168) {
-webkit-animation-delay: 1.68s; }
.translate:nth-child(168) {
-webkit-animation-delay: 1.68s; }
.left:nth-child(169) {
-webkit-animation-delay: 1.69s; }
.translate:nth-child(169) {
-webkit-animation-delay: 1.69s; }
.left:nth-child(170) {
-webkit-animation-delay: 1.7s; }
.translate:nth-child(170) {
-webkit-animation-delay: 1.7s; }
.left:nth-child(171) {
-webkit-animation-delay: 1.71s; }
.translate:nth-child(171) {
-webkit-animation-delay: 1.71s; }
.left:nth-child(172) {
-webkit-animation-delay: 1.72s; }
.translate:nth-child(172) {
-webkit-animation-delay: 1.72s; }
.left:nth-child(173) {
-webkit-animation-delay: 1.73s; }
.translate:nth-child(173) {
-webkit-animation-delay: 1.73s; }
.left:nth-child(174) {
-webkit-animation-delay: 1.74s; }
.translate:nth-child(174) {
-webkit-animation-delay: 1.74s; }
.left:nth-child(175) {
-webkit-animation-delay: 1.75s; }
.translate:nth-child(175) {
-webkit-animation-delay: 1.75s; }
.left:nth-child(176) {
-webkit-animation-delay: 1.76s; }
.translate:nth-child(176) {
-webkit-animation-delay: 1.76s; }
.left:nth-child(177) {
-webkit-animation-delay: 1.77s; }
.translate:nth-child(177) {
-webkit-animation-delay: 1.77s; }
.left:nth-child(178) {
-webkit-animation-delay: 1.78s; }
.translate:nth-child(178) {
-webkit-animation-delay: 1.78s; }
.left:nth-child(179) {
-webkit-animation-delay: 1.79s; }
.translate:nth-child(179) {
-webkit-animation-delay: 1.79s; }
.left:nth-child(180) {
-webkit-animation-delay: 1.8s; }
.translate:nth-child(180) {
-webkit-animation-delay: 1.8s; }
.left:nth-child(181) {
-webkit-animation-delay: 1.81s; }
.translate:nth-child(181) {
-webkit-animation-delay: 1.81s; }
.left:nth-child(182) {
-webkit-animation-delay: 1.82s; }
.translate:nth-child(182) {
-webkit-animation-delay: 1.82s; }
.left:nth-child(183) {
-webkit-animation-delay: 1.83s; }
.translate:nth-child(183) {
-webkit-animation-delay: 1.83s; }
.left:nth-child(184) {
-webkit-animation-delay: 1.84s; }
.translate:nth-child(184) {
-webkit-animation-delay: 1.84s; }
.left:nth-child(185) {
-webkit-animation-delay: 1.85s; }
.translate:nth-child(185) {
-webkit-animation-delay: 1.85s; }
.left:nth-child(186) {
-webkit-animation-delay: 1.86s; }
.translate:nth-child(186) {
-webkit-animation-delay: 1.86s; }
.left:nth-child(187) {
-webkit-animation-delay: 1.87s; }
.translate:nth-child(187) {
-webkit-animation-delay: 1.87s; }
.left:nth-child(188) {
-webkit-animation-delay: 1.88s; }
.translate:nth-child(188) {
-webkit-animation-delay: 1.88s; }
.left:nth-child(189) {
-webkit-animation-delay: 1.89s; }
.translate:nth-child(189) {
-webkit-animation-delay: 1.89s; }
.left:nth-child(190) {
-webkit-animation-delay: 1.9s; }
.translate:nth-child(190) {
-webkit-animation-delay: 1.9s; }
.left:nth-child(191) {
-webkit-animation-delay: 1.91s; }
.translate:nth-child(191) {
-webkit-animation-delay: 1.91s; }
.left:nth-child(192) {
-webkit-animation-delay: 1.92s; }
.translate:nth-child(192) {
-webkit-animation-delay: 1.92s; }
.left:nth-child(193) {
-webkit-animation-delay: 1.93s; }
.translate:nth-child(193) {
-webkit-animation-delay: 1.93s; }
.left:nth-child(194) {
-webkit-animation-delay: 1.94s; }
.translate:nth-child(194) {
-webkit-animation-delay: 1.94s; }
.left:nth-child(195) {
-webkit-animation-delay: 1.95s; }
.translate:nth-child(195) {
-webkit-animation-delay: 1.95s; }
.left:nth-child(196) {
-webkit-animation-delay: 1.96s; }
.translate:nth-child(196) {
-webkit-animation-delay: 1.96s; }
.left:nth-child(197) {
-webkit-animation-delay: 1.97s; }
.translate:nth-child(197) {
-webkit-animation-delay: 1.97s; }
.left:nth-child(198) {
-webkit-animation-delay: 1.98s; }
.translate:nth-child(198) {
-webkit-animation-delay: 1.98s; }
.left:nth-child(199) {
-webkit-animation-delay: 1.99s; }
.translate:nth-child(199) {
-webkit-animation-delay: 1.99s; }
.left:nth-child(200) {
-webkit-animation-delay: 2s; }
.translate:nth-child(200) {
-webkit-animation-delay: 2s; }
.left:nth-child(201) {
-webkit-animation-delay: 2.01s; }
.translate:nth-child(201) {
-webkit-animation-delay: 2.01s; }
.left:nth-child(202) {
-webkit-animation-delay: 2.02s; }
.translate:nth-child(202) {
-webkit-animation-delay: 2.02s; }
.left:nth-child(203) {
-webkit-animation-delay: 2.03s; }
.translate:nth-child(203) {
-webkit-animation-delay: 2.03s; }
.left:nth-child(204) {
-webkit-animation-delay: 2.04s; }
.translate:nth-child(204) {
-webkit-animation-delay: 2.04s; }
.left:nth-child(205) {
-webkit-animation-delay: 2.05s; }
.translate:nth-child(205) {
-webkit-animation-delay: 2.05s; }
.left:nth-child(206) {
-webkit-animation-delay: 2.06s; }
.translate:nth-child(206) {
-webkit-animation-delay: 2.06s; }
.left:nth-child(207) {
-webkit-animation-delay: 2.07s; }
.translate:nth-child(207) {
-webkit-animation-delay: 2.07s; }
.left:nth-child(208) {
-webkit-animation-delay: 2.08s; }
.translate:nth-child(208) {
-webkit-animation-delay: 2.08s; }
.left:nth-child(209) {
-webkit-animation-delay: 2.09s; }
.translate:nth-child(209) {
-webkit-animation-delay: 2.09s; }
.left:nth-child(210) {
-webkit-animation-delay: 2.1s; }
.translate:nth-child(210) {
-webkit-animation-delay: 2.1s; }
.left:nth-child(211) {
-webkit-animation-delay: 2.11s; }
.translate:nth-child(211) {
-webkit-animation-delay: 2.11s; }
.left:nth-child(212) {
-webkit-animation-delay: 2.12s; }
.translate:nth-child(212) {
-webkit-animation-delay: 2.12s; }
.left:nth-child(213) {
-webkit-animation-delay: 2.13s; }
.translate:nth-child(213) {
-webkit-animation-delay: 2.13s; }
.left:nth-child(214) {
-webkit-animation-delay: 2.14s; }
.translate:nth-child(214) {
-webkit-animation-delay: 2.14s; }
.left:nth-child(215) {
-webkit-animation-delay: 2.15s; }
.translate:nth-child(215) {
-webkit-animation-delay: 2.15s; }
.left:nth-child(216) {
-webkit-animation-delay: 2.16s; }
.translate:nth-child(216) {
-webkit-animation-delay: 2.16s; }
.left:nth-child(217) {
-webkit-animation-delay: 2.17s; }
.translate:nth-child(217) {
-webkit-animation-delay: 2.17s; }
.left:nth-child(218) {
-webkit-animation-delay: 2.18s; }
.translate:nth-child(218) {
-webkit-animation-delay: 2.18s; }
.left:nth-child(219) {
-webkit-animation-delay: 2.19s; }
.translate:nth-child(219) {
-webkit-animation-delay: 2.19s; }
.left:nth-child(220) {
-webkit-animation-delay: 2.2s; }
.translate:nth-child(220) {
-webkit-animation-delay: 2.2s; }
.left:nth-child(221) {
-webkit-animation-delay: 2.21s; }
.translate:nth-child(221) {
-webkit-animation-delay: 2.21s; }
.left:nth-child(222) {
-webkit-animation-delay: 2.22s; }
.translate:nth-child(222) {
-webkit-animation-delay: 2.22s; }
.left:nth-child(223) {
-webkit-animation-delay: 2.23s; }
.translate:nth-child(223) {
-webkit-animation-delay: 2.23s; }
.left:nth-child(224) {
-webkit-animation-delay: 2.24s; }
.translate:nth-child(224) {
-webkit-animation-delay: 2.24s; }
.left:nth-child(225) {
-webkit-animation-delay: 2.25s; }
.translate:nth-child(225) {
-webkit-animation-delay: 2.25s; }
.left:nth-child(226) {
-webkit-animation-delay: 2.26s; }
.translate:nth-child(226) {
-webkit-animation-delay: 2.26s; }
.left:nth-child(227) {
-webkit-animation-delay: 2.27s; }
.translate:nth-child(227) {
-webkit-animation-delay: 2.27s; }
.left:nth-child(228) {
-webkit-animation-delay: 2.28s; }
.translate:nth-child(228) {
-webkit-animation-delay: 2.28s; }
.left:nth-child(229) {
-webkit-animation-delay: 2.29s; }
.translate:nth-child(229) {
-webkit-animation-delay: 2.29s; }
.left:nth-child(230) {
-webkit-animation-delay: 2.3s; }
.translate:nth-child(230) {
-webkit-animation-delay: 2.3s; }
.left:nth-child(231) {
-webkit-animation-delay: 2.31s; }
.translate:nth-child(231) {
-webkit-animation-delay: 2.31s; }
.left:nth-child(232) {
-webkit-animation-delay: 2.32s; }
.translate:nth-child(232) {
-webkit-animation-delay: 2.32s; }
.left:nth-child(233) {
-webkit-animation-delay: 2.33s; }
.translate:nth-child(233) {
-webkit-animation-delay: 2.33s; }
.left:nth-child(234) {
-webkit-animation-delay: 2.34s; }
.translate:nth-child(234) {
-webkit-animation-delay: 2.34s; }
.left:nth-child(235) {
-webkit-animation-delay: 2.35s; }
.translate:nth-child(235) {
-webkit-animation-delay: 2.35s; }
.left:nth-child(236) {
-webkit-animation-delay: 2.36s; }
.translate:nth-child(236) {
-webkit-animation-delay: 2.36s; }
.left:nth-child(237) {
-webkit-animation-delay: 2.37s; }
.translate:nth-child(237) {
-webkit-animation-delay: 2.37s; }
.left:nth-child(238) {
-webkit-animation-delay: 2.38s; }
.translate:nth-child(238) {
-webkit-animation-delay: 2.38s; }
.left:nth-child(239) {
-webkit-animation-delay: 2.39s; }
.translate:nth-child(239) {
-webkit-animation-delay: 2.39s; }
.left:nth-child(240) {
-webkit-animation-delay: 2.4s; }
.translate:nth-child(240) {
-webkit-animation-delay: 2.4s; }
.left:nth-child(241) {
-webkit-animation-delay: 2.41s; }
.translate:nth-child(241) {
-webkit-animation-delay: 2.41s; }
.left:nth-child(242) {
-webkit-animation-delay: 2.42s; }
.translate:nth-child(242) {
-webkit-animation-delay: 2.42s; }
.left:nth-child(243) {
-webkit-animation-delay: 2.43s; }
.translate:nth-child(243) {
-webkit-animation-delay: 2.43s; }
.left:nth-child(244) {
-webkit-animation-delay: 2.44s; }
.translate:nth-child(244) {
-webkit-animation-delay: 2.44s; }
.left:nth-child(245) {
-webkit-animation-delay: 2.45s; }
.translate:nth-child(245) {
-webkit-animation-delay: 2.45s; }
.left:nth-child(246) {
-webkit-animation-delay: 2.46s; }
.translate:nth-child(246) {
-webkit-animation-delay: 2.46s; }
.left:nth-child(247) {
-webkit-animation-delay: 2.47s; }
.translate:nth-child(247) {
-webkit-animation-delay: 2.47s; }
.left:nth-child(248) {
-webkit-animation-delay: 2.48s; }
.translate:nth-child(248) {
-webkit-animation-delay: 2.48s; }
.left:nth-child(249) {
-webkit-animation-delay: 2.49s; }
.translate:nth-child(249) {
-webkit-animation-delay: 2.49s; }
.left:nth-child(250) {
-webkit-animation-delay: 2.5s; }
.translate:nth-child(250) {
-webkit-animation-delay: 2.5s; }
.left:nth-child(251) {
-webkit-animation-delay: 2.51s; }
.translate:nth-child(251) {
-webkit-animation-delay: 2.51s; }
.left:nth-child(252) {
-webkit-animation-delay: 2.52s; }
.translate:nth-child(252) {
-webkit-animation-delay: 2.52s; }
.left:nth-child(253) {
-webkit-animation-delay: 2.53s; }
.translate:nth-child(253) {
-webkit-animation-delay: 2.53s; }
.left:nth-child(254) {
-webkit-animation-delay: 2.54s; }
.translate:nth-child(254) {
-webkit-animation-delay: 2.54s; }
.left:nth-child(255) {
-webkit-animation-delay: 2.55s; }
.translate:nth-child(255) {
-webkit-animation-delay: 2.55s; }
.left:nth-child(256) {
-webkit-animation-delay: 2.56s; }
.translate:nth-child(256) {
-webkit-animation-delay: 2.56s; }
.left:nth-child(257) {
-webkit-animation-delay: 2.57s; }
.translate:nth-child(257) {
-webkit-animation-delay: 2.57s; }
.left:nth-child(258) {
-webkit-animation-delay: 2.58s; }
.translate:nth-child(258) {
-webkit-animation-delay: 2.58s; }
.left:nth-child(259) {
-webkit-animation-delay: 2.59s; }
.translate:nth-child(259) {
-webkit-animation-delay: 2.59s; }
.left:nth-child(260) {
-webkit-animation-delay: 2.6s; }
.translate:nth-child(260) {
-webkit-animation-delay: 2.6s; }
.left:nth-child(261) {
-webkit-animation-delay: 2.61s; }
.translate:nth-child(261) {
-webkit-animation-delay: 2.61s; }
.left:nth-child(262) {
-webkit-animation-delay: 2.62s; }
.translate:nth-child(262) {
-webkit-animation-delay: 2.62s; }
.left:nth-child(263) {
-webkit-animation-delay: 2.63s; }
.translate:nth-child(263) {
-webkit-animation-delay: 2.63s; }
.left:nth-child(264) {
-webkit-animation-delay: 2.64s; }
.translate:nth-child(264) {
-webkit-animation-delay: 2.64s; }
.left:nth-child(265) {
-webkit-animation-delay: 2.65s; }
.translate:nth-child(265) {
-webkit-animation-delay: 2.65s; }
.left:nth-child(266) {
-webkit-animation-delay: 2.66s; }
.translate:nth-child(266) {
-webkit-animation-delay: 2.66s; }
.left:nth-child(267) {
-webkit-animation-delay: 2.67s; }
.translate:nth-child(267) {
-webkit-animation-delay: 2.67s; }
.left:nth-child(268) {
-webkit-animation-delay: 2.68s; }
.translate:nth-child(268) {
-webkit-animation-delay: 2.68s; }
.left:nth-child(269) {
-webkit-animation-delay: 2.69s; }
.translate:nth-child(269) {
-webkit-animation-delay: 2.69s; }
.left:nth-child(270) {
-webkit-animation-delay: 2.7s; }
.translate:nth-child(270) {
-webkit-animation-delay: 2.7s; }
.left:nth-child(271) {
-webkit-animation-delay: 2.71s; }
.translate:nth-child(271) {
-webkit-animation-delay: 2.71s; }
.left:nth-child(272) {
-webkit-animation-delay: 2.72s; }
.translate:nth-child(272) {
-webkit-animation-delay: 2.72s; }
.left:nth-child(273) {
-webkit-animation-delay: 2.73s; }
.translate:nth-child(273) {
-webkit-animation-delay: 2.73s; }
.left:nth-child(274) {
-webkit-animation-delay: 2.74s; }
.translate:nth-child(274) {
-webkit-animation-delay: 2.74s; }
.left:nth-child(275) {
-webkit-animation-delay: 2.75s; }
.translate:nth-child(275) {
-webkit-animation-delay: 2.75s; }
.left:nth-child(276) {
-webkit-animation-delay: 2.76s; }
.translate:nth-child(276) {
-webkit-animation-delay: 2.76s; }
.left:nth-child(277) {
-webkit-animation-delay: 2.77s; }
.translate:nth-child(277) {
-webkit-animation-delay: 2.77s; }
.left:nth-child(278) {
-webkit-animation-delay: 2.78s; }
.translate:nth-child(278) {
-webkit-animation-delay: 2.78s; }
.left:nth-child(279) {
-webkit-animation-delay: 2.79s; }
.translate:nth-child(279) {
-webkit-animation-delay: 2.79s; }
.left:nth-child(280) {
-webkit-animation-delay: 2.8s; }
.translate:nth-child(280) {
-webkit-animation-delay: 2.8s; }
.left:nth-child(281) {
-webkit-animation-delay: 2.81s; }
.translate:nth-child(281) {
-webkit-animation-delay: 2.81s; }
.left:nth-child(282) {
-webkit-animation-delay: 2.82s; }
.translate:nth-child(282) {
-webkit-animation-delay: 2.82s; }
.left:nth-child(283) {
-webkit-animation-delay: 2.83s; }
.translate:nth-child(283) {
-webkit-animation-delay: 2.83s; }
.left:nth-child(284) {
-webkit-animation-delay: 2.84s; }
.translate:nth-child(284) {
-webkit-animation-delay: 2.84s; }
.left:nth-child(285) {
-webkit-animation-delay: 2.85s; }
.translate:nth-child(285) {
-webkit-animation-delay: 2.85s; }
.left:nth-child(286) {
-webkit-animation-delay: 2.86s; }
.translate:nth-child(286) {
-webkit-animation-delay: 2.86s; }
.left:nth-child(287) {
-webkit-animation-delay: 2.87s; }
.translate:nth-child(287) {
-webkit-animation-delay: 2.87s; }
.left:nth-child(288) {
-webkit-animation-delay: 2.88s; }
.translate:nth-child(288) {
-webkit-animation-delay: 2.88s; }
.left:nth-child(289) {
-webkit-animation-delay: 2.89s; }
.translate:nth-child(289) {
-webkit-animation-delay: 2.89s; }
.left:nth-child(290) {
-webkit-animation-delay: 2.9s; }
.translate:nth-child(290) {
-webkit-animation-delay: 2.9s; }
.left:nth-child(291) {
-webkit-animation-delay: 2.91s; }
.translate:nth-child(291) {
-webkit-animation-delay: 2.91s; }
.left:nth-child(292) {
-webkit-animation-delay: 2.92s; }
.translate:nth-child(292) {
-webkit-animation-delay: 2.92s; }
.left:nth-child(293) {
-webkit-animation-delay: 2.93s; }
.translate:nth-child(293) {
-webkit-animation-delay: 2.93s; }
.left:nth-child(294) {
-webkit-animation-delay: 2.94s; }
.translate:nth-child(294) {
-webkit-animation-delay: 2.94s; }
.left:nth-child(295) {
-webkit-animation-delay: 2.95s; }
.translate:nth-child(295) {
-webkit-animation-delay: 2.95s; }
.left:nth-child(296) {
-webkit-animation-delay: 2.96s; }
.translate:nth-child(296) {
-webkit-animation-delay: 2.96s; }
.left:nth-child(297) {
-webkit-animation-delay: 2.97s; }
.translate:nth-child(297) {
-webkit-animation-delay: 2.97s; }
.left:nth-child(298) {
-webkit-animation-delay: 2.98s; }
.translate:nth-child(298) {
-webkit-animation-delay: 2.98s; }
.left:nth-child(299) {
-webkit-animation-delay: 2.99s; }
.translate:nth-child(299) {
-webkit-animation-delay: 2.99s; }
.left:nth-child(300) {
-webkit-animation-delay: 3s; }
.translate:nth-child(300) {
-webkit-animation-delay: 3s; }
.left:nth-child(301) {
-webkit-animation-delay: 3.01s; }
.translate:nth-child(301) {
-webkit-animation-delay: 3.01s; }
.left:nth-child(302) {
-webkit-animation-delay: 3.02s; }
.translate:nth-child(302) {
-webkit-animation-delay: 3.02s; }
.left:nth-child(303) {
-webkit-animation-delay: 3.03s; }
.translate:nth-child(303) {
-webkit-animation-delay: 3.03s; }
.left:nth-child(304) {
-webkit-animation-delay: 3.04s; }
.translate:nth-child(304) {
-webkit-animation-delay: 3.04s; }
.left:nth-child(305) {
-webkit-animation-delay: 3.05s; }
.translate:nth-child(305) {
-webkit-animation-delay: 3.05s; }
.left:nth-child(306) {
-webkit-animation-delay: 3.06s; }
.translate:nth-child(306) {
-webkit-animation-delay: 3.06s; }
.left:nth-child(307) {
-webkit-animation-delay: 3.07s; }
.translate:nth-child(307) {
-webkit-animation-delay: 3.07s; }
.left:nth-child(308) {
-webkit-animation-delay: 3.08s; }
.translate:nth-child(308) {
-webkit-animation-delay: 3.08s; }
.left:nth-child(309) {
-webkit-animation-delay: 3.09s; }
.translate:nth-child(309) {
-webkit-animation-delay: 3.09s; }
.left:nth-child(310) {
-webkit-animation-delay: 3.1s; }
.translate:nth-child(310) {
-webkit-animation-delay: 3.1s; }
.left:nth-child(311) {
-webkit-animation-delay: 3.11s; }
.translate:nth-child(311) {
-webkit-animation-delay: 3.11s; }
.left:nth-child(312) {
-webkit-animation-delay: 3.12s; }
.translate:nth-child(312) {
-webkit-animation-delay: 3.12s; }
.left:nth-child(313) {
-webkit-animation-delay: 3.13s; }
.translate:nth-child(313) {
-webkit-animation-delay: 3.13s; }
.left:nth-child(314) {
-webkit-animation-delay: 3.14s; }
.translate:nth-child(314) {
-webkit-animation-delay: 3.14s; }
.left:nth-child(315) {
-webkit-animation-delay: 3.15s; }
.translate:nth-child(315) {
-webkit-animation-delay: 3.15s; }
.left:nth-child(316) {
-webkit-animation-delay: 3.16s; }
.translate:nth-child(316) {
-webkit-animation-delay: 3.16s; }
.left:nth-child(317) {
-webkit-animation-delay: 3.17s; }
.translate:nth-child(317) {
-webkit-animation-delay: 3.17s; }
.left:nth-child(318) {
-webkit-animation-delay: 3.18s; }
.translate:nth-child(318) {
-webkit-animation-delay: 3.18s; }
.left:nth-child(319) {
-webkit-animation-delay: 3.19s; }
.translate:nth-child(319) {
-webkit-animation-delay: 3.19s; }
.left:nth-child(320) {
-webkit-animation-delay: 3.2s; }
.translate:nth-child(320) {
-webkit-animation-delay: 3.2s; }
.left:nth-child(321) {
-webkit-animation-delay: 3.21s; }
.translate:nth-child(321) {
-webkit-animation-delay: 3.21s; }
.left:nth-child(322) {
-webkit-animation-delay: 3.22s; }
.translate:nth-child(322) {
-webkit-animation-delay: 3.22s; }
.left:nth-child(323) {
-webkit-animation-delay: 3.23s; }
.translate:nth-child(323) {
-webkit-animation-delay: 3.23s; }
.left:nth-child(324) {
-webkit-animation-delay: 3.24s; }
.translate:nth-child(324) {
-webkit-animation-delay: 3.24s; }
.left:nth-child(325) {
-webkit-animation-delay: 3.25s; }
.translate:nth-child(325) {
-webkit-animation-delay: 3.25s; }
.left:nth-child(326) {
-webkit-animation-delay: 3.26s; }
.translate:nth-child(326) {
-webkit-animation-delay: 3.26s; }
.left:nth-child(327) {
-webkit-animation-delay: 3.27s; }
.translate:nth-child(327) {
-webkit-animation-delay: 3.27s; }
.left:nth-child(328) {
-webkit-animation-delay: 3.28s; }
.translate:nth-child(328) {
-webkit-animation-delay: 3.28s; }
.left:nth-child(329) {
-webkit-animation-delay: 3.29s; }
.translate:nth-child(329) {
-webkit-animation-delay: 3.29s; }
.left:nth-child(330) {
-webkit-animation-delay: 3.3s; }
.translate:nth-child(330) {
-webkit-animation-delay: 3.3s; }
.left:nth-child(331) {
-webkit-animation-delay: 3.31s; }
.translate:nth-child(331) {
-webkit-animation-delay: 3.31s; }
.left:nth-child(332) {
-webkit-animation-delay: 3.32s; }
.translate:nth-child(332) {
-webkit-animation-delay: 3.32s; }
.left:nth-child(333) {
-webkit-animation-delay: 3.33s; }
.translate:nth-child(333) {
-webkit-animation-delay: 3.33s; }
.left:nth-child(334) {
-webkit-animation-delay: 3.34s; }
.translate:nth-child(334) {
-webkit-animation-delay: 3.34s; }
.left:nth-child(335) {
-webkit-animation-delay: 3.35s; }
.translate:nth-child(335) {
-webkit-animation-delay: 3.35s; }
.left:nth-child(336) {
-webkit-animation-delay: 3.36s; }
.translate:nth-child(336) {
-webkit-animation-delay: 3.36s; }
.left:nth-child(337) {
-webkit-animation-delay: 3.37s; }
.translate:nth-child(337) {
-webkit-animation-delay: 3.37s; }
.left:nth-child(338) {
-webkit-animation-delay: 3.38s; }
.translate:nth-child(338) {
-webkit-animation-delay: 3.38s; }
.left:nth-child(339) {
-webkit-animation-delay: 3.39s; }
.translate:nth-child(339) {
-webkit-animation-delay: 3.39s; }
.left:nth-child(340) {
-webkit-animation-delay: 3.4s; }
.translate:nth-child(340) {
-webkit-animation-delay: 3.4s; }
.left:nth-child(341) {
-webkit-animation-delay: 3.41s; }
.translate:nth-child(341) {
-webkit-animation-delay: 3.41s; }
.left:nth-child(342) {
-webkit-animation-delay: 3.42s; }
.translate:nth-child(342) {
-webkit-animation-delay: 3.42s; }
.left:nth-child(343) {
-webkit-animation-delay: 3.43s; }
.translate:nth-child(343) {
-webkit-animation-delay: 3.43s; }
.left:nth-child(344) {
-webkit-animation-delay: 3.44s; }
.translate:nth-child(344) {
-webkit-animation-delay: 3.44s; }
.left:nth-child(345) {
-webkit-animation-delay: 3.45s; }
.translate:nth-child(345) {
-webkit-animation-delay: 3.45s; }
.left:nth-child(346) {
-webkit-animation-delay: 3.46s; }
.translate:nth-child(346) {
-webkit-animation-delay: 3.46s; }
.left:nth-child(347) {
-webkit-animation-delay: 3.47s; }
.translate:nth-child(347) {
-webkit-animation-delay: 3.47s; }
.left:nth-child(348) {
-webkit-animation-delay: 3.48s; }
.translate:nth-child(348) {
-webkit-animation-delay: 3.48s; }
.left:nth-child(349) {
-webkit-animation-delay: 3.49s; }
.translate:nth-child(349) {
-webkit-animation-delay: 3.49s; }
.left:nth-child(350) {
-webkit-animation-delay: 3.5s; }
.translate:nth-child(350) {
-webkit-animation-delay: 3.5s; }
.left:nth-child(351) {
-webkit-animation-delay: 3.51s; }
.translate:nth-child(351) {
-webkit-animation-delay: 3.51s; }
.left:nth-child(352) {
-webkit-animation-delay: 3.52s; }
.translate:nth-child(352) {
-webkit-animation-delay: 3.52s; }
.left:nth-child(353) {
-webkit-animation-delay: 3.53s; }
.translate:nth-child(353) {
-webkit-animation-delay: 3.53s; }
.left:nth-child(354) {
-webkit-animation-delay: 3.54s; }
.translate:nth-child(354) {
-webkit-animation-delay: 3.54s; }
.left:nth-child(355) {
-webkit-animation-delay: 3.55s; }
.translate:nth-child(355) {
-webkit-animation-delay: 3.55s; }
.left:nth-child(356) {
-webkit-animation-delay: 3.56s; }
.translate:nth-child(356) {
-webkit-animation-delay: 3.56s; }
.left:nth-child(357) {
-webkit-animation-delay: 3.57s; }
.translate:nth-child(357) {
-webkit-animation-delay: 3.57s; }
.left:nth-child(358) {
-webkit-animation-delay: 3.58s; }
.translate:nth-child(358) {
-webkit-animation-delay: 3.58s; }
.left:nth-child(359) {
-webkit-animation-delay: 3.59s; }
.translate:nth-child(359) {
-webkit-animation-delay: 3.59s; }
.left:nth-child(360) {
-webkit-animation-delay: 3.6s; }
.translate:nth-child(360) {
-webkit-animation-delay: 3.6s; }
.left:nth-child(361) {
-webkit-animation-delay: 3.61s; }
.translate:nth-child(361) {
-webkit-animation-delay: 3.61s; }
.left:nth-child(362) {
-webkit-animation-delay: 3.62s; }
.translate:nth-child(362) {
-webkit-animation-delay: 3.62s; }
.left:nth-child(363) {
-webkit-animation-delay: 3.63s; }
.translate:nth-child(363) {
-webkit-animation-delay: 3.63s; }
.left:nth-child(364) {
-webkit-animation-delay: 3.64s; }
.translate:nth-child(364) {
-webkit-animation-delay: 3.64s; }
.left:nth-child(365) {
-webkit-animation-delay: 3.65s; }
.translate:nth-child(365) {
-webkit-animation-delay: 3.65s; }
.left:nth-child(366) {
-webkit-animation-delay: 3.66s; }
.translate:nth-child(366) {
-webkit-animation-delay: 3.66s; }
.left:nth-child(367) {
-webkit-animation-delay: 3.67s; }
.translate:nth-child(367) {
-webkit-animation-delay: 3.67s; }
.left:nth-child(368) {
-webkit-animation-delay: 3.68s; }
.translate:nth-child(368) {
-webkit-animation-delay: 3.68s; }
.left:nth-child(369) {
-webkit-animation-delay: 3.69s; }
.translate:nth-child(369) {
-webkit-animation-delay: 3.69s; }
.left:nth-child(370) {
-webkit-animation-delay: 3.7s; }
.translate:nth-child(370) {
-webkit-animation-delay: 3.7s; }
.left:nth-child(371) {
-webkit-animation-delay: 3.71s; }
.translate:nth-child(371) {
-webkit-animation-delay: 3.71s; }
.left:nth-child(372) {
-webkit-animation-delay: 3.72s; }
.translate:nth-child(372) {
-webkit-animation-delay: 3.72s; }
.left:nth-child(373) {
-webkit-animation-delay: 3.73s; }
.translate:nth-child(373) {
-webkit-animation-delay: 3.73s; }
.left:nth-child(374) {
-webkit-animation-delay: 3.74s; }
.translate:nth-child(374) {
-webkit-animation-delay: 3.74s; }
.left:nth-child(375) {
-webkit-animation-delay: 3.75s; }
.translate:nth-child(375) {
-webkit-animation-delay: 3.75s; }
.left:nth-child(376) {
-webkit-animation-delay: 3.76s; }
.translate:nth-child(376) {
-webkit-animation-delay: 3.76s; }
.left:nth-child(377) {
-webkit-animation-delay: 3.77s; }
.translate:nth-child(377) {
-webkit-animation-delay: 3.77s; }
.left:nth-child(378) {
-webkit-animation-delay: 3.78s; }
.translate:nth-child(378) {
-webkit-animation-delay: 3.78s; }
.left:nth-child(379) {
-webkit-animation-delay: 3.79s; }
.translate:nth-child(379) {
-webkit-animation-delay: 3.79s; }
.left:nth-child(380) {
-webkit-animation-delay: 3.8s; }
.translate:nth-child(380) {
-webkit-animation-delay: 3.8s; }
.left:nth-child(381) {
-webkit-animation-delay: 3.81s; }
.translate:nth-child(381) {
-webkit-animation-delay: 3.81s; }
.left:nth-child(382) {
-webkit-animation-delay: 3.82s; }
.translate:nth-child(382) {
-webkit-animation-delay: 3.82s; }
.left:nth-child(383) {
-webkit-animation-delay: 3.83s; }
.translate:nth-child(383) {
-webkit-animation-delay: 3.83s; }
.left:nth-child(384) {
-webkit-animation-delay: 3.84s; }
.translate:nth-child(384) {
-webkit-animation-delay: 3.84s; }
.left:nth-child(385) {
-webkit-animation-delay: 3.85s; }
.translate:nth-child(385) {
-webkit-animation-delay: 3.85s; }
.left:nth-child(386) {
-webkit-animation-delay: 3.86s; }
.translate:nth-child(386) {
-webkit-animation-delay: 3.86s; }
.left:nth-child(387) {
-webkit-animation-delay: 3.87s; }
.translate:nth-child(387) {
-webkit-animation-delay: 3.87s; }
.left:nth-child(388) {
-webkit-animation-delay: 3.88s; }
.translate:nth-child(388) {
-webkit-animation-delay: 3.88s; }
.left:nth-child(389) {
-webkit-animation-delay: 3.89s; }
.translate:nth-child(389) {
-webkit-animation-delay: 3.89s; }
.left:nth-child(390) {
-webkit-animation-delay: 3.9s; }
.translate:nth-child(390) {
-webkit-animation-delay: 3.9s; }
.left:nth-child(391) {
-webkit-animation-delay: 3.91s; }
.translate:nth-child(391) {
-webkit-animation-delay: 3.91s; }
.left:nth-child(392) {
-webkit-animation-delay: 3.92s; }
.translate:nth-child(392) {
-webkit-animation-delay: 3.92s; }
.left:nth-child(393) {
-webkit-animation-delay: 3.93s; }
.translate:nth-child(393) {
-webkit-animation-delay: 3.93s; }
.left:nth-child(394) {
-webkit-animation-delay: 3.94s; }
.translate:nth-child(394) {
-webkit-animation-delay: 3.94s; }
.left:nth-child(395) {
-webkit-animation-delay: 3.95s; }
.translate:nth-child(395) {
-webkit-animation-delay: 3.95s; }
.left:nth-child(396) {
-webkit-animation-delay: 3.96s; }
.translate:nth-child(396) {
-webkit-animation-delay: 3.96s; }
.left:nth-child(397) {
-webkit-animation-delay: 3.97s; }
.translate:nth-child(397) {
-webkit-animation-delay: 3.97s; }
.left:nth-child(398) {
-webkit-animation-delay: 3.98s; }
.translate:nth-child(398) {
-webkit-animation-delay: 3.98s; }
.left:nth-child(399) {
-webkit-animation-delay: 3.99s; }
.translate:nth-child(399) {
-webkit-animation-delay: 3.99s; }
.left:nth-child(400) {
-webkit-animation-delay: 4s; }
.translate:nth-child(400) {
-webkit-animation-delay: 4s; }
.left:nth-child(401) {
-webkit-animation-delay: 4.01s; }
.translate:nth-child(401) {
-webkit-animation-delay: 4.01s; }
.left:nth-child(402) {
-webkit-animation-delay: 4.02s; }
.translate:nth-child(402) {
-webkit-animation-delay: 4.02s; }
.left:nth-child(403) {
-webkit-animation-delay: 4.03s; }
.translate:nth-child(403) {
-webkit-animation-delay: 4.03s; }
.left:nth-child(404) {
-webkit-animation-delay: 4.04s; }
.translate:nth-child(404) {
-webkit-animation-delay: 4.04s; }
.left:nth-child(405) {
-webkit-animation-delay: 4.05s; }
.translate:nth-child(405) {
-webkit-animation-delay: 4.05s; }
.left:nth-child(406) {
-webkit-animation-delay: 4.06s; }
.translate:nth-child(406) {
-webkit-animation-delay: 4.06s; }
.left:nth-child(407) {
-webkit-animation-delay: 4.07s; }
.translate:nth-child(407) {
-webkit-animation-delay: 4.07s; }
.left:nth-child(408) {
-webkit-animation-delay: 4.08s; }
.translate:nth-child(408) {
-webkit-animation-delay: 4.08s; }
.left:nth-child(409) {
-webkit-animation-delay: 4.09s; }
.translate:nth-child(409) {
-webkit-animation-delay: 4.09s; }
.left:nth-child(410) {
-webkit-animation-delay: 4.1s; }
.translate:nth-child(410) {
-webkit-animation-delay: 4.1s; }
.left:nth-child(411) {
-webkit-animation-delay: 4.11s; }
.translate:nth-child(411) {
-webkit-animation-delay: 4.11s; }
.left:nth-child(412) {
-webkit-animation-delay: 4.12s; }
.translate:nth-child(412) {
-webkit-animation-delay: 4.12s; }
.left:nth-child(413) {
-webkit-animation-delay: 4.13s; }
.translate:nth-child(413) {
-webkit-animation-delay: 4.13s; }
.left:nth-child(414) {
-webkit-animation-delay: 4.14s; }
.translate:nth-child(414) {
-webkit-animation-delay: 4.14s; }
.left:nth-child(415) {
-webkit-animation-delay: 4.15s; }
.translate:nth-child(415) {
-webkit-animation-delay: 4.15s; }
.left:nth-child(416) {
-webkit-animation-delay: 4.16s; }
.translate:nth-child(416) {
-webkit-animation-delay: 4.16s; }
.left:nth-child(417) {
-webkit-animation-delay: 4.17s; }
.translate:nth-child(417) {
-webkit-animation-delay: 4.17s; }
.left:nth-child(418) {
-webkit-animation-delay: 4.18s; }
.translate:nth-child(418) {
-webkit-animation-delay: 4.18s; }
.left:nth-child(419) {
-webkit-animation-delay: 4.19s; }
.translate:nth-child(419) {
-webkit-animation-delay: 4.19s; }
.left:nth-child(420) {
-webkit-animation-delay: 4.2s; }
.translate:nth-child(420) {
-webkit-animation-delay: 4.2s; }
.left:nth-child(421) {
-webkit-animation-delay: 4.21s; }
.translate:nth-child(421) {
-webkit-animation-delay: 4.21s; }
.left:nth-child(422) {
-webkit-animation-delay: 4.22s; }
.translate:nth-child(422) {
-webkit-animation-delay: 4.22s; }
.left:nth-child(423) {
-webkit-animation-delay: 4.23s; }
.translate:nth-child(423) {
-webkit-animation-delay: 4.23s; }
.left:nth-child(424) {
-webkit-animation-delay: 4.24s; }
.translate:nth-child(424) {
-webkit-animation-delay: 4.24s; }
.left:nth-child(425) {
-webkit-animation-delay: 4.25s; }
.translate:nth-child(425) {
-webkit-animation-delay: 4.25s; }
.left:nth-child(426) {
-webkit-animation-delay: 4.26s; }
.translate:nth-child(426) {
-webkit-animation-delay: 4.26s; }
.left:nth-child(427) {
-webkit-animation-delay: 4.27s; }
.translate:nth-child(427) {
-webkit-animation-delay: 4.27s; }
.left:nth-child(428) {
-webkit-animation-delay: 4.28s; }
.translate:nth-child(428) {
-webkit-animation-delay: 4.28s; }
.left:nth-child(429) {
-webkit-animation-delay: 4.29s; }
.translate:nth-child(429) {
-webkit-animation-delay: 4.29s; }
.left:nth-child(430) {
-webkit-animation-delay: 4.3s; }
.translate:nth-child(430) {
-webkit-animation-delay: 4.3s; }
.left:nth-child(431) {
-webkit-animation-delay: 4.31s; }
.translate:nth-child(431) {
-webkit-animation-delay: 4.31s; }
.left:nth-child(432) {
-webkit-animation-delay: 4.32s; }
.translate:nth-child(432) {
-webkit-animation-delay: 4.32s; }
.left:nth-child(433) {
-webkit-animation-delay: 4.33s; }
.translate:nth-child(433) {
-webkit-animation-delay: 4.33s; }
.left:nth-child(434) {
-webkit-animation-delay: 4.34s; }
.translate:nth-child(434) {
-webkit-animation-delay: 4.34s; }
.left:nth-child(435) {
-webkit-animation-delay: 4.35s; }
.translate:nth-child(435) {
-webkit-animation-delay: 4.35s; }
.left:nth-child(436) {
-webkit-animation-delay: 4.36s; }
.translate:nth-child(436) {
-webkit-animation-delay: 4.36s; }
.left:nth-child(437) {
-webkit-animation-delay: 4.37s; }
.translate:nth-child(437) {
-webkit-animation-delay: 4.37s; }
.left:nth-child(438) {
-webkit-animation-delay: 4.38s; }
.translate:nth-child(438) {
-webkit-animation-delay: 4.38s; }
.left:nth-child(439) {
-webkit-animation-delay: 4.39s; }
.translate:nth-child(439) {
-webkit-animation-delay: 4.39s; }
.left:nth-child(440) {
-webkit-animation-delay: 4.4s; }
.translate:nth-child(440) {
-webkit-animation-delay: 4.4s; }
.left:nth-child(441) {
-webkit-animation-delay: 4.41s; }
.translate:nth-child(441) {
-webkit-animation-delay: 4.41s; }
.left:nth-child(442) {
-webkit-animation-delay: 4.42s; }
.translate:nth-child(442) {
-webkit-animation-delay: 4.42s; }
.left:nth-child(443) {
-webkit-animation-delay: 4.43s; }
.translate:nth-child(443) {
-webkit-animation-delay: 4.43s; }
.left:nth-child(444) {
-webkit-animation-delay: 4.44s; }
.translate:nth-child(444) {
-webkit-animation-delay: 4.44s; }
.left:nth-child(445) {
-webkit-animation-delay: 4.45s; }
.translate:nth-child(445) {
-webkit-animation-delay: 4.45s; }
.left:nth-child(446) {
-webkit-animation-delay: 4.46s; }
.translate:nth-child(446) {
-webkit-animation-delay: 4.46s; }
.left:nth-child(447) {
-webkit-animation-delay: 4.47s; }
.translate:nth-child(447) {
-webkit-animation-delay: 4.47s; }
.left:nth-child(448) {
-webkit-animation-delay: 4.48s; }
.translate:nth-child(448) {
-webkit-animation-delay: 4.48s; }
.left:nth-child(449) {
-webkit-animation-delay: 4.49s; }
.translate:nth-child(449) {
-webkit-animation-delay: 4.49s; }
.left:nth-child(450) {
-webkit-animation-delay: 4.5s; }
.translate:nth-child(450) {
-webkit-animation-delay: 4.5s; }
.left:nth-child(451) {
-webkit-animation-delay: 4.51s; }
.translate:nth-child(451) {
-webkit-animation-delay: 4.51s; }
.left:nth-child(452) {
-webkit-animation-delay: 4.52s; }
.translate:nth-child(452) {
-webkit-animation-delay: 4.52s; }
.left:nth-child(453) {
-webkit-animation-delay: 4.53s; }
.translate:nth-child(453) {
-webkit-animation-delay: 4.53s; }
.left:nth-child(454) {
-webkit-animation-delay: 4.54s; }
.translate:nth-child(454) {
-webkit-animation-delay: 4.54s; }
.left:nth-child(455) {
-webkit-animation-delay: 4.55s; }
.translate:nth-child(455) {
-webkit-animation-delay: 4.55s; }
.left:nth-child(456) {
-webkit-animation-delay: 4.56s; }
.translate:nth-child(456) {
-webkit-animation-delay: 4.56s; }
.left:nth-child(457) {
-webkit-animation-delay: 4.57s; }
.translate:nth-child(457) {
-webkit-animation-delay: 4.57s; }
.left:nth-child(458) {
-webkit-animation-delay: 4.58s; }
.translate:nth-child(458) {
-webkit-animation-delay: 4.58s; }
.left:nth-child(459) {
-webkit-animation-delay: 4.59s; }
.translate:nth-child(459) {
-webkit-animation-delay: 4.59s; }
.left:nth-child(460) {
-webkit-animation-delay: 4.6s; }
.translate:nth-child(460) {
-webkit-animation-delay: 4.6s; }
.left:nth-child(461) {
-webkit-animation-delay: 4.61s; }
.translate:nth-child(461) {
-webkit-animation-delay: 4.61s; }
.left:nth-child(462) {
-webkit-animation-delay: 4.62s; }
.translate:nth-child(462) {
-webkit-animation-delay: 4.62s; }
.left:nth-child(463) {
-webkit-animation-delay: 4.63s; }
.translate:nth-child(463) {
-webkit-animation-delay: 4.63s; }
.left:nth-child(464) {
-webkit-animation-delay: 4.64s; }
.translate:nth-child(464) {
-webkit-animation-delay: 4.64s; }
.left:nth-child(465) {
-webkit-animation-delay: 4.65s; }
.translate:nth-child(465) {
-webkit-animation-delay: 4.65s; }
.left:nth-child(466) {
-webkit-animation-delay: 4.66s; }
.translate:nth-child(466) {
-webkit-animation-delay: 4.66s; }
.left:nth-child(467) {
-webkit-animation-delay: 4.67s; }
.translate:nth-child(467) {
-webkit-animation-delay: 4.67s; }
.left:nth-child(468) {
-webkit-animation-delay: 4.68s; }
.translate:nth-child(468) {
-webkit-animation-delay: 4.68s; }
.left:nth-child(469) {
-webkit-animation-delay: 4.69s; }
.translate:nth-child(469) {
-webkit-animation-delay: 4.69s; }
.left:nth-child(470) {
-webkit-animation-delay: 4.7s; }
.translate:nth-child(470) {
-webkit-animation-delay: 4.7s; }
.left:nth-child(471) {
-webkit-animation-delay: 4.71s; }
.translate:nth-child(471) {
-webkit-animation-delay: 4.71s; }
.left:nth-child(472) {
-webkit-animation-delay: 4.72s; }
.translate:nth-child(472) {
-webkit-animation-delay: 4.72s; }
.left:nth-child(473) {
-webkit-animation-delay: 4.73s; }
.translate:nth-child(473) {
-webkit-animation-delay: 4.73s; }
.left:nth-child(474) {
-webkit-animation-delay: 4.74s; }
.translate:nth-child(474) {
-webkit-animation-delay: 4.74s; }
.left:nth-child(475) {
-webkit-animation-delay: 4.75s; }
.translate:nth-child(475) {
-webkit-animation-delay: 4.75s; }
.left:nth-child(476) {
-webkit-animation-delay: 4.76s; }
.translate:nth-child(476) {
-webkit-animation-delay: 4.76s; }
.left:nth-child(477) {
-webkit-animation-delay: 4.77s; }
.translate:nth-child(477) {
-webkit-animation-delay: 4.77s; }
.left:nth-child(478) {
-webkit-animation-delay: 4.78s; }
.translate:nth-child(478) {
-webkit-animation-delay: 4.78s; }
.left:nth-child(479) {
-webkit-animation-delay: 4.79s; }
.translate:nth-child(479) {
-webkit-animation-delay: 4.79s; }
.left:nth-child(480) {
-webkit-animation-delay: 4.8s; }
.translate:nth-child(480) {
-webkit-animation-delay: 4.8s; }
.left:nth-child(481) {
-webkit-animation-delay: 4.81s; }
.translate:nth-child(481) {
-webkit-animation-delay: 4.81s; }
.left:nth-child(482) {
-webkit-animation-delay: 4.82s; }
.translate:nth-child(482) {
-webkit-animation-delay: 4.82s; }
.left:nth-child(483) {
-webkit-animation-delay: 4.83s; }
.translate:nth-child(483) {
-webkit-animation-delay: 4.83s; }
.left:nth-child(484) {
-webkit-animation-delay: 4.84s; }
.translate:nth-child(484) {
-webkit-animation-delay: 4.84s; }
.left:nth-child(485) {
-webkit-animation-delay: 4.85s; }
.translate:nth-child(485) {
-webkit-animation-delay: 4.85s; }
.left:nth-child(486) {
-webkit-animation-delay: 4.86s; }
.translate:nth-child(486) {
-webkit-animation-delay: 4.86s; }
.left:nth-child(487) {
-webkit-animation-delay: 4.87s; }
.translate:nth-child(487) {
-webkit-animation-delay: 4.87s; }
.left:nth-child(488) {
-webkit-animation-delay: 4.88s; }
.translate:nth-child(488) {
-webkit-animation-delay: 4.88s; }
.left:nth-child(489) {
-webkit-animation-delay: 4.89s; }
.translate:nth-child(489) {
-webkit-animation-delay: 4.89s; }
.left:nth-child(490) {
-webkit-animation-delay: 4.9s; }
.translate:nth-child(490) {
-webkit-animation-delay: 4.9s; }
.left:nth-child(491) {
-webkit-animation-delay: 4.91s; }
.translate:nth-child(491) {
-webkit-animation-delay: 4.91s; }
.left:nth-child(492) {
-webkit-animation-delay: 4.92s; }
.translate:nth-child(492) {
-webkit-animation-delay: 4.92s; }
.left:nth-child(493) {
-webkit-animation-delay: 4.93s; }
.translate:nth-child(493) {
-webkit-animation-delay: 4.93s; }
.left:nth-child(494) {
-webkit-animation-delay: 4.94s; }
.translate:nth-child(494) {
-webkit-animation-delay: 4.94s; }
.left:nth-child(495) {
-webkit-animation-delay: 4.95s; }
.translate:nth-child(495) {
-webkit-animation-delay: 4.95s; }
.left:nth-child(496) {
-webkit-animation-delay: 4.96s; }
.translate:nth-child(496) {
-webkit-animation-delay: 4.96s; }
.left:nth-child(497) {
-webkit-animation-delay: 4.97s; }
.translate:nth-child(497) {
-webkit-animation-delay: 4.97s; }
.left:nth-child(498) {
-webkit-animation-delay: 4.98s; }
.translate:nth-child(498) {
-webkit-animation-delay: 4.98s; }
.left:nth-child(499) {
-webkit-animation-delay: 4.99s; }
.translate:nth-child(499) {
-webkit-animation-delay: 4.99s; }
.left:nth-child(500) {
-webkit-animation-delay: 5s; }
.translate:nth-child(500) {
-webkit-animation-delay: 5s; }
.reveal .emojicon {
font-family: sans-serif;
text-shadow: none; }
.animated-gradient {
background: linear-gradient(135deg, #2980b9 0%, #9B59B6 100%);
height: 100%;
width: 100%;
top: 0;
left: 0;
position: absolute; }
.reveal pre {
box-shadow: none; }
.reveal .stack {
position: relative;
min-height: 400px; }
.reveal .stack__item {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.js-random-anim span {
display: inline-block; }
.img--expandable {
background: white !important; }
.img--expandable:hover {
transform: scale(1.5) translateY(-25%); }
body {
background: linear-gradient(135deg, #2980b9 0%, #9B59B6 100%); }
.thanks path {
fill: none;
stroke-width: 3;
stroke: white;
stroke-linejoin: round; }
.thanks .draw {
stroke-dashoffset: 0; }
.t__stick {
stroke-dasharray: 140px;
stroke-dashoffset: 140px; }
.t__hat {
stroke-dasharray: 210px;
stroke-dashoffset: 210px; }
.hanks {
stroke-dasharray: 1300px;
stroke-dashoffset: 1300px; }
.expl__dot {
stroke-dasharray: 20px;
stroke-dashoffset: 20px; }
.expl__stroke {
stroke-dasharray: 100px;
stroke-dashoffset: 100px; }
.underline {
stroke-dasharray: 370px;
stroke-dashoffset: 370px; }
/*# sourceMappingURL=pres.css.map */ | 0.39129 | 0.061171 |
article, aside, audio, canvas, command, datalist, details, embed, figcaption, figure, footer, header, hgroup, keygen, meter, nav, output, progress, section, source, video {display:block}
mark, rp, rt, ruby, summary, time {display:inline }
/* Left & Right alignment */
.left {float:left}
.right {float:right}
.wrapper {width:100%;overflow:hidden}
/* Global properties ======================================================== */
body {background:#000;border:0;font:12px Arial, Helvetica, sans-serif;color:#72716f;line-height:20px;min-width:980px}
.ic, .ic a {border:0;float:right;background:#fff;color:#f00;width:50%;line-height:10px;font-size:10px;margin:-220% 0 0 0;overflow:hidden;padding:0}
.css3 {border-radius:8px;-moz-border-radius:8px;-webkit-border-radius:8px;box-shadow:0 0 4px rgba(0, 0, 0, .4);-moz-box-shadow:0 0 4px rgba(0, 0, 0, .4);-webkit-box-shadow:0 0 4px rgba(0, 0, 0, .4);position:relative}
/* Global Structure ============================================================= */
.main {margin:0 auto;width:960px;padding:0 6px}
.bg1 {background:url(../images/bg.gif) top center repeat}
.bg2 {background:url(../images/bg_top.png) top center no-repeat}
.box {background:#12110f;box-shadow:0 0 6px #000;-moz-box-shadow:0 0 6px #000;-webkit-box-shadow:0 0 6px #000;position:relative}
/* ============================= main layout ====================== */
a {color:#72716f;text-decoration:underline;outline:none}
a:hover {text-decoration:none}
h1 {padding:40px 0 0 38px;float:left}
h2 {font-size:21px;line-height:1.2em;padding:6px 0 15px 0;color:#fff;letter-spacing:-1px}
h2 img {margin-right:15px;float:left}
p {padding-bottom:20px}
/* ============================= header ====================== */
header {height:116px}
#logo {display:block;text-indent:-9999px;background:url(../images/logo.png) 0 0 no-repeat;width:240px;height:46px}
.department {float:right;padding:37px 35px 0 0;color:#72716f;text-align:right}
.department span {color:#fff}
#menu {background:#fff;padding:10px 2px;height:39px;margin-bottom:10px}
#menu > li {border-right:1px solid #f2f2f2;float:left}
#menu .last {border:0}
#menu > li > a {display:block;padding:0 62px;font-size:16px;color:#12110f;text-decoration:none;line-height:39px}
#menu > li > a:hover, #menu > .active > a {color:#f3b21d}
/* ============================= content ====================== */
#content {}
.box1 {background:#fff;padding:10px}
.box1 h2 {color:#12110f;padding:7px 0 14px 0}
.button1, .button2 {display:inline-block;background:#fff;padding:0 25px;color:#12110f;line-height:29px;position:relative;border-radius:1px;-moz-border-radius:1px;-webkit-border-radius:1px;text-decoration:none}
.button2 {background:#12110f;color:#fff;padding:0 22px}
.button1:hover {background:#2a2824;color:#72716f}
.button2:hover {background:#f3b21d}
/* =========== kwiks slider ========= */
.kwicks-wrapper {width:640px;overflow:hidden}
.kwicks {/* recommended styles for kwicks ul container */list-style:none;position:relative;margin:0;padding:0 !important;overflow:hidden;height:414px;background:none}
.kwicks li {/* these are required, but the values are up to you (must be pixel) */width:160px;height:414px;/*do not change these */display:block;overflow:hidden;padding:0 !important; /* if you need padding, do so with an inner div (or implement your own box-model hack) */cursor:pointer;background:none !important;}
.kwicks.horizontal li {/* This is optional and will be disregarded by the script. However, it should be provided for non-JS enabled browsers. */margin-right:0;/*Set to same as spacing option. */ float:left}
.pad_bot1 {padding-bottom:10px}
.pad_bot2 {padding-bottom:24px}
.pad_bot3 {padding-bottom:14px}
.pad_left1 {padding-left:70px}
.pad_left2 {padding-left:80px}
.pad {padding:20px 0 39px 40px}
.box1 .pad {padding:20px 0 15px 30px}
.marg_right1 {margin-right:20px}
.line1 {background:url(../images/line_vert1.gif) 280px 0 repeat-y}
.line2 {background:url(../images/line_vert1.gif) 600px 0 repeat-y;padding-bottom:7px}
.line3 {background:url(../images/line_vert2.gif) 600px 0 repeat-y;padding-bottom:11px}
.color1 {color:#f3b21d}
.color2 {color:#fff}
.color3 {color:#000}
figure {padding-top:4px}
.list1 {}
.list1 li {line-height:24px}
.list1 a {color:#f3b21d;padding-left:15px;background:url(../images/marker_1.gif) 0 5px no-repeat}
.list2 {border-top:1px solid #f2f2f2;margin-top:-2px;padding-bottom:21px}
.list2 li {line-height:23px;border-bottom:1px solid #f2f2f2;padding:0 6px;color:#000}
.list2 span {float:right}
/* ============================= footer ====================== */
footer {padding:47px 30px 47px 40px;height:44px}
footer a {}
footer a:hover {}
#icons {padding-top:5px}
#icons li {float:left;padding-right:11px}
#footer_menu {padding-top:4px}
#footer_menu li {padding-right:26px;background:url(../images/footer_menu_line.gif) right 5px no-repeat;margin-right:25px;float:left}
#footer_menu .last {padding-right:0;margin-right:0;background:none}
#footer_menu .active a {text-decoration:none}
/* Tooltips */
.aToolTip {background:#2a2824;margin:0;padding:2px 10px 3px;font-size:11px;line-height:1.2em;position:absolute}
.aToolTip .aToolTipContent {position:relative;margin:0;padding:0}
/* ============================= forms ============================= */
#ContactForm {padding:0 10px 0 0;margin-top:-2px}
#ContactForm .wrapper {overflow:inherit;min-height:30px;line-height:24px}
#ContactForm .textarea_box {min-height:216px}
#ContactForm a {margin-left:10px;float:right;padding:0 20px}
#ContactForm .input {margin:0;float:right;width:482px;height:16px;background:#fff;border:1px solid #f2f2f2;padding:3px 5px;color:#72716f;font:12px Arial, Helvetica, sans-serif}
#ContactForm textarea {overflow:auto;margin:0;float:right;width:482px;height:198px;background:#fff;border:1px solid #f2f2f2;padding:3px 5px;color:#72716f;font:12px Arial, Helvetica, sans-serif}
#form1 {width:240px;float:right;padding:30px;background:#12110f}
#form1 h2 {padding:0 0 22px 0;margin-top:-4px;color:#fff}
#form1 .right {width:140px}
#form1 .row {height:30px;line-height:22px}
#form1 .row_textarea {height:102px;line-height:22px}
#form1 .input {font:12px Arial, Helvetica, sans-serif;color:#72716f;background:none;height:15px;padding:3px 5px;width:128px;margin:0}
#form1 textarea {font:12px Arial, Helvetica, sans-serif;color:#72716f;background:none;height:54px;padding:3px 5px;width:222px;margin:0;overflow:auto}
/* -------------
* Hidden - used to hide the original form elements
* ------------- */
.jqTransformHidden {display:none}
/* -------------
* Inputs
* ------------- */
.jqTransformInputWrapper {border:1px solid #2a2824;position:relative;border-radius:1px;-moz-border-radius:1px;-webkit-border-radius:1px;float:right;height:21px;width:138px !important}
.jqTransformTextarea {border:1px solid #2a2824;position:relative;border-radius:1px;-moz-border-radius:1px;-webkit-border-radius:1px;height:64px;width:100%;margin-top:4px}
/* -------------
* Selects
* ------------- */
.jqTransformSelectWrapper {position:relative;float:right}
.jqTransformSelectWrapper div {font:12px Arial, Helvetica, sans-serif;color:#72716f;display:block;position:relative;height:21px;line-height:21px;overflow:hidden;cursor:pointer;border:1px solid #2a2824;background:none;border-radius:1px;-moz-border-radius:1px;-webkit-border-radius:1px}
.jqTransformSelectWrapper div span {padding:0 0 0 5px;display:block}
a.jqTransformSelectOpen {display:block;position:absolute;top:1px;right:1px;width:19px;height:19px;background:url(../images/select.gif) no-repeat}
.jqTransformSelectWrapper ul {position:absolute;top:24px;left:0;background:#12110f;border:1px solid #2a2824;border-radius:1px;-moz-border-radius:1px;-webkit-border-radius:1px;display:none;z-index:10; padding:5px 0;height:50px;overflow:auto}
.jqTransformSelectWrapper ul a {display:block;padding:0 5px;text-decoration:none;line-height:20px}
.jqTransformSelectWrapper ul a.selected {color:#fff}
.jqTransformSelectWrapper ul a:hover, .jqTransformSelectWrapper ul a.selected:hover {color:#fff;background:#2a2824}
#form1 .select1 .jqTransformSelectWrapper div, #form1 .select1 .jqTransformSelectWrapper ul {width:138px !important}
#form1 .select2 .jqTransformSelectWrapper div, #form1 .select2 .jqTransformSelectWrapper ul {width:42px !important}
#form1 .select2 {float:right;width:44px;margin-left:4px}
#form1 .button1 {float:right;margin-left:4px;padding:0 19px} | hotel/WebContent/css/style.css | article, aside, audio, canvas, command, datalist, details, embed, figcaption, figure, footer, header, hgroup, keygen, meter, nav, output, progress, section, source, video {display:block}
mark, rp, rt, ruby, summary, time {display:inline }
/* Left & Right alignment */
.left {float:left}
.right {float:right}
.wrapper {width:100%;overflow:hidden}
/* Global properties ======================================================== */
body {background:#000;border:0;font:12px Arial, Helvetica, sans-serif;color:#72716f;line-height:20px;min-width:980px}
.ic, .ic a {border:0;float:right;background:#fff;color:#f00;width:50%;line-height:10px;font-size:10px;margin:-220% 0 0 0;overflow:hidden;padding:0}
.css3 {border-radius:8px;-moz-border-radius:8px;-webkit-border-radius:8px;box-shadow:0 0 4px rgba(0, 0, 0, .4);-moz-box-shadow:0 0 4px rgba(0, 0, 0, .4);-webkit-box-shadow:0 0 4px rgba(0, 0, 0, .4);position:relative}
/* Global Structure ============================================================= */
.main {margin:0 auto;width:960px;padding:0 6px}
.bg1 {background:url(../images/bg.gif) top center repeat}
.bg2 {background:url(../images/bg_top.png) top center no-repeat}
.box {background:#12110f;box-shadow:0 0 6px #000;-moz-box-shadow:0 0 6px #000;-webkit-box-shadow:0 0 6px #000;position:relative}
/* ============================= main layout ====================== */
a {color:#72716f;text-decoration:underline;outline:none}
a:hover {text-decoration:none}
h1 {padding:40px 0 0 38px;float:left}
h2 {font-size:21px;line-height:1.2em;padding:6px 0 15px 0;color:#fff;letter-spacing:-1px}
h2 img {margin-right:15px;float:left}
p {padding-bottom:20px}
/* ============================= header ====================== */
header {height:116px}
#logo {display:block;text-indent:-9999px;background:url(../images/logo.png) 0 0 no-repeat;width:240px;height:46px}
.department {float:right;padding:37px 35px 0 0;color:#72716f;text-align:right}
.department span {color:#fff}
#menu {background:#fff;padding:10px 2px;height:39px;margin-bottom:10px}
#menu > li {border-right:1px solid #f2f2f2;float:left}
#menu .last {border:0}
#menu > li > a {display:block;padding:0 62px;font-size:16px;color:#12110f;text-decoration:none;line-height:39px}
#menu > li > a:hover, #menu > .active > a {color:#f3b21d}
/* ============================= content ====================== */
#content {}
.box1 {background:#fff;padding:10px}
.box1 h2 {color:#12110f;padding:7px 0 14px 0}
.button1, .button2 {display:inline-block;background:#fff;padding:0 25px;color:#12110f;line-height:29px;position:relative;border-radius:1px;-moz-border-radius:1px;-webkit-border-radius:1px;text-decoration:none}
.button2 {background:#12110f;color:#fff;padding:0 22px}
.button1:hover {background:#2a2824;color:#72716f}
.button2:hover {background:#f3b21d}
/* =========== kwiks slider ========= */
.kwicks-wrapper {width:640px;overflow:hidden}
.kwicks {/* recommended styles for kwicks ul container */list-style:none;position:relative;margin:0;padding:0 !important;overflow:hidden;height:414px;background:none}
.kwicks li {/* these are required, but the values are up to you (must be pixel) */width:160px;height:414px;/*do not change these */display:block;overflow:hidden;padding:0 !important; /* if you need padding, do so with an inner div (or implement your own box-model hack) */cursor:pointer;background:none !important;}
.kwicks.horizontal li {/* This is optional and will be disregarded by the script. However, it should be provided for non-JS enabled browsers. */margin-right:0;/*Set to same as spacing option. */ float:left}
.pad_bot1 {padding-bottom:10px}
.pad_bot2 {padding-bottom:24px}
.pad_bot3 {padding-bottom:14px}
.pad_left1 {padding-left:70px}
.pad_left2 {padding-left:80px}
.pad {padding:20px 0 39px 40px}
.box1 .pad {padding:20px 0 15px 30px}
.marg_right1 {margin-right:20px}
.line1 {background:url(../images/line_vert1.gif) 280px 0 repeat-y}
.line2 {background:url(../images/line_vert1.gif) 600px 0 repeat-y;padding-bottom:7px}
.line3 {background:url(../images/line_vert2.gif) 600px 0 repeat-y;padding-bottom:11px}
.color1 {color:#f3b21d}
.color2 {color:#fff}
.color3 {color:#000}
figure {padding-top:4px}
.list1 {}
.list1 li {line-height:24px}
.list1 a {color:#f3b21d;padding-left:15px;background:url(../images/marker_1.gif) 0 5px no-repeat}
.list2 {border-top:1px solid #f2f2f2;margin-top:-2px;padding-bottom:21px}
.list2 li {line-height:23px;border-bottom:1px solid #f2f2f2;padding:0 6px;color:#000}
.list2 span {float:right}
/* ============================= footer ====================== */
footer {padding:47px 30px 47px 40px;height:44px}
footer a {}
footer a:hover {}
#icons {padding-top:5px}
#icons li {float:left;padding-right:11px}
#footer_menu {padding-top:4px}
#footer_menu li {padding-right:26px;background:url(../images/footer_menu_line.gif) right 5px no-repeat;margin-right:25px;float:left}
#footer_menu .last {padding-right:0;margin-right:0;background:none}
#footer_menu .active a {text-decoration:none}
/* Tooltips */
.aToolTip {background:#2a2824;margin:0;padding:2px 10px 3px;font-size:11px;line-height:1.2em;position:absolute}
.aToolTip .aToolTipContent {position:relative;margin:0;padding:0}
/* ============================= forms ============================= */
#ContactForm {padding:0 10px 0 0;margin-top:-2px}
#ContactForm .wrapper {overflow:inherit;min-height:30px;line-height:24px}
#ContactForm .textarea_box {min-height:216px}
#ContactForm a {margin-left:10px;float:right;padding:0 20px}
#ContactForm .input {margin:0;float:right;width:482px;height:16px;background:#fff;border:1px solid #f2f2f2;padding:3px 5px;color:#72716f;font:12px Arial, Helvetica, sans-serif}
#ContactForm textarea {overflow:auto;margin:0;float:right;width:482px;height:198px;background:#fff;border:1px solid #f2f2f2;padding:3px 5px;color:#72716f;font:12px Arial, Helvetica, sans-serif}
#form1 {width:240px;float:right;padding:30px;background:#12110f}
#form1 h2 {padding:0 0 22px 0;margin-top:-4px;color:#fff}
#form1 .right {width:140px}
#form1 .row {height:30px;line-height:22px}
#form1 .row_textarea {height:102px;line-height:22px}
#form1 .input {font:12px Arial, Helvetica, sans-serif;color:#72716f;background:none;height:15px;padding:3px 5px;width:128px;margin:0}
#form1 textarea {font:12px Arial, Helvetica, sans-serif;color:#72716f;background:none;height:54px;padding:3px 5px;width:222px;margin:0;overflow:auto}
/* -------------
* Hidden - used to hide the original form elements
* ------------- */
.jqTransformHidden {display:none}
/* -------------
* Inputs
* ------------- */
.jqTransformInputWrapper {border:1px solid #2a2824;position:relative;border-radius:1px;-moz-border-radius:1px;-webkit-border-radius:1px;float:right;height:21px;width:138px !important}
.jqTransformTextarea {border:1px solid #2a2824;position:relative;border-radius:1px;-moz-border-radius:1px;-webkit-border-radius:1px;height:64px;width:100%;margin-top:4px}
/* -------------
* Selects
* ------------- */
.jqTransformSelectWrapper {position:relative;float:right}
.jqTransformSelectWrapper div {font:12px Arial, Helvetica, sans-serif;color:#72716f;display:block;position:relative;height:21px;line-height:21px;overflow:hidden;cursor:pointer;border:1px solid #2a2824;background:none;border-radius:1px;-moz-border-radius:1px;-webkit-border-radius:1px}
.jqTransformSelectWrapper div span {padding:0 0 0 5px;display:block}
a.jqTransformSelectOpen {display:block;position:absolute;top:1px;right:1px;width:19px;height:19px;background:url(../images/select.gif) no-repeat}
.jqTransformSelectWrapper ul {position:absolute;top:24px;left:0;background:#12110f;border:1px solid #2a2824;border-radius:1px;-moz-border-radius:1px;-webkit-border-radius:1px;display:none;z-index:10; padding:5px 0;height:50px;overflow:auto}
.jqTransformSelectWrapper ul a {display:block;padding:0 5px;text-decoration:none;line-height:20px}
.jqTransformSelectWrapper ul a.selected {color:#fff}
.jqTransformSelectWrapper ul a:hover, .jqTransformSelectWrapper ul a.selected:hover {color:#fff;background:#2a2824}
#form1 .select1 .jqTransformSelectWrapper div, #form1 .select1 .jqTransformSelectWrapper ul {width:138px !important}
#form1 .select2 .jqTransformSelectWrapper div, #form1 .select2 .jqTransformSelectWrapper ul {width:42px !important}
#form1 .select2 {float:right;width:44px;margin-left:4px}
#form1 .button1 {float:right;margin-left:4px;padding:0 19px} | 0.267887 | 0.077553 |
@-moz-document domain("cardmarket.com") {
body,
#mainPage,
table.MKMTable > tbody > tr:nth-child(2n+1),
a:not([href]):not([tabindex]),
.text-muted,
.breadcrumb-item.active,
#image,
#tabs,
.tab-container .tab-content .tab-pane.active,
#tabs .nav-item a.nav-link:not(.active),
div.table.table-striped .table-body > .row:nth-child(odd),
.offcanvas-collapse-left,
.odd,
.navbar-list li:hover:not(.dropdown),
.dropdown-item:hover,
.dropdown-item:focus,
.hvr-sweep-to-right:before,
.table tbody,
#MessageThread .single-message.is-own-message {
background: #333;
color: #CCC !important;
border: none;
}
header.clearfix,
#headerbar,
.mainNav-ul li,
.mainNav-ul li:first-child,
.mainNav-ul li:last-child,
.mainNav-ul,
table.MKMTable > tbody > tr:nth-child(2n),
#header .navbar:nth-of-type(2),
#tabs .nav-item a.nav-link.active,
div.table.table-striped .table-body > .row:nth-child(even),
.even,
.bg-w,
section:nth-of-type(2n),
.table.table-striped tbody tr:nth-of-type(odd),
#MessageComposer {
background: #222 !important;
border: none;
}
.floatnavbar-spacer {
display: none;
}
h1,
h2,
h3,
.clickable,
#siteContents a:link,
#siteContents a:visited,
#header a:link,
#footer a:link,
#header a:visited,
#footer a:visited,
a:link,
a:visited,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
h6.dropdown-header,
a.btn-outline-primary,
label,
.btn-link {
color: #9cc !important;
border: none;
}
.highlight,
.success {
color: #9c9;
font-weight: bold;
}
.c-k8a {
color: #ddd;
}
.skmgrad,
table.MKMTable > thead > tr > th,
table.MKMTable > tfoot > tr > td,
#header .navbar,
#header .dropdown-menu,
div.table .table-header,
.tabCell,
table.MKMShipmentSummary > thead > tr > th,
#products .horizontalGalleryBox,
#footer,
#copyright,
#footer > div > div.row.d-none.d-lg-flex > div > ul > li.dropup.nav-item.ml-auto > a > small,
#filter .filterButtons,
.modal .filterButtons,
.list-group-item,
#MessageThread .single-message,
.bg-white {
background: #555;
}
table.MKMTable > tbody > tr > td,
.article-filter-form .accordion .item,
.nav-tabs,
table.MKMShipmentSummary > tbody > tr > td,
.article-table .table-body .article-row .col-sellerProductInfo .col-product {
border: none;
}
input,
.article-table .table-body .article-row .col-offer input,
.article-table .table-body .article-row .col-offer .amount,
.article-table .table-body .article-row .col-offer .btn,
.article-table .table-body .article-row .col-offer .input-group-prepend > .input-group-text,
.article-table .table-body .article-row .col-offer .input-group-append > .input-group-text,
.article-table .table-body .article-row .col-offer .input-group-append > .btn,
.form-control,
.form-control:focus,
.accordion,
.article-filter-form .filter-box,
div.MKMContentBlockHeader,
div.MKMContentBlockFooter,
table.MKMShipmentSummary > tfoot > tr > td,
.card {
background: #555;
color: #ccc;
border: none;
}
.color-primary,
table.table-cardmarket-apps td:nth-child(2),
table.table-mkmseries td:nth-child(3) {
color: #ccc !important;
}
.border {
border: none;
}
.btn-primary,
.vertical-scrollspy:not(.text) a,
.btn-primary.disabled,
.vertical-scrollspy:not(.text) a.disabled,
.btn-primary:disabled,
.vertical-scrollspy:not(.text) a:disabled {
color: #9cc;
border: 1px solid #9cc;
background-color: transparent;
}
.skmgrad-content,
.content,
.standard_content {
background: transparent;
}
div.MKMContentBlock {
border-color: #555;
}
} | data/usercss/169064.user.css | @-moz-document domain("cardmarket.com") {
body,
#mainPage,
table.MKMTable > tbody > tr:nth-child(2n+1),
a:not([href]):not([tabindex]),
.text-muted,
.breadcrumb-item.active,
#image,
#tabs,
.tab-container .tab-content .tab-pane.active,
#tabs .nav-item a.nav-link:not(.active),
div.table.table-striped .table-body > .row:nth-child(odd),
.offcanvas-collapse-left,
.odd,
.navbar-list li:hover:not(.dropdown),
.dropdown-item:hover,
.dropdown-item:focus,
.hvr-sweep-to-right:before,
.table tbody,
#MessageThread .single-message.is-own-message {
background: #333;
color: #CCC !important;
border: none;
}
header.clearfix,
#headerbar,
.mainNav-ul li,
.mainNav-ul li:first-child,
.mainNav-ul li:last-child,
.mainNav-ul,
table.MKMTable > tbody > tr:nth-child(2n),
#header .navbar:nth-of-type(2),
#tabs .nav-item a.nav-link.active,
div.table.table-striped .table-body > .row:nth-child(even),
.even,
.bg-w,
section:nth-of-type(2n),
.table.table-striped tbody tr:nth-of-type(odd),
#MessageComposer {
background: #222 !important;
border: none;
}
.floatnavbar-spacer {
display: none;
}
h1,
h2,
h3,
.clickable,
#siteContents a:link,
#siteContents a:visited,
#header a:link,
#footer a:link,
#header a:visited,
#footer a:visited,
a:link,
a:visited,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
h6.dropdown-header,
a.btn-outline-primary,
label,
.btn-link {
color: #9cc !important;
border: none;
}
.highlight,
.success {
color: #9c9;
font-weight: bold;
}
.c-k8a {
color: #ddd;
}
.skmgrad,
table.MKMTable > thead > tr > th,
table.MKMTable > tfoot > tr > td,
#header .navbar,
#header .dropdown-menu,
div.table .table-header,
.tabCell,
table.MKMShipmentSummary > thead > tr > th,
#products .horizontalGalleryBox,
#footer,
#copyright,
#footer > div > div.row.d-none.d-lg-flex > div > ul > li.dropup.nav-item.ml-auto > a > small,
#filter .filterButtons,
.modal .filterButtons,
.list-group-item,
#MessageThread .single-message,
.bg-white {
background: #555;
}
table.MKMTable > tbody > tr > td,
.article-filter-form .accordion .item,
.nav-tabs,
table.MKMShipmentSummary > tbody > tr > td,
.article-table .table-body .article-row .col-sellerProductInfo .col-product {
border: none;
}
input,
.article-table .table-body .article-row .col-offer input,
.article-table .table-body .article-row .col-offer .amount,
.article-table .table-body .article-row .col-offer .btn,
.article-table .table-body .article-row .col-offer .input-group-prepend > .input-group-text,
.article-table .table-body .article-row .col-offer .input-group-append > .input-group-text,
.article-table .table-body .article-row .col-offer .input-group-append > .btn,
.form-control,
.form-control:focus,
.accordion,
.article-filter-form .filter-box,
div.MKMContentBlockHeader,
div.MKMContentBlockFooter,
table.MKMShipmentSummary > tfoot > tr > td,
.card {
background: #555;
color: #ccc;
border: none;
}
.color-primary,
table.table-cardmarket-apps td:nth-child(2),
table.table-mkmseries td:nth-child(3) {
color: #ccc !important;
}
.border {
border: none;
}
.btn-primary,
.vertical-scrollspy:not(.text) a,
.btn-primary.disabled,
.vertical-scrollspy:not(.text) a.disabled,
.btn-primary:disabled,
.vertical-scrollspy:not(.text) a:disabled {
color: #9cc;
border: 1px solid #9cc;
background-color: transparent;
}
.skmgrad-content,
.content,
.standard_content {
background: transparent;
}
div.MKMContentBlock {
border-color: #555;
}
} | 0.187356 | 0.044806 |
.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url(f1.woff)format("woff");}.ff1{font-family:ff1;line-height:0.691895;font-style:normal;font-weight:normal;visibility:visible;}
@font-face{font-family:ff2;src:url(f2.woff)format("woff");}.ff2{font-family:ff2;line-height:0.832031;font-style:normal;font-weight:normal;visibility:visible;}
@font-face{font-family:ff3;src:url(f3.woff)format("woff");}.ff3{font-family:ff3;line-height:0.679199;font-style:normal;font-weight:normal;visibility:visible;}
@font-face{font-family:ff4;src:url(f4.woff)format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.019200px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.028800px;}
.ls14{letter-spacing:0.133920px;}
.ls7{letter-spacing:0.144384px;}
.ls1f{letter-spacing:0.168480px;}
.ls19{letter-spacing:0.185760px;}
.ls0{letter-spacing:0.192192px;}
.ls24{letter-spacing:0.194400px;}
.ls9{letter-spacing:0.220320px;}
.ls23{letter-spacing:0.228960px;}
.ls22{letter-spacing:0.237600px;}
.ls2b{letter-spacing:0.243648px;}
.lsc{letter-spacing:0.246240px;}
.ls2{letter-spacing:0.263520px;}
.ls1e{letter-spacing:0.285120px;}
.ls4{letter-spacing:0.288768px;}
.ls1b{letter-spacing:0.298080px;}
.ls16{letter-spacing:0.306816px;}
.ls12{letter-spacing:0.315360px;}
.ls17{letter-spacing:0.315840px;}
.ls11{letter-spacing:0.319680px;}
.lsf{letter-spacing:0.332640px;}
.ls1a{letter-spacing:0.336960px;}
.ls26{letter-spacing:0.347424px;}
.ls18{letter-spacing:0.354240px;}
.ls1c{letter-spacing:0.360960px;}
.ls29{letter-spacing:0.367200px;}
.ls6{letter-spacing:0.388032px;}
.ls8{letter-spacing:0.388800px;}
.ls25{letter-spacing:0.401568px;}
.lsd{letter-spacing:0.419040px;}
.ls10{letter-spacing:0.423360px;}
.ls28{letter-spacing:0.424128px;}
.ls13{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.442176px;}
.lsb{letter-spacing:0.453600px;}
.ls5{letter-spacing:0.455712px;}
.ls27{letter-spacing:0.462240px;}
.lsa{letter-spacing:0.470880px;}
.ls21{letter-spacing:0.473760px;}
.ls1d{letter-spacing:0.496320px;}
.lse{letter-spacing:0.514080px;}
.ls2a{letter-spacing:0.622656px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.037760px;}
._3{width:1.010080px;}
._2{width:2.808960px;}
._4{width:9.862560px;}
._5{width:12.356160px;}
._6{width:29.517120px;}
._0{width:59.810688px;}
._7{width:62.626080px;}
._8{width:100.145280px;}
.fc2{color:rgb(163,129,214);}
.fc1{color:rgb(141,111,187);}
.fc3{color:rgb(0,65,100);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:29.760000px;}
.fs7{font-size:41.280000px;}
.fs3{font-size:43.200000px;}
.fs6{font-size:45.120000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:63.360000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:87.360000px;}
.y35{bottom:37.080020px;}
.y0{bottom:41.000000px;}
.y34{bottom:49.560020px;}
.y33{bottom:62.040000px;}
.y32{bottom:74.520000px;}
.y31{bottom:87.240000px;}
.y30{bottom:99.000000px;}
.y2f{bottom:111.720000px;}
.y2e{bottom:124.440000px;}
.y2d{bottom:137.160000px;}
.y2c{bottom:152.280000px;}
.y2b{bottom:169.560000px;}
.y2a{bottom:181.560000px;}
.y29{bottom:193.560000px;}
.y28{bottom:205.560000px;}
.y27{bottom:217.560000px;}
.y26{bottom:229.320000px;}
.y25{bottom:239.640000px;}
.y24{bottom:250.440000px;}
.y23{bottom:262.440000px;}
.y22{bottom:274.440000px;}
.y21{bottom:286.440000px;}
.y20{bottom:298.440000px;}
.y1f{bottom:310.200000px;}
.y1e{bottom:325.080000px;}
.y1d{bottom:345.240000px;}
.y1c{bottom:360.840000px;}
.y1b{bottom:375.240000px;}
.y1a{bottom:389.880000px;}
.y19{bottom:404.280000px;}
.y18{bottom:416.280000px;}
.y17{bottom:425.640000px;}
.y16{bottom:435.000000px;}
.y15{bottom:449.640000px;}
.y14{bottom:464.040000px;}
.y13{bottom:478.680000px;}
.y12{bottom:490.440000px;}
.y11{bottom:505.560000px;}
.y10{bottom:520.920000px;}
.yf{bottom:534.600000px;}
.ye{bottom:543.240000px;}
.yd{bottom:549.960000px;}
.yc{bottom:564.120000px;}
.yb{bottom:581.640000px;}
.ya{bottom:594.600000px;}
.y9{bottom:606.600000px;}
.y8{bottom:618.360000px;}
.y7{bottom:630.360000px;}
.y6{bottom:642.360000px;}
.y5{bottom:657.240000px;}
.y4{bottom:673.560000px;}
.y3{bottom:687.240000px;}
.y2{bottom:699.960000px;}
.y1{bottom:717.960000px;}
.h7{height:21.937500px;}
.h6{height:22.912500px;}
.h4{height:24.375000px;}
.h8{height:28.792969px;}
.h9{height:31.992188px;}
.h3{height:32.175000px;}
.h5{height:36.562500px;}
.h2{height:44.362500px;}
.h1{height:783.000000px;}
.h0{height:842.000000px;}
.w1{width:559.000000px;}
.w0{width:595.000000px;}
.x0{left:18.000000px;}
.x2{left:24.000000px;}
.x1{left:82.000000px;}
.x3{left:98.050000px;}
.x4{left:107.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.025600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.038400pt;}
.ls14{letter-spacing:0.178560pt;}
.ls7{letter-spacing:0.192512pt;}
.ls1f{letter-spacing:0.224640pt;}
.ls19{letter-spacing:0.247680pt;}
.ls0{letter-spacing:0.256256pt;}
.ls24{letter-spacing:0.259200pt;}
.ls9{letter-spacing:0.293760pt;}
.ls23{letter-spacing:0.305280pt;}
.ls22{letter-spacing:0.316800pt;}
.ls2b{letter-spacing:0.324864pt;}
.lsc{letter-spacing:0.328320pt;}
.ls2{letter-spacing:0.351360pt;}
.ls1e{letter-spacing:0.380160pt;}
.ls4{letter-spacing:0.385024pt;}
.ls1b{letter-spacing:0.397440pt;}
.ls16{letter-spacing:0.409088pt;}
.ls12{letter-spacing:0.420480pt;}
.ls17{letter-spacing:0.421120pt;}
.ls11{letter-spacing:0.426240pt;}
.lsf{letter-spacing:0.443520pt;}
.ls1a{letter-spacing:0.449280pt;}
.ls26{letter-spacing:0.463232pt;}
.ls18{letter-spacing:0.472320pt;}
.ls1c{letter-spacing:0.481280pt;}
.ls29{letter-spacing:0.489600pt;}
.ls6{letter-spacing:0.517376pt;}
.ls8{letter-spacing:0.518400pt;}
.ls25{letter-spacing:0.535424pt;}
.lsd{letter-spacing:0.558720pt;}
.ls10{letter-spacing:0.564480pt;}
.ls28{letter-spacing:0.565504pt;}
.ls13{letter-spacing:0.576000pt;}
.ls20{letter-spacing:0.589568pt;}
.lsb{letter-spacing:0.604800pt;}
.ls5{letter-spacing:0.607616pt;}
.ls27{letter-spacing:0.616320pt;}
.lsa{letter-spacing:0.627840pt;}
.ls21{letter-spacing:0.631680pt;}
.ls1d{letter-spacing:0.661760pt;}
.lse{letter-spacing:0.685440pt;}
.ls2a{letter-spacing:0.830208pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-1.383680pt;}
._3{width:1.346773pt;}
._2{width:3.745280pt;}
._4{width:13.150080pt;}
._5{width:16.474880pt;}
._6{width:39.356160pt;}
._0{width:79.747584pt;}
._7{width:83.501440pt;}
._8{width:133.527040pt;}
.fs2{font-size:39.680000pt;}
.fs7{font-size:55.040000pt;}
.fs3{font-size:57.600000pt;}
.fs6{font-size:60.160000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:84.480000pt;}
.fs5{font-size:96.000000pt;}
.fs0{font-size:116.480000pt;}
.y35{bottom:49.440027pt;}
.y0{bottom:54.666667pt;}
.y34{bottom:66.080027pt;}
.y33{bottom:82.720000pt;}
.y32{bottom:99.360000pt;}
.y31{bottom:116.320000pt;}
.y30{bottom:132.000000pt;}
.y2f{bottom:148.960000pt;}
.y2e{bottom:165.920000pt;}
.y2d{bottom:182.880000pt;}
.y2c{bottom:203.040000pt;}
.y2b{bottom:226.080000pt;}
.y2a{bottom:242.080000pt;}
.y29{bottom:258.080000pt;}
.y28{bottom:274.080000pt;}
.y27{bottom:290.080000pt;}
.y26{bottom:305.760000pt;}
.y25{bottom:319.520000pt;}
.y24{bottom:333.920000pt;}
.y23{bottom:349.920000pt;}
.y22{bottom:365.920000pt;}
.y21{bottom:381.920000pt;}
.y20{bottom:397.920000pt;}
.y1f{bottom:413.600000pt;}
.y1e{bottom:433.440000pt;}
.y1d{bottom:460.320000pt;}
.y1c{bottom:481.120000pt;}
.y1b{bottom:500.320000pt;}
.y1a{bottom:519.840000pt;}
.y19{bottom:539.040000pt;}
.y18{bottom:555.040000pt;}
.y17{bottom:567.520000pt;}
.y16{bottom:580.000000pt;}
.y15{bottom:599.520000pt;}
.y14{bottom:618.720000pt;}
.y13{bottom:638.240000pt;}
.y12{bottom:653.920000pt;}
.y11{bottom:674.080000pt;}
.y10{bottom:694.560000pt;}
.yf{bottom:712.800000pt;}
.ye{bottom:724.320000pt;}
.yd{bottom:733.280000pt;}
.yc{bottom:752.160000pt;}
.yb{bottom:775.520000pt;}
.ya{bottom:792.800000pt;}
.y9{bottom:808.800000pt;}
.y8{bottom:824.480000pt;}
.y7{bottom:840.480000pt;}
.y6{bottom:856.480000pt;}
.y5{bottom:876.320000pt;}
.y4{bottom:898.080000pt;}
.y3{bottom:916.320000pt;}
.y2{bottom:933.280000pt;}
.y1{bottom:957.280000pt;}
.h7{height:29.250000pt;}
.h6{height:30.550000pt;}
.h4{height:32.500000pt;}
.h8{height:38.390625pt;}
.h9{height:42.656250pt;}
.h3{height:42.900000pt;}
.h5{height:48.750000pt;}
.h2{height:59.150000pt;}
.h1{height:1044.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.x0{left:24.000000pt;}
.x2{left:32.000000pt;}
.x1{left:109.333333pt;}
.x3{left:130.733333pt;}
.x4{left:142.666667pt;}
} | _resume/main.css | .ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url(f1.woff)format("woff");}.ff1{font-family:ff1;line-height:0.691895;font-style:normal;font-weight:normal;visibility:visible;}
@font-face{font-family:ff2;src:url(f2.woff)format("woff");}.ff2{font-family:ff2;line-height:0.832031;font-style:normal;font-weight:normal;visibility:visible;}
@font-face{font-family:ff3;src:url(f3.woff)format("woff");}.ff3{font-family:ff3;line-height:0.679199;font-style:normal;font-weight:normal;visibility:visible;}
@font-face{font-family:ff4;src:url(f4.woff)format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.019200px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.028800px;}
.ls14{letter-spacing:0.133920px;}
.ls7{letter-spacing:0.144384px;}
.ls1f{letter-spacing:0.168480px;}
.ls19{letter-spacing:0.185760px;}
.ls0{letter-spacing:0.192192px;}
.ls24{letter-spacing:0.194400px;}
.ls9{letter-spacing:0.220320px;}
.ls23{letter-spacing:0.228960px;}
.ls22{letter-spacing:0.237600px;}
.ls2b{letter-spacing:0.243648px;}
.lsc{letter-spacing:0.246240px;}
.ls2{letter-spacing:0.263520px;}
.ls1e{letter-spacing:0.285120px;}
.ls4{letter-spacing:0.288768px;}
.ls1b{letter-spacing:0.298080px;}
.ls16{letter-spacing:0.306816px;}
.ls12{letter-spacing:0.315360px;}
.ls17{letter-spacing:0.315840px;}
.ls11{letter-spacing:0.319680px;}
.lsf{letter-spacing:0.332640px;}
.ls1a{letter-spacing:0.336960px;}
.ls26{letter-spacing:0.347424px;}
.ls18{letter-spacing:0.354240px;}
.ls1c{letter-spacing:0.360960px;}
.ls29{letter-spacing:0.367200px;}
.ls6{letter-spacing:0.388032px;}
.ls8{letter-spacing:0.388800px;}
.ls25{letter-spacing:0.401568px;}
.lsd{letter-spacing:0.419040px;}
.ls10{letter-spacing:0.423360px;}
.ls28{letter-spacing:0.424128px;}
.ls13{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.442176px;}
.lsb{letter-spacing:0.453600px;}
.ls5{letter-spacing:0.455712px;}
.ls27{letter-spacing:0.462240px;}
.lsa{letter-spacing:0.470880px;}
.ls21{letter-spacing:0.473760px;}
.ls1d{letter-spacing:0.496320px;}
.lse{letter-spacing:0.514080px;}
.ls2a{letter-spacing:0.622656px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.037760px;}
._3{width:1.010080px;}
._2{width:2.808960px;}
._4{width:9.862560px;}
._5{width:12.356160px;}
._6{width:29.517120px;}
._0{width:59.810688px;}
._7{width:62.626080px;}
._8{width:100.145280px;}
.fc2{color:rgb(163,129,214);}
.fc1{color:rgb(141,111,187);}
.fc3{color:rgb(0,65,100);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:29.760000px;}
.fs7{font-size:41.280000px;}
.fs3{font-size:43.200000px;}
.fs6{font-size:45.120000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:63.360000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:87.360000px;}
.y35{bottom:37.080020px;}
.y0{bottom:41.000000px;}
.y34{bottom:49.560020px;}
.y33{bottom:62.040000px;}
.y32{bottom:74.520000px;}
.y31{bottom:87.240000px;}
.y30{bottom:99.000000px;}
.y2f{bottom:111.720000px;}
.y2e{bottom:124.440000px;}
.y2d{bottom:137.160000px;}
.y2c{bottom:152.280000px;}
.y2b{bottom:169.560000px;}
.y2a{bottom:181.560000px;}
.y29{bottom:193.560000px;}
.y28{bottom:205.560000px;}
.y27{bottom:217.560000px;}
.y26{bottom:229.320000px;}
.y25{bottom:239.640000px;}
.y24{bottom:250.440000px;}
.y23{bottom:262.440000px;}
.y22{bottom:274.440000px;}
.y21{bottom:286.440000px;}
.y20{bottom:298.440000px;}
.y1f{bottom:310.200000px;}
.y1e{bottom:325.080000px;}
.y1d{bottom:345.240000px;}
.y1c{bottom:360.840000px;}
.y1b{bottom:375.240000px;}
.y1a{bottom:389.880000px;}
.y19{bottom:404.280000px;}
.y18{bottom:416.280000px;}
.y17{bottom:425.640000px;}
.y16{bottom:435.000000px;}
.y15{bottom:449.640000px;}
.y14{bottom:464.040000px;}
.y13{bottom:478.680000px;}
.y12{bottom:490.440000px;}
.y11{bottom:505.560000px;}
.y10{bottom:520.920000px;}
.yf{bottom:534.600000px;}
.ye{bottom:543.240000px;}
.yd{bottom:549.960000px;}
.yc{bottom:564.120000px;}
.yb{bottom:581.640000px;}
.ya{bottom:594.600000px;}
.y9{bottom:606.600000px;}
.y8{bottom:618.360000px;}
.y7{bottom:630.360000px;}
.y6{bottom:642.360000px;}
.y5{bottom:657.240000px;}
.y4{bottom:673.560000px;}
.y3{bottom:687.240000px;}
.y2{bottom:699.960000px;}
.y1{bottom:717.960000px;}
.h7{height:21.937500px;}
.h6{height:22.912500px;}
.h4{height:24.375000px;}
.h8{height:28.792969px;}
.h9{height:31.992188px;}
.h3{height:32.175000px;}
.h5{height:36.562500px;}
.h2{height:44.362500px;}
.h1{height:783.000000px;}
.h0{height:842.000000px;}
.w1{width:559.000000px;}
.w0{width:595.000000px;}
.x0{left:18.000000px;}
.x2{left:24.000000px;}
.x1{left:82.000000px;}
.x3{left:98.050000px;}
.x4{left:107.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.025600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.038400pt;}
.ls14{letter-spacing:0.178560pt;}
.ls7{letter-spacing:0.192512pt;}
.ls1f{letter-spacing:0.224640pt;}
.ls19{letter-spacing:0.247680pt;}
.ls0{letter-spacing:0.256256pt;}
.ls24{letter-spacing:0.259200pt;}
.ls9{letter-spacing:0.293760pt;}
.ls23{letter-spacing:0.305280pt;}
.ls22{letter-spacing:0.316800pt;}
.ls2b{letter-spacing:0.324864pt;}
.lsc{letter-spacing:0.328320pt;}
.ls2{letter-spacing:0.351360pt;}
.ls1e{letter-spacing:0.380160pt;}
.ls4{letter-spacing:0.385024pt;}
.ls1b{letter-spacing:0.397440pt;}
.ls16{letter-spacing:0.409088pt;}
.ls12{letter-spacing:0.420480pt;}
.ls17{letter-spacing:0.421120pt;}
.ls11{letter-spacing:0.426240pt;}
.lsf{letter-spacing:0.443520pt;}
.ls1a{letter-spacing:0.449280pt;}
.ls26{letter-spacing:0.463232pt;}
.ls18{letter-spacing:0.472320pt;}
.ls1c{letter-spacing:0.481280pt;}
.ls29{letter-spacing:0.489600pt;}
.ls6{letter-spacing:0.517376pt;}
.ls8{letter-spacing:0.518400pt;}
.ls25{letter-spacing:0.535424pt;}
.lsd{letter-spacing:0.558720pt;}
.ls10{letter-spacing:0.564480pt;}
.ls28{letter-spacing:0.565504pt;}
.ls13{letter-spacing:0.576000pt;}
.ls20{letter-spacing:0.589568pt;}
.lsb{letter-spacing:0.604800pt;}
.ls5{letter-spacing:0.607616pt;}
.ls27{letter-spacing:0.616320pt;}
.lsa{letter-spacing:0.627840pt;}
.ls21{letter-spacing:0.631680pt;}
.ls1d{letter-spacing:0.661760pt;}
.lse{letter-spacing:0.685440pt;}
.ls2a{letter-spacing:0.830208pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-1.383680pt;}
._3{width:1.346773pt;}
._2{width:3.745280pt;}
._4{width:13.150080pt;}
._5{width:16.474880pt;}
._6{width:39.356160pt;}
._0{width:79.747584pt;}
._7{width:83.501440pt;}
._8{width:133.527040pt;}
.fs2{font-size:39.680000pt;}
.fs7{font-size:55.040000pt;}
.fs3{font-size:57.600000pt;}
.fs6{font-size:60.160000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:84.480000pt;}
.fs5{font-size:96.000000pt;}
.fs0{font-size:116.480000pt;}
.y35{bottom:49.440027pt;}
.y0{bottom:54.666667pt;}
.y34{bottom:66.080027pt;}
.y33{bottom:82.720000pt;}
.y32{bottom:99.360000pt;}
.y31{bottom:116.320000pt;}
.y30{bottom:132.000000pt;}
.y2f{bottom:148.960000pt;}
.y2e{bottom:165.920000pt;}
.y2d{bottom:182.880000pt;}
.y2c{bottom:203.040000pt;}
.y2b{bottom:226.080000pt;}
.y2a{bottom:242.080000pt;}
.y29{bottom:258.080000pt;}
.y28{bottom:274.080000pt;}
.y27{bottom:290.080000pt;}
.y26{bottom:305.760000pt;}
.y25{bottom:319.520000pt;}
.y24{bottom:333.920000pt;}
.y23{bottom:349.920000pt;}
.y22{bottom:365.920000pt;}
.y21{bottom:381.920000pt;}
.y20{bottom:397.920000pt;}
.y1f{bottom:413.600000pt;}
.y1e{bottom:433.440000pt;}
.y1d{bottom:460.320000pt;}
.y1c{bottom:481.120000pt;}
.y1b{bottom:500.320000pt;}
.y1a{bottom:519.840000pt;}
.y19{bottom:539.040000pt;}
.y18{bottom:555.040000pt;}
.y17{bottom:567.520000pt;}
.y16{bottom:580.000000pt;}
.y15{bottom:599.520000pt;}
.y14{bottom:618.720000pt;}
.y13{bottom:638.240000pt;}
.y12{bottom:653.920000pt;}
.y11{bottom:674.080000pt;}
.y10{bottom:694.560000pt;}
.yf{bottom:712.800000pt;}
.ye{bottom:724.320000pt;}
.yd{bottom:733.280000pt;}
.yc{bottom:752.160000pt;}
.yb{bottom:775.520000pt;}
.ya{bottom:792.800000pt;}
.y9{bottom:808.800000pt;}
.y8{bottom:824.480000pt;}
.y7{bottom:840.480000pt;}
.y6{bottom:856.480000pt;}
.y5{bottom:876.320000pt;}
.y4{bottom:898.080000pt;}
.y3{bottom:916.320000pt;}
.y2{bottom:933.280000pt;}
.y1{bottom:957.280000pt;}
.h7{height:29.250000pt;}
.h6{height:30.550000pt;}
.h4{height:32.500000pt;}
.h8{height:38.390625pt;}
.h9{height:42.656250pt;}
.h3{height:42.900000pt;}
.h5{height:48.750000pt;}
.h2{height:59.150000pt;}
.h1{height:1044.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.x0{left:24.000000pt;}
.x2{left:32.000000pt;}
.x1{left:109.333333pt;}
.x3{left:130.733333pt;}
.x4{left:142.666667pt;}
} | 0.113144 | 0.063861 |
body{
background-color: #F4F4F4;
font-size: 15px;
height: 100%;
}
html {
height: 100%;
}
.btn-sub {
color: #ffb90b;
background-color: #4d4141;
border-color: #ffb90b;
}
.btn-sub:focus{
color: #ffb90b;
background-color: #363030;
border-color: #ffb90b;
}
.btn-sub:active:focus {
color: #ffb90b;
background-color: #363030;
border-color: #ffb90b;
box-shadow: none;
}
.btn-sub:hover{
color: #ffb90b;
background-color: #363030;
border-color: #ffb90b;
}
.bg {
height: 10%;
background-color:#2c3e50;
}
.asterisk {
font-size: 30px;
position: absolute;
right: 149px;
top: 290px;
color: #be3e3e;
}
/* End Main Rulez */
/* Start Register and Login Form */
.login-panel-box {
margin-top:60px;
}
.login-panel-box .panel-body {
padding-bottom: 0;
}
.login-panel-box .panel-danger {
border-color: #2c3e50 !important;
}
.login-panel-box .panel-danger>.panel-heading {
color: #ff5050;
background-color: #ff5050;
border-color: #2c3e50 !important;
}
.title {
text-align: center;
margin-top:-56px;
margin-bottom: 5px;
color: #2ec35f;
font-size: 27px;
}
.sub-title {
margin: 5px 0 ;
color: #357da1;
font-size: 20px;
}
.login {
width: 300px;
margin: 100px auto;
margin-top: 35px;
}
.login input {
margin-bottom:5px;
}
.login .btn {
color: #ff5050;
background-color: #222222;
border-color: #ffb90b;
}
.login .btn:active {
background-color: #e14646;
border-color: #FFF !important;
}
.login .btn:hover {
background-color: #222222;
border-color: #FFF !important;
}
/* End Login Form */
/* Starting Exams Page */
.main-table {
-webkit-box-shadow: 0 3px 10px #CCC;
-moz-box-shadow: 0 3px 10px #CCC;
box-shadow: 0 3px 10px #CCC;
}
.main-table td {
background-color: #FFF;
vertical-align: middle !important;
}
.main-table tr:first-child td { /* You Can Use Thead */
background-color: #ffb90b;
color: #222;
}
.main-table .btn {
padding: 3px 10px;
}
.dropdown-menu {
background-color: #222222 !important ;
}
.dropdown-menu li a:hover {
background-color: #ffb90b !important ;
}
.dropdown-menu li a {
color:#02264a;
}
/* Ending Exams Page */
/*Starting Home Page*/
/*Nav Tabs*/
ul.nav.nav-tabs {
background-color: #363030;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
color: #222;
cursor: default;
background-color: #e14646;
border: 1px solid #ddd;
border-bottom-color: #ffb90b;
}
a {
color: #ffb90b;
text-decoration: none;
}
.nav-tabs>li>a:hover {
border-color: #ffb90b #ffb90b #ffb90b;
text-decoration: none;
background-color: #ffb90b;
color:#363030;
}
.sel-home {
background-color: #2c3e50 ;
color:#b53d3d;
font-size: 17px;
}
/*Starting Buttons*/
.starting {
color: #2ecc71 !important;
background-color: #2c3e50 !important;
border-color: #2c3e50 !important;
margin-top: 5px;
margin-bottom: 5px;
}
.starting:active {
background-color: #34495e !important;
border-color: #FFF !important;
}
.starting:hover {
background-color: #34495e !important;
border-color: #FFF !important;
}
#go-btn {
color: #FFF !important ;
width:170px;
}
/* End of Starting Buttons*/
/*Ending Home Page*/
/*Starting Questions Page */
.ques {
background-color: #f39c12 ;
color: #2c3e50;
}
.ques-ans {
background-color: #FFF ;
color: #2c3e50;
font-size: 20px;
}
/*End Questions Page */
/*Start Bootstrap Edit*/
.navbar-inverse{
background-color:#e14646;
}
.navbar {
border-radius: 0;
margin-bottom: 0;
}
.navbar-brand {
font-size:1em;
}
.navbar .nav {
margin-left: 25px;
}
.navbar-inverse .navbar-nav>li>a {
color: #000;
}
.nav > li > a ,
.navbar-brand {
padding: 15px 12px ;
padding-bottom: 14px;
}
.navbar-inverse .navbar-brand {
padding: 15px 12px ;
background-color: #222222;
}
.navbar-inverse .navbar-nav .brand-left {
background-color: #222222;
color: #9d9d8d;
padding: 17px;
}
.navbar-inverse .navbar-nav >.open >a,
.navbar-inverse .navbar-nav >.open >a:hover,
.navbar-inverse .navbar-nav >.open >a:focus,
.dropdown-menu{
background-color: #ffb90b;
}
.navbar-inverse .navbar-nav>li>a {
color: #1f00000;
}
.dropdown-menu {
min-width: 188px;
padding: 0;
font-size: 15px;
color:
border: none;
border-radius: 0;
}
.dropdown-menu > li > a {
color: #fff;
padding: 15px 15px;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus{
background-color: #0e803e;
}
.form-control {
position: relative ;
}
/*End Bootstrap Edit*/
/* Start Dashboard Page */
.home-stats h1 {
margin-bottom: 30px;
color:#222;
}
.home-stats .stat {
padding: 20px;
font-size: 15px;
color: #FFF;
border-radius: 10px;
position: relative;
overflow: hidden;
}
.home-stats .stat i {
position: absolute;
font-size: 80px;
top: 35px;
left: 30px;
}
.home-stats .stat .info {
float: right;
}
.home-stats .stat a {
color: #FFF;
}
.home-stats .stat a:hover {
text-decoration: none;
}
.home-stats .stat span {
display: block;
font-size: 60px;
}
.home-stats .st-members {
background-color: #3498db;
}
.home-stats .st-pending {
background-color: #c0392b;
}
.home-stats .st-items {
background-color: #d35400;
}
.home-stats .st-comments {
background-color: #8e44ad;
}
.latest .panel .panel-heading {
color: #333;
background-color: #ffb90b;
border-color: #ffb90b;
}
.latest .panel .panel-body{
}
.latest {
margin-top: 30px;
}
.latest .toggle-info {
color: #222;
cursor: pointer
}
.latest .toggle-info:hover {
color: #444;
}
.latest-users {
margin-bottom: 0;
}
.latest-users li {
padding: 10px;
overflow: hidden;
}
.latest-users li:nth-child(odd) {
background-color: #EEE;
}
.latest-users .btn-success,
.latest-users .btn-info {
padding: 2px 8px;
}
.latest-users .btn-info {
margin-right: 5px;
}
/* End Dashboard Page */
/*Start Exams Page*/
.question-stats .stat {
color :#FFF ;
padding: 20px ;
font-size: 20px;
text-align: center;
border-radius : 10px;
margin-top:20px;
}
.question-stats .stat a {
color : #ffb90b ;
qzAtext-decoration: none ;
}
.question-stats .stat a:hover {
text-decoration: none ;
}
.question-stats .stat span {
display: block ;
font-size: 20px;
}
.question-stats .st-add-question {
background-color : #8e44ad ;
}
.question-stats .st-view-question {
background-color : #363030 ;
}
.question-stats .st-add-question {
background-color : #363030 ;
}
#exams-table {
font-size: 18px;
color:#2c3e50;
}
#duration-span {
color:#27ae60;
font-size: 20px;
}
/*View Questions in Exam*/
#exams-has-questions-table tr:first-child td {
background-color: #FFF;
color: rgb(95, 31, 31);
}
/* End View Questions in Exam*/
/*End Exams Page*/
/*Start Category Page*/
.categories .panel-body {
padding:0;
}
.categories .option a {
color:#888 ;
text-decoration: none;
}
.categories .option span {
color:#888 ;
cursor:pointer;
}
.categories .option .active {
color : #F00 ;
}
.categories .cat h3 {
cursor: pointer ;
}
.categories hr {
margin-top:0;
margin-bottom:0 ;
}
.categories .cat {
padding :15px;
position: relative ;
overflow: hidden ;
}
.categories .cat:hover {
background-color:#EEE;
}
.categories .cat:hover .hidden-btns {
right :10px ;
}
.categories .cat .hidden-btns {
-webkit-transition: all .5s ease-in-out ;
-moz-transition: all .5s ease-in-out ;
transition : all .5s ease-in-out ;
position: absolute ;
top:15px;
right: -120px;
}
.categories .cat .hidden-btns a {
margin-right:5px;
}
.categories .cat h3 {
margin: 0;
font-weight: bold;
color: #966d25;
}
.categories .cat .full-view {
margin-bottom: 5px;
}
.categories .cat .full-view p {
margin-top: 18px;
margin-bottom: 18px;
color:#707070;
}
.categories .cat:last-of-type ~ hr { /* Last Cat hr hidden*/
display: none ;
}
.categories .cat .visability {
background-color:#e67e22 ;
color:#FFF ;
padding :5px 15px ;
margin-right:6px;
border-radius: 6px;
}
.categories .cat .commenting {
background-color:#2c3e50 ;
color:#FFF ;
padding :5px 15px ;
margin-right:6px;
border-radius: 6px;
}
.categories .cat .advertising {
background-color:#c0392b ;
color:#FFF ;
padding :5px 15px ;
margin-right:6px;
border-radius: 6px;
}
/*End Category Page*/
.stu-res {
float: right;
color:#e14646;
} | files/last version/quizes/admin/layout/css/style.css |
body{
background-color: #F4F4F4;
font-size: 15px;
height: 100%;
}
html {
height: 100%;
}
.btn-sub {
color: #ffb90b;
background-color: #4d4141;
border-color: #ffb90b;
}
.btn-sub:focus{
color: #ffb90b;
background-color: #363030;
border-color: #ffb90b;
}
.btn-sub:active:focus {
color: #ffb90b;
background-color: #363030;
border-color: #ffb90b;
box-shadow: none;
}
.btn-sub:hover{
color: #ffb90b;
background-color: #363030;
border-color: #ffb90b;
}
.bg {
height: 10%;
background-color:#2c3e50;
}
.asterisk {
font-size: 30px;
position: absolute;
right: 149px;
top: 290px;
color: #be3e3e;
}
/* End Main Rulez */
/* Start Register and Login Form */
.login-panel-box {
margin-top:60px;
}
.login-panel-box .panel-body {
padding-bottom: 0;
}
.login-panel-box .panel-danger {
border-color: #2c3e50 !important;
}
.login-panel-box .panel-danger>.panel-heading {
color: #ff5050;
background-color: #ff5050;
border-color: #2c3e50 !important;
}
.title {
text-align: center;
margin-top:-56px;
margin-bottom: 5px;
color: #2ec35f;
font-size: 27px;
}
.sub-title {
margin: 5px 0 ;
color: #357da1;
font-size: 20px;
}
.login {
width: 300px;
margin: 100px auto;
margin-top: 35px;
}
.login input {
margin-bottom:5px;
}
.login .btn {
color: #ff5050;
background-color: #222222;
border-color: #ffb90b;
}
.login .btn:active {
background-color: #e14646;
border-color: #FFF !important;
}
.login .btn:hover {
background-color: #222222;
border-color: #FFF !important;
}
/* End Login Form */
/* Starting Exams Page */
.main-table {
-webkit-box-shadow: 0 3px 10px #CCC;
-moz-box-shadow: 0 3px 10px #CCC;
box-shadow: 0 3px 10px #CCC;
}
.main-table td {
background-color: #FFF;
vertical-align: middle !important;
}
.main-table tr:first-child td { /* You Can Use Thead */
background-color: #ffb90b;
color: #222;
}
.main-table .btn {
padding: 3px 10px;
}
.dropdown-menu {
background-color: #222222 !important ;
}
.dropdown-menu li a:hover {
background-color: #ffb90b !important ;
}
.dropdown-menu li a {
color:#02264a;
}
/* Ending Exams Page */
/*Starting Home Page*/
/*Nav Tabs*/
ul.nav.nav-tabs {
background-color: #363030;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
color: #222;
cursor: default;
background-color: #e14646;
border: 1px solid #ddd;
border-bottom-color: #ffb90b;
}
a {
color: #ffb90b;
text-decoration: none;
}
.nav-tabs>li>a:hover {
border-color: #ffb90b #ffb90b #ffb90b;
text-decoration: none;
background-color: #ffb90b;
color:#363030;
}
.sel-home {
background-color: #2c3e50 ;
color:#b53d3d;
font-size: 17px;
}
/*Starting Buttons*/
.starting {
color: #2ecc71 !important;
background-color: #2c3e50 !important;
border-color: #2c3e50 !important;
margin-top: 5px;
margin-bottom: 5px;
}
.starting:active {
background-color: #34495e !important;
border-color: #FFF !important;
}
.starting:hover {
background-color: #34495e !important;
border-color: #FFF !important;
}
#go-btn {
color: #FFF !important ;
width:170px;
}
/* End of Starting Buttons*/
/*Ending Home Page*/
/*Starting Questions Page */
.ques {
background-color: #f39c12 ;
color: #2c3e50;
}
.ques-ans {
background-color: #FFF ;
color: #2c3e50;
font-size: 20px;
}
/*End Questions Page */
/*Start Bootstrap Edit*/
.navbar-inverse{
background-color:#e14646;
}
.navbar {
border-radius: 0;
margin-bottom: 0;
}
.navbar-brand {
font-size:1em;
}
.navbar .nav {
margin-left: 25px;
}
.navbar-inverse .navbar-nav>li>a {
color: #000;
}
.nav > li > a ,
.navbar-brand {
padding: 15px 12px ;
padding-bottom: 14px;
}
.navbar-inverse .navbar-brand {
padding: 15px 12px ;
background-color: #222222;
}
.navbar-inverse .navbar-nav .brand-left {
background-color: #222222;
color: #9d9d8d;
padding: 17px;
}
.navbar-inverse .navbar-nav >.open >a,
.navbar-inverse .navbar-nav >.open >a:hover,
.navbar-inverse .navbar-nav >.open >a:focus,
.dropdown-menu{
background-color: #ffb90b;
}
.navbar-inverse .navbar-nav>li>a {
color: #1f00000;
}
.dropdown-menu {
min-width: 188px;
padding: 0;
font-size: 15px;
color:
border: none;
border-radius: 0;
}
.dropdown-menu > li > a {
color: #fff;
padding: 15px 15px;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus{
background-color: #0e803e;
}
.form-control {
position: relative ;
}
/*End Bootstrap Edit*/
/* Start Dashboard Page */
.home-stats h1 {
margin-bottom: 30px;
color:#222;
}
.home-stats .stat {
padding: 20px;
font-size: 15px;
color: #FFF;
border-radius: 10px;
position: relative;
overflow: hidden;
}
.home-stats .stat i {
position: absolute;
font-size: 80px;
top: 35px;
left: 30px;
}
.home-stats .stat .info {
float: right;
}
.home-stats .stat a {
color: #FFF;
}
.home-stats .stat a:hover {
text-decoration: none;
}
.home-stats .stat span {
display: block;
font-size: 60px;
}
.home-stats .st-members {
background-color: #3498db;
}
.home-stats .st-pending {
background-color: #c0392b;
}
.home-stats .st-items {
background-color: #d35400;
}
.home-stats .st-comments {
background-color: #8e44ad;
}
.latest .panel .panel-heading {
color: #333;
background-color: #ffb90b;
border-color: #ffb90b;
}
.latest .panel .panel-body{
}
.latest {
margin-top: 30px;
}
.latest .toggle-info {
color: #222;
cursor: pointer
}
.latest .toggle-info:hover {
color: #444;
}
.latest-users {
margin-bottom: 0;
}
.latest-users li {
padding: 10px;
overflow: hidden;
}
.latest-users li:nth-child(odd) {
background-color: #EEE;
}
.latest-users .btn-success,
.latest-users .btn-info {
padding: 2px 8px;
}
.latest-users .btn-info {
margin-right: 5px;
}
/* End Dashboard Page */
/*Start Exams Page*/
.question-stats .stat {
color :#FFF ;
padding: 20px ;
font-size: 20px;
text-align: center;
border-radius : 10px;
margin-top:20px;
}
.question-stats .stat a {
color : #ffb90b ;
qzAtext-decoration: none ;
}
.question-stats .stat a:hover {
text-decoration: none ;
}
.question-stats .stat span {
display: block ;
font-size: 20px;
}
.question-stats .st-add-question {
background-color : #8e44ad ;
}
.question-stats .st-view-question {
background-color : #363030 ;
}
.question-stats .st-add-question {
background-color : #363030 ;
}
#exams-table {
font-size: 18px;
color:#2c3e50;
}
#duration-span {
color:#27ae60;
font-size: 20px;
}
/*View Questions in Exam*/
#exams-has-questions-table tr:first-child td {
background-color: #FFF;
color: rgb(95, 31, 31);
}
/* End View Questions in Exam*/
/*End Exams Page*/
/*Start Category Page*/
.categories .panel-body {
padding:0;
}
.categories .option a {
color:#888 ;
text-decoration: none;
}
.categories .option span {
color:#888 ;
cursor:pointer;
}
.categories .option .active {
color : #F00 ;
}
.categories .cat h3 {
cursor: pointer ;
}
.categories hr {
margin-top:0;
margin-bottom:0 ;
}
.categories .cat {
padding :15px;
position: relative ;
overflow: hidden ;
}
.categories .cat:hover {
background-color:#EEE;
}
.categories .cat:hover .hidden-btns {
right :10px ;
}
.categories .cat .hidden-btns {
-webkit-transition: all .5s ease-in-out ;
-moz-transition: all .5s ease-in-out ;
transition : all .5s ease-in-out ;
position: absolute ;
top:15px;
right: -120px;
}
.categories .cat .hidden-btns a {
margin-right:5px;
}
.categories .cat h3 {
margin: 0;
font-weight: bold;
color: #966d25;
}
.categories .cat .full-view {
margin-bottom: 5px;
}
.categories .cat .full-view p {
margin-top: 18px;
margin-bottom: 18px;
color:#707070;
}
.categories .cat:last-of-type ~ hr { /* Last Cat hr hidden*/
display: none ;
}
.categories .cat .visability {
background-color:#e67e22 ;
color:#FFF ;
padding :5px 15px ;
margin-right:6px;
border-radius: 6px;
}
.categories .cat .commenting {
background-color:#2c3e50 ;
color:#FFF ;
padding :5px 15px ;
margin-right:6px;
border-radius: 6px;
}
.categories .cat .advertising {
background-color:#c0392b ;
color:#FFF ;
padding :5px 15px ;
margin-right:6px;
border-radius: 6px;
}
/*End Category Page*/
.stu-res {
float: right;
color:#e14646;
} | 0.216798 | 0.10859 |
*{background-color:lightgrey;
font-family:Arial,sans-serif;
padding: 0px;
margin: 0px;
}
/*App Bar*/
h2, #chatter{background-color:#AA00FF;color:white;}
/*Channel List*/
ul{list-style-type:none; background-color:#FFFFFF; }
img{background-color: inherit;}
ul strong{background-color:inherit;}
#select{border-left: 4px solid blue; color:blue;}
li{padding: 16px; height: 16px; box-sizing: content-box; background-color: inherit;}
/*Tab bar*/
.button-tab-bar{
background-color: white;
border: none;
font-size: 13px;
height: 72px;
padding: 16px;
margin:0;
width: 33%;
}
.image{margin: auto; display: block; padding-bottom: 4px;}
.selected{border-bottom: 4px solid blue; color: blue; margin-bottom: 0;}
/*Messages*/
#small{text-transform:uppercase; background-color:inherit;}
#name-channel{background-color: #AA00FF; color: #FFFFFF; height: 62px;}
.message{margin-bottom: 8px;}
h3{font-size:medium; color: black;}
p{background-color: #FFFFFF; padding: 16px;}
button{text-transform:uppercase;background-color:#CDDC39;color: black; margin-bottom: 8px;}
em{font-size:larger;font-style:normal;}
.my-message, .my-message-button{margin-left: 17.5%; margin-right: 2.5%;}
.friends-message, .friends-message-button{margin-left: 2.5%; margin-right: 17.5%;}
h1, small{background-color: #AA00FF; color: #FFFFFF; height: 62px;}
/*Section of channel area*/
#channel-area{
position: absolute;
width: 40%;
left: 0px;
height: 100%;
background-color:white;
}
/*To make change in the style of App bar*/
#app-bar{
font-size: 20px;
font-weight: normal;
font-family: Arial, sans-serif;
height: 62px;
}
#chatter{
text-transform: lowercase;
position: absolute;
line-height: 62px;
left: 80px;
}
#image{
position: absolute;
left:16px;
top: 6px;
}
ul{
height: 600px;
overflow: auto;
}
.chevron{
vertical-align: middle;
position: absolute;
right: 16px;
}
.star{
position: absolute;
right: 40px;
vertical-align: middle;
}
#tab-bar{
display: flex;
justify-content: space-evenly;
align-items: flex-end;
}
/*Section of chat area*/
#chat-area{
position: absolute;
width: 60%;
right: 0px;
height: 100%;
background-color:lightgrey;}
#chatting-area{
height: 600px;
overflow: auto;
}
/* Doing the same for the chat bat*/
.star-chat{
position: relative;
left: 450px;
vertical-align: middle;
}
h1, small{
position: relative;
font-size: 20px;
font-weight: normal;
height: 62px;
line-height: 62px;
font-family: Arial, sans-serif;
}
#name-channel{
position: relative;
left: 16px;
}
.my-message-button, .friends-message-button{
position: absolute;
right: 8px;
margin-top: 8px;
}
.my-send{
margin-left: 17.5%;
margin-right: 2.5%;
display: flex;
justify-content: space-between;
}
.friends-send{
margin-left: 2.5%;
margin-right: 17.5%;
display: flex;
justify-content: space-between;
}
/* Emojis*/
#emojis-button{
background-color: white;
border: none;
margin-left: 16px;
}
#chat-bar{
height: 72px;
background-color: white;
display: flex;
align-items: center;
} | css/style.css | *{background-color:lightgrey;
font-family:Arial,sans-serif;
padding: 0px;
margin: 0px;
}
/*App Bar*/
h2, #chatter{background-color:#AA00FF;color:white;}
/*Channel List*/
ul{list-style-type:none; background-color:#FFFFFF; }
img{background-color: inherit;}
ul strong{background-color:inherit;}
#select{border-left: 4px solid blue; color:blue;}
li{padding: 16px; height: 16px; box-sizing: content-box; background-color: inherit;}
/*Tab bar*/
.button-tab-bar{
background-color: white;
border: none;
font-size: 13px;
height: 72px;
padding: 16px;
margin:0;
width: 33%;
}
.image{margin: auto; display: block; padding-bottom: 4px;}
.selected{border-bottom: 4px solid blue; color: blue; margin-bottom: 0;}
/*Messages*/
#small{text-transform:uppercase; background-color:inherit;}
#name-channel{background-color: #AA00FF; color: #FFFFFF; height: 62px;}
.message{margin-bottom: 8px;}
h3{font-size:medium; color: black;}
p{background-color: #FFFFFF; padding: 16px;}
button{text-transform:uppercase;background-color:#CDDC39;color: black; margin-bottom: 8px;}
em{font-size:larger;font-style:normal;}
.my-message, .my-message-button{margin-left: 17.5%; margin-right: 2.5%;}
.friends-message, .friends-message-button{margin-left: 2.5%; margin-right: 17.5%;}
h1, small{background-color: #AA00FF; color: #FFFFFF; height: 62px;}
/*Section of channel area*/
#channel-area{
position: absolute;
width: 40%;
left: 0px;
height: 100%;
background-color:white;
}
/*To make change in the style of App bar*/
#app-bar{
font-size: 20px;
font-weight: normal;
font-family: Arial, sans-serif;
height: 62px;
}
#chatter{
text-transform: lowercase;
position: absolute;
line-height: 62px;
left: 80px;
}
#image{
position: absolute;
left:16px;
top: 6px;
}
ul{
height: 600px;
overflow: auto;
}
.chevron{
vertical-align: middle;
position: absolute;
right: 16px;
}
.star{
position: absolute;
right: 40px;
vertical-align: middle;
}
#tab-bar{
display: flex;
justify-content: space-evenly;
align-items: flex-end;
}
/*Section of chat area*/
#chat-area{
position: absolute;
width: 60%;
right: 0px;
height: 100%;
background-color:lightgrey;}
#chatting-area{
height: 600px;
overflow: auto;
}
/* Doing the same for the chat bat*/
.star-chat{
position: relative;
left: 450px;
vertical-align: middle;
}
h1, small{
position: relative;
font-size: 20px;
font-weight: normal;
height: 62px;
line-height: 62px;
font-family: Arial, sans-serif;
}
#name-channel{
position: relative;
left: 16px;
}
.my-message-button, .friends-message-button{
position: absolute;
right: 8px;
margin-top: 8px;
}
.my-send{
margin-left: 17.5%;
margin-right: 2.5%;
display: flex;
justify-content: space-between;
}
.friends-send{
margin-left: 2.5%;
margin-right: 17.5%;
display: flex;
justify-content: space-between;
}
/* Emojis*/
#emojis-button{
background-color: white;
border: none;
margin-left: 16px;
}
#chat-bar{
height: 72px;
background-color: white;
display: flex;
align-items: center;
} | 0.349866 | 0.041579 |
.external-link::after {
display: inline-block;
font: normal normal normal 24px/1 MaterialDesignIcons;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: translate(0, 0);
content: "\f3ce";
}
.item {
position: relative;
overflow: hidden; /* for disabling margin-collapse */
padding: 0 10px;
min-height: 16px;
background: #fff;
/*
transition:
padding 0.1s ease-in-out,
margin 0.1s ease-in-out,
height 0.1s ease-in-out,
min-height 0.1s ease-in-out,
box-shadow 0.1s ease-in-out;
*/
border-top: 2px solid transparent;
border-bottom: 2px solid transparent;
}
.item:hover {
border-top: 2px solid #eee;
border-bottom: 2px solid #eee;
}
.item p {
margin: 8px 0;
}
.item-drag {
position: absolute;
top: 0; right: 0; bottom: 0;
width: 16px;
cursor: move;
background-image: url("/client/item/drag.png");
background-repeat: no-repeat repeat;
background-position: center right;
}
.item-editing {
margin: 8px 16px;
padding: 8px;
padding-right: 45px;
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
}
.content-editor .item-type {
text-align: right;
}
.content-editor textarea {
background: transparent;
width: 100%;
height: 100px;
border: 0;
}
.content-editor .editor-buttons {
position: absolute;
right:0; bottom: 0;
width: 45px;
z-index: 10;
padding: 8px;
text-align: center;
}
.content-editor .editor-buttons > * {
text-decoration: none;
background: #FFF;
width: 30px;
margin-bottom: 8px;
text-align: center;
line-height: 30px;
cursor: pointer;
color: #333;
font-size: 20px;
border-radius: 30px;
border: 1px solid #fff;
transition: background 0.2s ease-in-out,
box-shadow 0.1s ease-in-out;
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
box-shadow:
0 6px 10px 0 rgba(0, 0, 0, 0.3),
0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.content-editor .editor-buttons > *:hover {
border: 1px solid #7DC6FF;
}
.content-editor .editor-buttons > *:active {
box-shadow:
0 13px 25px 0 rgba(0, 0, 0, 0.3),
0 11px 7px 0 rgba(0, 0, 0, 0.19);
}
.item-delete:hover {
border: 1px solid #f88 !important;
background: #f88 !important;
}
.item-content textarea {
background: transparent;
width: 100%;
min-height: 80px;
}
.item-content .error {
background: #faa;
padding: 4px;
}
.content-unknown {
border: 1px solid #f00;
padding: 8px;
}
.content-tags {
margin: 8px 0;
}
.content-factory {
padding: 16px 8px;
background: #eee;
}
.content-factory .factory-item {
width: 80px;
margin-right: 10px;
cursor: pointer;
}
.content-tags .tag {
float: left;
display: block;
text-decoration: none;
color: inherit;
border: 1px solid #E5E5E5;
margin-right: 8px;
padding: 0 8px;
font-size: 12px;
transition: border 0.3s ease-in-out;
}
.content-tags .tag:hover {
border: 1px solid #7DC6FF;
}
.content-entry .entry-owner {
float: right;
font-size: 10px;
}
.content-entry .entry-synopsis {
font-size: 12px;
}
.content-code {
white-space: pre;
background: #F2F2F2;
padding: 6px 3px;
margin: 14px 0;
overflow: auto;
font-family: monospace;
}
.content-html {
overflow: auto;
}
.collapse {}
.collapse .collapse-icon { cursor: pointer; }
.collapse .collapse-icon:hover { cursor: pointer; background: #eee; }
.collapse .collapse-opened { display: block; }
.collapse .collapse-closed { display: none; }
.collapse.collapsed .collapse-opened { display: none; }
.collapse.collapsed .collapse-closed { display: block; } | client/item/content.css | .external-link::after {
display: inline-block;
font: normal normal normal 24px/1 MaterialDesignIcons;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: translate(0, 0);
content: "\f3ce";
}
.item {
position: relative;
overflow: hidden; /* for disabling margin-collapse */
padding: 0 10px;
min-height: 16px;
background: #fff;
/*
transition:
padding 0.1s ease-in-out,
margin 0.1s ease-in-out,
height 0.1s ease-in-out,
min-height 0.1s ease-in-out,
box-shadow 0.1s ease-in-out;
*/
border-top: 2px solid transparent;
border-bottom: 2px solid transparent;
}
.item:hover {
border-top: 2px solid #eee;
border-bottom: 2px solid #eee;
}
.item p {
margin: 8px 0;
}
.item-drag {
position: absolute;
top: 0; right: 0; bottom: 0;
width: 16px;
cursor: move;
background-image: url("/client/item/drag.png");
background-repeat: no-repeat repeat;
background-position: center right;
}
.item-editing {
margin: 8px 16px;
padding: 8px;
padding-right: 45px;
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
}
.content-editor .item-type {
text-align: right;
}
.content-editor textarea {
background: transparent;
width: 100%;
height: 100px;
border: 0;
}
.content-editor .editor-buttons {
position: absolute;
right:0; bottom: 0;
width: 45px;
z-index: 10;
padding: 8px;
text-align: center;
}
.content-editor .editor-buttons > * {
text-decoration: none;
background: #FFF;
width: 30px;
margin-bottom: 8px;
text-align: center;
line-height: 30px;
cursor: pointer;
color: #333;
font-size: 20px;
border-radius: 30px;
border: 1px solid #fff;
transition: background 0.2s ease-in-out,
box-shadow 0.1s ease-in-out;
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
box-shadow:
0 6px 10px 0 rgba(0, 0, 0, 0.3),
0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.content-editor .editor-buttons > *:hover {
border: 1px solid #7DC6FF;
}
.content-editor .editor-buttons > *:active {
box-shadow:
0 13px 25px 0 rgba(0, 0, 0, 0.3),
0 11px 7px 0 rgba(0, 0, 0, 0.19);
}
.item-delete:hover {
border: 1px solid #f88 !important;
background: #f88 !important;
}
.item-content textarea {
background: transparent;
width: 100%;
min-height: 80px;
}
.item-content .error {
background: #faa;
padding: 4px;
}
.content-unknown {
border: 1px solid #f00;
padding: 8px;
}
.content-tags {
margin: 8px 0;
}
.content-factory {
padding: 16px 8px;
background: #eee;
}
.content-factory .factory-item {
width: 80px;
margin-right: 10px;
cursor: pointer;
}
.content-tags .tag {
float: left;
display: block;
text-decoration: none;
color: inherit;
border: 1px solid #E5E5E5;
margin-right: 8px;
padding: 0 8px;
font-size: 12px;
transition: border 0.3s ease-in-out;
}
.content-tags .tag:hover {
border: 1px solid #7DC6FF;
}
.content-entry .entry-owner {
float: right;
font-size: 10px;
}
.content-entry .entry-synopsis {
font-size: 12px;
}
.content-code {
white-space: pre;
background: #F2F2F2;
padding: 6px 3px;
margin: 14px 0;
overflow: auto;
font-family: monospace;
}
.content-html {
overflow: auto;
}
.collapse {}
.collapse .collapse-icon { cursor: pointer; }
.collapse .collapse-icon:hover { cursor: pointer; background: #eee; }
.collapse .collapse-opened { display: block; }
.collapse .collapse-closed { display: none; }
.collapse.collapsed .collapse-opened { display: none; }
.collapse.collapsed .collapse-closed { display: block; } | 0.314577 | 0.081996 |
img {
border: 0;
height: auto;
max-width: 100%;
vertical-align: middle;
}
/**
* 4.0 Alignment
*/
.alignleft {
float: left;
margin: 7px 28px 28px 0;
}
.alignright {
float: right;
margin: 7px 0 28px 28px;
}
.aligncenter {
clear: both;
display: block;
margin: 7px auto;
}
/**
* CodeMirror
*/
.CodeMirror {
border: 0;
font-family: 'Consolas','Liberation','Mono','Menlo',Courier,monospace;
font-size: 16px;
line-height: 1.618;
letter-spacing: 0.015em;
color: #404d54;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: subpixel-antialiased;
}
.CodeMirror-lines {
position: relative;
overflow: hidden;
}
.CodeMirror-lines:after {
content: " ";
display: block;
position: absolute;
right: -47.5vw;
top: 0;
bottom: 0;
width: 50vw;
background-color: #fff;
z-index: 999;
}
.CodeMirror-fullscreen .CodeMirror-lines:after {
right: -45vw;
}
.CodeMirror .CodeMirror-selected,
.CodeMirror-selected {
background: #9cd7f7;
}
.CodeMirror-line::selection,
.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection {
background: #d7d4f0;
}
.CodeMirror-cursor {
border-left: 3px solid #9cd7f7;
}
.CodeMirror-fullscreen {
padding: 0;
}
.CodeMirror-lines {
padding: 2.5vw;
max-width: 860px;
margin: auto;
}
.CodeMirror-sided .CodeMirror-lines {
max-width: 100%;
}
.CodeMirror-fullscreen .CodeMirror-lines {
padding: 5vw;
}
.cm-header {
-webkit-font-smoothing: antialiased;
}
.editor-toolbar {
border: 0;
border-bottom: 1px solid #e5e5e5;
}
.editor-toolbar.fullscreen {
border-radius: 0;
border-bottom: 1px solid #e5eff5;
}
.editor-toolbar.fullscreen::before,
.editor-toolbar.fullscreen::after {
display: none;
}
.wp-editor-expand #wp-content-editor-tools {
border: 0;
}
.wp-editor-expand #wp-content-editor-container {
margin-top: 10px;
}
.editor-statusbar {
border-top: 1px solid #e5e5e5;
}
.editor-preview,
.editor-preview-side {
background: #fff;
border: 0;
border-left: 1px solid #e5eff5;
padding: 5vw;
font-size: 1.2rem;
line-height: 1.618;
letter-spacing: 0.015em;
font-family: Georgia,Times,Serif;
}
.editor-preview-active {
padding: calc(3vw + 10px);
max-width: 860px;
margin: auto;
border: 0;
right: 0;
}
@media (min-width:1450px) {
.editor-preview-active {
padding: 5vw 0;
}
}
#poststuff .editor-preview p,
#poststuff .editor-preview-side p {
font-family: Georgia,Times,Serif;
font-size: 1.2rem;
line-height: 1.618;
letter-spacing: 0.015em;
}
#poststuff .editor-preview pre,
#poststuff .editor-preview-side pre {
padding: 0 0.5em;
font-size: 16px;
}
#poststuff .editor-preview pre code,
#poststuff .editor-preview-side pre code {
background: transparent;
padding: 0;
font-size: 16px;
}
#poststuff .editor-preview h1,
#poststuff .editor-preview h2,
#poststuff .editor-preview h3,
#poststuff .editor-preview h4,
#poststuff .editor-preview h5,
#poststuff .editor-preview h6,
#poststuff .editor-preview-side h1,
#poststuff .editor-preview-side h2,
#poststuff .editor-preview-side h3,
#poststuff .editor-preview-side h4,
#poststuff .editor-preview-side h5,
#poststuff .editor-preview-side h6 {
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
font-weight: 600;
line-height: 1.382;
letter-spacing: 0.015em;
padding: 0;
margin-bottom: 0.382em;
}
#poststuff .editor-preview h1,
#poststuff .editor-preview-side h1 {
font-size: 1.8rem;
}
#poststuff .editor-preview h2,
#poststuff .editor-preview-side h2 {
font-size: 1.6rem;
}
#poststuff .editor-preview h3,
#poststuff .editor-preview-side h3 {
font-size: 1.5rem;
}
#poststuff .editor-preview h4,
#poststuff .editor-preview-side h4 {
font-size: 1.4rem;
}
#poststuff .editor-preview h5,
#poststuff .editor-preview-side h5 {
font-size: 1.3rem;
}
#poststuff .editor-preview h6,
#poststuff .editor-preview-side h6 {
font-size: 1.2rem;
}
.wp-editor-tabs,
.quicktags-toolbar {
display: none;
} | www/wp-content/plugins/markdown-editor/assets/styles/style.css | img {
border: 0;
height: auto;
max-width: 100%;
vertical-align: middle;
}
/**
* 4.0 Alignment
*/
.alignleft {
float: left;
margin: 7px 28px 28px 0;
}
.alignright {
float: right;
margin: 7px 0 28px 28px;
}
.aligncenter {
clear: both;
display: block;
margin: 7px auto;
}
/**
* CodeMirror
*/
.CodeMirror {
border: 0;
font-family: 'Consolas','Liberation','Mono','Menlo',Courier,monospace;
font-size: 16px;
line-height: 1.618;
letter-spacing: 0.015em;
color: #404d54;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: subpixel-antialiased;
}
.CodeMirror-lines {
position: relative;
overflow: hidden;
}
.CodeMirror-lines:after {
content: " ";
display: block;
position: absolute;
right: -47.5vw;
top: 0;
bottom: 0;
width: 50vw;
background-color: #fff;
z-index: 999;
}
.CodeMirror-fullscreen .CodeMirror-lines:after {
right: -45vw;
}
.CodeMirror .CodeMirror-selected,
.CodeMirror-selected {
background: #9cd7f7;
}
.CodeMirror-line::selection,
.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection {
background: #d7d4f0;
}
.CodeMirror-cursor {
border-left: 3px solid #9cd7f7;
}
.CodeMirror-fullscreen {
padding: 0;
}
.CodeMirror-lines {
padding: 2.5vw;
max-width: 860px;
margin: auto;
}
.CodeMirror-sided .CodeMirror-lines {
max-width: 100%;
}
.CodeMirror-fullscreen .CodeMirror-lines {
padding: 5vw;
}
.cm-header {
-webkit-font-smoothing: antialiased;
}
.editor-toolbar {
border: 0;
border-bottom: 1px solid #e5e5e5;
}
.editor-toolbar.fullscreen {
border-radius: 0;
border-bottom: 1px solid #e5eff5;
}
.editor-toolbar.fullscreen::before,
.editor-toolbar.fullscreen::after {
display: none;
}
.wp-editor-expand #wp-content-editor-tools {
border: 0;
}
.wp-editor-expand #wp-content-editor-container {
margin-top: 10px;
}
.editor-statusbar {
border-top: 1px solid #e5e5e5;
}
.editor-preview,
.editor-preview-side {
background: #fff;
border: 0;
border-left: 1px solid #e5eff5;
padding: 5vw;
font-size: 1.2rem;
line-height: 1.618;
letter-spacing: 0.015em;
font-family: Georgia,Times,Serif;
}
.editor-preview-active {
padding: calc(3vw + 10px);
max-width: 860px;
margin: auto;
border: 0;
right: 0;
}
@media (min-width:1450px) {
.editor-preview-active {
padding: 5vw 0;
}
}
#poststuff .editor-preview p,
#poststuff .editor-preview-side p {
font-family: Georgia,Times,Serif;
font-size: 1.2rem;
line-height: 1.618;
letter-spacing: 0.015em;
}
#poststuff .editor-preview pre,
#poststuff .editor-preview-side pre {
padding: 0 0.5em;
font-size: 16px;
}
#poststuff .editor-preview pre code,
#poststuff .editor-preview-side pre code {
background: transparent;
padding: 0;
font-size: 16px;
}
#poststuff .editor-preview h1,
#poststuff .editor-preview h2,
#poststuff .editor-preview h3,
#poststuff .editor-preview h4,
#poststuff .editor-preview h5,
#poststuff .editor-preview h6,
#poststuff .editor-preview-side h1,
#poststuff .editor-preview-side h2,
#poststuff .editor-preview-side h3,
#poststuff .editor-preview-side h4,
#poststuff .editor-preview-side h5,
#poststuff .editor-preview-side h6 {
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
font-weight: 600;
line-height: 1.382;
letter-spacing: 0.015em;
padding: 0;
margin-bottom: 0.382em;
}
#poststuff .editor-preview h1,
#poststuff .editor-preview-side h1 {
font-size: 1.8rem;
}
#poststuff .editor-preview h2,
#poststuff .editor-preview-side h2 {
font-size: 1.6rem;
}
#poststuff .editor-preview h3,
#poststuff .editor-preview-side h3 {
font-size: 1.5rem;
}
#poststuff .editor-preview h4,
#poststuff .editor-preview-side h4 {
font-size: 1.4rem;
}
#poststuff .editor-preview h5,
#poststuff .editor-preview-side h5 {
font-size: 1.3rem;
}
#poststuff .editor-preview h6,
#poststuff .editor-preview-side h6 {
font-size: 1.2rem;
}
.wp-editor-tabs,
.quicktags-toolbar {
display: none;
} | 0.450601 | 0.168857 |
body {
font-family: 'Nunito', sans-serif;
color:#595959;
}
hr {
border-top: 5px solid #eee;
border-radius: 5px;
}
/*********************
******* Header
**********************/
.header {
margin-top: 10px;
}
.heading-cont {
text-align: right;
}
.site-title {
font-family: 'Advent Pro', sans-serif;
letter-spacing: 0.1em;
font-size: 3em;
}
@media screen and (max-width: 767px) {
.heading-cont, .logo{
text-align: center;
}
.logo {
display: block;
margin: 0 auto;
}
}
/*********************
******* Slider
**********************/
#slider {
padding: 0;
}
#slider .slides {
list-style: none;
margin: 0;
padding: 0;
}
#slider .slide {
display: none;
max-height: 50vh;
overflow: hidden;
}
#slider .slide-active {
display: block;
}
/*********************
******* Main
**********************/
.work-belt {
margin-top: 40px;
}
.work-unit {
padding: 5px;
margin-bottom: 40px;
}
.work-unit>a {
color: #595959;
text-decoration: none;
}
.work-unit>a:hover .unit-name {
color: tomato;
}
.work-unit .description-cont {
width: 90%;
margin: 10px auto;
position: relative;
}
.description-cont>p {
padding: 5px;
}
.description {
height: 100px;
overflow: hidden;
}
.unit-name {
text-align: center;
position: absolute;
width: 100%;
padding: 10px;
margin: 0;
top: -50px;
background: white;
color: #2F6F9F;
}
/*fade effect at the bottom of work unit*/
.fadeout {
position: absolute;
bottom: 0em;
width:100%;
height: 4em;
background: -webkit-linear-gradient(
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
background-image: -moz-linear-gradient(
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
background-image: -o-linear-gradient(
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
background-image: linear-gradient(
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
background-image: -ms-linear-gradient(
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
}
@media screen and (max-width: 767px) {
.work-unit {
max-width: 90%;
margin: 10px auto 40px;
}
.work-banner {
max-height: 35vh;
overflow: hidden;
}
}
/*********************
******* Footer
**********************/
.site-footer {
text-align: center;
font-size: 1.5em;
padding-bottom: 5em;
}
.site-footer a:hover {
color: tomato;
}
.social-icon svg {
width: 30px;
height: 30px;
}
.site-footer svg path {
fill: #2F6F9F;
}
.site-footer svg:hover path {
fill: tomato;
} | css/style.css | body {
font-family: 'Nunito', sans-serif;
color:#595959;
}
hr {
border-top: 5px solid #eee;
border-radius: 5px;
}
/*********************
******* Header
**********************/
.header {
margin-top: 10px;
}
.heading-cont {
text-align: right;
}
.site-title {
font-family: 'Advent Pro', sans-serif;
letter-spacing: 0.1em;
font-size: 3em;
}
@media screen and (max-width: 767px) {
.heading-cont, .logo{
text-align: center;
}
.logo {
display: block;
margin: 0 auto;
}
}
/*********************
******* Slider
**********************/
#slider {
padding: 0;
}
#slider .slides {
list-style: none;
margin: 0;
padding: 0;
}
#slider .slide {
display: none;
max-height: 50vh;
overflow: hidden;
}
#slider .slide-active {
display: block;
}
/*********************
******* Main
**********************/
.work-belt {
margin-top: 40px;
}
.work-unit {
padding: 5px;
margin-bottom: 40px;
}
.work-unit>a {
color: #595959;
text-decoration: none;
}
.work-unit>a:hover .unit-name {
color: tomato;
}
.work-unit .description-cont {
width: 90%;
margin: 10px auto;
position: relative;
}
.description-cont>p {
padding: 5px;
}
.description {
height: 100px;
overflow: hidden;
}
.unit-name {
text-align: center;
position: absolute;
width: 100%;
padding: 10px;
margin: 0;
top: -50px;
background: white;
color: #2F6F9F;
}
/*fade effect at the bottom of work unit*/
.fadeout {
position: absolute;
bottom: 0em;
width:100%;
height: 4em;
background: -webkit-linear-gradient(
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
background-image: -moz-linear-gradient(
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
background-image: -o-linear-gradient(
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
background-image: linear-gradient(
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
background-image: -ms-linear-gradient(
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
}
@media screen and (max-width: 767px) {
.work-unit {
max-width: 90%;
margin: 10px auto 40px;
}
.work-banner {
max-height: 35vh;
overflow: hidden;
}
}
/*********************
******* Footer
**********************/
.site-footer {
text-align: center;
font-size: 1.5em;
padding-bottom: 5em;
}
.site-footer a:hover {
color: tomato;
}
.social-icon svg {
width: 30px;
height: 30px;
}
.site-footer svg path {
fill: #2F6F9F;
}
.site-footer svg:hover path {
fill: tomato;
} | 0.49707 | 0.097907 |
body {
background-color: #94ac93;
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin: 0;
overflow-x: hidden;
width: auto;
}
/*#94ac93*/
.Eis {
position: relative;
left: -150px;
}
.Kara {
position: absolute;
display: inline-flex;
left: 75px;
top: 385px;
width: 250px;
}
.mio {
position: absolute;
display: inline-flex;
width: 250px;
top: 350px;
right: 0;
transform: translateX(-135%);
}
#LogoBox {
position: relative;
display: flex;
justify-content: center;
left: 10%;
z-index: 1;
}
#LogoTextBox {
position: absolute;
left: -0px;
top: -107px;
text-align: center;
z-index: 1;
margin-right: 25px;
}
.LogoSize {
width: 60%;
}
#BigLogo {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
}
#BubbleText {
position: absolute;
animation: 2s linear 1s blowUp;
display: flex;
justify-content: center;
align-items: center;
background: no-repeat url("../Euroweb Projekt/SvG/speak-bubble.svg");
background-position: 30% 50%;
background-size: cover;
flex-direction: column;
color: rgb(124, 109, 25);
left: 50%;
height: 50%;
width: 50%;
top: 400px;
}
@keyframes blowUp {
0% {
opacity: 0;
transform: scale(0.1) rotate(-60deg);
}
50% {
opacity: 0;
}
100% {
transform: rotate(0deg) scale(1);
opacity: 1;
}
}
.TextFormatBubble {
color: rgb(75, 66, 15);
text-align: center;
font-family: "Century Gothic";
padding-left: 50px;
font-size: 20px;
margin: 0;
}
.TextFormatBubbleSecond {
text-align: center;
padding-left: 50px;
font-size: 20px;
margin: 0;
}
.backgroundPinsel {
background: no-repeat url("../Euroweb Projekt/SvG/Pinsel-Strich-weiß.svg");
background-size: cover;
background-position: 48% 50%;
width: 102%;
height: 1000px;
margin-top: -250px;
z-index: 2;
}
.EisLogo {
position: relative;
right: 190px;
width: 170%;
top: 220px;
}
.EisText {
position: relative;
font-size: 18px;
color: #7a5c44;
top: 220px;
font-family: "Century Gothic";
}
.pinselImage {
position: absolute;
left: 145%;
display: inline-block;
width: 450%;
align-items: center;
transform: translateX(-50%) rotate(20deg);
margin-top: 250px;
}
.pinselLieferImage {
position: absolute;
left: 50%;
display: inline-block;
width: 450%;
align-items: center;
transform: translateX(-50%);
}
.FrauBild {
position: absolute;
z-index: -1;
width: 75%;
left: 44%;
top: 1249px;
}
.EismanuFakturText {
position: relative;
color: #ffffff;
margin-top: -92px;
font-size: 50px;
}
.BioMioText {
position: relative;
font-size: 15px;
color: #ffffff;
left: 7%;
margin-top: 9%;
}
.loeffel {
position: relative;
z-index: 999;
width: 50%;
top: 250px;
transform: rotate(-15deg);
}
.col-6.nuesse {
z-index: 999;
position: relative;
transform: translateY(-50px) rotate(-40deg);
width: 35%;
left: 70%;
top: 200px;
}
.textBio {
z-index: 999;
font-family: Hello Amargo;
}
.textBio.Vegan {
position: relative;
color: #674327;
top: 300px;
font-size: 20px;
}
.textBio.Quali {
position: relative;
color: #674327;
left: 5%;
top: 251px;
font-size: 20px;
}
.textBio.hand {
position: relative;
color: #674327;
right: 5%;
top: 284px;
font-size: 20px;
}
.textBio.liefertext {
position: relative;
top: 70px;
margin-top: 200px;
left: 10%;
color: #674327;
}
.lieferwagen {
position: relative;
width: 1280px;
top: 350px;
}
.TreueButton {
width: 350px;
height: 100px;
border-radius: 10px;
border: 0;
background-color: #ebbb2d;
color: #674327;
font-size: 20px;
text-align: left;
padding: 0 20px;
margin-top: 20px;
transition-duration: 0.4s;
}
.TreueButton:hover {
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.PinselKontakt {
position: absolute;
display: block;
width: 450%;
margin-top: -450px;
align-items: center;
transform: translateX(-45%) translateY(-8%) rotate(180deg) rotateY(180deg);
}
.Oeffnungszeiten {
position: relative;
top: 500px;
}
.textLeft {
position: absolute;
z-index: 999;
color: #674327;
}
.textRight {
position: absolute;
right: 200px;
z-index: 999;
color: #674327;
}
.link {
text-decoration: none;
transition-duration: 0.4s;
color: #674327;
}
.link:hover {
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.header2 {
font-size: 40px;
font-family: Forte;
}
.header3 {
font-family: Forte;
font-size: 30px;
margin-bottom: -35px;
}
.EismanuFakturLeftText {
font-size: 15px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.LieferText {
font-family: Verdana, Geneva, Tahoma, sans-serif;
letter-spacing: 1px;
font-size: 15px;
margin-top: 25px;
}
.bigger {
font-size: 18px;
}
@media (min-width: 320px) and (max-width: 480px) {
body {
width: 105%;
}
#LogoTextBox {
left: -400px;
margin-right: -500px;
top: -80px;
}
.Eis {
position: relative;
left: -43px;
top: 90px;
width: 300%;
}
.Kara {
position: absolute;
display: inline-flex;
left: 219px;
top: 385px;
width: 116px;
}
.mio {
position: absolute;
display: inline-flex;
width: 98px;
top: 375px;
right: 156px;
transform: translateX(-135%);
}
#BubbleText {
height: 23%;
width: 72%;
}
.TextFormatBubble {
font-size: 16px;
padding-top: 0px;
padding-right: 55px;
}
.TextFormatBubbleSecond {
text-align: center;
padding-left: 0px;
font-size: 8px;
}
.EisText {
font-size: 11px;
}
.backgroundPinsel {
margin-top: -182px;
height: 877px;
}
.EisLogo {
right: 107px;
width: 209%;
}
.FrauBild {
width: 132%;
left: 18%;
top: 1092px;
}
.header3 {
font-size: 21px;
}
.EismanuFakturText {
margin-top: -182px;
}
.EismanuFakturLeftText {
font-size: 10px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.BioMioText {
font-size: 10px;
left: -3%;
margin-top: -12%;
}
.pinselImage {
margin-top: -69px;
transform: translateX(-67%) rotate( 20deg);
width: 767%;
}
.loeffel {
height: 80px;
top: 73px;
}
.header2 {
font-size: 28px;
margin: 0;
}
.textBio.Vegan {
top: 66px;
font-size: 9px;
}
.textBio.Quali {
top: 55px;
font-size: 9px;
}
.textBio.hand {
right: 7%;
top: 59px;
font-size: 9px;
}
.col-6.nuesse {
top: 58px;
}
.pinselLieferImage {
left: -8%;
width: 1350%;
transform: translateX(-53%);
margin-top: -17px;
}
.textBio.liefertext {
top: 70px;
margin-top: 72px;
left: 4%;
}
.LieferText {
font-family: Verdana, Geneva, Tahoma, sans-serif;
letter-spacing: 1px;
font-size: 9px;
margin-top: 25px;
}
.bigger {
font-size: 11px;
}
.lieferwagen {
position: relative;
width: 700px;
top: 171px;
left: -62px;
}
.PinselKontakt {
width: 755%;
margin-top: -339px;
}
.textLeft {
top: -109px;
font-size: 9px;
left: 17px;
}
.textRight {
top: -109px;
right: 25px;
font-size: 9px;
}
} | styles.css | body {
background-color: #94ac93;
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin: 0;
overflow-x: hidden;
width: auto;
}
/*#94ac93*/
.Eis {
position: relative;
left: -150px;
}
.Kara {
position: absolute;
display: inline-flex;
left: 75px;
top: 385px;
width: 250px;
}
.mio {
position: absolute;
display: inline-flex;
width: 250px;
top: 350px;
right: 0;
transform: translateX(-135%);
}
#LogoBox {
position: relative;
display: flex;
justify-content: center;
left: 10%;
z-index: 1;
}
#LogoTextBox {
position: absolute;
left: -0px;
top: -107px;
text-align: center;
z-index: 1;
margin-right: 25px;
}
.LogoSize {
width: 60%;
}
#BigLogo {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
}
#BubbleText {
position: absolute;
animation: 2s linear 1s blowUp;
display: flex;
justify-content: center;
align-items: center;
background: no-repeat url("../Euroweb Projekt/SvG/speak-bubble.svg");
background-position: 30% 50%;
background-size: cover;
flex-direction: column;
color: rgb(124, 109, 25);
left: 50%;
height: 50%;
width: 50%;
top: 400px;
}
@keyframes blowUp {
0% {
opacity: 0;
transform: scale(0.1) rotate(-60deg);
}
50% {
opacity: 0;
}
100% {
transform: rotate(0deg) scale(1);
opacity: 1;
}
}
.TextFormatBubble {
color: rgb(75, 66, 15);
text-align: center;
font-family: "Century Gothic";
padding-left: 50px;
font-size: 20px;
margin: 0;
}
.TextFormatBubbleSecond {
text-align: center;
padding-left: 50px;
font-size: 20px;
margin: 0;
}
.backgroundPinsel {
background: no-repeat url("../Euroweb Projekt/SvG/Pinsel-Strich-weiß.svg");
background-size: cover;
background-position: 48% 50%;
width: 102%;
height: 1000px;
margin-top: -250px;
z-index: 2;
}
.EisLogo {
position: relative;
right: 190px;
width: 170%;
top: 220px;
}
.EisText {
position: relative;
font-size: 18px;
color: #7a5c44;
top: 220px;
font-family: "Century Gothic";
}
.pinselImage {
position: absolute;
left: 145%;
display: inline-block;
width: 450%;
align-items: center;
transform: translateX(-50%) rotate(20deg);
margin-top: 250px;
}
.pinselLieferImage {
position: absolute;
left: 50%;
display: inline-block;
width: 450%;
align-items: center;
transform: translateX(-50%);
}
.FrauBild {
position: absolute;
z-index: -1;
width: 75%;
left: 44%;
top: 1249px;
}
.EismanuFakturText {
position: relative;
color: #ffffff;
margin-top: -92px;
font-size: 50px;
}
.BioMioText {
position: relative;
font-size: 15px;
color: #ffffff;
left: 7%;
margin-top: 9%;
}
.loeffel {
position: relative;
z-index: 999;
width: 50%;
top: 250px;
transform: rotate(-15deg);
}
.col-6.nuesse {
z-index: 999;
position: relative;
transform: translateY(-50px) rotate(-40deg);
width: 35%;
left: 70%;
top: 200px;
}
.textBio {
z-index: 999;
font-family: Hello Amargo;
}
.textBio.Vegan {
position: relative;
color: #674327;
top: 300px;
font-size: 20px;
}
.textBio.Quali {
position: relative;
color: #674327;
left: 5%;
top: 251px;
font-size: 20px;
}
.textBio.hand {
position: relative;
color: #674327;
right: 5%;
top: 284px;
font-size: 20px;
}
.textBio.liefertext {
position: relative;
top: 70px;
margin-top: 200px;
left: 10%;
color: #674327;
}
.lieferwagen {
position: relative;
width: 1280px;
top: 350px;
}
.TreueButton {
width: 350px;
height: 100px;
border-radius: 10px;
border: 0;
background-color: #ebbb2d;
color: #674327;
font-size: 20px;
text-align: left;
padding: 0 20px;
margin-top: 20px;
transition-duration: 0.4s;
}
.TreueButton:hover {
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.PinselKontakt {
position: absolute;
display: block;
width: 450%;
margin-top: -450px;
align-items: center;
transform: translateX(-45%) translateY(-8%) rotate(180deg) rotateY(180deg);
}
.Oeffnungszeiten {
position: relative;
top: 500px;
}
.textLeft {
position: absolute;
z-index: 999;
color: #674327;
}
.textRight {
position: absolute;
right: 200px;
z-index: 999;
color: #674327;
}
.link {
text-decoration: none;
transition-duration: 0.4s;
color: #674327;
}
.link:hover {
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.header2 {
font-size: 40px;
font-family: Forte;
}
.header3 {
font-family: Forte;
font-size: 30px;
margin-bottom: -35px;
}
.EismanuFakturLeftText {
font-size: 15px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.LieferText {
font-family: Verdana, Geneva, Tahoma, sans-serif;
letter-spacing: 1px;
font-size: 15px;
margin-top: 25px;
}
.bigger {
font-size: 18px;
}
@media (min-width: 320px) and (max-width: 480px) {
body {
width: 105%;
}
#LogoTextBox {
left: -400px;
margin-right: -500px;
top: -80px;
}
.Eis {
position: relative;
left: -43px;
top: 90px;
width: 300%;
}
.Kara {
position: absolute;
display: inline-flex;
left: 219px;
top: 385px;
width: 116px;
}
.mio {
position: absolute;
display: inline-flex;
width: 98px;
top: 375px;
right: 156px;
transform: translateX(-135%);
}
#BubbleText {
height: 23%;
width: 72%;
}
.TextFormatBubble {
font-size: 16px;
padding-top: 0px;
padding-right: 55px;
}
.TextFormatBubbleSecond {
text-align: center;
padding-left: 0px;
font-size: 8px;
}
.EisText {
font-size: 11px;
}
.backgroundPinsel {
margin-top: -182px;
height: 877px;
}
.EisLogo {
right: 107px;
width: 209%;
}
.FrauBild {
width: 132%;
left: 18%;
top: 1092px;
}
.header3 {
font-size: 21px;
}
.EismanuFakturText {
margin-top: -182px;
}
.EismanuFakturLeftText {
font-size: 10px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.BioMioText {
font-size: 10px;
left: -3%;
margin-top: -12%;
}
.pinselImage {
margin-top: -69px;
transform: translateX(-67%) rotate( 20deg);
width: 767%;
}
.loeffel {
height: 80px;
top: 73px;
}
.header2 {
font-size: 28px;
margin: 0;
}
.textBio.Vegan {
top: 66px;
font-size: 9px;
}
.textBio.Quali {
top: 55px;
font-size: 9px;
}
.textBio.hand {
right: 7%;
top: 59px;
font-size: 9px;
}
.col-6.nuesse {
top: 58px;
}
.pinselLieferImage {
left: -8%;
width: 1350%;
transform: translateX(-53%);
margin-top: -17px;
}
.textBio.liefertext {
top: 70px;
margin-top: 72px;
left: 4%;
}
.LieferText {
font-family: Verdana, Geneva, Tahoma, sans-serif;
letter-spacing: 1px;
font-size: 9px;
margin-top: 25px;
}
.bigger {
font-size: 11px;
}
.lieferwagen {
position: relative;
width: 700px;
top: 171px;
left: -62px;
}
.PinselKontakt {
width: 755%;
margin-top: -339px;
}
.textLeft {
top: -109px;
font-size: 9px;
left: 17px;
}
.textRight {
top: -109px;
right: 25px;
font-size: 9px;
}
} | 0.478285 | 0.064949 |
@import '~@okta/okta-signin-widget/dist/css/okta-theme.css'; */
@import "~bootstrap/dist/css/bootstrap.min.css";
@import "~font-awesome/css/font-awesome.css";
@import "~bootstrap/dist/css/bootstrap.css";
@import "~font-awesome/css/font-awesome.css";
#okta-login-container {
margin: 0 auto;
max-width: 400px;
border: 1px solid silver;
padding: 20px;
box-shadow: 5px 5px 5px 0 silver;
}
a {
cursor: pointer;
}
#okta-login-container input {
margin-bottom: 5px;
width: 100%;
padding: 5px;
}
#okta-login-container input[type=checkbox] {
width: 25px;
}
#okta-login-container {
margin: 0 auto;
max-width: 400px;
border: 1px solid silver;
padding: 20px;
box-shadow: 5px 5px 5px 0 silver;
}
/* Global */
html{
min-height: 100%;
overflow: hidden;
}
body{
height: calc(100vh - 8em);
padding: 4em;
color: black;
font-family: 'Anonymous Pro', monospace;
background-color: white;
}
.line-1{
position: relative;
top: 40%;
width: 24em;
margin: 20px;
border-right: 2px solid rgba(255,255,255,.75);
font-size: 100%;
text-align: center;
white-space: nowrap;
overflow: hidden;
color: black;
transform: translateY(-50%);
}
/* Animation */
.anim-typewriter{
animation: typewriter 4s steps(44) 1s 1 normal both,
blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter{
from{width: 0;}
to{width: 24em;}
}
@keyframes blinkTextCursor{
from{border-right-color: rgba(255,255,255,.75);}
to{border-right-color: transparent;}
}
.typewriter h1 {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: .15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
letter-spacing: .15em; /* Adjust as needed */
animation:
typing 3.5s steps(40, end),
blink-caret .75s step-end infinite;
}
p {
font-size:12px;
}
.thinborder {
border:1px solid #ccc;
width:206px;
height:60px;
background:black;
}
.calcbuttons {
padding:10px;
}
.numberbutton {
width:35px;
}
.operationbutton {
width:35px;
}
#ABC{
width: 60%;
height: 50%;
position: absolute;
}
FORUMS
NEWSLETTER
JOBS
GUIDES
Home » Code Snippets » CSS »
Typewriter Effect
BY <NAME> LAST UPDATED ON DECEMBER 14, 2017
Typewriter Effect
.typewriter h1 {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: .15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
letter-spacing: .15em; /* Adjust as needed */
animation:
typing 3.5s steps(40, end),
blink-caret .75s step-end infinite;
}
/* The typing effect */
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: orange; }
}
.clearbutton {
width:100px;
background-color:green;
color:white;
}
.output {
background:black;
color:lime;
font-family: "Courier New", Courier;
padding:0 10px;
text-align:right;
font-size:14px;
}
.calcbody {
background:#306;
width:210px;
padding:10px;
box-shadow: 5px 5px 5px #888888;
border-radius:12px;
}
/* The typing effect */
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: orange; }
} | frontend/src/app/home/home.component.css | @import '~@okta/okta-signin-widget/dist/css/okta-theme.css'; */
@import "~bootstrap/dist/css/bootstrap.min.css";
@import "~font-awesome/css/font-awesome.css";
@import "~bootstrap/dist/css/bootstrap.css";
@import "~font-awesome/css/font-awesome.css";
#okta-login-container {
margin: 0 auto;
max-width: 400px;
border: 1px solid silver;
padding: 20px;
box-shadow: 5px 5px 5px 0 silver;
}
a {
cursor: pointer;
}
#okta-login-container input {
margin-bottom: 5px;
width: 100%;
padding: 5px;
}
#okta-login-container input[type=checkbox] {
width: 25px;
}
#okta-login-container {
margin: 0 auto;
max-width: 400px;
border: 1px solid silver;
padding: 20px;
box-shadow: 5px 5px 5px 0 silver;
}
/* Global */
html{
min-height: 100%;
overflow: hidden;
}
body{
height: calc(100vh - 8em);
padding: 4em;
color: black;
font-family: 'Anonymous Pro', monospace;
background-color: white;
}
.line-1{
position: relative;
top: 40%;
width: 24em;
margin: 20px;
border-right: 2px solid rgba(255,255,255,.75);
font-size: 100%;
text-align: center;
white-space: nowrap;
overflow: hidden;
color: black;
transform: translateY(-50%);
}
/* Animation */
.anim-typewriter{
animation: typewriter 4s steps(44) 1s 1 normal both,
blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter{
from{width: 0;}
to{width: 24em;}
}
@keyframes blinkTextCursor{
from{border-right-color: rgba(255,255,255,.75);}
to{border-right-color: transparent;}
}
.typewriter h1 {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: .15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
letter-spacing: .15em; /* Adjust as needed */
animation:
typing 3.5s steps(40, end),
blink-caret .75s step-end infinite;
}
p {
font-size:12px;
}
.thinborder {
border:1px solid #ccc;
width:206px;
height:60px;
background:black;
}
.calcbuttons {
padding:10px;
}
.numberbutton {
width:35px;
}
.operationbutton {
width:35px;
}
#ABC{
width: 60%;
height: 50%;
position: absolute;
}
FORUMS
NEWSLETTER
JOBS
GUIDES
Home » Code Snippets » CSS »
Typewriter Effect
BY <NAME> LAST UPDATED ON DECEMBER 14, 2017
Typewriter Effect
.typewriter h1 {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: .15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
letter-spacing: .15em; /* Adjust as needed */
animation:
typing 3.5s steps(40, end),
blink-caret .75s step-end infinite;
}
/* The typing effect */
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: orange; }
}
.clearbutton {
width:100px;
background-color:green;
color:white;
}
.output {
background:black;
color:lime;
font-family: "Courier New", Courier;
padding:0 10px;
text-align:right;
font-size:14px;
}
.calcbody {
background:#306;
width:210px;
padding:10px;
box-shadow: 5px 5px 5px #888888;
border-radius:12px;
}
/* The typing effect */
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: orange; }
} | 0.423935 | 0.062588 |
.typeform-share.buttont:active {
background-image: -moz-linear-gradient(top, #e8e8e8, #dcdcdc);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e8e8e8), to(#dcdcdc));
background-image: -webkit-linear-gradient(top, #e8e8e8, #dcdcdc);
background-image: -o-linear-gradient(top, #e8e8e8, #dcdcdc);
background-image: linear-gradient(to bottom, #e8e8e8, #dcdcdc);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#ffdcdcdc', GradientType=0);
-webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.6), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0);
-moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.6), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0);
box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.6), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0);
}
.typeform-share.buttont:hover {
background-image: -moz-linear-gradient(top, #ffffff, #ededed);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#ededed));
background-image: -webkit-linear-gradient(top, #ffffff, #ededed);
background-image: -o-linear-gradient(top, #ffffff, #ededed);
background-image: linear-gradient(to bottom, #ffffff, #ededed);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffededed', GradientType=0);
-webkit-box-shadow: 0 0 0 transparent, 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0);
-moz-box-shadow: 0 0 0 transparent, 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0);
box-shadow: 0 0 0 transparent, 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0);
}
.typeform-share.buttont {
-webkit-background-clip: border-box;
-webkit-background-origin: padding-box;
-webkit-background-size: auto;
-webkit-border-image: none;
-webkit-user-select: none;
background-attachment: scroll;
background-clip: border-box;
background-color: rgb(238, 238, 238);
background-image: -webkit-linear-gradient(top, rgb(243, 243, 243), rgb(225, 225, 225));
background-origin: padding-box;
background-repeat: repeat-x;
background-size: auto;
border-bottom-color: rgb(165, 165, 165);
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-style: solid;
border-bottom-width: 1px;
border-left-color: rgb(177, 177, 177);
border-left-style: solid;
border-left-width: 1px;
border-right-color: rgb(177, 177, 177);
border-right-style: solid;
border-right-width: 1px;
border-top-color: rgb(207, 207, 207);
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-top-style: solid;
border-top-width: 1px;
color: rgb(85, 85, 85);
cursor: pointer;
display: block;
float: left;
font-family: Arial, sans-serif;
font-size: 12px;
font-style: normal;
font-weight: normal;
line-height: 25px;
list-style-type: none;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
padding-bottom: 2px;
padding-left: 12px;
padding-right: 12px;
padding-top: 3px;
position: relative;
text-align: left;
text-decoration:none !important;
text-shadow: none;
vertical-align: middle;
} | css/form-button.css | .typeform-share.buttont:active {
background-image: -moz-linear-gradient(top, #e8e8e8, #dcdcdc);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e8e8e8), to(#dcdcdc));
background-image: -webkit-linear-gradient(top, #e8e8e8, #dcdcdc);
background-image: -o-linear-gradient(top, #e8e8e8, #dcdcdc);
background-image: linear-gradient(to bottom, #e8e8e8, #dcdcdc);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#ffdcdcdc', GradientType=0);
-webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.6), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0);
-moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.6), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0);
box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.6), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0);
}
.typeform-share.buttont:hover {
background-image: -moz-linear-gradient(top, #ffffff, #ededed);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#ededed));
background-image: -webkit-linear-gradient(top, #ffffff, #ededed);
background-image: -o-linear-gradient(top, #ffffff, #ededed);
background-image: linear-gradient(to bottom, #ffffff, #ededed);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffededed', GradientType=0);
-webkit-box-shadow: 0 0 0 transparent, 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0);
-moz-box-shadow: 0 0 0 transparent, 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0);
box-shadow: 0 0 0 transparent, 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0), 1px 1px 1px rgba(0, 0, 0, 0);
}
.typeform-share.buttont {
-webkit-background-clip: border-box;
-webkit-background-origin: padding-box;
-webkit-background-size: auto;
-webkit-border-image: none;
-webkit-user-select: none;
background-attachment: scroll;
background-clip: border-box;
background-color: rgb(238, 238, 238);
background-image: -webkit-linear-gradient(top, rgb(243, 243, 243), rgb(225, 225, 225));
background-origin: padding-box;
background-repeat: repeat-x;
background-size: auto;
border-bottom-color: rgb(165, 165, 165);
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-style: solid;
border-bottom-width: 1px;
border-left-color: rgb(177, 177, 177);
border-left-style: solid;
border-left-width: 1px;
border-right-color: rgb(177, 177, 177);
border-right-style: solid;
border-right-width: 1px;
border-top-color: rgb(207, 207, 207);
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-top-style: solid;
border-top-width: 1px;
color: rgb(85, 85, 85);
cursor: pointer;
display: block;
float: left;
font-family: Arial, sans-serif;
font-size: 12px;
font-style: normal;
font-weight: normal;
line-height: 25px;
list-style-type: none;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
padding-bottom: 2px;
padding-left: 12px;
padding-right: 12px;
padding-top: 3px;
position: relative;
text-align: left;
text-decoration:none !important;
text-shadow: none;
vertical-align: middle;
} | 0.390127 | 0.244904 |
@font-face {
font-family: 'fontello';
src: url('fonts/fontello.eot?55521422');
src: url('fonts/fontello.eot?55521422#iefix') format('embedded-opentype'),
url('fonts/fontello.woff?55521422') format('woff'),
url('fonts/fontello.ttf?55521422') format('ttf'),
url('fonts/fontello.svg?55521422#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
}
.icon-twitter:before { content: '\e802'; }
.icon-facebook:before { content: '\e800'; }
.icon-gplus:before { content: '\e801'; }
.icon-clock:before { content: '\e803'; margin-right: 0.5em}
.icon-github-circled:before { content: '\e806'; }
.icon-rss:before { content: '\e804'; }
.icon-tag:before { content: '\e805'; }
body { background-color: #f0f0f0; font-family:'Open Sans',sans-serif;}
a{color:#2c3e50;}
a:hover{color:#1abc9c;}
*,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box; }
/***************/
/*MAIN WRAPPERS*/
/***************/
.wrapper_pixel {
width:100%;
height:100%;
max-width: 60em;
margin: 0 auto;
}
.header_pixel{
position: relative;
width:100%;
min-height:350px;
max-height:350px;
padding:3em;
overflow: hidden;
background-color: #2c3e50;
}
.header_pixel.small{
position: fixed;
top:0px;
z-index: 100;
max-width: 60em;
min-height: 80px;
max-height: 180px;
border-bottom: 3px solid rgba(255,255,255,0.8);
background-color: #e0e0e0;
}
.header_pixel.small img{
opacity: 0.9;
}
.header_pixel.small a{
color:#2c3e50;
}
.header_pixel.small .blogtitle_pixel{
margin-top: -0.5em;
margin-bottom: 0em;
padding-bottom: 0.5;
}
.header_pixel.small .menu_list{
display: none;
}
.main_pixel{
width:100%;
margin: 0 auto;
margin-top: 1em;
margin-bottom: 1em;
padding: 2em;
}
.footer_pixel{
width:100%;
padding:1em;
background-color: #3d3d3d;
}
/************/
/*PAGINATION*/
/************/
.pagination_pixel nav{
margin:0 auto;
margin-top: 0em;
text-align: center;
}
.pagination_pixel .page-number{
background-color: #ffffff;
padding:0.5em;
color:#1abc9c;
border-right: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
}
.pagination_pixel .newer-posts,.older-posts{
background-color: #ffffff;
padding:0.5em;
color:#1abc9c;
border-right: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
}
.pagination_pixel .newer-posts:hover,.older-posts:hover{
background-color: #f5f5f5;
color:#3d3d3d;
}
/*******/
/*FONTS*/
/*******/
h1,h2,h3,h4,h5,h6{
font-family:'Exo 2',sans-serif;
font-weight: 300;
color: #5f5f5f;
}
a{
text-decoration: none;
}
h1 a{
font-weight: 200;
}
/********/
/*HEADER*/
/********/
.header_pixel img{
position: absolute;
top:0px;
left: 0px;
z-index: 1;
opacity: 0.5;
width:100%;
min-height: 400px;
-webkit-transition: opacity ease 0.3s;
-moz-transition: opacity ease 0.3s;
-o-transition: opacity ease 0.3s;
transition: opacity ease 0.3s;
}
.header_pixel:hover img{
opacity:0.9;
}
.menu_list{
position: absolute;
top: 0em;
right:1em;
z-index: 10;
padding: 0.5em;
}
.menu_item{
padding: 0.5em ;
color: #1abc9c;
text-align: right;
font-weight: 300;
}
.menu_item:hover{
color: #f0f0f0;
background-color: rgba(0,0,0,0.4);
}
.blogdescription_pixel{
width: 100%;
text-align: center;
}
.blogtitle_pixel a{
display: block;
width: 100%;
position: relative;
z-index: 10;
opacity: 0.8;
text-align: center;
color:#f5f5f5;
font-size: 3em;
font-weight: 200;
padding:5px;
background-color: rgba(0,0,0,0.0);
}
.blogdescription_pixel a{
position: relative;
z-index: 10;
opacity: 0.8;
font-size: 0.9em;
color:#ffffff;
padding:5px;
background-color: rgba(0,0,0,0.0);
}
/********/
/*FOOTER*/
/********/
.footer_pixel{
max-width: 60em;
position: relative;
bottom: 0px;
background-color: #fafafa;
border-right: 1px solid #e0e0e0;
border-top: 1px solid #e0e0e0;
}
.footer_pixel a{
color:#1abc9c;
margin:0px;
font-size: 0.9em;
text-align: center;
}
.footer_pixel p{
color:#e0e0e0;
margin:0px;
font-size: 0.8em;
text-align: center;
}
.postfooter_pixel address{
color:#afafaf;
}
.subscribe_pixel a{
padding:0.8em 0.9em 0.8em 1em;
}
.subscribe_pixel a:hover{
-webkit-border-radius: 3em;
-moz-border-radius: 3em;
border-radius: 3em;
border: 1px solid #e0e0e0;
background-color: #f5f5f5;
}
.subscribe_pixel{
margin-bottom: 1em !important;
}
/************/
/*INDEX POST*/
/************/
.article_pixel{
display: inline-block;
opacity: 1;
position: relative;
z-index: 10;
width:100%;
max-height:190px;
background-color: #ffffff;
margin-bottom: 2em;
padding-bottom: 1em;
border-right: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
}
.post .article_pixel .postheader_pixel{
position: relative;
display: table;
width: 90%;
margin: 0 auto;
padding-bottom: 0.2em;
}
.article_pixel .postheader_pixel h1{
margin-top: 0em;
}
.animate{
-webkit-transition: margin ease 0.3s;
-moz-transition: margin ease 0.3s;
-o-transition: margin ease 0.3s;
transition: margin ease 0.5s;
}
.hide{
opacity:0;
margin-top:-1em;
}
.post .article_pixel{
padding-top: 2em;
padding-bottom: 0em;
}
.image_container{
float:left;
overflow: hidden;
max-height:190px;
width: 30%;
border-right: 1px solid #e0e0e0;
background-color: #2c3e50;
}
.image_container img{
opacity: 0.6;
max-height:190px;
-webkit-transition: opacity ease 0.3s;
-moz-transition: opacity ease 0.3s;
-o-transition: opacity ease 0.3s;
transition: opacity ease 0.3s;
}
.image_container:hover img{
opacity: 1;
}
.post_container{
position: relative;
float:left;
overflow: hidden;
padding: 1.5em 1em 1em 1em;
margin-bottom: 0.5em;
width: 100%;
max-height:180px;
}
.post_container.small{
position: relative;
width: 70%;
}
time{
position: absolute;
right:1em;
top:0.5em;
padding-left:1em;
color:#d0d0d0;
font-size: 0.8em;
}
time span{
color:#e0e0e0;
}
.post time{
right:auto;
top:0.2em;
left: 0em;
}
.posttitle_pixel a{
color:#1abc9c;
font-weight:300;
-webkit-transition: color ease 0.3s;
-moz-transition: color ease 0.3s;
-o-transition: color ease 0.3s;
transition: color ease 0.3s;
}
.main_pixel.post{
position: relative;
z-index: 10;
margin-top: -4em;
}
.posttitle_pixel a:hover{
color:#3d3d3d;
}
.post .posttitle_pixel{
width:100%;
margin: 0 auto;
margin-bottom:0.1em;
margin-top:0.3em !important;
text-align: left;
}
#trampezium{
position: absolute;
left: 0em;
opacity: 0.8;
z-index: 1;
width:100%;
height:30px;
background-color: transparent;
border-bottom: 32px solid #fafafa;
border-left: 32px solid transparent;
border-right: 32px solid transparent;
-moz-box-shadow: inset 0px 0px 0px 20px #666666;
-webkit-box-shadow: inset 0px 0px 0px 20px #666666;
box-shadow: inset 10px 10px 10px 0px #222;
}
.postcontent_pixel{
position: relative;
z-index: 10;
width:100%;
margin: 0 auto;
color:#8f8f8f;
font-weight:300;
}
.post .postcontent_pixel{
width:90%;
}
.postcontent_pixel img{
width:100%;
}
pre{
background-color: #f5f5f5;
padding: 1em;
}
blockquote{
background-color: #fafafa;
padding: 0.5em 2em 0.5em 2em;
border-left: 3px solid #1abc9c;
}
.post p a{
color:#1abc9c;
text-decoration: underline;
-webkit-transition: color ease 0.3s;
-moz-transition: color ease 0.3s;
-o-transition: color ease 0.3s;
transition: color ease 0.3s;
}
.post p a:hover{
color: #3d3d3d;
}
.posttags_pixel{
width:90%;
margin: 0 auto;
margin-bottom:1em;
color: #e0e0e0;
}
.postfooter_pixel{
display: table;
width: 66.67%;
float: left;
margin-top: 2em;
}
.postfooter_pixel address{
position: relative;
float:left;
width:50%;
min-height:50px;
padding-bottom:0.5em;
margin:0 auto;
background-color: #f5f5f5;
border-bottom: 1px solid #e0e0e0;
text-align: center;
overflow: hidden;
border-bottom: 1px solid #e0e0e0;
border-left: 1px solid #ffffff;
}
.authorimage_pixel img{
position: absolute;
top:0;
left:0;
opacity: 0.6;
z-index: 1;
height:100%;
width:100%;
}
.authorname_pixel{
position: relative;
z-index: 10;
color: #3d3d3d;
font-size: 2em;
margin-bottom: 0.2em;
margin-top: 0.8em;
text-shadow: 0px 1px 0px #ffffff;
}
.postfooter_pixel address .footer_header{
z-index: 10;
color: #afafaf;
text-shadow: 0px 1px 0px #ffffff;
}
.authorwebsite_pixel a{
position: relative;
z-index: 10;
color: #1abc9c;
padding-bottom: 1em;
font-size: 0.9em;
-webkit-transition: color ease 0.3s;
-moz-transition: color ease 0.3s;
-o-transition: color ease 0.3s;
transition: color ease 0.3s;
}
.authorwebsite_pixel a:hover{
color: #3d3d3d;
}
.authorbio_pixel{
position: relative;
float:left;
width:50%;
min-height:50px;
margin:0em auto 0em auto;
padding:1em;
text-align: center;
background-color: #ffffff;
border-bottom: 1px solid #e0e0e0;
}
.authorbio_pixel p{
color:#afafaf;
font-size: 0.9em;
}
.footer_header{
position: absolute;
top:-0.5em;
left:1em;
color: #afafaf;
}
.sharepost_pixel{
position: relative;
float: left;
width:33.334%;
margin:0 auto;
margin-top: 2em;
padding:3em 1em 1em 1em;
text-align: center;
background-color: #f5f5f5;
border-bottom: 1px solid #e0e0e0;
}
.sharepost_pixel.big{
width: 100%;
padding-bottom:2em;
}
.sharepost_pixel a{
font-size:2em;
color: #1abc9c;
-webkit-transition: color ease 0.3s;
-moz-transition: color ease 0.3s;
-o-transition: color ease 0.3s;
transition: color ease 0.3s;
}
.sharepost_pixel a:hover{
color: #3d3d3d;
}
.share_pixel{
margin-top:1em;
} | style/style.css | @font-face {
font-family: 'fontello';
src: url('fonts/fontello.eot?55521422');
src: url('fonts/fontello.eot?55521422#iefix') format('embedded-opentype'),
url('fonts/fontello.woff?55521422') format('woff'),
url('fonts/fontello.ttf?55521422') format('ttf'),
url('fonts/fontello.svg?55521422#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
}
.icon-twitter:before { content: '\e802'; }
.icon-facebook:before { content: '\e800'; }
.icon-gplus:before { content: '\e801'; }
.icon-clock:before { content: '\e803'; margin-right: 0.5em}
.icon-github-circled:before { content: '\e806'; }
.icon-rss:before { content: '\e804'; }
.icon-tag:before { content: '\e805'; }
body { background-color: #f0f0f0; font-family:'Open Sans',sans-serif;}
a{color:#2c3e50;}
a:hover{color:#1abc9c;}
*,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box; }
/***************/
/*MAIN WRAPPERS*/
/***************/
.wrapper_pixel {
width:100%;
height:100%;
max-width: 60em;
margin: 0 auto;
}
.header_pixel{
position: relative;
width:100%;
min-height:350px;
max-height:350px;
padding:3em;
overflow: hidden;
background-color: #2c3e50;
}
.header_pixel.small{
position: fixed;
top:0px;
z-index: 100;
max-width: 60em;
min-height: 80px;
max-height: 180px;
border-bottom: 3px solid rgba(255,255,255,0.8);
background-color: #e0e0e0;
}
.header_pixel.small img{
opacity: 0.9;
}
.header_pixel.small a{
color:#2c3e50;
}
.header_pixel.small .blogtitle_pixel{
margin-top: -0.5em;
margin-bottom: 0em;
padding-bottom: 0.5;
}
.header_pixel.small .menu_list{
display: none;
}
.main_pixel{
width:100%;
margin: 0 auto;
margin-top: 1em;
margin-bottom: 1em;
padding: 2em;
}
.footer_pixel{
width:100%;
padding:1em;
background-color: #3d3d3d;
}
/************/
/*PAGINATION*/
/************/
.pagination_pixel nav{
margin:0 auto;
margin-top: 0em;
text-align: center;
}
.pagination_pixel .page-number{
background-color: #ffffff;
padding:0.5em;
color:#1abc9c;
border-right: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
}
.pagination_pixel .newer-posts,.older-posts{
background-color: #ffffff;
padding:0.5em;
color:#1abc9c;
border-right: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
}
.pagination_pixel .newer-posts:hover,.older-posts:hover{
background-color: #f5f5f5;
color:#3d3d3d;
}
/*******/
/*FONTS*/
/*******/
h1,h2,h3,h4,h5,h6{
font-family:'Exo 2',sans-serif;
font-weight: 300;
color: #5f5f5f;
}
a{
text-decoration: none;
}
h1 a{
font-weight: 200;
}
/********/
/*HEADER*/
/********/
.header_pixel img{
position: absolute;
top:0px;
left: 0px;
z-index: 1;
opacity: 0.5;
width:100%;
min-height: 400px;
-webkit-transition: opacity ease 0.3s;
-moz-transition: opacity ease 0.3s;
-o-transition: opacity ease 0.3s;
transition: opacity ease 0.3s;
}
.header_pixel:hover img{
opacity:0.9;
}
.menu_list{
position: absolute;
top: 0em;
right:1em;
z-index: 10;
padding: 0.5em;
}
.menu_item{
padding: 0.5em ;
color: #1abc9c;
text-align: right;
font-weight: 300;
}
.menu_item:hover{
color: #f0f0f0;
background-color: rgba(0,0,0,0.4);
}
.blogdescription_pixel{
width: 100%;
text-align: center;
}
.blogtitle_pixel a{
display: block;
width: 100%;
position: relative;
z-index: 10;
opacity: 0.8;
text-align: center;
color:#f5f5f5;
font-size: 3em;
font-weight: 200;
padding:5px;
background-color: rgba(0,0,0,0.0);
}
.blogdescription_pixel a{
position: relative;
z-index: 10;
opacity: 0.8;
font-size: 0.9em;
color:#ffffff;
padding:5px;
background-color: rgba(0,0,0,0.0);
}
/********/
/*FOOTER*/
/********/
.footer_pixel{
max-width: 60em;
position: relative;
bottom: 0px;
background-color: #fafafa;
border-right: 1px solid #e0e0e0;
border-top: 1px solid #e0e0e0;
}
.footer_pixel a{
color:#1abc9c;
margin:0px;
font-size: 0.9em;
text-align: center;
}
.footer_pixel p{
color:#e0e0e0;
margin:0px;
font-size: 0.8em;
text-align: center;
}
.postfooter_pixel address{
color:#afafaf;
}
.subscribe_pixel a{
padding:0.8em 0.9em 0.8em 1em;
}
.subscribe_pixel a:hover{
-webkit-border-radius: 3em;
-moz-border-radius: 3em;
border-radius: 3em;
border: 1px solid #e0e0e0;
background-color: #f5f5f5;
}
.subscribe_pixel{
margin-bottom: 1em !important;
}
/************/
/*INDEX POST*/
/************/
.article_pixel{
display: inline-block;
opacity: 1;
position: relative;
z-index: 10;
width:100%;
max-height:190px;
background-color: #ffffff;
margin-bottom: 2em;
padding-bottom: 1em;
border-right: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
}
.post .article_pixel .postheader_pixel{
position: relative;
display: table;
width: 90%;
margin: 0 auto;
padding-bottom: 0.2em;
}
.article_pixel .postheader_pixel h1{
margin-top: 0em;
}
.animate{
-webkit-transition: margin ease 0.3s;
-moz-transition: margin ease 0.3s;
-o-transition: margin ease 0.3s;
transition: margin ease 0.5s;
}
.hide{
opacity:0;
margin-top:-1em;
}
.post .article_pixel{
padding-top: 2em;
padding-bottom: 0em;
}
.image_container{
float:left;
overflow: hidden;
max-height:190px;
width: 30%;
border-right: 1px solid #e0e0e0;
background-color: #2c3e50;
}
.image_container img{
opacity: 0.6;
max-height:190px;
-webkit-transition: opacity ease 0.3s;
-moz-transition: opacity ease 0.3s;
-o-transition: opacity ease 0.3s;
transition: opacity ease 0.3s;
}
.image_container:hover img{
opacity: 1;
}
.post_container{
position: relative;
float:left;
overflow: hidden;
padding: 1.5em 1em 1em 1em;
margin-bottom: 0.5em;
width: 100%;
max-height:180px;
}
.post_container.small{
position: relative;
width: 70%;
}
time{
position: absolute;
right:1em;
top:0.5em;
padding-left:1em;
color:#d0d0d0;
font-size: 0.8em;
}
time span{
color:#e0e0e0;
}
.post time{
right:auto;
top:0.2em;
left: 0em;
}
.posttitle_pixel a{
color:#1abc9c;
font-weight:300;
-webkit-transition: color ease 0.3s;
-moz-transition: color ease 0.3s;
-o-transition: color ease 0.3s;
transition: color ease 0.3s;
}
.main_pixel.post{
position: relative;
z-index: 10;
margin-top: -4em;
}
.posttitle_pixel a:hover{
color:#3d3d3d;
}
.post .posttitle_pixel{
width:100%;
margin: 0 auto;
margin-bottom:0.1em;
margin-top:0.3em !important;
text-align: left;
}
#trampezium{
position: absolute;
left: 0em;
opacity: 0.8;
z-index: 1;
width:100%;
height:30px;
background-color: transparent;
border-bottom: 32px solid #fafafa;
border-left: 32px solid transparent;
border-right: 32px solid transparent;
-moz-box-shadow: inset 0px 0px 0px 20px #666666;
-webkit-box-shadow: inset 0px 0px 0px 20px #666666;
box-shadow: inset 10px 10px 10px 0px #222;
}
.postcontent_pixel{
position: relative;
z-index: 10;
width:100%;
margin: 0 auto;
color:#8f8f8f;
font-weight:300;
}
.post .postcontent_pixel{
width:90%;
}
.postcontent_pixel img{
width:100%;
}
pre{
background-color: #f5f5f5;
padding: 1em;
}
blockquote{
background-color: #fafafa;
padding: 0.5em 2em 0.5em 2em;
border-left: 3px solid #1abc9c;
}
.post p a{
color:#1abc9c;
text-decoration: underline;
-webkit-transition: color ease 0.3s;
-moz-transition: color ease 0.3s;
-o-transition: color ease 0.3s;
transition: color ease 0.3s;
}
.post p a:hover{
color: #3d3d3d;
}
.posttags_pixel{
width:90%;
margin: 0 auto;
margin-bottom:1em;
color: #e0e0e0;
}
.postfooter_pixel{
display: table;
width: 66.67%;
float: left;
margin-top: 2em;
}
.postfooter_pixel address{
position: relative;
float:left;
width:50%;
min-height:50px;
padding-bottom:0.5em;
margin:0 auto;
background-color: #f5f5f5;
border-bottom: 1px solid #e0e0e0;
text-align: center;
overflow: hidden;
border-bottom: 1px solid #e0e0e0;
border-left: 1px solid #ffffff;
}
.authorimage_pixel img{
position: absolute;
top:0;
left:0;
opacity: 0.6;
z-index: 1;
height:100%;
width:100%;
}
.authorname_pixel{
position: relative;
z-index: 10;
color: #3d3d3d;
font-size: 2em;
margin-bottom: 0.2em;
margin-top: 0.8em;
text-shadow: 0px 1px 0px #ffffff;
}
.postfooter_pixel address .footer_header{
z-index: 10;
color: #afafaf;
text-shadow: 0px 1px 0px #ffffff;
}
.authorwebsite_pixel a{
position: relative;
z-index: 10;
color: #1abc9c;
padding-bottom: 1em;
font-size: 0.9em;
-webkit-transition: color ease 0.3s;
-moz-transition: color ease 0.3s;
-o-transition: color ease 0.3s;
transition: color ease 0.3s;
}
.authorwebsite_pixel a:hover{
color: #3d3d3d;
}
.authorbio_pixel{
position: relative;
float:left;
width:50%;
min-height:50px;
margin:0em auto 0em auto;
padding:1em;
text-align: center;
background-color: #ffffff;
border-bottom: 1px solid #e0e0e0;
}
.authorbio_pixel p{
color:#afafaf;
font-size: 0.9em;
}
.footer_header{
position: absolute;
top:-0.5em;
left:1em;
color: #afafaf;
}
.sharepost_pixel{
position: relative;
float: left;
width:33.334%;
margin:0 auto;
margin-top: 2em;
padding:3em 1em 1em 1em;
text-align: center;
background-color: #f5f5f5;
border-bottom: 1px solid #e0e0e0;
}
.sharepost_pixel.big{
width: 100%;
padding-bottom:2em;
}
.sharepost_pixel a{
font-size:2em;
color: #1abc9c;
-webkit-transition: color ease 0.3s;
-moz-transition: color ease 0.3s;
-o-transition: color ease 0.3s;
transition: color ease 0.3s;
}
.sharepost_pixel a:hover{
color: #3d3d3d;
}
.share_pixel{
margin-top:1em;
} | 0.290176 | 0.066539 |
@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,500,700');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
background-color: rgb(235, 235, 235);
color: rgb(152, 152, 152);
font-family: 'Ubuntu', sans-serif;
}
.container {
width: 535px;
margin: 50px auto;
display: flex;
flex-direction: column;
background: #fff;
border-radius: 5px;
box-shadow: 2px 2px 5px 1px rgb(152, 152, 152), -4px -2px 10px -1px rgb(152, 152, 152);
}
.cart-row {
display: flex;
padding: 10px 20px;
text-align: left;
align-items: center;
}
/* BORDERS UNDER ITEM ROWS */
hr {
width: 495px;
margin: 0 auto;
opacity: 0.5;
}
/* ITEMS ALIGN IN ROW */
.row-item-1 {
width: 230px;
padding: 10px 10px 10px 0;
}
.row-item-2 {
width: 150px;
padding: 10px;
}
.row-item-3 {
width: 100px;
padding: 10px;
}
/* *** CART HEADER *** */
header {
background-color: rgb(245, 245, 245);
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.header h2 {
font-size: 1rem;
font-weight: 400;
}
/* PRODUCT NAME AND DESCRIPTION BLOCK */
.product-item h3, .product-item p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.product-item h3 {
font-size: 1.1rem;
}
.product-item p {
font-size: 0.8rem;
}
/* *** ITEM QUANTITY INPUT FIELD *** */
.inputs {
display: flex;
}
.row-item-2 input {
width: 60px;
height: 38px;
padding-left: 10px;
}
/* *** ITEM QUANTITY ARROWS *** */
.row-item-2 .input-arrows {
display: flex;
flex-direction: column;
width: 40px;
border: 1px solid rgb(152, 152, 152);
background: linear-gradient(#f2f2f2, #ccc), #f2f2f2;
border-left: none;
text-align: center;
height: 38px;
}
.row-item-2 .input-arrows a {
color: rgb(152, 152, 152);
font-weight: 500;
/*
transition-property: background;
transition-duration: 0.7s;
transition-timing-function: ease;
*/
}
.row-item-2 .input-arrows a:first-child {
border-bottom: 1px solid rgb(152, 152, 152);
}
.row-item-2 .input-arrows a:active {
background: linear-gradient(#ccc, #f2f2f2), #f2f2f2;
border-bottom: 1px solid rgb(152, 152, 152);
height: 18px;
}
/* PRICE BLOCKS */
.price {
padding-left: 20px;
line-height: 40px;
color: rgb(255, 127, 102);
font-weight: 600;
}
/* DELETE BUTTONS */
.delete button {
border: none;
background-color: transparent;
color: inherit;
cursor: pointer;
font-size: inherit;
}
.delete button .fa {
align-self: center;
}
/* *** DROPDOWN MENU DELIVERY OPTIONS *** */
.cart-row select {
width: 150px;
height: 38px;
padding-left: 10px;
color: inherit;
font-family: inherit;
margin-left: 48px;
}
/* TOTAL ITEMS / summary*/
.summary {
text-align: right;
font-size: 0.9rem;
}
.summary .price {
font-size: 1rem;
}
.summary .row-item-3 {
width: auto;
}
/* BUTTONS */
.buttons {
margin-bottom: 40px;
justify-content: space-around;
}
.update-button, .checkout-button {
width: 150px;
height: 38px;
border-radius: 5px;
font-family: inherit;
border: none;
color: #fff;
cursor: pointer;
}
.update-button {
background-color: rgb(153, 153, 153);
}
.checkout-button {
background-color: rgb(255, 127, 102);
} | 07.12 shopping cart/styles.css | @import url('https://fonts.googleapis.com/css?family=Ubuntu:400,500,700');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
background-color: rgb(235, 235, 235);
color: rgb(152, 152, 152);
font-family: 'Ubuntu', sans-serif;
}
.container {
width: 535px;
margin: 50px auto;
display: flex;
flex-direction: column;
background: #fff;
border-radius: 5px;
box-shadow: 2px 2px 5px 1px rgb(152, 152, 152), -4px -2px 10px -1px rgb(152, 152, 152);
}
.cart-row {
display: flex;
padding: 10px 20px;
text-align: left;
align-items: center;
}
/* BORDERS UNDER ITEM ROWS */
hr {
width: 495px;
margin: 0 auto;
opacity: 0.5;
}
/* ITEMS ALIGN IN ROW */
.row-item-1 {
width: 230px;
padding: 10px 10px 10px 0;
}
.row-item-2 {
width: 150px;
padding: 10px;
}
.row-item-3 {
width: 100px;
padding: 10px;
}
/* *** CART HEADER *** */
header {
background-color: rgb(245, 245, 245);
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.header h2 {
font-size: 1rem;
font-weight: 400;
}
/* PRODUCT NAME AND DESCRIPTION BLOCK */
.product-item h3, .product-item p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.product-item h3 {
font-size: 1.1rem;
}
.product-item p {
font-size: 0.8rem;
}
/* *** ITEM QUANTITY INPUT FIELD *** */
.inputs {
display: flex;
}
.row-item-2 input {
width: 60px;
height: 38px;
padding-left: 10px;
}
/* *** ITEM QUANTITY ARROWS *** */
.row-item-2 .input-arrows {
display: flex;
flex-direction: column;
width: 40px;
border: 1px solid rgb(152, 152, 152);
background: linear-gradient(#f2f2f2, #ccc), #f2f2f2;
border-left: none;
text-align: center;
height: 38px;
}
.row-item-2 .input-arrows a {
color: rgb(152, 152, 152);
font-weight: 500;
/*
transition-property: background;
transition-duration: 0.7s;
transition-timing-function: ease;
*/
}
.row-item-2 .input-arrows a:first-child {
border-bottom: 1px solid rgb(152, 152, 152);
}
.row-item-2 .input-arrows a:active {
background: linear-gradient(#ccc, #f2f2f2), #f2f2f2;
border-bottom: 1px solid rgb(152, 152, 152);
height: 18px;
}
/* PRICE BLOCKS */
.price {
padding-left: 20px;
line-height: 40px;
color: rgb(255, 127, 102);
font-weight: 600;
}
/* DELETE BUTTONS */
.delete button {
border: none;
background-color: transparent;
color: inherit;
cursor: pointer;
font-size: inherit;
}
.delete button .fa {
align-self: center;
}
/* *** DROPDOWN MENU DELIVERY OPTIONS *** */
.cart-row select {
width: 150px;
height: 38px;
padding-left: 10px;
color: inherit;
font-family: inherit;
margin-left: 48px;
}
/* TOTAL ITEMS / summary*/
.summary {
text-align: right;
font-size: 0.9rem;
}
.summary .price {
font-size: 1rem;
}
.summary .row-item-3 {
width: auto;
}
/* BUTTONS */
.buttons {
margin-bottom: 40px;
justify-content: space-around;
}
.update-button, .checkout-button {
width: 150px;
height: 38px;
border-radius: 5px;
font-family: inherit;
border: none;
color: #fff;
cursor: pointer;
}
.update-button {
background-color: rgb(153, 153, 153);
}
.checkout-button {
background-color: rgb(255, 127, 102);
} | 0.394318 | 0.076201 |
body{
text-align: center;
}
h1 {
font-size: 4rem;
color: #ffffff;
display: inline-block;
margin-top: 15px;
font-family: 'Anton', sans-serif;
font-weight: normal;
}
h2 {
font-size: 2.5rem;
}
h3 {
font-family: 'Roboto Condensed', sans-serif;
font-weight: normal;
font-size: 2.5rem;
color: #BE0000;
}
p {
font-size: 1.5rem;
text-align: center;
padding: 0 7%;
font-family: arial;
}
a {
text-decoration: none;
color: white;
}
ul {
list-style-type: none;
margin:0 ;
padding: 0;
overflow: hidden;
display: inline-block;
}
li {
display: inline;
font-family: 'Oswald', sans-serif;
font-size: 1.8rem;
font-weight: bold;
margin: 0 20px ;
float: right;
}
header {
background-color: #BE0000;
color: #fff;
padding: 1rem;
font-size: 1.3rem;
}
.logo{
border: 10px double #F7EA00;
border-radius: 100%;
width: 500px;
height: 120px;
margin: 10px 20px ;
display: inline-block;
}
main {
margin: 40px 0 ;
height: 4400px;
}
.top-container {
color: #F7EA00;
position: relative;
}
.intro-text{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: 'Roboto Condensed', sans-serif;
font-size: 8rem;
font-weight: lighter;
width: 1800px;
margin: 0;
}
.intro-img{
width: 100%;
height: auto;
}
.breaks{
height: 30px;
width: 80%;
margin: 40px auto;
background-color: #BE0000;
}
.about {
margin: 70px 0;
}
.cookies {
background-color:#BE0000 ;
padding: 70px 0 150px;
}
.about-tit, .cookies-tit, .shops-tit {
font-size: 6rem;
color: #BE0000;
margin: 20px 20px 40px;
font-family: 'Anton', sans-serif;
font-weight: normal;
}
.cookies-tit{
color: #F7EA00;
}
.about-img{
width: 320px;
height: 320px;
border-radius: 100%;
border: 2px solid #E48900;
margin: 40px 50px;
}
.col {
margin: 40px 15px;
text-align: left;
}
.middle-col{
margin: 150px 0 80px 0;
}
.col-tit {
color: #F7EA00;
font-family: 'Bebas Neue', cursive;
font-size: 4rem;
margin-bottom: 10px;
}
.cookies-img{
float: left;
width: 350px;
height: 350px;
margin: 20px 50px;
border-radius: 100%;
}
.right{
float: right;
}
.col p {
text-align: left;
color: rgb(248, 244, 179);
font-size: 1.5rem;
}
.middle-col h3{
margin-left: 117.34px;
}
.middle-col p{
width: 55%;
display: inline-block;
}
.fa, .fas {
font-size: 2rem;
color: #BE0000;
margin: 10px 20px;
opacity: 60%;
}
.shops{
margin-top: 70px;
}
.col2 {
display: inline-block;
width: 30%;
margin: 40px 15px;
box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
padding: 0 0 50px;
}
.col2 p {
text-align: left;
font-family: 'Oswald', sans-serif;
font-size: 1rem;
font-weight: bold;
}
footer {
background-color: #BE0000;
height: 100px;
color: #F7EA00;
font-family: 'Oswald', sans-serif;
font-size: 1.5rem;
font-weight: bold;
box-sizing: border-box;
padding-top: 30px;
margin-top: 50px;
} | css/main-style.css | body{
text-align: center;
}
h1 {
font-size: 4rem;
color: #ffffff;
display: inline-block;
margin-top: 15px;
font-family: 'Anton', sans-serif;
font-weight: normal;
}
h2 {
font-size: 2.5rem;
}
h3 {
font-family: 'Roboto Condensed', sans-serif;
font-weight: normal;
font-size: 2.5rem;
color: #BE0000;
}
p {
font-size: 1.5rem;
text-align: center;
padding: 0 7%;
font-family: arial;
}
a {
text-decoration: none;
color: white;
}
ul {
list-style-type: none;
margin:0 ;
padding: 0;
overflow: hidden;
display: inline-block;
}
li {
display: inline;
font-family: 'Oswald', sans-serif;
font-size: 1.8rem;
font-weight: bold;
margin: 0 20px ;
float: right;
}
header {
background-color: #BE0000;
color: #fff;
padding: 1rem;
font-size: 1.3rem;
}
.logo{
border: 10px double #F7EA00;
border-radius: 100%;
width: 500px;
height: 120px;
margin: 10px 20px ;
display: inline-block;
}
main {
margin: 40px 0 ;
height: 4400px;
}
.top-container {
color: #F7EA00;
position: relative;
}
.intro-text{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: 'Roboto Condensed', sans-serif;
font-size: 8rem;
font-weight: lighter;
width: 1800px;
margin: 0;
}
.intro-img{
width: 100%;
height: auto;
}
.breaks{
height: 30px;
width: 80%;
margin: 40px auto;
background-color: #BE0000;
}
.about {
margin: 70px 0;
}
.cookies {
background-color:#BE0000 ;
padding: 70px 0 150px;
}
.about-tit, .cookies-tit, .shops-tit {
font-size: 6rem;
color: #BE0000;
margin: 20px 20px 40px;
font-family: 'Anton', sans-serif;
font-weight: normal;
}
.cookies-tit{
color: #F7EA00;
}
.about-img{
width: 320px;
height: 320px;
border-radius: 100%;
border: 2px solid #E48900;
margin: 40px 50px;
}
.col {
margin: 40px 15px;
text-align: left;
}
.middle-col{
margin: 150px 0 80px 0;
}
.col-tit {
color: #F7EA00;
font-family: 'Bebas Neue', cursive;
font-size: 4rem;
margin-bottom: 10px;
}
.cookies-img{
float: left;
width: 350px;
height: 350px;
margin: 20px 50px;
border-radius: 100%;
}
.right{
float: right;
}
.col p {
text-align: left;
color: rgb(248, 244, 179);
font-size: 1.5rem;
}
.middle-col h3{
margin-left: 117.34px;
}
.middle-col p{
width: 55%;
display: inline-block;
}
.fa, .fas {
font-size: 2rem;
color: #BE0000;
margin: 10px 20px;
opacity: 60%;
}
.shops{
margin-top: 70px;
}
.col2 {
display: inline-block;
width: 30%;
margin: 40px 15px;
box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
padding: 0 0 50px;
}
.col2 p {
text-align: left;
font-family: 'Oswald', sans-serif;
font-size: 1rem;
font-weight: bold;
}
footer {
background-color: #BE0000;
height: 100px;
color: #F7EA00;
font-family: 'Oswald', sans-serif;
font-size: 1.5rem;
font-weight: bold;
box-sizing: border-box;
padding-top: 30px;
margin-top: 50px;
} | 0.447943 | 0.119024 |
button {
cursor: pointer;
position: relative;
margin-right: 7px;
font-size: 12px;
padding: 3px;
border: none;
outline: none;
background-color: transparent;
}
button * {
pointer-events: none;
}
button::before {
content: attr(data-title);
position: absolute;
display: none;
right: 0;
top: -50px;
background-color: rgba(0, 0, 0, 0.6);
color: #fff;
font-weight: bold;
padding: 4px 6px;
word-break: keep-all;
white-space: pre;
}
button:hover::before {
display: inline-block;
}
input[type=range] {
-webkit-appearance: none;
-moz-appearance: none;
height: 8.4px;
background: transparent;
cursor: pointer;
}
input[type=range]:focus {
outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
cursor: pointer;
border-radius: 1.3px;
-webkit-appearance: none;
transition: all 0.4s ease;
}
input[type=range]::-webkit-slider-thumb {
height: 16px;
width: 16px;
border-radius: 16px;
background: var(--youtube-red);
cursor: pointer;
-webkit-appearance: none;
margin-left: -1px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
background: transparent;
}
input[type=range].volume {
height: 5px;
background-color: #fff;
}
input[type=range].volume::-webkit-slider-runnable-track {
background-color: transparent;
}
input[type=range].volume::-webkit-slider-thumb {
margin-left: 0;
height: 14px;
width: 14px;
background: #fff;
}
input[type=range]::-moz-range-track {
width: 100%;
height: 8.4px;
cursor: pointer;
border: 1px solid transparent;
background: transparent;
border-radius: 1.3px;
}
input[type=range]::-moz-range-thumb {
height: 14px;
width: 14px;
border-radius: 50px;
border: 1px solid var(--youtube-red);
background: var(--youtube-red);
cursor: pointer;
margin-top: 5px;
}
input[type=range]:focus::-moz-range-track {
outline: none;
}
input[type=range].volume::-moz-range-thumb {
border: 1px solid #fff;
background: #fff;
}
.hidden {
display: none;
}
svg {
width: 28px;
height: 28px;
fill: #fff;
stroke: #fff;
cursor: pointer;
} | skins/default/base.css | button {
cursor: pointer;
position: relative;
margin-right: 7px;
font-size: 12px;
padding: 3px;
border: none;
outline: none;
background-color: transparent;
}
button * {
pointer-events: none;
}
button::before {
content: attr(data-title);
position: absolute;
display: none;
right: 0;
top: -50px;
background-color: rgba(0, 0, 0, 0.6);
color: #fff;
font-weight: bold;
padding: 4px 6px;
word-break: keep-all;
white-space: pre;
}
button:hover::before {
display: inline-block;
}
input[type=range] {
-webkit-appearance: none;
-moz-appearance: none;
height: 8.4px;
background: transparent;
cursor: pointer;
}
input[type=range]:focus {
outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
cursor: pointer;
border-radius: 1.3px;
-webkit-appearance: none;
transition: all 0.4s ease;
}
input[type=range]::-webkit-slider-thumb {
height: 16px;
width: 16px;
border-radius: 16px;
background: var(--youtube-red);
cursor: pointer;
-webkit-appearance: none;
margin-left: -1px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
background: transparent;
}
input[type=range].volume {
height: 5px;
background-color: #fff;
}
input[type=range].volume::-webkit-slider-runnable-track {
background-color: transparent;
}
input[type=range].volume::-webkit-slider-thumb {
margin-left: 0;
height: 14px;
width: 14px;
background: #fff;
}
input[type=range]::-moz-range-track {
width: 100%;
height: 8.4px;
cursor: pointer;
border: 1px solid transparent;
background: transparent;
border-radius: 1.3px;
}
input[type=range]::-moz-range-thumb {
height: 14px;
width: 14px;
border-radius: 50px;
border: 1px solid var(--youtube-red);
background: var(--youtube-red);
cursor: pointer;
margin-top: 5px;
}
input[type=range]:focus::-moz-range-track {
outline: none;
}
input[type=range].volume::-moz-range-thumb {
border: 1px solid #fff;
background: #fff;
}
.hidden {
display: none;
}
svg {
width: 28px;
height: 28px;
fill: #fff;
stroke: #fff;
cursor: pointer;
} | 0.316898 | 0.043548 |
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body,
html {
background-color: #fff;
font-family: 'Montserrat';
font-weight: 500;
letter-spacing: 0.3px;
white-space: 1px;
font-family: 'JannaLT-Regular';
}
img {
max-width: 100%;
}
ul {
list-style: none;
}
a {
text-decoration: none;
color: #000;
}
.wrapper {
display: flex;
}
.al-center {
align-items: center;
}
.jst-center {
justify-content: center;
}
.jst-btw {
justify-content: space-between;
}
.mgb-0 {
margin-bottom: 0 !important;
}
.mgt-0 {
margin-top: 0 !important;
}
.mgr-0 {
margin-right: 0 !important;
}
.mgl-0 {
margin-left: 0 !important;
}
.uppercase {
text-transform: uppercase;
}
.capitalize {
text-transform: capitalize;
}
.container-f {
max-width: 1196px;
margin: 0 auto;
padding: 0 15px;
}
.container-m {
max-width: 1062px;
margin: 0 auto;
padding: 0 15px;
}
.m-btn {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
border-radius: 25px;
transition: all 0.3s ease-in-out;
width: 133px;
height: 40px;
font-family: 'Almarai', sans-serif;
font-weight: 400;
font-size: 15px;
border: none;
outline: none;
cursor: pointer;
}
.btn:hover {
transition: all 0.3s ease-in-out;
}
/* ******************************
mujtmah-almusmamen section start
******************************* */
.mujtmah-almusmamen {
padding: 85px 0 105px 0;
background-color: #1F5098;
}
.mujtmah-almusmamen-heading-wrapper {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 50px;
}
.sub-heading-box {
margin-bottom: 0px;
}
.red-dot {
width: 11px;
height: 11px;
background-color: #D83554;
margin-bottom: 3px;
transform: translate(10px);
}
.sub-heading-box__heading {
font-size: 18px;
color: #1EA9D4;
line-height: 1;
}
.heading-box {
margin-bottom: 45px;
}
.mujtmah-heading-box {
margin: 0 auto;
width: 242px;
}
.mujtmah-almusmamen__heading {
font-size: 43px;
font-family: 'JannaLT-Bold';
color: #fff;
text-shadow: 0 6px 6px rgb(0 0 0 / 16%);
}
.heading-box__underline {
background-color: #fff;
width: 58px;
margin-right: 16px;
height: 2px;
border-radius: 25%;
}
.mujtmah-almusmamen__para {
color: #fff;
font-size: 18px;
text-align: center;
margin-bottom: 55px;
}
.mujtmah-almusmamen-btn {
background-color: #1EA9D4;
color: #fff;
font-size: 15px;
line-height: 1;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
transition: all 0.3s ease-in-out;
font-family: 'Segoe UI';
}
.mujtmah-almusmamen-btn:hover {
transition: all 0.3s ease-in-out;
background-color: #fff;
color: #1F5098;
}
.mujtmah-box {
width: 51%;
}
.mujtmah-box2 {
width: 45%;
}
.mujtmah-box__content {
max-width: 374px;
margin-bottom: 35px;
}
.mujtmah-box__heading {
font-size: 43px;
color: #1EA9D4;
font-family: 'JannaLT-Bold';
text-shadow: 0 6px 6px rgb(0 0 0 / 16%);
margin-bottom: 20px;
}
.mujtmah-box__para {
color: #fff;
font-size: 18px;
line-height: 1.2;
margin-bottom: 40px;
}
.mujtmah-box-btn {
background-color: #1EA9D4;
color: #fff;
transition: all 0.5s ease-in-out;
font-family: 'Segoe UI';
}
.mujtmah-box-btn:hover {
text-decoration: underline;
transition: all 0.5s ease-in-out;
}
.btn-white {
background-color: #fff;
color: #1F5098;
margin-left: 30px;
font-family: 'Almarai', sans-serif;
}
.mujtmah-box-btn__img {
width: 12px;
height: auto;
margin-left: 10px;
transition: all 0.5s ease-in-out;
}
.mujtmah-box-btn__img2 {
width: 15px;
margin-left: 10px;
}
.mujtmah-box__count-heading {
color: #fff;
font-size: 43px;
font-family: 'JannaLT-Bold';
line-height: 1;
}
.mujtmah-box__media {
position: relative;
}
.mujtmah-box__count {
position: absolute;
bottom: 0;
right: 0;
width: 80px;
}
.mujtmah-box__count-sub-heading {
font-size: 18px;
font-family: 'JannaLT-Regular';
line-height: 1;
color: #1EA9D4;
}
.mujtmah-box__count2 {
position: absolute;
top: 0;
width: 80px;
left: 0;
}
/* ******************************
mujtmah-almusmamen section end
******************************* */
/* ******************************
almuntjat section start
******************************* */
.almuntjat-form {
padding: 50px 100px 150px 100px;
}
.sub-heading-box__heading--b {
color: #000;
font-family: 'JannaLT-bold';
margin-bottom: 15px;
}
.b2 {
margin-bottom: 35px;
}
.almuntjat-form__img-label {
position: relative;
z-index: 0;
cursor: pointer;
}
.almuntjat-form__img-label-text {
position: absolute;
top: 48px;
left: 63px;
z-index: 1;
color: #fff;
}
.almuntjat-form__img-input {
display: none;
}
.almuntjat-form__input-wrapper {
margin-bottom: 48px;
}
.almuntjat-form {
width: 100%;
}
.almuntjat-form__wasaf-input {
width: 100%;
border: 4px solid #E3E9EC;
border-radius: 10px;
min-height: 128px;
outline: none;
padding: 20px 15px;
color: #E3E9EC;
}
.almuntjat-form__wasaf-input::placeholder {
color: #E3E9EC;
}
.almuntjat-form__wasaf-input:focus {
border: 4px solid #1F5098;
color: #1F5098;
}
.almuntjat-form__input {
width: 100%;
border: 4px solid #E3E9EC;
border-radius: 25px;
outline: none;
padding: 5px 15px;
color: #E3E9EC;
height: 40px;
}
.almuntjat-form__input::placeholder {
color: #E3E9EC;
}
.almuntjat-form__input:focus {
border: 4px solid #1F5098;
color: #1F5098;
}
.form-inner-wrapper {
flex-wrap: wrap;
margin-bottom: 50px;
}
.almuntjat-form__box {
width: 31%;
margin-bottom: 30px;
}
.almuntjat-form__input.failed::placeholder {
color: #D83554;
}
.almuntjat-form__input.failed {
border: 4px solid #D83554;
color: #D83554;
}
.almuntjat-form__input.failed:focus {
border: 4px solid #D83554;
color: #D83554;
}
.input-holder {
position: relative;
}
.input-holder__img {
position: absolute;
width: 12px;
top: calc(50% - 6px);
left: 15px;
}
.almuntjat-form-error {
padding: 10px 20px;
height: 60px;
background-color: #1F5098;
border-radius: 13px;
width: 100%;
display: flex;
align-items: center;
color: #fff;
font-size: 18px;
line-height: 1;
margin-bottom: 52px;
}
.almuntjat-form-error__img {
width: 24px;
height: auto;
margin-left: 45px;
margin-bottom: 0 !important;
}
.almuntjat-form__btn {
background-color: #1F5098;
box-shadow: 0px 12px 6px rgb(0 0 0 / 16%);
margin: 0 auto 30px auto;
color: #fff;
}
.almuntjat-form__text {
font-size: 18px;
color: #58595B;
text-align: center;
}
.ahs-member-model-box {
width: 260px;
}
.ahs-from-box {
position: relative;
}
.ahs-from-box .input-holder__img {
top: calc(50% + 18px);
left: 25px;
margin: 0 !important;
}
.ahs-img-uploder-cam__holder {
position: relative;
width: 150px;
margin: auto;
}
.ahs-img-uploder-cam__holder2 {
width: 100px;
}
.ahs-img-uploder-cam {
position: absolute;
width: 34px;
height: auto;
bottom: -40px;
right: 0;
}
.inner-line2 {
border: 1px solid #215099;
background-color: #215099;
position: absolute;
width: 60px;
box-shadow: 0 6px 6px rgb(0 0 0 / 16%);
bottom: -7px;
}
.nav-tabs .nav-link {
margin: 0 -20px !important;
}
.container-x {
margin-top: 40px;
margin-bottom: -20px;
}
.terms-wrapper {
justify-content: center;
text-align: center;
}
.term-cond {
font-size: 18px;
margin-left: 15px;
}
.terms-link {
font-size: 18px;
color: #1F5098;
text-decoration: underline;
}
.container-x2 {
max-width: 910px !important;
}
.new-account-box {
margin-top: 170px;
text-align: center;
}
.new-account {
font-size: 18px;
color: #1F5098;
margin: 0 auto;
text-align: center;
}
.modal.login .ahs-from-action {
padding-top: 0 !important;
}
.modal.page .modal-body {
padding: 0;
overflow-x: hidden;
}
.forget-password {
font-size: 18px;
color: #1F5098;
margin-top: 10px !important;
}
.forget-password:hover {
color: #1F5098;
text-decoration: underline;
}
.forget-password-box {
margin-top: 10px;
}
.ahs-form-head1 {
font-size: 20px;
font-weight: 600;
color: #1EA9D4;
}
.ahs-form-head2 {
font-size: 20px;
font-weight: 400;
}
.ahs-form-box1 {
margin: 0 auto;
justify-content: center;
text-align: center;
align-items: center;
margin-bottom: 20px;
}
.ahs-form-img1 {
width: 12px;
margin: 0 !important;
margin-right: 50px !important;
}
.ahs-form-box1-box {
display: flex;
justify-content: center;
margin-bottom: 30px;
}
.edit-profile--ahs {
margin-left: 20px;
}
.ahs-profile-plus-btn {
color: #1EA9D4;
font-size: 20px;
background: none;
border: none;
outline: none;
margin-right: 20px;
}
.ahs-profile-plus {
font-size: 20px;
}
.ahs-profile-plus-btn.disabled {
color: #E0E0DE;
}
/* ******************************
almuntjat section end
******************************* */
/* ********************
MEDIA QUERIES
********************* */
@media(max-width:1200px) {
.container-m {
max-width: 1024px;
}
}
@media(max-width:1024px) {
.container-m {
max-width: 768px;
}
.mujtmah-box__heading,
.mujtmah-box__count-heading {
font-size: 36px;
}
.mujtmah-box__para {
font-size: 16px;
}
/* mujtmah-almusmamen section end */
/* almuntjat-form section start */
/* almuntjat-form section end */
.almuntjat-form {
padding: 50px 0px 150px 0px;
}
}
@media(max-width:767px) {
.container-m {
max-width: 360pxpx;
}
.mujtmah-almusmamen {
padding: 50px 0;
}
.mujtmah-almusmamen-wrapper {
flex-wrap: wrap;
}
.mujtmah-box2,
.mujtmah-box {
width: 100%;
}
.mujtmah-box {
margin-bottom: 70px;
}
.mujtmah-box {
display: flex;
flex-direction: column-reverse;
}
/* mujtmah-almusmamen section end */
/* almuntjat-form section start */
/* almuntjat-form section end */
.almuntjat-form__box {
width: 100%;
}
}
/* ********************
MEDIA QUERIES end
********************* */ | public/user/assets/css/ahsan.css | * {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body,
html {
background-color: #fff;
font-family: 'Montserrat';
font-weight: 500;
letter-spacing: 0.3px;
white-space: 1px;
font-family: 'JannaLT-Regular';
}
img {
max-width: 100%;
}
ul {
list-style: none;
}
a {
text-decoration: none;
color: #000;
}
.wrapper {
display: flex;
}
.al-center {
align-items: center;
}
.jst-center {
justify-content: center;
}
.jst-btw {
justify-content: space-between;
}
.mgb-0 {
margin-bottom: 0 !important;
}
.mgt-0 {
margin-top: 0 !important;
}
.mgr-0 {
margin-right: 0 !important;
}
.mgl-0 {
margin-left: 0 !important;
}
.uppercase {
text-transform: uppercase;
}
.capitalize {
text-transform: capitalize;
}
.container-f {
max-width: 1196px;
margin: 0 auto;
padding: 0 15px;
}
.container-m {
max-width: 1062px;
margin: 0 auto;
padding: 0 15px;
}
.m-btn {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
border-radius: 25px;
transition: all 0.3s ease-in-out;
width: 133px;
height: 40px;
font-family: 'Almarai', sans-serif;
font-weight: 400;
font-size: 15px;
border: none;
outline: none;
cursor: pointer;
}
.btn:hover {
transition: all 0.3s ease-in-out;
}
/* ******************************
mujtmah-almusmamen section start
******************************* */
.mujtmah-almusmamen {
padding: 85px 0 105px 0;
background-color: #1F5098;
}
.mujtmah-almusmamen-heading-wrapper {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 50px;
}
.sub-heading-box {
margin-bottom: 0px;
}
.red-dot {
width: 11px;
height: 11px;
background-color: #D83554;
margin-bottom: 3px;
transform: translate(10px);
}
.sub-heading-box__heading {
font-size: 18px;
color: #1EA9D4;
line-height: 1;
}
.heading-box {
margin-bottom: 45px;
}
.mujtmah-heading-box {
margin: 0 auto;
width: 242px;
}
.mujtmah-almusmamen__heading {
font-size: 43px;
font-family: 'JannaLT-Bold';
color: #fff;
text-shadow: 0 6px 6px rgb(0 0 0 / 16%);
}
.heading-box__underline {
background-color: #fff;
width: 58px;
margin-right: 16px;
height: 2px;
border-radius: 25%;
}
.mujtmah-almusmamen__para {
color: #fff;
font-size: 18px;
text-align: center;
margin-bottom: 55px;
}
.mujtmah-almusmamen-btn {
background-color: #1EA9D4;
color: #fff;
font-size: 15px;
line-height: 1;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
transition: all 0.3s ease-in-out;
font-family: 'Segoe UI';
}
.mujtmah-almusmamen-btn:hover {
transition: all 0.3s ease-in-out;
background-color: #fff;
color: #1F5098;
}
.mujtmah-box {
width: 51%;
}
.mujtmah-box2 {
width: 45%;
}
.mujtmah-box__content {
max-width: 374px;
margin-bottom: 35px;
}
.mujtmah-box__heading {
font-size: 43px;
color: #1EA9D4;
font-family: 'JannaLT-Bold';
text-shadow: 0 6px 6px rgb(0 0 0 / 16%);
margin-bottom: 20px;
}
.mujtmah-box__para {
color: #fff;
font-size: 18px;
line-height: 1.2;
margin-bottom: 40px;
}
.mujtmah-box-btn {
background-color: #1EA9D4;
color: #fff;
transition: all 0.5s ease-in-out;
font-family: 'Segoe UI';
}
.mujtmah-box-btn:hover {
text-decoration: underline;
transition: all 0.5s ease-in-out;
}
.btn-white {
background-color: #fff;
color: #1F5098;
margin-left: 30px;
font-family: 'Almarai', sans-serif;
}
.mujtmah-box-btn__img {
width: 12px;
height: auto;
margin-left: 10px;
transition: all 0.5s ease-in-out;
}
.mujtmah-box-btn__img2 {
width: 15px;
margin-left: 10px;
}
.mujtmah-box__count-heading {
color: #fff;
font-size: 43px;
font-family: 'JannaLT-Bold';
line-height: 1;
}
.mujtmah-box__media {
position: relative;
}
.mujtmah-box__count {
position: absolute;
bottom: 0;
right: 0;
width: 80px;
}
.mujtmah-box__count-sub-heading {
font-size: 18px;
font-family: 'JannaLT-Regular';
line-height: 1;
color: #1EA9D4;
}
.mujtmah-box__count2 {
position: absolute;
top: 0;
width: 80px;
left: 0;
}
/* ******************************
mujtmah-almusmamen section end
******************************* */
/* ******************************
almuntjat section start
******************************* */
.almuntjat-form {
padding: 50px 100px 150px 100px;
}
.sub-heading-box__heading--b {
color: #000;
font-family: 'JannaLT-bold';
margin-bottom: 15px;
}
.b2 {
margin-bottom: 35px;
}
.almuntjat-form__img-label {
position: relative;
z-index: 0;
cursor: pointer;
}
.almuntjat-form__img-label-text {
position: absolute;
top: 48px;
left: 63px;
z-index: 1;
color: #fff;
}
.almuntjat-form__img-input {
display: none;
}
.almuntjat-form__input-wrapper {
margin-bottom: 48px;
}
.almuntjat-form {
width: 100%;
}
.almuntjat-form__wasaf-input {
width: 100%;
border: 4px solid #E3E9EC;
border-radius: 10px;
min-height: 128px;
outline: none;
padding: 20px 15px;
color: #E3E9EC;
}
.almuntjat-form__wasaf-input::placeholder {
color: #E3E9EC;
}
.almuntjat-form__wasaf-input:focus {
border: 4px solid #1F5098;
color: #1F5098;
}
.almuntjat-form__input {
width: 100%;
border: 4px solid #E3E9EC;
border-radius: 25px;
outline: none;
padding: 5px 15px;
color: #E3E9EC;
height: 40px;
}
.almuntjat-form__input::placeholder {
color: #E3E9EC;
}
.almuntjat-form__input:focus {
border: 4px solid #1F5098;
color: #1F5098;
}
.form-inner-wrapper {
flex-wrap: wrap;
margin-bottom: 50px;
}
.almuntjat-form__box {
width: 31%;
margin-bottom: 30px;
}
.almuntjat-form__input.failed::placeholder {
color: #D83554;
}
.almuntjat-form__input.failed {
border: 4px solid #D83554;
color: #D83554;
}
.almuntjat-form__input.failed:focus {
border: 4px solid #D83554;
color: #D83554;
}
.input-holder {
position: relative;
}
.input-holder__img {
position: absolute;
width: 12px;
top: calc(50% - 6px);
left: 15px;
}
.almuntjat-form-error {
padding: 10px 20px;
height: 60px;
background-color: #1F5098;
border-radius: 13px;
width: 100%;
display: flex;
align-items: center;
color: #fff;
font-size: 18px;
line-height: 1;
margin-bottom: 52px;
}
.almuntjat-form-error__img {
width: 24px;
height: auto;
margin-left: 45px;
margin-bottom: 0 !important;
}
.almuntjat-form__btn {
background-color: #1F5098;
box-shadow: 0px 12px 6px rgb(0 0 0 / 16%);
margin: 0 auto 30px auto;
color: #fff;
}
.almuntjat-form__text {
font-size: 18px;
color: #58595B;
text-align: center;
}
.ahs-member-model-box {
width: 260px;
}
.ahs-from-box {
position: relative;
}
.ahs-from-box .input-holder__img {
top: calc(50% + 18px);
left: 25px;
margin: 0 !important;
}
.ahs-img-uploder-cam__holder {
position: relative;
width: 150px;
margin: auto;
}
.ahs-img-uploder-cam__holder2 {
width: 100px;
}
.ahs-img-uploder-cam {
position: absolute;
width: 34px;
height: auto;
bottom: -40px;
right: 0;
}
.inner-line2 {
border: 1px solid #215099;
background-color: #215099;
position: absolute;
width: 60px;
box-shadow: 0 6px 6px rgb(0 0 0 / 16%);
bottom: -7px;
}
.nav-tabs .nav-link {
margin: 0 -20px !important;
}
.container-x {
margin-top: 40px;
margin-bottom: -20px;
}
.terms-wrapper {
justify-content: center;
text-align: center;
}
.term-cond {
font-size: 18px;
margin-left: 15px;
}
.terms-link {
font-size: 18px;
color: #1F5098;
text-decoration: underline;
}
.container-x2 {
max-width: 910px !important;
}
.new-account-box {
margin-top: 170px;
text-align: center;
}
.new-account {
font-size: 18px;
color: #1F5098;
margin: 0 auto;
text-align: center;
}
.modal.login .ahs-from-action {
padding-top: 0 !important;
}
.modal.page .modal-body {
padding: 0;
overflow-x: hidden;
}
.forget-password {
font-size: 18px;
color: #1F5098;
margin-top: 10px !important;
}
.forget-password:hover {
color: #1F5098;
text-decoration: underline;
}
.forget-password-box {
margin-top: 10px;
}
.ahs-form-head1 {
font-size: 20px;
font-weight: 600;
color: #1EA9D4;
}
.ahs-form-head2 {
font-size: 20px;
font-weight: 400;
}
.ahs-form-box1 {
margin: 0 auto;
justify-content: center;
text-align: center;
align-items: center;
margin-bottom: 20px;
}
.ahs-form-img1 {
width: 12px;
margin: 0 !important;
margin-right: 50px !important;
}
.ahs-form-box1-box {
display: flex;
justify-content: center;
margin-bottom: 30px;
}
.edit-profile--ahs {
margin-left: 20px;
}
.ahs-profile-plus-btn {
color: #1EA9D4;
font-size: 20px;
background: none;
border: none;
outline: none;
margin-right: 20px;
}
.ahs-profile-plus {
font-size: 20px;
}
.ahs-profile-plus-btn.disabled {
color: #E0E0DE;
}
/* ******************************
almuntjat section end
******************************* */
/* ********************
MEDIA QUERIES
********************* */
@media(max-width:1200px) {
.container-m {
max-width: 1024px;
}
}
@media(max-width:1024px) {
.container-m {
max-width: 768px;
}
.mujtmah-box__heading,
.mujtmah-box__count-heading {
font-size: 36px;
}
.mujtmah-box__para {
font-size: 16px;
}
/* mujtmah-almusmamen section end */
/* almuntjat-form section start */
/* almuntjat-form section end */
.almuntjat-form {
padding: 50px 0px 150px 0px;
}
}
@media(max-width:767px) {
.container-m {
max-width: 360pxpx;
}
.mujtmah-almusmamen {
padding: 50px 0;
}
.mujtmah-almusmamen-wrapper {
flex-wrap: wrap;
}
.mujtmah-box2,
.mujtmah-box {
width: 100%;
}
.mujtmah-box {
margin-bottom: 70px;
}
.mujtmah-box {
display: flex;
flex-direction: column-reverse;
}
/* mujtmah-almusmamen section end */
/* almuntjat-form section start */
/* almuntjat-form section end */
.almuntjat-form__box {
width: 100%;
}
}
/* ********************
MEDIA QUERIES end
********************* */ | 0.456894 | 0.11689 |
.active-bg-menu {
position: fixed;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
transition: all .3s ease;
top: 0; }
* {
outline: 0 !important; }
img {
margin: 0 auto !important; }
nav .open a {
background-color: unset !important; }
nav .open a:hover {
background-color: unset !important; }
nav .open a:focus {
background-color: unset !important; }
.form-control:focus {
box-shadow: unset;
border-color: unset; }
@media (min-width: 1200px) {
.container-menu {
width: 1000px !important; } }
h5 {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; }
.navbar-collapse {
padding-right: 0;
padding-left: 0; }
.nav > li > a > img {
max-width: 100%; }
.nav-pills > li + li {
margin-left: 0; }
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
background-color: #fff; }
.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
background-color: unset !important; }
.show-search {
opacity: 1 !important;
visibility: visible !important; }
/*slick*/
.slider {
width: 100%;
margin: 0 auto; }
.slick-slide {
margin: 0px 20px; }
.slick-slide {
transition: all ease-in-out .3s;
opacity: 1; }
.slick-active {
opacity: 1; }
.slick-current {
opacity: 1; }
/*end slick*/
ul.breadcrumb {
padding: 15px 0;
list-style: none;
background: #fff; }
/* Display list items side by side */
ul.breadcrumb li {
display: inline; }
/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
padding: 5px 10px;
font-family: Poppins;
font-weight: 500;
font-size: 16px;
color: black;
color: #888888;
content: ">"; }
/* Add a color to all links inside the list */
ul.breadcrumb li a {
font-family: Poppins;
font-weight: 500;
font-size: 14px;
color: black;
color: #888888;
text-decoration: none; }
ul.breadcrumb li:last-child a {
color: black;
font-weight: bold; }
/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
color: black;
text-decoration: none; }
@media all and (min-width: 320px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1) {
clear: none; }
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: left; } }
@media all and (min-width: 768px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1) {
clear: left; } }
@media all and (min-width: 992px) {
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1) {
clear: left; } }
@media (min-width: 1200px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1) {
clear: left; } }
.panel {
box-shadow: unset;
border-radius: 0; }
/*--------------------------------ui----------------------------*/
.ui-slider .ui-slider-handle {
border-radius: 50%;
width: 14px;
height: 14px;
cursor: pointer;
background: none;
background-color: black;
border: none;
outline: none; }
.ui-slider-range {
background: none;
background-color: black;
border: none; }
#slider-3 {
border: none;
height: 5px;
border-radius: 0;
background: #9a9a9a; }
.range-p input {
border: 0;
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
outline: 0; }
/*end*/
/*---------*/
.active-btn {
background: black !important;
color: #fff; }
/*custom select*/
.select-hidden {
display: none;
visibility: hidden;
padding-right: 10px; }
.select {
cursor: pointer;
display: inline-block;
position: relative;
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
width: 154px;
height: 36px;
margin-left: 20px; }
.select:nth-child(2) {
width: 70px;
height: 36px;
margin-left: 0; }
.select-styled {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #eeeeee;
padding: 8px 15px;
transition: all 0.2s ease-in; }
.select-styled:after {
content: "\f107";
position: absolute;
top: 8px;
right: 12px;
font-size: 16px;
font-weight: 600;
font-family: Font Awesome\ 5 Free; }
.select-styled:active:after, .select-styled.active:after {
transform: rotate(180deg); }
.select-options {
display: none;
position: absolute;
top: 100%;
right: 0;
left: 0;
z-index: 999;
margin: 0;
padding: 0;
list-style: none;
background-color: #f2f2f2; }
.select-options li {
margin: 0;
padding: 12px 0;
text-indent: 15px;
border-top: 1px solid #e6e6e6;
transition: all 0.15s ease-in; }
.select-options li:hover {
color: #c0392b;
background: #fff; }
.select-options li[rel="hide"] {
display: none; }
/*----end----*/
figure.bg-input {
position: relative; }
figure.bg-input::before {
content: '';
display: inline-block;
width: 60px;
height: 36px;
background: #eeeeee;
position: absolute;
bottom: 8px;
z-index: -1;
left: -15px; }
figure.bg-input::after {
content: '';
display: inline-block;
width: 60px;
height: 36px;
background: #eeeeee;
position: absolute;
bottom: 8px;
z-index: -1;
left: 78px; }
/*------tab--------*/
.nav-tabs {
border-bottom: 0; }
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
border: 0;
background-color: transparent; }
.nav-tabs > li > a {
border: 0; }
/*----*/
@-webkit-keyframes shine-left {
100% {
right: 100%; } }
@keyframes shine-left {
100% {
right: 100%; } }
/*-----*/
@-webkit-keyframes shine-right {
100% {
left: 100%; } }
@keyframes shine-right {
100% {
left: 100%; } }
.carousel-caption {
text-shadow: unset; }
.active-bg-menu {
position: fixed;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
transition: all .3s ease;
top: 0; }
* {
outline: 0 !important; }
img {
margin: 0 auto !important; }
nav .open a {
background-color: unset !important; }
nav .open a:hover {
background-color: unset !important; }
nav .open a:focus {
background-color: unset !important; }
.form-control:focus {
box-shadow: unset;
border-color: unset; }
@media (min-width: 1200px) {
.container-menu {
width: 1000px !important; } }
h5 {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; }
.navbar-collapse {
padding-right: 0;
padding-left: 0; }
.nav > li > a > img {
max-width: 100%; }
.nav-pills > li + li {
margin-left: 0; }
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
background-color: #fff; }
.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
background-color: unset !important; }
.show-search {
opacity: 1 !important;
visibility: visible !important; }
/*slick*/
.slider {
width: 100%;
margin: 0 auto; }
.slick-slide {
margin: 0px 20px; }
.slick-slide {
transition: all ease-in-out .3s;
opacity: 1; }
.slick-active {
opacity: 1; }
.slick-current {
opacity: 1; }
/*end slick*/
ul.breadcrumb {
padding: 15px 0;
list-style: none;
background: #fff; }
/* Display list items side by side */
ul.breadcrumb li {
display: inline; }
/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
padding: 5px 10px;
font-family: Poppins;
font-weight: 500;
font-size: 16px;
color: black;
color: #888888;
content: ">"; }
/* Add a color to all links inside the list */
ul.breadcrumb li a {
font-family: Poppins;
font-weight: 500;
font-size: 14px;
color: black;
color: #888888;
text-decoration: none; }
ul.breadcrumb li:last-child a {
color: black;
font-weight: bold; }
/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
color: black;
text-decoration: none; }
@media all and (min-width: 320px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1) {
clear: none; }
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: left; } }
@media all and (min-width: 768px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1) {
clear: left; } }
@media all and (min-width: 992px) {
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1) {
clear: left; } }
@media (min-width: 1200px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1) {
clear: left; } }
.panel {
box-shadow: unset;
border-radius: 0; }
/*--------------------------------ui----------------------------*/
.ui-slider .ui-slider-handle {
border-radius: 50%;
width: 14px;
height: 14px;
cursor: pointer;
background: none;
background-color: black;
border: none;
outline: none; }
.ui-slider-range {
background: none;
background-color: black;
border: none; }
#slider-3 {
border: none;
height: 5px;
border-radius: 0;
background: #9a9a9a; }
.range-p input {
border: 0;
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
outline: 0; }
/*end*/
/*---------*/
.active-btn {
background: black !important;
color: #fff; }
/*custom select*/
.select-hidden {
display: none;
visibility: hidden;
padding-right: 10px; }
.select {
cursor: pointer;
display: inline-block;
position: relative;
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
width: 154px;
height: 36px;
margin-left: 20px; }
.select:nth-child(2) {
width: 70px;
height: 36px;
margin-left: 0; }
.select-styled {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #eeeeee;
padding: 8px 15px;
transition: all 0.2s ease-in; }
.select-styled:after {
content: "\f107";
position: absolute;
top: 8px;
right: 12px;
font-size: 16px;
font-weight: 600;
font-family: Font Awesome\ 5 Free; }
.select-styled:active:after, .select-styled.active:after {
transform: rotate(180deg); }
.select-options {
display: none;
position: absolute;
top: 100%;
right: 0;
left: 0;
z-index: 999;
margin: 0;
padding: 0;
list-style: none;
background-color: #f2f2f2; }
.select-options li {
margin: 0;
padding: 12px 0;
text-indent: 15px;
border-top: 1px solid #e6e6e6;
transition: all 0.15s ease-in; }
.select-options li:hover {
color: #c0392b;
background: #fff; }
.select-options li[rel="hide"] {
display: none; }
/*----end----*/
figure.bg-input {
position: relative; }
figure.bg-input::before {
content: '';
display: inline-block;
width: 60px;
height: 36px;
background: #eeeeee;
position: absolute;
bottom: 8px;
z-index: -1;
left: -15px; }
figure.bg-input::after {
content: '';
display: inline-block;
width: 60px;
height: 36px;
background: #eeeeee;
position: absolute;
bottom: 8px;
z-index: -1;
left: 78px; }
/*------tab--------*/
.nav-tabs {
border-bottom: 0; }
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
border: 0;
background-color: transparent; }
.nav-tabs > li > a {
border: 0; }
/*----*/
@-webkit-keyframes shine-left {
100% {
right: 100%; } }
@keyframes shine-left {
100% {
right: 100%; } }
/*-----*/
@-webkit-keyframes shine-right {
100% {
left: 100%; } }
@keyframes shine-right {
100% {
left: 100%; } }
.carousel-caption {
text-shadow: unset; }
.input-number-group {
display: flex; }
.input-number-group input[type=number]::-webkit-inner-spin-button,
.input-number-group input[type=number]::-webkit-outer-spin-button {
appearance: none; }
.input-number-group .input-group-button {
line-height: calc(80px/2-10px); }
.input-number-group .input-number {
width: 40px;
text-align: center;
outline: none;
display: block;
margin: 0; }
.input-number-group .input-number,
.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
border: 1px solid #ddd;
height: 30px;
user-select: none; }
.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
display: inline-block;
width: 30px;
background: #fff;
color: black;
text-align: center;
font-weight: bold;
cursor: pointer;
font-size: 2rem;
font-weight: 400; }
.input-number-group .input-number-decrement {
margin-right: 0.3rem; }
.input-number-group .input-number-increment {
margin-left: 0.3rem; }
input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none; }
@media (min-width: 1200px) {
.modal-dialog {
width: 1000px; } }
.modal-body {
display: inline-block !important; }
.modal-content {
border: 0;
border-radius: 0; }
.modal-header {
border: 0;
padding: 0; }
.modal-header .close {
opacity: 1;
font-size: 28px;
position: absolute;
right: 7px;
top: 10px;
border: 2px solid black;
border-radius: 50%;
padding: 0 5px;
z-index: 1; }
.modal-body {
padding: 36px 0 15px 0; }
.modal-body h1 {
font-family: Poppins !important;
font-weight: 600 !important;
font-size: 16px !important;
text-align: left;
margin: 0; }
.modal-body .fi-quick {
position: relative; }
.modal-body .fi-quick::before {
position: absolute;
content: "";
width: 30px;
height: 2px;
background: black;
bottom: -5px;
left: 0; }
.modal-body .title-quick {
padding: 0; }
.modal-content .tab-content {
padding-left: 0; }
.modal-content .tab-content .tab-pane img {
width: 100%; }
.modal-content .img-pill {
position: absolute;
bottom: 0;
padding: 0 6px 0 15px; }
.modal-content .img-pill li {
padding-left: 0; }
.modal-content .img-pill li a {
padding: 10px 0; }
.modal-content .img-pill li a:hover {
background-color: #fff; }
.modal-content .img-pill li.active {
display: none; }
.modal-content .img-pill li.col-lg-4 {
clear: none !important; }
.modal-content .detail {
text-align: left; }
.modal-content .detail h1 {
font-family: Poppins;
font-weight: 600;
font-size: 24px;
color: black;
margin-top: 0; }
.modal-content .detail p {
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
color: #888888;
padding-bottom: 20px; }
.modal-content .detail .star {
color: #e18787;
padding-bottom: 30px; }
.modal-content .detail .star i {
padding-right: 2px; }
.modal-content .detail .star span {
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
color: #888888;
padding-left: 10px; }
.modal-content .detail .prince {
font-family: Poppins;
font-weight: 600;
font-size: 24px;
color: black;
margin-right: 230px;
padding-bottom: 30px;
border-bottom: 1px solid #ddd; }
.modal-content .detail .prince .strike {
font-size: 14px;
font-weight: 400;
color: lightgrey;
padding-left: 10px; }
.modal-content .detail .fi-option {
position: relative; }
.modal-content .detail .fi-option .option {
padding-top: 30px;
font-family: Poppins;
font-weight: 600;
font-size: 18px;
color: black; }
.modal-content .detail .fi-option::before {
content: "";
width: 30px;
height: 2px;
background: black;
position: absolute;
bottom: 12px; }
.modal-content .detail .size {
font-family: Poppins;
font-weight: 400;
font-size: 18px;
color: black; }
.modal-content .detail .size .lb-size {
padding-right: 182px; }
.modal-content .detail .size .sta-red {
color: red; }
.modal-content .detail .select-custom {
padding-top: 15px; }
.modal-content .detail .select-custom .select {
margin-left: 0 !important;
margin-right: 70px; }
.modal-content .detail .select-custom .select .select-styled {
background: #fff !important;
color: #888888 !important;
border: 1px solid #ddd; }
.modal-content .detail .select-custom .color-1, .modal-content .detail .select-custom .color-2, .modal-content .detail .select-custom .color-3, .modal-content .detail .select-custom .color-4, .modal-content .detail .select-custom .color-5 {
display: inline-block;
width: 40px;
height: 40px;
border-radius: 50%;
border: 1px solid #ddd;
background: #f1b8b7;
margin-right: 10px;
transition: all .3s ease; }
.modal-content .detail .select-custom .color-1:hover, .modal-content .detail .select-custom .color-2:hover, .modal-content .detail .select-custom .color-3:hover, .modal-content .detail .select-custom .color-4:hover, .modal-content .detail .select-custom .color-5:hover {
opacity: .5; }
.modal-content .detail .select-custom .color-2 {
background: #fccf61; }
.modal-content .detail .select-custom .color-3 {
background: #fff; }
.modal-content .detail .select-custom .color-4 {
background: #bf1324; }
.modal-content .detail .select-custom .color-5 {
background: #f8edab; }
.modal-content .detail .require {
padding: 30px 0;
color: red;
border-bottom: 1px solid #ddd;
margin-right: 230px; }
.modal-content .detail .Quality {
font-family: Poppins;
font-weight: 400;
font-size: 18px;
color: black;
padding: 30px 0; }
.modal-content .detail .Quality .text-qua {
padding-right: 20px; }
.modal-content .detail .Quality .dola {
font-family: Poppins;
font-weight: 600;
font-size: 24px;
color: black;
padding-left: 90px;
padding-right: 5px; }
.modal-content .detail .Quality .total {
font-family: Poppins;
font-weight: 600;
font-size: 24px;
color: black; }
.modal-content .detail .add-cart .btn-add-cart {
display: inline-block;
font-family: Abril Fatface;
font-weight: 400;
font-size: 24px;
color: black;
padding: 13px 30px;
background: black;
color: #fff;
transition: all .3s ease;
border: 1px solid black; }
.modal-content .detail .add-cart .btn-add-cart:hover {
background-image: -webkit-linear-gradient(30deg, black 50%, transparent 50%);
background-image: linear-gradient(30deg, black 50%, transparent 50%);
background-size: 600px;
background-repeat: no-repeat;
background-position: 0%;
-webkit-transition: background .3s ease-in-out;
transition: background .3s ease-in-out;
text-decoration: none; }
.modal-content .detail .add-cart .btn-add-cart:hover:hover {
background-position: 100%;
background-color: #fff;
color: black;
text-decoration: none; }
.modal-content .detail .add-cart .list-icon {
display: inline-block;
font-size: 18px;
padding: 16px 19px;
border-radius: 50%;
background: #eeeeee;
color: #888888;
margin-left: 15px;
transition: all .3s ease; }
.modal-content .detail .add-cart .list-icon:hover {
color: black; }
.active-bg-menu {
position: fixed;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
transition: all .3s ease;
top: 0; }
* {
outline: 0 !important; }
img {
margin: 0 auto !important; }
nav .open a {
background-color: unset !important; }
nav .open a:hover {
background-color: unset !important; }
nav .open a:focus {
background-color: unset !important; }
.form-control:focus {
box-shadow: unset;
border-color: unset; }
@media (min-width: 1200px) {
.container-menu {
width: 1000px !important; } }
h5 {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; }
.navbar-collapse {
padding-right: 0;
padding-left: 0; }
.nav > li > a > img {
max-width: 100%; }
.nav-pills > li + li {
margin-left: 0; }
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
background-color: #fff; }
.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
background-color: unset !important; }
.show-search {
opacity: 1 !important;
visibility: visible !important; }
/*slick*/
.slider {
width: 100%;
margin: 0 auto; }
.slick-slide {
margin: 0px 20px; }
.slick-slide {
transition: all ease-in-out .3s;
opacity: 1; }
.slick-active {
opacity: 1; }
.slick-current {
opacity: 1; }
/*end slick*/
ul.breadcrumb {
padding: 15px 0;
list-style: none;
background: #fff; }
/* Display list items side by side */
ul.breadcrumb li {
display: inline; }
/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
padding: 5px 10px;
font-family: Poppins;
font-weight: 500;
font-size: 16px;
color: black;
color: #888888;
content: ">"; }
/* Add a color to all links inside the list */
ul.breadcrumb li a {
font-family: Poppins;
font-weight: 500;
font-size: 14px;
color: black;
color: #888888;
text-decoration: none; }
ul.breadcrumb li:last-child a {
color: black;
font-weight: bold; }
/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
color: black;
text-decoration: none; }
@media all and (min-width: 320px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1) {
clear: none; }
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: left; } }
@media all and (min-width: 768px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1) {
clear: left; } }
@media all and (min-width: 992px) {
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1) {
clear: left; } }
@media (min-width: 1200px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1) {
clear: left; } }
.panel {
box-shadow: unset;
border-radius: 0; }
/*--------------------------------ui----------------------------*/
.ui-slider .ui-slider-handle {
border-radius: 50%;
width: 14px;
height: 14px;
cursor: pointer;
background: none;
background-color: black;
border: none;
outline: none; }
.ui-slider-range {
background: none;
background-color: black;
border: none; }
#slider-3 {
border: none;
height: 5px;
border-radius: 0;
background: #9a9a9a; }
.range-p input {
border: 0;
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
outline: 0; }
/*end*/
/*---------*/
.active-btn {
background: black !important;
color: #fff; }
/*custom select*/
.select-hidden {
display: none;
visibility: hidden;
padding-right: 10px; }
.select {
cursor: pointer;
display: inline-block;
position: relative;
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
width: 154px;
height: 36px;
margin-left: 20px; }
.select:nth-child(2) {
width: 70px;
height: 36px;
margin-left: 0; }
.select-styled {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #eeeeee;
padding: 8px 15px;
transition: all 0.2s ease-in; }
.select-styled:after {
content: "\f107";
position: absolute;
top: 8px;
right: 12px;
font-size: 16px;
font-weight: 600;
font-family: Font Awesome\ 5 Free; }
.select-styled:active:after, .select-styled.active:after {
transform: rotate(180deg); }
.select-options {
display: none;
position: absolute;
top: 100%;
right: 0;
left: 0;
z-index: 999;
margin: 0;
padding: 0;
list-style: none;
background-color: #f2f2f2; }
.select-options li {
margin: 0;
padding: 12px 0;
text-indent: 15px;
border-top: 1px solid #e6e6e6;
transition: all 0.15s ease-in; }
.select-options li:hover {
color: #c0392b;
background: #fff; }
.select-options li[rel="hide"] {
display: none; }
/*----end----*/
figure.bg-input {
position: relative; }
figure.bg-input::before {
content: '';
display: inline-block;
width: 60px;
height: 36px;
background: #eeeeee;
position: absolute;
bottom: 8px;
z-index: -1;
left: -15px; }
figure.bg-input::after {
content: '';
display: inline-block;
width: 60px;
height: 36px;
background: #eeeeee;
position: absolute;
bottom: 8px;
z-index: -1;
left: 78px; }
/*------tab--------*/
.nav-tabs {
border-bottom: 0; }
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
border: 0;
background-color: transparent; }
.nav-tabs > li > a {
border: 0; }
/*----*/
@-webkit-keyframes shine-left {
100% {
right: 100%; } }
@keyframes shine-left {
100% {
right: 100%; } }
/*-----*/
@-webkit-keyframes shine-right {
100% {
left: 100%; } }
@keyframes shine-right {
100% {
left: 100%; } }
.carousel-caption {
text-shadow: unset; }
.content-search {
position: fixed;
top: 0;
left: 0;
visibility: hidden;
opacity: 0;
width: 100%;
height: 100%;
background: #fff;
-webkit-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
padding-top: 140px;
padding-bottom: 130px;
display: inline-block;
z-index: 9999; }
.content-search .container-100 {
padding-right: 100px;
padding-left: 100px;
width: 100%; }
.content-search .container-100 .fa-times-circle {
cursor: pointer;
position: absolute;
top: 30px;
right: 100px;
font-size: 50px;
color: #ddd;
-webkit-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s; }
.content-search .container-100 .fa-times-circle:hover {
color: black; }
.content-search .container-100 h3 {
padding-bottom: 232px;
font-family: Poppins;
font-weight: bold;
font-size: 50px;
color: black;
line-height: 70px;
max-width: 400px;
margin: 0 auto;
text-transform: uppercase; }
.content-search .container-100 form {
max-width: 850px;
margin: 0 auto; }
.content-search .container-100 form input {
outline: 0;
border: 0;
border-radius: 0;
box-shadow: none;
padding-left: 20px;
border-bottom: 1px solid #ddd;
font-family: Poppins;
font-weight: 400;
font-size: 30px;
color: black; }
.content-search .container-100 form input::-webkit-input-placeholder {
font-family: Poppins;
font-weight: 400;
font-size: 30px;
color: black;
color: #ddd; }
.content-search .container-100 form .button_search {
font-family: Abril Fatface;
font-weight: 400;
font-size: 18px;
color: black;
transition: all .3s ease-in-out 0.08s;
color: white;
padding: 10px 40px;
background-color: black;
border: 1px solid black;
background-image: -webkit-linear-gradient(90deg, black 50%, transparent 50%);
background-image: linear-gradient(90deg, black 50%, transparent 50%);
background-size: 600px;
background-repeat: no-repeat;
background-position: 0%;
-webkit-transition: background .3s ease-in-out;
transition: background .3s ease-in-out;
text-transform: uppercase;
width: 130px;
height: 45px;
padding: 0;
position: absolute;
top: -12px;
right: 0; }
.content-search .container-100 form .button_search:hover {
background-position: 100%;
background-color: #fff;
color: black;
text-decoration: none; }
@media (max-width: 812px) and (max-height: 414px) {
.content-search {
padding-top: 30px;
padding-bottom: 30px; }
.content-search .container-100 h3 {
padding-bottom: 85px; } }
@media (max-width: 568px) and (max-height: 320px) {
.content-search {
padding-top: 30px;
padding-bottom: 30px; }
.content-search .container-100 .fa-times-circle {
right: 30px; }
.content-search .container-100 h3 {
padding-bottom: 36px;
line-height: 45px; } }
@media (max-width: 567px) {
.content-search {
padding-top: 66px; }
.content-search .container-100 .fa-times-circle {
right: 30px; }
.content-search .container-100 h3 {
padding-bottom: 70px; }
.content-search .container-100 form input::-webkit-input-placeholder {
font-size: 20px; }
.content-search .container-100 form .button_search {
top: 50px;
right: 45px; } }
@media (max-width: 320px) {
.content-search .container-100 h3 {
font-size: 40px;
line-height: 55px; }
.content-search .container-100 form input::-webkit-input-placeholder {
font-size: 14px; }
.content-search .container-100 form .button_search {
right: 0; } }
@media (max-width: 1600px) {
.carousel-inner .slide-1 .carousel-caption {
top: 120px; }
.carousel-inner .slide-2 .carousel-caption {
top: 120px;
left: 20px; }
.who h1 {
font-size: 150px;
top: 300px; }
.who .h2 {
font-size: 60px;
top: 368px; }
.who p {
top: 480px; }
.who .media {
left: 800px;
bottom: 68px; }
.holiday {
padding-top: 60px; } }
@media (max-width: 1399px) {
.menu-main li a {
font-size: 16px; }
.logo {
padding: 20px 0; }
.icon-menu {
padding: 35px 0 0 60px; }
.icon-menu::before {
left: 168px; }
.carousel-inner .slide-1 .carousel-caption {
top: 150px; }
.carousel-inner .slide-1 .carousel-caption p {
font-size: 16px;
padding: 0 120px; }
.carousel-inner .slide-1 .carousel-caption h1 {
font-size: 90px; }
.carousel-inner .slide-1 .carousel-caption h3 {
font-size: 38px; }
.carousel-inner .slide-2 .carousel-caption {
top: 150px;
left: 120px; }
.carousel-inner .slide-2 .carousel-caption h1 {
font-size: 100px; }
.carousel-inner .slide-2 .carousel-caption h3 {
font-size: 60px; }
.carousel-inner .slide-2 .carousel-caption p {
font-size: 16px; }
.carousel-inner .slide-2 .carousel-caption .line {
width: 110px;
height: 5px; }
.carousel-inner .slide-2 .carousel-caption img {
padding: 30px 0 56px 0; }
.who h1 {
font-size: 146px;
top: 290px; }
.who .h2 {
font-size: 56px;
top: 356px; }
.who p {
font-size: 14px;
top: 470px; }
.who .media {
left: 760px;
bottom: 56px; }
.collection .banner-collec h3 {
margin-top: -576px;
font-size: 26px; }
.collection .banner-collec h1 {
font-size: 75px; }
.collection .banner-collec a {
margin-left: 196px; }
.holiday .banner-holiday .title-holiday {
top: 128px; }
.holiday .banner-holiday .title-holiday h1 {
font-size: 26px; }
.holiday .banner-holiday .title-holiday p {
font-size: 14px; }
.holiday .banner-holiday .title-holiday span#sale30 {
padding-left: 136px; }
.holiday .banner-holiday .title-holiday span#off {
padding-left: 320px; }
.count .title-count {
top: 110px; }
.count .title-count #countdown {
padding: 30px 210px 50px 0; }
.count .title-count #countdown .labels {
width: 100%;
right: 210px; }
footer .new-letter .form-new {
background-position: -105px 0; }
footer .new-letter .form-new p {
padding: 0 280px 10px 50px; }
footer .new-letter .form-new input {
width: 290px; }
footer .footer-logo .footer-row .col-lg-4 .logo-bot {
margin-left: -100px; }
footer .footer-logo .footer-row .col-lg-4 span#gmail-footer {
padding-right: 95px;
float: right; } }
@media (max-width: 1199px) {
.menu-main li {
padding-right: 8px; }
.menu-main li a {
font-size: 14px; }
.menu-main li.shop-menu .dropdown-menu {
left: -80px; }
.menu-main li.shop-menu .dropdown-menu ul li .menu-home-lv2 ul .li-home {
margin-left: 0; }
.menu-main li.menu-home .dropdown-menu.menu-home-lv2 .li-home {
margin-left: -5px; }
.icon-menu {
padding: 35px 0 0 0; }
.icon-menu::before {
left: 107px; }
.icon-menu li img#img-cart {
padding-right: 110px; }
.carousel-inner .slide-1 .carousel-caption {
top: 120px; }
.carousel-inner .slide-1 .carousel-caption h3 {
font-size: 28px; }
.carousel-inner .slide-1 .carousel-caption h1 {
font-size: 60px; }
.carousel-inner .slide-1 .carousel-caption p {
font-size: 14px;
padding: 0 30px; }
.carousel-inner .slide-1 .carousel-caption img {
padding: 10px 0 30px 0; }
.carousel-inner .slide-1 .carousel-caption a {
padding: 5px 15px;
font-size: 14px; }
.carousel-inner .slide-2 .carousel-caption {
top: 120px;
left: 30px; }
.carousel-inner .slide-2 .carousel-caption h3 {
font-size: 50px; }
.carousel-inner .slide-2 .carousel-caption h1 {
font-size: 70px; }
.carousel-inner .slide-2 .carousel-caption .line {
width: 85px;
height: 4px; }
.carousel-inner .slide-2 .carousel-caption p {
padding: 26px 150px 26px 0;
font-size: 14px; }
.carousel-inner .slide-2 .carousel-caption a {
padding: 5px 15px;
font-size: 14px; }
.who h1 {
font-size: 110px;
top: 220px; }
.who .h2 {
font-size: 40px;
top: 270px; }
.who p {
top: 348px;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
text-align: center;
padding: 0 222px; }
.who .media {
left: 580px;
bottom: 16px; }
.collection .banner-collec h3 {
margin-top: -480px;
font-size: 20px; }
.collection .banner-collec h1 {
font-size: 55px; }
.collection .banner-collec a {
margin-left: 169px;
padding: 5px 15px;
font-size: 14px; }
.holiday .banner-holiday .title-holiday {
left: 3px; }
.holiday .banner-holiday .title-holiday h1 {
font-size: 20px;
padding-top: 25px;
font-weight: 500; }
.count .title-count {
top: 60px; }
.count .title-count #countdown {
padding: 30px 96px 30px 0; }
.count .title-count #countdown .labels {
right: 100px;
bottom: 45px; }
.count .title-count a {
font-size: 14px;
padding: 5px 15px; }
.blog .product-blog .time-blog .time {
padding-right: 20px; }
footer .new-letter .form-new p {
padding: 0 190px 10px 50px; }
footer .footer-logo .footer-row .col-lg-4 span#gmail-footer {
padding-right: 30px; } }
@media (max-width: 991px) {
nav #language-figure::before {
top: 11px; }
.back-to-top {
position: fixed;
bottom: 20px;
right: 10px;
width: 50px;
height: 50px;
background: #f4f4f4;
border-radius: 50%;
box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
text-align: center; }
.back-to-top i {
font-size: 24px;
padding-top: 11px; }
.who .media {
left: 400px; }
.who .media #avatar {
width: 88px; }
.menu-main {
position: unset; }
.menu-main::before {
display: none; }
.menu-main #btn-close-menu {
position: absolute;
right: 5px;
top: 5px;
font-size: 26px; }
.menu-main li {
padding-right: 0; }
.menu-main li a {
padding-right: 0; }
.menu-main li.menu-home .dropdown-menu {
display: none; }
.menu-main li.menu-home .dropdown-menu.menu-home-lv2 {
margin-top: -32px; }
.menu-main li.menu-home .dropdown-menu.menu-home-lv2 .li-home a {
padding-left: 15px; }
.menu-main li.shop-menu .dropdown-menu {
display: none;
margin-top: -40px; }
.logo li {
padding-left: 18px; }
.icon-menu li .fa-user {
padding-right: 6px; }
.icon-menu li img#img-cart {
padding-right: 8px; }
.carousel-indicators {
margin-bottom: 76px; }
.carousel-inner .slide-1 .carousel-caption {
top: 110px; }
.carousel-inner .slide-1 .carousel-caption h1 {
font-size: 36px;
margin-top: 0; }
.carousel-inner .slide-1 .carousel-caption h3 {
font-size: 22px; }
.carousel-inner .slide-1 .carousel-caption p {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical; }
.carousel-inner .slide-1 .carousel-caption img {
padding: 0 0 20px 0;
width: 40%; }
.carousel-inner .slide-2 .carousel-caption {
top: 110px;
left: 24px; }
.carousel-inner .slide-2 .carousel-caption h1 {
font-size: 40px; }
.carousel-inner .slide-2 .carousel-caption h3 {
font-size: 30px;
margin-top: 0px; }
.carousel-inner .slide-2 .carousel-caption p {
padding: 16px 290px 16px 0; }
.carousel-inner .slide-2 .carousel-caption .line {
width: 45px;
height: 2px; }
.nav-help {
float: left; }
.nav-help li {
float: left !important; }
.language {
float: right !important; }
.mobile-menu {
position: absolute;
z-index: 1; }
.icon-menu {
padding: 26px 0 0 130px; }
.icon-menu::before {
right: 10px;
top: 30px;
left: unset; }
.icon-menu li.icon-user {
float: left; }
.icon-menu li.cart-menu {
float: right; }
.icon-menu li#input-search {
float: left; }
.icon-menu .cart-menu .dropdown-menu {
right: 24px; }
.logo {
padding: 16px 32px 0 0; }
.logo img {
float: right;
width: 30%; }
.fa-bars {
font-size: 22px; }
#myNavbar {
position: fixed;
left: -260px;
top: 0;
max-height: unset;
height: 100% !important;
overflow-x: hidden !important;
width: 260px;
background: #fff;
transition: all .3s ease;
z-index: 20;
border: 0;
box-shadow: none; }
.mobile-menu {
padding-top: 20px; }
.who h1 {
font-size: 84px;
top: 160px; }
.who .h2 {
font-size: 30px;
top: 200px; }
.who p {
top: 268px;
padding: 0 214px; }
.collection h1 {
padding-top: 30px; }
.collection .banner-collec h3 {
margin-top: -360px;
font-size: 18px; }
.collection .banner-collec h1 {
font-size: 48px; }
.collection .banner-collec a {
margin-left: 124px; }
.wedding h1 {
padding-top: 30px; }
.wedding h2 {
padding-bottom: 0px; }
.wedding .img-wedding {
top: -13px; }
.holiday {
padding-top: 20px; }
.holiday h1 {
padding-top: 30px; }
.holiday .banner-holiday .title-holiday {
left: -10px;
top: 92px; }
.holiday .banner-holiday .title-holiday p {
padding-left: 96px; }
.holiday .banner-holiday .title-holiday span {
font-size: 28px; }
.holiday .banner-holiday .title-holiday span#sale30 {
padding-left: 100px;
font-size: 70px; }
.holiday .banner-holiday .title-holiday span#pt {
font-size: 36px;
display: inline-block;
margin-top: -13px; }
.holiday .banner-holiday .title-holiday span#off {
padding-left: 210px;
padding-top: 24px; }
.count .title-count {
top: 50px;
right: 40px; }
.count .title-count h1 {
font-size: 40px;
padding-left: 5px; }
.count .title-count p {
display: none; }
.count .title-count #countdown {
padding: 0px 0px 30px 0;
text-align: left; }
.count .title-count #countdown #tiles span {
width: 70px;
padding: 0px 0px 10px 0; }
.count .title-count #countdown .labels {
display: inline-flex;
right: 0px;
bottom: 22px; }
.blog .product-blog .time-blog .time {
padding: 0;
padding-right: 15px; }
.blog .product-blog .time-blog .time:first-child {
border: 0; }
.blog .product-blog .time-blog .time:last-child {
padding-left: 0; }
.brand .brand-1 {
background-position: 44px 0; }
.brand .brand-4 {
background-position: -677px 0; }
.brand .brand-5 {
background-position: -918px 0; }
footer .footer-logo .footer-row .col-lg-4.cop {
padding-top: 32px; }
footer .footer-logo .footer-row .col-lg-4 span {
padding-top: 0; }
footer .new-letter .form-new p {
padding: 0px 60px 10px 50px; } }
@media (max-width: 767px) {
.phone-mobile {
padding: 10px 15px;
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black; }
#myNavbar {
padding: 0; }
.menu-main {
padding-left: 20px; }
.mobile-menu {
padding-top: 15px; }
.pos-header {
position: unset !important; }
.logo {
padding: 10px 10px 0 0; }
.icon-menu {
padding: 12px 0 0 164px; }
.icon-menu::before {
right: 0;
top: 20px; }
.icon-menu li#input-search a {
padding-right: 0; }
.icon-menu li#input-search .alert-search {
left: -186px; }
.icon-menu li img {
padding-right: 0; }
.icon-menu li img#img-cart {
padding-right: 0; }
.icon-menu .cart-menu .dropdown-menu {
left: unset;
right: 0; }
.carousel-inner .slide-2 .carousel-caption {
top: 32px; }
.carousel-inner .slide-1 .carousel-caption {
top: 20px; }
.who p {
padding: 0 155px; }
.who .media {
left: 400px; }
.wedding .img-wedding img {
display: none; }
footer .footer-logo .footer-row .col-lg-4 {
background: #f5e7e6; }
footer .footer-logo .footer-row .col-lg-4 .logo-bot {
margin-left: 0;
margin-top: 20px; }
footer .footer-logo .footer-row .col-lg-4.cop {
padding-top: 15px;
background: #f5e7e6; }
footer .footer-logo .footer-row .col-lg-4 span#gmail-footer {
padding: 20px 0;
float: unset; } }
@media (max-width: 667px) {
.icon-menu {
padding: 12px 0 0 135px; }
.who h1 {
font-size: 70px;
top: 138px; }
.who .h2 {
font-size: 26px;
top: 170px; }
.who p {
top: 230px; }
.collection .banner-collec h3 {
margin-top: -323px;
font-size: 16px; }
.collection .banner-collec h1 {
font-size: 42px; }
.collection .banner-collec a {
margin-left: 96px; }
footer .new-letter .form-new input {
width: 240px; } }
@media (max-width: 568px) {
.mobile-menu {
padding-top: 8px; }
.icon-menu {
padding: 6px 0 0 94px; }
.icon-menu {
padding: 12px 0 0 94px; }
.who .media {
left: 310px; }
.who h1 {
font-size: 60px;
top: 110px; }
.who .h2 {
font-size: 22px;
top: 140px; }
.who p {
top: 192px;
-webkit-line-clamp: 2; }
.collection .banner-collec h3 {
margin-top: -268px; }
.collection .banner-collec h1 {
margin-top: 0; }
.collection .banner-collec a {
margin-left: 80px;
margin-top: 0; }
.wedding {
padding-bottom: 0; }
.wedding h1 {
padding-top: 0; }
.holiday h1 {
padding-top: 0; }
.holiday .banner-holiday .title-holiday {
top: 45px;
left: 38px; }
.holiday .banner-holiday .title-holiday h1 {
font-size: 14px;
padding-bottom: 20px; }
.holiday .banner-holiday .title-holiday p {
display: none; }
.holiday .banner-holiday .title-holiday span#sale30 {
padding-left: 35px; }
.holiday .banner-holiday .title-holiday span#off {
padding-left: 145px; }
.count .img-count {
background: #dbe7ed; }
.count .img-count img {
visibility: hidden; }
.count .title-count {
right: 100px;
top: 18px; }
.brand .brand-6 {
background-position: -1172px 0; }
.brand .brand-5 {
background-position: -930px 0; }
footer .new-letter .form-new input {
width: 190px; }
footer .new-letter .form-new p {
padding: 0px 0 10px 50px; } }
@media (max-width: 414px) {
.col-xs-6 {
width: 100%; }
.icon-menu {
padding: 0px 0 0 30px; }
.icon-menu::before {
right: 2px;
top: 5px; }
.mobile-menu {
padding-top: 0; }
.carousel-inner .slide-1 .carousel-caption {
top: -30px; }
.carousel-inner .slide-1 .carousel-caption h3 {
font-size: 18px; }
.carousel-inner .slide-1 .carousel-caption h1 {
font-size: 30px; }
.carousel-inner .slide-2 .carousel-caption {
top: -10px; }
.carousel-inner .slide-2 .carousel-caption h1 {
margin-top: 0; }
.carousel-inner .slide-2 .carousel-caption p {
padding: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 166px; }
.carousel-indicators {
margin-bottom: 50px; }
.who h1 {
font-size: 45px;
top: 80px; }
.who .h2 {
top: 96px; }
.who p {
top: 145px; }
.who .media {
left: 196px;
bottom: 0; }
.who .media #avatar {
width: 60px; }
.who .media h3 {
padding: 0; }
.collection h1 {
padding-top: 20px;
font-size: 36px; }
.collection h2 {
padding-bottom: 0px; }
.collection .banner-collec {
padding-bottom: 240px; }
.collection .banner-collec h3 {
font-size: 20px;
margin-top: -378px; }
.collection .banner-collec h1 {
font-size: 56px; }
.collection .banner-collec a {
margin-left: 140px; }
.wedding h2 {
font-size: 14px; }
.holiday h2 {
font-size: 14px; }
.holiday .banner-holiday .title-holiday {
top: 90px;
left: 0px; }
.holiday .banner-holiday .title-holiday h1 {
font-size: 20px; }
.holiday .banner-holiday .title-holiday p {
display: block;
padding-left: 85px; }
.holiday .banner-holiday .title-holiday span#sale30 {
padding-left: 112px; }
.holiday .banner-holiday .title-holiday span#off {
padding-left: 222px; }
.count .title-count {
right: 70px;
top: -6px; }
.count .title-count #countdown #tiles span {
font-size: 26px;
width: 60px; }
.blog p {
font-size: 14px;
padding-bottom: 50px; }
.brand .brand-1 {
margin: 0 134px; }
.brand .brand-2 {
margin: 0 107px;
width: 200px; }
.brand .brand-3 {
margin: 0 138px; }
.brand .brand-4 {
margin: 0 138px; }
.brand .brand-5 {
margin: 0px 102px;
background-position: -912px 0;
width: 210px; }
.brand .brand-6 {
margin: 0 107px;
width: 200px; }
footer .info-footer {
padding-top: 100px; }
footer .new-letter {
padding-bottom: 0px; }
footer .new-letter .form-new {
margin-top: 0; }
footer .new-letter .form-new h1 {
padding: 35px 0 0 15px; }
footer .new-letter .form-new p {
padding: 0px 40px 10px 15px; }
footer .new-letter .form-new input {
width: 260px;
margin-left: 15px; }
footer .new-letter .form-new button {
margin: 20px 0 0 15px; } }
@media (max-width: 375px) {
.icon-menu {
padding: 0px 0 0 14px; }
.who h1 {
font-size: 40px;
top: 70px; }
.who .h2 {
top: 82px; }
.who p {
padding: 0 112px;
top: 132px; }
.who .media {
bottom: -12px; }
.collection .banner-collec a {
margin-left: 122px; } }
@media (max-width: 320px) {
.logo {
padding: 10px 0px 0 0; }
.logo img {
width: 33%; }
.icon-menu {
padding: 0px 0 0 24px; }
.icon-menu::before {
right: -10px; }
.icon-menu li .fa-user {
font-size: 18px;
position: relative;
top: 1px; }
.icon-menu li.icon-user a {
padding-right: 0; }
.icon-menu li.cart-menu a {
padding-right: 0; }
.icon-menu li img {
width: 74%; }
.icon-menu li img #img-cart {
width: 80%; }
.carousel-inner .slide-1 .carousel-caption h3 {
font-size: 14px;
margin-bottom: 5px; }
.carousel-inner .slide-1 .carousel-caption h1 {
font-size: 20px;
margin-bottom: 5px; }
.carousel-inner .slide-1 .carousel-caption p {
margin-bottom: 0;
-webkit-line-clamp: 1; }
.carousel-inner .slide-2 .carousel-caption h1 {
font-size: 26px; }
.carousel-inner .slide-2 .carousel-caption h3 {
font-size: 18px; }
.carousel-indicators {
margin-bottom: 38px;
left: 68%; }
.who h1 {
font-size: 34px;
top: 56px; }
.who .h2 {
top: 68px;
font-size: 18px; }
.who p {
top: 108px;
padding: 0px 85px; }
.who .media {
bottom: -6px;
left: 166px; }
.who .media #avatar {
width: 44px; }
.who .media h3 {
margin-top: 8px;
font-size: 14px; }
.who .media span {
padding-left: 0px; }
.collection h1 {
font-size: 34px; }
.collection .banner-collec h3 {
margin-top: -300px; }
.collection .banner-collec h1 {
font-size: 44px; }
.collection .banner-collec a {
margin-left: 98px; }
.holiday .banner-holiday .title-holiday h1 {
font-size: 18px;
padding-bottom: 15px;
padding-left: 66px; }
.holiday .banner-holiday .title-holiday p {
display: none; }
.holiday .banner-holiday .title-holiday span#sale30 {
padding-left: 78px; }
.holiday .banner-holiday .title-holiday span#off {
padding-left: 192px; }
.count .title-count {
right: 45px; }
.count .title-count h1 {
font-size: 36px;
padding-left: 8px; }
.count .title-count #countdown {
padding: 0px 0px 16px 0; }
.count .title-count #countdown #tiles span {
width: 40px;
font-size: 20px;
margin: 0 10px; }
.count .title-count #countdown .labels {
right: 0;
bottom: 5px; }
.blog h1 {
font-size: 50px; }
footer .info-footer .social-text span {
padding-right: 6px; }
.brand .brand-1 {
margin: 0 60px;
width: 200px;
background-position: 25px 0; }
.brand .brand-2 {
margin: 0 60px; }
.brand .brand-3 {
margin: 0 94px; }
.brand .brand-4 {
margin: 0 70px;
width: 200px;
background-position: -714px 0; }
.brand .brand-5 {
margin: 0 60px; }
.brand .brand-6 {
margin: 0 60px; } }
@media (max-width: 991px) {
.form-search-mobile {
position: relative;
padding: 50px 20px 0 15px; }
.form-search-mobile input {
outline: 0;
border: 0;
border-radius: 0;
box-shadow: none;
padding-left: 20px;
border-bottom: 1px solid #ddd;
padding-left: 0px; }
.form-search-mobile input::-webkit-input-placeholder {
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
opacity: .5; }
.form-search-mobile button {
outline: 0;
border: 0;
background: #fff;
color: white;
position: absolute;
right: 20px;
top: 55px; }
.menu-main {
padding-top: 0px; } }
/*# sourceMappingURL=style-res-v1.css.map */ | CheckImage/css/style-res-v1.css | .active-bg-menu {
position: fixed;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
transition: all .3s ease;
top: 0; }
* {
outline: 0 !important; }
img {
margin: 0 auto !important; }
nav .open a {
background-color: unset !important; }
nav .open a:hover {
background-color: unset !important; }
nav .open a:focus {
background-color: unset !important; }
.form-control:focus {
box-shadow: unset;
border-color: unset; }
@media (min-width: 1200px) {
.container-menu {
width: 1000px !important; } }
h5 {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; }
.navbar-collapse {
padding-right: 0;
padding-left: 0; }
.nav > li > a > img {
max-width: 100%; }
.nav-pills > li + li {
margin-left: 0; }
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
background-color: #fff; }
.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
background-color: unset !important; }
.show-search {
opacity: 1 !important;
visibility: visible !important; }
/*slick*/
.slider {
width: 100%;
margin: 0 auto; }
.slick-slide {
margin: 0px 20px; }
.slick-slide {
transition: all ease-in-out .3s;
opacity: 1; }
.slick-active {
opacity: 1; }
.slick-current {
opacity: 1; }
/*end slick*/
ul.breadcrumb {
padding: 15px 0;
list-style: none;
background: #fff; }
/* Display list items side by side */
ul.breadcrumb li {
display: inline; }
/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
padding: 5px 10px;
font-family: Poppins;
font-weight: 500;
font-size: 16px;
color: black;
color: #888888;
content: ">"; }
/* Add a color to all links inside the list */
ul.breadcrumb li a {
font-family: Poppins;
font-weight: 500;
font-size: 14px;
color: black;
color: #888888;
text-decoration: none; }
ul.breadcrumb li:last-child a {
color: black;
font-weight: bold; }
/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
color: black;
text-decoration: none; }
@media all and (min-width: 320px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1) {
clear: none; }
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: left; } }
@media all and (min-width: 768px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1) {
clear: left; } }
@media all and (min-width: 992px) {
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1) {
clear: left; } }
@media (min-width: 1200px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1) {
clear: left; } }
.panel {
box-shadow: unset;
border-radius: 0; }
/*--------------------------------ui----------------------------*/
.ui-slider .ui-slider-handle {
border-radius: 50%;
width: 14px;
height: 14px;
cursor: pointer;
background: none;
background-color: black;
border: none;
outline: none; }
.ui-slider-range {
background: none;
background-color: black;
border: none; }
#slider-3 {
border: none;
height: 5px;
border-radius: 0;
background: #9a9a9a; }
.range-p input {
border: 0;
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
outline: 0; }
/*end*/
/*---------*/
.active-btn {
background: black !important;
color: #fff; }
/*custom select*/
.select-hidden {
display: none;
visibility: hidden;
padding-right: 10px; }
.select {
cursor: pointer;
display: inline-block;
position: relative;
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
width: 154px;
height: 36px;
margin-left: 20px; }
.select:nth-child(2) {
width: 70px;
height: 36px;
margin-left: 0; }
.select-styled {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #eeeeee;
padding: 8px 15px;
transition: all 0.2s ease-in; }
.select-styled:after {
content: "\f107";
position: absolute;
top: 8px;
right: 12px;
font-size: 16px;
font-weight: 600;
font-family: Font Awesome\ 5 Free; }
.select-styled:active:after, .select-styled.active:after {
transform: rotate(180deg); }
.select-options {
display: none;
position: absolute;
top: 100%;
right: 0;
left: 0;
z-index: 999;
margin: 0;
padding: 0;
list-style: none;
background-color: #f2f2f2; }
.select-options li {
margin: 0;
padding: 12px 0;
text-indent: 15px;
border-top: 1px solid #e6e6e6;
transition: all 0.15s ease-in; }
.select-options li:hover {
color: #c0392b;
background: #fff; }
.select-options li[rel="hide"] {
display: none; }
/*----end----*/
figure.bg-input {
position: relative; }
figure.bg-input::before {
content: '';
display: inline-block;
width: 60px;
height: 36px;
background: #eeeeee;
position: absolute;
bottom: 8px;
z-index: -1;
left: -15px; }
figure.bg-input::after {
content: '';
display: inline-block;
width: 60px;
height: 36px;
background: #eeeeee;
position: absolute;
bottom: 8px;
z-index: -1;
left: 78px; }
/*------tab--------*/
.nav-tabs {
border-bottom: 0; }
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
border: 0;
background-color: transparent; }
.nav-tabs > li > a {
border: 0; }
/*----*/
@-webkit-keyframes shine-left {
100% {
right: 100%; } }
@keyframes shine-left {
100% {
right: 100%; } }
/*-----*/
@-webkit-keyframes shine-right {
100% {
left: 100%; } }
@keyframes shine-right {
100% {
left: 100%; } }
.carousel-caption {
text-shadow: unset; }
.active-bg-menu {
position: fixed;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
transition: all .3s ease;
top: 0; }
* {
outline: 0 !important; }
img {
margin: 0 auto !important; }
nav .open a {
background-color: unset !important; }
nav .open a:hover {
background-color: unset !important; }
nav .open a:focus {
background-color: unset !important; }
.form-control:focus {
box-shadow: unset;
border-color: unset; }
@media (min-width: 1200px) {
.container-menu {
width: 1000px !important; } }
h5 {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; }
.navbar-collapse {
padding-right: 0;
padding-left: 0; }
.nav > li > a > img {
max-width: 100%; }
.nav-pills > li + li {
margin-left: 0; }
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
background-color: #fff; }
.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
background-color: unset !important; }
.show-search {
opacity: 1 !important;
visibility: visible !important; }
/*slick*/
.slider {
width: 100%;
margin: 0 auto; }
.slick-slide {
margin: 0px 20px; }
.slick-slide {
transition: all ease-in-out .3s;
opacity: 1; }
.slick-active {
opacity: 1; }
.slick-current {
opacity: 1; }
/*end slick*/
ul.breadcrumb {
padding: 15px 0;
list-style: none;
background: #fff; }
/* Display list items side by side */
ul.breadcrumb li {
display: inline; }
/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
padding: 5px 10px;
font-family: Poppins;
font-weight: 500;
font-size: 16px;
color: black;
color: #888888;
content: ">"; }
/* Add a color to all links inside the list */
ul.breadcrumb li a {
font-family: Poppins;
font-weight: 500;
font-size: 14px;
color: black;
color: #888888;
text-decoration: none; }
ul.breadcrumb li:last-child a {
color: black;
font-weight: bold; }
/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
color: black;
text-decoration: none; }
@media all and (min-width: 320px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1) {
clear: none; }
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: left; } }
@media all and (min-width: 768px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1) {
clear: left; } }
@media all and (min-width: 992px) {
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1) {
clear: left; } }
@media (min-width: 1200px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1) {
clear: left; } }
.panel {
box-shadow: unset;
border-radius: 0; }
/*--------------------------------ui----------------------------*/
.ui-slider .ui-slider-handle {
border-radius: 50%;
width: 14px;
height: 14px;
cursor: pointer;
background: none;
background-color: black;
border: none;
outline: none; }
.ui-slider-range {
background: none;
background-color: black;
border: none; }
#slider-3 {
border: none;
height: 5px;
border-radius: 0;
background: #9a9a9a; }
.range-p input {
border: 0;
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
outline: 0; }
/*end*/
/*---------*/
.active-btn {
background: black !important;
color: #fff; }
/*custom select*/
.select-hidden {
display: none;
visibility: hidden;
padding-right: 10px; }
.select {
cursor: pointer;
display: inline-block;
position: relative;
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
width: 154px;
height: 36px;
margin-left: 20px; }
.select:nth-child(2) {
width: 70px;
height: 36px;
margin-left: 0; }
.select-styled {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #eeeeee;
padding: 8px 15px;
transition: all 0.2s ease-in; }
.select-styled:after {
content: "\f107";
position: absolute;
top: 8px;
right: 12px;
font-size: 16px;
font-weight: 600;
font-family: Font Awesome\ 5 Free; }
.select-styled:active:after, .select-styled.active:after {
transform: rotate(180deg); }
.select-options {
display: none;
position: absolute;
top: 100%;
right: 0;
left: 0;
z-index: 999;
margin: 0;
padding: 0;
list-style: none;
background-color: #f2f2f2; }
.select-options li {
margin: 0;
padding: 12px 0;
text-indent: 15px;
border-top: 1px solid #e6e6e6;
transition: all 0.15s ease-in; }
.select-options li:hover {
color: #c0392b;
background: #fff; }
.select-options li[rel="hide"] {
display: none; }
/*----end----*/
figure.bg-input {
position: relative; }
figure.bg-input::before {
content: '';
display: inline-block;
width: 60px;
height: 36px;
background: #eeeeee;
position: absolute;
bottom: 8px;
z-index: -1;
left: -15px; }
figure.bg-input::after {
content: '';
display: inline-block;
width: 60px;
height: 36px;
background: #eeeeee;
position: absolute;
bottom: 8px;
z-index: -1;
left: 78px; }
/*------tab--------*/
.nav-tabs {
border-bottom: 0; }
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
border: 0;
background-color: transparent; }
.nav-tabs > li > a {
border: 0; }
/*----*/
@-webkit-keyframes shine-left {
100% {
right: 100%; } }
@keyframes shine-left {
100% {
right: 100%; } }
/*-----*/
@-webkit-keyframes shine-right {
100% {
left: 100%; } }
@keyframes shine-right {
100% {
left: 100%; } }
.carousel-caption {
text-shadow: unset; }
.input-number-group {
display: flex; }
.input-number-group input[type=number]::-webkit-inner-spin-button,
.input-number-group input[type=number]::-webkit-outer-spin-button {
appearance: none; }
.input-number-group .input-group-button {
line-height: calc(80px/2-10px); }
.input-number-group .input-number {
width: 40px;
text-align: center;
outline: none;
display: block;
margin: 0; }
.input-number-group .input-number,
.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
border: 1px solid #ddd;
height: 30px;
user-select: none; }
.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
display: inline-block;
width: 30px;
background: #fff;
color: black;
text-align: center;
font-weight: bold;
cursor: pointer;
font-size: 2rem;
font-weight: 400; }
.input-number-group .input-number-decrement {
margin-right: 0.3rem; }
.input-number-group .input-number-increment {
margin-left: 0.3rem; }
input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none; }
@media (min-width: 1200px) {
.modal-dialog {
width: 1000px; } }
.modal-body {
display: inline-block !important; }
.modal-content {
border: 0;
border-radius: 0; }
.modal-header {
border: 0;
padding: 0; }
.modal-header .close {
opacity: 1;
font-size: 28px;
position: absolute;
right: 7px;
top: 10px;
border: 2px solid black;
border-radius: 50%;
padding: 0 5px;
z-index: 1; }
.modal-body {
padding: 36px 0 15px 0; }
.modal-body h1 {
font-family: Poppins !important;
font-weight: 600 !important;
font-size: 16px !important;
text-align: left;
margin: 0; }
.modal-body .fi-quick {
position: relative; }
.modal-body .fi-quick::before {
position: absolute;
content: "";
width: 30px;
height: 2px;
background: black;
bottom: -5px;
left: 0; }
.modal-body .title-quick {
padding: 0; }
.modal-content .tab-content {
padding-left: 0; }
.modal-content .tab-content .tab-pane img {
width: 100%; }
.modal-content .img-pill {
position: absolute;
bottom: 0;
padding: 0 6px 0 15px; }
.modal-content .img-pill li {
padding-left: 0; }
.modal-content .img-pill li a {
padding: 10px 0; }
.modal-content .img-pill li a:hover {
background-color: #fff; }
.modal-content .img-pill li.active {
display: none; }
.modal-content .img-pill li.col-lg-4 {
clear: none !important; }
.modal-content .detail {
text-align: left; }
.modal-content .detail h1 {
font-family: Poppins;
font-weight: 600;
font-size: 24px;
color: black;
margin-top: 0; }
.modal-content .detail p {
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
color: #888888;
padding-bottom: 20px; }
.modal-content .detail .star {
color: #e18787;
padding-bottom: 30px; }
.modal-content .detail .star i {
padding-right: 2px; }
.modal-content .detail .star span {
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
color: #888888;
padding-left: 10px; }
.modal-content .detail .prince {
font-family: Poppins;
font-weight: 600;
font-size: 24px;
color: black;
margin-right: 230px;
padding-bottom: 30px;
border-bottom: 1px solid #ddd; }
.modal-content .detail .prince .strike {
font-size: 14px;
font-weight: 400;
color: lightgrey;
padding-left: 10px; }
.modal-content .detail .fi-option {
position: relative; }
.modal-content .detail .fi-option .option {
padding-top: 30px;
font-family: Poppins;
font-weight: 600;
font-size: 18px;
color: black; }
.modal-content .detail .fi-option::before {
content: "";
width: 30px;
height: 2px;
background: black;
position: absolute;
bottom: 12px; }
.modal-content .detail .size {
font-family: Poppins;
font-weight: 400;
font-size: 18px;
color: black; }
.modal-content .detail .size .lb-size {
padding-right: 182px; }
.modal-content .detail .size .sta-red {
color: red; }
.modal-content .detail .select-custom {
padding-top: 15px; }
.modal-content .detail .select-custom .select {
margin-left: 0 !important;
margin-right: 70px; }
.modal-content .detail .select-custom .select .select-styled {
background: #fff !important;
color: #888888 !important;
border: 1px solid #ddd; }
.modal-content .detail .select-custom .color-1, .modal-content .detail .select-custom .color-2, .modal-content .detail .select-custom .color-3, .modal-content .detail .select-custom .color-4, .modal-content .detail .select-custom .color-5 {
display: inline-block;
width: 40px;
height: 40px;
border-radius: 50%;
border: 1px solid #ddd;
background: #f1b8b7;
margin-right: 10px;
transition: all .3s ease; }
.modal-content .detail .select-custom .color-1:hover, .modal-content .detail .select-custom .color-2:hover, .modal-content .detail .select-custom .color-3:hover, .modal-content .detail .select-custom .color-4:hover, .modal-content .detail .select-custom .color-5:hover {
opacity: .5; }
.modal-content .detail .select-custom .color-2 {
background: #fccf61; }
.modal-content .detail .select-custom .color-3 {
background: #fff; }
.modal-content .detail .select-custom .color-4 {
background: #bf1324; }
.modal-content .detail .select-custom .color-5 {
background: #f8edab; }
.modal-content .detail .require {
padding: 30px 0;
color: red;
border-bottom: 1px solid #ddd;
margin-right: 230px; }
.modal-content .detail .Quality {
font-family: Poppins;
font-weight: 400;
font-size: 18px;
color: black;
padding: 30px 0; }
.modal-content .detail .Quality .text-qua {
padding-right: 20px; }
.modal-content .detail .Quality .dola {
font-family: Poppins;
font-weight: 600;
font-size: 24px;
color: black;
padding-left: 90px;
padding-right: 5px; }
.modal-content .detail .Quality .total {
font-family: Poppins;
font-weight: 600;
font-size: 24px;
color: black; }
.modal-content .detail .add-cart .btn-add-cart {
display: inline-block;
font-family: Abril Fatface;
font-weight: 400;
font-size: 24px;
color: black;
padding: 13px 30px;
background: black;
color: #fff;
transition: all .3s ease;
border: 1px solid black; }
.modal-content .detail .add-cart .btn-add-cart:hover {
background-image: -webkit-linear-gradient(30deg, black 50%, transparent 50%);
background-image: linear-gradient(30deg, black 50%, transparent 50%);
background-size: 600px;
background-repeat: no-repeat;
background-position: 0%;
-webkit-transition: background .3s ease-in-out;
transition: background .3s ease-in-out;
text-decoration: none; }
.modal-content .detail .add-cart .btn-add-cart:hover:hover {
background-position: 100%;
background-color: #fff;
color: black;
text-decoration: none; }
.modal-content .detail .add-cart .list-icon {
display: inline-block;
font-size: 18px;
padding: 16px 19px;
border-radius: 50%;
background: #eeeeee;
color: #888888;
margin-left: 15px;
transition: all .3s ease; }
.modal-content .detail .add-cart .list-icon:hover {
color: black; }
.active-bg-menu {
position: fixed;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
transition: all .3s ease;
top: 0; }
* {
outline: 0 !important; }
img {
margin: 0 auto !important; }
nav .open a {
background-color: unset !important; }
nav .open a:hover {
background-color: unset !important; }
nav .open a:focus {
background-color: unset !important; }
.form-control:focus {
box-shadow: unset;
border-color: unset; }
@media (min-width: 1200px) {
.container-menu {
width: 1000px !important; } }
h5 {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; }
.navbar-collapse {
padding-right: 0;
padding-left: 0; }
.nav > li > a > img {
max-width: 100%; }
.nav-pills > li + li {
margin-left: 0; }
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
background-color: #fff; }
.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
background-color: unset !important; }
.show-search {
opacity: 1 !important;
visibility: visible !important; }
/*slick*/
.slider {
width: 100%;
margin: 0 auto; }
.slick-slide {
margin: 0px 20px; }
.slick-slide {
transition: all ease-in-out .3s;
opacity: 1; }
.slick-active {
opacity: 1; }
.slick-current {
opacity: 1; }
/*end slick*/
ul.breadcrumb {
padding: 15px 0;
list-style: none;
background: #fff; }
/* Display list items side by side */
ul.breadcrumb li {
display: inline; }
/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
padding: 5px 10px;
font-family: Poppins;
font-weight: 500;
font-size: 16px;
color: black;
color: #888888;
content: ">"; }
/* Add a color to all links inside the list */
ul.breadcrumb li a {
font-family: Poppins;
font-weight: 500;
font-size: 14px;
color: black;
color: #888888;
text-decoration: none; }
ul.breadcrumb li:last-child a {
color: black;
font-weight: bold; }
/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
color: black;
text-decoration: none; }
@media all and (min-width: 320px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1) {
clear: none; }
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: left; } }
@media all and (min-width: 768px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1) {
clear: left; } }
@media all and (min-width: 992px) {
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1),
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1) {
clear: left; } }
@media (min-width: 1200px) {
.col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
.col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1),
.col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
clear: none; }
.col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1) {
clear: left; } }
.panel {
box-shadow: unset;
border-radius: 0; }
/*--------------------------------ui----------------------------*/
.ui-slider .ui-slider-handle {
border-radius: 50%;
width: 14px;
height: 14px;
cursor: pointer;
background: none;
background-color: black;
border: none;
outline: none; }
.ui-slider-range {
background: none;
background-color: black;
border: none; }
#slider-3 {
border: none;
height: 5px;
border-radius: 0;
background: #9a9a9a; }
.range-p input {
border: 0;
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
outline: 0; }
/*end*/
/*---------*/
.active-btn {
background: black !important;
color: #fff; }
/*custom select*/
.select-hidden {
display: none;
visibility: hidden;
padding-right: 10px; }
.select {
cursor: pointer;
display: inline-block;
position: relative;
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
width: 154px;
height: 36px;
margin-left: 20px; }
.select:nth-child(2) {
width: 70px;
height: 36px;
margin-left: 0; }
.select-styled {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #eeeeee;
padding: 8px 15px;
transition: all 0.2s ease-in; }
.select-styled:after {
content: "\f107";
position: absolute;
top: 8px;
right: 12px;
font-size: 16px;
font-weight: 600;
font-family: Font Awesome\ 5 Free; }
.select-styled:active:after, .select-styled.active:after {
transform: rotate(180deg); }
.select-options {
display: none;
position: absolute;
top: 100%;
right: 0;
left: 0;
z-index: 999;
margin: 0;
padding: 0;
list-style: none;
background-color: #f2f2f2; }
.select-options li {
margin: 0;
padding: 12px 0;
text-indent: 15px;
border-top: 1px solid #e6e6e6;
transition: all 0.15s ease-in; }
.select-options li:hover {
color: #c0392b;
background: #fff; }
.select-options li[rel="hide"] {
display: none; }
/*----end----*/
figure.bg-input {
position: relative; }
figure.bg-input::before {
content: '';
display: inline-block;
width: 60px;
height: 36px;
background: #eeeeee;
position: absolute;
bottom: 8px;
z-index: -1;
left: -15px; }
figure.bg-input::after {
content: '';
display: inline-block;
width: 60px;
height: 36px;
background: #eeeeee;
position: absolute;
bottom: 8px;
z-index: -1;
left: 78px; }
/*------tab--------*/
.nav-tabs {
border-bottom: 0; }
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
border: 0;
background-color: transparent; }
.nav-tabs > li > a {
border: 0; }
/*----*/
@-webkit-keyframes shine-left {
100% {
right: 100%; } }
@keyframes shine-left {
100% {
right: 100%; } }
/*-----*/
@-webkit-keyframes shine-right {
100% {
left: 100%; } }
@keyframes shine-right {
100% {
left: 100%; } }
.carousel-caption {
text-shadow: unset; }
.content-search {
position: fixed;
top: 0;
left: 0;
visibility: hidden;
opacity: 0;
width: 100%;
height: 100%;
background: #fff;
-webkit-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
padding-top: 140px;
padding-bottom: 130px;
display: inline-block;
z-index: 9999; }
.content-search .container-100 {
padding-right: 100px;
padding-left: 100px;
width: 100%; }
.content-search .container-100 .fa-times-circle {
cursor: pointer;
position: absolute;
top: 30px;
right: 100px;
font-size: 50px;
color: #ddd;
-webkit-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s; }
.content-search .container-100 .fa-times-circle:hover {
color: black; }
.content-search .container-100 h3 {
padding-bottom: 232px;
font-family: Poppins;
font-weight: bold;
font-size: 50px;
color: black;
line-height: 70px;
max-width: 400px;
margin: 0 auto;
text-transform: uppercase; }
.content-search .container-100 form {
max-width: 850px;
margin: 0 auto; }
.content-search .container-100 form input {
outline: 0;
border: 0;
border-radius: 0;
box-shadow: none;
padding-left: 20px;
border-bottom: 1px solid #ddd;
font-family: Poppins;
font-weight: 400;
font-size: 30px;
color: black; }
.content-search .container-100 form input::-webkit-input-placeholder {
font-family: Poppins;
font-weight: 400;
font-size: 30px;
color: black;
color: #ddd; }
.content-search .container-100 form .button_search {
font-family: Abril Fatface;
font-weight: 400;
font-size: 18px;
color: black;
transition: all .3s ease-in-out 0.08s;
color: white;
padding: 10px 40px;
background-color: black;
border: 1px solid black;
background-image: -webkit-linear-gradient(90deg, black 50%, transparent 50%);
background-image: linear-gradient(90deg, black 50%, transparent 50%);
background-size: 600px;
background-repeat: no-repeat;
background-position: 0%;
-webkit-transition: background .3s ease-in-out;
transition: background .3s ease-in-out;
text-transform: uppercase;
width: 130px;
height: 45px;
padding: 0;
position: absolute;
top: -12px;
right: 0; }
.content-search .container-100 form .button_search:hover {
background-position: 100%;
background-color: #fff;
color: black;
text-decoration: none; }
@media (max-width: 812px) and (max-height: 414px) {
.content-search {
padding-top: 30px;
padding-bottom: 30px; }
.content-search .container-100 h3 {
padding-bottom: 85px; } }
@media (max-width: 568px) and (max-height: 320px) {
.content-search {
padding-top: 30px;
padding-bottom: 30px; }
.content-search .container-100 .fa-times-circle {
right: 30px; }
.content-search .container-100 h3 {
padding-bottom: 36px;
line-height: 45px; } }
@media (max-width: 567px) {
.content-search {
padding-top: 66px; }
.content-search .container-100 .fa-times-circle {
right: 30px; }
.content-search .container-100 h3 {
padding-bottom: 70px; }
.content-search .container-100 form input::-webkit-input-placeholder {
font-size: 20px; }
.content-search .container-100 form .button_search {
top: 50px;
right: 45px; } }
@media (max-width: 320px) {
.content-search .container-100 h3 {
font-size: 40px;
line-height: 55px; }
.content-search .container-100 form input::-webkit-input-placeholder {
font-size: 14px; }
.content-search .container-100 form .button_search {
right: 0; } }
@media (max-width: 1600px) {
.carousel-inner .slide-1 .carousel-caption {
top: 120px; }
.carousel-inner .slide-2 .carousel-caption {
top: 120px;
left: 20px; }
.who h1 {
font-size: 150px;
top: 300px; }
.who .h2 {
font-size: 60px;
top: 368px; }
.who p {
top: 480px; }
.who .media {
left: 800px;
bottom: 68px; }
.holiday {
padding-top: 60px; } }
@media (max-width: 1399px) {
.menu-main li a {
font-size: 16px; }
.logo {
padding: 20px 0; }
.icon-menu {
padding: 35px 0 0 60px; }
.icon-menu::before {
left: 168px; }
.carousel-inner .slide-1 .carousel-caption {
top: 150px; }
.carousel-inner .slide-1 .carousel-caption p {
font-size: 16px;
padding: 0 120px; }
.carousel-inner .slide-1 .carousel-caption h1 {
font-size: 90px; }
.carousel-inner .slide-1 .carousel-caption h3 {
font-size: 38px; }
.carousel-inner .slide-2 .carousel-caption {
top: 150px;
left: 120px; }
.carousel-inner .slide-2 .carousel-caption h1 {
font-size: 100px; }
.carousel-inner .slide-2 .carousel-caption h3 {
font-size: 60px; }
.carousel-inner .slide-2 .carousel-caption p {
font-size: 16px; }
.carousel-inner .slide-2 .carousel-caption .line {
width: 110px;
height: 5px; }
.carousel-inner .slide-2 .carousel-caption img {
padding: 30px 0 56px 0; }
.who h1 {
font-size: 146px;
top: 290px; }
.who .h2 {
font-size: 56px;
top: 356px; }
.who p {
font-size: 14px;
top: 470px; }
.who .media {
left: 760px;
bottom: 56px; }
.collection .banner-collec h3 {
margin-top: -576px;
font-size: 26px; }
.collection .banner-collec h1 {
font-size: 75px; }
.collection .banner-collec a {
margin-left: 196px; }
.holiday .banner-holiday .title-holiday {
top: 128px; }
.holiday .banner-holiday .title-holiday h1 {
font-size: 26px; }
.holiday .banner-holiday .title-holiday p {
font-size: 14px; }
.holiday .banner-holiday .title-holiday span#sale30 {
padding-left: 136px; }
.holiday .banner-holiday .title-holiday span#off {
padding-left: 320px; }
.count .title-count {
top: 110px; }
.count .title-count #countdown {
padding: 30px 210px 50px 0; }
.count .title-count #countdown .labels {
width: 100%;
right: 210px; }
footer .new-letter .form-new {
background-position: -105px 0; }
footer .new-letter .form-new p {
padding: 0 280px 10px 50px; }
footer .new-letter .form-new input {
width: 290px; }
footer .footer-logo .footer-row .col-lg-4 .logo-bot {
margin-left: -100px; }
footer .footer-logo .footer-row .col-lg-4 span#gmail-footer {
padding-right: 95px;
float: right; } }
@media (max-width: 1199px) {
.menu-main li {
padding-right: 8px; }
.menu-main li a {
font-size: 14px; }
.menu-main li.shop-menu .dropdown-menu {
left: -80px; }
.menu-main li.shop-menu .dropdown-menu ul li .menu-home-lv2 ul .li-home {
margin-left: 0; }
.menu-main li.menu-home .dropdown-menu.menu-home-lv2 .li-home {
margin-left: -5px; }
.icon-menu {
padding: 35px 0 0 0; }
.icon-menu::before {
left: 107px; }
.icon-menu li img#img-cart {
padding-right: 110px; }
.carousel-inner .slide-1 .carousel-caption {
top: 120px; }
.carousel-inner .slide-1 .carousel-caption h3 {
font-size: 28px; }
.carousel-inner .slide-1 .carousel-caption h1 {
font-size: 60px; }
.carousel-inner .slide-1 .carousel-caption p {
font-size: 14px;
padding: 0 30px; }
.carousel-inner .slide-1 .carousel-caption img {
padding: 10px 0 30px 0; }
.carousel-inner .slide-1 .carousel-caption a {
padding: 5px 15px;
font-size: 14px; }
.carousel-inner .slide-2 .carousel-caption {
top: 120px;
left: 30px; }
.carousel-inner .slide-2 .carousel-caption h3 {
font-size: 50px; }
.carousel-inner .slide-2 .carousel-caption h1 {
font-size: 70px; }
.carousel-inner .slide-2 .carousel-caption .line {
width: 85px;
height: 4px; }
.carousel-inner .slide-2 .carousel-caption p {
padding: 26px 150px 26px 0;
font-size: 14px; }
.carousel-inner .slide-2 .carousel-caption a {
padding: 5px 15px;
font-size: 14px; }
.who h1 {
font-size: 110px;
top: 220px; }
.who .h2 {
font-size: 40px;
top: 270px; }
.who p {
top: 348px;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
text-align: center;
padding: 0 222px; }
.who .media {
left: 580px;
bottom: 16px; }
.collection .banner-collec h3 {
margin-top: -480px;
font-size: 20px; }
.collection .banner-collec h1 {
font-size: 55px; }
.collection .banner-collec a {
margin-left: 169px;
padding: 5px 15px;
font-size: 14px; }
.holiday .banner-holiday .title-holiday {
left: 3px; }
.holiday .banner-holiday .title-holiday h1 {
font-size: 20px;
padding-top: 25px;
font-weight: 500; }
.count .title-count {
top: 60px; }
.count .title-count #countdown {
padding: 30px 96px 30px 0; }
.count .title-count #countdown .labels {
right: 100px;
bottom: 45px; }
.count .title-count a {
font-size: 14px;
padding: 5px 15px; }
.blog .product-blog .time-blog .time {
padding-right: 20px; }
footer .new-letter .form-new p {
padding: 0 190px 10px 50px; }
footer .footer-logo .footer-row .col-lg-4 span#gmail-footer {
padding-right: 30px; } }
@media (max-width: 991px) {
nav #language-figure::before {
top: 11px; }
.back-to-top {
position: fixed;
bottom: 20px;
right: 10px;
width: 50px;
height: 50px;
background: #f4f4f4;
border-radius: 50%;
box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
text-align: center; }
.back-to-top i {
font-size: 24px;
padding-top: 11px; }
.who .media {
left: 400px; }
.who .media #avatar {
width: 88px; }
.menu-main {
position: unset; }
.menu-main::before {
display: none; }
.menu-main #btn-close-menu {
position: absolute;
right: 5px;
top: 5px;
font-size: 26px; }
.menu-main li {
padding-right: 0; }
.menu-main li a {
padding-right: 0; }
.menu-main li.menu-home .dropdown-menu {
display: none; }
.menu-main li.menu-home .dropdown-menu.menu-home-lv2 {
margin-top: -32px; }
.menu-main li.menu-home .dropdown-menu.menu-home-lv2 .li-home a {
padding-left: 15px; }
.menu-main li.shop-menu .dropdown-menu {
display: none;
margin-top: -40px; }
.logo li {
padding-left: 18px; }
.icon-menu li .fa-user {
padding-right: 6px; }
.icon-menu li img#img-cart {
padding-right: 8px; }
.carousel-indicators {
margin-bottom: 76px; }
.carousel-inner .slide-1 .carousel-caption {
top: 110px; }
.carousel-inner .slide-1 .carousel-caption h1 {
font-size: 36px;
margin-top: 0; }
.carousel-inner .slide-1 .carousel-caption h3 {
font-size: 22px; }
.carousel-inner .slide-1 .carousel-caption p {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical; }
.carousel-inner .slide-1 .carousel-caption img {
padding: 0 0 20px 0;
width: 40%; }
.carousel-inner .slide-2 .carousel-caption {
top: 110px;
left: 24px; }
.carousel-inner .slide-2 .carousel-caption h1 {
font-size: 40px; }
.carousel-inner .slide-2 .carousel-caption h3 {
font-size: 30px;
margin-top: 0px; }
.carousel-inner .slide-2 .carousel-caption p {
padding: 16px 290px 16px 0; }
.carousel-inner .slide-2 .carousel-caption .line {
width: 45px;
height: 2px; }
.nav-help {
float: left; }
.nav-help li {
float: left !important; }
.language {
float: right !important; }
.mobile-menu {
position: absolute;
z-index: 1; }
.icon-menu {
padding: 26px 0 0 130px; }
.icon-menu::before {
right: 10px;
top: 30px;
left: unset; }
.icon-menu li.icon-user {
float: left; }
.icon-menu li.cart-menu {
float: right; }
.icon-menu li#input-search {
float: left; }
.icon-menu .cart-menu .dropdown-menu {
right: 24px; }
.logo {
padding: 16px 32px 0 0; }
.logo img {
float: right;
width: 30%; }
.fa-bars {
font-size: 22px; }
#myNavbar {
position: fixed;
left: -260px;
top: 0;
max-height: unset;
height: 100% !important;
overflow-x: hidden !important;
width: 260px;
background: #fff;
transition: all .3s ease;
z-index: 20;
border: 0;
box-shadow: none; }
.mobile-menu {
padding-top: 20px; }
.who h1 {
font-size: 84px;
top: 160px; }
.who .h2 {
font-size: 30px;
top: 200px; }
.who p {
top: 268px;
padding: 0 214px; }
.collection h1 {
padding-top: 30px; }
.collection .banner-collec h3 {
margin-top: -360px;
font-size: 18px; }
.collection .banner-collec h1 {
font-size: 48px; }
.collection .banner-collec a {
margin-left: 124px; }
.wedding h1 {
padding-top: 30px; }
.wedding h2 {
padding-bottom: 0px; }
.wedding .img-wedding {
top: -13px; }
.holiday {
padding-top: 20px; }
.holiday h1 {
padding-top: 30px; }
.holiday .banner-holiday .title-holiday {
left: -10px;
top: 92px; }
.holiday .banner-holiday .title-holiday p {
padding-left: 96px; }
.holiday .banner-holiday .title-holiday span {
font-size: 28px; }
.holiday .banner-holiday .title-holiday span#sale30 {
padding-left: 100px;
font-size: 70px; }
.holiday .banner-holiday .title-holiday span#pt {
font-size: 36px;
display: inline-block;
margin-top: -13px; }
.holiday .banner-holiday .title-holiday span#off {
padding-left: 210px;
padding-top: 24px; }
.count .title-count {
top: 50px;
right: 40px; }
.count .title-count h1 {
font-size: 40px;
padding-left: 5px; }
.count .title-count p {
display: none; }
.count .title-count #countdown {
padding: 0px 0px 30px 0;
text-align: left; }
.count .title-count #countdown #tiles span {
width: 70px;
padding: 0px 0px 10px 0; }
.count .title-count #countdown .labels {
display: inline-flex;
right: 0px;
bottom: 22px; }
.blog .product-blog .time-blog .time {
padding: 0;
padding-right: 15px; }
.blog .product-blog .time-blog .time:first-child {
border: 0; }
.blog .product-blog .time-blog .time:last-child {
padding-left: 0; }
.brand .brand-1 {
background-position: 44px 0; }
.brand .brand-4 {
background-position: -677px 0; }
.brand .brand-5 {
background-position: -918px 0; }
footer .footer-logo .footer-row .col-lg-4.cop {
padding-top: 32px; }
footer .footer-logo .footer-row .col-lg-4 span {
padding-top: 0; }
footer .new-letter .form-new p {
padding: 0px 60px 10px 50px; } }
@media (max-width: 767px) {
.phone-mobile {
padding: 10px 15px;
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black; }
#myNavbar {
padding: 0; }
.menu-main {
padding-left: 20px; }
.mobile-menu {
padding-top: 15px; }
.pos-header {
position: unset !important; }
.logo {
padding: 10px 10px 0 0; }
.icon-menu {
padding: 12px 0 0 164px; }
.icon-menu::before {
right: 0;
top: 20px; }
.icon-menu li#input-search a {
padding-right: 0; }
.icon-menu li#input-search .alert-search {
left: -186px; }
.icon-menu li img {
padding-right: 0; }
.icon-menu li img#img-cart {
padding-right: 0; }
.icon-menu .cart-menu .dropdown-menu {
left: unset;
right: 0; }
.carousel-inner .slide-2 .carousel-caption {
top: 32px; }
.carousel-inner .slide-1 .carousel-caption {
top: 20px; }
.who p {
padding: 0 155px; }
.who .media {
left: 400px; }
.wedding .img-wedding img {
display: none; }
footer .footer-logo .footer-row .col-lg-4 {
background: #f5e7e6; }
footer .footer-logo .footer-row .col-lg-4 .logo-bot {
margin-left: 0;
margin-top: 20px; }
footer .footer-logo .footer-row .col-lg-4.cop {
padding-top: 15px;
background: #f5e7e6; }
footer .footer-logo .footer-row .col-lg-4 span#gmail-footer {
padding: 20px 0;
float: unset; } }
@media (max-width: 667px) {
.icon-menu {
padding: 12px 0 0 135px; }
.who h1 {
font-size: 70px;
top: 138px; }
.who .h2 {
font-size: 26px;
top: 170px; }
.who p {
top: 230px; }
.collection .banner-collec h3 {
margin-top: -323px;
font-size: 16px; }
.collection .banner-collec h1 {
font-size: 42px; }
.collection .banner-collec a {
margin-left: 96px; }
footer .new-letter .form-new input {
width: 240px; } }
@media (max-width: 568px) {
.mobile-menu {
padding-top: 8px; }
.icon-menu {
padding: 6px 0 0 94px; }
.icon-menu {
padding: 12px 0 0 94px; }
.who .media {
left: 310px; }
.who h1 {
font-size: 60px;
top: 110px; }
.who .h2 {
font-size: 22px;
top: 140px; }
.who p {
top: 192px;
-webkit-line-clamp: 2; }
.collection .banner-collec h3 {
margin-top: -268px; }
.collection .banner-collec h1 {
margin-top: 0; }
.collection .banner-collec a {
margin-left: 80px;
margin-top: 0; }
.wedding {
padding-bottom: 0; }
.wedding h1 {
padding-top: 0; }
.holiday h1 {
padding-top: 0; }
.holiday .banner-holiday .title-holiday {
top: 45px;
left: 38px; }
.holiday .banner-holiday .title-holiday h1 {
font-size: 14px;
padding-bottom: 20px; }
.holiday .banner-holiday .title-holiday p {
display: none; }
.holiday .banner-holiday .title-holiday span#sale30 {
padding-left: 35px; }
.holiday .banner-holiday .title-holiday span#off {
padding-left: 145px; }
.count .img-count {
background: #dbe7ed; }
.count .img-count img {
visibility: hidden; }
.count .title-count {
right: 100px;
top: 18px; }
.brand .brand-6 {
background-position: -1172px 0; }
.brand .brand-5 {
background-position: -930px 0; }
footer .new-letter .form-new input {
width: 190px; }
footer .new-letter .form-new p {
padding: 0px 0 10px 50px; } }
@media (max-width: 414px) {
.col-xs-6 {
width: 100%; }
.icon-menu {
padding: 0px 0 0 30px; }
.icon-menu::before {
right: 2px;
top: 5px; }
.mobile-menu {
padding-top: 0; }
.carousel-inner .slide-1 .carousel-caption {
top: -30px; }
.carousel-inner .slide-1 .carousel-caption h3 {
font-size: 18px; }
.carousel-inner .slide-1 .carousel-caption h1 {
font-size: 30px; }
.carousel-inner .slide-2 .carousel-caption {
top: -10px; }
.carousel-inner .slide-2 .carousel-caption h1 {
margin-top: 0; }
.carousel-inner .slide-2 .carousel-caption p {
padding: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 166px; }
.carousel-indicators {
margin-bottom: 50px; }
.who h1 {
font-size: 45px;
top: 80px; }
.who .h2 {
top: 96px; }
.who p {
top: 145px; }
.who .media {
left: 196px;
bottom: 0; }
.who .media #avatar {
width: 60px; }
.who .media h3 {
padding: 0; }
.collection h1 {
padding-top: 20px;
font-size: 36px; }
.collection h2 {
padding-bottom: 0px; }
.collection .banner-collec {
padding-bottom: 240px; }
.collection .banner-collec h3 {
font-size: 20px;
margin-top: -378px; }
.collection .banner-collec h1 {
font-size: 56px; }
.collection .banner-collec a {
margin-left: 140px; }
.wedding h2 {
font-size: 14px; }
.holiday h2 {
font-size: 14px; }
.holiday .banner-holiday .title-holiday {
top: 90px;
left: 0px; }
.holiday .banner-holiday .title-holiday h1 {
font-size: 20px; }
.holiday .banner-holiday .title-holiday p {
display: block;
padding-left: 85px; }
.holiday .banner-holiday .title-holiday span#sale30 {
padding-left: 112px; }
.holiday .banner-holiday .title-holiday span#off {
padding-left: 222px; }
.count .title-count {
right: 70px;
top: -6px; }
.count .title-count #countdown #tiles span {
font-size: 26px;
width: 60px; }
.blog p {
font-size: 14px;
padding-bottom: 50px; }
.brand .brand-1 {
margin: 0 134px; }
.brand .brand-2 {
margin: 0 107px;
width: 200px; }
.brand .brand-3 {
margin: 0 138px; }
.brand .brand-4 {
margin: 0 138px; }
.brand .brand-5 {
margin: 0px 102px;
background-position: -912px 0;
width: 210px; }
.brand .brand-6 {
margin: 0 107px;
width: 200px; }
footer .info-footer {
padding-top: 100px; }
footer .new-letter {
padding-bottom: 0px; }
footer .new-letter .form-new {
margin-top: 0; }
footer .new-letter .form-new h1 {
padding: 35px 0 0 15px; }
footer .new-letter .form-new p {
padding: 0px 40px 10px 15px; }
footer .new-letter .form-new input {
width: 260px;
margin-left: 15px; }
footer .new-letter .form-new button {
margin: 20px 0 0 15px; } }
@media (max-width: 375px) {
.icon-menu {
padding: 0px 0 0 14px; }
.who h1 {
font-size: 40px;
top: 70px; }
.who .h2 {
top: 82px; }
.who p {
padding: 0 112px;
top: 132px; }
.who .media {
bottom: -12px; }
.collection .banner-collec a {
margin-left: 122px; } }
@media (max-width: 320px) {
.logo {
padding: 10px 0px 0 0; }
.logo img {
width: 33%; }
.icon-menu {
padding: 0px 0 0 24px; }
.icon-menu::before {
right: -10px; }
.icon-menu li .fa-user {
font-size: 18px;
position: relative;
top: 1px; }
.icon-menu li.icon-user a {
padding-right: 0; }
.icon-menu li.cart-menu a {
padding-right: 0; }
.icon-menu li img {
width: 74%; }
.icon-menu li img #img-cart {
width: 80%; }
.carousel-inner .slide-1 .carousel-caption h3 {
font-size: 14px;
margin-bottom: 5px; }
.carousel-inner .slide-1 .carousel-caption h1 {
font-size: 20px;
margin-bottom: 5px; }
.carousel-inner .slide-1 .carousel-caption p {
margin-bottom: 0;
-webkit-line-clamp: 1; }
.carousel-inner .slide-2 .carousel-caption h1 {
font-size: 26px; }
.carousel-inner .slide-2 .carousel-caption h3 {
font-size: 18px; }
.carousel-indicators {
margin-bottom: 38px;
left: 68%; }
.who h1 {
font-size: 34px;
top: 56px; }
.who .h2 {
top: 68px;
font-size: 18px; }
.who p {
top: 108px;
padding: 0px 85px; }
.who .media {
bottom: -6px;
left: 166px; }
.who .media #avatar {
width: 44px; }
.who .media h3 {
margin-top: 8px;
font-size: 14px; }
.who .media span {
padding-left: 0px; }
.collection h1 {
font-size: 34px; }
.collection .banner-collec h3 {
margin-top: -300px; }
.collection .banner-collec h1 {
font-size: 44px; }
.collection .banner-collec a {
margin-left: 98px; }
.holiday .banner-holiday .title-holiday h1 {
font-size: 18px;
padding-bottom: 15px;
padding-left: 66px; }
.holiday .banner-holiday .title-holiday p {
display: none; }
.holiday .banner-holiday .title-holiday span#sale30 {
padding-left: 78px; }
.holiday .banner-holiday .title-holiday span#off {
padding-left: 192px; }
.count .title-count {
right: 45px; }
.count .title-count h1 {
font-size: 36px;
padding-left: 8px; }
.count .title-count #countdown {
padding: 0px 0px 16px 0; }
.count .title-count #countdown #tiles span {
width: 40px;
font-size: 20px;
margin: 0 10px; }
.count .title-count #countdown .labels {
right: 0;
bottom: 5px; }
.blog h1 {
font-size: 50px; }
footer .info-footer .social-text span {
padding-right: 6px; }
.brand .brand-1 {
margin: 0 60px;
width: 200px;
background-position: 25px 0; }
.brand .brand-2 {
margin: 0 60px; }
.brand .brand-3 {
margin: 0 94px; }
.brand .brand-4 {
margin: 0 70px;
width: 200px;
background-position: -714px 0; }
.brand .brand-5 {
margin: 0 60px; }
.brand .brand-6 {
margin: 0 60px; } }
@media (max-width: 991px) {
.form-search-mobile {
position: relative;
padding: 50px 20px 0 15px; }
.form-search-mobile input {
outline: 0;
border: 0;
border-radius: 0;
box-shadow: none;
padding-left: 20px;
border-bottom: 1px solid #ddd;
padding-left: 0px; }
.form-search-mobile input::-webkit-input-placeholder {
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color: black;
opacity: .5; }
.form-search-mobile button {
outline: 0;
border: 0;
background: #fff;
color: white;
position: absolute;
right: 20px;
top: 55px; }
.menu-main {
padding-top: 0px; } }
/*# sourceMappingURL=style-res-v1.css.map */ | 0.338405 | 0.060975 |
@font-face {
font-family: 'Poppins Regular';
src: url('../pages/assets/fonts/Poppins-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Poppins Bold';
src: url('../pages/assets/fonts/Poppins-Bold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Poppins Extra Bold';
src: url('../pages/assets/fonts/Poppins-ExtraBold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Poppins Light';
src: url('../pages/assets/fonts/Poppins-Light.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
.container_page {
margin: 1vh auto;
}
.header {
display: flex;
margin: auto auto;
justify-content: space-between;
font-size: 40pt;
font-weight: normal;
color: #fcfcfc;
font-family: 'Poppins Regular';
}
.container_body {
display: flex;
margin: 0vh auto;
}
.container_countdown {
margin: auto auto;
}
.countdown {
margin: auto auto;
}
.countdownDiv {
width: auto;
}
.wallet_container {
margin: auto 2vh;
background-color: #105b72;
}
.multi_wallet {
text-align: center;
background-color: #105b72;
}
.styledText {
text-align: center;
font-size: 14pt;
font-weight: normal;
color: #fcfcfc;
font-family: 'Poppins Regular';
}
.styledContainer {
text-align: center;
font-size: 14pt;
font-weight: normal;
color: #fcfcfc;
font-family: 'Poppins Regular';
background-color: #105b72;
width: 300px;
}
.colorText {
text-align: center;
font-size: 14pt;
font-weight: bold;
color: #105b72;
font-family: 'Poppins Regular';
}
.content_text {
text-align: center;
font-size: 14pt;
font-weight: normal;
color: #fcfcfc;
font-family: 'Poppins Regular';
inline-size: 300px;
margin: 5% auto;
}
.container_left {
margin: auto auto;
}
.container_right {
margin: auto auto;
}
.content_leftTitle {
margin: auto auto;
text-align: center;
font-size: 70pt;
font-weight: bold;
color: #105b72;
font-family: 'Poppins Bold';
}
.content_leftText {
margin: 5% auto;
font-family: 'Poppins Light';
font-size: 18pt;
font-weight: normal;
color: #fcfcfc;
text-align: center;
}
.content_leftPrice {
margin: auto;
margin-top: 45%;
inline-size: 220px;
font-family: 'Poppins Regular';
font-size: 14pt;
font-weight: normal;
color: #105b72;
text-align: center;
}
.content_socials {
vertical-align: top;
text-align: center;
margin: 15% auto;
}
.content_discord {
margin: auto auto;
text-decoration: none;
}
.content_twitter {
margin: auto 0vh;
text-decoration: none;
}
.content_wallet_to_start {
text-align: center;
font-size: 14pt;
font-weight: normal;
color: #fcfcfc;
font-family: 'Poppins Regular';
inline-size: 300px;
margin: auto;
}
.cover_image {
margin: auto auto;
width: 70%;
}
.container_wallet {
margin: auto auto;
text-align: center;
}
.container_details {
text-align: center;
font-size: 14pt;
font-weight: normal;
color: #fcfcfc;
font-family: 'Poppins Regular';
inline-size: 300px;
margin: auto;
}
.button {
background-color: white;
color: black;
border: 2px solid #4CAF50;
}
.connect_wallet {
margin: auto auto;
}
.button_connect:hover {
background-color: #ff2424d0;
}
.content_mint {
width: 25%;
color:#FFFFFF;
font-family: 'Poppins Light';
font-size: 15px;
font-weight: lighter;
}
.container_generic {
display: flex;
align-items: center;
text-align: center;
margin: auto;
width: 400px;
}
.button_mint {
background-color: #105b72;
height: 35px;
}
.content_nftlist {
margin: auto auto;
background-color: #fbfeffd5;
display: flex;
}
.title_nftlist {
margin: auto auto;
text-align: center;
font-size: 14pt;
font-weight: normal;
color: #fcfcfc;
font-family: 'Poppins Regular';
} | styles/myStyle.module.css | @font-face {
font-family: 'Poppins Regular';
src: url('../pages/assets/fonts/Poppins-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Poppins Bold';
src: url('../pages/assets/fonts/Poppins-Bold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Poppins Extra Bold';
src: url('../pages/assets/fonts/Poppins-ExtraBold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Poppins Light';
src: url('../pages/assets/fonts/Poppins-Light.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
.container_page {
margin: 1vh auto;
}
.header {
display: flex;
margin: auto auto;
justify-content: space-between;
font-size: 40pt;
font-weight: normal;
color: #fcfcfc;
font-family: 'Poppins Regular';
}
.container_body {
display: flex;
margin: 0vh auto;
}
.container_countdown {
margin: auto auto;
}
.countdown {
margin: auto auto;
}
.countdownDiv {
width: auto;
}
.wallet_container {
margin: auto 2vh;
background-color: #105b72;
}
.multi_wallet {
text-align: center;
background-color: #105b72;
}
.styledText {
text-align: center;
font-size: 14pt;
font-weight: normal;
color: #fcfcfc;
font-family: 'Poppins Regular';
}
.styledContainer {
text-align: center;
font-size: 14pt;
font-weight: normal;
color: #fcfcfc;
font-family: 'Poppins Regular';
background-color: #105b72;
width: 300px;
}
.colorText {
text-align: center;
font-size: 14pt;
font-weight: bold;
color: #105b72;
font-family: 'Poppins Regular';
}
.content_text {
text-align: center;
font-size: 14pt;
font-weight: normal;
color: #fcfcfc;
font-family: 'Poppins Regular';
inline-size: 300px;
margin: 5% auto;
}
.container_left {
margin: auto auto;
}
.container_right {
margin: auto auto;
}
.content_leftTitle {
margin: auto auto;
text-align: center;
font-size: 70pt;
font-weight: bold;
color: #105b72;
font-family: 'Poppins Bold';
}
.content_leftText {
margin: 5% auto;
font-family: 'Poppins Light';
font-size: 18pt;
font-weight: normal;
color: #fcfcfc;
text-align: center;
}
.content_leftPrice {
margin: auto;
margin-top: 45%;
inline-size: 220px;
font-family: 'Poppins Regular';
font-size: 14pt;
font-weight: normal;
color: #105b72;
text-align: center;
}
.content_socials {
vertical-align: top;
text-align: center;
margin: 15% auto;
}
.content_discord {
margin: auto auto;
text-decoration: none;
}
.content_twitter {
margin: auto 0vh;
text-decoration: none;
}
.content_wallet_to_start {
text-align: center;
font-size: 14pt;
font-weight: normal;
color: #fcfcfc;
font-family: 'Poppins Regular';
inline-size: 300px;
margin: auto;
}
.cover_image {
margin: auto auto;
width: 70%;
}
.container_wallet {
margin: auto auto;
text-align: center;
}
.container_details {
text-align: center;
font-size: 14pt;
font-weight: normal;
color: #fcfcfc;
font-family: 'Poppins Regular';
inline-size: 300px;
margin: auto;
}
.button {
background-color: white;
color: black;
border: 2px solid #4CAF50;
}
.connect_wallet {
margin: auto auto;
}
.button_connect:hover {
background-color: #ff2424d0;
}
.content_mint {
width: 25%;
color:#FFFFFF;
font-family: 'Poppins Light';
font-size: 15px;
font-weight: lighter;
}
.container_generic {
display: flex;
align-items: center;
text-align: center;
margin: auto;
width: 400px;
}
.button_mint {
background-color: #105b72;
height: 35px;
}
.content_nftlist {
margin: auto auto;
background-color: #fbfeffd5;
display: flex;
}
.title_nftlist {
margin: auto auto;
text-align: center;
font-size: 14pt;
font-weight: normal;
color: #fcfcfc;
font-family: 'Poppins Regular';
} | 0.419648 | 0.101947 |
.navbar2{
/* background-color: lightblue; */
display: flex;
align-items: center;
justify-content: center;
height: fit-content;
/* margin-top: 10px; */
/* margin-bottom: 10px; */
/* max-width: 1400px; */
margin-left: auto;
margin-right: auto;
}
.navbar2__searchContainer{
margin-left: 10px;
margin-right: 20px;
position:relative;
top:10px;
display: flex;
flex: 1;
left:50px;
align-items: center;
border: solid black 2px;
border-radius: 60px;
width: 80px;
/* background-color: tomato; */
}
@media only screen and (width: 731px) {
.navbar2__searchContainer {
position:relative;
left:10px;
}
}
.navbar2__searchContainer__input{
flex: 1;
background: white;
margin: 5px 0px 5px 20px;
outline: none;
font-size: 20px;
font-family: 'Josefin Sans', sans-serif;
width: 50px;
}
.navbar2__searchContainer__searchicon{
background-color: black;
border-top-right-radius: 60px;
border-bottom-right-radius: 60px;
height: 42px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
}
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
.navbar2__cat{
display: flex;
align-items: center !important;
color: white;
transition: ease-in-out 200ms;
padding: 5px 10px;
border-radius: 50px;
cursor: pointer;
font-size: 18px;
font-weight: 700;
color: black;
font-family: 'Josefin Sans', sans-serif;
width: 140px;
}
.navbar2__cat:hover{
background-color: lightgray;
/* background-color: #fff898; */
}
.navbar2__cat__opened{
background-color: lightgray;
/* background-color: #fff898; */
font-family: 'Josefin Sans', sans-serif;
}
.navbar2__cat__arrow{
padding: 0 5px;
transition: ease-in-out 100ms;
font-size: 16px;
transform: rotateZ(180deg);
}
.navbar2__cat__arrow__animation{
transform: rotateZ(360deg) !important;
}
.navbar2__cat__choices{
display: flex;
justify-content: center;
flex-wrap: wrap;
}
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
.navbar2__iconSearchinputnone{
opacity: 0;
}
.navbar2__iconSearchinput{
opacity: 1;
transition: opacity 200ms ;
}
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
.shipto{
margin: auto 0;
margin-right: 10px;
font-family: 'Josefin Sans', sans-serif;
font-size: 15px;
width: 80px;
}
.shiptoOptions{
font-family: 'Josefin Sans', sans-serif;
font-size: 14px;
font-weight: 600;
/* margin-left: 15px; */
}
.shiptoOption{
text-align: center;
}
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
.navbar2__signinbutton{
font-weight: 600;
font-size: 18px;
font-family: 'Josefin Sans', sans-serif;
}
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
.navbar__rowOne{
height: 4vh;
}
.navbar__rowOne__linksupport{
font-family: 'Josefin Sans', sans-serif;
/* color: #666; */
color: black;
text-decoration: none;
font-size: inherit;
outline: none;
margin: 0 10px;
}
.navbar__rowOne__linksupport:hover{
text-decoration: underline;
color: black;
}
.navbar__rowOne__item{
margin-left: 25px;
}
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
.tabSignRegister{
outline: none;
font-family: 'Josefin Sans', sans-serif;
font-weight: 600;
}
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */ | src/Components/Navbar/navbar.css | .navbar2{
/* background-color: lightblue; */
display: flex;
align-items: center;
justify-content: center;
height: fit-content;
/* margin-top: 10px; */
/* margin-bottom: 10px; */
/* max-width: 1400px; */
margin-left: auto;
margin-right: auto;
}
.navbar2__searchContainer{
margin-left: 10px;
margin-right: 20px;
position:relative;
top:10px;
display: flex;
flex: 1;
left:50px;
align-items: center;
border: solid black 2px;
border-radius: 60px;
width: 80px;
/* background-color: tomato; */
}
@media only screen and (width: 731px) {
.navbar2__searchContainer {
position:relative;
left:10px;
}
}
.navbar2__searchContainer__input{
flex: 1;
background: white;
margin: 5px 0px 5px 20px;
outline: none;
font-size: 20px;
font-family: 'Josefin Sans', sans-serif;
width: 50px;
}
.navbar2__searchContainer__searchicon{
background-color: black;
border-top-right-radius: 60px;
border-bottom-right-radius: 60px;
height: 42px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
}
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
.navbar2__cat{
display: flex;
align-items: center !important;
color: white;
transition: ease-in-out 200ms;
padding: 5px 10px;
border-radius: 50px;
cursor: pointer;
font-size: 18px;
font-weight: 700;
color: black;
font-family: 'Josefin Sans', sans-serif;
width: 140px;
}
.navbar2__cat:hover{
background-color: lightgray;
/* background-color: #fff898; */
}
.navbar2__cat__opened{
background-color: lightgray;
/* background-color: #fff898; */
font-family: 'Josefin Sans', sans-serif;
}
.navbar2__cat__arrow{
padding: 0 5px;
transition: ease-in-out 100ms;
font-size: 16px;
transform: rotateZ(180deg);
}
.navbar2__cat__arrow__animation{
transform: rotateZ(360deg) !important;
}
.navbar2__cat__choices{
display: flex;
justify-content: center;
flex-wrap: wrap;
}
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
.navbar2__iconSearchinputnone{
opacity: 0;
}
.navbar2__iconSearchinput{
opacity: 1;
transition: opacity 200ms ;
}
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
.shipto{
margin: auto 0;
margin-right: 10px;
font-family: 'Josefin Sans', sans-serif;
font-size: 15px;
width: 80px;
}
.shiptoOptions{
font-family: 'Josefin Sans', sans-serif;
font-size: 14px;
font-weight: 600;
/* margin-left: 15px; */
}
.shiptoOption{
text-align: center;
}
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
.navbar2__signinbutton{
font-weight: 600;
font-size: 18px;
font-family: 'Josefin Sans', sans-serif;
}
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
.navbar__rowOne{
height: 4vh;
}
.navbar__rowOne__linksupport{
font-family: 'Josefin Sans', sans-serif;
/* color: #666; */
color: black;
text-decoration: none;
font-size: inherit;
outline: none;
margin: 0 10px;
}
.navbar__rowOne__linksupport:hover{
text-decoration: underline;
color: black;
}
.navbar__rowOne__item{
margin-left: 25px;
}
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
.tabSignRegister{
outline: none;
font-family: 'Josefin Sans', sans-serif;
font-weight: 600;
}
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */
/* __________________________________________________ */ | 0.121035 | 0.036943 |
body {
font: 11px "Lucida Grande", Helvetica, Arial, sans-serif;
background-image: url(/images/bang2.jpg);
font-family: 'Lato', sans-serif;
}
#tophead {
margin: 0px 0px 10px 0px;
}
.footer
{
padding: 20px; text-align: center; background: #444444; opacity: 50%;
}
.breadcrumb {
padding: 0px 0px 10px 10px;
margin: 0 ! important;
list-style: none;
background-color: #f5f5f5;
border-radius: 4px;
}
a {
color: #00B7FF
}
.page {
padding: 5px;
font-size: 80%
}
.btn-primary {
cursor: pointer;
border: 1px solid #fff;
padding: 5px;
border-radius: 2px
}
.btn-disable {
cursor: pointer;
border: 1px solid #fff;
padding: 5px;
border-radius: 2px;
background-color: #dedede;
}
input.full,
select.full,
textarea.full {
width: 100%;
}
.hello {
border-bottom: 2px solid
}
.cbox {
cursor: pointer;
border: 3px solid #8888aa;
padding: 5px;
border-radius: 10px;
filter: drop-shadow(1px 3px 3px #55ad83)
}
.box {
cursor: pointer;
border: 3px double #8888aa;
padding: 5px;
border-radius: 2px
}
.bar {
border-bottom: 2px solid
}
.number {
font-size: 2em
}
.greybox {
border: 1px solid #ccddcc;
padding: 5px;
width: 100%;
font-size: 80%
}
.bluebox {
border: 1px solid #6677ff;
padding: 5px;
width: 100%;
font-size: 80%
}
.redbox {
border: 1px solid #ff6677;
padding: 5px;
width: 100%;
font-size: 80%
}
.well2 {
border: 1px solid;
border-radius: 5px;
padding: 5px
}
.datatable {
overflow: auto
}
.contextname {
font-size: 1.2em
}
li.lq {
background-color: #ededf0;
color: #4466ee
}
li.lq .box {
border: 3px double #ee4444
}
.wave_detail,
.server_detail {
color: blue;
cursor: pointer
}
#serverModal,
waveModal {
position: relative;
max-height: 400px
}
.modal-dialog {
position: fixed;
width: 80%;
height: 80%;
margin: 0;
left: 5%;
right: 5%;
padding: 10px
}
table {
background-color: #ffffff
}
.greybox {
background: #ebe9f9;
background: -moz-linear-gradient(-45deg, #ebe9f9 0, #d8d0ef 50%, #cec7ec 51%, #c1bfea 100%);
background: -webkit-linear-gradient(-45deg, #ebe9f9 0, #d8d0ef 50%, #cec7ec 51%, #c1bfea 100%);
background: linear-gradient(135deg, #ebe9f9 0, #d8d0ef 50%, #cec7ec 51%, #c1bfea 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebe9f9', endColorstr='#c1bfea', GradientType=1)
}
.bluebox {
background: #e4f5fc;
background: -moz-linear-gradient(-45deg, #e4f5fc 0, #bfe8f9 42%, #c9e3ed 52%, #9fd4ea 99%);
background: -webkit-linear-gradient(-45deg, #e4f5fc 0, #bfe8f9 42%, #c9e3ed 52%, #9fd4ea 99%);
background: linear-gradient(135deg, #e4f5fc 0, #bfe8f9 42%, #c9e3ed 52%, #9fd4ea 99%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e4f5fc', endColorstr='#9fd4ea', GradientType=1)
}
.redbox {
background: #fceabb;
background: -moz-linear-gradient(-45deg, #fceabb 0, #f9ebc7 49%, #f7e2ad 53%, #fbdf93 100%);
background: -webkit-linear-gradient(-45deg, #fceabb 0, #f9ebc7 49%, #f7e2ad 53%, #fbdf93 100%);
background: linear-gradient(135deg, #fceabb 0, #f9ebc7 49%, #f7e2ad 53%, #fbdf93 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceabb', endColorstr='#fbdf93', GradientType=1)
}
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
display: inline-block;
height: 20px;
padding: 2px 4px;
margin-bottom: 9px;
font-size: 10px;
line-height: 14px;
color: #555555;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
table
{
width:100%;
} | poetry/node/public/stylesheets/app.css | body {
font: 11px "Lucida Grande", Helvetica, Arial, sans-serif;
background-image: url(/images/bang2.jpg);
font-family: 'Lato', sans-serif;
}
#tophead {
margin: 0px 0px 10px 0px;
}
.footer
{
padding: 20px; text-align: center; background: #444444; opacity: 50%;
}
.breadcrumb {
padding: 0px 0px 10px 10px;
margin: 0 ! important;
list-style: none;
background-color: #f5f5f5;
border-radius: 4px;
}
a {
color: #00B7FF
}
.page {
padding: 5px;
font-size: 80%
}
.btn-primary {
cursor: pointer;
border: 1px solid #fff;
padding: 5px;
border-radius: 2px
}
.btn-disable {
cursor: pointer;
border: 1px solid #fff;
padding: 5px;
border-radius: 2px;
background-color: #dedede;
}
input.full,
select.full,
textarea.full {
width: 100%;
}
.hello {
border-bottom: 2px solid
}
.cbox {
cursor: pointer;
border: 3px solid #8888aa;
padding: 5px;
border-radius: 10px;
filter: drop-shadow(1px 3px 3px #55ad83)
}
.box {
cursor: pointer;
border: 3px double #8888aa;
padding: 5px;
border-radius: 2px
}
.bar {
border-bottom: 2px solid
}
.number {
font-size: 2em
}
.greybox {
border: 1px solid #ccddcc;
padding: 5px;
width: 100%;
font-size: 80%
}
.bluebox {
border: 1px solid #6677ff;
padding: 5px;
width: 100%;
font-size: 80%
}
.redbox {
border: 1px solid #ff6677;
padding: 5px;
width: 100%;
font-size: 80%
}
.well2 {
border: 1px solid;
border-radius: 5px;
padding: 5px
}
.datatable {
overflow: auto
}
.contextname {
font-size: 1.2em
}
li.lq {
background-color: #ededf0;
color: #4466ee
}
li.lq .box {
border: 3px double #ee4444
}
.wave_detail,
.server_detail {
color: blue;
cursor: pointer
}
#serverModal,
waveModal {
position: relative;
max-height: 400px
}
.modal-dialog {
position: fixed;
width: 80%;
height: 80%;
margin: 0;
left: 5%;
right: 5%;
padding: 10px
}
table {
background-color: #ffffff
}
.greybox {
background: #ebe9f9;
background: -moz-linear-gradient(-45deg, #ebe9f9 0, #d8d0ef 50%, #cec7ec 51%, #c1bfea 100%);
background: -webkit-linear-gradient(-45deg, #ebe9f9 0, #d8d0ef 50%, #cec7ec 51%, #c1bfea 100%);
background: linear-gradient(135deg, #ebe9f9 0, #d8d0ef 50%, #cec7ec 51%, #c1bfea 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebe9f9', endColorstr='#c1bfea', GradientType=1)
}
.bluebox {
background: #e4f5fc;
background: -moz-linear-gradient(-45deg, #e4f5fc 0, #bfe8f9 42%, #c9e3ed 52%, #9fd4ea 99%);
background: -webkit-linear-gradient(-45deg, #e4f5fc 0, #bfe8f9 42%, #c9e3ed 52%, #9fd4ea 99%);
background: linear-gradient(135deg, #e4f5fc 0, #bfe8f9 42%, #c9e3ed 52%, #9fd4ea 99%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e4f5fc', endColorstr='#9fd4ea', GradientType=1)
}
.redbox {
background: #fceabb;
background: -moz-linear-gradient(-45deg, #fceabb 0, #f9ebc7 49%, #f7e2ad 53%, #fbdf93 100%);
background: -webkit-linear-gradient(-45deg, #fceabb 0, #f9ebc7 49%, #f7e2ad 53%, #fbdf93 100%);
background: linear-gradient(135deg, #fceabb 0, #f9ebc7 49%, #f7e2ad 53%, #fbdf93 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceabb', endColorstr='#fbdf93', GradientType=1)
}
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
display: inline-block;
height: 20px;
padding: 2px 4px;
margin-bottom: 9px;
font-size: 10px;
line-height: 14px;
color: #555555;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
table
{
width:100%;
} | 0.322099 | 0.176991 |
html,body{
height: 100%;
}
img{
max-width: 100%;
}
/*cover*/
#cover{
background: #222 url("../img/stars.jpg") center center no-repeat;
background-size: cover;
color: white;
height: 100%;
text-align: center;
display: flex;
align-items: center;
}
#cover-caption{
width: 100%;
}
.section-content{
padding: 4.375rem 0;
}
/*about us*/
#about{
background: #222 url("../img/girlincar.jpg") center center no-repeat;
background-size: cover;
padding: 0.625rem 0 ;
}
.about-text{
background-color: rgba(0,0,0,0.8);
color: white;
padding: 1.875rem;
}
/*Footer Section*/
#footer-main {
background: #222;
color: white;
font-size: 0.8rem;
padding: 2.5rem 0;
}
/*Back to top*/
.cd-top {
display: inline-block;
height: 40px;
width: 40px;
position: fixed;
bottom: 40px;
right: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
/* image replacement properties */
overflow: hidden;
text-indent: 100%;
white-space: nowrap;
background: rgba(232, 98, 86, 0.8) url(../img/cd-top-arrow.svg) no-repeat center 50%;
/*visibility: hidden;*/
opacity: 0;
-webkit-transition: opacity .3s 0s, visibility 0s .3s;
-moz-transition: opacity .3s 0s, visibility 0s .3s;
transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top:hover {
background-color: #e8332e; /* Add a dark-grey background on hover */
}
/*These classes are added (or removed) to the “Back to top” link using jQuery.*/
.cd-top.cd-is-visible {
/* the button becomes visible */
visibility: visible;
opacity: 1;
}
.cd-top.cd-fade-out {
/* if the user keeps scrolling down, the button is out of focus and becomes less visible */
opacity: .5;
}
/*Responsive styles*/
/*--breakpoint-sm: 576px;
--breakpoint-md: 768px;
--breakpoint-lg: 992px;
--breakpoint-xl: 1200px;*/
/*when the browser's width is 576px wide or less, apply the following styles*/
@media (max-width: 576px) {
html{
font-size: 0.875rem; /*14px*/
}
}
@media (max-width: 350px) {
#cover{
padding: 300px 0;
}
} | css/style.css | html,body{
height: 100%;
}
img{
max-width: 100%;
}
/*cover*/
#cover{
background: #222 url("../img/stars.jpg") center center no-repeat;
background-size: cover;
color: white;
height: 100%;
text-align: center;
display: flex;
align-items: center;
}
#cover-caption{
width: 100%;
}
.section-content{
padding: 4.375rem 0;
}
/*about us*/
#about{
background: #222 url("../img/girlincar.jpg") center center no-repeat;
background-size: cover;
padding: 0.625rem 0 ;
}
.about-text{
background-color: rgba(0,0,0,0.8);
color: white;
padding: 1.875rem;
}
/*Footer Section*/
#footer-main {
background: #222;
color: white;
font-size: 0.8rem;
padding: 2.5rem 0;
}
/*Back to top*/
.cd-top {
display: inline-block;
height: 40px;
width: 40px;
position: fixed;
bottom: 40px;
right: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
/* image replacement properties */
overflow: hidden;
text-indent: 100%;
white-space: nowrap;
background: rgba(232, 98, 86, 0.8) url(../img/cd-top-arrow.svg) no-repeat center 50%;
/*visibility: hidden;*/
opacity: 0;
-webkit-transition: opacity .3s 0s, visibility 0s .3s;
-moz-transition: opacity .3s 0s, visibility 0s .3s;
transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top:hover {
background-color: #e8332e; /* Add a dark-grey background on hover */
}
/*These classes are added (or removed) to the “Back to top” link using jQuery.*/
.cd-top.cd-is-visible {
/* the button becomes visible */
visibility: visible;
opacity: 1;
}
.cd-top.cd-fade-out {
/* if the user keeps scrolling down, the button is out of focus and becomes less visible */
opacity: .5;
}
/*Responsive styles*/
/*--breakpoint-sm: 576px;
--breakpoint-md: 768px;
--breakpoint-lg: 992px;
--breakpoint-xl: 1200px;*/
/*when the browser's width is 576px wide or less, apply the following styles*/
@media (max-width: 576px) {
html{
font-size: 0.875rem; /*14px*/
}
}
@media (max-width: 350px) {
#cover{
padding: 300px 0;
}
} | 0.307878 | 0.047514 |
@-webkit-keyframes pulse {
0% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); }
50% {
-webkit-transform: translate(0, 10px);
transform: translate(0, 10px); }
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); } }
@keyframes pulse {
0% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); }
50% {
-webkit-transform: translate(0, 10px);
transform: translate(0, 10px); }
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); } }
.bounce-top {
-webkit-animation: bounce-top 0.9s both;
animation: bounce-top 0.9s both;
}
@keyframes bounce-top {
0% {
-webkit-transform: translateY(-45px);
transform: translateY(-45px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 1;
}
24% {
opacity: 1;
}
40% {
-webkit-transform: translateY(-24px);
transform: translateY(-24px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
65% {
-webkit-transform: translateY(-12px);
transform: translateY(-12px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
82% {
-webkit-transform: translateY(-6px);
transform: translateY(-6px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
93% {
-webkit-transform: translateY(-4px);
transform: translateY(-4px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
25%,
55%,
75%,
87% {
-webkit-transform: translateY(0px);
transform: translateY(0px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
100% {
-webkit-transform: translateY(0px);
transform: translateY(0px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
opacity: 1;
}
}
.scale-out-center {
-webkit-animation: scale-out-center 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
animation: scale-out-center 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
@-webkit-keyframes scale-out-center {
0% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
100% {
-webkit-transform: scale(0);
transform: scale(0);
opacity: 1;
}
}
@keyframes scale-out-center {
0% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
100% {
-webkit-transform: scale(0);
transform: scale(0);
opacity: 1;
}
}
.tilt-in-left-1 {
-webkit-animation: tilt-in-left-1 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: tilt-in-left-1 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes tilt-in-left-1 {
0% {
-webkit-transform: rotateX(-30deg) translateX(-300px) skewX(-30deg);
transform: rotateX(-30deg) translateX(-300px) skewX(-30deg);
opacity: 0;
}
100% {
-webkit-transform: rotateX(0deg) translateX(0) skewX(0deg);
transform: rotateX(0deg) translateX(0) skewX(0deg);
opacity: 1;
}
}
@keyframes tilt-in-left-1 {
0% {
-webkit-transform: rotateX(-30deg) translateX(-300px) skewX(-30deg);
transform: rotateX(-30deg) translateX(-300px) skewX(-30deg);
opacity: 0;
}
100% {
-webkit-transform: rotateX(0deg) translateX(0) skewX(0deg);
transform: rotateX(0deg) translateX(0) skewX(0deg);
opacity: 1;
}
}
.slide-in-fwd-left {
-webkit-animation: slide-in-fwd-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: slide-in-fwd-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-in-fwd-left {
0% {
-webkit-transform: translateZ(-1400px) translateX(-1000px);
transform: translateZ(-1400px) translateX(-1000px);
opacity: 0;
}
100% {
-webkit-transform: translateZ(0) translateX(0);
transform: translateZ(0) translateX(0);
opacity: 1;
}
}
@keyframes slide-in-fwd-left {
0% {
-webkit-transform: translateZ(-1400px) translateX(-1000px);
transform: translateZ(-1400px) translateX(-1000px);
opacity: 0;
}
100% {
-webkit-transform: translateZ(0) translateX(0);
transform: translateZ(0) translateX(0);
opacity: 1;
}
}
.fade-in-top {
-webkit-animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes fade-in-top {
0% {
-webkit-transform: translateY(-50px);
transform: translateY(-50px);
opacity: 0;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
}
@keyframes fade-in-top {
0% {
-webkit-transform: translateY(-50px);
transform: translateY(-50px);
opacity: 0;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
} | css/animations.css | @-webkit-keyframes pulse {
0% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); }
50% {
-webkit-transform: translate(0, 10px);
transform: translate(0, 10px); }
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); } }
@keyframes pulse {
0% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); }
50% {
-webkit-transform: translate(0, 10px);
transform: translate(0, 10px); }
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); } }
.bounce-top {
-webkit-animation: bounce-top 0.9s both;
animation: bounce-top 0.9s both;
}
@keyframes bounce-top {
0% {
-webkit-transform: translateY(-45px);
transform: translateY(-45px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 1;
}
24% {
opacity: 1;
}
40% {
-webkit-transform: translateY(-24px);
transform: translateY(-24px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
65% {
-webkit-transform: translateY(-12px);
transform: translateY(-12px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
82% {
-webkit-transform: translateY(-6px);
transform: translateY(-6px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
93% {
-webkit-transform: translateY(-4px);
transform: translateY(-4px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
25%,
55%,
75%,
87% {
-webkit-transform: translateY(0px);
transform: translateY(0px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
100% {
-webkit-transform: translateY(0px);
transform: translateY(0px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
opacity: 1;
}
}
.scale-out-center {
-webkit-animation: scale-out-center 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
animation: scale-out-center 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
@-webkit-keyframes scale-out-center {
0% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
100% {
-webkit-transform: scale(0);
transform: scale(0);
opacity: 1;
}
}
@keyframes scale-out-center {
0% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
100% {
-webkit-transform: scale(0);
transform: scale(0);
opacity: 1;
}
}
.tilt-in-left-1 {
-webkit-animation: tilt-in-left-1 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: tilt-in-left-1 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes tilt-in-left-1 {
0% {
-webkit-transform: rotateX(-30deg) translateX(-300px) skewX(-30deg);
transform: rotateX(-30deg) translateX(-300px) skewX(-30deg);
opacity: 0;
}
100% {
-webkit-transform: rotateX(0deg) translateX(0) skewX(0deg);
transform: rotateX(0deg) translateX(0) skewX(0deg);
opacity: 1;
}
}
@keyframes tilt-in-left-1 {
0% {
-webkit-transform: rotateX(-30deg) translateX(-300px) skewX(-30deg);
transform: rotateX(-30deg) translateX(-300px) skewX(-30deg);
opacity: 0;
}
100% {
-webkit-transform: rotateX(0deg) translateX(0) skewX(0deg);
transform: rotateX(0deg) translateX(0) skewX(0deg);
opacity: 1;
}
}
.slide-in-fwd-left {
-webkit-animation: slide-in-fwd-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: slide-in-fwd-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-in-fwd-left {
0% {
-webkit-transform: translateZ(-1400px) translateX(-1000px);
transform: translateZ(-1400px) translateX(-1000px);
opacity: 0;
}
100% {
-webkit-transform: translateZ(0) translateX(0);
transform: translateZ(0) translateX(0);
opacity: 1;
}
}
@keyframes slide-in-fwd-left {
0% {
-webkit-transform: translateZ(-1400px) translateX(-1000px);
transform: translateZ(-1400px) translateX(-1000px);
opacity: 0;
}
100% {
-webkit-transform: translateZ(0) translateX(0);
transform: translateZ(0) translateX(0);
opacity: 1;
}
}
.fade-in-top {
-webkit-animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes fade-in-top {
0% {
-webkit-transform: translateY(-50px);
transform: translateY(-50px);
opacity: 0;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
}
@keyframes fade-in-top {
0% {
-webkit-transform: translateY(-50px);
transform: translateY(-50px);
opacity: 0;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
} | 0.38168 | 0.094427 |
* {
padding: 0;
margin: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
:after, :before {
padding: 0;
margin: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-size: 14px;
font-weight: 400;
font-family: -apple-system, BlinkMacSystemFont, "Pingfang SC", "Roboto", "Segoe UI", "Microsoft Yahei", "DengXian SC", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
line-height: 1.8;
color: #424242;
word-wrap: break-word;
-webkit-font-feature-settings: "ss01" 1, "ss02" 1;
font-feature-settings: "ss01" 1, "ss02" 1;
}
a {
color: #3C93CE;
text-decoration: none;
}
a:focus, a:hover {
color: #2B6A94;
text-decoration: underline;
}
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-bottom: 1px solid #e6e6e6;
}
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
margin: 10px 0;
color: #2c2c2c;
font-weight: 500;
}
.h1, h1 {
font-size: 30px;
}
.h2, h2 {
font-size: 23px;
border-bottom: 1px solid #e6e6e6;
}
.h3, h3 {
font-size: 20px;
}
.h4, h4 {
font-size: 16px;
text-transform: uppercase;
}
.h5, h5 {
font-size: 14px;
text-transform: uppercase;
}
.h6, h6 {
font-size: 12px;
text-transform: uppercase;
}
p {
margin: 0 0 10px 0;
}
.small, small {
font-size: 85%;
}
.mark, mark {
padding: .2rem;
background-color: rgba(252, 248, 227, 0.5);
}
ol, ul {
margin: 0 0 10px 0;
padding: 0 0 0 18px;
}
ol ol, ol ul, ul ol, ul ul {
padding: 0 0 0 20px;
}
dl {
margin-top: 0;
margin-bottom: 20px;
}
dt {
font-weight: 500;
}
dd {
margin-left: 0;
}
b, strong {
font-weight: 500;
}
i, em {
font-style: italic;
}
blockquote {
padding: 0 0 0 15px;
margin: 10px 0;
font-size: 15px;
font-style: italic;
border-left: 5px solid #fafafa;
}
code, pre {
padding: 3px 5px;
font-family: 'SF Mono', Menlo, Courier New, sans-serif;
font-size: 12px;
color: #cd4945;
background-color: #fafafa;
border-radius: 3px;
}
pre {
overflow: auto;
max-width: 100%;
word-break: break-all;
word-wrap: normal;
-webkit-overflow-scrolling: touch;
}
pre > code {
white-space: pre;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
.clear {
clear: both;
}
/* Images and videos */
img, video {
display: block;
margin: 20px 2px;
position: relative;
max-width: 100%;
height: auto !important;
border-radius: 5px;
-webkit-user-select: none;
}
/* blog bottom bar */
.blog-bottom-bar {
display: block;
position: relative;
color: inherit;
background: #f9f9f9;
}
.blog-bottom-bar .blog-container .prev, .blog-bottom-bar .blog-container .next {
display: inline-block;
position: relative;
padding: 2em 0;
width: 50%;
color: inherit;
text-decoration: none;
font-size: 1.125em;
font-weight: 500;
vertical-align: top;
}
.blog-bottom-bar .blog-container .prev:hover, .blog-bottom-bar .blog-container .next:hover {
color: #6b6b6b;
}
.blog-bottom-bar .blog-container .prev span, .blog-bottom-bar .blog-container .next span {
font-size: 0.8em;
font-weight: 400;
}
.blog-bottom-bar .blog-container .next {
text-align: right;
}
/* Nav */
.blog-masthead {
display: table-cell;
vertical-align: middle;
position: relative;
width: 100vw;
height: 70vh;
background: #f9f9f9;
z-index: 0;
}
.blog-nav {
background-color: #ffffff;
-webkit-overflow-scrolling: touch;
overflow-x: auto;
white-space: nowrap;
}
.blog-nav .blog-nav-item {
position: relative;
display: inline-block;
padding: 1rem 0;
margin-right: 3rem;
color: inherit;
font-size: 110%;
font-weight: 500;
letter-spacing: -0.625px;
}
.blog-nav .blog-nav-item:focus, .blog-nav .blog-nav-item:hover {
color: inherit;
opacity: 0.8;
text-decoration: none;
}
.blog-container, .nav-container {
margin-right: auto;
margin-left: auto;
}
.blog-title h1,
.blog-title h1 a,
.blog-title h1 a:hover {
margin: 0;
color: inherit;
font-size: 5vmax;
font-weight: 500;
text-decoration: none;
letter-spacing: -2px;
line-height: 1.1;
}
/* Article */
article {
display: block;
margin: 2.5rem 0;
background-color: #fff;
}
article .blog-post-title {
margin: 0;
color: #3c3c3c;
font-weight: 500;
letter-spacing: -0.05rem;
line-height: 1.3;
}
article .blog-post-title a,
article .blog-post-title a:hover,
article .blog-post-meta {
color: inherit;
text-decoration: none;
}
article .more a {
background: #ffffff;
padding: 0.375rem 0.625rem;
font-family: inherit;
font-weight: 500;
border-radius: 5px;
color: #3c93ce;
border: 1px solid #3c93ce;
text-decoration: none;
}
article .more a:hover {
color: #2b6a94;
border: 1px solid #2b6a94;
}
/* Footer */
.blog-footer {
display: block;
position: relative;
margin-top: 20px;
padding: 30px 0;
background-color: #fafafa;
text-align: center;
font-size: 11px;
font-family: 'SF Mono', 'Menlo', 'Courier New', monospace;
line-height: 1;
}
.blog-footer p:last-child {
margin-bottom: 0;
}
/* Pagination */
.pagination {
padding: 0;
text-align: center;
}
.pagination li {
display: inline-block;
margin: 0 0.125em;
}
.pagination > li > a, .pagination > li > span {
background: #ffffff;
padding: 0.45rem 0.75rem;
font-family: inherit;
font-weight: 500;
border-radius: 50px;
color: #3c93ce;
border: 1px solid #3c93ce;
text-decoration: none;
line-height: 2.5;
}
.pagination > li > a:hover, .pagination > li > span:hover {
color: #2b6a94;
border: 1px solid #2b6a94;
}
.pagination > li.active > a {
color: #ffffff;
background: #3c93ce;
border: 1px solid #3c93ce;
}
.pagination > li.active > a:hover {
background: #2b6a94;
border: 1px solid #2b6a94;
}
/* Input */
form .text, form .submit {
background: #fdfdfd;
padding: 0.5rem 0.5rem;
font-family: inherit;
border-radius: 5px;
color: #333333;
border: 1px solid #dadada;
outline: none !important;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
form .text:focus, form .submit:focus {
background: #ffffff;
}
form#search .text {
width: 50px;
-webkit-transition: all cubic-bezier(.15,1,.5,1) 0.8s;
-o-transition: all cubic-bezier(.15,1,.5,1) 0.8s;
transition: all cubic-bezier(.15,1,.5,1) 0.8s;
}
form#search .text:hover {
cursor: default;
width: 150px;
}
form#search .text:active, form#search .text:focus {
width: 210px;
}
/* Archives */
.archive-title {
padding-bottom: 10px;
font-weight: 500;
text-align: center;
}
.archives-loop {
overflow: hidden;
padding: 5px 0px;
margin-top: 5px;
text-align: center;
}
.archives-loop li {
display: inline-block;
position: relative;
margin: 10px;
padding: 10px;
width: calc(90%/3);
-webkit-transition: all .3s cubic-bezier(.3, 1, .5, 1);
-o-transition: all .3s cubic-bezier(.3, 1, .5, 1);
transition: all .3s cubic-bezier(.3, 1, .5, 1);
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
border-radius: 5px;
text-align: left;
background-color: #fff;
-webkit-tap-highlight-color: transparent;
-webkit-overflow-scrolling: touch;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
.archives-loop li:hover {
-webkit-transform: translateY(-1px);
-ms-transform: translateY(-1px);
transform: translateY(-1px);
-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.archives-loop a, .archives-loop a:hover {
text-decoration: none;
}
.archives-loop a h3 {
margin: 5px 0 0 0;
overflow: hidden;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
white-space: nowrap;
color: #2c2c2c;
font-size: 15px;
word-wrap: 2;
}
.archives-loop a span {
font-size: 13px;
color: #626262;
}
.archives-tags {
display: inline-block;
margin: 3px 5px;
padding: 2px 10px;
cursor: pointer;
color: #626262;
border-radius: 25px;
background-color: #fafafa;
-webkit-transition: all 0.2s;
-o-transition: all 0.2s;
transition: all 0.2s;
}
.archives-tags:hover {
color: #000;
text-decoration: none;
-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
background-color: #e6e6e6;
}
/* Comments */
#comments {
font-size: 14px;
margin-top: 0;
word-wrap: break-word;
}
.comment-list, .comment-list ol {
list-style: none;
margin: 0;
padding: 0;
}
.comment-list li {
margin: 20px 0;
}
.comment-list li .comment-reply {
float: right;
margin-top: -30px;
font-size: 95%;
}
.comment-list .respond {
margin-top: 0;
}
.comment-author {
display: inline-block;
margin-bottom: 10px;
width: 100%;
}
.comment-author .avatar {
padding: 0;
margin: 0 10px 0 0;
float: left;
width: 48px;
height: 48px;
border: 1px solid #e6e6e6;
border-radius: 100%;
}
.comment-meta cite {
font-weight: 500;
font-style: normal;
font-size: 15px;
}
.comment-meta a {
text-decoration: none;
}
.comment-child {
padding-left: 15px;
border-left: solid 3px #e6e6e6;
}
.comment-reply a {
text-decoration: none;
}
.comment-by-user .comment-meta cite:after {
content: 'none';
}
.comment-form {
position: relative;
width: 100%;
margin: 3em 0;
padding: 0.75em 1.2875em;
border-radius: 10px;
background: rgba(255, 255, 255, 0.05);
-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.comment-form .form-control {
display: block;
width: 100%;
height: 2.5rem;
color: inherit;
font-size: inherit;
font-family: inherit;
border: none;
border-radius: 0;
line-height: inherit;
}
.comment-form .form-control:focus {
outline: 0;
}
.comment-form textarea.form-control {
margin-bottom: 5px;
padding: 0.5em 0;
height: 9rem;
width: 100%;
border: none;
border-radius: 0;
resize: none;
background-position: 87% 100%;
background-repeat: no-repeat;
}
.comment-form .input-control {
float: left;
width: calc(100%/3);
border-bottom: 1px solid #fafafa;
}
.comment-form #misubmit {
position: absolute;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
border: none;
right: 30px;
bottom: 25px;
padding: 7.5px 7px; /* ???? */
color: inherit;
background-color: #fff;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
border-radius: 3px;
}
.comment-form #cancel-comment-reply-link {
position: absolute;
right: 80px;
bottom: 25px;
padding: 3px 5px;
color: inherit;
background-color: #fff;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
border-radius: 3px;
}
.comment-form #cancel-comment-reply-link:hover {
text-decoration: none;
}
/* Blogroll */
.links {
overflow: hidden;
margin: 10px;
padding: 10px 0;
text-align: center;
}
.links li {
display: inline-block;
position: relative;
margin: 30px;
font-size: 20px;
width: 150px;
background-color: #fff;
border-radius: 5px;
-webkit-transition: all .3s cubic-bezier(.3, 1, .5, 1);
-o-transition: all .3s cubic-bezier(.3, 1, .5, 1);
transition: all .3s cubic-bezier(.3, 1, .5, 1);
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
-webkit-tap-highlight-color: transparent;
-webkit-overflow-scrolling: touch;
-webkit-user-select: none;
-webkit-touch-callout: none;
z-index: 1;
}
.links li:hover {
-webkit-transform: translateY(-2px);
-ms-transform: translateY(-2px);
transform: translateY(-2px);
-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.links a:hover {
text-decoration: none;
}
.links li img {
position: relative;
display: block;
overflow: hidden;
margin: 0 auto;
height: 150px !important;
max-width: 100%;
border-radius: 5px 5px 0 0;
}
.links li .links-img {
position: relative;
display: block;
overflow: hidden;
margin: 0 auto;
height: 150px;
max-width: 100%;
border-radius: 5px 5px 0 0;
background-position: 50% 50%;
background-size: cover;
}
.links li span {
display: block;
margin: 8px 0;
cursor: pointer;
color: #000;
font-weight: 300;
text-align: center;
}
.links li .links-description {
display: none;
position: absolute;
margin: auto 0;
padding: 15px;
top: 0;
left: 0;
width: 100%;
height: 150px;
z-index: 3;
}
.links li:hover .links-description {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
color: rgba(0, 0, 0, 0.8);
background-color: rgba(255, 255, 255, 0.8);
font-size: 14px;
background-size: cover;
border-radius: 5px 5px 0 0;
-webkit-backdrop-filter: blur(15px);
backdrop-filter: blur(15px);
}
.links li .links-description p {
position: relative;
margin: auto;
}
.links li .links-description h3 {
margin-top: 10px;
}
/* Misc */
.header-divider {
margin: 20px 0 30px 0;
}
.post-tag-holder a {
display: inline-block;
margin-right: 3px;
padding: 0 10px;
font-size: 13px;
color: rgba(255, 255, 255, 1);
background-color: rgba(0, 0, 0, 0.3);
border-radius: 100px;
text-decoration: none;
}
.donate {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
text-align: center;
margin: 15px auto 0 auto;
height: 40px;
width: 40px;
color: #fff;
background-color: #ef5b5d;
border-radius: 10px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
-webkit-transition: width 0.4s cubic-bezier(0.07, 1.1, 0.32, 0.99), height 0.4s cubic-bezier(0.07, 1.1, 0.32, 0.99);
-o-transition: width 0.4s cubic-bezier(0.07, 1.1, 0.32, 0.99), height 0.4s cubic-bezier(0.07, 1.1, 0.32, 0.99);
transition: width 0.4s cubic-bezier(0.07, 1.1, 0.32, 0.99), height 0.4s cubic-bezier(0.07, 1.1, 0.32, 0.99);
-webkit-transition-delay: 0.15s;
-o-transition-delay: 0.15s;
transition-delay: 0.15s;
}
.donate:hover {
color: inherit;
background-color: #fff;
width: 150px;
height: 150px;
background-size: cover;
-webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.donate:hover p {
display: none;
}
.donate p {
display: block;
margin: auto;
color: #fff;
}
/* Responsive */
@media screen and (min-width: 768px) {
.blog-container, .nav-container {
width: 750px;
}
}
@media screen and (max-width: 800px) {
.blog-container, .nav-container {
max-width: 680px;
width: 100vw;
padding: 0 2rem;
}
.MathJax_Display {
text-align: center;
font-size: 12px;
}
}
@media screen and (max-width: 415px) {
.blog-nav .blog-nav-item {
padding: 1rem 0;
margin-right: 2rem;
}
.blog-title h1,
.blog-title h1 a,
.blog-title h1 a:hover {
font-size: 2.5rem;
}
.blog-container {
padding: 0 1.5rem;
}
.links li {
margin: 11px;
font-size: 17px;
width: 100px;
}
.links li img {
height: 100px !important;
}
.links li .links-img {
height: 100px;
}
.links li .links-description {
padding: 5px;
height: 100px;
}
.links li .links-description p {
font-size: 12px;
line-height: 1.3;
}
.archives-loop li {
margin: 5px;
width: calc(90%/2);
}
.archives-loop a h3 {
font-size: 15px;
}
.archives-loop a span {
font-size: 11px;
}
.comment-form .input-control {
width: 100%;
}
.donate {
display: none;
}
} | css/style.css |
* {
padding: 0;
margin: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
:after, :before {
padding: 0;
margin: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-size: 14px;
font-weight: 400;
font-family: -apple-system, BlinkMacSystemFont, "Pingfang SC", "Roboto", "Segoe UI", "Microsoft Yahei", "DengXian SC", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
line-height: 1.8;
color: #424242;
word-wrap: break-word;
-webkit-font-feature-settings: "ss01" 1, "ss02" 1;
font-feature-settings: "ss01" 1, "ss02" 1;
}
a {
color: #3C93CE;
text-decoration: none;
}
a:focus, a:hover {
color: #2B6A94;
text-decoration: underline;
}
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-bottom: 1px solid #e6e6e6;
}
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
margin: 10px 0;
color: #2c2c2c;
font-weight: 500;
}
.h1, h1 {
font-size: 30px;
}
.h2, h2 {
font-size: 23px;
border-bottom: 1px solid #e6e6e6;
}
.h3, h3 {
font-size: 20px;
}
.h4, h4 {
font-size: 16px;
text-transform: uppercase;
}
.h5, h5 {
font-size: 14px;
text-transform: uppercase;
}
.h6, h6 {
font-size: 12px;
text-transform: uppercase;
}
p {
margin: 0 0 10px 0;
}
.small, small {
font-size: 85%;
}
.mark, mark {
padding: .2rem;
background-color: rgba(252, 248, 227, 0.5);
}
ol, ul {
margin: 0 0 10px 0;
padding: 0 0 0 18px;
}
ol ol, ol ul, ul ol, ul ul {
padding: 0 0 0 20px;
}
dl {
margin-top: 0;
margin-bottom: 20px;
}
dt {
font-weight: 500;
}
dd {
margin-left: 0;
}
b, strong {
font-weight: 500;
}
i, em {
font-style: italic;
}
blockquote {
padding: 0 0 0 15px;
margin: 10px 0;
font-size: 15px;
font-style: italic;
border-left: 5px solid #fafafa;
}
code, pre {
padding: 3px 5px;
font-family: 'SF Mono', Menlo, Courier New, sans-serif;
font-size: 12px;
color: #cd4945;
background-color: #fafafa;
border-radius: 3px;
}
pre {
overflow: auto;
max-width: 100%;
word-break: break-all;
word-wrap: normal;
-webkit-overflow-scrolling: touch;
}
pre > code {
white-space: pre;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
.clear {
clear: both;
}
/* Images and videos */
img, video {
display: block;
margin: 20px 2px;
position: relative;
max-width: 100%;
height: auto !important;
border-radius: 5px;
-webkit-user-select: none;
}
/* blog bottom bar */
.blog-bottom-bar {
display: block;
position: relative;
color: inherit;
background: #f9f9f9;
}
.blog-bottom-bar .blog-container .prev, .blog-bottom-bar .blog-container .next {
display: inline-block;
position: relative;
padding: 2em 0;
width: 50%;
color: inherit;
text-decoration: none;
font-size: 1.125em;
font-weight: 500;
vertical-align: top;
}
.blog-bottom-bar .blog-container .prev:hover, .blog-bottom-bar .blog-container .next:hover {
color: #6b6b6b;
}
.blog-bottom-bar .blog-container .prev span, .blog-bottom-bar .blog-container .next span {
font-size: 0.8em;
font-weight: 400;
}
.blog-bottom-bar .blog-container .next {
text-align: right;
}
/* Nav */
.blog-masthead {
display: table-cell;
vertical-align: middle;
position: relative;
width: 100vw;
height: 70vh;
background: #f9f9f9;
z-index: 0;
}
.blog-nav {
background-color: #ffffff;
-webkit-overflow-scrolling: touch;
overflow-x: auto;
white-space: nowrap;
}
.blog-nav .blog-nav-item {
position: relative;
display: inline-block;
padding: 1rem 0;
margin-right: 3rem;
color: inherit;
font-size: 110%;
font-weight: 500;
letter-spacing: -0.625px;
}
.blog-nav .blog-nav-item:focus, .blog-nav .blog-nav-item:hover {
color: inherit;
opacity: 0.8;
text-decoration: none;
}
.blog-container, .nav-container {
margin-right: auto;
margin-left: auto;
}
.blog-title h1,
.blog-title h1 a,
.blog-title h1 a:hover {
margin: 0;
color: inherit;
font-size: 5vmax;
font-weight: 500;
text-decoration: none;
letter-spacing: -2px;
line-height: 1.1;
}
/* Article */
article {
display: block;
margin: 2.5rem 0;
background-color: #fff;
}
article .blog-post-title {
margin: 0;
color: #3c3c3c;
font-weight: 500;
letter-spacing: -0.05rem;
line-height: 1.3;
}
article .blog-post-title a,
article .blog-post-title a:hover,
article .blog-post-meta {
color: inherit;
text-decoration: none;
}
article .more a {
background: #ffffff;
padding: 0.375rem 0.625rem;
font-family: inherit;
font-weight: 500;
border-radius: 5px;
color: #3c93ce;
border: 1px solid #3c93ce;
text-decoration: none;
}
article .more a:hover {
color: #2b6a94;
border: 1px solid #2b6a94;
}
/* Footer */
.blog-footer {
display: block;
position: relative;
margin-top: 20px;
padding: 30px 0;
background-color: #fafafa;
text-align: center;
font-size: 11px;
font-family: 'SF Mono', 'Menlo', 'Courier New', monospace;
line-height: 1;
}
.blog-footer p:last-child {
margin-bottom: 0;
}
/* Pagination */
.pagination {
padding: 0;
text-align: center;
}
.pagination li {
display: inline-block;
margin: 0 0.125em;
}
.pagination > li > a, .pagination > li > span {
background: #ffffff;
padding: 0.45rem 0.75rem;
font-family: inherit;
font-weight: 500;
border-radius: 50px;
color: #3c93ce;
border: 1px solid #3c93ce;
text-decoration: none;
line-height: 2.5;
}
.pagination > li > a:hover, .pagination > li > span:hover {
color: #2b6a94;
border: 1px solid #2b6a94;
}
.pagination > li.active > a {
color: #ffffff;
background: #3c93ce;
border: 1px solid #3c93ce;
}
.pagination > li.active > a:hover {
background: #2b6a94;
border: 1px solid #2b6a94;
}
/* Input */
form .text, form .submit {
background: #fdfdfd;
padding: 0.5rem 0.5rem;
font-family: inherit;
border-radius: 5px;
color: #333333;
border: 1px solid #dadada;
outline: none !important;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
form .text:focus, form .submit:focus {
background: #ffffff;
}
form#search .text {
width: 50px;
-webkit-transition: all cubic-bezier(.15,1,.5,1) 0.8s;
-o-transition: all cubic-bezier(.15,1,.5,1) 0.8s;
transition: all cubic-bezier(.15,1,.5,1) 0.8s;
}
form#search .text:hover {
cursor: default;
width: 150px;
}
form#search .text:active, form#search .text:focus {
width: 210px;
}
/* Archives */
.archive-title {
padding-bottom: 10px;
font-weight: 500;
text-align: center;
}
.archives-loop {
overflow: hidden;
padding: 5px 0px;
margin-top: 5px;
text-align: center;
}
.archives-loop li {
display: inline-block;
position: relative;
margin: 10px;
padding: 10px;
width: calc(90%/3);
-webkit-transition: all .3s cubic-bezier(.3, 1, .5, 1);
-o-transition: all .3s cubic-bezier(.3, 1, .5, 1);
transition: all .3s cubic-bezier(.3, 1, .5, 1);
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
border-radius: 5px;
text-align: left;
background-color: #fff;
-webkit-tap-highlight-color: transparent;
-webkit-overflow-scrolling: touch;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
.archives-loop li:hover {
-webkit-transform: translateY(-1px);
-ms-transform: translateY(-1px);
transform: translateY(-1px);
-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.archives-loop a, .archives-loop a:hover {
text-decoration: none;
}
.archives-loop a h3 {
margin: 5px 0 0 0;
overflow: hidden;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
white-space: nowrap;
color: #2c2c2c;
font-size: 15px;
word-wrap: 2;
}
.archives-loop a span {
font-size: 13px;
color: #626262;
}
.archives-tags {
display: inline-block;
margin: 3px 5px;
padding: 2px 10px;
cursor: pointer;
color: #626262;
border-radius: 25px;
background-color: #fafafa;
-webkit-transition: all 0.2s;
-o-transition: all 0.2s;
transition: all 0.2s;
}
.archives-tags:hover {
color: #000;
text-decoration: none;
-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
background-color: #e6e6e6;
}
/* Comments */
#comments {
font-size: 14px;
margin-top: 0;
word-wrap: break-word;
}
.comment-list, .comment-list ol {
list-style: none;
margin: 0;
padding: 0;
}
.comment-list li {
margin: 20px 0;
}
.comment-list li .comment-reply {
float: right;
margin-top: -30px;
font-size: 95%;
}
.comment-list .respond {
margin-top: 0;
}
.comment-author {
display: inline-block;
margin-bottom: 10px;
width: 100%;
}
.comment-author .avatar {
padding: 0;
margin: 0 10px 0 0;
float: left;
width: 48px;
height: 48px;
border: 1px solid #e6e6e6;
border-radius: 100%;
}
.comment-meta cite {
font-weight: 500;
font-style: normal;
font-size: 15px;
}
.comment-meta a {
text-decoration: none;
}
.comment-child {
padding-left: 15px;
border-left: solid 3px #e6e6e6;
}
.comment-reply a {
text-decoration: none;
}
.comment-by-user .comment-meta cite:after {
content: 'none';
}
.comment-form {
position: relative;
width: 100%;
margin: 3em 0;
padding: 0.75em 1.2875em;
border-radius: 10px;
background: rgba(255, 255, 255, 0.05);
-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.comment-form .form-control {
display: block;
width: 100%;
height: 2.5rem;
color: inherit;
font-size: inherit;
font-family: inherit;
border: none;
border-radius: 0;
line-height: inherit;
}
.comment-form .form-control:focus {
outline: 0;
}
.comment-form textarea.form-control {
margin-bottom: 5px;
padding: 0.5em 0;
height: 9rem;
width: 100%;
border: none;
border-radius: 0;
resize: none;
background-position: 87% 100%;
background-repeat: no-repeat;
}
.comment-form .input-control {
float: left;
width: calc(100%/3);
border-bottom: 1px solid #fafafa;
}
.comment-form #misubmit {
position: absolute;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
border: none;
right: 30px;
bottom: 25px;
padding: 7.5px 7px; /* ???? */
color: inherit;
background-color: #fff;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
border-radius: 3px;
}
.comment-form #cancel-comment-reply-link {
position: absolute;
right: 80px;
bottom: 25px;
padding: 3px 5px;
color: inherit;
background-color: #fff;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
border-radius: 3px;
}
.comment-form #cancel-comment-reply-link:hover {
text-decoration: none;
}
/* Blogroll */
.links {
overflow: hidden;
margin: 10px;
padding: 10px 0;
text-align: center;
}
.links li {
display: inline-block;
position: relative;
margin: 30px;
font-size: 20px;
width: 150px;
background-color: #fff;
border-radius: 5px;
-webkit-transition: all .3s cubic-bezier(.3, 1, .5, 1);
-o-transition: all .3s cubic-bezier(.3, 1, .5, 1);
transition: all .3s cubic-bezier(.3, 1, .5, 1);
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
-webkit-tap-highlight-color: transparent;
-webkit-overflow-scrolling: touch;
-webkit-user-select: none;
-webkit-touch-callout: none;
z-index: 1;
}
.links li:hover {
-webkit-transform: translateY(-2px);
-ms-transform: translateY(-2px);
transform: translateY(-2px);
-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.links a:hover {
text-decoration: none;
}
.links li img {
position: relative;
display: block;
overflow: hidden;
margin: 0 auto;
height: 150px !important;
max-width: 100%;
border-radius: 5px 5px 0 0;
}
.links li .links-img {
position: relative;
display: block;
overflow: hidden;
margin: 0 auto;
height: 150px;
max-width: 100%;
border-radius: 5px 5px 0 0;
background-position: 50% 50%;
background-size: cover;
}
.links li span {
display: block;
margin: 8px 0;
cursor: pointer;
color: #000;
font-weight: 300;
text-align: center;
}
.links li .links-description {
display: none;
position: absolute;
margin: auto 0;
padding: 15px;
top: 0;
left: 0;
width: 100%;
height: 150px;
z-index: 3;
}
.links li:hover .links-description {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
color: rgba(0, 0, 0, 0.8);
background-color: rgba(255, 255, 255, 0.8);
font-size: 14px;
background-size: cover;
border-radius: 5px 5px 0 0;
-webkit-backdrop-filter: blur(15px);
backdrop-filter: blur(15px);
}
.links li .links-description p {
position: relative;
margin: auto;
}
.links li .links-description h3 {
margin-top: 10px;
}
/* Misc */
.header-divider {
margin: 20px 0 30px 0;
}
.post-tag-holder a {
display: inline-block;
margin-right: 3px;
padding: 0 10px;
font-size: 13px;
color: rgba(255, 255, 255, 1);
background-color: rgba(0, 0, 0, 0.3);
border-radius: 100px;
text-decoration: none;
}
.donate {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
text-align: center;
margin: 15px auto 0 auto;
height: 40px;
width: 40px;
color: #fff;
background-color: #ef5b5d;
border-radius: 10px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
-webkit-transition: width 0.4s cubic-bezier(0.07, 1.1, 0.32, 0.99), height 0.4s cubic-bezier(0.07, 1.1, 0.32, 0.99);
-o-transition: width 0.4s cubic-bezier(0.07, 1.1, 0.32, 0.99), height 0.4s cubic-bezier(0.07, 1.1, 0.32, 0.99);
transition: width 0.4s cubic-bezier(0.07, 1.1, 0.32, 0.99), height 0.4s cubic-bezier(0.07, 1.1, 0.32, 0.99);
-webkit-transition-delay: 0.15s;
-o-transition-delay: 0.15s;
transition-delay: 0.15s;
}
.donate:hover {
color: inherit;
background-color: #fff;
width: 150px;
height: 150px;
background-size: cover;
-webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.donate:hover p {
display: none;
}
.donate p {
display: block;
margin: auto;
color: #fff;
}
/* Responsive */
@media screen and (min-width: 768px) {
.blog-container, .nav-container {
width: 750px;
}
}
@media screen and (max-width: 800px) {
.blog-container, .nav-container {
max-width: 680px;
width: 100vw;
padding: 0 2rem;
}
.MathJax_Display {
text-align: center;
font-size: 12px;
}
}
@media screen and (max-width: 415px) {
.blog-nav .blog-nav-item {
padding: 1rem 0;
margin-right: 2rem;
}
.blog-title h1,
.blog-title h1 a,
.blog-title h1 a:hover {
font-size: 2.5rem;
}
.blog-container {
padding: 0 1.5rem;
}
.links li {
margin: 11px;
font-size: 17px;
width: 100px;
}
.links li img {
height: 100px !important;
}
.links li .links-img {
height: 100px;
}
.links li .links-description {
padding: 5px;
height: 100px;
}
.links li .links-description p {
font-size: 12px;
line-height: 1.3;
}
.archives-loop li {
margin: 5px;
width: calc(90%/2);
}
.archives-loop a h3 {
font-size: 15px;
}
.archives-loop a span {
font-size: 11px;
}
.comment-form .input-control {
width: 100%;
}
.donate {
display: none;
}
} | 0.376738 | 0.100128 |
@charset "utf-8";
.my-client-container {
overflow: hidden;
}
.my-client-container .sms {
height: 100%;
}
.my-client-container .header-top {
min-width: 1600px;
}
.my-client-container .sidebar-collapse {
position: fixed;
height: 100%;
outline: 1px solid;
width: 240px;
background: #243443;
}
.my-client-container .sidebar-collapse h3 {
padding: 15px 20px 15px 30px;
color: #fff;
font-size: 18px;
font-weight: normal;
}
.my-client-container .sidebar-collapse h3 i {
margin-top: 5px;
float: right;
}
.my-client-container .sidebar-collapse .sibNav li {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.my-client-container .sidebar-collapse .sibNav li a {
display: block;
color: #97a9bc;
font-weight: 500;
padding: 17px 15px 17px 10px;
margin-left: 20px;
border-bottom: 1px solid #1a2836;
border-top: 1px solid #2e3d4c;
font-size: 16px;
}
.my-client-container .sidebar-collapse .sibNav li a i {
margin-right: 6px;
background: #f2493b;
color: #fff;
margin: 5px 5px;
padding: 0px 5px 1px;
border-radius: 8px 8px;
font-size: 10px;
}
.my-client-container .sidebar-collapse .sibNav li:hover {
background: #1a2836;
}
.my-client-container .sidebar-collapse .sibNav li:hover a {
color: #fff;
}
.my-client-container .sidebar-collapse .sibNav li.active {
-webkit-transition: all 0.5s;
transition: all 0.5s;
background: #1a2836;
border-left: 4px solid #2883E1;
}
.my-client-container .sidebar-collapse .sibNav li.active a {
color: #ffffff;
}
.my-client-container .main-wrap {
margin-left: 240px;
width: auto;
}
.my-client-container .main-wrap .layui-row {
padding: 20px;
margin: 0;
background-color: #fff;
border-radius: 3px;
}
.my-client-container .main-wrap .layui-row .top-tit {
font-size: 16px;
color: #000;
font-weight: 700;
padding: 5px 0px 0px 20px;
}
.my-client-container .main-wrap .layui-row .top-but {
text-align: right;
}
.my-client-container .main-wrap .layui-row .top-but .layui-btn {
margin-right: 20px;
width: 90px;
height: 30px;
color: #2883e0;
border: 1px solid #2883e0;
border-radius: 3px;
padding: 0 0;
line-height: 30px;
font-size: 14px;
background: #fff;
}
.my-client-container .main-wrap .layui-row .top-but .layui-btn-no {
border-color: #999;
color: #999;
}
.my-client-container .main-wrap .main {
padding: 0px 0px;
}
.my-client-container .main-wrap .main .layui-tab-card > .layui-tab-title {
background: #e8e8e8;
}
.my-client-container .main-wrap .main .layui-tab-card {
overflow: hidden;
margin-top: 30px;
}
.my-client-container .main-wrap .main .layui-tab-card .layui-tab-title {
overflow: hidden;
color: #999;
height: 50px;
width: 100%;
}
.my-client-container .main-wrap .main .layui-tab-card .layui-tab-title li {
width: 95px;
line-height: 50px;
margin-left: 0px;
color: #222;
}
.my-client-container .main-wrap .main .layui-tab-card .layui-tab-title .layui-this {
color: #222;
background: #e8e8e8;
}
.my-client-container .main-wrap .main .layui-tab-card .layui-tab-title .layui-this:after {
height: 50px;
}
.my-client-container .main-wrap .main .layui-tab-card .layui-tab-title .sm-active {
background: #fff;
}
.my-client-container .main-wrap .main .layui-tab-card .layui-tab-title .main-num {
padding-left: 10px;
color: #f2493b;
}
.my-client-container .main-wrap .main .layui-tab-content {
margin-top: -10px;
background: #fff;
overflow: hidden;
}
.my-client-container .main-wrap .main .news-list {
padding: 10px 10px;
}
.my-client-container .main-wrap .main .news-list li {
margin: 20px 10px;
border: 1px solid #f1f1f1;
background: #fcfcfc;
padding: 20px 20px 10px;
}
.my-client-container .main-wrap .main .news-list li .list-text {
font-size: 16px;
line-height: 25px;
}
.my-client-container .main-wrap .main .news-list li a {
color: #2883e0;
}
.my-client-container .main-wrap .main .news-list li a:hover {
text-decoration: underline;
}
.my-client-container .main-wrap .main .news-list .list-bot {
padding-top: 15px;
color: #999;
font-size: 14px;
line-height: 30px;
}
.my-client-container .main-wrap .main .news-list .list-bot .btn {
color: #fff;
background: #2883e0;
line-height: 20px;
margin-left: 20px;
border-radius: 3px;
padding: 0px 5px;
}
.my-client-container .main-wrap .main .news-list .list-bot .del-btn {
float: right;
font-size: 14px;
color: #666;
}
.my-client-container .main-wrap .main .news-list .list-bot .del-btn:hover {
color: #2883e0;
text-decoration: none;
}
.my-client-container .main-wrap .main .news-list .noNewsPc {
padding: 200px 0;
border: 0px;
background: #fff url(../../images/nonews.png) no-repeat center;
}
.my-client-container .main-wrap .main .bottom-page {
overflow: hidden;
padding: 20px;
}
.my-client-container .main-wrap .main .bottom-page .site-page {
color: #666;
line-height: 55px;
}
.my-client-container .main-wrap .main .bottom-page a.active {
color: #2883E1;
}
.my-client-container .main-wrap .main .bottom-page .recording {
color: #666;
margin-top: 15px;
margin-right: 20px;
}
.my-client-container .main-wrap .main .bottom-page .layui-laypage a {
font-size: 14px;
color: #999999;
border: 1px solid #d9d9d9;
border-radius: 3px;
margin: 0px 4px;
}
.my-client-container .main-wrap .main .bottom-page .layui-laypage span {
margin: 0;
}
.my-client-container .main-wrap .main .bottom-page .layui-laypage .layui-laypage-curr .layui-laypage-em {
background: #2983e0;
} | public/assets/css/page/message-reminder.css | @charset "utf-8";
.my-client-container {
overflow: hidden;
}
.my-client-container .sms {
height: 100%;
}
.my-client-container .header-top {
min-width: 1600px;
}
.my-client-container .sidebar-collapse {
position: fixed;
height: 100%;
outline: 1px solid;
width: 240px;
background: #243443;
}
.my-client-container .sidebar-collapse h3 {
padding: 15px 20px 15px 30px;
color: #fff;
font-size: 18px;
font-weight: normal;
}
.my-client-container .sidebar-collapse h3 i {
margin-top: 5px;
float: right;
}
.my-client-container .sidebar-collapse .sibNav li {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.my-client-container .sidebar-collapse .sibNav li a {
display: block;
color: #97a9bc;
font-weight: 500;
padding: 17px 15px 17px 10px;
margin-left: 20px;
border-bottom: 1px solid #1a2836;
border-top: 1px solid #2e3d4c;
font-size: 16px;
}
.my-client-container .sidebar-collapse .sibNav li a i {
margin-right: 6px;
background: #f2493b;
color: #fff;
margin: 5px 5px;
padding: 0px 5px 1px;
border-radius: 8px 8px;
font-size: 10px;
}
.my-client-container .sidebar-collapse .sibNav li:hover {
background: #1a2836;
}
.my-client-container .sidebar-collapse .sibNav li:hover a {
color: #fff;
}
.my-client-container .sidebar-collapse .sibNav li.active {
-webkit-transition: all 0.5s;
transition: all 0.5s;
background: #1a2836;
border-left: 4px solid #2883E1;
}
.my-client-container .sidebar-collapse .sibNav li.active a {
color: #ffffff;
}
.my-client-container .main-wrap {
margin-left: 240px;
width: auto;
}
.my-client-container .main-wrap .layui-row {
padding: 20px;
margin: 0;
background-color: #fff;
border-radius: 3px;
}
.my-client-container .main-wrap .layui-row .top-tit {
font-size: 16px;
color: #000;
font-weight: 700;
padding: 5px 0px 0px 20px;
}
.my-client-container .main-wrap .layui-row .top-but {
text-align: right;
}
.my-client-container .main-wrap .layui-row .top-but .layui-btn {
margin-right: 20px;
width: 90px;
height: 30px;
color: #2883e0;
border: 1px solid #2883e0;
border-radius: 3px;
padding: 0 0;
line-height: 30px;
font-size: 14px;
background: #fff;
}
.my-client-container .main-wrap .layui-row .top-but .layui-btn-no {
border-color: #999;
color: #999;
}
.my-client-container .main-wrap .main {
padding: 0px 0px;
}
.my-client-container .main-wrap .main .layui-tab-card > .layui-tab-title {
background: #e8e8e8;
}
.my-client-container .main-wrap .main .layui-tab-card {
overflow: hidden;
margin-top: 30px;
}
.my-client-container .main-wrap .main .layui-tab-card .layui-tab-title {
overflow: hidden;
color: #999;
height: 50px;
width: 100%;
}
.my-client-container .main-wrap .main .layui-tab-card .layui-tab-title li {
width: 95px;
line-height: 50px;
margin-left: 0px;
color: #222;
}
.my-client-container .main-wrap .main .layui-tab-card .layui-tab-title .layui-this {
color: #222;
background: #e8e8e8;
}
.my-client-container .main-wrap .main .layui-tab-card .layui-tab-title .layui-this:after {
height: 50px;
}
.my-client-container .main-wrap .main .layui-tab-card .layui-tab-title .sm-active {
background: #fff;
}
.my-client-container .main-wrap .main .layui-tab-card .layui-tab-title .main-num {
padding-left: 10px;
color: #f2493b;
}
.my-client-container .main-wrap .main .layui-tab-content {
margin-top: -10px;
background: #fff;
overflow: hidden;
}
.my-client-container .main-wrap .main .news-list {
padding: 10px 10px;
}
.my-client-container .main-wrap .main .news-list li {
margin: 20px 10px;
border: 1px solid #f1f1f1;
background: #fcfcfc;
padding: 20px 20px 10px;
}
.my-client-container .main-wrap .main .news-list li .list-text {
font-size: 16px;
line-height: 25px;
}
.my-client-container .main-wrap .main .news-list li a {
color: #2883e0;
}
.my-client-container .main-wrap .main .news-list li a:hover {
text-decoration: underline;
}
.my-client-container .main-wrap .main .news-list .list-bot {
padding-top: 15px;
color: #999;
font-size: 14px;
line-height: 30px;
}
.my-client-container .main-wrap .main .news-list .list-bot .btn {
color: #fff;
background: #2883e0;
line-height: 20px;
margin-left: 20px;
border-radius: 3px;
padding: 0px 5px;
}
.my-client-container .main-wrap .main .news-list .list-bot .del-btn {
float: right;
font-size: 14px;
color: #666;
}
.my-client-container .main-wrap .main .news-list .list-bot .del-btn:hover {
color: #2883e0;
text-decoration: none;
}
.my-client-container .main-wrap .main .news-list .noNewsPc {
padding: 200px 0;
border: 0px;
background: #fff url(../../images/nonews.png) no-repeat center;
}
.my-client-container .main-wrap .main .bottom-page {
overflow: hidden;
padding: 20px;
}
.my-client-container .main-wrap .main .bottom-page .site-page {
color: #666;
line-height: 55px;
}
.my-client-container .main-wrap .main .bottom-page a.active {
color: #2883E1;
}
.my-client-container .main-wrap .main .bottom-page .recording {
color: #666;
margin-top: 15px;
margin-right: 20px;
}
.my-client-container .main-wrap .main .bottom-page .layui-laypage a {
font-size: 14px;
color: #999999;
border: 1px solid #d9d9d9;
border-radius: 3px;
margin: 0px 4px;
}
.my-client-container .main-wrap .main .bottom-page .layui-laypage span {
margin: 0;
}
.my-client-container .main-wrap .main .bottom-page .layui-laypage .layui-laypage-curr .layui-laypage-em {
background: #2983e0;
} | 0.246624 | 0.032899 |
html {
font-size: 14px;
font-family: "Inter", sans-serif;
}
body {
background-color: #f8fafd;
margin: 0;
}
:root {
--mdc-theme-secondary: #00abee;
--mdc-theme-primary: #00abee;
}
a {
text-decoration: none;
color: var(--mdc-theme-primary);
}
h6 {
margin: 4px 0;
color: rgba(0, 0, 0, 0.87);
font-family: "Inter";
font-size: 20px;
font-weight: normal;
letter-spacing: 0.25px;
}
.body1 {
color: rgba(0, 0, 0, 0.6);
font-family: "Inter";
font-size: 16px;
font-weight: normal;
height: 28px;
letter-spacing: 0.5px;
line-height: 28px;
}
.overline {
margin-bottom: 12px;
color: rgba(0, 0, 0, 0.87);
font-family: "Inter";
font-size: 12px;
font-weight: 500;
height: 16px;
letter-spacing: 2px;
line-height: 16px;
text-transform: uppercase;
}
.overline-with-margin-top {
margin-top: 39px;
}
.aut-main {
background: #fff !important;
min-height: 100vh
}
.aut-container {
width: 550px;
margin: 15px auto 0 auto;
}
.aut-banner {
display: flex;
align-items: center;
justify-content: space-between;
font-family: "Inter";
text-transform: uppercase;
height: 90px;
padding: 0 80px;
background: #46a9dc;
}
.aut-banner-contained {
display: flex;
align-items: center;
justify-content: center;
font-family: "Inter";
text-transform: uppercase;
height: 60px;
background: #46a9dc;
border-bottom: 5px solid #005a97;
}
.aut-banner-logo {
display: flex;
align-items: center;
}
.aut-banner-logo img {
margin-right: 15px;
max-width: 22px;
}
.aut-banner-logo span {
color: rgb(255, 255, 255);
font-size: 24px;
font-weight: 400;
letter-spacing: 0.3px;
margin-top: 3px;
}
.aut-banner-contact button {
background: #fff !important;
color: var(--mdc-theme-primary) !important;
}
.aut-header {
padding: 16px 32px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.aut-header-tenant-selection {
border-bottom: 1px solid rgb(80, 153, 214);
padding: 25px 92px;
background: #3088d6;
}
.aut-header-user-name {
word-break: break-all;
}
.aut-header .aut-app-box {
display: flex;
flex-direction: row;
margin: 16px 0 15px;
}
.aut-header .aut-app-icon {
margin-right: 12px;
border-radius: 4px;
border: 1px solid rgb(236, 236, 236);
height: 40px;
width: 40px;
min-width: 40px;
display: flex;
justify-content: center;
align-items: center;
}
.aut-header .aut-app-icon i {
opacity: 0.4;
}
.aut-header .aut-app-name-and-desc {
display: flex;
justify-content: center;
flex-direction: column;
}
.aut-header .aut-app-name {
color: rgba(0, 0, 0, 0.87);
font-family: "Inter";
font-size: 16px;
font-weight: normal;
letter-spacing: 0.5px;
line-height: 20px;
word-break: break-all;
}
.aut-header .aut-app-desc {
margin-top: 2px;
color: rgba(0, 0, 0, 0.6);
font-family: "Inter";
font-size: 12px;
font-weight: normal;
height: 16px;
letter-spacing: 0.4px;
line-height: 16px;
}
.aut-content {
padding: 16px 0px 0px 32px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
overflow: auto;
}
.aut-content.aut-content-with-top-shadow {
box-shadow: inset 0px 20px 10px -10px #ece9e9
}
.aut-content.aut-content-with-bottom-shadow {
}
.aut-content.aut-content-with-top-shadow.aut-content-with-bottom-shadow {
box-shadow: inset 0px 20px 10px -10px #ece9e9, inset 0px -20px 10px -10px #ece9e9;
}
.aut-content-scopes-group {
display: flex;
flex-direction: column;
margin-bottom: 16px;
}
.aut-content-scopes-group .mdc-form-field {
min-height: 48px;
margin-left: -11px;
align-items: flex-start;
}
.aut-content-scopes-group .mdc-form-field .mdc-checkbox {
position: relative;
top: 4px;
}
.aut-content-scopes-group:last-child {
margin-bottom: 0;
}
.aut-content-scopes-group:last-child .mdc-form-field:last-child .aut-scope-desc {
border-bottom: none;
}
.aut-scope {
width: 100%;
margin-left: 30px;
}
.aut-scope-header {
display: flex;
padding-right: 32px;
align-items: center;
min-height: 48px;
}
.aut-scope-header .mdc-icon-button {
width: 40px;
height: 40px;
padding: 8px;
}
.aut-scope-label {
height: 40px;
width: 100%;
line-height: 40px;
color: rgba(0, 0, 0, 0.87);
font-family: "Inter";
font-size: 14px;
font-weight: normal;
letter-spacing: 0.25px;
margin-bottom: 0;
}
.aut-scope-desc {
padding-right: 80px;
color: rgba(0, 0, 0, 0.6);
font-family: "Inter";
font-size: 14px;
font-weight: normal;
letter-spacing: 0.25px;
line-height: 20px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.aut-scope-desc.aut-scope-desc-visible .aut-scope-desc-text {
display: block;
}
.aut-scope-desc.aut-scope-desc-hidden .aut-scope-desc-text {
display: none;
}
.aut-scope-desc-text {
padding: 2px 0 16px 0;
}
.aut-footer {
padding: 24px 32px 24px 32px;
color: rgba(0, 0, 0, 0.6);
font-family: "Inter";
font-size: 14px;
font-weight: normal;
letter-spacing: 0.25px;
line-height: 24px;
}
.aut-footer-tenant-selection {
font-size: 14px;
text-align: center;
margin: 20px 0 5px 0;
padding: 15px 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.aut-footer-tenant-selection p {
margin: 10px 0;
color: #6b7c91;
}
.aut-footer-tenant-selection a {
font-weight: 500;
}
.aut-form-actions {
text-align: right;
padding: 0 32px 32px 32px;
border-radius: 0 0 3px 3px;
}
.aut-form-actions button:first-child {
margin-right: 24px;
}
.aut-list {
padding: 15px 25px;
}
.aut-list-tenant-selection {
background: #ffffff;
border-radius: 4px;
border: 1px solid rgb(234, 237, 239);
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.06);
margin-bottom: 10px;
}
.aut-list-header {
font-weight: 400;
font-size: 1.9em;
color: rgba(0, 0, 0, 0.87);
}
.aut-list-header-tenant-selection {
font-weight: 400;
font-size: 24px;
color: #ffffff;
margin: 3px 0;
}
.aut-list-link {
color: rgba(0, 0, 0, 0.87);
}
.aut-avatar-icon {
font-size: 1.3em;
border: 1px solid rgba(0, 144, 218, 0.12);
color: var(--mdc-theme-primary);
background: rgba(4, 123, 209, 0.05);
}
.aut-avatar-text {
font-size: 1.8em;
border: 1px solid rgba(0, 144, 218, 0.12);
color: var(--mdc-theme-primary);
background: rgba(4, 123, 209, 0.05);
}
.aut-demo-info {
display: flex;
margin: 10px 0;
border-radius: 4px;
background: rgba(4, 123, 209, 0.08);
}
.aut-demo-info-icon {
margin: 16px 12px;
padding: 10px 5px 10px 10px;
}
.aut-demo-info-text {
padding: 16px 0;
}
.aut-demo-category-label {
font-size: 24px;
font-weight: 400;
padding-bottom: 24px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.aut-demo-subcategory-label {
font-size: 12px;
font-weight: 400;
text-transform: uppercase;
color: rgba(0, 0, 0, 0.87);
margin-top: 24px;
}
.aut-helper-text {
color: var(--mdc-theme-primary);
font-size: 14px;
}
.aut-select-button {
display: inline-block;
width: 100%;
border: none;
margin: 0;
text-decoration: none;
background: #ffffff;
font-family: sans-serif;
line-height: 1;
cursor: pointer;
text-align: center;
-webkit-appearance: none;
-moz-appearance: none;
}
.aut-select-button .aut-list-link {
color: rgba(0, 0, 0, 0.87);
font-size: 1.3em;
}
.aut-hidden {
height: 0;
overflow: hidden;
}
#error-title {
font-weight: 400;
margin-bottom: 40px;
}
#error-description {
margin-bottom: -10px;
}
#error-description, #error-hint {
color: #b00020;
opacity: 50%;
}
@media (max-width: 600px) {
.aut-container {
width: 100%;
margin: 0 auto;
border-radius: 0;
}
.aut-title-box {
padding: 0 24px;
border-radius: 0;
}
.aut-header {
padding: 24px;
}
.aut-content {
padding: 16px 0px 12px 24px;
max-height: none;
}
.aut-footer {
padding: 24px;
}
.aut-form-actions {
padding: 0 24px 24px 24px;
border-radius: 0;
}
}
.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label {
color: var(--mdc-theme-primary);
}
.alert-danger {
padding: 20px;
margin-top: 20px;
border-radius: 4px;
color: #721c24;
background-color: #f8d7da;
border-color: #f5c6cb;
}
pre {
color: #ffffff;
background: #2b323c;
border-radius: 4px;
padding: 16px;
white-space: -moz-pre-wrap; /* Mozilla */
white-space: -hp-pre-wrap; /* HP printers */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: pre-wrap; /* CSS 2.1 */
word-wrap: break-word; /* IE */
word-break: break-all;
} | tpp/assets/style.css | html {
font-size: 14px;
font-family: "Inter", sans-serif;
}
body {
background-color: #f8fafd;
margin: 0;
}
:root {
--mdc-theme-secondary: #00abee;
--mdc-theme-primary: #00abee;
}
a {
text-decoration: none;
color: var(--mdc-theme-primary);
}
h6 {
margin: 4px 0;
color: rgba(0, 0, 0, 0.87);
font-family: "Inter";
font-size: 20px;
font-weight: normal;
letter-spacing: 0.25px;
}
.body1 {
color: rgba(0, 0, 0, 0.6);
font-family: "Inter";
font-size: 16px;
font-weight: normal;
height: 28px;
letter-spacing: 0.5px;
line-height: 28px;
}
.overline {
margin-bottom: 12px;
color: rgba(0, 0, 0, 0.87);
font-family: "Inter";
font-size: 12px;
font-weight: 500;
height: 16px;
letter-spacing: 2px;
line-height: 16px;
text-transform: uppercase;
}
.overline-with-margin-top {
margin-top: 39px;
}
.aut-main {
background: #fff !important;
min-height: 100vh
}
.aut-container {
width: 550px;
margin: 15px auto 0 auto;
}
.aut-banner {
display: flex;
align-items: center;
justify-content: space-between;
font-family: "Inter";
text-transform: uppercase;
height: 90px;
padding: 0 80px;
background: #46a9dc;
}
.aut-banner-contained {
display: flex;
align-items: center;
justify-content: center;
font-family: "Inter";
text-transform: uppercase;
height: 60px;
background: #46a9dc;
border-bottom: 5px solid #005a97;
}
.aut-banner-logo {
display: flex;
align-items: center;
}
.aut-banner-logo img {
margin-right: 15px;
max-width: 22px;
}
.aut-banner-logo span {
color: rgb(255, 255, 255);
font-size: 24px;
font-weight: 400;
letter-spacing: 0.3px;
margin-top: 3px;
}
.aut-banner-contact button {
background: #fff !important;
color: var(--mdc-theme-primary) !important;
}
.aut-header {
padding: 16px 32px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.aut-header-tenant-selection {
border-bottom: 1px solid rgb(80, 153, 214);
padding: 25px 92px;
background: #3088d6;
}
.aut-header-user-name {
word-break: break-all;
}
.aut-header .aut-app-box {
display: flex;
flex-direction: row;
margin: 16px 0 15px;
}
.aut-header .aut-app-icon {
margin-right: 12px;
border-radius: 4px;
border: 1px solid rgb(236, 236, 236);
height: 40px;
width: 40px;
min-width: 40px;
display: flex;
justify-content: center;
align-items: center;
}
.aut-header .aut-app-icon i {
opacity: 0.4;
}
.aut-header .aut-app-name-and-desc {
display: flex;
justify-content: center;
flex-direction: column;
}
.aut-header .aut-app-name {
color: rgba(0, 0, 0, 0.87);
font-family: "Inter";
font-size: 16px;
font-weight: normal;
letter-spacing: 0.5px;
line-height: 20px;
word-break: break-all;
}
.aut-header .aut-app-desc {
margin-top: 2px;
color: rgba(0, 0, 0, 0.6);
font-family: "Inter";
font-size: 12px;
font-weight: normal;
height: 16px;
letter-spacing: 0.4px;
line-height: 16px;
}
.aut-content {
padding: 16px 0px 0px 32px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
overflow: auto;
}
.aut-content.aut-content-with-top-shadow {
box-shadow: inset 0px 20px 10px -10px #ece9e9
}
.aut-content.aut-content-with-bottom-shadow {
}
.aut-content.aut-content-with-top-shadow.aut-content-with-bottom-shadow {
box-shadow: inset 0px 20px 10px -10px #ece9e9, inset 0px -20px 10px -10px #ece9e9;
}
.aut-content-scopes-group {
display: flex;
flex-direction: column;
margin-bottom: 16px;
}
.aut-content-scopes-group .mdc-form-field {
min-height: 48px;
margin-left: -11px;
align-items: flex-start;
}
.aut-content-scopes-group .mdc-form-field .mdc-checkbox {
position: relative;
top: 4px;
}
.aut-content-scopes-group:last-child {
margin-bottom: 0;
}
.aut-content-scopes-group:last-child .mdc-form-field:last-child .aut-scope-desc {
border-bottom: none;
}
.aut-scope {
width: 100%;
margin-left: 30px;
}
.aut-scope-header {
display: flex;
padding-right: 32px;
align-items: center;
min-height: 48px;
}
.aut-scope-header .mdc-icon-button {
width: 40px;
height: 40px;
padding: 8px;
}
.aut-scope-label {
height: 40px;
width: 100%;
line-height: 40px;
color: rgba(0, 0, 0, 0.87);
font-family: "Inter";
font-size: 14px;
font-weight: normal;
letter-spacing: 0.25px;
margin-bottom: 0;
}
.aut-scope-desc {
padding-right: 80px;
color: rgba(0, 0, 0, 0.6);
font-family: "Inter";
font-size: 14px;
font-weight: normal;
letter-spacing: 0.25px;
line-height: 20px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.aut-scope-desc.aut-scope-desc-visible .aut-scope-desc-text {
display: block;
}
.aut-scope-desc.aut-scope-desc-hidden .aut-scope-desc-text {
display: none;
}
.aut-scope-desc-text {
padding: 2px 0 16px 0;
}
.aut-footer {
padding: 24px 32px 24px 32px;
color: rgba(0, 0, 0, 0.6);
font-family: "Inter";
font-size: 14px;
font-weight: normal;
letter-spacing: 0.25px;
line-height: 24px;
}
.aut-footer-tenant-selection {
font-size: 14px;
text-align: center;
margin: 20px 0 5px 0;
padding: 15px 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.aut-footer-tenant-selection p {
margin: 10px 0;
color: #6b7c91;
}
.aut-footer-tenant-selection a {
font-weight: 500;
}
.aut-form-actions {
text-align: right;
padding: 0 32px 32px 32px;
border-radius: 0 0 3px 3px;
}
.aut-form-actions button:first-child {
margin-right: 24px;
}
.aut-list {
padding: 15px 25px;
}
.aut-list-tenant-selection {
background: #ffffff;
border-radius: 4px;
border: 1px solid rgb(234, 237, 239);
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.06);
margin-bottom: 10px;
}
.aut-list-header {
font-weight: 400;
font-size: 1.9em;
color: rgba(0, 0, 0, 0.87);
}
.aut-list-header-tenant-selection {
font-weight: 400;
font-size: 24px;
color: #ffffff;
margin: 3px 0;
}
.aut-list-link {
color: rgba(0, 0, 0, 0.87);
}
.aut-avatar-icon {
font-size: 1.3em;
border: 1px solid rgba(0, 144, 218, 0.12);
color: var(--mdc-theme-primary);
background: rgba(4, 123, 209, 0.05);
}
.aut-avatar-text {
font-size: 1.8em;
border: 1px solid rgba(0, 144, 218, 0.12);
color: var(--mdc-theme-primary);
background: rgba(4, 123, 209, 0.05);
}
.aut-demo-info {
display: flex;
margin: 10px 0;
border-radius: 4px;
background: rgba(4, 123, 209, 0.08);
}
.aut-demo-info-icon {
margin: 16px 12px;
padding: 10px 5px 10px 10px;
}
.aut-demo-info-text {
padding: 16px 0;
}
.aut-demo-category-label {
font-size: 24px;
font-weight: 400;
padding-bottom: 24px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.aut-demo-subcategory-label {
font-size: 12px;
font-weight: 400;
text-transform: uppercase;
color: rgba(0, 0, 0, 0.87);
margin-top: 24px;
}
.aut-helper-text {
color: var(--mdc-theme-primary);
font-size: 14px;
}
.aut-select-button {
display: inline-block;
width: 100%;
border: none;
margin: 0;
text-decoration: none;
background: #ffffff;
font-family: sans-serif;
line-height: 1;
cursor: pointer;
text-align: center;
-webkit-appearance: none;
-moz-appearance: none;
}
.aut-select-button .aut-list-link {
color: rgba(0, 0, 0, 0.87);
font-size: 1.3em;
}
.aut-hidden {
height: 0;
overflow: hidden;
}
#error-title {
font-weight: 400;
margin-bottom: 40px;
}
#error-description {
margin-bottom: -10px;
}
#error-description, #error-hint {
color: #b00020;
opacity: 50%;
}
@media (max-width: 600px) {
.aut-container {
width: 100%;
margin: 0 auto;
border-radius: 0;
}
.aut-title-box {
padding: 0 24px;
border-radius: 0;
}
.aut-header {
padding: 24px;
}
.aut-content {
padding: 16px 0px 12px 24px;
max-height: none;
}
.aut-footer {
padding: 24px;
}
.aut-form-actions {
padding: 0 24px 24px 24px;
border-radius: 0;
}
}
.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label {
color: var(--mdc-theme-primary);
}
.alert-danger {
padding: 20px;
margin-top: 20px;
border-radius: 4px;
color: #721c24;
background-color: #f8d7da;
border-color: #f5c6cb;
}
pre {
color: #ffffff;
background: #2b323c;
border-radius: 4px;
padding: 16px;
white-space: -moz-pre-wrap; /* Mozilla */
white-space: -hp-pre-wrap; /* HP printers */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: pre-wrap; /* CSS 2.1 */
word-wrap: break-word; /* IE */
word-break: break-all;
} | 0.430147 | 0.062904 |
{
background-color:#[BGCOLOR];
color:#[TEXTCOLOR];
width: [GALLERYWIDTH]px;
height: [GALLERYHEIGHT]px;
font-size:[TEXTSIZE]px;
position:relative;
overflow:hidden;
}
#umg_large[MODULEID]
{
z-index:10;
width:100%;
height:MATH[[GALLERYHEIGHT]-90]px;
position:absolute;
}
#umg_large[MODULEID] .image
{
position:absolute;
float:left;
}
#umg_caption[MODULEID]
{
z-index:13;
position:absolute;
background-image:url('[CURRENTPATH]bg.png');
width:100%;
height:60px;
overflow:hidden;
}
#umg_captiontitle[MODULEID]
{
font-size:150%;
color:#[CAPTIONTITLECOLOR];
margin-left:3px;
}
#umg_captiondescription[MODULEID]
{
margin-left:3px;
}
#umg_captionauthor[MODULEID]
{
display:none;
}
#umg_captiontag[MODULEID]
{
display:none;
}
#umg_captiontakendate[MODULEID]
{
display:none;
}
#umg_xofy[MODULEID]
{
display:none;
}
#umg_buttons[MODULEID]
{
/*display:none*/;
}
#umg_prev[MODULEID]
{
z-index:12;
position:absolute;
width:MATH[[GALLERYWIDTH]/3]px;
height:MATH[[GALLERYHEIGHT]-90]px;
background-image:url('[CURRENTPATH]blank.png');
background-repeat:no-repeat;
background-position:20px MATH[([GALLERYHEIGHT]-100)/2-18]px;
}
#umg_prev[MODULEID]:hover
{
background-image:url('[CURRENTPATH]previous.png');
}
#umg_next[MODULEID]
{
z-index:12;
position:absolute;
left:MATH[[GALLERYWIDTH]/3*2]px;
width:MATH[[GALLERYWIDTH]/3]px;
height:MATH[[GALLERYHEIGHT]-90]px;
background-image:url('[CURRENTPATH]blank.png');
background-repeat:no-repeat;
background-position:MATH[[GALLERYWIDTH]/3-20-36]px MATH[([GALLERYHEIGHT]-100)/2-18]px;
}
#umg_next[MODULEID]:hover
{
background-image:url('[CURRENTPATH]next.png');
}
#umg_play[MODULEID]
{
z-index:12;
position:absolute;
left:MATH[[GALLERYWIDTH]/3]px;
width:MATH[[GALLERYWIDTH]/3]px;
height:MATH[[GALLERYHEIGHT]-90]px;
background-image:url('[CURRENTPATH]blank.png');
background-repeat:no-repeat;
background-position:MATH[[GALLERYWIDTH]/3/2-18]px MATH[([GALLERYHEIGHT]-100)/2-18]px;
}
#umg_play[MODULEID].active
{
}
#umg_play[MODULEID]:hover
{
background-image:url('[CURRENTPATH]play.png');
}
#umg_play[MODULEID].active:hover
{
background-image:url('[CURRENTPATH]pause.png');
}
#umg_countdown[MODULEID]
{
z-index:15;
width:20px;
height:20px;
background-image:url('[CURRENTPATH]countdown.png');
text-align:center;
line-height:20px;
position:absolute;
left:MATH[[GALLERYWIDTH]-10-20]px;
top:10px;
cursor:pointer;
}
#umg_loading[MODULEID]
{
z-index:16;
width:32px;
height:32px;
position:absolute;
left:MATH[[GALLERYWIDTH]/2-16]px;
top:MATH[([GALLERYHEIGHT]-90)/2-16]px;
}
#umg_loading[MODULEID].active
{
background-image:url('[CURRENTPATH]loading.gif');
}
/* position and dimensions of the navigator */
#umg_navi[MODULEID] {
display:none;
}
/* items inside navigator */
#umg_thumbslist[MODULEID]
{
z-index:17;
position:absolute;
background-color:#000;
width:10000px;
top:MATH[[GALLERYHEIGHT]-90]px;
height:90px;
}
#umg_thumbs[MODULEID]
{
z-index:18;
position:absolute;
height:100%;
}
#umg_thumbslist[MODULEID] a
{
float:left;
margin:5px;
filter:alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
#umg_thumbslist[MODULEID] a:hover
{
filter:alpha(opacity=75);
-moz-opacity:0.75;
-khtml-opacity: 0.75;
opacity: 0.75;
}
#umg_thumbslist[MODULEID] a.active, #umg_thumbslist[MODULEID] a.active:visited, #umg_thumbslist[MODULEID] a.active:hover
{
margin:3px;
border:2px solid #fff;
filter:alpha(opacity=100);
-moz-opacity:1;
-khtml-opacity: 1;
opacity: 1;
} | DesktopModules/UltraMediaGallery/HtmlSlide/templates/image/UMGClassic/style.css | {
background-color:#[BGCOLOR];
color:#[TEXTCOLOR];
width: [GALLERYWIDTH]px;
height: [GALLERYHEIGHT]px;
font-size:[TEXTSIZE]px;
position:relative;
overflow:hidden;
}
#umg_large[MODULEID]
{
z-index:10;
width:100%;
height:MATH[[GALLERYHEIGHT]-90]px;
position:absolute;
}
#umg_large[MODULEID] .image
{
position:absolute;
float:left;
}
#umg_caption[MODULEID]
{
z-index:13;
position:absolute;
background-image:url('[CURRENTPATH]bg.png');
width:100%;
height:60px;
overflow:hidden;
}
#umg_captiontitle[MODULEID]
{
font-size:150%;
color:#[CAPTIONTITLECOLOR];
margin-left:3px;
}
#umg_captiondescription[MODULEID]
{
margin-left:3px;
}
#umg_captionauthor[MODULEID]
{
display:none;
}
#umg_captiontag[MODULEID]
{
display:none;
}
#umg_captiontakendate[MODULEID]
{
display:none;
}
#umg_xofy[MODULEID]
{
display:none;
}
#umg_buttons[MODULEID]
{
/*display:none*/;
}
#umg_prev[MODULEID]
{
z-index:12;
position:absolute;
width:MATH[[GALLERYWIDTH]/3]px;
height:MATH[[GALLERYHEIGHT]-90]px;
background-image:url('[CURRENTPATH]blank.png');
background-repeat:no-repeat;
background-position:20px MATH[([GALLERYHEIGHT]-100)/2-18]px;
}
#umg_prev[MODULEID]:hover
{
background-image:url('[CURRENTPATH]previous.png');
}
#umg_next[MODULEID]
{
z-index:12;
position:absolute;
left:MATH[[GALLERYWIDTH]/3*2]px;
width:MATH[[GALLERYWIDTH]/3]px;
height:MATH[[GALLERYHEIGHT]-90]px;
background-image:url('[CURRENTPATH]blank.png');
background-repeat:no-repeat;
background-position:MATH[[GALLERYWIDTH]/3-20-36]px MATH[([GALLERYHEIGHT]-100)/2-18]px;
}
#umg_next[MODULEID]:hover
{
background-image:url('[CURRENTPATH]next.png');
}
#umg_play[MODULEID]
{
z-index:12;
position:absolute;
left:MATH[[GALLERYWIDTH]/3]px;
width:MATH[[GALLERYWIDTH]/3]px;
height:MATH[[GALLERYHEIGHT]-90]px;
background-image:url('[CURRENTPATH]blank.png');
background-repeat:no-repeat;
background-position:MATH[[GALLERYWIDTH]/3/2-18]px MATH[([GALLERYHEIGHT]-100)/2-18]px;
}
#umg_play[MODULEID].active
{
}
#umg_play[MODULEID]:hover
{
background-image:url('[CURRENTPATH]play.png');
}
#umg_play[MODULEID].active:hover
{
background-image:url('[CURRENTPATH]pause.png');
}
#umg_countdown[MODULEID]
{
z-index:15;
width:20px;
height:20px;
background-image:url('[CURRENTPATH]countdown.png');
text-align:center;
line-height:20px;
position:absolute;
left:MATH[[GALLERYWIDTH]-10-20]px;
top:10px;
cursor:pointer;
}
#umg_loading[MODULEID]
{
z-index:16;
width:32px;
height:32px;
position:absolute;
left:MATH[[GALLERYWIDTH]/2-16]px;
top:MATH[([GALLERYHEIGHT]-90)/2-16]px;
}
#umg_loading[MODULEID].active
{
background-image:url('[CURRENTPATH]loading.gif');
}
/* position and dimensions of the navigator */
#umg_navi[MODULEID] {
display:none;
}
/* items inside navigator */
#umg_thumbslist[MODULEID]
{
z-index:17;
position:absolute;
background-color:#000;
width:10000px;
top:MATH[[GALLERYHEIGHT]-90]px;
height:90px;
}
#umg_thumbs[MODULEID]
{
z-index:18;
position:absolute;
height:100%;
}
#umg_thumbslist[MODULEID] a
{
float:left;
margin:5px;
filter:alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
#umg_thumbslist[MODULEID] a:hover
{
filter:alpha(opacity=75);
-moz-opacity:0.75;
-khtml-opacity: 0.75;
opacity: 0.75;
}
#umg_thumbslist[MODULEID] a.active, #umg_thumbslist[MODULEID] a.active:visited, #umg_thumbslist[MODULEID] a.active:hover
{
margin:3px;
border:2px solid #fff;
filter:alpha(opacity=100);
-moz-opacity:1;
-khtml-opacity: 1;
opacity: 1;
} | 0.285571 | 0.183758 |
* {
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: center;
flex-direction: row;
align-items: center;
background: linear-gradient( 40deg, #000, #000
);
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: -moz-none;
-ms-user-select: none;
user-select: none;
}
#center {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: -100px;
}
#circular {
display: flex;
align-items: center;
justify-content: center;
height: 350px;
width: 350px;
border-radius: 50%;
background: #11151c;
box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.5);
position: relative;
box-sizing: border-box;
}
.quaters {
position: absolute;
box-sizing: border-box;
background: #11151c;
border-top-left-radius: 175px;
border-top-width: 5px;
border-top-style: solid;
border-top-color: rgb(0,255,0);
border-left-width: 5px;
border-left-style: solid;
border-left-color: rgb(0,255,0);
width: 175px;
height: 175px;
transform: rotate(-90deg);
transform-origin: bottom right;
top: 0;
left: 0;
transition: color 0.1s ease-out;
}
.movers {
transition: transform 0.1s ease-out;
}
.q1c {
animation: wheel1 1s linear forwards;
}
.q2c {
animation: wheel2 1s linear forwards;
}
.q3c {
animation: wheel3 1s linear forwards;
}
.q4c {
animation: wheel4 1s linear forwards;
}
@keyframes wheel1 {
0% {
border-color: rgb(0,255,0);
}
10% {
border-color: yellow;
}
20% {
border-color: red;
}
30% {
border-color: rgb(255,0,255);
}
53% {
border-color: red;
}
76% {
border-color: yellow;
}
100% {
border-color: rgb(0,255,0);
}
}
@keyframes wheel2 {
0% {
transform: rotate(-90deg);
border-color: rgb(0,255,0);
}
10% {
transform: rotate(0deg);
border-color: yellow;
}
20% {
transform: rotate(0deg);
border-color: red;
}
30% {
transform: rotate(0deg);
border-color: rgb(255,0,255);
}
53% {
transform: rotate(0deg);
border-color: red;
}
76% {
transform: rotate(0deg);
border-color: yellow;
}
100% {
transform: rotate(-90deg);
border-color: rgb(0,255,0);
}
}
@keyframes wheel3 {
0% {
transform: rotate(-90deg);
border-color: rgb(0,255,0);
}
10% {
transform: rotate(0deg);
border-color: yellow;
}
20% {
transform: rotate(90deg);
border-color: red;
}
30% {
transform: rotate(90deg);
border-color: rgb(255,0,255);
}
53% {
transform: rotate(90deg);
border-color: red;
}
76% {
transform: rotate(0deg);
border-color: yellow;
}
100% {
transform: rotate(-90deg);
border-color: rgb(0,255,0);
}
}
@keyframes wheel4 {
0% {
transform: rotate(-90deg);
border-color: rgb(0,255,0);
}
10% {
transform: rotate(0deg);
border-color: yellow;
}
20% {
transform: rotate(90deg);
border-color: red;
}
30% {
transform: rotate(180deg);
border-color: rgb(255,0,255);
}
53% {
transform: rotate(90deg);
border-color: red;
}
76% {
transform: rotate(0deg);
border-color: yellow;
}
100% {
transform: rotate(-90deg);
border-color: rgb(0,255,0);
}
}
.bouncy {
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.1);
opacity: 0;
}
.bouncyIntro {
animation: fade 0.6s ease-in-out 1.2s forwards;
}
.bounce {
animation: bounce 1s linear;
opacity: 1;
}
@keyframes fade {
0% {
opacity: 0;
transform: scale(1.2);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes bounce {
0% {
transform: scale(1);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.1);
}
5% {
transform: scale(1.05);
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.4);
}
20% {
transform: scale(1);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.1);
}
}
#word {
position: absolute;
font-family: "Paytone One", Helvetica, sans-serif;
font-size: 30pt;
/* color: rgba(255, 255, 255, 0.7); */
color: white;
opacity: 0;
animation: fade 0.6s ease-in-out 1.2s forwards;
}
#input {
font-family: "Montserrat", Helvetica, sans-serif;
position: relative;
width: 400px;
border-radius: 30px;
background-color: #222a38;
margin-top: 70px;
outline: none;
box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.5);
padding: 14px 12px;
text-align: center;
color: black;
font-weight: bold;
font-size: 14pt;
transition: background-color 0.1s linear;
letter-spacing: 0.7px;
opacity: 0;
border: none;
animation: fade 0.6s ease-in-out 1.2s forwards;
cursor: pointer;
}
#input:focus {
background-color: rgba(255, 255, 255, 0.85);
}
#message {
position: absolute;
font-family: "Montserrat", Helvetica, sans-serif;
font-size: 13pt;
font-weight: bold;
color: rgba(255, 255, 255, 0.8);
letter-spacing: 1px;
margin-top: 320px;
opacity: 0;
animation: slide-up 0.2s linear 1.5s forwards;
}
@keyframes slide-up {
0% {
margin-top: 320px;
opacity: 0;
}
100% {
margin-top: 290px;
opacity: 1;
}
}
#left {
text-align: center;
display: flex;
flex-direction: column;
height: auto;
margin-top: 50px;
margin-right: 100px;
}
#counthead {
font-family: "Montserrat", Helvetica, sans-serif;
color: rgba(255, 255, 255, 0.6);
font-size: 15pt;
letter-spacing: 1px;
margin-left: -300px;
opacity: 0;
animation: slide-right 0.3s ease-in 1.5s forwards;
}
@keyframes slide-right {
0% {
margin-left: -300px;
opacity: 0;
}
100% {
margin-left: 0px;
opacity: 1;
}
}
#secs {
font-family: "Paytone One", Helvetica, sans-serif;
color: rgba(255, 255, 255, 0.8);
font-size: 40pt;
opacity: 0;
animation: fade 0.3s ease-in-out 1.5s forwards
}
#wordlist {
height: 300px;
width: 230px;
border-left: 5px solid transparent;
position: relative;
overflow: hidden;
margin-top: 50px;
animation: showup 0.5s ease-out 2.3s forwards;
box-sizing: border-box;
}
#arrow {
position: absolute;
width: 0;
height: 0;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-left: 13px solid #222a38;
top: 137px;
opacity: 0;
animation: buttin 0.5s ease-out 2.3s forwards;
}
#scrollingwords {
height: auto;
width: 200px;
margin-left: 30px;
text-align: left;
padding-left: 10px;
margin-top: 133px;
transition: margin-top 0.2s ease-out;
}
#scrollingwords ul {
margin-top: 300px;
animation: scrollonload 1s ease-out 1.5s forwards;
}
@keyframes scrollonload {
0% {
margin-top: 300px;
}
100% {
margin-top: 0px;
}
}
@keyframes showup {
0% {
border-left: 5px solid transparent;
}
100% {
border-left: 5px solid #222a38;
}
}
@keyframes buttin {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#scrollingwords li {
margin-bottom: 10px;
color: rgba(255, 255, 255, 0.2);
font-family: "Montserrat", Helvetica, sans-serif;
font-size: 13pt;
transition: font-size 0.2s linear, color 0.2s linear;
}
#stats {
text-align: center;
display: flex;
flex-direction: column;
height: auto;
margin-top: 50px;
}
#scorehead {
font-family: "Montserrat", Helvetica, sans-serif;
color: rgba(255, 255, 255, 0.6);
font-size: 15pt;
letter-spacing: 1px;
opacity: 0;
animation: fade 0.3s ease-in 1.5s forwards;
}
#high {
cursor: none;
}
#highhead {
font-family: "Montserrat", Helvetica, sans-serif;
color: rgba(255, 255, 255, 0.1);
font-size: 15pt;
letter-spacing: 1px;
opacity: 0;
animation: fade 0.3s ease-in 1.5s forwards;
transition: color 0.2s linear;
}
#current{
margin: 0 100px;
}
#score {
font-family: "Paytone One", Helvetica, sans-serif;
color: #fff;
font-size: 40pt;
opacity: 0;
animation: fade 0.3s ease-in-out 1.5s forwards
}
#highscore {
font-family: "Paytone One", Helvetica, sans-serif;
color: #222a38;
font-size: 40pt;
opacity: 0;
animation: fade 0.3s ease-in-out 1.5s forwards;
transition: color 0.2s linear;
}
#high:hover #highhead {
color: rgba(255, 255, 255, 0.6);
}
#high:hover #highscore {
color: rgba(255, 255, 255, 0.8);
}
#graph {
margin-left: 100px;
height: 300px;
width: 330px;
margin-top: 50px;
}
footer {
position: absolute;
bottom: 10px;
right: 50px;
font-family: "Montserrat", Arial, Helvetica, sans-serif;
font-size: 10pt;
color: rgba(255, 255, 255, 0.6);
font-weight: bold;
letter-spacing: 1px;
} | style.css | * {
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: center;
flex-direction: row;
align-items: center;
background: linear-gradient( 40deg, #000, #000
);
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: -moz-none;
-ms-user-select: none;
user-select: none;
}
#center {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: -100px;
}
#circular {
display: flex;
align-items: center;
justify-content: center;
height: 350px;
width: 350px;
border-radius: 50%;
background: #11151c;
box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.5);
position: relative;
box-sizing: border-box;
}
.quaters {
position: absolute;
box-sizing: border-box;
background: #11151c;
border-top-left-radius: 175px;
border-top-width: 5px;
border-top-style: solid;
border-top-color: rgb(0,255,0);
border-left-width: 5px;
border-left-style: solid;
border-left-color: rgb(0,255,0);
width: 175px;
height: 175px;
transform: rotate(-90deg);
transform-origin: bottom right;
top: 0;
left: 0;
transition: color 0.1s ease-out;
}
.movers {
transition: transform 0.1s ease-out;
}
.q1c {
animation: wheel1 1s linear forwards;
}
.q2c {
animation: wheel2 1s linear forwards;
}
.q3c {
animation: wheel3 1s linear forwards;
}
.q4c {
animation: wheel4 1s linear forwards;
}
@keyframes wheel1 {
0% {
border-color: rgb(0,255,0);
}
10% {
border-color: yellow;
}
20% {
border-color: red;
}
30% {
border-color: rgb(255,0,255);
}
53% {
border-color: red;
}
76% {
border-color: yellow;
}
100% {
border-color: rgb(0,255,0);
}
}
@keyframes wheel2 {
0% {
transform: rotate(-90deg);
border-color: rgb(0,255,0);
}
10% {
transform: rotate(0deg);
border-color: yellow;
}
20% {
transform: rotate(0deg);
border-color: red;
}
30% {
transform: rotate(0deg);
border-color: rgb(255,0,255);
}
53% {
transform: rotate(0deg);
border-color: red;
}
76% {
transform: rotate(0deg);
border-color: yellow;
}
100% {
transform: rotate(-90deg);
border-color: rgb(0,255,0);
}
}
@keyframes wheel3 {
0% {
transform: rotate(-90deg);
border-color: rgb(0,255,0);
}
10% {
transform: rotate(0deg);
border-color: yellow;
}
20% {
transform: rotate(90deg);
border-color: red;
}
30% {
transform: rotate(90deg);
border-color: rgb(255,0,255);
}
53% {
transform: rotate(90deg);
border-color: red;
}
76% {
transform: rotate(0deg);
border-color: yellow;
}
100% {
transform: rotate(-90deg);
border-color: rgb(0,255,0);
}
}
@keyframes wheel4 {
0% {
transform: rotate(-90deg);
border-color: rgb(0,255,0);
}
10% {
transform: rotate(0deg);
border-color: yellow;
}
20% {
transform: rotate(90deg);
border-color: red;
}
30% {
transform: rotate(180deg);
border-color: rgb(255,0,255);
}
53% {
transform: rotate(90deg);
border-color: red;
}
76% {
transform: rotate(0deg);
border-color: yellow;
}
100% {
transform: rotate(-90deg);
border-color: rgb(0,255,0);
}
}
.bouncy {
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.1);
opacity: 0;
}
.bouncyIntro {
animation: fade 0.6s ease-in-out 1.2s forwards;
}
.bounce {
animation: bounce 1s linear;
opacity: 1;
}
@keyframes fade {
0% {
opacity: 0;
transform: scale(1.2);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes bounce {
0% {
transform: scale(1);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.1);
}
5% {
transform: scale(1.05);
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.4);
}
20% {
transform: scale(1);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.1);
}
}
#word {
position: absolute;
font-family: "Paytone One", Helvetica, sans-serif;
font-size: 30pt;
/* color: rgba(255, 255, 255, 0.7); */
color: white;
opacity: 0;
animation: fade 0.6s ease-in-out 1.2s forwards;
}
#input {
font-family: "Montserrat", Helvetica, sans-serif;
position: relative;
width: 400px;
border-radius: 30px;
background-color: #222a38;
margin-top: 70px;
outline: none;
box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.5);
padding: 14px 12px;
text-align: center;
color: black;
font-weight: bold;
font-size: 14pt;
transition: background-color 0.1s linear;
letter-spacing: 0.7px;
opacity: 0;
border: none;
animation: fade 0.6s ease-in-out 1.2s forwards;
cursor: pointer;
}
#input:focus {
background-color: rgba(255, 255, 255, 0.85);
}
#message {
position: absolute;
font-family: "Montserrat", Helvetica, sans-serif;
font-size: 13pt;
font-weight: bold;
color: rgba(255, 255, 255, 0.8);
letter-spacing: 1px;
margin-top: 320px;
opacity: 0;
animation: slide-up 0.2s linear 1.5s forwards;
}
@keyframes slide-up {
0% {
margin-top: 320px;
opacity: 0;
}
100% {
margin-top: 290px;
opacity: 1;
}
}
#left {
text-align: center;
display: flex;
flex-direction: column;
height: auto;
margin-top: 50px;
margin-right: 100px;
}
#counthead {
font-family: "Montserrat", Helvetica, sans-serif;
color: rgba(255, 255, 255, 0.6);
font-size: 15pt;
letter-spacing: 1px;
margin-left: -300px;
opacity: 0;
animation: slide-right 0.3s ease-in 1.5s forwards;
}
@keyframes slide-right {
0% {
margin-left: -300px;
opacity: 0;
}
100% {
margin-left: 0px;
opacity: 1;
}
}
#secs {
font-family: "Paytone One", Helvetica, sans-serif;
color: rgba(255, 255, 255, 0.8);
font-size: 40pt;
opacity: 0;
animation: fade 0.3s ease-in-out 1.5s forwards
}
#wordlist {
height: 300px;
width: 230px;
border-left: 5px solid transparent;
position: relative;
overflow: hidden;
margin-top: 50px;
animation: showup 0.5s ease-out 2.3s forwards;
box-sizing: border-box;
}
#arrow {
position: absolute;
width: 0;
height: 0;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-left: 13px solid #222a38;
top: 137px;
opacity: 0;
animation: buttin 0.5s ease-out 2.3s forwards;
}
#scrollingwords {
height: auto;
width: 200px;
margin-left: 30px;
text-align: left;
padding-left: 10px;
margin-top: 133px;
transition: margin-top 0.2s ease-out;
}
#scrollingwords ul {
margin-top: 300px;
animation: scrollonload 1s ease-out 1.5s forwards;
}
@keyframes scrollonload {
0% {
margin-top: 300px;
}
100% {
margin-top: 0px;
}
}
@keyframes showup {
0% {
border-left: 5px solid transparent;
}
100% {
border-left: 5px solid #222a38;
}
}
@keyframes buttin {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#scrollingwords li {
margin-bottom: 10px;
color: rgba(255, 255, 255, 0.2);
font-family: "Montserrat", Helvetica, sans-serif;
font-size: 13pt;
transition: font-size 0.2s linear, color 0.2s linear;
}
#stats {
text-align: center;
display: flex;
flex-direction: column;
height: auto;
margin-top: 50px;
}
#scorehead {
font-family: "Montserrat", Helvetica, sans-serif;
color: rgba(255, 255, 255, 0.6);
font-size: 15pt;
letter-spacing: 1px;
opacity: 0;
animation: fade 0.3s ease-in 1.5s forwards;
}
#high {
cursor: none;
}
#highhead {
font-family: "Montserrat", Helvetica, sans-serif;
color: rgba(255, 255, 255, 0.1);
font-size: 15pt;
letter-spacing: 1px;
opacity: 0;
animation: fade 0.3s ease-in 1.5s forwards;
transition: color 0.2s linear;
}
#current{
margin: 0 100px;
}
#score {
font-family: "Paytone One", Helvetica, sans-serif;
color: #fff;
font-size: 40pt;
opacity: 0;
animation: fade 0.3s ease-in-out 1.5s forwards
}
#highscore {
font-family: "Paytone One", Helvetica, sans-serif;
color: #222a38;
font-size: 40pt;
opacity: 0;
animation: fade 0.3s ease-in-out 1.5s forwards;
transition: color 0.2s linear;
}
#high:hover #highhead {
color: rgba(255, 255, 255, 0.6);
}
#high:hover #highscore {
color: rgba(255, 255, 255, 0.8);
}
#graph {
margin-left: 100px;
height: 300px;
width: 330px;
margin-top: 50px;
}
footer {
position: absolute;
bottom: 10px;
right: 50px;
font-family: "Montserrat", Arial, Helvetica, sans-serif;
font-size: 10pt;
color: rgba(255, 255, 255, 0.6);
font-weight: bold;
letter-spacing: 1px;
} | 0.495606 | 0.10466 |
* {
padding: 0;
margin: 0;
}
/*Global styles -----------------------------------------------------------------------------------------------------------*/
/*limited reset*/
html, body, div, section, article, aside, header, hgroup, footer, nav, h1, h2, h3, h4, h5, h6, p, blockquote, address, time, span, em, strong, img, ol, ul, li, figure, canvas, video, th, td, tr {
margin: 0;
padding: 0;
border: 0;
vertical-align: baseline;
font: inherit;
}
/*html5 display rule*/
address, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, nav, menu, nav, section, summary {
display: block;
}
/*micro-clearfix by <NAME> http://nicolasgallagher.com/micro-clearfix-hack/*/
/* For modern browsers */
.cf:before, .cf:after {
content: "";
display: table;
}
.cf:after {
clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
zoom: 1;
}
a {
text-decoration: none;
/*color: #667F6A;
border-bottom: 1px dotted #667F6A;*/
;
}
a:hover {
color: #7B798F;
/*border-bottom: 1px solid #7B798F;*/
;
}
a:focus {
outline: thin dotted;
}
a img {
border: none;
outline: 0;
}
/***********************/
/***********************/
body {
background: #000;
}
#wrapper-main {
width: 100%;
margin: auto;
/*height: 1167px;*/
height: auto;
padding-bottom: 50px;
background: url(../_images/background.jpg) top center no-repeat;
}
.topbar-div {
width: 100%;
border-bottom: 1px solid #406b02;
height: 45px;
}
#wrapper-main .topbar-div > header {
width: 960px;
margin: auto;
position: relative;
}
/* banner LEFT section */
#banner > ul {
margin-top: 13px;
padding: 0;
float: left;
}
#banner > ul li {
list-style: none;
display: inline-block;
color: #fff;
text-transform: uppercase;
font-size: 12px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
margin-right: 20px;
}
/*english yellow css*/
#banner > ul li:nth-child(2) {
color: #FC0;
}
/*img icon margin*/
#banner > ul li > img {
padding-right: 5px;
}
#banner > ul li:nth-child(2) > a {
color: #F90;
text-decoration: none;
font-style: none;
}
#banner > ul li:nth-child(2) > a:hover {
opacity: .3;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
#banner > ul li:nth-child(3) > a {
color: #fff;
}
#banner > ul li:nth-child(3) > a:hover {
opacity: .3;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
.search {
position: absolute;
top: 0;
right: 0;
width: 292px;
background: #000;
padding: 9px;
-webkit-border-radius: 0px 0px 10px 10px;
border-radius: 0px 0px 10px 10px;
}
.search > span, p {
float: left;
text-transform: uppercase;
margin-right: 10px;
}
.search > p {
color: #fff;
margin: 2px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 14px;
margin-left: 10px;
}
.searchbox {
width: 200px;
-webkit-border-radius: 5px;
border-radius: 5px;
border: none;
padding: 5px;
font-size: 12px;
margin-left: 5px;
position: absolute;
}
.search-icon {
position: absolute;
right: 20px;
top: 12px;
background: url(../_images/magnisearch.png) center no-repeat;
width: 20px;
height: 20px;
z-index: 5;
}
/* LOGO SECTION */
.logosection-div {
width: 100%;
height: 98px;
}
.logosection-div > section {
width: 960px;
margin: auto;
}
/* BOX Login */
#boxlogin div {
float: left;
margin-right: 10px;
margin-top: 15px;
}
#boxlogin div > p {
margin-top: 2px;
}
#boxlogin div:first-child {
width: 222px;
margin-left: 14px;
}
#sprytextfield1 > label {
float: left;
color: #c2c4bf;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 11px;
text-transform: uppercase;
margin-bottom: 3px;
}
#sprytextfield1 > input {
float: left;
clear: both;
width: 95%;
padding: 5px;
border: none;
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
#sprypassword1 > label {
float: left;
color: #c2c4bf;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 11px;
text-transform: uppercase;
margin-bottom: 3px;
}
#sprypassword1 > input {
float: left;
clear: both;
width: 95%;
padding: 5px;
border: none;
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
#boxlogin div > input {
width: 100%;
padding: 6px;
border: none;
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
color: #fff;
text-transform: uppercase;
font-weight: bold;
font-size: 11px;
margin-top: 19px;
background: #fa0100;
/* Old browsers */
background: -moz-linear-gradient(top, #fa0100 0%, #de0100 41%, #c70000 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fa0100), color-stop(41%,#de0100), color-stop(100%,#c70000));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #fa0100 0%,#de0100 41%,#c70000 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #fa0100 0%,#de0100 41%,#c70000 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, #fa0100 0%,#de0100 41%,#c70000 100%);
/* IE10+ */
background: linear-gradient(to bottom, #fa0100 0%,#de0100 41%,#c70000 100%);
/* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fa0100', endColorstr='#c70000',GradientType=0 );
/* IE6-9 */
;
}
#boxlogin div > input:hover {
background: #F33;
}
#boxlogin div:nth-child(2) {
width: 222px;
}
#boxlogin div:last-child {
width: 69px;
}
.logo {
background: url(../_images/logo.png) no-repeat;
width: 151px;
height: 32px;
float: left;
margin-top: 27px;
}
.login-div {
width: 563px;
float: right;
height: 100%;
}
.subtextcenter {
font-size: 10px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: #FC0;
width: 100%;
text-align: center;
}
.subtextright {
font-size: 10px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: #FC0;
width: 100%;
text-align: right;
}
.menubar {
width: 100%;
border-top: 1px solid #243c01;
border-bottom: 1px solid #243c01;
background: #060e00;
opacity: .7;
}
#menubar-div {
width: 960px;
margin: auto;
}
#menubar-div ul {
margin: 0;
padding: 0;
}
#menubar-div ul li {
list-style: none;
color: #fff;
display: inline-block;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 12px;
/*margin-right: 40px;*/
font-weight: bold;
margin-top: 10px;
padding-left: 25px;
padding-right: 25px;
padding-bottom: 10px;
position: relative;
}
.active {
background: url(../_images/active-btn.png)center no-repeat;
height: 43px;
width: 100%;
position: absolute;
margin-top: -40px;
bottom: -6px;
left: 0;
}
#menubar-div ul li > a {
color: #fff;
}
#menubar-div ul li > a:hover {
opacity: .4;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-ms-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
/* SLIDER DIV*/
#slider-div {
margin: auto;
width: 960px;
}
.maincontent {
width: 950px;
margin: auto;
}
.maincontent > div {
float: left;
margin-top: 20px;
}
.maincontent > div:first-child {
position: relative;
z-index: 1;
}
.maincontent > div > section {
margin: 20px;
opacity: 9;
position: relative;
height: auto;
overflow:auto;
padding-bottom:20px;
}
.maincontent > div > section p {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 12px;
text-transform: none;
line-height: 150%;
z-index: 5;
}
/* CONTACT US CONTAINER */
div > div > div > div > section {
}
/* Targeting the last p tag on the contact us */
div > div > div > div > section p:nth-child(4) {
margin-bottom:5px;
}
.maincontent > div > section > .about-div {
width: 403px;
text-align: justify;
overflow: auto;
}
.maincontent > div > section > .about-div p {
clear: both;
margin-bottom: 22px;
}
/*LEFT CONTENT*/
.maincontent > div:first-child {
background: #0e1400;
width: 697px;
border: 1px solid #316900;
opacity: .8;
color: #fff;
}
hgroup h1 {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 18px;
color: #fff900;
text-transform: uppercase;
font-weight: bold;
clear: both;
margin-bottom: 10px;
}
hgroup h3 {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 11px;
color: #fff900;
text-transform: uppercase;
margin-top: 5px;
font-weight: bold;
}
.formbox {
margin-top: 10px;
width: 100%;
}
.formtextbottom {
width: 435px;
margin: auto;
margin-top: 20px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 12px;
}
#sprycheckbox1 > label > a {
color: #F00;
margin-left: 5px;
}
.registerbtn {
width: 112px;
margin: auto;
padding: 20px;
}
.sendmessage {
width: 112px;
margin: auto;
padding: 20px;
float: right;
}
/*register button*/
.registerbtn > input, .sendmessage > input {
background: #F00;
border: none;
padding: 10px;
color: #FFF;
text-transform: uppercase;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 12px;
border: 1px solid #900;
background: #f50100;
/* Old browsers */
background: -moz-linear-gradient(top, #f50100 0%, #de0100 40%, #c50000 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f50100), color-stop(40%,#de0100), color-stop(100%,#c50000));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #f50100 0%,#de0100 40%,#c50000 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #f50100 0%,#de0100 40%,#c50000 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, #f50100 0%,#de0100 40%,#c50000 100%);
/* IE10+ */
background: linear-gradient(to bottom, #f50100 0%,#de0100 40%,#c50000 100%);
/* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f50100', endColorstr='#c50000',GradientType=0 );
/* IE6-9 */
-webkit-border-radius: 5px;
border-radius: 5px;
}
.registerbtn > input:hover, .sendmessage> input:hover {
background: #F00;
}
/* FORMS INPUT */
#sprytextfield2 > label, #sprypassword2 label, #sprytextfield3 > label, #sprytextfield4 > label, #spryconfirm1 > label, #sprytextfield5 > label, #sprytextfield6 > label, #sprytextarea1 > label {
float: left;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 11px;
margin-bottom: 5px;
}
#sprytextarea1 > textarea {
float: left;
clear: both;
padding: 2px;
width: 96%;
}
#sprytextfield2 > input, #sprypassword2 > input, #sprytextfield3 > input, #sprytextfield4 > input, #spryconfirm1 > input, #sprytextfield5 > input, #sprytextfield6 > input, #sprytextarea1 > input {
float: left;
clear: both;
padding: 3px;
width: 98%;
font-size: 11px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: #030;
}
/*SIDEBAR*/
.maincontent > div:last-child {
width: 230px;
float: right;
text-align: center;
margin-right:-6px;
}
/* ADVERTISEMENT BOX */
.maincontent > div:last-child > div {
margin: auto;
padding-bottom: 20px;
}
/*img sidebar*/
.maincontent > div:last-child > div img {
border: 1px solid #355a00;
-webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .6);
box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .6);
}
/*sidebar - LAST div*/
.maincontent > div:last-child > div:last-child {
background: #0d1a00;
opacity: .7;
width: 220px;
height: 118px;
border: 1px solid #316900;
}
.maincontent > div:last-child > div:last-child section {
opacity: 9;
color: #fff;
padding-top: 20px;
padding-left: 10px;
text-align: left;
font-size: 10px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
.maincontent > div:last-child > div:last-child section h1 {
color: #fff900;
text-transform: uppercase;
font-size: 14px;
font-weight: bold;
}
.maincontent > div:last-child > div:last-child section p {
margin-top: 5px;
margin-bottom: 5px;
text-transform: none;
font-size: 12px;
}
.fb {
background: url(../_images/fb.png) center no-repeat;
width: 226px;
height: 49px;
-webkit-border-radius: 5px;
border-radius: 5px;
margin-bottom: 15px;
}
.fb:hover, .twitter:hover, .insta:hover {
opacity: .5;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-ms-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
.twitter {
background: url(../_images/twitter.png) center no-repeat;
width: 226px;
height: 49px;
-webkit-border-radius: 5px;
border-radius: 5px;
margin-bottom: 15px;
}
.insta {
background: url(../_images/insta.png) center no-repeat;
width: 226px;
height: 49px;
-webkit-border-radius: 5px;
border-radius: 5px;
margin-bottom: 15px;
}
/* SPONSOR DIV*/
.sponsor {
width: 960px;
margin: auto;
margin-top: 20px;
}
.sponsor > p {
color: #FFF;
display: block;
width: 100%;
text-align: center;
margin-bottom: 10px;
font-size: 12px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
.sponsorbox {
background: #FFF;
}
#sponsorbox > ul {
margin: 0;
padding: 0;
text-align: center;
}
#sponsorbox > ul li {
list-style: none;
display: inline-block;
margin-right: 10px;
margin-top: 10px;
}
/* FOOTER LINKS */
.footer-links {
width: 960px;
margin: auto;
margin-top: 20px;
}
#footers > ul {
margin: 0;
padding: 0;
text-align: center;
}
#footers > ul li {
list-style: none;
display: inline-block;
margin-left: 15px;
margin-right: 15px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 11px;
color: #FFF;
margin-top: 5px;
text-transform: uppercase;
}
#footers > ul li > a {
color: #FFF;
}
#footers > ul li > a:hover {
color: #666;
-webkit-transition: color 1s;
-moz-transition: color 1s;
-ms-transition: color 1s;
-o-transition: color 1s;
transition: color 1s;
}
#footers > p {
width: 100%;
text-align: center;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 11px;
margin-top: 8px;
color: #FFF;
}
/***********************/
/*NAME: <NAME>.*/
/*WEBSITE: williamcarrasca.dotpxelz.com
/* Mobile: 09212632325
/***********************/
/* SUBPAGES - CSS*/
/* SPORSTSBOOK, CASINO PAGE CSS*/
.sportsbox-big1 {
width: 300px;
float: left;
margin-right: 20px;
text-align: center;
}
.sportsbox-big1 > img, .sportsbox-big2 > img {
margin: auto;
width: 100%;
}
.sportsbox-big1 > p, .sportsbox-big2 > p {
display: block;
text-align: justify;
height: 70px;
}
#playnow {
padding: 10px;
background: #F00;
clear: both;
-webkit-border-radius: 5px;
border-radius: 5px;
}
/* FOR PLAY NOW BUTTON HOVER*/
/* casino, sportsbook */
.sportsbox-big1 > a, .sportsbox-big2 > a, .casino-big1 > a {
color: #FFF;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-family: 13px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: bold;
}
/* FOR PLAY NOW BUTTON HOVER*/
/* casino, sportsbook */
.sportsbox-big1 > a:hover, .sportsbox-big2 > a:hover, .casino-big1 > a:hover {
color: #F90;
-webkit-transition: color .5s ease-in-out;
-moz-transition: color .5s ease-in-out;
-ms-transition: color .5s ease-in-out;
-o-transition: color .5s ease-in-out;
transition: color .5s ease-in-out;
}
.sportsbox-big2 {
width: 300px;
float: right;
margin-right: 20px;
text-align: center;
}
.casino-big1 {
width: 200px;
float: left;
margin-right: 17px;
text-align: center;
}
#casino-div > p {
font-size: 10px;
height: 70px;
display: block;
text-align: justify;
color: fff;
width: 100%;
}
.casino-big1 > img {
margin: auto;
width: 100%;
}
/*
.casino-big1 > p {
display:block;
text-align:justify;
height:70px;
color:#6CF;
font-size:1px;
font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
} */
#thumb-slot > ul {
margin: 0;
padding: 0;
}
#thumb-slot > ul li {
list-style: none;
float: left;
width: 190px;
height: auto;
margin-right: 20px;
margin-left: 5px;
margin-bottom: 20px;
margin-top: 10px;
text-align: center;
}
#thumb-slot > img {
margin-bottom: 10px;
}
#thumb-slot > ul li > p {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 14px;
color: #fff;
text-transform: uppercase;
display: block;
text-align: center;
width: 100%;
font-weight: bold;
}
.about-back {
background: url(../_images/about-back.png) no-repeat;
position: absolute;
top: 0;
right: 0;
width: 699px;
height: 488px;
z-index: 0;
}
.faq-back {
background: url(../_images/fab-back.png) no-repeat;
position: absolute;
bottom: 0;
right: 0;
width: 490px;
height: 348px;
}
#promotion-ads {
text-align: center;
padding: 5px;
}
/* INDEX CSS */
#leftbox {
background: none;
border: none;
width: 712px;
}
#leftbox > div {
float: left;
width: 229px;
position: relative;
height: 220px;
margin-bottom: 10px;
margin-left:-4px;
}
#leftbox > div > h2 {
position: absolute;
top: 0;
left: 0;
z-index: 2;
margin-top: 14px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 13px;
margin-left: 10px;
color: #f0ea00;
font-weight: bold;
}
/*PLAY ALL BUTTON CSS*/
#leftbox > div > a {
padding: 6px;
background: #F00;
position: absolute;
bottom: 10px;
right: 10px;
color: #FFF;
font-weight: bold;
border: 1px solid #900;
z-index: 1;
font-size: 12px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
-webkit-border-radius: 5px;
border-radius: 5px;
background: #ef0100;
/* Old browsers */
background: -moz-linear-gradient(top, #ef0100 0%, #e70100 40%, #c80000 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ef0100), color-stop(40%,#e70100), color-stop(100%,#c80000));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ef0100 0%,#e70100 40%,#c80000 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ef0100 0%,#e70100 40%,#c80000 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, #ef0100 0%,#e70100 40%,#c80000 100%);
/* IE10+ */
background: linear-gradient(to bottom, #ef0100 0%,#e70100 40%,#c80000 100%);
/* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef0100', endColorstr='#c80000',GradientType=0 );
/* IE6-9 */;
}
#leftbox > div > a:hover {
background: #F30;
}
.box1 {
background: url(../_images/boxfloat-1.jpg) no-repeat;
width: 230px;
height: 220px;
position: absolute;
top: 0;
left: 0;
}
/*BOX LINK COLOR AND HOVER -CLCIK HERE */
#leftbox > div > div > a {
color: #FFF;
opacity: 10;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 12px;
width: 185px;
margin: auto;
display: block;
margin-top: 10px;
}
#leftbox > div > div > a:hover {
color: #333;
}
.box2 {
background: url(../_images/boxfloat-2.jpg) no-repeat;
width: 230px;
height: 220px;
position: absolute;
top: 0;
left: 0;
}
.box3 {
background: url(../_images/boxfloat-fb-box.jpg) no-repeat;
width: 230px;
height: 220px;
position: absolute;
top: 0;
left: 0;
}
.box4 {
background: url(../_images/boxfloat-3.jpg) no-repeat;
width: 230px;
height: 220px;
position: absolute;
top: 0;
left: 0;
}
.testibox {
background: url(../_images/testimonial-box.png) no-repeat;
width: 230px;
height: 220px;
position: absolute;
top: 0;
left: 0;
}
#clickfb {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 70px;
}
#clickfb > a > img {
float: left;
margin-left: -10px;
}
/* BOXES FLOAT */
.box-div {
width: 100%;
position: absolute;
bottom: 0;
left: 0;
height: 57px;
z-index: 5;
background: #000;
opacity: .6;
}
/* 2nd box float*/
#leftbox > div:nth-child(2) {
margin-left: 11px;
margin-right: 11px;
}
/* 5th box float*/
#leftbox > div:nth-child(5) {
margin-left: 11px;
margin-right: 11px;
}
/* last box float*/
#leftbox > div:last-child {
background: #061700;
}
/* LAST FLOAT BOX CSS*/
#leftbox > div:last-child > ul {
padding-top: 40px;
width: 202px;
margin: auto;
}
#leftbox > div:last-child > ul li {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 12px;
list-style: none;
line-height: 150%;
}
#leftbox > div:last-child > ul li > span {
margin-left: 80px;
font-size: 10px;
}
.flashtesti {
position: absolute;
width: 229px;
height: 220px;
top: 0;
}
.left-div {
float: left;
width: 313px;
margin-right: 10px;
}
#sprytextarea1 {
width: 100%;
} | css/mainstylesheet.css |
* {
padding: 0;
margin: 0;
}
/*Global styles -----------------------------------------------------------------------------------------------------------*/
/*limited reset*/
html, body, div, section, article, aside, header, hgroup, footer, nav, h1, h2, h3, h4, h5, h6, p, blockquote, address, time, span, em, strong, img, ol, ul, li, figure, canvas, video, th, td, tr {
margin: 0;
padding: 0;
border: 0;
vertical-align: baseline;
font: inherit;
}
/*html5 display rule*/
address, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, nav, menu, nav, section, summary {
display: block;
}
/*micro-clearfix by <NAME> http://nicolasgallagher.com/micro-clearfix-hack/*/
/* For modern browsers */
.cf:before, .cf:after {
content: "";
display: table;
}
.cf:after {
clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
zoom: 1;
}
a {
text-decoration: none;
/*color: #667F6A;
border-bottom: 1px dotted #667F6A;*/
;
}
a:hover {
color: #7B798F;
/*border-bottom: 1px solid #7B798F;*/
;
}
a:focus {
outline: thin dotted;
}
a img {
border: none;
outline: 0;
}
/***********************/
/***********************/
body {
background: #000;
}
#wrapper-main {
width: 100%;
margin: auto;
/*height: 1167px;*/
height: auto;
padding-bottom: 50px;
background: url(../_images/background.jpg) top center no-repeat;
}
.topbar-div {
width: 100%;
border-bottom: 1px solid #406b02;
height: 45px;
}
#wrapper-main .topbar-div > header {
width: 960px;
margin: auto;
position: relative;
}
/* banner LEFT section */
#banner > ul {
margin-top: 13px;
padding: 0;
float: left;
}
#banner > ul li {
list-style: none;
display: inline-block;
color: #fff;
text-transform: uppercase;
font-size: 12px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
margin-right: 20px;
}
/*english yellow css*/
#banner > ul li:nth-child(2) {
color: #FC0;
}
/*img icon margin*/
#banner > ul li > img {
padding-right: 5px;
}
#banner > ul li:nth-child(2) > a {
color: #F90;
text-decoration: none;
font-style: none;
}
#banner > ul li:nth-child(2) > a:hover {
opacity: .3;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
#banner > ul li:nth-child(3) > a {
color: #fff;
}
#banner > ul li:nth-child(3) > a:hover {
opacity: .3;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
.search {
position: absolute;
top: 0;
right: 0;
width: 292px;
background: #000;
padding: 9px;
-webkit-border-radius: 0px 0px 10px 10px;
border-radius: 0px 0px 10px 10px;
}
.search > span, p {
float: left;
text-transform: uppercase;
margin-right: 10px;
}
.search > p {
color: #fff;
margin: 2px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 14px;
margin-left: 10px;
}
.searchbox {
width: 200px;
-webkit-border-radius: 5px;
border-radius: 5px;
border: none;
padding: 5px;
font-size: 12px;
margin-left: 5px;
position: absolute;
}
.search-icon {
position: absolute;
right: 20px;
top: 12px;
background: url(../_images/magnisearch.png) center no-repeat;
width: 20px;
height: 20px;
z-index: 5;
}
/* LOGO SECTION */
.logosection-div {
width: 100%;
height: 98px;
}
.logosection-div > section {
width: 960px;
margin: auto;
}
/* BOX Login */
#boxlogin div {
float: left;
margin-right: 10px;
margin-top: 15px;
}
#boxlogin div > p {
margin-top: 2px;
}
#boxlogin div:first-child {
width: 222px;
margin-left: 14px;
}
#sprytextfield1 > label {
float: left;
color: #c2c4bf;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 11px;
text-transform: uppercase;
margin-bottom: 3px;
}
#sprytextfield1 > input {
float: left;
clear: both;
width: 95%;
padding: 5px;
border: none;
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
#sprypassword1 > label {
float: left;
color: #c2c4bf;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 11px;
text-transform: uppercase;
margin-bottom: 3px;
}
#sprypassword1 > input {
float: left;
clear: both;
width: 95%;
padding: 5px;
border: none;
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
#boxlogin div > input {
width: 100%;
padding: 6px;
border: none;
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
color: #fff;
text-transform: uppercase;
font-weight: bold;
font-size: 11px;
margin-top: 19px;
background: #fa0100;
/* Old browsers */
background: -moz-linear-gradient(top, #fa0100 0%, #de0100 41%, #c70000 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fa0100), color-stop(41%,#de0100), color-stop(100%,#c70000));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #fa0100 0%,#de0100 41%,#c70000 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #fa0100 0%,#de0100 41%,#c70000 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, #fa0100 0%,#de0100 41%,#c70000 100%);
/* IE10+ */
background: linear-gradient(to bottom, #fa0100 0%,#de0100 41%,#c70000 100%);
/* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fa0100', endColorstr='#c70000',GradientType=0 );
/* IE6-9 */
;
}
#boxlogin div > input:hover {
background: #F33;
}
#boxlogin div:nth-child(2) {
width: 222px;
}
#boxlogin div:last-child {
width: 69px;
}
.logo {
background: url(../_images/logo.png) no-repeat;
width: 151px;
height: 32px;
float: left;
margin-top: 27px;
}
.login-div {
width: 563px;
float: right;
height: 100%;
}
.subtextcenter {
font-size: 10px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: #FC0;
width: 100%;
text-align: center;
}
.subtextright {
font-size: 10px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: #FC0;
width: 100%;
text-align: right;
}
.menubar {
width: 100%;
border-top: 1px solid #243c01;
border-bottom: 1px solid #243c01;
background: #060e00;
opacity: .7;
}
#menubar-div {
width: 960px;
margin: auto;
}
#menubar-div ul {
margin: 0;
padding: 0;
}
#menubar-div ul li {
list-style: none;
color: #fff;
display: inline-block;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 12px;
/*margin-right: 40px;*/
font-weight: bold;
margin-top: 10px;
padding-left: 25px;
padding-right: 25px;
padding-bottom: 10px;
position: relative;
}
.active {
background: url(../_images/active-btn.png)center no-repeat;
height: 43px;
width: 100%;
position: absolute;
margin-top: -40px;
bottom: -6px;
left: 0;
}
#menubar-div ul li > a {
color: #fff;
}
#menubar-div ul li > a:hover {
opacity: .4;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-ms-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
/* SLIDER DIV*/
#slider-div {
margin: auto;
width: 960px;
}
.maincontent {
width: 950px;
margin: auto;
}
.maincontent > div {
float: left;
margin-top: 20px;
}
.maincontent > div:first-child {
position: relative;
z-index: 1;
}
.maincontent > div > section {
margin: 20px;
opacity: 9;
position: relative;
height: auto;
overflow:auto;
padding-bottom:20px;
}
.maincontent > div > section p {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 12px;
text-transform: none;
line-height: 150%;
z-index: 5;
}
/* CONTACT US CONTAINER */
div > div > div > div > section {
}
/* Targeting the last p tag on the contact us */
div > div > div > div > section p:nth-child(4) {
margin-bottom:5px;
}
.maincontent > div > section > .about-div {
width: 403px;
text-align: justify;
overflow: auto;
}
.maincontent > div > section > .about-div p {
clear: both;
margin-bottom: 22px;
}
/*LEFT CONTENT*/
.maincontent > div:first-child {
background: #0e1400;
width: 697px;
border: 1px solid #316900;
opacity: .8;
color: #fff;
}
hgroup h1 {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 18px;
color: #fff900;
text-transform: uppercase;
font-weight: bold;
clear: both;
margin-bottom: 10px;
}
hgroup h3 {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 11px;
color: #fff900;
text-transform: uppercase;
margin-top: 5px;
font-weight: bold;
}
.formbox {
margin-top: 10px;
width: 100%;
}
.formtextbottom {
width: 435px;
margin: auto;
margin-top: 20px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 12px;
}
#sprycheckbox1 > label > a {
color: #F00;
margin-left: 5px;
}
.registerbtn {
width: 112px;
margin: auto;
padding: 20px;
}
.sendmessage {
width: 112px;
margin: auto;
padding: 20px;
float: right;
}
/*register button*/
.registerbtn > input, .sendmessage > input {
background: #F00;
border: none;
padding: 10px;
color: #FFF;
text-transform: uppercase;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 12px;
border: 1px solid #900;
background: #f50100;
/* Old browsers */
background: -moz-linear-gradient(top, #f50100 0%, #de0100 40%, #c50000 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f50100), color-stop(40%,#de0100), color-stop(100%,#c50000));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #f50100 0%,#de0100 40%,#c50000 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #f50100 0%,#de0100 40%,#c50000 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, #f50100 0%,#de0100 40%,#c50000 100%);
/* IE10+ */
background: linear-gradient(to bottom, #f50100 0%,#de0100 40%,#c50000 100%);
/* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f50100', endColorstr='#c50000',GradientType=0 );
/* IE6-9 */
-webkit-border-radius: 5px;
border-radius: 5px;
}
.registerbtn > input:hover, .sendmessage> input:hover {
background: #F00;
}
/* FORMS INPUT */
#sprytextfield2 > label, #sprypassword2 label, #sprytextfield3 > label, #sprytextfield4 > label, #spryconfirm1 > label, #sprytextfield5 > label, #sprytextfield6 > label, #sprytextarea1 > label {
float: left;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 11px;
margin-bottom: 5px;
}
#sprytextarea1 > textarea {
float: left;
clear: both;
padding: 2px;
width: 96%;
}
#sprytextfield2 > input, #sprypassword2 > input, #sprytextfield3 > input, #sprytextfield4 > input, #spryconfirm1 > input, #sprytextfield5 > input, #sprytextfield6 > input, #sprytextarea1 > input {
float: left;
clear: both;
padding: 3px;
width: 98%;
font-size: 11px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: #030;
}
/*SIDEBAR*/
.maincontent > div:last-child {
width: 230px;
float: right;
text-align: center;
margin-right:-6px;
}
/* ADVERTISEMENT BOX */
.maincontent > div:last-child > div {
margin: auto;
padding-bottom: 20px;
}
/*img sidebar*/
.maincontent > div:last-child > div img {
border: 1px solid #355a00;
-webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .6);
box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .6);
}
/*sidebar - LAST div*/
.maincontent > div:last-child > div:last-child {
background: #0d1a00;
opacity: .7;
width: 220px;
height: 118px;
border: 1px solid #316900;
}
.maincontent > div:last-child > div:last-child section {
opacity: 9;
color: #fff;
padding-top: 20px;
padding-left: 10px;
text-align: left;
font-size: 10px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
.maincontent > div:last-child > div:last-child section h1 {
color: #fff900;
text-transform: uppercase;
font-size: 14px;
font-weight: bold;
}
.maincontent > div:last-child > div:last-child section p {
margin-top: 5px;
margin-bottom: 5px;
text-transform: none;
font-size: 12px;
}
.fb {
background: url(../_images/fb.png) center no-repeat;
width: 226px;
height: 49px;
-webkit-border-radius: 5px;
border-radius: 5px;
margin-bottom: 15px;
}
.fb:hover, .twitter:hover, .insta:hover {
opacity: .5;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-ms-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
.twitter {
background: url(../_images/twitter.png) center no-repeat;
width: 226px;
height: 49px;
-webkit-border-radius: 5px;
border-radius: 5px;
margin-bottom: 15px;
}
.insta {
background: url(../_images/insta.png) center no-repeat;
width: 226px;
height: 49px;
-webkit-border-radius: 5px;
border-radius: 5px;
margin-bottom: 15px;
}
/* SPONSOR DIV*/
.sponsor {
width: 960px;
margin: auto;
margin-top: 20px;
}
.sponsor > p {
color: #FFF;
display: block;
width: 100%;
text-align: center;
margin-bottom: 10px;
font-size: 12px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
.sponsorbox {
background: #FFF;
}
#sponsorbox > ul {
margin: 0;
padding: 0;
text-align: center;
}
#sponsorbox > ul li {
list-style: none;
display: inline-block;
margin-right: 10px;
margin-top: 10px;
}
/* FOOTER LINKS */
.footer-links {
width: 960px;
margin: auto;
margin-top: 20px;
}
#footers > ul {
margin: 0;
padding: 0;
text-align: center;
}
#footers > ul li {
list-style: none;
display: inline-block;
margin-left: 15px;
margin-right: 15px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 11px;
color: #FFF;
margin-top: 5px;
text-transform: uppercase;
}
#footers > ul li > a {
color: #FFF;
}
#footers > ul li > a:hover {
color: #666;
-webkit-transition: color 1s;
-moz-transition: color 1s;
-ms-transition: color 1s;
-o-transition: color 1s;
transition: color 1s;
}
#footers > p {
width: 100%;
text-align: center;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 11px;
margin-top: 8px;
color: #FFF;
}
/***********************/
/*NAME: <NAME>.*/
/*WEBSITE: williamcarrasca.dotpxelz.com
/* Mobile: 09212632325
/***********************/
/* SUBPAGES - CSS*/
/* SPORSTSBOOK, CASINO PAGE CSS*/
.sportsbox-big1 {
width: 300px;
float: left;
margin-right: 20px;
text-align: center;
}
.sportsbox-big1 > img, .sportsbox-big2 > img {
margin: auto;
width: 100%;
}
.sportsbox-big1 > p, .sportsbox-big2 > p {
display: block;
text-align: justify;
height: 70px;
}
#playnow {
padding: 10px;
background: #F00;
clear: both;
-webkit-border-radius: 5px;
border-radius: 5px;
}
/* FOR PLAY NOW BUTTON HOVER*/
/* casino, sportsbook */
.sportsbox-big1 > a, .sportsbox-big2 > a, .casino-big1 > a {
color: #FFF;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-family: 13px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: bold;
}
/* FOR PLAY NOW BUTTON HOVER*/
/* casino, sportsbook */
.sportsbox-big1 > a:hover, .sportsbox-big2 > a:hover, .casino-big1 > a:hover {
color: #F90;
-webkit-transition: color .5s ease-in-out;
-moz-transition: color .5s ease-in-out;
-ms-transition: color .5s ease-in-out;
-o-transition: color .5s ease-in-out;
transition: color .5s ease-in-out;
}
.sportsbox-big2 {
width: 300px;
float: right;
margin-right: 20px;
text-align: center;
}
.casino-big1 {
width: 200px;
float: left;
margin-right: 17px;
text-align: center;
}
#casino-div > p {
font-size: 10px;
height: 70px;
display: block;
text-align: justify;
color: fff;
width: 100%;
}
.casino-big1 > img {
margin: auto;
width: 100%;
}
/*
.casino-big1 > p {
display:block;
text-align:justify;
height:70px;
color:#6CF;
font-size:1px;
font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
} */
#thumb-slot > ul {
margin: 0;
padding: 0;
}
#thumb-slot > ul li {
list-style: none;
float: left;
width: 190px;
height: auto;
margin-right: 20px;
margin-left: 5px;
margin-bottom: 20px;
margin-top: 10px;
text-align: center;
}
#thumb-slot > img {
margin-bottom: 10px;
}
#thumb-slot > ul li > p {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 14px;
color: #fff;
text-transform: uppercase;
display: block;
text-align: center;
width: 100%;
font-weight: bold;
}
.about-back {
background: url(../_images/about-back.png) no-repeat;
position: absolute;
top: 0;
right: 0;
width: 699px;
height: 488px;
z-index: 0;
}
.faq-back {
background: url(../_images/fab-back.png) no-repeat;
position: absolute;
bottom: 0;
right: 0;
width: 490px;
height: 348px;
}
#promotion-ads {
text-align: center;
padding: 5px;
}
/* INDEX CSS */
#leftbox {
background: none;
border: none;
width: 712px;
}
#leftbox > div {
float: left;
width: 229px;
position: relative;
height: 220px;
margin-bottom: 10px;
margin-left:-4px;
}
#leftbox > div > h2 {
position: absolute;
top: 0;
left: 0;
z-index: 2;
margin-top: 14px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 13px;
margin-left: 10px;
color: #f0ea00;
font-weight: bold;
}
/*PLAY ALL BUTTON CSS*/
#leftbox > div > a {
padding: 6px;
background: #F00;
position: absolute;
bottom: 10px;
right: 10px;
color: #FFF;
font-weight: bold;
border: 1px solid #900;
z-index: 1;
font-size: 12px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
-webkit-border-radius: 5px;
border-radius: 5px;
background: #ef0100;
/* Old browsers */
background: -moz-linear-gradient(top, #ef0100 0%, #e70100 40%, #c80000 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ef0100), color-stop(40%,#e70100), color-stop(100%,#c80000));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ef0100 0%,#e70100 40%,#c80000 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ef0100 0%,#e70100 40%,#c80000 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, #ef0100 0%,#e70100 40%,#c80000 100%);
/* IE10+ */
background: linear-gradient(to bottom, #ef0100 0%,#e70100 40%,#c80000 100%);
/* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef0100', endColorstr='#c80000',GradientType=0 );
/* IE6-9 */;
}
#leftbox > div > a:hover {
background: #F30;
}
.box1 {
background: url(../_images/boxfloat-1.jpg) no-repeat;
width: 230px;
height: 220px;
position: absolute;
top: 0;
left: 0;
}
/*BOX LINK COLOR AND HOVER -CLCIK HERE */
#leftbox > div > div > a {
color: #FFF;
opacity: 10;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 12px;
width: 185px;
margin: auto;
display: block;
margin-top: 10px;
}
#leftbox > div > div > a:hover {
color: #333;
}
.box2 {
background: url(../_images/boxfloat-2.jpg) no-repeat;
width: 230px;
height: 220px;
position: absolute;
top: 0;
left: 0;
}
.box3 {
background: url(../_images/boxfloat-fb-box.jpg) no-repeat;
width: 230px;
height: 220px;
position: absolute;
top: 0;
left: 0;
}
.box4 {
background: url(../_images/boxfloat-3.jpg) no-repeat;
width: 230px;
height: 220px;
position: absolute;
top: 0;
left: 0;
}
.testibox {
background: url(../_images/testimonial-box.png) no-repeat;
width: 230px;
height: 220px;
position: absolute;
top: 0;
left: 0;
}
#clickfb {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 70px;
}
#clickfb > a > img {
float: left;
margin-left: -10px;
}
/* BOXES FLOAT */
.box-div {
width: 100%;
position: absolute;
bottom: 0;
left: 0;
height: 57px;
z-index: 5;
background: #000;
opacity: .6;
}
/* 2nd box float*/
#leftbox > div:nth-child(2) {
margin-left: 11px;
margin-right: 11px;
}
/* 5th box float*/
#leftbox > div:nth-child(5) {
margin-left: 11px;
margin-right: 11px;
}
/* last box float*/
#leftbox > div:last-child {
background: #061700;
}
/* LAST FLOAT BOX CSS*/
#leftbox > div:last-child > ul {
padding-top: 40px;
width: 202px;
margin: auto;
}
#leftbox > div:last-child > ul li {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 12px;
list-style: none;
line-height: 150%;
}
#leftbox > div:last-child > ul li > span {
margin-left: 80px;
font-size: 10px;
}
.flashtesti {
position: absolute;
width: 229px;
height: 220px;
top: 0;
}
.left-div {
float: left;
width: 313px;
margin-right: 10px;
}
#sprytextarea1 {
width: 100%;
} | 0.293506 | 0.061933 |
@import url(fonts.css);
body {
margin: 0;
font-family: Helvetica Neue !important;
font-weight: 300;
font-size: 14px;
color: #454545;
background-color: #fff !important;
min-width: 320px;
}
a {
color: #454545;
text-decoration: none;
}
a:hover {
color: #4a8dff;
text-decoration: none;
}
.justify-content-center {
display: flex;
justify-content: space-around;
}
.anticon {
vertical-align: 3px !important;
}
.popup {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #fff;
}
.popup .popup-container {
width: 100%;
background-color: #fff;
}
.popup .popup-container .popup-header {
position: fixed;
top: 0;
left: 0;
line-height: 50px;
width: 100%;
height: 50px;
background-color: #5e23dc;
color: #fff;
}
.popup .popup-container .popup-header-left {
font-size: 16px;
color: #fff;
float: left;
text-align: center;
width: 40px;
line-height: 50px;
padding-left: 10px;
padding-top: 1px;
margin-right: 15px;
}
.popup .popup-container .popup-header-right {
width: 60px;
font-size: 14px;
padding: 0 10px;
line-height: 50px;
color: #fff;
text-align: center;
position: absolute;
top: 0;
right: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.popup .popup-container .popup-header-middle {
left: 40px;
position: absolute;
top: 0;
text-align: center;
line-height: 50px;
width: 75%;
height: 50px;
font-size: 16px;
overflow: hidden;
text-overflow: ellipsis;
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
}
.popup .popup-container .popup-body {
padding-bottom: 100px;
}
.am-list-item .am-input-control input,
.am-list-item .am-input-label {
font-size: 15px !important;
}
.ReactModal__Overlay {
z-index: 2;
overflow-y: auto;
}
.ReactModalPortal .ant-row-flex {
padding-bottom: 56px;
}
/* City */
.cc-selector .ant-col-6 {
width: auto !important;
}
.cc-selector input {
margin: 0;
padding: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.cc-selector .sale {
background-image: url('/images/icon/ic_sale.png');
}
.cc-selector .rent {
background-image: url('/images/icon/ic_rent.png');
}
.cc-selector .aparment {
background-image: url('/images/icon/icon_chungcu.svg');
}
.cc-selector .home {
background-image: url('/images/icon/icon_nharieng.svg');
}
.cc-selector .home-villa {
background-image: url('/images/icon/icon_bietthu.svg');
}
.cc-selector .home-street-side {
background-image: url('/images/icon/icon_nhamatpho.svg');
}
.cc-selector .land-scape {
background-image: url('/images/icon/icon_datthocu.svg');
}
.cc-selector .land-of-project {
background-image: url('/images/icon/icon_datduan.svg');
}
.cc-selector .land-farm {
background-image: url('/images/icon/icon_datnongnghiep.svg');
}
.cc-selector .land-resort {
background-image: url('/images/icon/icon_resort.svg');
}
.cc-selector .office {
background-image: url('/images/icon/icon_vanphong.svg');
}
.cc-selector .warehouses {
background-image: url('/images/icon/icon_nhaxuong.svg');
}
.cc-selector .kiosks {
background-image: url('/images/icon/icon_cuahang.svg');
}
.cc-selector .motel-room {
background-image: url('/images/icon/icon_phongtro.svg');
}
.cc-selector .hanoi {
background-image: url('/images/icon/hanoi.jpg');
}
.cc-selector .hochiminh {
background-image: url('/images/icon/hochiminh.png');
}
.cc-selector .danang {
background-image: url('/images/icon/danang.jpg');
}
.cc-selector input:active + .drinkcard-cc {
opacity: 0.9;
}
.cc-selector input:checked + .drinkcard-cc {
-webkit-filter: none;
-moz-filter: none;
filter: none;
}
.cc-selector .image-block {
display: inline-block;
}
.cc-selector .image-block .image-item {
width: 100px;
height: 100px;
margin: 10px 5px;
padding: 25px 15px;
border: 1px solid #dfdfdf;
border-radius: 3px;
}
.cc-selector .image-block .image-item:hover {
border: 1px solid #4a8dff;
}
.cc-selector .image-block .image-item.active {
border: 1px solid #4a8dff;
}
.cc-selector .image-block .image-big-item {
width: 140px;
height: 140px;
margin: 10px 5px;
padding: 15px 15px;
border: 1px solid #dfdfdf;
border-radius: 3px;
}
.cc-selector .image-block .image-big-item:hover {
border: 1px solid #4a8dff;
}
.cc-selector .image-block .drinkcard-cc {
cursor: pointer;
background-size: contain;
background-repeat: no-repeat;
display: inline-block;
width: 68px;
height: 68px;
background-size: 68px 68px !important;
background-position: center center;
-webkit-transition: all 100ms ease-in;
-moz-transition: all 100ms ease-in;
transition: all 100ms ease-in;
-webkit-filter: brightness(1.8) grayscale(1) opacity(0.7);
-moz-filter: brightness(1.8) grayscale(1) opacity(0.7);
filter: brightness(1.8) grayscale(1) opacity(0.7);
}
.cc-selector .image-block .drinkcard-cc:hover {
-webkit-filter: brightness(1.2) grayscale(0.5) opacity(0.9);
-moz-filter: brightness(1.2) grayscale(0.5) opacity(0.9);
filter: brightness(1.2) grayscale(0.5) opacity(0.9);
}
.cc-selector .image-block p {
text-align: center;
}
.cc-selector .image-block p:hover {
color: #4a8dff;
}
/* Checkbox */
.ant-checkbox-wrapper {
background-color: #5e23dc;
border-radius: 18px;
color: #fff;
line-height: 30px;
padding: 0 15px;
border: none;
position: relative;
}
.ant-checkbox-checked .ant-checkbox-inner {
display: block !important;
}
.ant-checkbox-inner {
display: none;
border: none !important;
background-color: #5e23dc !important;
top: 2px !important;
}
.ant-checkbox-wrapper:hover .ant-checkbox-inner,
.ant-checkbox:hover .ant-checkbox-inner,
.ant-checkbox-input:focus + .ant-checkbox-inner {
border: none !important;
}
/* District */
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
background: #5e23dc !important;
border-color: #5e23dc !important;
border-radius: 18px;
margin: 5px 5px 0 0;
}
.ant-radio-button-wrapper-checked,
.ant-radio-button-wrapper-checked:active,
.ant-radio-button-wrapper-checked:hover,
.ant-radio-button-wrapper:hover,
.ant-radio-button-wrapper-focused {
background: #5e23dc !important;
border-color: #5e23dc !important;
color: #fff;
}
.ant-radio-button-wrapper:first-child {
border-radius: 18px !important;
border-left: none !important;
}
.ant-radio-button-wrapper:last-child {
border-radius: 18px !important;
border-left: none !important;
}
.ant-radio-button-wrapper {
border-radius: 18px;
margin: 5px 5px 0 0;
border-left: none !important;
position: inherit !important;
}
.am-picker-col-item {
font-size: 15px !important;
}
.am-picker-col-item-selected {
font-size: 16px !important;
}
.am-list-content {
font-size: 14px !important;
}
.am-list-extra {
font-size: 14px !important;
}
.am-textarea-control textarea {
font-size: 14px !important;
}
.am-picker-popup-item {
font-size: 14px !important;
}
.am-list-item .am-input-control {
font-size: 14px !important;
}
/* Home page start */
.app-container .am-navbar {
height: 50px !important;
background-color: #5e23dc !important;
}
.app-container .am-navbar .logo {
width: 115px;
margin: 0 auto;
position: relative;
color: #fff;
font-size: 20px;
}
.app-container .am-card-body {
padding: 0;
}
.app-container .am-card-body .post-item {
padding-bottom: 15px;
padding-top: 15px;
border-top: 1px solid #fff;
border-bottom: 1px solid #f6f6f6;
box-sizing: border-box;
}
.app-container .am-card-body .post-item.active,
.app-container .am-card-body .post-item:hover {
border-top: 1px solid #3a65f9;
border-bottom: 1px solid #3a65f9;
background: #efefef;
box-sizing: border-box;
}
.app-container .am-card-body .item-display a {
color: #454545;
text-decoration: none;
}
.app-container .am-card-body .item-display a:hover {
color: #454545;
}
.app-container .am-card-body .property {
padding: 15px 0 0 10px;
}
.app-container .am-card-body .property span {
margin-right: 40px;
}
.app-container .am-card-body .item-display {
display: flex;
padding: 15px 0 0 10px;
}
.app-container .am-card-body .item-display img {
object-fit: cover; /* Do not scale the image */
object-position: center; /* Center the image within the element */
width: 110px;
height: 95px;
}
.app-container .am-card-body .item-display .item-info {
line-height: 1;
margin: 0 10px;
}
.app-container .am-card-body .item-display .item-info .like-button {
position: absolute;
top: 10px;
right: 10px;
color: #fe475e;
font-size: 24px;
}
.app-container .am-card-body .item-display .item-info .title {
margin: 0;
font-size: 16px;
color: #222;
}
.app-container .am-card-body .item-display .item-info .title h3 {
background: transparent;
padding-bottom: 0;
padding: 0;
max-height: 34px;
overflow: hidden;
margin: 0;
font-size: 16px;
color: #222;
}
.app-container .am-card-body .item-display .item-info .subtitle {
margin: 5px 0 0 0;
color: #aaa;
font-size: 12px;
min-height: 18px;
}
.app-container .am-card-body .item-display .item-info .type-sell {
width: 82px;
height: 24px;
line-height: 24px;
font-size: 10px;
padding-right: 10px;
color: #fff;
text-align: center;
background: url(/images/sell_bg.png) no-repeat;
}
.app-container .am-card-body .item-display .item-info .type-rent {
width: 82px;
height: 24px;
line-height: 24px;
font-size: 10px;
padding-right: 10px;
color: #fff;
text-align: center;
background: url(/images/rent_bg.png) no-repeat;
}
.app-container .am-card-body .item-display .item-info .price {
margin: 8px auto;
}
.app-container .am-card-body .item-display .item-info .price span {
font-size: 30px;
}
.app-container .am-card-body .item-display .item-info .post-date {
position: absolute;
top: 62px;
right: 10px;
text-align: right;
font-size: 12px;
color: #aaa;
display: block;
width: 80px;
float: left;
margin-top: 20px;
}
.app-container .am-card-body .item-display .item-info .post-date span {
font-size: 14px;
color: #3a65f9;
}
.app-container .am-card-body .location {
margin-top: 20px;
padding-top: 10px;
margin-left: -13px;
margin-right: -15px;
padding-left: 13px;
margin-top: 25px;
border-top: 1px solid #dfdfdf;
color: #888;
margin: 10px auto;
max-height: 50px;
overflow: hidden;
}
.compact {
background: url('/images/icon/ic_view_compact.png') no-repeat 0;
}
.bedroom {
background: url('/images/icon/ic_hotel.png') no-repeat 0;
}
.bathroom {
background: url('/images/icon/ic_bathtub.png') no-repeat 0;
}
.gara {
background: url('/images/icon/ic_directions_car.png') no-repeat 0;
}
.compass {
background: url('/images/icon/ic_compass.png') no-repeat 0;
}
.floor {
background: url('/images/icon/ic_offices-buildings.png') no-repeat 0;
}
.compact,
.bedroom,
.bathroom,
.gara,
.compass,
.floor {
padding-left: 25px;
height: 20px;
line-height: 20px;
}
/* Home page end */
/* Detail page start */
.app-container .breadcrumb {
border: 1px solid #dfdfdf;
background: #fff;
padding: 10px;
font-weight: 400;
}
.app-container .am-flexbox-item .product-info {
border: 1px solid #dfdfdf;
padding-left: 20px;
padding-right: 20px;
margin-left: 5px;
margin-right: 5px;
background-color: #fff;
}
.app-container .am-flexbox-item .product-info h1 {
margin-bottom: 0;
font-size: 18px;
font-weight: bold;
}
.app-container .am-flexbox-item .product-info .post-date {
display: contents;
margin: 0;
color: #888;
}
.app-container .am-flexbox-item .product-info .price {
font-size: 22px;
color: #3a65f9;
margin-top: 9px;
margin-bottom: 0;
}
.app-container .am-flexbox-item .product-info .property {
background: transparent;
}
.app-container .am-flexbox-item .product-info .property span {
font-weight: bold;
}
.app-container .am-flexbox-item .product-info .location {
border-top: 1px solid #f6f6f6;
position: relative;
padding-top: 17px;
margin: 20px 0;
}
.app-container .am-flexbox-item .product-info .location span.title {
position: absolute;
top: -12px;
display: block;
padding-right: 5px;
background: #fff;
color: #888;
}
.app-container .am-flexbox-item .product-info .button-group {
border: none;
text-align: inherit;
margin-top: 15px;
margin-bottom: 15px;
}
.app-container .am-flexbox-item .product-info a {
display: inline-block;
height: 30px;
line-height: 30px;
margin: 10px auto;
width: 123px;
}
.app-container .am-flexbox-item .product-info a img {
padding: 5px;
border-radius: 3px;
margin-right: 10px;
}
.app-container .am-flexbox-item .product-info a.like {
color: #fe475e;
}
.app-container .am-flexbox-item .product-info a.report {
text-align: right;
color: #ffa76e;
}
.app-container .am-flexbox-item .product-info a.like img {
border: 1px solid #fe475e;
}
.app-container .am-flexbox-item .product-info a.report img {
border: 1px solid #ffa76e;
}
.app-container .am-flexbox-item .slider .slider-list img {
object-fit: cover; /* Do not scale the image */
object-position: center; /* Center the image within the element */
height: 255px;
}
/* Contact box */
.app-container .am-flexbox-item .contact-box {
margin-left: 5px;
margin-right: 5px;
}
.app-container .am-flexbox-item .contact {
border: 1px solid #dfdfdf;
background-color: #fff;
padding: 22px 10px;
}
.app-container .am-flexbox-item .contact h3 {
margin-top: 0;
margin-bottom: 10px;
font-size: 16px;
font-weight: bold;
}
.app-container .am-flexbox-item .contact i {
width: 20px;
font-size: 16px;
text-align: center;
}
.app-container .am-flexbox-item .contact i.fa-mobile {
font-size: 22px;
}
.app-container .am-flexbox-item .contact i.fa-square {
font-size: 10px;
color: #aaa;
}
.app-container .am-flexbox-item .contact:hover {
background: #f4f7ff;
}
.app-container .am-flexbox-item .contact a {
color: #3a65f9;
border: 1px solid #3a65f9;
background: transparent;
}
.app-container .am-flexbox-item .contact a:hover {
color: #fff;
background: #3a65f9;
}
.app-container .am-flexbox-item .contact:hover a {
color: #fff;
background: #3a65f9;
}
.app-container .am-flexbox-item .call-chat {
margin: 15px 0 0 0;
padding: 15px 30px 15px 80px;
background: #6b92ff;
}
.app-container .am-flexbox-item .call-chat a {
display: inline-block;
height: 22px;
line-height: 22px;
padding-left: 33px;
color: #fff;
}
.app-container .am-flexbox-item .call-chat a:hover {
color: #fff;
}
.app-container .am-flexbox-item .call-chat a.call {
background: url('/images/icon/ic_call.png') no-repeat left;
border-right: 1px solid #fff;
width: 103px;
}
.app-container .am-flexbox-item .call-chat a.chat {
background: url('/images/icon/ic_chat.png') no-repeat left;
margin-left: 30px;
}
/* location search */
.app-container .am-flexbox-item .location-search {
margin-left: 5px;
margin-right: 5px;
background-color: #fff;
}
.app-container .am-flexbox-item .location-search .nearby div {
width: 100%;
padding-left: 5px;
padding-right: 5px;
display: inline-block;
}
.app-container .am-flexbox-item .location-search .nearby div .title {
color: #3a65f9;
font-weight: 400;
}
.app-container .am-flexbox-item .location-search .nearby div p span {
float: right;
font-weight: 300 !important;
color: #aaa;
}
.app-container .am-flexbox-item .location-search .nearby {
overflow-y: scroll;
height: 320px;
}
.app-container .contact-footer {
position: fixed;
bottom: 0;
text-align: center;
width: 100%;
padding: 10px 12px;
background: #fff;
border-top: 1px solid #e6e6e6;
}
.app-container .contact-footer-button {
display: inline-block;
height: 44px;
width: 100%;
line-height: 44px;
outline: 0;
padding: 0 15px;
text-align: center;
font-size: 16px;
border-radius: 2px;
border: 1px solid #1dd38f;
background: #1dd38f;
color: #fff;
-webkit-transition: 0.2s;
transition: 0.2s;
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.app-container .contact-footer .contact-parent {
position: absolute;
width: 100%;
height: 100%;
top: 0;
right: 0;
left: 0;
bottom: 0;
overflow: hidden;
z-index: 1;
}
/* Detail page end */
.app-container .flex-container {
background-color: #fff;
}
/* Footer page */
.dummy-footer {
margin-bottom: 56px;
}
.footer {
color: #fff;
}
.footer .info {
padding-top: 10px;
text-align: center;
background: linear-gradient(#63c9ff, #3a65f9);
color: #fff;
}
.footer .link-app {
margin-left: -10px;
}
.footer .social-icon a {
display: inline-block;
width: 40px;
height: 40px;
line-height: 40px;
font-size: 20px;
text-align: center;
border-radius: 21px;
border: 1px solid #fff;
margin-right: 10px;
color: #fff;
text-decoration: none;
}
.footer .copyright {
border-top: 1px solid #ffff54;
margin-top: 40px;
padding: 23px 0;
text-align: center;
font-size: 12px;
color: #9bb2ff;
}
.footer .copyright p {
margin: 0;
} | public/css/style.css | @import url(fonts.css);
body {
margin: 0;
font-family: Helvetica Neue !important;
font-weight: 300;
font-size: 14px;
color: #454545;
background-color: #fff !important;
min-width: 320px;
}
a {
color: #454545;
text-decoration: none;
}
a:hover {
color: #4a8dff;
text-decoration: none;
}
.justify-content-center {
display: flex;
justify-content: space-around;
}
.anticon {
vertical-align: 3px !important;
}
.popup {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #fff;
}
.popup .popup-container {
width: 100%;
background-color: #fff;
}
.popup .popup-container .popup-header {
position: fixed;
top: 0;
left: 0;
line-height: 50px;
width: 100%;
height: 50px;
background-color: #5e23dc;
color: #fff;
}
.popup .popup-container .popup-header-left {
font-size: 16px;
color: #fff;
float: left;
text-align: center;
width: 40px;
line-height: 50px;
padding-left: 10px;
padding-top: 1px;
margin-right: 15px;
}
.popup .popup-container .popup-header-right {
width: 60px;
font-size: 14px;
padding: 0 10px;
line-height: 50px;
color: #fff;
text-align: center;
position: absolute;
top: 0;
right: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.popup .popup-container .popup-header-middle {
left: 40px;
position: absolute;
top: 0;
text-align: center;
line-height: 50px;
width: 75%;
height: 50px;
font-size: 16px;
overflow: hidden;
text-overflow: ellipsis;
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
}
.popup .popup-container .popup-body {
padding-bottom: 100px;
}
.am-list-item .am-input-control input,
.am-list-item .am-input-label {
font-size: 15px !important;
}
.ReactModal__Overlay {
z-index: 2;
overflow-y: auto;
}
.ReactModalPortal .ant-row-flex {
padding-bottom: 56px;
}
/* City */
.cc-selector .ant-col-6 {
width: auto !important;
}
.cc-selector input {
margin: 0;
padding: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.cc-selector .sale {
background-image: url('/images/icon/ic_sale.png');
}
.cc-selector .rent {
background-image: url('/images/icon/ic_rent.png');
}
.cc-selector .aparment {
background-image: url('/images/icon/icon_chungcu.svg');
}
.cc-selector .home {
background-image: url('/images/icon/icon_nharieng.svg');
}
.cc-selector .home-villa {
background-image: url('/images/icon/icon_bietthu.svg');
}
.cc-selector .home-street-side {
background-image: url('/images/icon/icon_nhamatpho.svg');
}
.cc-selector .land-scape {
background-image: url('/images/icon/icon_datthocu.svg');
}
.cc-selector .land-of-project {
background-image: url('/images/icon/icon_datduan.svg');
}
.cc-selector .land-farm {
background-image: url('/images/icon/icon_datnongnghiep.svg');
}
.cc-selector .land-resort {
background-image: url('/images/icon/icon_resort.svg');
}
.cc-selector .office {
background-image: url('/images/icon/icon_vanphong.svg');
}
.cc-selector .warehouses {
background-image: url('/images/icon/icon_nhaxuong.svg');
}
.cc-selector .kiosks {
background-image: url('/images/icon/icon_cuahang.svg');
}
.cc-selector .motel-room {
background-image: url('/images/icon/icon_phongtro.svg');
}
.cc-selector .hanoi {
background-image: url('/images/icon/hanoi.jpg');
}
.cc-selector .hochiminh {
background-image: url('/images/icon/hochiminh.png');
}
.cc-selector .danang {
background-image: url('/images/icon/danang.jpg');
}
.cc-selector input:active + .drinkcard-cc {
opacity: 0.9;
}
.cc-selector input:checked + .drinkcard-cc {
-webkit-filter: none;
-moz-filter: none;
filter: none;
}
.cc-selector .image-block {
display: inline-block;
}
.cc-selector .image-block .image-item {
width: 100px;
height: 100px;
margin: 10px 5px;
padding: 25px 15px;
border: 1px solid #dfdfdf;
border-radius: 3px;
}
.cc-selector .image-block .image-item:hover {
border: 1px solid #4a8dff;
}
.cc-selector .image-block .image-item.active {
border: 1px solid #4a8dff;
}
.cc-selector .image-block .image-big-item {
width: 140px;
height: 140px;
margin: 10px 5px;
padding: 15px 15px;
border: 1px solid #dfdfdf;
border-radius: 3px;
}
.cc-selector .image-block .image-big-item:hover {
border: 1px solid #4a8dff;
}
.cc-selector .image-block .drinkcard-cc {
cursor: pointer;
background-size: contain;
background-repeat: no-repeat;
display: inline-block;
width: 68px;
height: 68px;
background-size: 68px 68px !important;
background-position: center center;
-webkit-transition: all 100ms ease-in;
-moz-transition: all 100ms ease-in;
transition: all 100ms ease-in;
-webkit-filter: brightness(1.8) grayscale(1) opacity(0.7);
-moz-filter: brightness(1.8) grayscale(1) opacity(0.7);
filter: brightness(1.8) grayscale(1) opacity(0.7);
}
.cc-selector .image-block .drinkcard-cc:hover {
-webkit-filter: brightness(1.2) grayscale(0.5) opacity(0.9);
-moz-filter: brightness(1.2) grayscale(0.5) opacity(0.9);
filter: brightness(1.2) grayscale(0.5) opacity(0.9);
}
.cc-selector .image-block p {
text-align: center;
}
.cc-selector .image-block p:hover {
color: #4a8dff;
}
/* Checkbox */
.ant-checkbox-wrapper {
background-color: #5e23dc;
border-radius: 18px;
color: #fff;
line-height: 30px;
padding: 0 15px;
border: none;
position: relative;
}
.ant-checkbox-checked .ant-checkbox-inner {
display: block !important;
}
.ant-checkbox-inner {
display: none;
border: none !important;
background-color: #5e23dc !important;
top: 2px !important;
}
.ant-checkbox-wrapper:hover .ant-checkbox-inner,
.ant-checkbox:hover .ant-checkbox-inner,
.ant-checkbox-input:focus + .ant-checkbox-inner {
border: none !important;
}
/* District */
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
background: #5e23dc !important;
border-color: #5e23dc !important;
border-radius: 18px;
margin: 5px 5px 0 0;
}
.ant-radio-button-wrapper-checked,
.ant-radio-button-wrapper-checked:active,
.ant-radio-button-wrapper-checked:hover,
.ant-radio-button-wrapper:hover,
.ant-radio-button-wrapper-focused {
background: #5e23dc !important;
border-color: #5e23dc !important;
color: #fff;
}
.ant-radio-button-wrapper:first-child {
border-radius: 18px !important;
border-left: none !important;
}
.ant-radio-button-wrapper:last-child {
border-radius: 18px !important;
border-left: none !important;
}
.ant-radio-button-wrapper {
border-radius: 18px;
margin: 5px 5px 0 0;
border-left: none !important;
position: inherit !important;
}
.am-picker-col-item {
font-size: 15px !important;
}
.am-picker-col-item-selected {
font-size: 16px !important;
}
.am-list-content {
font-size: 14px !important;
}
.am-list-extra {
font-size: 14px !important;
}
.am-textarea-control textarea {
font-size: 14px !important;
}
.am-picker-popup-item {
font-size: 14px !important;
}
.am-list-item .am-input-control {
font-size: 14px !important;
}
/* Home page start */
.app-container .am-navbar {
height: 50px !important;
background-color: #5e23dc !important;
}
.app-container .am-navbar .logo {
width: 115px;
margin: 0 auto;
position: relative;
color: #fff;
font-size: 20px;
}
.app-container .am-card-body {
padding: 0;
}
.app-container .am-card-body .post-item {
padding-bottom: 15px;
padding-top: 15px;
border-top: 1px solid #fff;
border-bottom: 1px solid #f6f6f6;
box-sizing: border-box;
}
.app-container .am-card-body .post-item.active,
.app-container .am-card-body .post-item:hover {
border-top: 1px solid #3a65f9;
border-bottom: 1px solid #3a65f9;
background: #efefef;
box-sizing: border-box;
}
.app-container .am-card-body .item-display a {
color: #454545;
text-decoration: none;
}
.app-container .am-card-body .item-display a:hover {
color: #454545;
}
.app-container .am-card-body .property {
padding: 15px 0 0 10px;
}
.app-container .am-card-body .property span {
margin-right: 40px;
}
.app-container .am-card-body .item-display {
display: flex;
padding: 15px 0 0 10px;
}
.app-container .am-card-body .item-display img {
object-fit: cover; /* Do not scale the image */
object-position: center; /* Center the image within the element */
width: 110px;
height: 95px;
}
.app-container .am-card-body .item-display .item-info {
line-height: 1;
margin: 0 10px;
}
.app-container .am-card-body .item-display .item-info .like-button {
position: absolute;
top: 10px;
right: 10px;
color: #fe475e;
font-size: 24px;
}
.app-container .am-card-body .item-display .item-info .title {
margin: 0;
font-size: 16px;
color: #222;
}
.app-container .am-card-body .item-display .item-info .title h3 {
background: transparent;
padding-bottom: 0;
padding: 0;
max-height: 34px;
overflow: hidden;
margin: 0;
font-size: 16px;
color: #222;
}
.app-container .am-card-body .item-display .item-info .subtitle {
margin: 5px 0 0 0;
color: #aaa;
font-size: 12px;
min-height: 18px;
}
.app-container .am-card-body .item-display .item-info .type-sell {
width: 82px;
height: 24px;
line-height: 24px;
font-size: 10px;
padding-right: 10px;
color: #fff;
text-align: center;
background: url(/images/sell_bg.png) no-repeat;
}
.app-container .am-card-body .item-display .item-info .type-rent {
width: 82px;
height: 24px;
line-height: 24px;
font-size: 10px;
padding-right: 10px;
color: #fff;
text-align: center;
background: url(/images/rent_bg.png) no-repeat;
}
.app-container .am-card-body .item-display .item-info .price {
margin: 8px auto;
}
.app-container .am-card-body .item-display .item-info .price span {
font-size: 30px;
}
.app-container .am-card-body .item-display .item-info .post-date {
position: absolute;
top: 62px;
right: 10px;
text-align: right;
font-size: 12px;
color: #aaa;
display: block;
width: 80px;
float: left;
margin-top: 20px;
}
.app-container .am-card-body .item-display .item-info .post-date span {
font-size: 14px;
color: #3a65f9;
}
.app-container .am-card-body .location {
margin-top: 20px;
padding-top: 10px;
margin-left: -13px;
margin-right: -15px;
padding-left: 13px;
margin-top: 25px;
border-top: 1px solid #dfdfdf;
color: #888;
margin: 10px auto;
max-height: 50px;
overflow: hidden;
}
.compact {
background: url('/images/icon/ic_view_compact.png') no-repeat 0;
}
.bedroom {
background: url('/images/icon/ic_hotel.png') no-repeat 0;
}
.bathroom {
background: url('/images/icon/ic_bathtub.png') no-repeat 0;
}
.gara {
background: url('/images/icon/ic_directions_car.png') no-repeat 0;
}
.compass {
background: url('/images/icon/ic_compass.png') no-repeat 0;
}
.floor {
background: url('/images/icon/ic_offices-buildings.png') no-repeat 0;
}
.compact,
.bedroom,
.bathroom,
.gara,
.compass,
.floor {
padding-left: 25px;
height: 20px;
line-height: 20px;
}
/* Home page end */
/* Detail page start */
.app-container .breadcrumb {
border: 1px solid #dfdfdf;
background: #fff;
padding: 10px;
font-weight: 400;
}
.app-container .am-flexbox-item .product-info {
border: 1px solid #dfdfdf;
padding-left: 20px;
padding-right: 20px;
margin-left: 5px;
margin-right: 5px;
background-color: #fff;
}
.app-container .am-flexbox-item .product-info h1 {
margin-bottom: 0;
font-size: 18px;
font-weight: bold;
}
.app-container .am-flexbox-item .product-info .post-date {
display: contents;
margin: 0;
color: #888;
}
.app-container .am-flexbox-item .product-info .price {
font-size: 22px;
color: #3a65f9;
margin-top: 9px;
margin-bottom: 0;
}
.app-container .am-flexbox-item .product-info .property {
background: transparent;
}
.app-container .am-flexbox-item .product-info .property span {
font-weight: bold;
}
.app-container .am-flexbox-item .product-info .location {
border-top: 1px solid #f6f6f6;
position: relative;
padding-top: 17px;
margin: 20px 0;
}
.app-container .am-flexbox-item .product-info .location span.title {
position: absolute;
top: -12px;
display: block;
padding-right: 5px;
background: #fff;
color: #888;
}
.app-container .am-flexbox-item .product-info .button-group {
border: none;
text-align: inherit;
margin-top: 15px;
margin-bottom: 15px;
}
.app-container .am-flexbox-item .product-info a {
display: inline-block;
height: 30px;
line-height: 30px;
margin: 10px auto;
width: 123px;
}
.app-container .am-flexbox-item .product-info a img {
padding: 5px;
border-radius: 3px;
margin-right: 10px;
}
.app-container .am-flexbox-item .product-info a.like {
color: #fe475e;
}
.app-container .am-flexbox-item .product-info a.report {
text-align: right;
color: #ffa76e;
}
.app-container .am-flexbox-item .product-info a.like img {
border: 1px solid #fe475e;
}
.app-container .am-flexbox-item .product-info a.report img {
border: 1px solid #ffa76e;
}
.app-container .am-flexbox-item .slider .slider-list img {
object-fit: cover; /* Do not scale the image */
object-position: center; /* Center the image within the element */
height: 255px;
}
/* Contact box */
.app-container .am-flexbox-item .contact-box {
margin-left: 5px;
margin-right: 5px;
}
.app-container .am-flexbox-item .contact {
border: 1px solid #dfdfdf;
background-color: #fff;
padding: 22px 10px;
}
.app-container .am-flexbox-item .contact h3 {
margin-top: 0;
margin-bottom: 10px;
font-size: 16px;
font-weight: bold;
}
.app-container .am-flexbox-item .contact i {
width: 20px;
font-size: 16px;
text-align: center;
}
.app-container .am-flexbox-item .contact i.fa-mobile {
font-size: 22px;
}
.app-container .am-flexbox-item .contact i.fa-square {
font-size: 10px;
color: #aaa;
}
.app-container .am-flexbox-item .contact:hover {
background: #f4f7ff;
}
.app-container .am-flexbox-item .contact a {
color: #3a65f9;
border: 1px solid #3a65f9;
background: transparent;
}
.app-container .am-flexbox-item .contact a:hover {
color: #fff;
background: #3a65f9;
}
.app-container .am-flexbox-item .contact:hover a {
color: #fff;
background: #3a65f9;
}
.app-container .am-flexbox-item .call-chat {
margin: 15px 0 0 0;
padding: 15px 30px 15px 80px;
background: #6b92ff;
}
.app-container .am-flexbox-item .call-chat a {
display: inline-block;
height: 22px;
line-height: 22px;
padding-left: 33px;
color: #fff;
}
.app-container .am-flexbox-item .call-chat a:hover {
color: #fff;
}
.app-container .am-flexbox-item .call-chat a.call {
background: url('/images/icon/ic_call.png') no-repeat left;
border-right: 1px solid #fff;
width: 103px;
}
.app-container .am-flexbox-item .call-chat a.chat {
background: url('/images/icon/ic_chat.png') no-repeat left;
margin-left: 30px;
}
/* location search */
.app-container .am-flexbox-item .location-search {
margin-left: 5px;
margin-right: 5px;
background-color: #fff;
}
.app-container .am-flexbox-item .location-search .nearby div {
width: 100%;
padding-left: 5px;
padding-right: 5px;
display: inline-block;
}
.app-container .am-flexbox-item .location-search .nearby div .title {
color: #3a65f9;
font-weight: 400;
}
.app-container .am-flexbox-item .location-search .nearby div p span {
float: right;
font-weight: 300 !important;
color: #aaa;
}
.app-container .am-flexbox-item .location-search .nearby {
overflow-y: scroll;
height: 320px;
}
.app-container .contact-footer {
position: fixed;
bottom: 0;
text-align: center;
width: 100%;
padding: 10px 12px;
background: #fff;
border-top: 1px solid #e6e6e6;
}
.app-container .contact-footer-button {
display: inline-block;
height: 44px;
width: 100%;
line-height: 44px;
outline: 0;
padding: 0 15px;
text-align: center;
font-size: 16px;
border-radius: 2px;
border: 1px solid #1dd38f;
background: #1dd38f;
color: #fff;
-webkit-transition: 0.2s;
transition: 0.2s;
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.app-container .contact-footer .contact-parent {
position: absolute;
width: 100%;
height: 100%;
top: 0;
right: 0;
left: 0;
bottom: 0;
overflow: hidden;
z-index: 1;
}
/* Detail page end */
.app-container .flex-container {
background-color: #fff;
}
/* Footer page */
.dummy-footer {
margin-bottom: 56px;
}
.footer {
color: #fff;
}
.footer .info {
padding-top: 10px;
text-align: center;
background: linear-gradient(#63c9ff, #3a65f9);
color: #fff;
}
.footer .link-app {
margin-left: -10px;
}
.footer .social-icon a {
display: inline-block;
width: 40px;
height: 40px;
line-height: 40px;
font-size: 20px;
text-align: center;
border-radius: 21px;
border: 1px solid #fff;
margin-right: 10px;
color: #fff;
text-decoration: none;
}
.footer .copyright {
border-top: 1px solid #ffff54;
margin-top: 40px;
padding: 23px 0;
text-align: center;
font-size: 12px;
color: #9bb2ff;
}
.footer .copyright p {
margin: 0;
} | 0.363986 | 0.048316 |
body {
padding-left:4rem;
padding-right:4rem;
background-color: #222;
color: #ccc;
font-family: sans-serif;
}
textarea {
background-color: #122738;
color: #fff;
border: solid 1px #ccc;
padding: 1em;
border-radius: .5rem;
width:100%;
}
main {
display: flex;
flex-direction: column;
max-width: 1024px;
margin-left: auto;
margin-right: auto;
margin-top: 4rem;
background: #fafafa;
color: #050505;
font-size: 1.2rem;
border-radius: .5rem;
padding: 0 4rem 2rem 4rem;
}
h1 img {
margin-right: .5rem;
vertical-align: -4px;
}
code {
background: #ededed;
padding: .25rem;
border-radius: .25rem;
}
footer {
text-align: center;
margin-top: 2rem;
}
footer a {
color: #ccc;
}
.day {
width: 150px;
height: 150px;
text-align: center;
position: relative;
border: solid 1px #222;
}
.date {
float: right;
position: absolute;
top: .25em;
right: .5em;
color: rgba(255, 255, 255, .5);
}
.day a {
display: flex;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
/* display: table-cell;*/
text-align: center;
vertical-align: middle;
justify-content: center;
align-items: center;
font-weight: bold;
}
.day.subdued a, .month.subdued a {
font-weight: normal;
opacity: .75;
}
.month {
padding: 1em .5em;
text-align: center;
position: relative;
border: solid 1px #222;
min-width: 150px;
min-height: 150px;
height: 150px;
}
.month a {
display: flex;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
/* display: table-cell;*/
text-align: center;
vertical-align: middle;
justify-content: center;
align-items: center;
}
.p-1 {
padding: 0 1em;
}
.top-10-col {
width: 100%;
flex: 0 0 50%;
max-width: 50%;
}
.top-10-col-33 {
width: 100%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.top-10-col-66 {
width: 100%;
flex: 0 0 66.666666%;
max-width: 66.666666%;
}
.top-10-container {
position: relative;
padding: 20px;
display: flex;
flex-direction: column;
flex: 50%;
overflow: hidden;
}
.top-10-container-33 {
position: relative;
padding: 20px;
display: flex;
flex-direction: column;
flex: 33%;
}
.top-10-header {
display: flex;
line-height: 40px;
cursor: pointer;
}
.top-10-title {
flex: 1 1;
font-weight: 600;
}
.top-10-heading {
font-weight: 600;
text-align: center;
width: 100px;
}
.top-10-body {
position: relative;
flex: 1 1;
overflow: hidden;
}
.top-10-row {
position: relative;
height: 30px;
line-height: 30px;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 5px;
overflow: hidden;
}
.top-10-label {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
flex: 2 1;
}
.top-10-value {
width: 50px;
text-align: right;
margin-right: 10px;
font-weight: 600;
}
.top-10-percent {
position: relative;
width: 50px;
color: #6e6e6e;
padding-left: 10px;
z-index: 1;
}
.top-10-bar {
position: absolute;
top: 0;
left: 0;
height: 30px;
opacity: 1;
background: #96b2b3;
z-index: -1;
}
.top-10 {
display: flex;
flex-flow: row wrap;
border-top: 1px solid #888;
} | style.css | body {
padding-left:4rem;
padding-right:4rem;
background-color: #222;
color: #ccc;
font-family: sans-serif;
}
textarea {
background-color: #122738;
color: #fff;
border: solid 1px #ccc;
padding: 1em;
border-radius: .5rem;
width:100%;
}
main {
display: flex;
flex-direction: column;
max-width: 1024px;
margin-left: auto;
margin-right: auto;
margin-top: 4rem;
background: #fafafa;
color: #050505;
font-size: 1.2rem;
border-radius: .5rem;
padding: 0 4rem 2rem 4rem;
}
h1 img {
margin-right: .5rem;
vertical-align: -4px;
}
code {
background: #ededed;
padding: .25rem;
border-radius: .25rem;
}
footer {
text-align: center;
margin-top: 2rem;
}
footer a {
color: #ccc;
}
.day {
width: 150px;
height: 150px;
text-align: center;
position: relative;
border: solid 1px #222;
}
.date {
float: right;
position: absolute;
top: .25em;
right: .5em;
color: rgba(255, 255, 255, .5);
}
.day a {
display: flex;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
/* display: table-cell;*/
text-align: center;
vertical-align: middle;
justify-content: center;
align-items: center;
font-weight: bold;
}
.day.subdued a, .month.subdued a {
font-weight: normal;
opacity: .75;
}
.month {
padding: 1em .5em;
text-align: center;
position: relative;
border: solid 1px #222;
min-width: 150px;
min-height: 150px;
height: 150px;
}
.month a {
display: flex;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
/* display: table-cell;*/
text-align: center;
vertical-align: middle;
justify-content: center;
align-items: center;
}
.p-1 {
padding: 0 1em;
}
.top-10-col {
width: 100%;
flex: 0 0 50%;
max-width: 50%;
}
.top-10-col-33 {
width: 100%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.top-10-col-66 {
width: 100%;
flex: 0 0 66.666666%;
max-width: 66.666666%;
}
.top-10-container {
position: relative;
padding: 20px;
display: flex;
flex-direction: column;
flex: 50%;
overflow: hidden;
}
.top-10-container-33 {
position: relative;
padding: 20px;
display: flex;
flex-direction: column;
flex: 33%;
}
.top-10-header {
display: flex;
line-height: 40px;
cursor: pointer;
}
.top-10-title {
flex: 1 1;
font-weight: 600;
}
.top-10-heading {
font-weight: 600;
text-align: center;
width: 100px;
}
.top-10-body {
position: relative;
flex: 1 1;
overflow: hidden;
}
.top-10-row {
position: relative;
height: 30px;
line-height: 30px;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 5px;
overflow: hidden;
}
.top-10-label {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
flex: 2 1;
}
.top-10-value {
width: 50px;
text-align: right;
margin-right: 10px;
font-weight: 600;
}
.top-10-percent {
position: relative;
width: 50px;
color: #6e6e6e;
padding-left: 10px;
z-index: 1;
}
.top-10-bar {
position: absolute;
top: 0;
left: 0;
height: 30px;
opacity: 1;
background: #96b2b3;
z-index: -1;
}
.top-10 {
display: flex;
flex-flow: row wrap;
border-top: 1px solid #888;
} | 0.563018 | 0.072276 |
html {
scroll-behavior: smooth;
}
body {
font-family: 'Roboto';
padding: 0;
margin: 0;
}
button {
padding: 20px;
background-color: #346548;
color: white;
border: none;
font-family: 'Roboto';
font-size: 16px;
transition: 0.3s;
}
/* Button Hover Css Transitions */
button:hover {
background-color: #668A4A;
padding: 25px;
}
img {
width: 300px;
}
/**************************************************** Header ********************************************************/
.navbar {
background-color: #29472B;
height: 50px;
padding: 20px;
position: fixed;
width: 100%;
}
.navbar ul {
list-style-type: none;
}
li {
float: left;
margin-left: 100px;
}
a {
color: #FEE893;
text-decoration: none;
}
/***************************************************** Landing page section *************************************************/
.landing-grid {
padding: 200px;
display: grid;
grid-template-columns: auto auto;
background-color: #29472B;
color: #FEE893;
}
/* Left content */
.landing-grid .left-box {
width: 400px;
}
.landing-grid .left-box h1 {
font-size: 40px;
}
/* Right Content SVG */
.landing-grid .right-box {
text-align: center;
}
.leaf {
width: 100%;
animation-name: leaf-grow;
animation-duration: 2s;
animation-iteration-count: infinite;
}
@keyframes leaf-grow {
from {width: 100%;}
to {width: 70%;}
}
/************************************************** About Section *********************************************** */
.about-grid {
padding: 200px;
display: grid;
grid-template-columns: auto auto;
background-color: #FEE893;
color: #29472B;
}
.about-grid .left-box {
padding: 20px;
}
.about-grid .left-box img {
width: 700px;
}
.about-grid .right-box {
padding: 20px;
color: black;
}
.about-grid .right-box p{
color: black;
}
/*********************************************** Charity section ***********************************************/
.header {
padding-left: 200px;
padding-top: 200px;
padding-bottom: 200px;
}
.charities-grid {
display: grid;
grid-template-columns: auto auto;
padding: 200px;
padding-top: 0px;
grid-column-gap: 50px;
grid-row-gap: 50px;
}
.charity-grid .left-box p {
color: black;
}
.charity-header {
grid-column-start: 1;
grid-column-end: 3;
}
.charities-grid img {
width: 100%;
}
/************************************************* Learn Section **************************************************/
.learn-grid {
padding: 200px 200px 200px 200px;
display: grid;
grid-template-columns: auto auto;
background-color: #29472B;
color: #FEE893;
}
.learn-grid .left-box {
padding: 20px;
}
.learn-grid .right-box {
padding: 20px;
}
.learn-grid .left-box li, p {
color: white;
line-height: 40px;
}
/************************************************** Slideshow ******************************************/
.slideshow-container {
padding: 200px;
padding-top: 0px;
}
.slideshow-container .slidehsow img {
width: 1000px;
}
.slideshow-image {
width: 100%;
}
/* Next & previous buttons */
.prev, .next {
cursor: pointer;
width: auto;
padding: 16px;
margin-top: -22px;
color: black;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
top: 5%;
position: relative;
}
/************************************************** Footer *********************************************/
.footer {
background-color: #FEE893;
}
.footer p {
color: black;
text-align: center;
}
/************************************************** Mobile Displays **********************************************/
/*****************************************************************************************************************/
@media only screen and (max-width: 700px) {
/********************************************** Landing page section ******************************************/
.landing-grid {
grid-template-columns: auto;
padding: 20px;
}
/* Landing Grid Left Content */
.landing-grid .left-box {
width: auto;
}
/* Landing grid Right Content */
.landing-grid .right-box {
text-align: center;
}
svg {
width: 300px;
}
/************************************************* About page section *********************************************** */
.about-grid {
grid-template-columns: auto;
padding: 20px;
}
.about-grid .left-box {
grid-column-start: 1;
grid-column-end: 3;
}
.about-grid .left-box img {
width: 100%;
}
/* Landing Grid Left Content */
/********************************************** Charities Grid **************************************************/
.header {
padding: 20px;
}
.charities-grid {
grid-template-columns: auto;
padding: 20px;
}
/*************************************************Learn grid ***************************************************/
.learn-grid {
grid-template-columns: auto;
padding: 20px;
}
/************************************************ Slideshow *************************************************** */
.slideshow-container {
padding: 20px;
}
}
/************************************************* Tablet screen ****************************************************/
@media only screen and (max-width:1000px) {
.about-grid {
grid-template-columns: auto;
padding: 20px;
}
svg {
width: 220px;
}
/************************************************ Slideshow *************************************************** */
.slideshow-container {
padding: 20px;
}
} | Website2/style.css |
html {
scroll-behavior: smooth;
}
body {
font-family: 'Roboto';
padding: 0;
margin: 0;
}
button {
padding: 20px;
background-color: #346548;
color: white;
border: none;
font-family: 'Roboto';
font-size: 16px;
transition: 0.3s;
}
/* Button Hover Css Transitions */
button:hover {
background-color: #668A4A;
padding: 25px;
}
img {
width: 300px;
}
/**************************************************** Header ********************************************************/
.navbar {
background-color: #29472B;
height: 50px;
padding: 20px;
position: fixed;
width: 100%;
}
.navbar ul {
list-style-type: none;
}
li {
float: left;
margin-left: 100px;
}
a {
color: #FEE893;
text-decoration: none;
}
/***************************************************** Landing page section *************************************************/
.landing-grid {
padding: 200px;
display: grid;
grid-template-columns: auto auto;
background-color: #29472B;
color: #FEE893;
}
/* Left content */
.landing-grid .left-box {
width: 400px;
}
.landing-grid .left-box h1 {
font-size: 40px;
}
/* Right Content SVG */
.landing-grid .right-box {
text-align: center;
}
.leaf {
width: 100%;
animation-name: leaf-grow;
animation-duration: 2s;
animation-iteration-count: infinite;
}
@keyframes leaf-grow {
from {width: 100%;}
to {width: 70%;}
}
/************************************************** About Section *********************************************** */
.about-grid {
padding: 200px;
display: grid;
grid-template-columns: auto auto;
background-color: #FEE893;
color: #29472B;
}
.about-grid .left-box {
padding: 20px;
}
.about-grid .left-box img {
width: 700px;
}
.about-grid .right-box {
padding: 20px;
color: black;
}
.about-grid .right-box p{
color: black;
}
/*********************************************** Charity section ***********************************************/
.header {
padding-left: 200px;
padding-top: 200px;
padding-bottom: 200px;
}
.charities-grid {
display: grid;
grid-template-columns: auto auto;
padding: 200px;
padding-top: 0px;
grid-column-gap: 50px;
grid-row-gap: 50px;
}
.charity-grid .left-box p {
color: black;
}
.charity-header {
grid-column-start: 1;
grid-column-end: 3;
}
.charities-grid img {
width: 100%;
}
/************************************************* Learn Section **************************************************/
.learn-grid {
padding: 200px 200px 200px 200px;
display: grid;
grid-template-columns: auto auto;
background-color: #29472B;
color: #FEE893;
}
.learn-grid .left-box {
padding: 20px;
}
.learn-grid .right-box {
padding: 20px;
}
.learn-grid .left-box li, p {
color: white;
line-height: 40px;
}
/************************************************** Slideshow ******************************************/
.slideshow-container {
padding: 200px;
padding-top: 0px;
}
.slideshow-container .slidehsow img {
width: 1000px;
}
.slideshow-image {
width: 100%;
}
/* Next & previous buttons */
.prev, .next {
cursor: pointer;
width: auto;
padding: 16px;
margin-top: -22px;
color: black;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
top: 5%;
position: relative;
}
/************************************************** Footer *********************************************/
.footer {
background-color: #FEE893;
}
.footer p {
color: black;
text-align: center;
}
/************************************************** Mobile Displays **********************************************/
/*****************************************************************************************************************/
@media only screen and (max-width: 700px) {
/********************************************** Landing page section ******************************************/
.landing-grid {
grid-template-columns: auto;
padding: 20px;
}
/* Landing Grid Left Content */
.landing-grid .left-box {
width: auto;
}
/* Landing grid Right Content */
.landing-grid .right-box {
text-align: center;
}
svg {
width: 300px;
}
/************************************************* About page section *********************************************** */
.about-grid {
grid-template-columns: auto;
padding: 20px;
}
.about-grid .left-box {
grid-column-start: 1;
grid-column-end: 3;
}
.about-grid .left-box img {
width: 100%;
}
/* Landing Grid Left Content */
/********************************************** Charities Grid **************************************************/
.header {
padding: 20px;
}
.charities-grid {
grid-template-columns: auto;
padding: 20px;
}
/*************************************************Learn grid ***************************************************/
.learn-grid {
grid-template-columns: auto;
padding: 20px;
}
/************************************************ Slideshow *************************************************** */
.slideshow-container {
padding: 20px;
}
}
/************************************************* Tablet screen ****************************************************/
@media only screen and (max-width:1000px) {
.about-grid {
grid-template-columns: auto;
padding: 20px;
}
svg {
width: 220px;
}
/************************************************ Slideshow *************************************************** */
.slideshow-container {
padding: 20px;
}
} | 0.431345 | 0.101189 |
table {
border-collapse: collapse; /* border-radius: 10px; */
box-shadow: 0px 0px 7px 1px #e0e0e0;
background: #fff;
}
td,
th {
color: #666;
border: 1px solid #e0e0e0;
word-break: break-all;
max-width: 100px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
cursor: pointer; /* border-bottom: 0.2px solid #e0e0e0; */
} /* tr:nth-child(even){background-color: #eee;}tr:nth-child(odd){background-color: #fff;}*/
.table-select {
height: 30px;
border: 1px solid #e0e0e0;
color: #666; /* border-radius: 4px; */
}
thead {
background: #f9f9f9;
}
select:focus {
outline: none;
}
.page-number-container {
cursor: pointer;
width: 30px;
height: 30px;
background: #fff;
border: 1px solid #fff; /* box-shadow: 0px 0px 10px 2px #c8e6c9; */
color: #66bb66; /* border-radius: 2px; */
}
.table-footer-selected-page-number {
background: #66bb66;
border: 1px solid #66bb66;
color: white; /* border-radius: 2px; */
cursor: pointer;
width: 30px;
height: 30px;
}
.page-number-moover {
background: #a5d6a7;
border: 1px solid #a5d6a7;
color: white; /* border-radius: 2px; */
cursor: pointer;
width: 30px;
height: 30px;
}
.page-number-moover:hover {
background: #66bb66;
border: 1px solid #66bb66;
color: white; /* border-radius: 2px; */
cursor: pointer;
width: 30px;
height: 30px;
}
button:focus {
outline: 0;
}
.page-number-container:hover {
background: #66bb6a;
border: 1px solid #66bb6a;
color: white; /* border-radius: 2px; */
}
.table-container {
padding: 10px; /* border: 1px solid black; */ /* border-radius: 4px; */
}
.table-main {
width: 100%;
border: 1px solid #e0e0e0; /* border-radius: 4px; */
}
.text-filter {
border: 0.5px solid #e0e0e0; /* border-radius: 4px; */
width: 95%;
padding: 0.5rem 0.5rem;
font-size: 1rem; /* box-shadow: 0px 0px 1px 1px #e0e0e0; */
}
.table-button {
display: flex;
margin-bottom: 10px;
}
.button-container {
background: #66bb6a;
border: 0.5px solid #66bb6a;
box-shadow: 0px 0px 10px 2px #c8e6c9;
color: white;
padding: 10px; /* border-radius: 4px; */
margin-right: 10px;
cursor: pointer;
}
.button-container:hover {
background: #388e3c;
border: 0.5px solid #388e3c;
box-shadow: 0px 0px 10px 2px #c8e6c9;
color: white;
}
.button {
display: flex;
width: 60%; /* padding: 4px; */
}
.search {
width: 40%;
text-align: right; /* padding: 4px; */
}
.search-box {
border: 0.5px solid #e0e0e0; /* border-radius: 4px; */
width: 50%;
padding: 0.5rem 0.5rem;
font-size: 1rem; /* box-shadow: 0px 0px 1px 1px #e0e0e0; */
}
input:focus {
/* box-shadow: 0px 0px 7px 2px #e0e0e0; */
border: 0.5px solid #c8e6c9;
outline: #c8e6c9; /* border-radius: 4px; */
}
input::placeholder {
color: #e0e0e0;
opacity: 1;
}
.search-container {
position: relative;
}
.search-icon {
position: absolute;
top: 5px;
right: 5px;
background: white;
}
.table-footer {
display: flex;
}
.table-Info {
/* padding-top: 10px; */
margin-top: 14px;
width: 35%;
color: #666;
}
.table-length {
padding-top: 10px;
width: 30%;
text-align: right;
}
.table-pagination {
padding-top: 10px;
width: 35%;
text-align: right;
}
.filter {
padding: 10px;
}
.table-body-cell {
padding: 10px;
}
.table-column-header {
text-align: left;
padding: 10px;
background: whitesmoke;
font-weight: 100;
}
.filter-header {
padding: 10px;
text-align: left;
} | table2.css | table {
border-collapse: collapse; /* border-radius: 10px; */
box-shadow: 0px 0px 7px 1px #e0e0e0;
background: #fff;
}
td,
th {
color: #666;
border: 1px solid #e0e0e0;
word-break: break-all;
max-width: 100px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
cursor: pointer; /* border-bottom: 0.2px solid #e0e0e0; */
} /* tr:nth-child(even){background-color: #eee;}tr:nth-child(odd){background-color: #fff;}*/
.table-select {
height: 30px;
border: 1px solid #e0e0e0;
color: #666; /* border-radius: 4px; */
}
thead {
background: #f9f9f9;
}
select:focus {
outline: none;
}
.page-number-container {
cursor: pointer;
width: 30px;
height: 30px;
background: #fff;
border: 1px solid #fff; /* box-shadow: 0px 0px 10px 2px #c8e6c9; */
color: #66bb66; /* border-radius: 2px; */
}
.table-footer-selected-page-number {
background: #66bb66;
border: 1px solid #66bb66;
color: white; /* border-radius: 2px; */
cursor: pointer;
width: 30px;
height: 30px;
}
.page-number-moover {
background: #a5d6a7;
border: 1px solid #a5d6a7;
color: white; /* border-radius: 2px; */
cursor: pointer;
width: 30px;
height: 30px;
}
.page-number-moover:hover {
background: #66bb66;
border: 1px solid #66bb66;
color: white; /* border-radius: 2px; */
cursor: pointer;
width: 30px;
height: 30px;
}
button:focus {
outline: 0;
}
.page-number-container:hover {
background: #66bb6a;
border: 1px solid #66bb6a;
color: white; /* border-radius: 2px; */
}
.table-container {
padding: 10px; /* border: 1px solid black; */ /* border-radius: 4px; */
}
.table-main {
width: 100%;
border: 1px solid #e0e0e0; /* border-radius: 4px; */
}
.text-filter {
border: 0.5px solid #e0e0e0; /* border-radius: 4px; */
width: 95%;
padding: 0.5rem 0.5rem;
font-size: 1rem; /* box-shadow: 0px 0px 1px 1px #e0e0e0; */
}
.table-button {
display: flex;
margin-bottom: 10px;
}
.button-container {
background: #66bb6a;
border: 0.5px solid #66bb6a;
box-shadow: 0px 0px 10px 2px #c8e6c9;
color: white;
padding: 10px; /* border-radius: 4px; */
margin-right: 10px;
cursor: pointer;
}
.button-container:hover {
background: #388e3c;
border: 0.5px solid #388e3c;
box-shadow: 0px 0px 10px 2px #c8e6c9;
color: white;
}
.button {
display: flex;
width: 60%; /* padding: 4px; */
}
.search {
width: 40%;
text-align: right; /* padding: 4px; */
}
.search-box {
border: 0.5px solid #e0e0e0; /* border-radius: 4px; */
width: 50%;
padding: 0.5rem 0.5rem;
font-size: 1rem; /* box-shadow: 0px 0px 1px 1px #e0e0e0; */
}
input:focus {
/* box-shadow: 0px 0px 7px 2px #e0e0e0; */
border: 0.5px solid #c8e6c9;
outline: #c8e6c9; /* border-radius: 4px; */
}
input::placeholder {
color: #e0e0e0;
opacity: 1;
}
.search-container {
position: relative;
}
.search-icon {
position: absolute;
top: 5px;
right: 5px;
background: white;
}
.table-footer {
display: flex;
}
.table-Info {
/* padding-top: 10px; */
margin-top: 14px;
width: 35%;
color: #666;
}
.table-length {
padding-top: 10px;
width: 30%;
text-align: right;
}
.table-pagination {
padding-top: 10px;
width: 35%;
text-align: right;
}
.filter {
padding: 10px;
}
.table-body-cell {
padding: 10px;
}
.table-column-header {
text-align: left;
padding: 10px;
background: whitesmoke;
font-weight: 100;
}
.filter-header {
padding: 10px;
text-align: left;
} | 0.314366 | 0.187281 |
body
{
background-color:#fcf9f9;
width: 100%;
}
.product-box
{
background-color: white;
}
.product-body
{
padding:15px;
}
iframe
{
width:100%;
padding: 0px !important;
}
.product-box
{
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
margin-top: 20px;
}
.product-image img
{
width: 100%;
}
.ytvid
{
outline-style: none;
}
.ytvid:focus > .product-box{
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
margin-top: 20px;
background-color: #db9999;
}
.badge-primary
{
background-color: #ff0000;
padding: 5px;
font-size: 15px;
}
.searchbar{
margin-bottom: auto;
margin-top: 10px;
height: 60px;
background-color: #353b48;
border-radius: 30px;
padding: 10px;
outline-style: none;
}
.search_input{
color: white;
border: 0;
outline: 0;
background: none;
width: 0;
caret-color:transparent;
line-height: 40px;
transition: width 0.4s linear;
}
.searchbar:hover > .search_input{
padding: 0 10px;
width: 450px;
caret-color:red;
transition: width 0.4s linear;
}
@media screen and (max-width: 620px)
{
.searchbar:hover > .search_input{
padding: 0 10px;
width: 300px;
caret-color:red;
transition: width 0.4s linear;
}
}
@media screen and (max-width: 500px)
{
.searchbar:hover > .search_input{
padding: 0 10px;
width: 250px;
caret-color:red;
transition: width 0.4s linear;
}
}
.searchbar:hover > .search_icon{
background: white;
color: #ff0000;
}
.searchbar:focus > .search_input{
padding: 0 10px;
width: 450px;
caret-color:red;
transition: width 0.4s linear;
}
@media screen and (max-width: 620px)
{
.searchbar:focus > .search_input{
padding: 0 10px;
width: 300px;
caret-color:red;
transition: width 0.4s linear;
}
}
@media screen and (max-width: 500px)
{
.searchbar:focus > .search_input{
padding: 0 10px;
width: 250px;
caret-color:red;
transition: width 0.4s linear;
}
}
.searchbar:focus > .search_icon{
background: white;
color: #ff0000;
}
.search_icon{
height: 40px;
width: 40px;
float: right;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
color:white;
}
h2 {
width: 100%;
text-align: center;
border-bottom: 1px solid #000;
line-height: 0.1em;
margin: 10px 0 20px;
margin-top: 30px;
border-color: #ff0000 !important;
border-width: 3px;
}
h2 span {
background:#fcf9f9;
padding:0 10px;
color: #ff0000;
font-family: 'Caveat Brush', cursive;
font-weight: bold;
}
#video-placeholder
{
margin-top: 10px !important;
max-width: 100% !important;
display: none;
} | assets/css/videopage.css | body
{
background-color:#fcf9f9;
width: 100%;
}
.product-box
{
background-color: white;
}
.product-body
{
padding:15px;
}
iframe
{
width:100%;
padding: 0px !important;
}
.product-box
{
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
margin-top: 20px;
}
.product-image img
{
width: 100%;
}
.ytvid
{
outline-style: none;
}
.ytvid:focus > .product-box{
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
margin-top: 20px;
background-color: #db9999;
}
.badge-primary
{
background-color: #ff0000;
padding: 5px;
font-size: 15px;
}
.searchbar{
margin-bottom: auto;
margin-top: 10px;
height: 60px;
background-color: #353b48;
border-radius: 30px;
padding: 10px;
outline-style: none;
}
.search_input{
color: white;
border: 0;
outline: 0;
background: none;
width: 0;
caret-color:transparent;
line-height: 40px;
transition: width 0.4s linear;
}
.searchbar:hover > .search_input{
padding: 0 10px;
width: 450px;
caret-color:red;
transition: width 0.4s linear;
}
@media screen and (max-width: 620px)
{
.searchbar:hover > .search_input{
padding: 0 10px;
width: 300px;
caret-color:red;
transition: width 0.4s linear;
}
}
@media screen and (max-width: 500px)
{
.searchbar:hover > .search_input{
padding: 0 10px;
width: 250px;
caret-color:red;
transition: width 0.4s linear;
}
}
.searchbar:hover > .search_icon{
background: white;
color: #ff0000;
}
.searchbar:focus > .search_input{
padding: 0 10px;
width: 450px;
caret-color:red;
transition: width 0.4s linear;
}
@media screen and (max-width: 620px)
{
.searchbar:focus > .search_input{
padding: 0 10px;
width: 300px;
caret-color:red;
transition: width 0.4s linear;
}
}
@media screen and (max-width: 500px)
{
.searchbar:focus > .search_input{
padding: 0 10px;
width: 250px;
caret-color:red;
transition: width 0.4s linear;
}
}
.searchbar:focus > .search_icon{
background: white;
color: #ff0000;
}
.search_icon{
height: 40px;
width: 40px;
float: right;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
color:white;
}
h2 {
width: 100%;
text-align: center;
border-bottom: 1px solid #000;
line-height: 0.1em;
margin: 10px 0 20px;
margin-top: 30px;
border-color: #ff0000 !important;
border-width: 3px;
}
h2 span {
background:#fcf9f9;
padding:0 10px;
color: #ff0000;
font-family: 'Caveat Brush', cursive;
font-weight: bold;
}
#video-placeholder
{
margin-top: 10px !important;
max-width: 100% !important;
display: none;
} | 0.351645 | 0.09314 |
<style id="react-native-modality"> :focus {
outline: none;
}
<style id="react-native-stylesheet-static">html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
margin: 0;
}
button::-moz-focus-inner, input::-moz-focus-inner {
border: 0;
padding: 0;
}
input::-webkit-inner-spin-button, input::-webkit-outer-spin-button, input::-webkit-search-cancel-button, input::-webkit-search-decoration, input::-webkit-search-results-button, input::-webkit-search-results-decoration {
display: none;
}
@keyframes rn-ActivityIndicator-animation {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rn-ProgressBar-animation {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
100% {
-webkit-transform: translateX(400%);
transform: translateX(400%);
}
}
.rn-105ug2t {
pointer-events: auto;
}
.rn-12vffkv {
pointer-events: none;
}
.rn-12vffkv * {
pointer-events: auto;
}
.rn-ah5dr5 {
pointer-events: auto;
}
.rn-ah5dr5 * {
pointer-events: none;
}
.rn-633pao {
pointer-events: none;
}
._3f2NsD-H {
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
border-width: 0;
border-style: solid;
box-sizing: border-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-basis: auto;
-ms-flex-preferred-size: auto;
flex-basis: auto;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
margin: 0;
padding: 0;
position: relative;
background-color: transparent;
color: inherit;
font: inherit;
text-align: inherit;
text-decoration: none;
list-style: none;
min-height: 0;
min-width: 0
}
._2NOhG28Y {
pointer-events: auto
}
._38Mnsfej {
pointer-events: none
}
._2IZt3pZd, ._38Mnsfej * {
pointer-events: auto
}
._2IZt3pZd *, ._3gi1QbKd {
pointer-events: none
}
._3hLw5mbC {
background-color: transparent;
background-position: 50%;
background-repeat: no-repeat;
background-size: cover;
z-index: 0
}
._16WH7Eyq {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
height: 100%;
opacity: 0;
width: 100%;
z-index: -1
}
.GdlOkVJi {
background-size: auto;
background-position: 50%
}
.DGI99L-V {
background-size: contain
}
._3kJ8i5k7 {
background-size: cover
}
._1HzwhWxd, ._3ZA3RjrY {
background-size: auto
}
._3ZA3RjrY {
background-repeat: repeat
}
._1JxX7SBZ {
background-size: 100% 100%
}
.Fe7ul3Lt {
color: inherit;
display: inline;
font: inherit;
margin: 0;
padding: 0;
text-decoration: none;
word-wrap: break-word;
background-color: transparent;
border: 0;
text-align: inherit
}
._1oabV8mG {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
._25OmqECI {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0)
}
body {
margin: 0
}
button::-moz-focus-inner, input::-moz-focus-inner {
border: 0;
padding: 0
}
input::-webkit-inner-spin-button, input::-webkit-outer-spin-button, input::-webkit-search-cancel-button, input::-webkit-search-decoration, input::-webkit-search-results-button, input::-webkit-search-results-decoration {
display: none
}
html {
font-size: 14px;
line-height: 1.3125
}
@media screen and (min-width:360px) {
html {
font-size: 15px
}
}
@media screen and (min-width:600px) {
html {
font-size: 16px
}
}
body, html {
height: 100%;
width: 100%
}
body {
overflow-y: scroll
}
._2DggF3sL {
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif;
font-size: 1rem;
font-weight: 400;
line-height: 1.3125;
word-wrap: break-word;
-webkit-font-feature-settings: "kern" 1;
font-feature-settings: "kern" 1;
-webkit-font-kerning: normal;
font-kerning: normal;
text-rendering: optimizeLegibility
}
._1_CPsQvg {
text-align: center
}
._1eb66saq {
text-align: left
}
._2RmBJfDJ {
text-align: right
}
.CuriousBlue {
color: #1b95e0
}
.hoki {
color: #657786
}
._2yWKxNkU {
color: #aab8c2
}
._1HXcreMa {
color: #14171a
}
.bbcbpIZw {
color: #f45d22
}
._1VpPBSCz {
color: #e0245e
}
._2izplv41 {
color: #fff
}
._3hHnQ0O3 {
font-style: normal
}
.R3E2kAdm {
font-style: italic
}
._3EJ3rVPs {
font-size: .85rem;
line-height: 1.3125rem
}
._3svo9AtH {
font-size: 1rem
}
._3SNKsHhe {
font-size: 1.25rem;
line-height: 1.5em
}
._1iopCSfF {
font-size: 1.5rem;
line-height: 1.5em
}
._1zOlKQVe {
font-size: 2rem
}
._3p3vGhar {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal
}
.eVRYuLIm {
text-transform: uppercase
}
.z6d79p5g {
font-weight: 400
}
._2v8hsvrz {
font-weight: 500
}
._3WJqTbOE {
font-weight: 700
}
._2UovUHQu {
border-bottom: 1px solid #ccd6dd;
color: #1da1f2;
margin-left: .65625rem;
margin-right: .65625rem;
padding-bottom: .65625em;
padding-top: .65625em;
text-align: center
}
._2Eu5RXp7 {
color: #1da1f2;
text-decoration: none
}
._2FU3NGw4 {
position: absolute;
z-index: 4
}
._1363jyKz {
bottom: 0;
left: 0;
pointer-events: none;
position: fixed;
right: 0
}
.thXr_Z-z {
top: 0
}
._1363jyKz * {
pointer-events: auto
}
.INAWBu0V {
background: transparent;
border: 0;
cursor: pointer;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin: 0;
padding: 0
}
._21q4BYp5 {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
width: 1.3125em
}
._1BnP8r0n, .INAWBu0V:disabled {
cursor: default;
opacity: .5
}
._1N2kPraK {
font-size: .85rem
}
._1ZylCsVi {
font-size: 1rem
}
._1qdB6Hhq {
font-size: 1.25rem
}
.Q1vpCyfl {
font-size: 1.5rem
}
._1rdA0MGU {
font-size: 2rem
}
._1eDw6Q15 {
color: #fff
}
.QwoCevfW {
color: #657786
}
._3PLvX7RF {
color: #1da1f2
}
._2ZZR2W6-, ._3xujJ3kq {
box-sizing: border-box;
margin: 0 auto;
width: 100%
}
._2ZZR2W6- {
padding: 0 .65625rem
}
@media screen and (min-width:360px) {
._2ZZR2W6-, ._3xujJ3kq {
max-width: 400px!important
}
}
@media screen and (min-width:600px) {
._2ZZR2W6-, ._3xujJ3kq {
max-width: 600px!important
}
}
._2WpbeAAU, ._24u5-vsm {
height: 3.5rem
}
._24u5-vsm {
background: #fff
}
._2WpbeAAU ._24u5-vsm {
position: fixed;
z-index: 2;
width: 100%
}
._1s7qNPIc {
box-shadow: 0 0 4px #657786
}
._1uDBaJEQ {
-ms-flex-align: center;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
height: 3.5rem;
-ms-flex-pack: center;
padding: .65625rem
}
._1aYYbHbU, ._1uDBaJEQ, .lbqYWGK5 {
-webkit-align-items: center;
align-items: center;
-webkit-justify-content: center;
justify-content: center
}
._1aYYbHbU, .lbqYWGK5 {
-webkit-align-self: stretch;
-ms-flex-item-align: stretch;
-ms-grid-row-align: stretch;
align-self: stretch;
-ms-flex-align: center;
-ms-flex-pack: center;
min-height: 1.96875rem;
min-width: 1.96875rem
}
._1aYYbHbU {
margin-right: 1.64063rem
}
.lbqYWGK5 {
margin-left: 1.64063rem
}
._2umMSKXY {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
height: 100%;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._1CUQ-c7O {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
.z-4GlXDn {
margin: auto;
position: relative;
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
._1M_XHtD2, .z-4GlXDn {
height: 26px;
width: 26px
}
._1M_XHtD2 {
border: 3px solid #1da1f2;
border-radius: 50%;
box-sizing: border-box
}
.lIgYF7yz {
background: #fff;
height: 28px;
width: 15px;
position: absolute;
top: -1px;
left: -1px;
border: 1px solid #fff;
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
._1R3D675z {
-webkit-transform-origin: 0 15px;
transform-origin: 0 15px;
left: 15px;
-webkit-animation: gxSrtLVC 1.8s infinite ease;
animation: gxSrtLVC 1.8s infinite ease
}
._1HX7mrat {
-webkit-transform-origin: 15px 14px;
transform-origin: 15px 14px;
-webkit-animation: gxSrtLVC 1.8s infinite ease .45s;
animation: gxSrtLVC 1.8s infinite ease .45s
}
@-webkit-keyframes gxSrtLVC {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
to {
-webkit-transform: rotate(1turn);
transform: rotate(1turn)
}
}
@keyframes gxSrtLVC {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
to {
-webkit-transform: rotate(1turn);
transform: rotate(1turn)
}
}
._2Vy6CsDc {
min-height: 200px;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._13Jmyrbo {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-align-self: stretch;
-ms-flex-item-align: stretch;
align-self: stretch;
color: #1da1f2;
cursor: pointer;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
min-width: 1.96875rem
}
._3PQpfi4b, ._13Jmyrbo {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._3PQpfi4b {
height: 1.96875rem!important
}
._20OB_GCy {
-webkit-transform: scaleX(1);
transform: scaleX(1)
}
._1wJSqtdt {
background-color: #1da1f2;
border-radius: 9999px;
box-shadow: 0 0 0 .14rem #fff;
font-size: .714rem;
height: 1rem;
left: 70%;
line-height: 1rem;
min-width: 1rem;
position: absolute;
text-align: center;
top: -7%
}
._14vAa_A5 {
padding: 0 .16rem
}
.OIdLZqfA {
background-color: #1da1f2;
border-radius: 9999px;
height: 6px;
position: absolute;
right: -8%;
top: 2%;
width: 6px
}
.kYeF62AF {
position: fixed;
left: 0;
right: 0
}
._3CtfVJyD, .kYeF62AF {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._3CtfVJyD {
background-color: #1da1f2;
border-radius: 9999px;
box-shadow: 0 1px 5px rgba(101, 119, 134, .25);
cursor: pointer;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
min-height: 1.96875rem;
position: relative;
padding: 0 1.3125rem;
top: 1em;
transition: -webkit-transform .15s;
transition: transform .15s;
transition: transform .15s, -webkit-transform .15s;
white-space: nowrap;
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
._1zhqPkiv {
-webkit-transform: translate3d(0, 4em, 0);
transform: translate3d(0, 4em, 0)
}
.MLZaeRvv {
box-sizing: border-box;
overflow: hidden;
position: relative;
width: 100%
}
._2HINa6Q3 {
display: block;
padding-bottom: 100%;
width: 100%
}
._2di_LxCm {
bottom: 0;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%
}
._1-I0zYji {
border-radius: .35rem
}
._11uA1Osd {
border-radius: 9999px
}
._1LUwi_k5 {
background-color: #e6ecf0;
border: 0;
display: block;
height: 100%;
width: 100%
}
._2HAljXql {
height: 6.5rem
}
._2HAljXql._2b_f3Qln {
height: 3.5rem
}
._1d_6kzhv {
background-color: #fff;
box-shadow: 0 0 4px #657786;
height: 6.5rem;
left: 0;
position: fixed;
right: 0;
-webkit-transform: translateZ(0);
transform: translateZ(0);
transition: -webkit-transform .2s;
transition: transform .2s;
transition: transform .2s, -webkit-transform .2s;
z-index: 2
}
._1d_6kzhv.KY97pNaR {
-webkit-transform: translate3d(0, -3rem, 0);
transform: translate3d(0, -3rem, 0)
}
._1d_6kzhv._2b_f3Qln {
height: 3.5rem;
-webkit-transform: none!important;
transform: none!important
}
._2BKHJ5ik {
margin-bottom: -.5rem
}
._2UsWoOwL {
height: 2rem;
width: 2rem;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._30Ca26Xj {
height: 1.75rem;
width: 1.75rem
}
._3cKAE7hX {
background: #fff;
height: 3.5rem;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._1IYhfl3z {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
color: #657786;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
flex-directon: column;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
position: relative
}
._1IYhfl3z:active {
background-color: #f5f8fa
}
._1IYhfl3z:active, ._1IYhfl3z:focus, ._1IYhfl3z:hover, .rqbvPe2P {
color: #1da1f2
}
.rqbvPe2P:after {
content: '';
background-color: #1da1f2;
height: 2px;
position: absolute;
bottom: 0;
left: 0;
right: 0
}
.HV8umBjO {
height: 2rem!important
}
.qb_4uBPl {
background-color: #e6ecf0;
height: .65625rem
}
._16EiU_q9 {
background-color: #f5f8fa;
height: 1.3125rem;
padding: 1.3125rem .32813rem .65625rem
}
._2Axq_bxo {
border-bottom: 1px solid #ccd6dd
}
._3RpX7SHV {
border-top: 1px solid #ccd6dd
}
._2qq9pBP0 {
bottom: 0;
left: 0;
min-width: 280px;
right: 0
}
._1pN3DqJf {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1
}
._3WsJiNAm {
overflow-y: auto;
-webkit-overflow-scrolling: touch
}
._17hNzFen {
background: #14171a;
bottom: 0;
left: 0;
opacity: .5;
position: fixed;
right: 0;
top: 0
}
.yY8bJa97 {
background: #f5f8fa;
border-radius: 4px 4px 0 0;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
overflow: hidden
}
._7JIqjFS4 {
margin-top: .65625rem
}
._1ulTL0zp {
background-color: #fff;
border-bottom: 1px solid #ccd6dd;
padding: .65625rem 1.3125rem
}
._1_FMKzvm:first-child, ._1ulTL0zp {
border-radius: 4px 4px 0 0
}
._1_FMKzvm:last-child {
border-bottom: none;
border-top: 1px solid #ccd6dd
}
._1_FMKzvm {
background: #fff;
border-bottom: 1px solid #ccd6dd;
cursor: pointer;
padding: .65625rem 1.3125rem;
width: 100%
}
.MmJh82_T {
-webkit-appearance: none;
background: transparent;
border: 1px solid currentcolor;
border-radius: .35rem;
box-sizing: border-box;
color: inherit;
cursor: pointer;
font: inherit;
font-weight: 700;
padding: 0 1em;
position: relative;
text-align: center;
text-decoration: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
white-space: normal
}
.MmJh82_T::-moz-focus-inner {
border: 0;
padding: 0
}
.MmJh82_T:active, .MmJh82_T:focus, .MmJh82_T:hover {
text-decoration: none
}
.KMM_MJg9, .MmJh82_T:disabled {
cursor: default;
opacity: .5
}
.SpbPGaHr, .SpbPGaHr:active, .SpbPGaHr:focus, .SpbPGaHr:hover {
background: #1da1f2
}
.lSM1Fder, .lSM1Fder:active, .lSM1Fder:focus, .lSM1Fder:hover {
background: transparent
}
._38myriBx, ._38myriBx:active, ._38myriBx:focus, ._38myriBx:hover {
background: #fff
}
._1jKmSm8o, ._1jKmSm8o:active, ._1jKmSm8o:focus, ._1jKmSm8o:hover {
background: #e0245e
}
.csu844KC {
background: rgba(0, 0, 0, .77)
}
._3vxCixKF {
border-color: transparent
}
._1RX2dJ0n {
border-color: #fff
}
.Lldqn39J {
border-color: #1da1f2
}
._1rWAH3is {
border-color: #aab8c2
}
._3JB5mkK- {
border-color: #e0245e
}
._2d_dX71I, ._2d_dX71I:active, ._2d_dX71I:focus, ._2d_dX71I:hover {
color: #1da1f2
}
._3facEWb0, ._3facEWb0:active, ._3facEWb0:focus, ._3facEWb0:hover {
color: #657786
}
._3IPsWQr4, ._3IPsWQr4:active, ._3IPsWQr4:focus, ._3IPsWQr4:hover {
color: #aab8c2
}
._1Sil1ymr, ._1Sil1ymr:active, ._1Sil1ymr:focus, ._1Sil1ymr:hover {
color: #e0245e
}
._2Rz0TobF, ._2Rz0TobF:active, ._2Rz0TobF:focus, ._2Rz0TobF:hover {
color: #fff
}
._1Q0H3XlO {
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start
}
._3iSgwI3T {
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end
}
._1pzUva68 {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
.KLHa89oH {
font-size: .85rem;
min-height: 1.44375rem;
min-width: 2.32444rem
}
._2m0B23vv {
font-size: .85rem
}
._1q1J19kr, ._2m0B23vv {
min-height: 1.96875rem;
min-width: 1.58484rem
}
._1q1J19kr, ._2sG5BpJO {
font-size: 1rem
}
._2sG5BpJO {
min-height: 2.625rem;
min-width: 2.11313rem
}
._1qpWiIkN {
font-size: 1.25rem;
min-height: 3.28125rem;
min-width: 2.64141rem
}
.zyelCsjG {
font-size: 1.5rem;
min-height: 3.9375rem;
min-width: 3.16969rem
}
._1u_kMV_N {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%
}
._27U3TKFt {
margin-right: .5em
}
._132qLRA5 {
height: 1.5em!important
}
._2gk5cYPy {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
.tFQ8Lw6x {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
margin-left: 1.3125rem
}
.tFQ8Lw6x:first-child {
margin-left: 0
}
._1Ut7kbTV {
margin-bottom: -.5rem;
z-index: 3
}
._3jbaTU38 {
margin-left: 1.64063rem
}
._3PXHBz0r {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._3Gyh2OCT {
height: 100%;
width: 100%
}
._7kIt4uMb {
z-index: 3
}
._1qOuwlPT {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-overflow-scrolling: touch
}
._11vB6FUA {
padding-bottom: 6.5625rem
}
.AsHUxm12 {
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
text-align: center;
color: #657786
}
._1H09v8iJ, .AsHUxm12, .JVHS24YY {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._1H09v8iJ, .JVHS24YY {
-webkit-flex-basis: 0;
-ms-flex-preferred-size: 0;
flex-basis: 0
}
._1H09v8iJ {
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
padding-bottom: 1.3125rem
}
.JVHS24YY {
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
._1xiHK6bU {
margin-top: 1.3125rem;
margin-left: auto;
margin-right: auto;
width: 50%
}
._2deqfZz4 {
padding-top: 1.3125rem;
padding-left: .65625rem;
padding-right: .65625rem
}
._3jarMu92, ._-UhQDiIZ {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.uiKiaI6u {
margin: 0 auto;
padding: 2.625rem .65625rem
}
._1rIfe8O1, ._1xQ_FTt0 {
display: block;
margin-top: 2.625rem
}
._1xQ_FTt0 {
height: auto;
width: 100%
}
._22Vuva1f {
border-radius: 9999px;
box-shadow: 1px 1px 4px rgba(101, 119, 134, .75);
height: 3.9375rem;
padding: 0;
width: 3.9375rem
}
._3TEZxQV {
pointer-events: none
}
._3TEZxQV * {
pointer-events: auto
}
._1zg5t6Rt {
-webkit-align-self: flex-end;
-ms-flex-item-align: end;
align-self: flex-end;
bottom: 1.3125rem;
position: relative;
right: 1.3125rem
}
@media screen and (min-width:600px) {
._3TEZxQV {
position: absolute;
bottom: 0;
left: 0;
right: 0
}
}
@media screen and (min-width:800px) {
._3TEZxQV {
margin: 0 auto;
max-width: 600px
}
._1zg5t6Rt {
right: -5.25rem
}
}
.vIvziVt6 {
margin: 0 auto
}
.vIvziVt6, .vIvziVt6:active, .vIvziVt6:focus, .vIvziVt6:hover {
text-decoration: none
}
._6cNmXVo9 {
padding: 1.96875rem .65625rem
}
._2MxjoKYD, ._3H6BkVeP {
margin-bottom: .98438rem
}
._29ahSMvH {
overflow: hidden;
position: relative
}
.X5oJMMFX {
-webkit-align-items: center!important;
-ms-flex-align: center!important;
align-items: center!important;
border-bottom: 1px solid #ccd6dd!important;
height: 4rem;
-webkit-justify-content: center!important;
-ms-flex-pack: center!important;
justify-content: center!important;
left: 0;
position: absolute!important;
right: 0;
top: -4rem
}
.XcKNFpKX {
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
._1o3yOmE7 {
height: 2rem!important;
color: #aab8c2;
transition: -webkit-transform .25s;
transition: transform .25s;
transition: transform .25s, -webkit-transform .25s
}
._2O25Tgh7 {
-webkit-transform: rotate(180deg);
transform: rotate(180deg)
}
._1piKw1fp {
border: 0!important;
clip: rect(1px, 1px, 1px, 1px)!important;
height: 1px!important;
overflow: hidden!important;
padding: 0!important;
position: absolute!important;
width: 1px!important
}
._3Ho4vlTO {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._2rKrV7oY {
-webkit-flex-basis: 0;
-ms-flex-preferred-size: 0;
flex-basis: 0;
min-width: 0
}
.iT9BSTFM {
margin: 0 -.32812rem
}
.iT9BSTFM>._2rKrV7oY {
margin: 0 .32813rem
}
._2lr8ULQi {
color: #1b95e0;
padding: .33em .65625rem;
text-decoration: none
}
._1_wyDZFq {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
margin-top: .214em;
position: relative
}
._2YKCg-Xu {
cursor: pointer;
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._3Tyy4NMa {
content: '';
display: block;
border-radius: .107rem;
background-color: #ccd6dd;
height: .214rem;
width: .214rem
}
._1mqD5up9 {
top: -.214rem;
position: relative
}
._1LkzKk0L {
top: .214rem;
position: relative
}
._2Ra7qbVH {
text-decoration: none
}
._3Ko_vUO1 {
border: 1px solid #ccd6dd;
border-radius: .35rem;
overflow: hidden
}
._1TGObHVA {
padding: .65625rem
}
._3W4ortNo {
background-color: #ccd6dd;
min-height: 1px;
min-width: 1px
}
._1tz5UsjB {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._1Yv_hemU {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._1tz5UsjB ._1Yv_hemU {
-webkit-flex-grow: 0;
-ms-flex-positive: 0;
flex-grow: 0;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
width: 100px;
min-height: 100px;
max-width: 50%
}
._1tz5UsjB .i1xnVt31 {
width: 200px
}
._3MwaeZtb {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._3kGl_FG7 {
display: block;
color: inherit
}
._3kGl_FG7, ._3kGl_FG7:active, ._3kGl_FG7:focus, ._3kGl_FG7:hover {
text-decoration: none
}
._1Yv_hemU {
background-position: 50%;
background-repeat: no-repeat;
background-size: cover;
border: 0 solid #ccd6dd;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
overflow: hidden;
width: 100%;
border-bottom-width: 1px
}
._1tz5UsjB ._1Yv_hemU {
border-width: 0 1px 0 0
}
._2Kcfs2k2 {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
height: 100%;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
width: 100%
}
._3jHbeRdo {
color: #fff;
height: 2.625rem!important
}
._2p1VUcTE {
-webkit-box-orient: vertical;
display: -webkit-box;
-webkit-line-clamp: 3;
max-height: 3.9375rem;
overflow: hidden;
text-overflow: ellipsis
}
._1Ac7T4Ic {
background: #1da1f2
}
.l1LQkslV {
color: #fff;
height: 2.3625rem
}
._1McXRnub {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
._2bJrW5Lp {
-webkit-align-self: flex-start;
-ms-flex-item-align: start;
align-self: flex-start;
margin-left: .32813rem;
margin-top: .65625rem
}
._2QqVqU51 {
margin-top: .91875rem;
width: 80%
}
._34VPA839 {
margin-top: 1.3125rem;
width: 80%
}
._2mUJbpye {
margin-bottom: 1.3125rem;
margin-top: .65625rem;
width: 80%
}
._26awRJ_4 {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
height: 1.96875rem;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
margin-top: .65625rem
}
.gumw2pf_ {
margin-top: 0
}
._2WiB3NTn {
background-color: #ccd6dd;
border-top-left-radius: .25rem;
border-bottom-left-radius: .25rem;
position: absolute;
top: 0;
left: 0;
bottom: 0
}
._3MmFrGEx {
border-radius: .25rem
}
._2BN0ngFk {
background-color: #8dcaf0
}
._1CzfDQg1, ._2X8S_anx {
padding: 0 .65625rem
}
._3eXB6Z0F {
margin-top: .98438rem
}
._3mR8S4Lw {
background-color: #f5f8fa;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
height: 100%
}
._100hF2Bn {
color: #657786;
height: 2em!important
}
._14tNuayr {
width: 100%;
height: 100%;
overflow: hidden
}
.e_25eOJ- {
width: calc(100% + 4px * 2);
height: calc(100% + 4px * 2);
margin-left: -4px;
margin-top: -4px;
-webkit-filter: blur(4px);
filter: blur(4px)
}
._1hilJCR7 {
background: rgba(20, 23, 26, .3);
border-radius: .2rem;
color: #fff;
height: 1.3125rem;
padding: 0 .2rem;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._2LMi2fkt {
line-height: 1
}
._3a7D0mHi {
height: .2rem;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
width: 100%
}
._122Gwphf {
background-color: #1da1f2;
transition: width .5s ease;
height: 100%
}
._3VydarBU {
visibility: hidden
}
._2SYTouUX {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-name: _3liYz3ek;
animation-name: _3liYz3ek;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite
}
@-webkit-keyframes _3liYz3ek {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%)
}
to {
-webkit-transform: translateX(400%);
transform: translateX(400%)
}
}
@keyframes _3liYz3ek {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%)
}
to {
-webkit-transform: translateX(400%);
transform: translateX(400%)
}
}
._2Uo0Ixfb {
background-clip: content-box
}
._2YXT0EI- {
display: block;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
height: 100%;
overflow: hidden;
position: relative
}
._1YeWCqJF {
bottom: 0;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 0
}
._9UlPYlC1 {
height: 100%;
width: auto
}
._1ninV_xt {
height: auto;
max-width: 100%
}
._2nCaYfdb {
position: absolute;
left: .65625rem;
bottom: .65625rem
}
._2RciEnWn {
position: absolute;
top: 0
}
._1RMlx5ox {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
._2S3ig93j {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._1hxjs3qD {
color: #657786;
text-decoration: none
}
.HuWBBjuj {
position: relative
}
._1oZgjM8R {
overflow: hidden;
position: absolute
}
._239jkPpy {
display: block;
min-height: 100%;
min-width: 100%
}
._1iBJZjOi ._1gof_FDb {
bottom: 0;
left: 0;
margin-right: .75%;
right: 50%;
top: 0
}
._1iBJZjOi ._3Ffoa8fQ {
bottom: 0;
left: 50%;
margin-left: .75%;
right: 0;
top: 0
}
._339rwvdr ._1gof_FDb {
bottom: 0;
left: 0;
margin-right: .75%;
right: 50%;
top: 0
}
._339rwvdr ._3Ffoa8fQ {
bottom: 50%;
left: 50%;
margin: 0 0 .75% .75%;
right: 0;
top: 0
}
._339rwvdr .kFMtm6J6 {
bottom: 0;
left: 50%;
margin: .75% 0 0 .75%;
right: 0;
top: 50%
}
._348VccCl ._1gof_FDb {
bottom: 50%;
left: 0;
margin: 0 .75% .75% 0;
right: 50%;
top: 0
}
._348VccCl ._3Ffoa8fQ {
bottom: 50%;
left: 50%;
margin: 0 0 .75% .75%;
right: 0;
top: 0
}
._348VccCl .kFMtm6J6 {
bottom: 0;
left: 0;
margin: .75% .75% 0 0;
right: 50%;
top: 50%
}
._348VccCl ._3Wyj8j6V {
bottom: 0;
left: 50%;
margin: .75% 0 0 .75%;
right: 0;
top: 50%
}
.QLRzw7gB {
position: absolute;
left: .65625rem;
bottom: .65625rem
}
._1iDRfwUk ._2cAUIb4X, ._2ig-P_HT {
display: none
}
._1iDRfwUk ._2ig-P_HT {
display: block
}
._2cAUIb4X {
background: #f5f8fa;
border-radius: .35rem;
padding: .65625rem
}
._21O8mtNB {
margin-bottom: 1.3125rem
}
._3mBXdN5U {
margin-top: .65625rem
}
.ttWiH_Hj {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background: rgba(20, 23, 26, .3);
border-radius: .2rem;
color: #fff;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
height: 1.3125rem;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
padding: 0 .2rem
}
._1d8T2U75 {
display: block;
height: 100%!important
}
._3wMe7_pL {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
height: 100%
}
._1_aozdMe {
height: 100%
}
._1_aozdMe, ._1onAEkd7, ._17xHsokI {
display: -webkit-flex;
display: -ms-flexbox;
display: flex
}
._1onAEkd7, ._17xHsokI {
-webkit-align-self: center;
-ms-flex-item-align: center;
align-self: center;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
width: 100%
}
._3bEbQ02C, ._3IqdI_Qe, ._3qq-rcds {
bottom: 0;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 0
}
._3IqdI_Qe {
height: 3.28125rem;
text-align: center;
width: 3.28125rem
}
._3bEbQ02C {
color: #fff;
height: 100%!important
}
.sEQESZ5E {
position: absolute;
left: .65625rem;
bottom: .65625rem;
z-index: 1;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._3HY7MYaw {
margin-left: .32813rem
}
._2_y4lIt4 {
overflow: hidden
}
._3i5pgeTp {
border-radius: .35rem;
-webkit-mask-image: url(data:image/png;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICRAEAOw==);
-webkit-mask-repeat: repeat
}
._2zP-4IzO {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
height: 100%;
width: 100%
}
._3QPrjhX2 {
border: 1px solid #ccd6dd
}
._3DbX3IrZ {
margin-top: .65625rem
}
._2cGZSF5M {
color: #657786;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
.YunaQoc2 {
margin-right: .5rem
}
._3YA-Cq4Z .YunaQoc2 {
color: #794bc4
}
.RQ5ECnGZ {
background: transparent;
border: 0;
color: inherit;
cursor: pointer;
font: inherit;
margin: 0;
min-height: 1.3125rem;
overflow: visible;
padding: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
white-space: nowrap;
z-index: 1
}
.RQ5ECnGZ::-moz-focus-inner {
border: 0;
padding: 0
}
.RQ5ECnGZ:focus {
color: #657786
}
._3RgSUeCt {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-flex;
display: -ms-flexbox;
display: flex
}
._1H8Mn9AA {
font-size: 1rem;
margin-left: .25em
}
._1XlwgLUj {
cursor: default
}
.VwBgoFij {
opacity: .5!important
}
._3eLE3b-Z, ._3eLE3b-Z:focus {
color: #17bf63!important
}
._1-625P6y, ._1-625P6y:focus {
color: #e0245e!important
}
._25KUHcft {
-webkit-animation-duration: .25s;
animation-duration: .25s;
-webkit-animation-name: _3rcU2Fqg;
animation-name: _3rcU2Fqg
}
@-webkit-keyframes _3rcU2Fqg {
50% {
-webkit-transform: scale(1.2);
transform: scale(1.2)
}
to {
-webkit-transform: scale(1);
transform: scale(1)
}
}
@keyframes _3rcU2Fqg {
50% {
-webkit-transform: scale(1.2);
transform: scale(1.2)
}
to {
-webkit-transform: scale(1);
transform: scale(1)
}
}
._1flRTtS9 {
background: #1da1f2
}
._2ZrX5aIs {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
._1PN4xHiN {
color: #fff;
height: 2.3625rem;
margin-top: .98438rem
}
._1zl8O28i {
margin-top: .98438rem;
width: 80%
}
._3znFqm1A {
margin-top: 1.3125rem;
width: 80%
}
._3CsTyeXZ {
margin-bottom: 1.3125rem;
margin-top: .65625rem;
width: 80%
}
.W1P7mM7E {
background: #fff;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
overflow: scroll
}
.z1XhD5qM {
color: #1da1f2;
font-size: 2.625rem;
margin-bottom: .65625rem
}
._3rla4mik {
margin-top: 1.3125rem
}
._8qpj9SE2 {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
padding: 1.3125rem
}
._2GapWPU- {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._1pLPnSqG {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1
}
._1kbd4wwA {
font-size: 11.8125rem;
margin-bottom: 2.625rem
}
._22omdtNH {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between
}
.WE9i2xyR {
margin-bottom: 2.625rem;
text-align: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._2sa10IYy {
margin-top: .65625rem
}
._399IgoPQ {
color: #1b95e0;
text-decoration: none
}
._1G2ZWpuC {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
margin-bottom: 1.96875rem
}
._3phgsCTW {
margin-top: .65625rem;
max-width: 66%
}
@media screen and (orientation:landscape) {
._2GapWPU- {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._1pLPnSqG {
-webkit-flex: 3;
-ms-flex: 3;
flex: 3
}
._1kbd4wwA {
-webkit-flex: 2;
-ms-flex: 2;
flex: 2;
margin-bottom: 0!important;
padding-right: 1.3125rem
}
.WE9i2xyR {
margin-bottom: 1.3125rem!important
}
}
._1t1yuVSm {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
color: #657786
}
._3_8jWiwP {
margin-top: .65625rem
}
._1m0pnxeJ {
display: block;
margin-right: 10%
}
._1DYQBMu5 {
color: #657786;
font-size: 1.5rem;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
height: 100%;
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around
}
._2_HDVPf1 {
min-height: 1.875rem;
padding: 0 .85rem
}
._2T1PGT5b {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.pPz6Nw2f {
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end
}
._1rTfukg4[dir=rtl] {
direction: rtl!important;
text-align: right!important;
unicode-bidi: embed
}
._1rTfukg4[dir=ltr] {
direction: ltr!important;
text-align: left!important;
unicode-bidi: embed
}
._3fUfiuOH {
color: #1b95e0;
text-decoration: none
}
._3fUfiuOH:hover {
text-decoration: underline
}
._3drRoZ4e {
height: 1.25em;
width: 1.25em;
padding: 0 .05em 0 .1em;
vertical-align: -.2em
}
._10YWDZsG {
white-space: pre-wrap
}
._2FOOGcIW {
background-color: #f5f8fa;
border: 1px solid #ccd6dd;
border-radius: .35rem;
padding: .65625rem
}
._3fg7OHdb, ._3fg7OHdb:active, ._3fg7OHdb:focus, ._3fg7OHdb:hover {
text-decoration: none!important
}
._3fg7OHdb:active ._32vFsOSj, ._3fg7OHdb:focus ._32vFsOSj, ._3fg7OHdb:hover ._32vFsOSj {
text-decoration: underline!important
}
._2phkKrpG {
color: #1da1f2
}
._3VMzp5Wb {
color: #14171a
}
._1qH81-Dt {
color: #fff
}
._1CYp9AGf {
color: #ffad1f
}
._3sxxtSz0 {
margin-left: .15em
}
._1hmq-Mkf {
direction: ltr;
display: inline-block
}
._3ZSf8YGw {
color: #14171a
}
._1ZjriS3R ._1Zp5zVT9:before {
content: "\A";
white-space: pre
}
.OrIwTY0I {
display: inline-block;
vertical-align: middle
}
._1s55Hm9E {
background: #f5f8fa;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
padding: 1.3125rem 1.3125rem 1.96875rem
}
.NHyb0QlS {
margin-top: .65625rem
}
._15-p_S0N {
border: 1px solid #ccd6dd;
border-radius: .35rem;
overflow: hidden;
padding: .65625rem
}
._3ZNFEy6P, ._3ZNFEy6P:active, ._3ZNFEy6P:focus, ._3ZNFEy6P:hover {
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
color: #14171a;
text-decoration: none
}
._1_ul-C3p, .SRE-zGTT {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._3dWAvYHc {
text-align: left
}
.RSjllAdl {
margin-bottom: .32813rem
}
._26y0fKu4 {
-webkit-box-orient: vertical;
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis
}
._1MIUpbH2 {
-webkit-line-clamp: 3;
max-height: 3.9375rem
}
._1-usjywv {
-webkit-line-clamp: 5;
max-height: 6.5625rem
}
.ZE-08e-I {
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
min-width: 32px
}
._1v21e2jc {
width: 1rem
}
._1axCTvm5 {
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._2aJN3Fhd {
color: #657786
}
._2rCJuDDz, ._2rCJuDDz:active, ._2rCJuDDz:focus, ._2rCJuDDz:hover {
text-decoration: none;
color: #657786
}
.I8DvYjmD {
padding: 1rem .65625rem
}
._3z_7jQwn {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
min-width: 32px
}
._2gpfhfZk {
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._2HNcekSk {
cursor: pointer
}
._1EBB7xRj {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between
}
._24RufZsF {
display: block;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
-webkit-flex-grow: 0;
-ms-flex-positive: 0;
flex-grow: 0;
width: 100%
}
._1RntlttV {
width: 100%
}
._3Tj35upK {
margin-top: -.15rem
}
._2l-FpbrQ {
color: #657786;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
margin-left: .65625rem;
-webkit-order: 1;
-ms-flex-order: 1;
order: 1;
text-decoration: none;
white-space: nowrap
}
._2wLtAyps, ._3hdqTVua>*, ._32ievKrg {
margin-top: .65625rem
}
._2jzglInP {
margin-bottom: .65625rem
}
._3oi_-R-p:not(._1aDfKh_Z) {
padding-top: 0
}
._3oi_-R-p:not(._3pF-YX2p) {
padding-bottom: 0
}
._3oi_-R-p:not(._1aDfKh_Z) ._2gpfhfZk {
padding-top: 1rem
}
._3oi_-R-p ._3z_7jQwn {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
._3oi_-R-p:not(._3pF-YX2p) .cseLQqHs {
padding-bottom: 1rem
}
._1wmatVSh {
background-color: #ccd6dd;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
min-height: 0;
width: .214rem;
margin: .33rem 0 0
}
._1wmatVSh, ._3hdq2gDP {
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1
}
._3hdq2gDP {
-webkit-flex-grow: 0;
-ms-flex-positive: 0;
flex-grow: 0;
height: .65rem;
margin: 0 0 .33rem
}
.m3TEVpji {
text-decoration: none
}
.post {
border-bottom: 1px solid #ccd6dd
}
._1JAhXCLh {
display: block;
padding: 1.96875rem .65625rem
}
._21MpU1bz {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
padding: 1.3125rem .65625rem
}
._2LvVGFOB, ._21MpU1bz {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._3Bfr7c1g {
margin-top: 2.625rem;
text-align: center
}
._3znIYuzB {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
max-width: 600px;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._3Wno1tUR {
margin-bottom: 1.3125rem;
text-align: center
}
._3oxnid3o {
height: 2.625em
}
._1DsrZiRN {
background: #1da1f2;
left: 0;
position: fixed;
right: 0;
-webkit-transform: translateZ(0);
transform: translateZ(0);
z-index: 3
}
._1NK8zqe3 {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
height: 2.625em;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between
}
._3oPX729z {
width: 100%
}
._1zfFhzkv {
margin-left: .32813rem
}
._2Ad_SH-7 {
background: #657786;
box-shadow: 0 0 4px #657786;
padding: .65625rem
}
._3odm4w_c {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
._3mJyBgvB {
color: #fff
}
._3mJyBgvB a {
color: #fff;
text-decoration: underline
}
._3WJLfdFO {
margin-top: .65625rem
}
.wkAm4VaG {
background: none
}
.xSovBQvt {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background: #657786;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
padding: .65625rem
}
@media screen and (min-width:600px) {
.wkAm4VaG {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
max-width: 66%
}
.xSovBQvt {
border-radius: .35rem;
margin: 0 0 1.5rem 1.5rem
}
}
._2FMWcOsR {
line-height: 1.5;
padding-left: .65625rem;
word-break: break-word
}
._1ub7PuZ8 {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._1OCbLGNe {
margin: 0 .5rem 0 1.5rem
}
._1IXYtxTP {
margin-left: .65625rem;
padding: 0 calc(.65625rem - .3em) 0 .65625rem
}
<script async="" src="https://www.google-analytics.com/analytics.js"></script><script type="text/javascript" charset="utf-8" async="" src="https://ma-0.twimg.com/twitter-assets/responsive-web/web/ltr/loader.TimelineGap.136a7f5b3b9e2dd4.js"></script>.sb2CZNAu {
cursor: pointer;
min-height: 3.28125rem;
width: 100%
}
._1rcEZqzL, .sb2CZNAu {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._1rcEZqzL {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1
}
._2Z8UymHS {
-webkit-appearance: none!important;
-moz-appearance: none!important;
appearance: none!important;
box-sizing: border-box!important;
resize: none;
width: 100%
}
._2Z8UymHS::-webkit-search-cancel-button, ._2Z8UymHS::-webkit-search-decoration, ._2Z8UymHS::-webkit-search-results-button, ._2Z8UymHS::-webkit-search-results-decoration {
-webkit-appearance: none
}
._3QrkgTB_ {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
overflow: hidden
}
._1UMVIL7K {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 100%
}
._1YGC8xFq {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: transparent;
border-radius: 0;
border-width: 0;
box-sizing: border-box;
color: inherit;
font: inherit;
padding: .65625rem
}
._1YGC8xFq::-webkit-input-placeholder {
color: #657786
}
._1YGC8xFq::-moz-placeholder {
color: #657786
}
._1YGC8xFq:-ms-input-placeholder {
color: #657786
}
._1YGC8xFq::placeholder {
color: #657786
}
._1YGC8xFq:focus {
border-color: #1da1f2;
outline: none
}
.ZWoo0crt {
color: #657786
}
._1VqMahaT {
border-radius: .35rem
}
.ktZMpANQ {
background-color: #f5f8fa
}
._2RmultvD {
background-color: transparent
}
._1xYlWRCR {
border: 1px solid #ccd6dd
}
._3sD6VXHs {
padding: .65625rem 0
}
.z5tG5NPG {
border-bottom: 1px solid #657786;
margin-bottom: 1px
}
.z5tG5NPG:focus {
border-bottom-width: 2px;
margin-bottom: 0
}
._3He-dj3N {
border-color: #e0245e
}
._1GOlhMeJ {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
outline: 0!important;
padding-right: .65625rem
}
._2cTOmE3M {
color: #657786;
outline: 0!important;
padding-left: .65625rem
}
._3h5HZCEF {
color: #657786;
font-size: 1.25rem
}
._6GFDcZVp {
border-style: solid;
border-width: 1px;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
overflow: hidden
}
._3d0yTZiF {
color: #657786;
outline: 0!important;
padding-left: .65625rem;
padding-right: 0
}
._2r6GEaUv {
border-color: #ccd6dd
}
._2_kQAH5N {
border-color: transparent
}
._3wge5KgG {
font-size: .85rem
}
._12dGDLa0 {
font-size: 1rem
}
.eT9XwRpZ {
font-size: 1.25rem
}
._1jSq2LDZ {
font-size: 1.5rem
}
._2_mr2JOH {
font-size: 2rem
}
.ySzjB11J {
border-radius: 100%;
position: relative
}
._2HIHq0ZS, .ySzjB11J {
height: 100%;
overflow: hidden;
width: 100%
}
._2HIHq0ZS {
box-sizing: border-box
}
.WjLCcn33 {
border-radius: 0
}
._1m8NTer0 .WjLCcn33, ._22Xjfdi_ {
height: 100%;
width: 100%
}
.oIUn-h8B .WjLCcn33 {
height: 100%;
margin-left: -50%;
position: static
}
.oIUn-h8B ._2HIHq0ZS {
height: 100%;
position: absolute;
width: 50%
}
.oIUn-h8B ._2HIHq0ZS:first-child {
border-left: 1px solid transparent;
right: 0
}
.oIUn-h8B ._2HIHq0ZS:last-child {
left: 0
}
.O0B25GOu ._2HIHq0ZS {
height: 50%;
position: absolute;
width: 50%
}
.O0B25GOu ._2HIHq0ZS:first-child {
border-left: 1px solid transparent;
height: 100%;
right: 0
}
.O0B25GOu .WjLCcn33 {
height: 100%;
width: 100%
}
.O0B25GOu ._2HIHq0ZS:first-child .WjLCcn33 {
margin-left: -50%;
position: static;
width: auto
}
.O0B25GOu ._2HIHq0ZS:last-child {
border-top: 1px solid transparent;
bottom: 0;
left: 0
}
._1VqaD9tQ {
cursor: pointer;
padding: 1rem .65625rem;
width: 100%
}
._3SVruyIi {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.xXqPzvjv {
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._2ng3xQkW {
height: 1.3125rem!important;
position: absolute!important;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto
}
._1bfHukDN {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
background-color: #fff;
border: 2px solid #657786;
color: #fff;
border-radius: 4px;
height: 1.3125rem;
width: 1.3125rem
}
._1aj72xLB {
background-color: #1da1f2;
border-color: #1da1f2
}
._28vL7nLU {
border-color: #ccd6dd
}
._1aj72xLB._28vL7nLU {
background-color: #aab8c2;
border-color: #aab8c2
}
._2hZVeNho {
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
width: 100%
}
._2BmQHSLQ {
background: #1da1f2;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1
}
._10SARgbU {
-webkit-align-self: flex-start;
-ms-flex-item-align: start;
align-self: flex-start;
padding: 1.3125rem
}
._3cgLUF-T {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 1.3125rem
}
.OktXQMFw {
color: #fff;
font-size: 2rem
}
.NLiEFxGv {
color: #fff;
text-align: center
}
._2pbIour_ {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 2.625rem;
width: 100%
}
._1XUD19lC {
max-width: 66%
}
._2MPnhm61 {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._2GdlhGrV {
margin-left: .65625rem;
}
._1m5BUHLW {
padding: 1rem .65625rem
}
._2nTZvTlq {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._15cBJylQ {
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._1o0_Y1o3 {
display: block;
width: 100%
}
._38SGgQB9 {
margin: .5rem 0 0
}
._38SGgQB9, .e0n7TGp7 {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
.e0n7TGp7 {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
margin-top: -.15rem
}
._1v4w6vBA {
margin-top: .15rem
}
.MjQcIpWy {
font-size: 1.3125rem;
color: #1da1f2
}
.zia5IX1N {
max-width: 100%
}
._38Q4mhaQ {
margin-left: .65625rem
}
._19_JAKIn {
margin: 0;
padding: .3rem 0 0
}
._3n-fEygc {
background-color: transparent;
border: 0;
padding: 0;
cursor: pointer;
text-align: left
}
._2u4tEvtd {
display: block;
padding-bottom: .65625rem;
padding-top: .65625rem
}
._2nTuKRPA {
opacity: .5;
cursor: default
}
._1Oxj60h6 {
border-bottom: 1px solid #ccd6dd;
height: .65625rem
}
._1MWHskJm {
background-color: #fff;
left: 0;
position: absolute;
right: 0;
top: 0;
z-index: 4
}
._1orrbVhw {
border-bottom: 1px solid #ccd6dd;
padding-top: 1.3125rem
}
._18AMk79- {
position: relative
}
.Cp7LTh-U {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._3bmwmFe2, .Cp7LTh-U {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._1T8d2aAn {
height: 3.28125rem
}
._1Nta5Z3A {
padding-bottom: 0;
padding-top: 0
}
._3ncb5y8I {
color: #aab8c2
}
.m1EY7z-U {
border-radius: .35rem;
margin-top: 2px;
margin-left: calc(-1 * (.65625rem + 1px))
}
._3kZZY5Ku {
color: #1da1f2;
font-size: 1.25rem
}
.BVd8eVsI {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._1p-fx3CV {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
min-height: 0
}
._-2iIeUsw {
height: 2rem;
margin-right: .65625rem;
width: 2rem
}
._3DltykjD {
padding: 1rem .65625rem;
cursor: pointer
}
.Ldgs22Bf {
padding: 0
}
._3bf6snf7 {
background-color: #e8f6ff
}
._1p3yMRG3 {
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._31Q8EAc9 {
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._3eubIcj7 {
color: #657786
}
.PaLKewJ6 {
color: #e0245e
}
._1xsIYIFr {
color: #1da1f2
}
._201bML4Q {
color: #17bf63
}
._3KXvkjuP {
color: #14171a;
font-weight: 700;
text-decoration: none
}
._3KXvkjuP:active, ._3KXvkjuP:focus, ._3KXvkjuP:hover, ._28vfabRf {
color: #1da1f2;
text-decoration: underline
}
._3eCUxUEm, .rlkX4fnX {
margin-top: .65625rem
}
._2nhq3o_B {
border-bottom: 1px solid #ccd6dd;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
padding: .65625em .65625rem
}
.ejbIbhck {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center
}
._3KNex7EQ {
margin-right: .5rem
}
._1bfO1A1D {
color: #1b95e0;
line-height: 3.28125;
padding: 0 10px;
text-decoration: none
}
.FaFY-n1u {
border-bottom: 1px solid #ccd6dd
}
._2OhV6WSs ._1eF_MiFx ._2sSKjr8W {
border-bottom: 1px solid #ccd6dd
}
._1eF_MiFx:last-child ._2sSKjr8W {
border-bottom: 0
}
._2S4SZjE1 {
display: block;
padding: 1.96875rem .65625rem
}
._1r1NFTla {
color: #657786;
margin-bottom: .5rem
}
._2jEwv4_q {
background: #fff;
box-shadow: 0 0 4px #657786;
left: 0;
position: fixed;
right: 0;
z-index: 1;
z-index: 2
}
._3deL-s5l {
margin-bottom: -.5rem;
z-index: 3
}
.Gpm7TAP3 {
background-color: #f5f8fa;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._2YWWqfuy {
margin-top: 1.3125rem
}
._3VbBhRL9 {
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._3qUcQu0e {
-webkit-flex-basis: 0;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.COfxu8s-, .COfxu8s-:hover {
border-bottom: 2px solid transparent;
color: #657786;
font-size: .85rem;
line-height: 1;
padding: .98438rem 0;
position: relative;
text-align: center;
text-decoration: none;
text-transform: uppercase
}
.COfxu8s-:active {
background-color: #f5f8fa
}
.COfxu8s-._2t1-zb7t, .COfxu8s-._2t1-zb7t:active, .COfxu8s-._2t1-zb7t:focus, .COfxu8s-._2t1-zb7t:hover {
border-bottom-color: #1da1f2;
color: #1b95e0;
font-weight: 700;
text-decoration: none
}
._18IeRZUB {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._1bqsK2E0 {
margin-top: -.5rem
}
._2LNG5GT- {
display: block
}
._2LNG5GT-, ._2LNG5GT-:active, ._2LNG5GT-:focus, ._2LNG5GT-:hover {
text-decoration: none
}
._3RF62ZvD {
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
padding: .65625rem 0
}
._3XtdrsGy {
margin: 0;
padding: .32813rem 0 0
}
._3u9i8fLv {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._1JeaVs8R {
padding-left: .65625rem;
padding-right: .65625rem
}
._2hGLFTzu {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._2TCMrHUR {
padding-left: .1rem
}
.aPyKj4JW {
cursor: pointer;
padding: 1.3125rem .65625rem;
width: 100%
}
._1bBTfW4q {
background-color: #e8f6ff
}
._1hkrWkk0 {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.ywuhXbfz {
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._3dhGNRdD {
-webkit-align-self: flex-end;
-ms-flex-item-align: end;
align-self: flex-end
}
._1XQZkgon {
max-height: 2.625rem;
overflow: hidden
}
._29Wt1O26 {
color: #657786;
float: right;
margin-left: .65625rem
}
._1WgzLz1k {
height: 2em!important
}
._33HzS5QJ {
border-top: 1px solid #ccd6dd
}
._33HzS5QJ:first-child {
border-top: none
}
.GZSskek7 {
display: block;
max-height: 100%
}
.gKRgmIXg {
position: absolute;
transition: width .5s ease, height .5s ease
}
.GZSskek7 {
max-width: 100%
}
.gKRgmIXg {
right: .5rem;
top: .5rem
}
._2HBX6pyJ {
border: 1px solid transparent;
max-width: 100%
}
._2xgA0EGP {
height: 100%
}
._3asu7ZhB .GZSskek7 {
height: auto;
left: 50%;
max-height: none;
max-width: none;
position: absolute;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 100%
}
._3asu7ZhB ._1Vz8onRC {
height: 100%;
width: auto
}
._3asu7ZhB .gKRgmIXg {
right: .25rem;
top: .25rem
}
.hQhFAu8o {
border-color: #aab8c2
}
._2slxAELU {
height: 100%
}
input[type=file], input[type=file]::-webkit-file-upload-button {
cursor: pointer
}
input[type=file]:disabled, input[type=file]:disabled::-webkit-file-upload-button {
cursor: default
}
.sWXBbW7q {
-webkit-appearance: none;
background: 0 0;
height: 100%;
left: 0;
opacity: 0;
overflow: hidden;
position: absolute;
top: 0;
width: 100%;
z-index: 1
}
._1QJF9K3H {
padding: 0 .65625rem
}
.CQTbeRtL {
height: 2em!important
}
.Bv9EFFOu {
margin-top: 1.3125rem;
position: relative
}
.OPHA7Oty {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
margin-bottom: .65625rem
}
._1EMQ0GlX {
position: absolute;
top: -5px;
right: -5px
}
._2rvjeYIo {
width: 3.28125rem
}
.HX7iga8M {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
min-height: 100%;
padding: 0
}
._1ZFOZa4R {
border-bottom: 1px solid #ccd6dd
}
._2weC11-l {
position: absolute;
z-index: 3
}
.Tf_rsnMR {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
overflow-y: auto
}
._1z8bew3e {
height: 1.96875rem
}
._2bXYYraM {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
._1xFtK706 {
margin-left: .65625rem
}
._23fXLLC0 {
padding-left: 0;
padding-right: 0;
padding-top: 0
}
._2wjpwbis {
margin-top: .65625rem;
padding: 0
}
._1sqqaKFo {
margin-top: 1.3125rem
}
.zeo-m5c9 {
border-top: 1px solid #ccd6dd;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
margin: 1.3125rem -.65625rem 0;
padding: 1.3125rem .65625rem
}
._3_NDoxqm {
height: 2em!important
}
._38QbNY-4 {
border-radius: .35em;
margin-left: .65625rem;
overflow: hidden
}
._38QbNY-4:first-child {
margin-left: 0
}
._3qEeJSxw {
width: 100%
}
._2ZVlFsDn {
width: 50%
}
._1FBXaybA {
width: 33%
}
._bms5FR6 {
width: 25%
}
._2MF4NYbJ {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
margin: 1.3125rem 0 0;
width: 100%
}
._2HO9qf3x {
margin: 0 auto
}
.DxP6dQ6s {
transition: width .5s ease
}
._1toklvS1 {
padding: 0 .65625rem
}
.fSccHjM8 {
height: 1.3125rem
}
._330S2Eyj {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._23F886i5 {
padding-bottom: .65625rem;
margin-left: calc(100% * -1 / 8 - 1.5 * .65625rem)
}
._2E2FHQH2 {
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._1FNeQSx_, ._1jK2uxJq {
padding: 0 0 .98438rem
}
._1ZLV7vdT>* {
margin: .65625rem 0 1.3125rem
}
.VJfa5-JU {
padding: .32813rem 0 .98438rem
}
._1-v3WH6C {
padding-bottom: .98438rem
}
._1hE6g2Ml, ._1hE6g2Ml:active, ._1hE6g2Ml:focus, ._1hE6g2Ml:hover {
text-decoration: none
}
._2CDuBCCk {
color: #1da1f2
}
._3qQLFoYV, ._3qQLFoYV:active, ._3qQLFoYV:focus, ._3qQLFoYV:hover {
color: #14171a;
text-decoration: none
}
._1NUqA_Ya {
background-color: #ccd6dd;
margin: -1.3125rem auto .33rem;
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
width: .214rem
}
.pQ0LYqFV {
border-top: 1px solid #ccd6dd;
padding: .98438rem 0
}
._1CzaYUfG, .pQ0LYqFV {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._1CzaYUfG {
-webkit-align-items: baseline;
-ms-flex-align: baseline;
align-items: baseline
}
._1CzaYUfG+._1CzaYUfG {
margin-left: 1.96875rem
}
._22uh2-tW {
border-top: 1px solid #ccd6dd;
height: 3.28125rem
}
._3jMboTiV {
color: #1da1f2;
font-weight: 700;
margin-top: -1px;
text-align: left;
width: 100%
}
._16vfZrQZ {
color: #1b95e0;
text-decoration: none
}
._16vfZrQZ:hover {
text-decoration: underline
}
._1XHWlb5c {
border-bottom: 1px solid #ccd6dd
}
._1P2N8gOL {
border-bottom: 1px solid #ccd6dd
}
.xeVR7vEM {
padding: 1rem 0 0 .5rem
}
._3gquBRp1 {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._2-f7lTkl {
color: #1b95e0;
padding: .2rem 0 .2rem .5rem;
text-decoration: none
}
._14HtmOui {
padding-bottom: .5rem
}
._3pQpcNp0 {
color: #1b95e0;
display: block;
padding: 1rem 0 1rem .5rem;
text-decoration: none
}
._2tjf50a_ {
padding: .98438rem .65625rem
}
.ys1Birxa {
background-color: #ccd6dd;
height: 1px;
margin: .65625rem 0
}
._1y-7iMRs {
color: #1b95e0;
text-decoration: none;
width: 100%
}
._1y-7iMRs:active, ._1y-7iMRs:focus, ._1y-7iMRs:hover {
background-color: #f5f8fa;
text-decoration: none
}
._-nlDh3op {
margin: 0 .65625rem
}
.tOgQEePU {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between
}
.ETtIj1gU {
width: 100%;
margin: .98438rem 0
}
._3-H2h1Ja {
display: block;
margin-bottom: .65625rem
}
._1K57WeRz {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
background-postion: 50%;
background-repeat: no-repeat;
background-size: cover;
max-width: 1500px;
width: 100%
}
._3kOb2q-b {
padding: .65625rem .65625rem 0
}
._1FA_MhSv {
padding: .65625rem
}
._2CAC-K7O {
box-sizing: border-box;
float: left;
margin: 0 .32813rem .65625rem 0;
padding-right: .32813rem;
width: 25%
}
.V7IiU7kf {
display: block;
height: 2.5rem;
margin-top: 2px;
position: relative
}
._2SN3_LQA {
background-color: #fff;
border: 2px solid #fff;
border-radius: .4rem;
bottom: 0;
left: 0;
margin: 0 0 -2px -2px;
position: absolute;
width: 100%
}
@media screen and (min-width:600px) {
._2SN3_LQA {
border-width: 4px;
margin: 0 0 -4px -4px
}
}
._3tCjwgHJ {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
float: right;
margin: 0 0 .65625rem
}
._28MW8JUx {
text-decoration: none
}
._1VKf_rJE, ._37-SHJ0O, .YKb7BLkz {
margin-left: .65625rem
}
._2CFyTHU5 {
clear: both;
display: block;
margin: 0 0 .65625rem
}
.Dk8nbDvd {
direction: ltr;
display: block;
font-size: 1.285714286rem;
line-height: 1.25
}
.Z5IeoGpY {
direction: ltr;
margin-top: .1rem;
unicode-bidi: embed
}
.JOSlBtat {
margin: .1rem 0 0 1.3125rem
}
._2bdbLw2N {
clear: both;
margin-top: .65625rem
}
._2bdbLw2N, .EcSZ4Fq3 {
margin-bottom: .65625rem
}
.EcSZ4Fq3 {
display: block
}
._3yXWirES, ._28A-ODFy, ._28HqkHQj {
display: inline-block
}
._3yXWirES {
text-align: center;
width: 1.3125rem
}
._28HqkHQj {
color: #1b95e0;
text-decoration: none
}
.CJu91lfm {
margin-bottom: .65625rem
}
.klnfEmui {
color: #657786;
display: inline-block;
text-transform: uppercase
}
._27dn5W0H {
margin-right: 1.3125rem
}
.wErp7S_5 {
color: #14171a
}
@media screen and (min-width:600px) {
._2bdbLw2N {
width: 75%
}
}
._3pwZBbIb {
margin-bottom: .65625rem
}
._1yvDpOpC, ._3teNeeyX {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._1yvDpOpC {
background: #f5f8fa;
border-top: 1px solid #ccd6dd;
padding: 1.3125rem .65625rem
}
._3a0tmUVm {
margin-bottom: .65625rem
}
._5tmDFBjO {
padding: 0 .65625rem 1.3125rem
}
._1d9iymjd, ._5tmDFBjO {
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
background: #f5f8fa;
border-top: 1px solid #ccd6dd;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._1d9iymjd {
padding: 1.3125rem .65625rem
}
._1gGeJrp2, .q6l62PF- {
margin-top: 1.3125rem
}
._2CnRVCri {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._3ooY7XwZ {
margin-left: 1.64063rem
}
._3fv5_7QL {
border-bottom: 1px solid #ccd6dd
}
._6x416yn1 {
color: #1da1f2;
text-decoration: none
}
._1d-4w8jI {
height: 100%;
position: fixed;
width: 100%;
-webkit-filter: blur(10px);
filter: blur(10px)
}
.github_more {
padding: .98438rem .65625rem;
text-decoration: none
}
.QVC2M-YD {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
margin: 30px 0
} | spoof/twitter/twitter_mobile.css | <style id="react-native-modality"> :focus {
outline: none;
}
<style id="react-native-stylesheet-static">html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
margin: 0;
}
button::-moz-focus-inner, input::-moz-focus-inner {
border: 0;
padding: 0;
}
input::-webkit-inner-spin-button, input::-webkit-outer-spin-button, input::-webkit-search-cancel-button, input::-webkit-search-decoration, input::-webkit-search-results-button, input::-webkit-search-results-decoration {
display: none;
}
@keyframes rn-ActivityIndicator-animation {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rn-ProgressBar-animation {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
100% {
-webkit-transform: translateX(400%);
transform: translateX(400%);
}
}
.rn-105ug2t {
pointer-events: auto;
}
.rn-12vffkv {
pointer-events: none;
}
.rn-12vffkv * {
pointer-events: auto;
}
.rn-ah5dr5 {
pointer-events: auto;
}
.rn-ah5dr5 * {
pointer-events: none;
}
.rn-633pao {
pointer-events: none;
}
._3f2NsD-H {
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
border-width: 0;
border-style: solid;
box-sizing: border-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-basis: auto;
-ms-flex-preferred-size: auto;
flex-basis: auto;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
margin: 0;
padding: 0;
position: relative;
background-color: transparent;
color: inherit;
font: inherit;
text-align: inherit;
text-decoration: none;
list-style: none;
min-height: 0;
min-width: 0
}
._2NOhG28Y {
pointer-events: auto
}
._38Mnsfej {
pointer-events: none
}
._2IZt3pZd, ._38Mnsfej * {
pointer-events: auto
}
._2IZt3pZd *, ._3gi1QbKd {
pointer-events: none
}
._3hLw5mbC {
background-color: transparent;
background-position: 50%;
background-repeat: no-repeat;
background-size: cover;
z-index: 0
}
._16WH7Eyq {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
height: 100%;
opacity: 0;
width: 100%;
z-index: -1
}
.GdlOkVJi {
background-size: auto;
background-position: 50%
}
.DGI99L-V {
background-size: contain
}
._3kJ8i5k7 {
background-size: cover
}
._1HzwhWxd, ._3ZA3RjrY {
background-size: auto
}
._3ZA3RjrY {
background-repeat: repeat
}
._1JxX7SBZ {
background-size: 100% 100%
}
.Fe7ul3Lt {
color: inherit;
display: inline;
font: inherit;
margin: 0;
padding: 0;
text-decoration: none;
word-wrap: break-word;
background-color: transparent;
border: 0;
text-align: inherit
}
._1oabV8mG {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
._25OmqECI {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0)
}
body {
margin: 0
}
button::-moz-focus-inner, input::-moz-focus-inner {
border: 0;
padding: 0
}
input::-webkit-inner-spin-button, input::-webkit-outer-spin-button, input::-webkit-search-cancel-button, input::-webkit-search-decoration, input::-webkit-search-results-button, input::-webkit-search-results-decoration {
display: none
}
html {
font-size: 14px;
line-height: 1.3125
}
@media screen and (min-width:360px) {
html {
font-size: 15px
}
}
@media screen and (min-width:600px) {
html {
font-size: 16px
}
}
body, html {
height: 100%;
width: 100%
}
body {
overflow-y: scroll
}
._2DggF3sL {
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif;
font-size: 1rem;
font-weight: 400;
line-height: 1.3125;
word-wrap: break-word;
-webkit-font-feature-settings: "kern" 1;
font-feature-settings: "kern" 1;
-webkit-font-kerning: normal;
font-kerning: normal;
text-rendering: optimizeLegibility
}
._1_CPsQvg {
text-align: center
}
._1eb66saq {
text-align: left
}
._2RmBJfDJ {
text-align: right
}
.CuriousBlue {
color: #1b95e0
}
.hoki {
color: #657786
}
._2yWKxNkU {
color: #aab8c2
}
._1HXcreMa {
color: #14171a
}
.bbcbpIZw {
color: #f45d22
}
._1VpPBSCz {
color: #e0245e
}
._2izplv41 {
color: #fff
}
._3hHnQ0O3 {
font-style: normal
}
.R3E2kAdm {
font-style: italic
}
._3EJ3rVPs {
font-size: .85rem;
line-height: 1.3125rem
}
._3svo9AtH {
font-size: 1rem
}
._3SNKsHhe {
font-size: 1.25rem;
line-height: 1.5em
}
._1iopCSfF {
font-size: 1.5rem;
line-height: 1.5em
}
._1zOlKQVe {
font-size: 2rem
}
._3p3vGhar {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal
}
.eVRYuLIm {
text-transform: uppercase
}
.z6d79p5g {
font-weight: 400
}
._2v8hsvrz {
font-weight: 500
}
._3WJqTbOE {
font-weight: 700
}
._2UovUHQu {
border-bottom: 1px solid #ccd6dd;
color: #1da1f2;
margin-left: .65625rem;
margin-right: .65625rem;
padding-bottom: .65625em;
padding-top: .65625em;
text-align: center
}
._2Eu5RXp7 {
color: #1da1f2;
text-decoration: none
}
._2FU3NGw4 {
position: absolute;
z-index: 4
}
._1363jyKz {
bottom: 0;
left: 0;
pointer-events: none;
position: fixed;
right: 0
}
.thXr_Z-z {
top: 0
}
._1363jyKz * {
pointer-events: auto
}
.INAWBu0V {
background: transparent;
border: 0;
cursor: pointer;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin: 0;
padding: 0
}
._21q4BYp5 {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
width: 1.3125em
}
._1BnP8r0n, .INAWBu0V:disabled {
cursor: default;
opacity: .5
}
._1N2kPraK {
font-size: .85rem
}
._1ZylCsVi {
font-size: 1rem
}
._1qdB6Hhq {
font-size: 1.25rem
}
.Q1vpCyfl {
font-size: 1.5rem
}
._1rdA0MGU {
font-size: 2rem
}
._1eDw6Q15 {
color: #fff
}
.QwoCevfW {
color: #657786
}
._3PLvX7RF {
color: #1da1f2
}
._2ZZR2W6-, ._3xujJ3kq {
box-sizing: border-box;
margin: 0 auto;
width: 100%
}
._2ZZR2W6- {
padding: 0 .65625rem
}
@media screen and (min-width:360px) {
._2ZZR2W6-, ._3xujJ3kq {
max-width: 400px!important
}
}
@media screen and (min-width:600px) {
._2ZZR2W6-, ._3xujJ3kq {
max-width: 600px!important
}
}
._2WpbeAAU, ._24u5-vsm {
height: 3.5rem
}
._24u5-vsm {
background: #fff
}
._2WpbeAAU ._24u5-vsm {
position: fixed;
z-index: 2;
width: 100%
}
._1s7qNPIc {
box-shadow: 0 0 4px #657786
}
._1uDBaJEQ {
-ms-flex-align: center;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
height: 3.5rem;
-ms-flex-pack: center;
padding: .65625rem
}
._1aYYbHbU, ._1uDBaJEQ, .lbqYWGK5 {
-webkit-align-items: center;
align-items: center;
-webkit-justify-content: center;
justify-content: center
}
._1aYYbHbU, .lbqYWGK5 {
-webkit-align-self: stretch;
-ms-flex-item-align: stretch;
-ms-grid-row-align: stretch;
align-self: stretch;
-ms-flex-align: center;
-ms-flex-pack: center;
min-height: 1.96875rem;
min-width: 1.96875rem
}
._1aYYbHbU {
margin-right: 1.64063rem
}
.lbqYWGK5 {
margin-left: 1.64063rem
}
._2umMSKXY {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
height: 100%;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._1CUQ-c7O {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
.z-4GlXDn {
margin: auto;
position: relative;
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
._1M_XHtD2, .z-4GlXDn {
height: 26px;
width: 26px
}
._1M_XHtD2 {
border: 3px solid #1da1f2;
border-radius: 50%;
box-sizing: border-box
}
.lIgYF7yz {
background: #fff;
height: 28px;
width: 15px;
position: absolute;
top: -1px;
left: -1px;
border: 1px solid #fff;
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
._1R3D675z {
-webkit-transform-origin: 0 15px;
transform-origin: 0 15px;
left: 15px;
-webkit-animation: gxSrtLVC 1.8s infinite ease;
animation: gxSrtLVC 1.8s infinite ease
}
._1HX7mrat {
-webkit-transform-origin: 15px 14px;
transform-origin: 15px 14px;
-webkit-animation: gxSrtLVC 1.8s infinite ease .45s;
animation: gxSrtLVC 1.8s infinite ease .45s
}
@-webkit-keyframes gxSrtLVC {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
to {
-webkit-transform: rotate(1turn);
transform: rotate(1turn)
}
}
@keyframes gxSrtLVC {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
to {
-webkit-transform: rotate(1turn);
transform: rotate(1turn)
}
}
._2Vy6CsDc {
min-height: 200px;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._13Jmyrbo {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-align-self: stretch;
-ms-flex-item-align: stretch;
align-self: stretch;
color: #1da1f2;
cursor: pointer;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
min-width: 1.96875rem
}
._3PQpfi4b, ._13Jmyrbo {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._3PQpfi4b {
height: 1.96875rem!important
}
._20OB_GCy {
-webkit-transform: scaleX(1);
transform: scaleX(1)
}
._1wJSqtdt {
background-color: #1da1f2;
border-radius: 9999px;
box-shadow: 0 0 0 .14rem #fff;
font-size: .714rem;
height: 1rem;
left: 70%;
line-height: 1rem;
min-width: 1rem;
position: absolute;
text-align: center;
top: -7%
}
._14vAa_A5 {
padding: 0 .16rem
}
.OIdLZqfA {
background-color: #1da1f2;
border-radius: 9999px;
height: 6px;
position: absolute;
right: -8%;
top: 2%;
width: 6px
}
.kYeF62AF {
position: fixed;
left: 0;
right: 0
}
._3CtfVJyD, .kYeF62AF {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._3CtfVJyD {
background-color: #1da1f2;
border-radius: 9999px;
box-shadow: 0 1px 5px rgba(101, 119, 134, .25);
cursor: pointer;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
min-height: 1.96875rem;
position: relative;
padding: 0 1.3125rem;
top: 1em;
transition: -webkit-transform .15s;
transition: transform .15s;
transition: transform .15s, -webkit-transform .15s;
white-space: nowrap;
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
._1zhqPkiv {
-webkit-transform: translate3d(0, 4em, 0);
transform: translate3d(0, 4em, 0)
}
.MLZaeRvv {
box-sizing: border-box;
overflow: hidden;
position: relative;
width: 100%
}
._2HINa6Q3 {
display: block;
padding-bottom: 100%;
width: 100%
}
._2di_LxCm {
bottom: 0;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%
}
._1-I0zYji {
border-radius: .35rem
}
._11uA1Osd {
border-radius: 9999px
}
._1LUwi_k5 {
background-color: #e6ecf0;
border: 0;
display: block;
height: 100%;
width: 100%
}
._2HAljXql {
height: 6.5rem
}
._2HAljXql._2b_f3Qln {
height: 3.5rem
}
._1d_6kzhv {
background-color: #fff;
box-shadow: 0 0 4px #657786;
height: 6.5rem;
left: 0;
position: fixed;
right: 0;
-webkit-transform: translateZ(0);
transform: translateZ(0);
transition: -webkit-transform .2s;
transition: transform .2s;
transition: transform .2s, -webkit-transform .2s;
z-index: 2
}
._1d_6kzhv.KY97pNaR {
-webkit-transform: translate3d(0, -3rem, 0);
transform: translate3d(0, -3rem, 0)
}
._1d_6kzhv._2b_f3Qln {
height: 3.5rem;
-webkit-transform: none!important;
transform: none!important
}
._2BKHJ5ik {
margin-bottom: -.5rem
}
._2UsWoOwL {
height: 2rem;
width: 2rem;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._30Ca26Xj {
height: 1.75rem;
width: 1.75rem
}
._3cKAE7hX {
background: #fff;
height: 3.5rem;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._1IYhfl3z {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
color: #657786;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
flex-directon: column;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
position: relative
}
._1IYhfl3z:active {
background-color: #f5f8fa
}
._1IYhfl3z:active, ._1IYhfl3z:focus, ._1IYhfl3z:hover, .rqbvPe2P {
color: #1da1f2
}
.rqbvPe2P:after {
content: '';
background-color: #1da1f2;
height: 2px;
position: absolute;
bottom: 0;
left: 0;
right: 0
}
.HV8umBjO {
height: 2rem!important
}
.qb_4uBPl {
background-color: #e6ecf0;
height: .65625rem
}
._16EiU_q9 {
background-color: #f5f8fa;
height: 1.3125rem;
padding: 1.3125rem .32813rem .65625rem
}
._2Axq_bxo {
border-bottom: 1px solid #ccd6dd
}
._3RpX7SHV {
border-top: 1px solid #ccd6dd
}
._2qq9pBP0 {
bottom: 0;
left: 0;
min-width: 280px;
right: 0
}
._1pN3DqJf {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1
}
._3WsJiNAm {
overflow-y: auto;
-webkit-overflow-scrolling: touch
}
._17hNzFen {
background: #14171a;
bottom: 0;
left: 0;
opacity: .5;
position: fixed;
right: 0;
top: 0
}
.yY8bJa97 {
background: #f5f8fa;
border-radius: 4px 4px 0 0;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
overflow: hidden
}
._7JIqjFS4 {
margin-top: .65625rem
}
._1ulTL0zp {
background-color: #fff;
border-bottom: 1px solid #ccd6dd;
padding: .65625rem 1.3125rem
}
._1_FMKzvm:first-child, ._1ulTL0zp {
border-radius: 4px 4px 0 0
}
._1_FMKzvm:last-child {
border-bottom: none;
border-top: 1px solid #ccd6dd
}
._1_FMKzvm {
background: #fff;
border-bottom: 1px solid #ccd6dd;
cursor: pointer;
padding: .65625rem 1.3125rem;
width: 100%
}
.MmJh82_T {
-webkit-appearance: none;
background: transparent;
border: 1px solid currentcolor;
border-radius: .35rem;
box-sizing: border-box;
color: inherit;
cursor: pointer;
font: inherit;
font-weight: 700;
padding: 0 1em;
position: relative;
text-align: center;
text-decoration: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
white-space: normal
}
.MmJh82_T::-moz-focus-inner {
border: 0;
padding: 0
}
.MmJh82_T:active, .MmJh82_T:focus, .MmJh82_T:hover {
text-decoration: none
}
.KMM_MJg9, .MmJh82_T:disabled {
cursor: default;
opacity: .5
}
.SpbPGaHr, .SpbPGaHr:active, .SpbPGaHr:focus, .SpbPGaHr:hover {
background: #1da1f2
}
.lSM1Fder, .lSM1Fder:active, .lSM1Fder:focus, .lSM1Fder:hover {
background: transparent
}
._38myriBx, ._38myriBx:active, ._38myriBx:focus, ._38myriBx:hover {
background: #fff
}
._1jKmSm8o, ._1jKmSm8o:active, ._1jKmSm8o:focus, ._1jKmSm8o:hover {
background: #e0245e
}
.csu844KC {
background: rgba(0, 0, 0, .77)
}
._3vxCixKF {
border-color: transparent
}
._1RX2dJ0n {
border-color: #fff
}
.Lldqn39J {
border-color: #1da1f2
}
._1rWAH3is {
border-color: #aab8c2
}
._3JB5mkK- {
border-color: #e0245e
}
._2d_dX71I, ._2d_dX71I:active, ._2d_dX71I:focus, ._2d_dX71I:hover {
color: #1da1f2
}
._3facEWb0, ._3facEWb0:active, ._3facEWb0:focus, ._3facEWb0:hover {
color: #657786
}
._3IPsWQr4, ._3IPsWQr4:active, ._3IPsWQr4:focus, ._3IPsWQr4:hover {
color: #aab8c2
}
._1Sil1ymr, ._1Sil1ymr:active, ._1Sil1ymr:focus, ._1Sil1ymr:hover {
color: #e0245e
}
._2Rz0TobF, ._2Rz0TobF:active, ._2Rz0TobF:focus, ._2Rz0TobF:hover {
color: #fff
}
._1Q0H3XlO {
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start
}
._3iSgwI3T {
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end
}
._1pzUva68 {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
.KLHa89oH {
font-size: .85rem;
min-height: 1.44375rem;
min-width: 2.32444rem
}
._2m0B23vv {
font-size: .85rem
}
._1q1J19kr, ._2m0B23vv {
min-height: 1.96875rem;
min-width: 1.58484rem
}
._1q1J19kr, ._2sG5BpJO {
font-size: 1rem
}
._2sG5BpJO {
min-height: 2.625rem;
min-width: 2.11313rem
}
._1qpWiIkN {
font-size: 1.25rem;
min-height: 3.28125rem;
min-width: 2.64141rem
}
.zyelCsjG {
font-size: 1.5rem;
min-height: 3.9375rem;
min-width: 3.16969rem
}
._1u_kMV_N {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%
}
._27U3TKFt {
margin-right: .5em
}
._132qLRA5 {
height: 1.5em!important
}
._2gk5cYPy {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
.tFQ8Lw6x {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
margin-left: 1.3125rem
}
.tFQ8Lw6x:first-child {
margin-left: 0
}
._1Ut7kbTV {
margin-bottom: -.5rem;
z-index: 3
}
._3jbaTU38 {
margin-left: 1.64063rem
}
._3PXHBz0r {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._3Gyh2OCT {
height: 100%;
width: 100%
}
._7kIt4uMb {
z-index: 3
}
._1qOuwlPT {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-overflow-scrolling: touch
}
._11vB6FUA {
padding-bottom: 6.5625rem
}
.AsHUxm12 {
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
text-align: center;
color: #657786
}
._1H09v8iJ, .AsHUxm12, .JVHS24YY {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._1H09v8iJ, .JVHS24YY {
-webkit-flex-basis: 0;
-ms-flex-preferred-size: 0;
flex-basis: 0
}
._1H09v8iJ {
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
padding-bottom: 1.3125rem
}
.JVHS24YY {
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
._1xiHK6bU {
margin-top: 1.3125rem;
margin-left: auto;
margin-right: auto;
width: 50%
}
._2deqfZz4 {
padding-top: 1.3125rem;
padding-left: .65625rem;
padding-right: .65625rem
}
._3jarMu92, ._-UhQDiIZ {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.uiKiaI6u {
margin: 0 auto;
padding: 2.625rem .65625rem
}
._1rIfe8O1, ._1xQ_FTt0 {
display: block;
margin-top: 2.625rem
}
._1xQ_FTt0 {
height: auto;
width: 100%
}
._22Vuva1f {
border-radius: 9999px;
box-shadow: 1px 1px 4px rgba(101, 119, 134, .75);
height: 3.9375rem;
padding: 0;
width: 3.9375rem
}
._3TEZxQV {
pointer-events: none
}
._3TEZxQV * {
pointer-events: auto
}
._1zg5t6Rt {
-webkit-align-self: flex-end;
-ms-flex-item-align: end;
align-self: flex-end;
bottom: 1.3125rem;
position: relative;
right: 1.3125rem
}
@media screen and (min-width:600px) {
._3TEZxQV {
position: absolute;
bottom: 0;
left: 0;
right: 0
}
}
@media screen and (min-width:800px) {
._3TEZxQV {
margin: 0 auto;
max-width: 600px
}
._1zg5t6Rt {
right: -5.25rem
}
}
.vIvziVt6 {
margin: 0 auto
}
.vIvziVt6, .vIvziVt6:active, .vIvziVt6:focus, .vIvziVt6:hover {
text-decoration: none
}
._6cNmXVo9 {
padding: 1.96875rem .65625rem
}
._2MxjoKYD, ._3H6BkVeP {
margin-bottom: .98438rem
}
._29ahSMvH {
overflow: hidden;
position: relative
}
.X5oJMMFX {
-webkit-align-items: center!important;
-ms-flex-align: center!important;
align-items: center!important;
border-bottom: 1px solid #ccd6dd!important;
height: 4rem;
-webkit-justify-content: center!important;
-ms-flex-pack: center!important;
justify-content: center!important;
left: 0;
position: absolute!important;
right: 0;
top: -4rem
}
.XcKNFpKX {
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
._1o3yOmE7 {
height: 2rem!important;
color: #aab8c2;
transition: -webkit-transform .25s;
transition: transform .25s;
transition: transform .25s, -webkit-transform .25s
}
._2O25Tgh7 {
-webkit-transform: rotate(180deg);
transform: rotate(180deg)
}
._1piKw1fp {
border: 0!important;
clip: rect(1px, 1px, 1px, 1px)!important;
height: 1px!important;
overflow: hidden!important;
padding: 0!important;
position: absolute!important;
width: 1px!important
}
._3Ho4vlTO {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._2rKrV7oY {
-webkit-flex-basis: 0;
-ms-flex-preferred-size: 0;
flex-basis: 0;
min-width: 0
}
.iT9BSTFM {
margin: 0 -.32812rem
}
.iT9BSTFM>._2rKrV7oY {
margin: 0 .32813rem
}
._2lr8ULQi {
color: #1b95e0;
padding: .33em .65625rem;
text-decoration: none
}
._1_wyDZFq {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
margin-top: .214em;
position: relative
}
._2YKCg-Xu {
cursor: pointer;
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._3Tyy4NMa {
content: '';
display: block;
border-radius: .107rem;
background-color: #ccd6dd;
height: .214rem;
width: .214rem
}
._1mqD5up9 {
top: -.214rem;
position: relative
}
._1LkzKk0L {
top: .214rem;
position: relative
}
._2Ra7qbVH {
text-decoration: none
}
._3Ko_vUO1 {
border: 1px solid #ccd6dd;
border-radius: .35rem;
overflow: hidden
}
._1TGObHVA {
padding: .65625rem
}
._3W4ortNo {
background-color: #ccd6dd;
min-height: 1px;
min-width: 1px
}
._1tz5UsjB {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._1Yv_hemU {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._1tz5UsjB ._1Yv_hemU {
-webkit-flex-grow: 0;
-ms-flex-positive: 0;
flex-grow: 0;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
width: 100px;
min-height: 100px;
max-width: 50%
}
._1tz5UsjB .i1xnVt31 {
width: 200px
}
._3MwaeZtb {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._3kGl_FG7 {
display: block;
color: inherit
}
._3kGl_FG7, ._3kGl_FG7:active, ._3kGl_FG7:focus, ._3kGl_FG7:hover {
text-decoration: none
}
._1Yv_hemU {
background-position: 50%;
background-repeat: no-repeat;
background-size: cover;
border: 0 solid #ccd6dd;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
overflow: hidden;
width: 100%;
border-bottom-width: 1px
}
._1tz5UsjB ._1Yv_hemU {
border-width: 0 1px 0 0
}
._2Kcfs2k2 {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
height: 100%;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
width: 100%
}
._3jHbeRdo {
color: #fff;
height: 2.625rem!important
}
._2p1VUcTE {
-webkit-box-orient: vertical;
display: -webkit-box;
-webkit-line-clamp: 3;
max-height: 3.9375rem;
overflow: hidden;
text-overflow: ellipsis
}
._1Ac7T4Ic {
background: #1da1f2
}
.l1LQkslV {
color: #fff;
height: 2.3625rem
}
._1McXRnub {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
._2bJrW5Lp {
-webkit-align-self: flex-start;
-ms-flex-item-align: start;
align-self: flex-start;
margin-left: .32813rem;
margin-top: .65625rem
}
._2QqVqU51 {
margin-top: .91875rem;
width: 80%
}
._34VPA839 {
margin-top: 1.3125rem;
width: 80%
}
._2mUJbpye {
margin-bottom: 1.3125rem;
margin-top: .65625rem;
width: 80%
}
._26awRJ_4 {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
height: 1.96875rem;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
margin-top: .65625rem
}
.gumw2pf_ {
margin-top: 0
}
._2WiB3NTn {
background-color: #ccd6dd;
border-top-left-radius: .25rem;
border-bottom-left-radius: .25rem;
position: absolute;
top: 0;
left: 0;
bottom: 0
}
._3MmFrGEx {
border-radius: .25rem
}
._2BN0ngFk {
background-color: #8dcaf0
}
._1CzfDQg1, ._2X8S_anx {
padding: 0 .65625rem
}
._3eXB6Z0F {
margin-top: .98438rem
}
._3mR8S4Lw {
background-color: #f5f8fa;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
height: 100%
}
._100hF2Bn {
color: #657786;
height: 2em!important
}
._14tNuayr {
width: 100%;
height: 100%;
overflow: hidden
}
.e_25eOJ- {
width: calc(100% + 4px * 2);
height: calc(100% + 4px * 2);
margin-left: -4px;
margin-top: -4px;
-webkit-filter: blur(4px);
filter: blur(4px)
}
._1hilJCR7 {
background: rgba(20, 23, 26, .3);
border-radius: .2rem;
color: #fff;
height: 1.3125rem;
padding: 0 .2rem;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._2LMi2fkt {
line-height: 1
}
._3a7D0mHi {
height: .2rem;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
width: 100%
}
._122Gwphf {
background-color: #1da1f2;
transition: width .5s ease;
height: 100%
}
._3VydarBU {
visibility: hidden
}
._2SYTouUX {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-name: _3liYz3ek;
animation-name: _3liYz3ek;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite
}
@-webkit-keyframes _3liYz3ek {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%)
}
to {
-webkit-transform: translateX(400%);
transform: translateX(400%)
}
}
@keyframes _3liYz3ek {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%)
}
to {
-webkit-transform: translateX(400%);
transform: translateX(400%)
}
}
._2Uo0Ixfb {
background-clip: content-box
}
._2YXT0EI- {
display: block;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
height: 100%;
overflow: hidden;
position: relative
}
._1YeWCqJF {
bottom: 0;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 0
}
._9UlPYlC1 {
height: 100%;
width: auto
}
._1ninV_xt {
height: auto;
max-width: 100%
}
._2nCaYfdb {
position: absolute;
left: .65625rem;
bottom: .65625rem
}
._2RciEnWn {
position: absolute;
top: 0
}
._1RMlx5ox {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
._2S3ig93j {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._1hxjs3qD {
color: #657786;
text-decoration: none
}
.HuWBBjuj {
position: relative
}
._1oZgjM8R {
overflow: hidden;
position: absolute
}
._239jkPpy {
display: block;
min-height: 100%;
min-width: 100%
}
._1iBJZjOi ._1gof_FDb {
bottom: 0;
left: 0;
margin-right: .75%;
right: 50%;
top: 0
}
._1iBJZjOi ._3Ffoa8fQ {
bottom: 0;
left: 50%;
margin-left: .75%;
right: 0;
top: 0
}
._339rwvdr ._1gof_FDb {
bottom: 0;
left: 0;
margin-right: .75%;
right: 50%;
top: 0
}
._339rwvdr ._3Ffoa8fQ {
bottom: 50%;
left: 50%;
margin: 0 0 .75% .75%;
right: 0;
top: 0
}
._339rwvdr .kFMtm6J6 {
bottom: 0;
left: 50%;
margin: .75% 0 0 .75%;
right: 0;
top: 50%
}
._348VccCl ._1gof_FDb {
bottom: 50%;
left: 0;
margin: 0 .75% .75% 0;
right: 50%;
top: 0
}
._348VccCl ._3Ffoa8fQ {
bottom: 50%;
left: 50%;
margin: 0 0 .75% .75%;
right: 0;
top: 0
}
._348VccCl .kFMtm6J6 {
bottom: 0;
left: 0;
margin: .75% .75% 0 0;
right: 50%;
top: 50%
}
._348VccCl ._3Wyj8j6V {
bottom: 0;
left: 50%;
margin: .75% 0 0 .75%;
right: 0;
top: 50%
}
.QLRzw7gB {
position: absolute;
left: .65625rem;
bottom: .65625rem
}
._1iDRfwUk ._2cAUIb4X, ._2ig-P_HT {
display: none
}
._1iDRfwUk ._2ig-P_HT {
display: block
}
._2cAUIb4X {
background: #f5f8fa;
border-radius: .35rem;
padding: .65625rem
}
._21O8mtNB {
margin-bottom: 1.3125rem
}
._3mBXdN5U {
margin-top: .65625rem
}
.ttWiH_Hj {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background: rgba(20, 23, 26, .3);
border-radius: .2rem;
color: #fff;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
height: 1.3125rem;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
padding: 0 .2rem
}
._1d8T2U75 {
display: block;
height: 100%!important
}
._3wMe7_pL {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
height: 100%
}
._1_aozdMe {
height: 100%
}
._1_aozdMe, ._1onAEkd7, ._17xHsokI {
display: -webkit-flex;
display: -ms-flexbox;
display: flex
}
._1onAEkd7, ._17xHsokI {
-webkit-align-self: center;
-ms-flex-item-align: center;
align-self: center;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
width: 100%
}
._3bEbQ02C, ._3IqdI_Qe, ._3qq-rcds {
bottom: 0;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 0
}
._3IqdI_Qe {
height: 3.28125rem;
text-align: center;
width: 3.28125rem
}
._3bEbQ02C {
color: #fff;
height: 100%!important
}
.sEQESZ5E {
position: absolute;
left: .65625rem;
bottom: .65625rem;
z-index: 1;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._3HY7MYaw {
margin-left: .32813rem
}
._2_y4lIt4 {
overflow: hidden
}
._3i5pgeTp {
border-radius: .35rem;
-webkit-mask-image: url(data:image/png;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICRAEAOw==);
-webkit-mask-repeat: repeat
}
._2zP-4IzO {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
height: 100%;
width: 100%
}
._3QPrjhX2 {
border: 1px solid #ccd6dd
}
._3DbX3IrZ {
margin-top: .65625rem
}
._2cGZSF5M {
color: #657786;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
.YunaQoc2 {
margin-right: .5rem
}
._3YA-Cq4Z .YunaQoc2 {
color: #794bc4
}
.RQ5ECnGZ {
background: transparent;
border: 0;
color: inherit;
cursor: pointer;
font: inherit;
margin: 0;
min-height: 1.3125rem;
overflow: visible;
padding: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
white-space: nowrap;
z-index: 1
}
.RQ5ECnGZ::-moz-focus-inner {
border: 0;
padding: 0
}
.RQ5ECnGZ:focus {
color: #657786
}
._3RgSUeCt {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-flex;
display: -ms-flexbox;
display: flex
}
._1H8Mn9AA {
font-size: 1rem;
margin-left: .25em
}
._1XlwgLUj {
cursor: default
}
.VwBgoFij {
opacity: .5!important
}
._3eLE3b-Z, ._3eLE3b-Z:focus {
color: #17bf63!important
}
._1-625P6y, ._1-625P6y:focus {
color: #e0245e!important
}
._25KUHcft {
-webkit-animation-duration: .25s;
animation-duration: .25s;
-webkit-animation-name: _3rcU2Fqg;
animation-name: _3rcU2Fqg
}
@-webkit-keyframes _3rcU2Fqg {
50% {
-webkit-transform: scale(1.2);
transform: scale(1.2)
}
to {
-webkit-transform: scale(1);
transform: scale(1)
}
}
@keyframes _3rcU2Fqg {
50% {
-webkit-transform: scale(1.2);
transform: scale(1.2)
}
to {
-webkit-transform: scale(1);
transform: scale(1)
}
}
._1flRTtS9 {
background: #1da1f2
}
._2ZrX5aIs {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
._1PN4xHiN {
color: #fff;
height: 2.3625rem;
margin-top: .98438rem
}
._1zl8O28i {
margin-top: .98438rem;
width: 80%
}
._3znFqm1A {
margin-top: 1.3125rem;
width: 80%
}
._3CsTyeXZ {
margin-bottom: 1.3125rem;
margin-top: .65625rem;
width: 80%
}
.W1P7mM7E {
background: #fff;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
overflow: scroll
}
.z1XhD5qM {
color: #1da1f2;
font-size: 2.625rem;
margin-bottom: .65625rem
}
._3rla4mik {
margin-top: 1.3125rem
}
._8qpj9SE2 {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
padding: 1.3125rem
}
._2GapWPU- {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._1pLPnSqG {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1
}
._1kbd4wwA {
font-size: 11.8125rem;
margin-bottom: 2.625rem
}
._22omdtNH {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between
}
.WE9i2xyR {
margin-bottom: 2.625rem;
text-align: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._2sa10IYy {
margin-top: .65625rem
}
._399IgoPQ {
color: #1b95e0;
text-decoration: none
}
._1G2ZWpuC {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
margin-bottom: 1.96875rem
}
._3phgsCTW {
margin-top: .65625rem;
max-width: 66%
}
@media screen and (orientation:landscape) {
._2GapWPU- {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._1pLPnSqG {
-webkit-flex: 3;
-ms-flex: 3;
flex: 3
}
._1kbd4wwA {
-webkit-flex: 2;
-ms-flex: 2;
flex: 2;
margin-bottom: 0!important;
padding-right: 1.3125rem
}
.WE9i2xyR {
margin-bottom: 1.3125rem!important
}
}
._1t1yuVSm {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
color: #657786
}
._3_8jWiwP {
margin-top: .65625rem
}
._1m0pnxeJ {
display: block;
margin-right: 10%
}
._1DYQBMu5 {
color: #657786;
font-size: 1.5rem;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
height: 100%;
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around
}
._2_HDVPf1 {
min-height: 1.875rem;
padding: 0 .85rem
}
._2T1PGT5b {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.pPz6Nw2f {
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end
}
._1rTfukg4[dir=rtl] {
direction: rtl!important;
text-align: right!important;
unicode-bidi: embed
}
._1rTfukg4[dir=ltr] {
direction: ltr!important;
text-align: left!important;
unicode-bidi: embed
}
._3fUfiuOH {
color: #1b95e0;
text-decoration: none
}
._3fUfiuOH:hover {
text-decoration: underline
}
._3drRoZ4e {
height: 1.25em;
width: 1.25em;
padding: 0 .05em 0 .1em;
vertical-align: -.2em
}
._10YWDZsG {
white-space: pre-wrap
}
._2FOOGcIW {
background-color: #f5f8fa;
border: 1px solid #ccd6dd;
border-radius: .35rem;
padding: .65625rem
}
._3fg7OHdb, ._3fg7OHdb:active, ._3fg7OHdb:focus, ._3fg7OHdb:hover {
text-decoration: none!important
}
._3fg7OHdb:active ._32vFsOSj, ._3fg7OHdb:focus ._32vFsOSj, ._3fg7OHdb:hover ._32vFsOSj {
text-decoration: underline!important
}
._2phkKrpG {
color: #1da1f2
}
._3VMzp5Wb {
color: #14171a
}
._1qH81-Dt {
color: #fff
}
._1CYp9AGf {
color: #ffad1f
}
._3sxxtSz0 {
margin-left: .15em
}
._1hmq-Mkf {
direction: ltr;
display: inline-block
}
._3ZSf8YGw {
color: #14171a
}
._1ZjriS3R ._1Zp5zVT9:before {
content: "\A";
white-space: pre
}
.OrIwTY0I {
display: inline-block;
vertical-align: middle
}
._1s55Hm9E {
background: #f5f8fa;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
padding: 1.3125rem 1.3125rem 1.96875rem
}
.NHyb0QlS {
margin-top: .65625rem
}
._15-p_S0N {
border: 1px solid #ccd6dd;
border-radius: .35rem;
overflow: hidden;
padding: .65625rem
}
._3ZNFEy6P, ._3ZNFEy6P:active, ._3ZNFEy6P:focus, ._3ZNFEy6P:hover {
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
color: #14171a;
text-decoration: none
}
._1_ul-C3p, .SRE-zGTT {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._3dWAvYHc {
text-align: left
}
.RSjllAdl {
margin-bottom: .32813rem
}
._26y0fKu4 {
-webkit-box-orient: vertical;
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis
}
._1MIUpbH2 {
-webkit-line-clamp: 3;
max-height: 3.9375rem
}
._1-usjywv {
-webkit-line-clamp: 5;
max-height: 6.5625rem
}
.ZE-08e-I {
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
min-width: 32px
}
._1v21e2jc {
width: 1rem
}
._1axCTvm5 {
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._2aJN3Fhd {
color: #657786
}
._2rCJuDDz, ._2rCJuDDz:active, ._2rCJuDDz:focus, ._2rCJuDDz:hover {
text-decoration: none;
color: #657786
}
.I8DvYjmD {
padding: 1rem .65625rem
}
._3z_7jQwn {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
min-width: 32px
}
._2gpfhfZk {
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._2HNcekSk {
cursor: pointer
}
._1EBB7xRj {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between
}
._24RufZsF {
display: block;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
-webkit-flex-grow: 0;
-ms-flex-positive: 0;
flex-grow: 0;
width: 100%
}
._1RntlttV {
width: 100%
}
._3Tj35upK {
margin-top: -.15rem
}
._2l-FpbrQ {
color: #657786;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
margin-left: .65625rem;
-webkit-order: 1;
-ms-flex-order: 1;
order: 1;
text-decoration: none;
white-space: nowrap
}
._2wLtAyps, ._3hdqTVua>*, ._32ievKrg {
margin-top: .65625rem
}
._2jzglInP {
margin-bottom: .65625rem
}
._3oi_-R-p:not(._1aDfKh_Z) {
padding-top: 0
}
._3oi_-R-p:not(._3pF-YX2p) {
padding-bottom: 0
}
._3oi_-R-p:not(._1aDfKh_Z) ._2gpfhfZk {
padding-top: 1rem
}
._3oi_-R-p ._3z_7jQwn {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
._3oi_-R-p:not(._3pF-YX2p) .cseLQqHs {
padding-bottom: 1rem
}
._1wmatVSh {
background-color: #ccd6dd;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
min-height: 0;
width: .214rem;
margin: .33rem 0 0
}
._1wmatVSh, ._3hdq2gDP {
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1
}
._3hdq2gDP {
-webkit-flex-grow: 0;
-ms-flex-positive: 0;
flex-grow: 0;
height: .65rem;
margin: 0 0 .33rem
}
.m3TEVpji {
text-decoration: none
}
.post {
border-bottom: 1px solid #ccd6dd
}
._1JAhXCLh {
display: block;
padding: 1.96875rem .65625rem
}
._21MpU1bz {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
padding: 1.3125rem .65625rem
}
._2LvVGFOB, ._21MpU1bz {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._3Bfr7c1g {
margin-top: 2.625rem;
text-align: center
}
._3znIYuzB {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
max-width: 600px;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._3Wno1tUR {
margin-bottom: 1.3125rem;
text-align: center
}
._3oxnid3o {
height: 2.625em
}
._1DsrZiRN {
background: #1da1f2;
left: 0;
position: fixed;
right: 0;
-webkit-transform: translateZ(0);
transform: translateZ(0);
z-index: 3
}
._1NK8zqe3 {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
height: 2.625em;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between
}
._3oPX729z {
width: 100%
}
._1zfFhzkv {
margin-left: .32813rem
}
._2Ad_SH-7 {
background: #657786;
box-shadow: 0 0 4px #657786;
padding: .65625rem
}
._3odm4w_c {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
._3mJyBgvB {
color: #fff
}
._3mJyBgvB a {
color: #fff;
text-decoration: underline
}
._3WJLfdFO {
margin-top: .65625rem
}
.wkAm4VaG {
background: none
}
.xSovBQvt {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background: #657786;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
padding: .65625rem
}
@media screen and (min-width:600px) {
.wkAm4VaG {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
max-width: 66%
}
.xSovBQvt {
border-radius: .35rem;
margin: 0 0 1.5rem 1.5rem
}
}
._2FMWcOsR {
line-height: 1.5;
padding-left: .65625rem;
word-break: break-word
}
._1ub7PuZ8 {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._1OCbLGNe {
margin: 0 .5rem 0 1.5rem
}
._1IXYtxTP {
margin-left: .65625rem;
padding: 0 calc(.65625rem - .3em) 0 .65625rem
}
<script async="" src="https://www.google-analytics.com/analytics.js"></script><script type="text/javascript" charset="utf-8" async="" src="https://ma-0.twimg.com/twitter-assets/responsive-web/web/ltr/loader.TimelineGap.136a7f5b3b9e2dd4.js"></script>.sb2CZNAu {
cursor: pointer;
min-height: 3.28125rem;
width: 100%
}
._1rcEZqzL, .sb2CZNAu {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._1rcEZqzL {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1
}
._2Z8UymHS {
-webkit-appearance: none!important;
-moz-appearance: none!important;
appearance: none!important;
box-sizing: border-box!important;
resize: none;
width: 100%
}
._2Z8UymHS::-webkit-search-cancel-button, ._2Z8UymHS::-webkit-search-decoration, ._2Z8UymHS::-webkit-search-results-button, ._2Z8UymHS::-webkit-search-results-decoration {
-webkit-appearance: none
}
._3QrkgTB_ {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
overflow: hidden
}
._1UMVIL7K {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 100%
}
._1YGC8xFq {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: transparent;
border-radius: 0;
border-width: 0;
box-sizing: border-box;
color: inherit;
font: inherit;
padding: .65625rem
}
._1YGC8xFq::-webkit-input-placeholder {
color: #657786
}
._1YGC8xFq::-moz-placeholder {
color: #657786
}
._1YGC8xFq:-ms-input-placeholder {
color: #657786
}
._1YGC8xFq::placeholder {
color: #657786
}
._1YGC8xFq:focus {
border-color: #1da1f2;
outline: none
}
.ZWoo0crt {
color: #657786
}
._1VqMahaT {
border-radius: .35rem
}
.ktZMpANQ {
background-color: #f5f8fa
}
._2RmultvD {
background-color: transparent
}
._1xYlWRCR {
border: 1px solid #ccd6dd
}
._3sD6VXHs {
padding: .65625rem 0
}
.z5tG5NPG {
border-bottom: 1px solid #657786;
margin-bottom: 1px
}
.z5tG5NPG:focus {
border-bottom-width: 2px;
margin-bottom: 0
}
._3He-dj3N {
border-color: #e0245e
}
._1GOlhMeJ {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
outline: 0!important;
padding-right: .65625rem
}
._2cTOmE3M {
color: #657786;
outline: 0!important;
padding-left: .65625rem
}
._3h5HZCEF {
color: #657786;
font-size: 1.25rem
}
._6GFDcZVp {
border-style: solid;
border-width: 1px;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
overflow: hidden
}
._3d0yTZiF {
color: #657786;
outline: 0!important;
padding-left: .65625rem;
padding-right: 0
}
._2r6GEaUv {
border-color: #ccd6dd
}
._2_kQAH5N {
border-color: transparent
}
._3wge5KgG {
font-size: .85rem
}
._12dGDLa0 {
font-size: 1rem
}
.eT9XwRpZ {
font-size: 1.25rem
}
._1jSq2LDZ {
font-size: 1.5rem
}
._2_mr2JOH {
font-size: 2rem
}
.ySzjB11J {
border-radius: 100%;
position: relative
}
._2HIHq0ZS, .ySzjB11J {
height: 100%;
overflow: hidden;
width: 100%
}
._2HIHq0ZS {
box-sizing: border-box
}
.WjLCcn33 {
border-radius: 0
}
._1m8NTer0 .WjLCcn33, ._22Xjfdi_ {
height: 100%;
width: 100%
}
.oIUn-h8B .WjLCcn33 {
height: 100%;
margin-left: -50%;
position: static
}
.oIUn-h8B ._2HIHq0ZS {
height: 100%;
position: absolute;
width: 50%
}
.oIUn-h8B ._2HIHq0ZS:first-child {
border-left: 1px solid transparent;
right: 0
}
.oIUn-h8B ._2HIHq0ZS:last-child {
left: 0
}
.O0B25GOu ._2HIHq0ZS {
height: 50%;
position: absolute;
width: 50%
}
.O0B25GOu ._2HIHq0ZS:first-child {
border-left: 1px solid transparent;
height: 100%;
right: 0
}
.O0B25GOu .WjLCcn33 {
height: 100%;
width: 100%
}
.O0B25GOu ._2HIHq0ZS:first-child .WjLCcn33 {
margin-left: -50%;
position: static;
width: auto
}
.O0B25GOu ._2HIHq0ZS:last-child {
border-top: 1px solid transparent;
bottom: 0;
left: 0
}
._1VqaD9tQ {
cursor: pointer;
padding: 1rem .65625rem;
width: 100%
}
._3SVruyIi {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.xXqPzvjv {
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._2ng3xQkW {
height: 1.3125rem!important;
position: absolute!important;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto
}
._1bfHukDN {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
background-color: #fff;
border: 2px solid #657786;
color: #fff;
border-radius: 4px;
height: 1.3125rem;
width: 1.3125rem
}
._1aj72xLB {
background-color: #1da1f2;
border-color: #1da1f2
}
._28vL7nLU {
border-color: #ccd6dd
}
._1aj72xLB._28vL7nLU {
background-color: #aab8c2;
border-color: #aab8c2
}
._2hZVeNho {
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
width: 100%
}
._2BmQHSLQ {
background: #1da1f2;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1
}
._10SARgbU {
-webkit-align-self: flex-start;
-ms-flex-item-align: start;
align-self: flex-start;
padding: 1.3125rem
}
._3cgLUF-T {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 1.3125rem
}
.OktXQMFw {
color: #fff;
font-size: 2rem
}
.NLiEFxGv {
color: #fff;
text-align: center
}
._2pbIour_ {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 2.625rem;
width: 100%
}
._1XUD19lC {
max-width: 66%
}
._2MPnhm61 {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._2GdlhGrV {
margin-left: .65625rem;
}
._1m5BUHLW {
padding: 1rem .65625rem
}
._2nTZvTlq {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._15cBJylQ {
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._1o0_Y1o3 {
display: block;
width: 100%
}
._38SGgQB9 {
margin: .5rem 0 0
}
._38SGgQB9, .e0n7TGp7 {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
.e0n7TGp7 {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
margin-top: -.15rem
}
._1v4w6vBA {
margin-top: .15rem
}
.MjQcIpWy {
font-size: 1.3125rem;
color: #1da1f2
}
.zia5IX1N {
max-width: 100%
}
._38Q4mhaQ {
margin-left: .65625rem
}
._19_JAKIn {
margin: 0;
padding: .3rem 0 0
}
._3n-fEygc {
background-color: transparent;
border: 0;
padding: 0;
cursor: pointer;
text-align: left
}
._2u4tEvtd {
display: block;
padding-bottom: .65625rem;
padding-top: .65625rem
}
._2nTuKRPA {
opacity: .5;
cursor: default
}
._1Oxj60h6 {
border-bottom: 1px solid #ccd6dd;
height: .65625rem
}
._1MWHskJm {
background-color: #fff;
left: 0;
position: absolute;
right: 0;
top: 0;
z-index: 4
}
._1orrbVhw {
border-bottom: 1px solid #ccd6dd;
padding-top: 1.3125rem
}
._18AMk79- {
position: relative
}
.Cp7LTh-U {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
._3bmwmFe2, .Cp7LTh-U {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._1T8d2aAn {
height: 3.28125rem
}
._1Nta5Z3A {
padding-bottom: 0;
padding-top: 0
}
._3ncb5y8I {
color: #aab8c2
}
.m1EY7z-U {
border-radius: .35rem;
margin-top: 2px;
margin-left: calc(-1 * (.65625rem + 1px))
}
._3kZZY5Ku {
color: #1da1f2;
font-size: 1.25rem
}
.BVd8eVsI {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._1p-fx3CV {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
min-height: 0
}
._-2iIeUsw {
height: 2rem;
margin-right: .65625rem;
width: 2rem
}
._3DltykjD {
padding: 1rem .65625rem;
cursor: pointer
}
.Ldgs22Bf {
padding: 0
}
._3bf6snf7 {
background-color: #e8f6ff
}
._1p3yMRG3 {
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._31Q8EAc9 {
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._3eubIcj7 {
color: #657786
}
.PaLKewJ6 {
color: #e0245e
}
._1xsIYIFr {
color: #1da1f2
}
._201bML4Q {
color: #17bf63
}
._3KXvkjuP {
color: #14171a;
font-weight: 700;
text-decoration: none
}
._3KXvkjuP:active, ._3KXvkjuP:focus, ._3KXvkjuP:hover, ._28vfabRf {
color: #1da1f2;
text-decoration: underline
}
._3eCUxUEm, .rlkX4fnX {
margin-top: .65625rem
}
._2nhq3o_B {
border-bottom: 1px solid #ccd6dd;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
padding: .65625em .65625rem
}
.ejbIbhck {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center
}
._3KNex7EQ {
margin-right: .5rem
}
._1bfO1A1D {
color: #1b95e0;
line-height: 3.28125;
padding: 0 10px;
text-decoration: none
}
.FaFY-n1u {
border-bottom: 1px solid #ccd6dd
}
._2OhV6WSs ._1eF_MiFx ._2sSKjr8W {
border-bottom: 1px solid #ccd6dd
}
._1eF_MiFx:last-child ._2sSKjr8W {
border-bottom: 0
}
._2S4SZjE1 {
display: block;
padding: 1.96875rem .65625rem
}
._1r1NFTla {
color: #657786;
margin-bottom: .5rem
}
._2jEwv4_q {
background: #fff;
box-shadow: 0 0 4px #657786;
left: 0;
position: fixed;
right: 0;
z-index: 1;
z-index: 2
}
._3deL-s5l {
margin-bottom: -.5rem;
z-index: 3
}
.Gpm7TAP3 {
background-color: #f5f8fa;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._2YWWqfuy {
margin-top: 1.3125rem
}
._3VbBhRL9 {
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._3qUcQu0e {
-webkit-flex-basis: 0;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.COfxu8s-, .COfxu8s-:hover {
border-bottom: 2px solid transparent;
color: #657786;
font-size: .85rem;
line-height: 1;
padding: .98438rem 0;
position: relative;
text-align: center;
text-decoration: none;
text-transform: uppercase
}
.COfxu8s-:active {
background-color: #f5f8fa
}
.COfxu8s-._2t1-zb7t, .COfxu8s-._2t1-zb7t:active, .COfxu8s-._2t1-zb7t:focus, .COfxu8s-._2t1-zb7t:hover {
border-bottom-color: #1da1f2;
color: #1b95e0;
font-weight: 700;
text-decoration: none
}
._18IeRZUB {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._1bqsK2E0 {
margin-top: -.5rem
}
._2LNG5GT- {
display: block
}
._2LNG5GT-, ._2LNG5GT-:active, ._2LNG5GT-:focus, ._2LNG5GT-:hover {
text-decoration: none
}
._3RF62ZvD {
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
padding: .65625rem 0
}
._3XtdrsGy {
margin: 0;
padding: .32813rem 0 0
}
._3u9i8fLv {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._1JeaVs8R {
padding-left: .65625rem;
padding-right: .65625rem
}
._2hGLFTzu {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._2TCMrHUR {
padding-left: .1rem
}
.aPyKj4JW {
cursor: pointer;
padding: 1.3125rem .65625rem;
width: 100%
}
._1bBTfW4q {
background-color: #e8f6ff
}
._1hkrWkk0 {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.ywuhXbfz {
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._3dhGNRdD {
-webkit-align-self: flex-end;
-ms-flex-item-align: end;
align-self: flex-end
}
._1XQZkgon {
max-height: 2.625rem;
overflow: hidden
}
._29Wt1O26 {
color: #657786;
float: right;
margin-left: .65625rem
}
._1WgzLz1k {
height: 2em!important
}
._33HzS5QJ {
border-top: 1px solid #ccd6dd
}
._33HzS5QJ:first-child {
border-top: none
}
.GZSskek7 {
display: block;
max-height: 100%
}
.gKRgmIXg {
position: absolute;
transition: width .5s ease, height .5s ease
}
.GZSskek7 {
max-width: 100%
}
.gKRgmIXg {
right: .5rem;
top: .5rem
}
._2HBX6pyJ {
border: 1px solid transparent;
max-width: 100%
}
._2xgA0EGP {
height: 100%
}
._3asu7ZhB .GZSskek7 {
height: auto;
left: 50%;
max-height: none;
max-width: none;
position: absolute;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 100%
}
._3asu7ZhB ._1Vz8onRC {
height: 100%;
width: auto
}
._3asu7ZhB .gKRgmIXg {
right: .25rem;
top: .25rem
}
.hQhFAu8o {
border-color: #aab8c2
}
._2slxAELU {
height: 100%
}
input[type=file], input[type=file]::-webkit-file-upload-button {
cursor: pointer
}
input[type=file]:disabled, input[type=file]:disabled::-webkit-file-upload-button {
cursor: default
}
.sWXBbW7q {
-webkit-appearance: none;
background: 0 0;
height: 100%;
left: 0;
opacity: 0;
overflow: hidden;
position: absolute;
top: 0;
width: 100%;
z-index: 1
}
._1QJF9K3H {
padding: 0 .65625rem
}
.CQTbeRtL {
height: 2em!important
}
.Bv9EFFOu {
margin-top: 1.3125rem;
position: relative
}
.OPHA7Oty {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
margin-bottom: .65625rem
}
._1EMQ0GlX {
position: absolute;
top: -5px;
right: -5px
}
._2rvjeYIo {
width: 3.28125rem
}
.HX7iga8M {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
min-height: 100%;
padding: 0
}
._1ZFOZa4R {
border-bottom: 1px solid #ccd6dd
}
._2weC11-l {
position: absolute;
z-index: 3
}
.Tf_rsnMR {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-shrink: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
overflow-y: auto
}
._1z8bew3e {
height: 1.96875rem
}
._2bXYYraM {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
._1xFtK706 {
margin-left: .65625rem
}
._23fXLLC0 {
padding-left: 0;
padding-right: 0;
padding-top: 0
}
._2wjpwbis {
margin-top: .65625rem;
padding: 0
}
._1sqqaKFo {
margin-top: 1.3125rem
}
.zeo-m5c9 {
border-top: 1px solid #ccd6dd;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
margin: 1.3125rem -.65625rem 0;
padding: 1.3125rem .65625rem
}
._3_NDoxqm {
height: 2em!important
}
._38QbNY-4 {
border-radius: .35em;
margin-left: .65625rem;
overflow: hidden
}
._38QbNY-4:first-child {
margin-left: 0
}
._3qEeJSxw {
width: 100%
}
._2ZVlFsDn {
width: 50%
}
._1FBXaybA {
width: 33%
}
._bms5FR6 {
width: 25%
}
._2MF4NYbJ {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
margin: 1.3125rem 0 0;
width: 100%
}
._2HO9qf3x {
margin: 0 auto
}
.DxP6dQ6s {
transition: width .5s ease
}
._1toklvS1 {
padding: 0 .65625rem
}
.fSccHjM8 {
height: 1.3125rem
}
._330S2Eyj {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._23F886i5 {
padding-bottom: .65625rem;
margin-left: calc(100% * -1 / 8 - 1.5 * .65625rem)
}
._2E2FHQH2 {
-webkit-flex-grow: 7;
-ms-flex-positive: 7;
flex-grow: 7
}
._1FNeQSx_, ._1jK2uxJq {
padding: 0 0 .98438rem
}
._1ZLV7vdT>* {
margin: .65625rem 0 1.3125rem
}
.VJfa5-JU {
padding: .32813rem 0 .98438rem
}
._1-v3WH6C {
padding-bottom: .98438rem
}
._1hE6g2Ml, ._1hE6g2Ml:active, ._1hE6g2Ml:focus, ._1hE6g2Ml:hover {
text-decoration: none
}
._2CDuBCCk {
color: #1da1f2
}
._3qQLFoYV, ._3qQLFoYV:active, ._3qQLFoYV:focus, ._3qQLFoYV:hover {
color: #14171a;
text-decoration: none
}
._1NUqA_Ya {
background-color: #ccd6dd;
margin: -1.3125rem auto .33rem;
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
width: .214rem
}
.pQ0LYqFV {
border-top: 1px solid #ccd6dd;
padding: .98438rem 0
}
._1CzaYUfG, .pQ0LYqFV {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
}
._1CzaYUfG {
-webkit-align-items: baseline;
-ms-flex-align: baseline;
align-items: baseline
}
._1CzaYUfG+._1CzaYUfG {
margin-left: 1.96875rem
}
._22uh2-tW {
border-top: 1px solid #ccd6dd;
height: 3.28125rem
}
._3jMboTiV {
color: #1da1f2;
font-weight: 700;
margin-top: -1px;
text-align: left;
width: 100%
}
._16vfZrQZ {
color: #1b95e0;
text-decoration: none
}
._16vfZrQZ:hover {
text-decoration: underline
}
._1XHWlb5c {
border-bottom: 1px solid #ccd6dd
}
._1P2N8gOL {
border-bottom: 1px solid #ccd6dd
}
.xeVR7vEM {
padding: 1rem 0 0 .5rem
}
._3gquBRp1 {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._2-f7lTkl {
color: #1b95e0;
padding: .2rem 0 .2rem .5rem;
text-decoration: none
}
._14HtmOui {
padding-bottom: .5rem
}
._3pQpcNp0 {
color: #1b95e0;
display: block;
padding: 1rem 0 1rem .5rem;
text-decoration: none
}
._2tjf50a_ {
padding: .98438rem .65625rem
}
.ys1Birxa {
background-color: #ccd6dd;
height: 1px;
margin: .65625rem 0
}
._1y-7iMRs {
color: #1b95e0;
text-decoration: none;
width: 100%
}
._1y-7iMRs:active, ._1y-7iMRs:focus, ._1y-7iMRs:hover {
background-color: #f5f8fa;
text-decoration: none
}
._-nlDh3op {
margin: 0 .65625rem
}
.tOgQEePU {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between
}
.ETtIj1gU {
width: 100%;
margin: .98438rem 0
}
._3-H2h1Ja {
display: block;
margin-bottom: .65625rem
}
._1K57WeRz {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
background-postion: 50%;
background-repeat: no-repeat;
background-size: cover;
max-width: 1500px;
width: 100%
}
._3kOb2q-b {
padding: .65625rem .65625rem 0
}
._1FA_MhSv {
padding: .65625rem
}
._2CAC-K7O {
box-sizing: border-box;
float: left;
margin: 0 .32813rem .65625rem 0;
padding-right: .32813rem;
width: 25%
}
.V7IiU7kf {
display: block;
height: 2.5rem;
margin-top: 2px;
position: relative
}
._2SN3_LQA {
background-color: #fff;
border: 2px solid #fff;
border-radius: .4rem;
bottom: 0;
left: 0;
margin: 0 0 -2px -2px;
position: absolute;
width: 100%
}
@media screen and (min-width:600px) {
._2SN3_LQA {
border-width: 4px;
margin: 0 0 -4px -4px
}
}
._3tCjwgHJ {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
float: right;
margin: 0 0 .65625rem
}
._28MW8JUx {
text-decoration: none
}
._1VKf_rJE, ._37-SHJ0O, .YKb7BLkz {
margin-left: .65625rem
}
._2CFyTHU5 {
clear: both;
display: block;
margin: 0 0 .65625rem
}
.Dk8nbDvd {
direction: ltr;
display: block;
font-size: 1.285714286rem;
line-height: 1.25
}
.Z5IeoGpY {
direction: ltr;
margin-top: .1rem;
unicode-bidi: embed
}
.JOSlBtat {
margin: .1rem 0 0 1.3125rem
}
._2bdbLw2N {
clear: both;
margin-top: .65625rem
}
._2bdbLw2N, .EcSZ4Fq3 {
margin-bottom: .65625rem
}
.EcSZ4Fq3 {
display: block
}
._3yXWirES, ._28A-ODFy, ._28HqkHQj {
display: inline-block
}
._3yXWirES {
text-align: center;
width: 1.3125rem
}
._28HqkHQj {
color: #1b95e0;
text-decoration: none
}
.CJu91lfm {
margin-bottom: .65625rem
}
.klnfEmui {
color: #657786;
display: inline-block;
text-transform: uppercase
}
._27dn5W0H {
margin-right: 1.3125rem
}
.wErp7S_5 {
color: #14171a
}
@media screen and (min-width:600px) {
._2bdbLw2N {
width: 75%
}
}
._3pwZBbIb {
margin-bottom: .65625rem
}
._1yvDpOpC, ._3teNeeyX {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._1yvDpOpC {
background: #f5f8fa;
border-top: 1px solid #ccd6dd;
padding: 1.3125rem .65625rem
}
._3a0tmUVm {
margin-bottom: .65625rem
}
._5tmDFBjO {
padding: 0 .65625rem 1.3125rem
}
._1d9iymjd, ._5tmDFBjO {
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
background: #f5f8fa;
border-top: 1px solid #ccd6dd;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._1d9iymjd {
padding: 1.3125rem .65625rem
}
._1gGeJrp2, .q6l62PF- {
margin-top: 1.3125rem
}
._2CnRVCri {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
._3ooY7XwZ {
margin-left: 1.64063rem
}
._3fv5_7QL {
border-bottom: 1px solid #ccd6dd
}
._6x416yn1 {
color: #1da1f2;
text-decoration: none
}
._1d-4w8jI {
height: 100%;
position: fixed;
width: 100%;
-webkit-filter: blur(10px);
filter: blur(10px)
}
.github_more {
padding: .98438rem .65625rem;
text-decoration: none
}
.QVC2M-YD {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
margin: 30px 0
} | 0.448909 | 0.061171 |
.turn-alert-config {
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.message-area {
flex-grow: 1;
display: flex;
flex-direction: column;
}
.message-area > .form-group {
flex-grow: 1;
}
.turn-alert-config textarea {
font-family: inherit;
}
.turn-alert-config .warning {
color: #664e01;
}
.turn-alert-config .warning:before {
content: '⚠️';
}
.turn-alert .turn-display {
display: flex;
align-items: center;
background: url(/ui/denim075.png) repeat;
border: 1px black solid;
border-radius: 2px;
color: #f0f0e0;
text-shadow: 1px 1px 4px #000;
line-height: 48px;
}
.combat-alerts .turn-display {
margin-top: 3px;
z-index: -1;
}
.combat-alerts .cn-header.flexrow {
justify-content: space-between;
align-items: center;
}
.combat-alerts .cn-header.flexrow > * {
flex-grow: 0;
}
.combat-alerts .cn-header.flexrow > .cn-current-turn {
display: inline-grid;
grid-template-columns: auto 35px;
row-gap: 2px;
column-gap: 5px;
align-items: center;
font-weight: bold;
}
.combat-alerts .cn-current-turn > label {
white-space: nowrap;
}
.combat-alerts .cn-current-turn > input[type='text'] {
width: unset;
height: unset;
text-align: right;
border: 1px #999 solid;
}
.turn-alert .turn-display .token-name {
flex: 1;
overflow: hidden;
margin-left: 5px;
text-shadow: 1px 1px 4px #000;
border-right: 1px solid #222;
}
.turn-alert .turn-display .token-initiative {
flex: 0 0 48px;
text-align: center;
border-right: 1px solid #222;
}
.turn-alert .turn-display img {
flex: 0 0 48px;
width: 48px;
border: 0;
}
.turn-alert .turn-display .add-button-container {
flex: 0 0 48px;
text-align: center;
}
.turn-alert .turn-display .add-button-container .add-alert-button {
width: 25px;
height: 25px;
line-height: 0;
}
.turn-alert .self-height {
height: unset;
}
.alert-list {
margin: 0;
}
.alert-li.flexrow {
border: 2px groove #eeede0;
border-top: 0;
min-height: 30px;
align-items: center;
margin: 0;
}
.alert-li .alert-label {
flex-grow: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.alert-li .tag {
flex: 0 0 0px;
white-space: nowrap;
display: inline-block;
padding: 0 3px;
font-size: 10px;
line-height: 16px;
border: 1px solid #999;
border-radius: 3px;
background: rgba(0, 0, 0, 0.05);
}
.alert-li > * {
margin-left: 5px;
}
.alert-li .icon {
flex: 0 0 0px;
margin-right: 2px;
}
.alert-li button {
flex: 0 0 25px;
height: 25px;
line-height: 0;
padding: 0;
}
.alert-li button > i {
margin: auto;
}
.alert-li .separator {
flex: 0 0 1px;
height: 25px;
border-left: 1px solid #999;
}
.indented {
background-color: rgba(0, 0, 0, 0.05);
border-left: 5px solid #7a7971;
margin-left: 5px;
padding: 2px 6px 2px 10px;
border-radius: 5px;
} | src/styles/turn-alert-style.css | .turn-alert-config {
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.message-area {
flex-grow: 1;
display: flex;
flex-direction: column;
}
.message-area > .form-group {
flex-grow: 1;
}
.turn-alert-config textarea {
font-family: inherit;
}
.turn-alert-config .warning {
color: #664e01;
}
.turn-alert-config .warning:before {
content: '⚠️';
}
.turn-alert .turn-display {
display: flex;
align-items: center;
background: url(/ui/denim075.png) repeat;
border: 1px black solid;
border-radius: 2px;
color: #f0f0e0;
text-shadow: 1px 1px 4px #000;
line-height: 48px;
}
.combat-alerts .turn-display {
margin-top: 3px;
z-index: -1;
}
.combat-alerts .cn-header.flexrow {
justify-content: space-between;
align-items: center;
}
.combat-alerts .cn-header.flexrow > * {
flex-grow: 0;
}
.combat-alerts .cn-header.flexrow > .cn-current-turn {
display: inline-grid;
grid-template-columns: auto 35px;
row-gap: 2px;
column-gap: 5px;
align-items: center;
font-weight: bold;
}
.combat-alerts .cn-current-turn > label {
white-space: nowrap;
}
.combat-alerts .cn-current-turn > input[type='text'] {
width: unset;
height: unset;
text-align: right;
border: 1px #999 solid;
}
.turn-alert .turn-display .token-name {
flex: 1;
overflow: hidden;
margin-left: 5px;
text-shadow: 1px 1px 4px #000;
border-right: 1px solid #222;
}
.turn-alert .turn-display .token-initiative {
flex: 0 0 48px;
text-align: center;
border-right: 1px solid #222;
}
.turn-alert .turn-display img {
flex: 0 0 48px;
width: 48px;
border: 0;
}
.turn-alert .turn-display .add-button-container {
flex: 0 0 48px;
text-align: center;
}
.turn-alert .turn-display .add-button-container .add-alert-button {
width: 25px;
height: 25px;
line-height: 0;
}
.turn-alert .self-height {
height: unset;
}
.alert-list {
margin: 0;
}
.alert-li.flexrow {
border: 2px groove #eeede0;
border-top: 0;
min-height: 30px;
align-items: center;
margin: 0;
}
.alert-li .alert-label {
flex-grow: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.alert-li .tag {
flex: 0 0 0px;
white-space: nowrap;
display: inline-block;
padding: 0 3px;
font-size: 10px;
line-height: 16px;
border: 1px solid #999;
border-radius: 3px;
background: rgba(0, 0, 0, 0.05);
}
.alert-li > * {
margin-left: 5px;
}
.alert-li .icon {
flex: 0 0 0px;
margin-right: 2px;
}
.alert-li button {
flex: 0 0 25px;
height: 25px;
line-height: 0;
padding: 0;
}
.alert-li button > i {
margin: auto;
}
.alert-li .separator {
flex: 0 0 1px;
height: 25px;
border-left: 1px solid #999;
}
.indented {
background-color: rgba(0, 0, 0, 0.05);
border-left: 5px solid #7a7971;
margin-left: 5px;
padding: 2px 6px 2px 10px;
border-radius: 5px;
} | 0.36977 | 0.133528 |